Code

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