Code

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