Code

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