Code

dc058318900efe558f80ad712c60beded4e2ee1d
[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 2002-01-?? - 0.4.0b2
5 Fixed:
6  . #495392 ] empty nosy -patch
7  . #500574 ] messageid must have format <part1@part2>
8  . fixed some problems with web editing and change detection
9  . mail splitting wasn't detecting responses in the same "section" as quoted
10    text
13 2002-01-08 - 0.4.0b1
14 Feature:
15  . Added INSTANCE_NAME to configuration - used in web and email to identify
16    the instance.
17  . Added EMAIL_SIGNATURE_POSITION to indicate where to place the roundup
18    signature info in e-mails.
19  . Some more flexibility in the mail gateway and more error handling.
20  . Login now takes you to the page you back to the were denied access to.
21  . Admin user now can has a user index link on their web interface.
22  . We now have basic transaction support. Information is only written to
23    the database when the commit() method is called. Only the anydbm and
24    bsddb3 backends are modified in this way - the bsddb3 backend needs a
25    lot more work anyway...
26     - the CGI and mailgw automatically commit() at the end of processing a
27       single transaction
28     - the admin tool requires an explicit "commit" - it will prompt at exit
29       if there are unsaved changes. A "rollback" removes all changes made
30       during the session (up to the last commit).
31  . Added the "display" command to the admin tool - displays a node's values
32  . Message author's name appears in From: instead of roundup instance name
33    (which still appears in the Reply-To:)
34  . Added a Zope frontend for roundup.
35  . Centralised the python version check code, bumped version to 2.1.1 (really
36    needs to be 2.1.2, but that isn't released yet :)
37  . much better attaching of erroneous messages in the mail gateway
38  . #496356 ] Use threading in messages
39    This adds the tracking of messages by message-id and allows threading
40    using in-reply-to. Most e-mail clients support threading using this
41    feature, and we hope to add support for it to the web gateway.
43 Fixed:
44  . Lots of bugs, thanks Roché and others on the devel mailing list!
45  . login_action and newuser_action return values were being ignored
46  . Woohoo! Found that bloody re-login bug that was killing the mail
47    gateway.
48  . Fixed login/registration forwarding the user to the right page (or not,
49    on a failure)
50  . We now use weakrefs in the Classes to keep the database reference, so
51    the close() method on the database is no longer needed.
52  . #487480 ] roundup-server
53  . #487476 ] INSTALL.txt
54  . #489760 ] [issue] only subject
55  . fixed doc/index.html to include the quoting in the mail alias.
56  . fixed the backends __init__ so we can pydoc the backend modules
57  . web i/f reports "note added" if there are no changes but a note is entered
58  . we were assuming database files created by anydbm had the same name, but
59    this is not the case for dbm. We now perform a much better check _and_
60    cope with the anydbm implementation module changing too!
61  . envelope-from is now set to the roundup-admin and not roundup itself so
62    delivery reports aren't sent to roundup (thanks Patrick Ohly)
63  . #495400 ] entering blanks
64    Values with spaces are now accepted in roundup-admin - check the long help
65    for details.
66  . #496360 ] table width does not work
67  . detectors were being registered multiple times
68  . added tests for mailgw
71 2001-11-23 - 0.3.0 
72 Feature:
73  . #467129 ] Lossage when username=e-mail-address
74  . #473123 ] Change message generation for author
75  . MailGW now moves 'resolved' to 'chatting' on receiving e-mail for an issue.
76  . Added Structured Text rendering to htmltemplate, thanks Brad Clements.
77  . Added CGI configuration via env vars (see roundup.cgi for details)
78  . "roundup.cgi" is now installed to "<python-prefix>/share/roundup/cgi-bin"
79  . roundup-admin now accepts abbreviated commands (eg. l = li = lis = list)
80  . roundup-mailgw now supports unix mailbox and POP as sources of mail.
81  . roundup-admin now handles all hyperdb exceptions
82  . users may attach files to issues (and support in ext) through the web now
83  . incorporated patch from Roch'e Compaan implementing attachments in nosy
84    e-mail
85  . added a target version field to the extended issue schema
86  . added dummy hooks for I18N and some preliminary (test) markup of
87    translatable messages
89 Fixed:
90  . Fixed a bug in HTMLTemplate changes.
91  . 'unread' to 'chatting' automagic status change was b0rken.
92  . Anonymous user lockout wasn't working.
93  . roundup-server now works on Windows, thanks Juergen Hermann.
94  . Fixed install documentation, also thanks Juergen Hermann.
95  . Fixed some URL issues in roundup.cgi, again thanks Juergen Hermann.
96  . bug #475347 ] WindowsError still not caught (patch from Juergen Hermann)
97  . bug #474749 ] indentations lost
98  . bug #477104 ] HTML tag error in roundup-server
99  . bug #477107 ] HTTP header problem
100  . bug #477687 ] conforming html
101  . bug #474372 ] Netscape 4.77 do not render Support form
102  . bug #477685 ] base64.decodestring breaks
103  . bug #477837 ] lynx does not like the cookie
104  . bug #477892 ] Password edit doesn't fix login cookie
105  . newuser_action now presents error messages rather than tracebacks.
106  . bug #479511 ] mailgw to pop
107  . bug #479508 ] roundup-admin crash on wrong class
108  . bad error report in hyperdb
109  . roundup.mailgw now handles errors on the set() and create() at the end
110    of processing
111  . roundup.mailgw also handles messages that are passed to it that don't
112    contain a From: line - apparently some POP servers can do this. It punts
113    an error message to the roundup admin.
114  . fixed nosy reaction and author copy handling
115  . errors in nosy reaction will be propogated now (were effectively being
116    squashed)
117  . re-open the database as the author in mail handling
118  . missing "return" in filter_section (thanks Roch'e Compaan)
121 2001-10-23 - 0.3.0 pre 3
122 Feature:
123  . MailGW now moves 'unread' to 'chatting' on receiving e-mail for an issue.
124  . feature #473127: Filenames. I modified the file.index and htmltemplate
125    source so that the filename is used in the link and the creation
126    information is displayed.
127  Admin Tool (roundup-admin):
128   . Interactive mode for running multiple (independant at present) commands.
129   . Tabular display of nodes.
130   . Import and export via colon-separated files.
132 Changed:
133  . re-organised the html templating code. Fixed some bugs, probably
134    introduced some more.  Hopefully not too many.
136 Fixed:
137  . Stand-alone server now has a configurable setuid user.
138  . CGI interface wasn't handling checkboxes at all.
139  . Fixed quopri usage in mailgw from bug reports on mailing list.
140  . Remove the "freshen" command from the roundup-admin tool.
141  . Catch errors in login - no username or password supplied.
142  . Fixed editing of password (Password property type) thanks Roch'e Compaan.
143  . Fixed grouping of non-str properties thanks Roch'e Compaan.
144  . bug #473121: The customisation view and filters (CGI interface view
145    customisation section may now be hidden (patch from Roch'e Compaan.)
146  . bug #473122: Issue id sorting (hyperdb sorts strings-that-look-like-numbers
147    as numbers now.
148  . bug #473124: UI inconsistency with Link fields.
149    This also prompted me to fix a fairly long-standing usability issue -
150    that of being able to turn off certain filters.
151  . bug #473125: Paragraph in e-mails
152  . bug #473126: Sender unknown
153  . bug #473130: Nosy list not set correctly
156 2001-10-11 - 0.3.0 pre 2
157 Fixed:
158  . Hyperdatabase was inserting empty strings instead of None for missing
159    property values. This broke a lot of things.
162 2001-10-10 - 0.3.0 pre 1
163 Feature:
164  . roundup-admin create now prompts for property info if none is supplied
165    on the command-line.
166  . hyperdb Class getprops() method may now return only the mutable
167    properties.
168  . CGI interfaces now generate a top-level index of their known instances.
170 Changed:
171  . Login now uses cookies, which makes it a whole lot more flexible. We can
172    now support anonymous user access (read-only, unless there's an
173    "anonymous" user, in which case write access is permitted). Login
174    handling has been moved into cgi_client.Client.main()
175  . The "extended" schema is now the default in roundup init.
176  . The schemas have had their page headings modified to cope with the new
177    login handling. Existing installations should copy the interfaces.py
178    file from the roundup lib directory to their instance home.
179  . Passwords are now encoded by default (except exising databases which
180    will only be encoded when the passwords are changed). The scheme used
181    at the moment is SHA - but the code is flexible enough to take any
182    number of encoding systems.
183  . The roundup-admin tool always operates as the "admin" user now. Database
184    protection should be achieved using file system protections (see the
185    documentation for details.)
187 Fixed:
188  . Incorrectly had a Bizar Software copyright on the cgitb.py module from
189    Ping - has been removed.
190  . Pretty time interval wasn't handling > 1 month properly.
191  . Generation of links to Link/Multilink in indexes. (thanks Hubert Hoegl)
192  . AssignedTo wasn't in the "classic" schema's item page.
193  . Fixed a whole bunch of places in the CGI interface where we should have
194    been returning Not Found instead of throwing an exception.
195  . Fixed a deviation from the spec: trying to modify the 'id' property of
196    an item now throws an exception.
197  . The plain() template function now html-escapes the content.
198  . Change message was stuffing up for multilinks with no key property.
202 --------------
204 2001-08-30 - 0.2.8
205 Fixed:
206  . Wasn't handling unguessable mime types for file uploads.
207  . Missing import in mailgw.
210 2001-08-29 - 0.2.7
211 Feature:
212  . Text searches are now case insensitive. All forms of text search use
213    regular expressions now.
215 Fixed:
216  . Had another 2.1-ism in the unit tests
217  . Made the mail parser a little more robust w.r.t missing Subject:
218    (both thanks Mikhail Sobolev)
219  . Missed some isFooType usages (thanks Mikhail Sobolev for spotting them)
220  . Reverted back to sending change messages to the web editor of a node so
221    that the change note message is actually genrated.
222  . CGI interface wasn't generating correct change messages.
223  . Notes entered during a change are saved to the messages list even if
224    there's no nosy list. No message is generated if there's no nosy list and
225    there's no change note (since it would just duplicates the journal).
226  . Completely removed the bsddb3 module from the tests - will be reinstated
227    when the http://bsddb.sourceforge.net/'s bugs #439959 and #456408 are
228    dealt with. One is fixed in CVS, the other pending.
231 2001-08-08 - 0.2.6
232 Note:
233  . Roundup is now released under the same terms as the Python License.
235 Feature:
236  . Added tests for instance initialisation. No more releasing the software
237    with bugs in roundup.init!
238  . Now bundling unittest with the package so that python 2.0 users can use
239    the tests.
240  . Much better error handling and messages generated by the mail gateway.
242 Fixed:
243  . Implemented correct mail splitting. Added unit tests. Also snips
244    signatures now too.
245  . Bug #447671 - typo in roundup/init.py
246  . Changed date.Date to use regular string formatting instead of strftime -
247    win32 seems to have problems with %T and no hour... or something...
248  . Bug #448484 - now catching correct exception from makedirs.
249  . Instances are now opened by a special function that generates a unique
250    module name for the instances on import time.
253 2001-08-03 - 0.2.5
254 Note:
255  . The bsddb3 module has a bug that renders it non-functional. Users should
256    select the anydbm or bsddb backend instead.
258 Fixed:
259  . Python 2.0 does not contain the unittest module. The setup.py module now
260    checks for unittest before attempting to run the unit tests.
263 2001-08-03 - 0.2.4
264 Features:
265  . Added ability for cgi newblah forms to indicate that the new node
266    should be linked somewhere.
267  . Added time logging and file uploading to the templates.
268  . Added "My Issues" and "My Support" to extended template. Changed "Your
269    Details" to "My Details". Changed the "New Foo" links to "Add Foo".
270    Added links for unassigned support and issues. Generally reorganised and
271    cleanup the header up.
272  . Changed the order of the information in the message generated by web edits.
273  . Extended the range of intervals that are pretty-printed before actual dates
274    are displayed.
275  . Added more BUILD instructions including the "clean" command to force
276    rebuild.
277  . Web edit messages aren't sent to the person who did the edit any more. No
278    message is generated if they are the only person on the nosy list.
279  . Roundupdb now appends "mailing list" information to its messages which
280    include the e-mail address and web interface address. Templates may
281    override this in their db classes to include specific information (support
282    instructions, etc).
284 Fixed:
285  . Argument handling for the roundup-admin find command.
286  . Handling of summary when no note supplied for newblah. Again.
287  . Detection of no form in htmltemplate Field display.
288  . Checklist html template command was setting wrong name.
289  . 2.1-specific gmtime() (no arg) call in roundup.date. (thanks Paul Wright)
290  . mailgw was making naughty assumptions about the schema of the classes it
291    was creating nodes for.
292  . remove the $Foo$ from the HTML files stored in the htmlbase modules.
293  . Instance import now imports the instance using imp.load_module so that
294    we can have instance homes of "roundup" or other existing python package
295    names.
298 2001-07-30 - 0.2.3
299 Big change:
300  . I've split off the support class from the issue class in "extended".
301    Anyone who has any support entries, sorry. It should be possible to
302    write a scipt that moves the entries over pretty easily. If this causes
303    you pain, I'll do so. You'll want to update your instance with the new
304    code in "extended" either way.
306 Features:
307  . Added the unit tests to the start of setup.py so they're run whenever
308    we do anything distutils'y.
309  . Added nicer prompting to the roundup-admin "init" command.
310  . Actually, the roundup-admin code is totally revamped, and has command
311    help and better command-line arg handling.
312  . The cgi_client.Client base class now reflects the structure of "classic"
313    rather than "extended" since "classic" is more of a "base" template.
314  . Added more DB to test. Skips tests where imports fail.
316 Fixed:
317  . One of the tests in test_date had the wrong expected result.
318  . Fixed IssueClass so that superseders links to its classname rather than
319    hard-coded to "issue".
320  . templatebuilder was catching IOError instead of OSError.
321  . The cgi_client newblah method wasn't detecting the __note form field
322    properly.
323  . The History command in htmltemplate didn't handle a new node (None
324    nodeid) properly.
327 2001-07-29 - 0.2.2
328 Features:
329  . Added implementation.txt to the doc directory. Contains implementation
330    notes specific to this implementations of Roundup.
331  . Cleaned up mailgw some (subclass Message for getPart) and added some
332    tests for multipart splitting.
333  . Better checking for html dir in templatebuilder.
334  . Base hyperdb.Class now fakes the "id" property.
335  . Made the classic roundup look more like the original prototype.
336  . Made cgi_client and templating slightly more generic.
337  . Moved some code around in cgi_client allowing for subclassing to change
338    behaviour.
339  . Added the fabricated property "id" to all hyperdb classes.
340  . Cleanup of the link label generation (new method on hyperdb.Class to do
341    it).
343 Fixed:
344  . Everything uses errno module now to check errno values.
345  . New issue form handles lack of note better now.
346  . HTML templating uses section-bar style for index group headers now.
347  . Fixed problem in link display when Link value is None.
348  . Form handling in cgi client wasn't propogating through the previous
349    query elements.
350  . Fixed sort arguments generated for column headings so sorting can be
351    changed now.
354 2001-07-28 - 0.2.1
355 Features:
356  . Added docstring to roundup package so pydoc reports useful information.
357  . Added the roundup 1 software carpentry submission HTML to the doc
358    directory as "overview.html".
360 Fixes:
361  . Fixed bug in init command - templatebuilder was assuming existence of
362    "html" directory in instance home.
363  . Fixed INSTALL.txt to reflect some changes in the installation and test
364    procedure. Whatdya know, "setup.py install" does the script install.
365    There you go...
366  . Fixed some non-string node ids in cgi_client now that the hyperdb is
367    strict about such things.
369 2001-07-26 - 0.2.0
370 Features:
371  . Major reorganisation of code to allow multiple roundup instances and a
372    single, site-packages -based installation. Also allows multiple database
373    back-ends.
374  . Moved the bin/ proggies into the top dir, so that it all works
375    out-of-the-box
376  . Added the "classic" template - a direct implementation of the Roundup
377    spec. Well, as close as we're going to get, anyway.
378  . Added an issue priority of support to "extended"
379  . Added command-line arg handling to roundup-server so it's more useful 
380    out-of-the-box.
381  . Added distutils-style installation of "lib" files.
382  . Added some unit tests.
384 Fixes:
385  . Fixed bug in re generation in the filter
386  . Fixed handling of None String property in grouped list headings
387  . Fixed adding new issue with no change note
388  . Fixed values in text input fields which contained quotes (") are now
389    quoted.
390  . Fixed a bug in the hyperdb filter - wrong variable names in the error
391    message.
393 2001-07-19 - 0.1.3
394  . Reldate now takes an argument "pretty" - when true, it pretty-prints the
395    interval generated up to 5 days, then pretty-prints the date of last
396    activity. The issue index and item now use the pretty format.
397  . Classes list for admin user in CGI interface.
398  . Made the view configuration more accessible, neater and more realistic.
399  . Fixed list view grouping handling grouping by a Multilink or String or Link
400    value of None or Date, ...  (mind you, sorting by Date???)
401  . Fixed bug in the plain formatter when a Link was None.
402  . Fixed ordering of list view column headings.
403  . Fixed list view column heading sort links - and limited the number of
404    columns to sort by to 2.
405  . Added searching by glob to StringType filtering -
406     ^text  - search for text at start of fields
407     text$  - search for text at end of fields
408     ^text$ - exactly match text in fields
409     te*xt  - search for text matching "te"<any characters>"xt"
410     te?xt  - search for text matching "te"<any one character>"xt"
411  . Added more fields to the issue.filter and issue.index templates
414 2001-07-18 - 0.1.2
415  . Set default index to ?:group=priority&:columns=activity,status,title so
416    the priority column isn't displayed.
417  . Thanks Anthony:
418    . added notes to the README about Python prerequisites
419    . added check to roundup.py, roundup.cgi, server.py and roundup-mailgw.py
420      for python 2+ - and made the file itself parseable by 1.5.2 ;)
421    . python 2.0 didn't have the default args for the time module functions.
422    . better handling of db directory in initDB
423  . Sorting on the extra properties defined by roundupdb classes was broken
424    due to the caching used. May now sort on activity and creation
425    properties, etc.
426  . Set the default index to sort on activity
429 2001-07-18 - 0.1.1
430  . Initial version release with consent of Roundup spec author, Ka-Ping Yee:
431    "Amazing!  Nice work.  I'll watch for the source code on your website."
433 2001-07-11 - 0.1.0
434  . Needed a bug tracking system. Looked around. Tried to install many
435    Perl-based systems, to no avail. Got tired of waiting for Roundup to be
436    released. Had just finished major product project, so needed something
437    different for a while. Roundup here I come...