Code

728b289ba69c7ad1fa75b9864d09d1ba464911b4
[roundup.git] / CHANGES.txt
1 This file contains the changes to the Roundup system over time. The entries
2 are given with the most recent entry first.
4 2001-xx-xx - 0.2.7
5 Feature:
6  . Text searches are now case insensitive. All forms of text search use
7    regular expressions now.
9 Fixed:
10  . Had another 2.1-ism in the unit tests
11  . Made the mail parser a little more robust w.r.t missing Subject:
12    (both thanks Mikhail Sobolev)
13  . Missed some isFooType usages (thanks Mikhail Sobolev for spotting them)
14  . Reverted back to sending change messages to the web editor of a node so
15    that the change note message is actually genrated.
18 2001-08-08 - 0.2.6
19 Note:
20  . Roundup is now released under the same terms as the Python License.
22 Feature:
23  . Added tests for instance initialisation. No more releasing the software
24    with bugs in roundup.init!
25  . Now bundling unittest with the package so that python 2.0 users can use
26    the tests.
27  . Much better error handling and messages generated by the mail gateway.
29 Fixed:
30  . Implemented correct mail splitting. Added unit tests. Also snips
31    signatures now too.
32  . Bug #447671 - typo in roundup/init.py
33  . Changed date.Date to use regular string formatting instead of strftime -
34    win32 seems to have problems with %T and no hour... or something...
35  . Bug #448484 - now catching correct exception from makedirs.
36  . Instances are now opened by a special function that generates a unique
37    module name for the instances on import time.
40 2001-08-03 - 0.2.5
41 Note:
42  . The bsddb3 module has a bug that renders it non-functional. Users should
43    select the anydbm or bsddb backend instead.
45 Fixed:
46  . Python 2.0 does not contain the unittest module. The setup.py module now
47    checks for unittest before attempting to run the unit tests.
50 2001-08-03 - 0.2.4
51 Features:
52  . Added ability for cgi newblah forms to indicate that the new node
53    should be linked somewhere.
54  . Added time logging and file uploading to the templates.
55  . Added "My Issues" and "My Support" to extended template. Changed "Your
56    Details" to "My Details". Changed the "New Foo" links to "Add Foo".
57    Added links for unassigned support and issues. Generally reorganised and
58    cleanup the header up.
59  . Changed the order of the information in the message generated by web edits.
60  . Extended the range of intervals that are pretty-printed before actual dates
61    are displayed.
62  . Added more BUILD instructions including the "clean" command to force
63    rebuild.
64  . Web edit messages aren't sent to the person who did the edit any more. No
65    message is generated if they are the only person on the nosy list.
66  . Roundupdb now appends "mailing list" information to its messages which
67    include the e-mail address and web interface address. Templates may
68    override this in their db classes to include specific information (support
69    instructions, etc).
71 Fixed:
72  . Argument handling for the roundup-admin find command.
73  . Handling of summary when no note supplied for newblah. Again.
74  . Detection of no form in htmltemplate Field display.
75  . Checklist html template command was setting wrong name.
76  . 2.1-specific gmtime() (no arg) call in roundup.date. (thanks Paul Wright)
77  . mailgw was making naughty assumptions about the schema of the classes it
78    was creating nodes for.
79  . remove the $Foo$ from the HTML files stored in the htmlbase modules.
80  . Instance import now imports the instance using imp.load_module so that
81    we can have instance homes of "roundup" or other existing python package
82    names.
85 2001-07-30 - 0.2.3
86 Big change:
87  . I've split off the support class from the issue class in "extended".
88    Anyone who has any support entries, sorry. It should be possible to
89    write a scipt that moves the entries over pretty easily. If this causes
90    you pain, I'll do so. You'll want to update your instance with the new
91    code in "extended" either way.
93 Features:
94  . Added the unit tests to the start of setup.py so they're run whenever
95    we do anything distutils'y.
96  . Added nicer prompting to the roundup-admin "init" command.
97  . Actually, the roundup-admin code is totally revamped, and has command
98    help and better command-line arg handling.
99  . The cgi_client.Client base class now reflects the structure of "classic"
100    rather than "extended" since "classic" is more of a "base" template.
101  . Added more DB to test. Skips tests where imports fail.
103 Fixed:
104  . One of the tests in test_date had the wrong expected result.
105  . Fixed IssueClass so that superseders links to its classname rather than
106    hard-coded to "issue".
107  . templatebuilder was catching IOError instead of OSError.
108  . The cgi_client newblah method wasn't detecting the __note form field
109    properly.
110  . The History command in htmltemplate didn't handle a new node (None
111    nodeid) properly.
114 2001-07-29 - 0.2.2
115 Features:
116  . Added implementation.txt to the doc directory. Contains implementation
117    notes specific to this implementations of Roundup.
118  . Cleaned up mailgw some (subclass Message for getPart) and added some
119    tests for multipart splitting.
120  . Better checking for html dir in templatebuilder.
121  . Base hyperdb.Class now fakes the "id" property.
122  . Made the classic roundup look more like the original prototype.
123  . Made cgi_client and templating slightly more generic.
124  . Moved some code around in cgi_client allowing for subclassing to change
125    behaviour.
126  . Added the fabricated property "id" to all hyperdb classes.
127  . Cleanup of the link label generation (new method on hyperdb.Class to do
128    it).
130 Fixed:
131  . Everything uses errno module now to check errno values.
132  . New issue form handles lack of note better now.
133  . HTML templating uses section-bar style for index group headers now.
134  . Fixed problem in link display when Link value is None.
135  . Form handling in cgi client wasn't propogating through the previous
136    query elements.
137  . Fixed sort arguments generated for column headings so sorting can be
138    changed now.
141 2001-07-28 - 0.2.1
142 Features:
143  . Added docstring to roundup package so pydoc reports useful information.
144  . Added the roundup 1 software carpentry submission HTML to the doc
145    directory as "overview.html".
147 Fixes:
148  . Fixed bug in init command - templatebuilder was assuming existence of
149    "html" directory in instance home.
150  . Fixed INSTALL.txt to reflect some changes in the installation and test
151    procedure. Whatdya know, "setup.py install" does the script install.
152    There you go...
153  . Fixed some non-string node ids in cgi_client now that the hyperdb is
154    strict about such things.
156 2001-07-26 - 0.2.0
157 Features:
158  . Major reorganisation of code to allow multiple roundup instances and a
159    single, site-packages -based installation. Also allows multiple database
160    back-ends.
161  . Moved the bin/ proggies into the top dir, so that it all works
162    out-of-the-box
163  . Added the "classic" template - a direct implementation of the Roundup
164    spec. Well, as close as we're going to get, anyway.
165  . Added an issue priority of support to "extended"
166  . Added command-line arg handling to roundup-server so it's more useful 
167    out-of-the-box.
168  . Added distutils-style installation of "lib" files.
169  . Added some unit tests.
171 Fixes:
172  . Fixed bug in re generation in the filter
173  . Fixed handling of None String property in grouped list headings
174  . Fixed adding new issue with no change note
175  . Fixed values in text input fields which contained quotes (") are now
176    quoted.
177  . Fixed a bug in the hyperdb filter - wrong variable names in the error
178    message.
180 2001-07-19 - 0.1.3
181  . Reldate now takes an argument "pretty" - when true, it pretty-prints the
182    interval generated up to 5 days, then pretty-prints the date of last
183    activity. The issue index and item now use the pretty format.
184  . Classes list for admin user in CGI interface.
185  . Made the view configuration more accessible, neater and more realistic.
186  . Fixed list view grouping handling grouping by a Multilink or String or Link
187    value of None or Date, ...  (mind you, sorting by Date???)
188  . Fixed bug in the plain formatter when a Link was None.
189  . Fixed ordering of list view column headings.
190  . Fixed list view column heading sort links - and limited the number of
191    columns to sort by to 2.
192  . Added searching by glob to StringType filtering -
193     ^text  - search for text at start of fields
194     text$  - search for text at end of fields
195     ^text$ - exactly match text in fields
196     te*xt  - search for text matching "te"<any characters>"xt"
197     te?xt  - search for text matching "te"<any one character>"xt"
198  . Added more fields to the issue.filter and issue.index templates
201 2001-07-18 - 0.1.2
202  . Set default index to ?:group=priority&:columns=activity,status,title so
203    the priority column isn't displayed.
204  . Thanks Anthony:
205    . added notes to the README about Python prerequisites
206    . added check to roundup.py, roundup.cgi, server.py and roundup-mailgw.py
207      for python 2+ - and made the file itself parseable by 1.5.2 ;)
208    . python 2.0 didn't have the default args for the time module functions.
209    . better handling of db directory in initDB
210  . Sorting on the extra properties defined by roundupdb classes was broken
211    due to the caching used. May now sort on activity and creation
212    properties, etc.
213  . Set the default index to sort on activity
216 2001-07-18 - 0.1.1
217  . Initial version release with consent of Roundup spec author, Ka-Ping Yee:
218    "Amazing!  Nice work.  I'll watch for the source code on your website."
220 2001-07-11 - 0.1.0
221  . Needed a bug tracking system. Looked around. Tried to install many
222    Perl-based systems, to no avail. Got tired of waiting for Roundup to be
223    released. Had just finished major product project, so needed something
224    different for a while. Roundup here I come...