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-07-29 - 0.2.2
5 Features:
6  . Added implementation.txt to the doc directory. Contains implementation
7    notes specific to this implementations of Roundup.
8  . Cleaned up mailgw some (subclass Message for getPart) and added some
9    tests for multipart splitting.
10  . Better checking for html dir in templatebuilder.
11  . Base hyperdb.Class now fakes the "id" property.
12  . Made the classic roundup look more like the original prototype.
13  . Made cgi_client and templating slightly more generic.
14  . Moved some code around in cgi_client allowing for subclassing to change
15    behaviour.
16  . Added the fabricated property "id" to all hyperdb classes.
17  . Cleanup of the link label generation (new method on hyperdb.Class to do
18    it).
20 Fixed:
21  . Everything uses errno module now to check errno values.
22  . New issue form handles lack of note better now.
23  . HTML templating uses section-bar style for index group headers now.
24  . Fixed problem in link display when Link value is None.
25  . Form handling in cgi client wasn't propogating through the previous
26    query elements.
27  . Fixed sort arguments generated for column headings so sorting can be
28    changed now.
31 2001-07-28 - 0.2.1
32 Features:
33  . Added docstring to roundup package so pydoc reports useful information.
34  . Added the roundup 1 software carpentry submission HTML to the doc
35    directory as "overview.html".
37 Fixes:
38  . Fixed bug in init command - templatebuilder was assuming existence of
39    "html" directory in instance home.
40  . Fixed INSTALL.txt to reflect some changes in the installation and test
41    procedure. Whatdya know, "setup.py install" does the script install.
42    There you go...
43  . Fixed some non-string node ids in cgi_client now that the hyperdb is
44    strict about such things.
46 2001-07-26 - 0.2.0
47 Features:
48  . Major reorganisation of code to allow multiple roundup instances and a
49    single, site-packages -based installation. Also allows multiple database
50    back-ends.
51  . Moved the bin/ proggies into the top dir, so that it all works
52    out-of-the-box
53  . Added the "classic" template - a direct implementation of the Roundup
54    spec. Well, as close as we're going to get, anyway.
55  . Added an issue priority of support to "extended"
56  . Added command-line arg handling to roundup-server so it's more useful 
57    out-of-the-box.
58  . Added distutils-style installation of "lib" files.
59  . Added some unit tests.
61 Fixes:
62  . Fixed bug in re generation in the filter
63  . Fixed handling of None String property in grouped list headings
64  . Fixed adding new issue with no change note
65  . Fixed values in text input fields which contained quotes (") are now
66    quoted.
67  . Fixed a bug in the hyperdb filter - wrong variable names in the error
68    message.
70 2001-07-19 - 0.1.3
71  . Reldate now takes an argument "pretty" - when true, it pretty-prints the
72    interval generated up to 5 days, then pretty-prints the date of last
73    activity. The issue index and item now use the pretty format.
74  . Classes list for admin user in CGI interface.
75  . Made the view configuration more accessible, neater and more realistic.
76  . Fixed list view grouping handling grouping by a Multilink or String or Link
77    value of None or Date, ...  (mind you, sorting by Date???)
78  . Fixed bug in the plain formatter when a Link was None.
79  . Fixed ordering of list view column headings.
80  . Fixed list view column heading sort links - and limited the number of
81    columns to sort by to 2.
82  . Added searching by glob to StringType filtering -
83     ^text  - search for text at start of fields
84     text$  - search for text at end of fields
85     ^text$ - exactly match text in fields
86     te*xt  - search for text matching "te"<any characters>"xt"
87     te?xt  - search for text matching "te"<any one character>"xt"
88  . Added more fields to the issue.filter and issue.index templates
91 2001-07-18 - 0.1.2
92  . Set default index to ?:group=priority&:columns=activity,status,title so
93    the priority column isn't displayed.
94  . Thanks Anthony:
95    . added notes to the README about Python prerequisites
96    . added check to roundup.py, roundup.cgi, server.py and roundup-mailgw.py
97      for python 2+ - and made the file itself parseable by 1.5.2 ;)
98    . python 2.0 didn't have the default args for the time module functions.
99    . better handling of db directory in initDB
100  . Sorting on the extra properties defined by roundupdb classes was broken
101    due to the caching used. May now sort on activity and creation
102    properties, etc.
103  . Set the default index to sort on activity
106 2001-07-18 - 0.1.1
107  . Initial version release with consent of Roundup spec author, Ka-Ping Yee:
108    "Amazing!  Nice work.  I'll watch for the source code on your website."
110 2001-07-11 - 0.1.0
111  . Needed a bug tracking system. Looked around. Tried to install many
112    Perl-based systems, to no avail. Got tired of waiting for Roundup to be
113    released. Had just finished major product project, so needed something
114    different for a while. Roundup here I come...