Code

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