Code

Simple optimization.
[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-??-?? 0.5.0
5 Fixed:
6  . #576086 ] dumb copying mistake (frontends/ZRoundup.py)
7  . installation instructions now mention "python2" in "testing your python".
8  . made the unit tests run again - they were quite b0rken
9  . #571170 ] gdbm deadlock
10  . #576241 ] MultiLink problems in parsePropsFromForm
11  . fixed the date module so that Date(". - 2d") works
13 Feature:
14  . added capability to save queries:
15    - a query Class with name, klass (to search) and url (query string) properties
16    - a Multilink to query on user called queries
17    - html templates for query, and a list of queries in user.item
18    - search form has Save button & name input
19    - saved queries put in menu in pagehead
20    - for migration, none of the above is required and old behavior preserved.
21    - showquery translates search form <-> query string
22  . cleaned up the indexer code:
23    - it splits more words out
24    - removed code we'll never use (roundup.roundup_indexer has the full
25      implementation, and replaces roundup.indexer)
26    - only index text/plain and rfc822/message (ideas for other text formats to
27      index are welcome)
28    - added simple unit test for indexer. Needs more tests for regression.
29    - all String properties may now be indexed too. Currently there's a bit of
30      "issue" specific code in the actual searching which needs to be
31      addressed. In a nutshell:
32      + pass 'indexme="yes"' as a String() property initialisation arg, eg:
33            file = FileClass(db, "file", name=String(), type=String(),
34                comment=String(indexme="yes"))
35      + the comment will then be indexed and be searchable, with the results
36        related back to the issue that the file is linked to
37    - as a result of this work, the FileClass has a default MIME type that may
38      be overridden in a subclass, or by the use of a "type" property as is
39      done in the default templates.
40    - the regeneration of the indexes (if necessary) is done once the schema is
41      set up in the dbinit.
42    - new "reindex" command in roundup-admin used to force regeneration of the 
43      index
44  . added email display function - mangles email addrs so they're not so easily
45    scraped from the web
46  . added sorting of checklist HTML display
47  . switched to using a session-based web login
48  . made mailgw handle set and modify operations on multilinks (bug #579094)
49  . all storage-specific code (ie. backend) is now implemented by the backends
50  . fixed the journal bloat from multilink changes - we just log the add or
51    remove operations, not the whole list
54 2002-06-24 0.4.2
55 Fixed:
56  . Cleaned up the hyperdb unit tests.
57  . Applied patch from Andrew W. Nosenko to give nicer Unauthorised message
58    when anonymous user tries to edit. Should've been applied in 0.4.2pr1. Oops.
59  . Added more detailed note to MIGRATION regarding the detectors changes.
62 2002-06-19 0.4.2pr1
63 Feature:
64  . added a "detectors" directory for people to put their useful auditors and
65    reactors in. Note - the roundupdb.IssueClass.sendmessage method has been
66    split and renamed "nosymessage" specifically for things like the nosy
67    reactor, and "send_message" which just sends the message.
68  . link() htmltemplate function now has a "showid" option for links and
69    multilinks. When true, it only displays the linked node id as the anchor
70    text. The link value is displayed as a tooltip using the title anchor
71    attribute.
72    To use in eg. the superseder field, have something like this:
73    <td>
74     <display call="field('superseder', showid=1)">
75     <display call="classhelp('issue', 'id,title', label='list', width=500)">
76     <property name="superseder">
77      <br>View: <display call="link('superseder', showid=1)">
78     </property>
79    </td>
80  . stripping of the email message body can now be controlled through the
81    config variables EMAIL_KEEP_QUOTED_TEXT and EMAIL_LEAVE_BODY_UNCHANGED.
82  . all database files created are now group readable and writable.
83  . added option to automatically add the authors and recipients of messages
84    to the nosy lists with the options ADD_AUTHOR_TO_NOSY (default 'new') and
85    ADD_RECIPIENTS_TO_NOSY (default 'new'). These settings emulate the current
86    behaviour. Setting them to 'yes' will add the author/recipients to the nosy
87    on messages that create issues and followup messages.
88  . reverting to dates for intervals > 2 months sucks
89  . changed the default message list in issues to display the message body
90  . applied patch #558876 ] cgi client customization
91  . split instance initialisation into two steps, allowing config changes
92    before the database is initialised.
93  . don't create an empty message on email issue creation if the email is empty
94  . may now display additional fields in Multilink form menus
95  . #541941 ] changing multilink properties by mail
96  . #526730 ] search for messages capability
97  . #505180 ] split MailGW.handle_Message
98    - also changed cgi client since it was duplicating the functionality
100 Fixed:
101  . stop sending blank (whitespace-only) notes
102  . cleanup of serialisation for database storage
103  . node ids are now generated from a lockable store - no more race conditions
104  . sorting was applied to all nodes of the MultiLink class instead of
105    to the nodes that are actually linked to in the "field" template
106    function.  This adds about 20+ seconds in the display of an issue if
107    your database has a 1000 or more issues in it.
108  . added missing documentation for a few of the config option values
109  . file upload broke if you didn't supply a change note
110  . fixed SCRIPT_NAME in ZRoundup for instances not at top level of Zope
111    (thanks dman)
112  . fixed some sorting issues that were breaking some unit tests under py2.2
113  . mailgw test output dir was confusing the init test (but only on 2.2 *shrug*)
114  . node caching now works, and gives a small boost in performance
115  . #449374 ] re-enable bsddb3 backend
116    bsddb3 backend now works, reinstating
117  . #551483 ] assignedto in Client.make_index_link
118  . made backends.__init__ be more specific about which ImportErrors it really
119    wants to ignore
120  . fixed the example addresses in the templates to use correct example domains
121  . cleaned out the template stylesheets, removing a bunch of junk that really
122    wasn't necessary (font specs, styles never used) and added a style for 
123    message content
124  . build htmlbase if tests are run using CVS checkout
125  . #565979 ] code error in hyperdb.Class.find
126  . #565996 ] The "Attach a File to this Issue" fails
127  . #564271 ] find() and new properties
128  . #562130 ] cookie path generated from ZRoundup was wrong in some situations
129  . remove CR characters embedded in messages (ZRoundup)
130  . properly quote the email address and "real name" in all situations using the
131     'email' module if it is available and 'rfc822' otherwise
132  . #565992 ] if ISSUE_TRACKER_WEB doesn't have the trailing '/', add it
133  . use the rfc822 module to ensure that every (oddball) email address and
134    real-name is properly quoted
135  . #558867 ] ZRoundup redirect /instance requests to /instance/ 
136  . #569415 ] {version}
137  . #569178 ] type error
138    was fixed as part of the general cleanup of reactors
141 2002-03-25 - 0.4.1
142 Feature:
143  . use blobfiles in back_anydbm which is used in back_bsddb.
144    change test_db as dirlist does not work for subdirectories.
145    ATTENTION: blobfiles now creates subdirectories for files.
146  . add module blobfiles in backends with file access functions.
147  . roundup db catch only IOError in getfile.
148  . roundup db catches retrieving not existing files.
149  . #503204 ] mailgw needs a default class
150    - partially done - the setting of additional properties can wait for a
151      better configuration system.
152  . Alternate email addresses are now available for users. See the MIGRATION
153    file for info on how to activate the feature.
154  . #511168 ] Web interface: Adding new products
155    Classes that don't provide template html get a default edit interface now:
156    - access using the admin "class list" interface
157    - limited to admin-only
158    - requires the csv module from object-craft (url given if it's missing)
159  . Added popup help for classes using the classhelp html template function.
160    - add <display call="classhelp('priority', 'id,name,description')">
161      to an item page, and it generates a link to a popup window which displays
162      the id, name and description for the priority class. The description
163      field won't exist in most installations, but it will be added to the
164      default templates.
165  . #517734 ] web header customisation is obscure
166  . All messages sent to the nosy list are now encoded as
167    quoted-printable before they are sent.
168  . Fixed display of mutlilink properties when using the template
169    functions, menu and plain.
171 Fixed:
172  . Clean up mail handling, multipart handling.
173  . respect encodings in non multipart messages.
174  . makeHtmlBase: re.sub under python 2.2 did not replace '.', string.replace
175    does it.
176  . preamble in tepmlateBuilder mentioned htmldata
177  . mailgw checks encoding on first part too.
178  . #511586 ] unittest FAIL: testReldate_date
179  . Added a uniquely Roundup header to email, "X-Roundup-Name"
180  . All forms now have "double-submit" protection when Javascript is enabled
181    on the client-side.
182  . #516883 ] mail interface + ANONYMOUS_REGISTER
183  . #516854 ] "My Issues" and redisplay
184  . #517906 ] Attribute order in "View customisation"
185  . #514854 ] History: "User" is always ticket creator
186  . wasn't handling cvs parser feeding correctly
187  . fixed some problems in date calculations (calendar.py doesn't handle over-
188    and under-flow). Also, hour/minute/second intervals may now be more than
189    99 each.
190  . #527416 ] roundup-admin uses undefined value
191  . #527503 ] unfriendly init blowup when parent dir
192    (also handles UsageError correctly now in init)
193  . #524129 ] roundup-admin gets python path wrong
196 2002-01-24 - 0.4.0
197 Feature:
198  . much nicer history display (actualy real handling of property types etc)
199  . journal entries for link and mutlilink properties can be switched on or 
200    off
201  . properties in change note are now sorted
202  . you can now use the roundup-admin tool pack the database
204 Fixed:
205  . the mail gateway now responds with an error message when invalid values 
206    for arguments are specified for link or mutlilink properties
207  . modified unit test to check nosy and assignedto when specified as arguments
208  . handle attachments with no name (eg tnef)
209  . fixed setting nosy as argument in subject line
210  . fixed back_bsddb so it passed the journal tests
211  . fixed status changes in mail gateway (eg. unread -> chatting)
212  . we'll actually distribute the frontends directory now, as advertised...
213  . handle stripping of "AW:" from subject line
214  . htmltemplate list() wasn't sorting...
215  . unit tests for html templating (and re-enabled the listbox field for
216    multilinks)
217  . allow abbreviation of "help" in admin tool too.
218  . run_tests testReldate_date failed if LANG is 'german'
219  . mailgw failures (unexpected ones) are forwarded to the roundup admin
222 2002-01-16 - 0.4.0b2
223 Fixed:
224  . #495392 ] empty nosy -patch
225  . #500574 ] messageid must have format <part1@part2>
226  . fixed some problems with web editing and change detection
227  . mail splitting wasn't detecting responses in the same "section" as quoted
228    text
229  . missed a "from i18n import _" in date.py
230  . #501690 ] MIGRATION.txt incomplete
231  . #502342 ] pipe interface
232  . #502437 ] rogue reactor and unittest
233  . re-enabled dumbdbm when using python >2.1.1 (ie 2.1.2, 2.2)
234  . changed all config accesses so they access either the instance or the
235    config attriubute on the db. This means that all config is obtained from
236    instance_config instead of the mish-mash of classes. This will make
237    switching to a ConfigParser setup easier too, I hope.
238  . #502951 ] adding new properties to old database
239  . #502953 ] nosy-like treatment of other multilinks
240  . #503164 ] create and passwords
241  . plain rendering of links in the htmltemplate now generate a hyperlink to
242    the linked node's page.
243  . #503330 ] ANONYMOUS_REGISTER now applies to mail
244  . #503353 ] setting properties in initial email
245  . #502956 ] filtering by multilink not supported
246  . #503340 ] creating issue with [asignedto=p.ohly]
247  . #502949 ] index view for non-issues and redisplay
248  . #503793 ] changing assignedto resets nosy list
249  . lots of date/interval related changes:
250    - more relaxed date format for input
251    - handle None for date/interval properties
254 2002-01-08 - 0.4.0b1
255 Feature:
256  . Added INSTANCE_NAME to configuration - used in web and email to identify
257    the instance.
258  . Added EMAIL_SIGNATURE_POSITION to indicate where to place the roundup
259    signature info in e-mails.
260  . Some more flexibility in the mail gateway and more error handling.
261  . Login now takes you to the page you back to the were denied access to.
262  . Admin user now can has a user index link on their web interface.
263  . We now have basic transaction support. Information is only written to
264    the database when the commit() method is called. Only the anydbm and
265    bsddb3 backends are modified in this way - the bsddb3 backend needs a
266    lot more work anyway...
267     - the CGI and mailgw automatically commit() at the end of processing a
268       single transaction
269     - the admin tool requires an explicit "commit" - it will prompt at exit
270       if there are unsaved changes. A "rollback" removes all changes made
271       during the session (up to the last commit).
272  . Added the "display" command to the admin tool - displays a node's values
273  . Message author's name appears in From: instead of roundup instance name
274    (which still appears in the Reply-To:)
275  . Added a Zope frontend for roundup.
276  . Centralised the python version check code, bumped version to 2.1.1 (really
277    needs to be 2.1.2, but that isn't released yet :)
278  . much better attaching of erroneous messages in the mail gateway
279  . #496356 ] Use threading in messages
280    This adds the tracking of messages by message-id and allows threading
281    using in-reply-to. Most e-mail clients support threading using this
282    feature, and we hope to add support for it to the web gateway.
284 Fixed:
285  . Lots of bugs, thanks Roché and others on the devel mailing list!
286  . login_action and newuser_action return values were being ignored
287  . Woohoo! Found that bloody re-login bug that was killing the mail
288    gateway.
289  . Fixed login/registration forwarding the user to the right page (or not,
290    on a failure)
291  . We now use weakrefs in the Classes to keep the database reference, so
292    the close() method on the database is no longer needed.
293  . #487480 ] roundup-server
294  . #487476 ] INSTALL.txt
295  . #489760 ] [issue] only subject
296  . fixed doc/index.html to include the quoting in the mail alias.
297  . fixed the backends __init__ so we can pydoc the backend modules
298  . web i/f reports "note added" if there are no changes but a note is entered
299  . we were assuming database files created by anydbm had the same name, but
300    this is not the case for dbm. We now perform a much better check _and_
301    cope with the anydbm implementation module changing too!
302  . envelope-from is now set to the roundup-admin and not roundup itself so
303    delivery reports aren't sent to roundup (thanks Patrick Ohly)
304  . #495400 ] entering blanks
305    Values with spaces are now accepted in roundup-admin - check the long help
306    for details.
307  . #496360 ] table width does not work
308  . detectors were being registered multiple times
309  . added tests for mailgw
312 2001-11-23 - 0.3.0 
313 Feature:
314  . #467129 ] Lossage when username=e-mail-address
315  . #473123 ] Change message generation for author
316  . MailGW now moves 'resolved' to 'chatting' on receiving e-mail for an issue.
317  . Added Structured Text rendering to htmltemplate, thanks Brad Clements.
318  . Added CGI configuration via env vars (see roundup.cgi for details)
319  . "roundup.cgi" is now installed to "<python-prefix>/share/roundup/cgi-bin"
320  . roundup-admin now accepts abbreviated commands (eg. l = li = lis = list)
321  . roundup-mailgw now supports unix mailbox and POP as sources of mail.
322  . roundup-admin now handles all hyperdb exceptions
323  . users may attach files to issues (and support in ext) through the web now
324  . incorporated patch from Roch'e Compaan implementing attachments in nosy
325    e-mail
326  . added a target version field to the extended issue schema
327  . added dummy hooks for I18N and some preliminary (test) markup of
328    translatable messages
330 Fixed:
331  . Fixed a bug in HTMLTemplate changes.
332  . 'unread' to 'chatting' automagic status change was b0rken.
333  . Anonymous user lockout wasn't working.
334  . roundup-server now works on Windows, thanks Juergen Hermann.
335  . Fixed install documentation, also thanks Juergen Hermann.
336  . Fixed some URL issues in roundup.cgi, again thanks Juergen Hermann.
337  . bug #475347 ] WindowsError still not caught (patch from Juergen Hermann)
338  . bug #474749 ] indentations lost
339  . bug #477104 ] HTML tag error in roundup-server
340  . bug #477107 ] HTTP header problem
341  . bug #477687 ] conforming html
342  . bug #474372 ] Netscape 4.77 do not render Support form
343  . bug #477685 ] base64.decodestring breaks
344  . bug #477837 ] lynx does not like the cookie
345  . bug #477892 ] Password edit doesn't fix login cookie
346  . newuser_action now presents error messages rather than tracebacks.
347  . bug #479511 ] mailgw to pop
348  . bug #479508 ] roundup-admin crash on wrong class
349  . bad error report in hyperdb
350  . roundup.mailgw now handles errors on the set() and create() at the end
351    of processing
352  . roundup.mailgw also handles messages that are passed to it that don't
353    contain a From: line - apparently some POP servers can do this. It punts
354    an error message to the roundup admin.
355  . fixed nosy reaction and author copy handling
356  . errors in nosy reaction will be propogated now (were effectively being
357    squashed)
358  . re-open the database as the author in mail handling
359  . missing "return" in filter_section (thanks Roch'e Compaan)
362 2001-10-23 - 0.3.0 pre 3
363 Feature:
364  . MailGW now moves 'unread' to 'chatting' on receiving e-mail for an issue.
365  . feature #473127: Filenames. I modified the file.index and htmltemplate
366    source so that the filename is used in the link and the creation
367    information is displayed.
368  Admin Tool (roundup-admin):
369   . Interactive mode for running multiple (independant at present) commands.
370   . Tabular display of nodes.
371   . Import and export via colon-separated files.
373 Changed:
374  . re-organised the html templating code. Fixed some bugs, probably
375    introduced some more.  Hopefully not too many.
377 Fixed:
378  . Stand-alone server now has a configurable setuid user.
379  . CGI interface wasn't handling checkboxes at all.
380  . Fixed quopri usage in mailgw from bug reports on mailing list.
381  . Remove the "freshen" command from the roundup-admin tool.
382  . Catch errors in login - no username or password supplied.
383  . Fixed editing of password (Password property type) thanks Roch'e Compaan.
384  . Fixed grouping of non-str properties thanks Roch'e Compaan.
385  . bug #473121: The customisation view and filters (CGI interface view
386    customisation section may now be hidden (patch from Roch'e Compaan.)
387  . bug #473122: Issue id sorting (hyperdb sorts strings-that-look-like-numbers
388    as numbers now.
389  . bug #473124: UI inconsistency with Link fields.
390    This also prompted me to fix a fairly long-standing usability issue -
391    that of being able to turn off certain filters.
392  . bug #473125: Paragraph in e-mails
393  . bug #473126: Sender unknown
394  . bug #473130: Nosy list not set correctly
397 2001-10-11 - 0.3.0 pre 2
398 Fixed:
399  . Hyperdatabase was inserting empty strings instead of None for missing
400    property values. This broke a lot of things.
403 2001-10-10 - 0.3.0 pre 1
404 Feature:
405  . roundup-admin create now prompts for property info if none is supplied
406    on the command-line.
407  . hyperdb Class getprops() method may now return only the mutable
408    properties.
409  . CGI interfaces now generate a top-level index of their known instances.
411 Changed:
412  . Login now uses cookies, which makes it a whole lot more flexible. We can
413    now support anonymous user access (read-only, unless there's an
414    "anonymous" user, in which case write access is permitted). Login
415    handling has been moved into cgi_client.Client.main()
416  . The "extended" schema is now the default in roundup init.
417  . The schemas have had their page headings modified to cope with the new
418    login handling. Existing installations should copy the interfaces.py
419    file from the roundup lib directory to their instance home.
420  . Passwords are now encoded by default (except exising databases which
421    will only be encoded when the passwords are changed). The scheme used
422    at the moment is SHA - but the code is flexible enough to take any
423    number of encoding systems.
424  . The roundup-admin tool always operates as the "admin" user now. Database
425    protection should be achieved using file system protections (see the
426    documentation for details.)
428 Fixed:
429  . Incorrectly had a Bizar Software copyright on the cgitb.py module from
430    Ping - has been removed.
431  . Pretty time interval wasn't handling > 1 month properly.
432  . Generation of links to Link/Multilink in indexes. (thanks Hubert Hoegl)
433  . AssignedTo wasn't in the "classic" schema's item page.
434  . Fixed a whole bunch of places in the CGI interface where we should have
435    been returning Not Found instead of throwing an exception.
436  . Fixed a deviation from the spec: trying to modify the 'id' property of
437    an item now throws an exception.
438  . The plain() template function now html-escapes the content.
439  . Change message was stuffing up for multilinks with no key property.
443 --------------
445 2001-08-30 - 0.2.8
446 Fixed:
447  . Wasn't handling unguessable mime types for file uploads.
448  . Missing import in mailgw.
451 2001-08-29 - 0.2.7
452 Feature:
453  . Text searches are now case insensitive. All forms of text search use
454    regular expressions now.
456 Fixed:
457  . Had another 2.1-ism in the unit tests
458  . Made the mail parser a little more robust w.r.t missing Subject:
459    (both thanks Mikhail Sobolev)
460  . Missed some isFooType usages (thanks Mikhail Sobolev for spotting them)
461  . Reverted back to sending change messages to the web editor of a node so
462    that the change note message is actually genrated.
463  . CGI interface wasn't generating correct change messages.
464  . Notes entered during a change are saved to the messages list even if
465    there's no nosy list. No message is generated if there's no nosy list and
466    there's no change note (since it would just duplicates the journal).
467  . Completely removed the bsddb3 module from the tests - will be reinstated
468    when the http://bsddb.sourceforge.net/'s bugs #439959 and #456408 are
469    dealt with. One is fixed in CVS, the other pending.
472 2001-08-08 - 0.2.6
473 Note:
474  . Roundup is now released under the same terms as the Python License.
476 Feature:
477  . Added tests for instance initialisation. No more releasing the software
478    with bugs in roundup.init!
479  . Now bundling unittest with the package so that python 2.0 users can use
480    the tests.
481  . Much better error handling and messages generated by the mail gateway.
483 Fixed:
484  . Implemented correct mail splitting. Added unit tests. Also snips
485    signatures now too.
486  . Bug #447671 - typo in roundup/init.py
487  . Changed date.Date to use regular string formatting instead of strftime -
488    win32 seems to have problems with %T and no hour... or something...
489  . Bug #448484 - now catching correct exception from makedirs.
490  . Instances are now opened by a special function that generates a unique
491    module name for the instances on import time.
494 2001-08-03 - 0.2.5
495 Note:
496  . The bsddb3 module has a bug that renders it non-functional. Users should
497    select the anydbm or bsddb backend instead.
499 Fixed:
500  . Python 2.0 does not contain the unittest module. The setup.py module now
501    checks for unittest before attempting to run the unit tests.
504 2001-08-03 - 0.2.4
505 Features:
506  . Added ability for cgi newblah forms to indicate that the new node
507    should be linked somewhere.
508  . Added time logging and file uploading to the templates.
509  . Added "My Issues" and "My Support" to extended template. Changed "Your
510    Details" to "My Details". Changed the "New Foo" links to "Add Foo".
511    Added links for unassigned support and issues. Generally reorganised and
512    cleanup the header up.
513  . Changed the order of the information in the message generated by web edits.
514  . Extended the range of intervals that are pretty-printed before actual dates
515    are displayed.
516  . Added more BUILD instructions including the "clean" command to force
517    rebuild.
518  . Web edit messages aren't sent to the person who did the edit any more. No
519    message is generated if they are the only person on the nosy list.
520  . Roundupdb now appends "mailing list" information to its messages which
521    include the e-mail address and web interface address. Templates may
522    override this in their db classes to include specific information (support
523    instructions, etc).
525 Fixed:
526  . Argument handling for the roundup-admin find command.
527  . Handling of summary when no note supplied for newblah. Again.
528  . Detection of no form in htmltemplate Field display.
529  . Checklist html template command was setting wrong name.
530  . 2.1-specific gmtime() (no arg) call in roundup.date. (thanks Paul Wright)
531  . mailgw was making naughty assumptions about the schema of the classes it
532    was creating nodes for.
533  . remove the $Foo$ from the HTML files stored in the htmlbase modules.
534  . Instance import now imports the instance using imp.load_module so that
535    we can have instance homes of "roundup" or other existing python package
536    names.
539 2001-07-30 - 0.2.3
540 Big change:
541  . I've split off the support class from the issue class in "extended".
542    Anyone who has any support entries, sorry. It should be possible to
543    write a scipt that moves the entries over pretty easily. If this causes
544    you pain, I'll do so. You'll want to update your instance with the new
545    code in "extended" either way.
547 Features:
548  . Added the unit tests to the start of setup.py so they're run whenever
549    we do anything distutils'y.
550  . Added nicer prompting to the roundup-admin "init" command.
551  . Actually, the roundup-admin code is totally revamped, and has command
552    help and better command-line arg handling.
553  . The cgi_client.Client base class now reflects the structure of "classic"
554    rather than "extended" since "classic" is more of a "base" template.
555  . Added more DB to test. Skips tests where imports fail.
557 Fixed:
558  . One of the tests in test_date had the wrong expected result.
559  . Fixed IssueClass so that superseders links to its classname rather than
560    hard-coded to "issue".
561  . templatebuilder was catching IOError instead of OSError.
562  . The cgi_client newblah method wasn't detecting the __note form field
563    properly.
564  . The History command in htmltemplate didn't handle a new node (None
565    nodeid) properly.
568 2001-07-29 - 0.2.2
569 Features:
570  . Added implementation.txt to the doc directory. Contains implementation
571    notes specific to this implementations of Roundup.
572  . Cleaned up mailgw some (subclass Message for getPart) and added some
573    tests for multipart splitting.
574  . Better checking for html dir in templatebuilder.
575  . Base hyperdb.Class now fakes the "id" property.
576  . Made the classic roundup look more like the original prototype.
577  . Made cgi_client and templating slightly more generic.
578  . Moved some code around in cgi_client allowing for subclassing to change
579    behaviour.
580  . Added the fabricated property "id" to all hyperdb classes.
581  . Cleanup of the link label generation (new method on hyperdb.Class to do
582    it).
584 Fixed:
585  . Everything uses errno module now to check errno values.
586  . New issue form handles lack of note better now.
587  . HTML templating uses section-bar style for index group headers now.
588  . Fixed problem in link display when Link value is None.
589  . Form handling in cgi client wasn't propogating through the previous
590    query elements.
591  . Fixed sort arguments generated for column headings so sorting can be
592    changed now.
595 2001-07-28 - 0.2.1
596 Features:
597  . Added docstring to roundup package so pydoc reports useful information.
598  . Added the roundup 1 software carpentry submission HTML to the doc
599    directory as "overview.html".
601 Fixes:
602  . Fixed bug in init command - templatebuilder was assuming existence of
603    "html" directory in instance home.
604  . Fixed INSTALL.txt to reflect some changes in the installation and test
605    procedure. Whatdya know, "setup.py install" does the script install.
606    There you go...
607  . Fixed some non-string node ids in cgi_client now that the hyperdb is
608    strict about such things.
610 2001-07-26 - 0.2.0
611 Features:
612  . Major reorganisation of code to allow multiple roundup instances and a
613    single, site-packages -based installation. Also allows multiple database
614    back-ends.
615  . Moved the bin/ proggies into the top dir, so that it all works
616    out-of-the-box
617  . Added the "classic" template - a direct implementation of the Roundup
618    spec. Well, as close as we're going to get, anyway.
619  . Added an issue priority of support to "extended"
620  . Added command-line arg handling to roundup-server so it's more useful 
621    out-of-the-box.
622  . Added distutils-style installation of "lib" files.
623  . Added some unit tests.
625 Fixes:
626  . Fixed bug in re generation in the filter
627  . Fixed handling of None String property in grouped list headings
628  . Fixed adding new issue with no change note
629  . Fixed values in text input fields which contained quotes (") are now
630    quoted.
631  . Fixed a bug in the hyperdb filter - wrong variable names in the error
632    message.
634 2001-07-19 - 0.1.3
635  . Reldate now takes an argument "pretty" - when true, it pretty-prints the
636    interval generated up to 5 days, then pretty-prints the date of last
637    activity. The issue index and item now use the pretty format.
638  . Classes list for admin user in CGI interface.
639  . Made the view configuration more accessible, neater and more realistic.
640  . Fixed list view grouping handling grouping by a Multilink or String or Link
641    value of None or Date, ...  (mind you, sorting by Date???)
642  . Fixed bug in the plain formatter when a Link was None.
643  . Fixed ordering of list view column headings.
644  . Fixed list view column heading sort links - and limited the number of
645    columns to sort by to 2.
646  . Added searching by glob to StringType filtering -
647     ^text  - search for text at start of fields
648     text$  - search for text at end of fields
649     ^text$ - exactly match text in fields
650     te*xt  - search for text matching "te"<any characters>"xt"
651     te?xt  - search for text matching "te"<any one character>"xt"
652  . Added more fields to the issue.filter and issue.index templates
655 2001-07-18 - 0.1.2
656  . Set default index to ?:group=priority&:columns=activity,status,title so
657    the priority column isn't displayed.
658  . Thanks Anthony:
659    . added notes to the README about Python prerequisites
660    . added check to roundup.py, roundup.cgi, server.py and roundup-mailgw.py
661      for python 2+ - and made the file itself parseable by 1.5.2 ;)
662    . python 2.0 didn't have the default args for the time module functions.
663    . better handling of db directory in initDB
664  . Sorting on the extra properties defined by roundupdb classes was broken
665    due to the caching used. May now sort on activity and creation
666    properties, etc.
667  . Set the default index to sort on activity
670 2001-07-18 - 0.1.1
671  . Initial version release with consent of Roundup spec author, Ka-Ping Yee:
672    "Amazing!  Nice work.  I'll watch for the source code on your website."
674 2001-07-11 - 0.1.0
675  . Needed a bug tracking system. Looked around. Tried to install many
676    Perl-based systems, to no avail. Got tired of waiting for Roundup to be
677    released. Had just finished major product project, so needed something
678    different for a while. Roundup here I come...