Code

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