Code

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