Code

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