Code

1add3f6d9909a755d2206c0e9d1f032068eff124
[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-10-07 - 0.3.0
5 Feature:
6  . roundup-admin create now prompts for property info if none is supplied
7    on the command-line.
8  . hyperdb Class getprops() method may now return only the mutable
9    properties.
10  . CGI interfaces now generate a top-level index of their known instances.
12 Changed:
13  . Login now uses cookies, which makes it a whole lot more flexible. We can
14    now support anonymous user access (read-only, unless there's an
15    "anonymous" user, in which case write access is permitted). Login
16    handling has been moved into cgi_client.Client.main()
17  . The "extended" schema is now the default in roundup init.
18  . The schemas have had their page headings modified to cope with the new
19    login handling. Existing installations should copy the interfaces.py
20    file from the roundup lib directory to their instance home.
22 Fixed:
23  . Incorrectly had a Bizar Software copyright on the cgitb.py module from
24    Ping - has been removed.
25  . Pretty time interval wasn't handling > 1 month properly.
26  . Generation of links to Link/Multilink in indexes. (thanks Hubert Hoegl)
27  . AssignedTo wasn't in the "classic" schema's item page.
28  . Fixed a whole bunch of places in the CGI interface where we should have
29    been returning Not Found instead of throwing an exception.
30  . Fixed a deviation from the spec: trying to modify the 'id' property of
31    an item now throws an exception.
32  . The plain() template function now html-escapes the content.
34 --------------------
36 2001-08-30 - 0.2.8
37 Fixed:
38  . Wasn't handling unguessable mime types for file uploads.
39  . Missing import in mailgw.
42 2001-08-29 - 0.2.7
43 Feature:
44  . Text searches are now case insensitive. All forms of text search use
45    regular expressions now.
47 Fixed:
48  . Had another 2.1-ism in the unit tests
49  . Made the mail parser a little more robust w.r.t missing Subject:
50    (both thanks Mikhail Sobolev)
51  . Missed some isFooType usages (thanks Mikhail Sobolev for spotting them)
52  . Reverted back to sending change messages to the web editor of a node so
53    that the change note message is actually genrated.
54  . CGI interface wasn't generating correct change messages.
55  . Notes entered during a change are saved to the messages list even if
56    there's no nosy list. No message is generated if there's no nosy list and
57    there's no change note (since it would just duplicates the journal).
58  . Completely removed the bsddb3 module from the tests - will be reinstated
59    when the http://bsddb.sourceforge.net/'s bugs #439959 and #456408 are
60    dealt with. One is fixed in CVS, the other pending.
63 2001-08-08 - 0.2.6
64 Note:
65  . Roundup is now released under the same terms as the Python License.
67 Feature:
68  . Added tests for instance initialisation. No more releasing the software
69    with bugs in roundup.init!
70  . Now bundling unittest with the package so that python 2.0 users can use
71    the tests.
72  . Much better error handling and messages generated by the mail gateway.
74 Fixed:
75  . Implemented correct mail splitting. Added unit tests. Also snips
76    signatures now too.
77  . Bug #447671 - typo in roundup/init.py
78  . Changed date.Date to use regular string formatting instead of strftime -
79    win32 seems to have problems with %T and no hour... or something...
80  . Bug #448484 - now catching correct exception from makedirs.
81  . Instances are now opened by a special function that generates a unique
82    module name for the instances on import time.
85 2001-08-03 - 0.2.5
86 Note:
87  . The bsddb3 module has a bug that renders it non-functional. Users should
88    select the anydbm or bsddb backend instead.
90 Fixed:
91  . Python 2.0 does not contain the unittest module. The setup.py module now
92    checks for unittest before attempting to run the unit tests.
95 2001-08-03 - 0.2.4
96 Features:
97  . Added ability for cgi newblah forms to indicate that the new node
98    should be linked somewhere.
99  . Added time logging and file uploading to the templates.
100  . Added "My Issues" and "My Support" to extended template. Changed "Your
101    Details" to "My Details". Changed the "New Foo" links to "Add Foo".
102    Added links for unassigned support and issues. Generally reorganised and
103    cleanup the header up.
104  . Changed the order of the information in the message generated by web edits.
105  . Extended the range of intervals that are pretty-printed before actual dates
106    are displayed.
107  . Added more BUILD instructions including the "clean" command to force
108    rebuild.
109  . Web edit messages aren't sent to the person who did the edit any more. No
110    message is generated if they are the only person on the nosy list.
111  . Roundupdb now appends "mailing list" information to its messages which
112    include the e-mail address and web interface address. Templates may
113    override this in their db classes to include specific information (support
114    instructions, etc).
116 Fixed:
117  . Argument handling for the roundup-admin find command.
118  . Handling of summary when no note supplied for newblah. Again.
119  . Detection of no form in htmltemplate Field display.
120  . Checklist html template command was setting wrong name.
121  . 2.1-specific gmtime() (no arg) call in roundup.date. (thanks Paul Wright)
122  . mailgw was making naughty assumptions about the schema of the classes it
123    was creating nodes for.
124  . remove the $Foo$ from the HTML files stored in the htmlbase modules.
125  . Instance import now imports the instance using imp.load_module so that
126    we can have instance homes of "roundup" or other existing python package
127    names.
130 2001-07-30 - 0.2.3
131 Big change:
132  . I've split off the support class from the issue class in "extended".
133    Anyone who has any support entries, sorry. It should be possible to
134    write a scipt that moves the entries over pretty easily. If this causes
135    you pain, I'll do so. You'll want to update your instance with the new
136    code in "extended" either way.
138 Features:
139  . Added the unit tests to the start of setup.py so they're run whenever
140    we do anything distutils'y.
141  . Added nicer prompting to the roundup-admin "init" command.
142  . Actually, the roundup-admin code is totally revamped, and has command
143    help and better command-line arg handling.
144  . The cgi_client.Client base class now reflects the structure of "classic"
145    rather than "extended" since "classic" is more of a "base" template.
146  . Added more DB to test. Skips tests where imports fail.
148 Fixed:
149  . One of the tests in test_date had the wrong expected result.
150  . Fixed IssueClass so that superseders links to its classname rather than
151    hard-coded to "issue".
152  . templatebuilder was catching IOError instead of OSError.
153  . The cgi_client newblah method wasn't detecting the __note form field
154    properly.
155  . The History command in htmltemplate didn't handle a new node (None
156    nodeid) properly.
159 2001-07-29 - 0.2.2
160 Features:
161  . Added implementation.txt to the doc directory. Contains implementation
162    notes specific to this implementations of Roundup.
163  . Cleaned up mailgw some (subclass Message for getPart) and added some
164    tests for multipart splitting.
165  . Better checking for html dir in templatebuilder.
166  . Base hyperdb.Class now fakes the "id" property.
167  . Made the classic roundup look more like the original prototype.
168  . Made cgi_client and templating slightly more generic.
169  . Moved some code around in cgi_client allowing for subclassing to change
170    behaviour.
171  . Added the fabricated property "id" to all hyperdb classes.
172  . Cleanup of the link label generation (new method on hyperdb.Class to do
173    it).
175 Fixed:
176  . Everything uses errno module now to check errno values.
177  . New issue form handles lack of note better now.
178  . HTML templating uses section-bar style for index group headers now.
179  . Fixed problem in link display when Link value is None.
180  . Form handling in cgi client wasn't propogating through the previous
181    query elements.
182  . Fixed sort arguments generated for column headings so sorting can be
183    changed now.
186 2001-07-28 - 0.2.1
187 Features:
188  . Added docstring to roundup package so pydoc reports useful information.
189  . Added the roundup 1 software carpentry submission HTML to the doc
190    directory as "overview.html".
192 Fixes:
193  . Fixed bug in init command - templatebuilder was assuming existence of
194    "html" directory in instance home.
195  . Fixed INSTALL.txt to reflect some changes in the installation and test
196    procedure. Whatdya know, "setup.py install" does the script install.
197    There you go...
198  . Fixed some non-string node ids in cgi_client now that the hyperdb is
199    strict about such things.
201 2001-07-26 - 0.2.0
202 Features:
203  . Major reorganisation of code to allow multiple roundup instances and a
204    single, site-packages -based installation. Also allows multiple database
205    back-ends.
206  . Moved the bin/ proggies into the top dir, so that it all works
207    out-of-the-box
208  . Added the "classic" template - a direct implementation of the Roundup
209    spec. Well, as close as we're going to get, anyway.
210  . Added an issue priority of support to "extended"
211  . Added command-line arg handling to roundup-server so it's more useful 
212    out-of-the-box.
213  . Added distutils-style installation of "lib" files.
214  . Added some unit tests.
216 Fixes:
217  . Fixed bug in re generation in the filter
218  . Fixed handling of None String property in grouped list headings
219  . Fixed adding new issue with no change note
220  . Fixed values in text input fields which contained quotes (") are now
221    quoted.
222  . Fixed a bug in the hyperdb filter - wrong variable names in the error
223    message.
225 2001-07-19 - 0.1.3
226  . Reldate now takes an argument "pretty" - when true, it pretty-prints the
227    interval generated up to 5 days, then pretty-prints the date of last
228    activity. The issue index and item now use the pretty format.
229  . Classes list for admin user in CGI interface.
230  . Made the view configuration more accessible, neater and more realistic.
231  . Fixed list view grouping handling grouping by a Multilink or String or Link
232    value of None or Date, ...  (mind you, sorting by Date???)
233  . Fixed bug in the plain formatter when a Link was None.
234  . Fixed ordering of list view column headings.
235  . Fixed list view column heading sort links - and limited the number of
236    columns to sort by to 2.
237  . Added searching by glob to StringType filtering -
238     ^text  - search for text at start of fields
239     text$  - search for text at end of fields
240     ^text$ - exactly match text in fields
241     te*xt  - search for text matching "te"<any characters>"xt"
242     te?xt  - search for text matching "te"<any one character>"xt"
243  . Added more fields to the issue.filter and issue.index templates
246 2001-07-18 - 0.1.2
247  . Set default index to ?:group=priority&:columns=activity,status,title so
248    the priority column isn't displayed.
249  . Thanks Anthony:
250    . added notes to the README about Python prerequisites
251    . added check to roundup.py, roundup.cgi, server.py and roundup-mailgw.py
252      for python 2+ - and made the file itself parseable by 1.5.2 ;)
253    . python 2.0 didn't have the default args for the time module functions.
254    . better handling of db directory in initDB
255  . Sorting on the extra properties defined by roundupdb classes was broken
256    due to the caching used. May now sort on activity and creation
257    properties, etc.
258  . Set the default index to sort on activity
261 2001-07-18 - 0.1.1
262  . Initial version release with consent of Roundup spec author, Ka-Ping Yee:
263    "Amazing!  Nice work.  I'll watch for the source code on your website."
265 2001-07-11 - 0.1.0
266  . Needed a bug tracking system. Looked around. Tried to install many
267    Perl-based systems, to no avail. Got tired of waiting for Roundup to be
268    released. Had just finished major product project, so needed something
269    different for a while. Roundup here I come...