Code

- add latest change to CHANGES.txt changelog
[roundup.git] / CHANGES.txt
1 This file contains the changes to the Roundup system over time. 
2 The entries are given with the most recent entry first. 
3 Each entry has the deveoper who committed the change in brackets.
4 Entries without name were done by Richard Jones.
6 2011-XX-XX 1.4.19 (r46XX)
8 Features:
10 - Xapian indexing improved: Slightly faster and slightly smaller database. 
11   Closes issue2550687. Thanks to Olly Betts for the patch. (Bernhard Reiter)
12 - PostgreSQL backend minor improvement: database creation less likely to fail
13   for PostgreSQL versions >= 8.1 as the table "postgres" is used by default.
14   Closes issue2550543. Thanks to Kai Storbeck for the patch. (Bernhard Reiter)
16 Fixed:
18 - Installation: Fixed an issue that prevented to use EasyInstall 
19   and a Python egg. Thanks to Satchidanand Haridas for the patch and
20   John Kristensen for testing it. (Bernhard Reiter)
21 - The PostgreSQL backend quotes database names now for CREATE and DROP, 
22   enabling more exotic tracker names. Closes issue2550497. 
23   Thanks to Sebastian Harl for providing the patch. (Bernhard Reiter)
24 - Updated the url to point to www.roundup-tracker.org in two places in the
25   docs. (Bernhard Reiter)
26 - Do not depend on a CPython implementation detail anymore to make Roundup 
27   more compatible with other Python implementations like PyPy.
28   Closes issue2550707. Thanks to Christof Meerwald. (Bernhard Reiter, Richard)
29 - Yet another fix to the mail gateway, messages got *all* files of
30   an issue, not just the new ones. Thanks to Rafal Bisingier for
31   reporting and proposing a fix. The regression test was updated.
32   (Ralf)
33 - Fix version numbers in upgrade documentation, the file-unlink defect
34   was in 1.4.17 not 1.4.16. Thanks to Rafal Bisingier. (Ralf)
35 - Fix encoded email header parsing if multiple encoded and non-encoded
36   parts are present. RFC2047 specifies that spacing is removed only
37   between encoded parts, we always removed the space. Note that this bug
38   was present before mail gateway refactoring :-) Thanks for thorough
39   testing of mail gateway code by Rafal Bisingier. (Ralf)
40 - The "Retire" permission was not being registered. (Richard)
41 - Fix StringIO issue2550713: io.StringIO in newer versions of python
42   returns unicode strings and expects a unicode string in the
43   constructor. Unfortunately csv  doesn't handle unicode (yet). So we
44   need to use a BytesIO which gets the utf-8 string from the
45   web-interface. Compatibility for old versions by using
46   StringIO.StringIO for emulating a io.BytesIO also works.
47   Thanks to Cédric Krier for reporting. Closes issue2550713.
48   Added a regression test for EditCSVAction (Ralf)
51 2011-05-29 1.4.18 (r4610)
53 Features:
55 - Norwegian Bokmal translation by Christian Aastorp (Ralf)
56 - Allow to specify additional cc and bcc emails (not roundup users) for
57   nosymessage used by the nosyreaction reactor. (Ralf)
59 Fixed:
61 - File-unlink defect in mailgw fixed! If an email was received
62   that contained no attachments, all previous files of the issue were unlinked. 
63   This defect was introduced with the 1.4.17 release as an unwanted result 
64   of the mail gate code refactoring. Thanks to Rafal Bisingier for reporting 
65   and proposing a fix. There is now a regression test in place. (Ralf)
67 2011-05-13 1.4.17 (r4605)
69 Features:
71 - Allow declaration of default_values for properties in schema.
72 - Add explicit "Search" permissions, see Security Fix below.
73 - Add "lookup" method to xmlrpc interface (Ralf Schlatterbeck)
74 - Multilinks can be filtered by combining elements with AND, OR and NOT
75   operators now. A javascript gui was added for "keywords", see issue2550648.
76   Developed by Sascha Teichmann; funded by Intevation. (Bernhard Reiter)
77 - Factor MailGW message parsing into a separate class, thanks to John
78   Kristensen who did the major work in issue2550576 -- I wouldn't
79   have attempted it without this. Fixes issue2550576. (Ralf)
80 - Now if the -C option to roundup-mailgw specifies "issue" this refers
81   to an issue-like class. The real class is determined from the
82   configured default class, or the -c option to the mailgw, or the class
83   resulting from mail subject parsing. We also accept multiple -S
84   options for the same class now. (Ralf)
85 - Optimisation: Late evaluation of Multilinks (only in rdbms backends):
86   previously we materialized each multilink in a Node -- this creates an
87   SQL query for each multilink (e.g. 'files' and 'messages' for each
88   line in the issue index display) -- even if the multilinks aren't
89   displayed. Now we compute multilinks only if they're accessed (and
90   keep them cached).
91 - Add a filter_iter similar to the existing filter call. This feature is
92   considered experimental. This is currently not used in the
93   web-interface but passes all tests for the filter call except sorting
94   by Multilinks (which isn't supported by SQL and isn't a sane concept
95   anyway). When using filter_iter instead of filter this saves a *lot*
96   of SQL queries: Filter returns only the IDs of Nodes in the database,
97   the additional content of a Node has to be fetched in a separate SQL
98   call. The new filter_iter also returns the IDs of Nodes (one by one,
99   it's an iterator) but pre-seeds the cache with the content of the
100   Node. The information needed for seeding the cache is retrieved in the
101   same SQL query as the ids.
103 Fixed:
105 - Security Fix: Add a check for search-permissions: now we allow
106   searching for properties only if the property is readable without a
107   check method or if an explicit search permission (see above unter
108   "Features) is given for the property. This fixes cases where a user
109   doesn't have access to a property but can deduce the content by
110   crafting a clever search, group or sort query.
111   see doc/upgrading.txt for how to fix your trackers! (Ralf Schlatterbeck).
112 - Range support in roundup-server so large files can be served, 
113   e.g. media files on iOS/iPads; issue2550694. (Bernhard Reiter; 
114   Thanks to Jon C. Thomason for the patch.)
115 - Fix search for xapian 1.2 issue2550676 
116   (Bernhard Reiter; Thanks to Olly Betts for providing the patch.)
117 - Some minor typos fixed in doc/customizing.txt (Thanks Ralf Hemmecke).
118 - XML-RPC documentation now linked from the docs/index (Bernhard Reiter).
119 - Fix setting of sys.path when importing schema.py, fixes issue2550675,
120   thanks to Bryce L Nordgren for reporting. (Ralf Schlatterbeck)
121 - clear the cache on commit for rdbms backends: Don't carry over cached
122   values from one transaction to the next (there may be other changes
123   from other transactions) see new ConcurrentDBTest for a
124   read-modify-update cycle that fails with the old caching behavior.
125   (Ralf Schlatterbeck)
126 - Fix incorrect setting of template in customizing.txt example action,
127   patch via issue2550682 (thanks John Kristensen)
128 - Configuration issue: On some postgresql 8.4 installations (notably on
129   debian squeeze) the default template database used for database
130   creation doesn't match the needed character encoding UTF8 -- a new
131   config option 'template' in the rdbms section now allows specification
132   of the template. You know you need this option if you get the error
133   message:
134   psycopg2.DataError: new encoding (UTF8) is incompatible with the
135   encoding of the template database (SQL_ASCII)
136   HINT:  Use the same encoding as in the template database, or use
137   template0 as template.
138   (Ralf Schlatterbeck)
139 - Fixed bug in mailgw refactoring, patch issue2550697 (thanks Hubert
140   Touvet)
141 - Fix Password handling security issue2550688 (thanks Joseph Myers for
142   reporting and Eli Collins for fixing) -- this fixes all observations
143   by Joseph Myers except for auto-migration of existing passwords.
144 - Add new config-option 'migrate_passwords' in section 'web' to
145   auto-migrate passwords at web-login time. Default for the new option
146   is "yes" so if you don't want that passwords are auto-migrated to a
147   more secure password scheme on user login, set this to "no" before
148   running your tracker(s) after the upgrade.
149 - Add new config-option 'password_pbkdf2_default_rounds' in 'main'
150   section to configure the default parameter for new password
151   generation. Set this to a higher value on faster systems which want
152   more security. Thanks to Eli Collins for implementing this (see
153   issue2550688).
154 - Fix documentation for roundup-server about the 'host' parameter as
155   suggested in issue2550693, fixes the first part of this issue. Make
156   'localhost' the new default for this parameter, note the upgrading
157   documentation of changed behaviour.  We also deprecate the empty host
158   parameter for binding to all interfaces now (still left in for
159   compatibility). Thanks to Toni Mueller for providing the first version
160   of this patch and discussing implementations.
161 - Fixed bug in filter_iter refactoring (lazy multilinks), in rare cases
162   this would result in duplicate multilinks to the same node. We're now
163   going the safe route and doing lazy evaluation only for read-only
164   access, whenever updates are done we fetch everything.
166 2010-10-08 1.4.16 (r4541)
168 Features:
170 - allow trackers to override the classes used to render properties in
171   templating per issue2550659 (thanks Ezio Melotti)
172 - new mailgw configuration item "subject_updates_title": If set to "no"
173   a changed subject in a reply to an issue will not update the issue
174   title with the changed subject. Thanks to Arkadiusz Kita and Peter
175   Funk for requesting the feature and discussing the implementation.
176   http://thread.gmane.org/gmane.comp.bug-tracking.roundup.user/10169
177 - new rdbms config item sqlite_timeout makes the previously hard-coded
178   timeout of 30 seconds configurable. This is the time a client waits
179   for the locked database to become free before giving up. Used only for
180   SQLite backend.
181 - new mailgw config item unpack_rfc822 that unpacks message attachments
182   of type message/rfc822 and attaches the individual parts instead of
183   attaching the whole message/rfc822 attachment to the roundup issue.
185 Fixed:
187 - fixed reporting of source missing warnings
188 - relevant tests made locale independent, issue2550660 (thanks
189   Benni Bärmann for reporting).
190 - fix for incorrect except: syntax, issue2550661 (thanks Jakub Wilk)
191 - No longer use the root logger, use a logger with prefix "roundup",
192   see http://thread.gmane.org/gmane.comp.bug-tracking.roundup.devel/5356
193 - improve handling of '>' when URLs are converted to links, issue2550664
194   (thanks Ezio Melotti)
195 - fixed registration, issue2550665 (thanks Timo Paulssen)
196 - make sorting of multilinks in the web interface more robust, issue2550663
197 - Fix charset of first text-part of outgoing multipart messages, thanks Dirk
198   Geschke for reporting, see
199   http://thread.gmane.org/gmane.comp.bug-tracking.roundup.user/10223
200 - Fix handling of incoming message/rfc822 attachments. These resulted in
201   a weird mail usage error because the email module threw a TypeError
202   which roundup interprets as a Reject exception. Fixes issue2550667.
203   Added regression tests for message/rfc822 attachments with and without
204   configured unpacking (mailgw unpack_rfc822, see Features above)
205   Thanks to Benni Bärmann for reporting.
206 - Allow search_popup macro to work with all db classes, issue2550567
207   (thanks John Kristensen)
208 - lower memory footprint for (journal-) import
211 2010-07-12 1.4.15
213 Fixed:
215 - A bunch of regressions were introduced in the last release making Roundup
216   no longer work in Python releases prior to 2.6
217 - make URL detection a little smarter about brackets per issue2550657
218   (thanks Ezio Melotti)
221 2010-07-01 1.4.14
223 Features:
225 - Preparations for getting 2to3 work, not completed yet. (Richard Jones)
227 Fixed:
229 - User input not escaped when a bad template name is supplied (thanks
230   Benjamin Pollack)
231 - The email for the first message on an issue was having its In-Reply-To
232   set to itself (thanks Eric Kow)
233 - Handle multiple @action values from broken trackers.
234 - Accept single-character subject lines
235 - xmlrpc handling of unicode characters and binary values, see
236   http://thread.gmane.org/gmane.comp.bug-tracking.roundup.user/10040
237   thanks to Hauke Duden for reporting these.
238 - frontends/roundup.cgi got out of sync with the roundup.cgi.Client API
239 - Default to "text/plain" if no Content-Type header is present in email
240   (thanks Hauke Duden)
241 - Small documentation update regarding debugging aids (Bernhard Reiter)
242 - Indexer Xapian, made Xapian 1.2 compatible. Needs at least Xapian 1.0.0 now.
243   (Bernhard Reiter; Thanks to Olly Betts for providing the patch Issue2550647.)
246 2010-02-19 1.4.13
248 Fixed:
249 - Multilink edit fields lose their values (thanks Will Maier)
252 2010-02-09 1.4.12 (r4455)
254 Features:
255 - Support IMAP CRAM-MD5, thanks Jochen Maes
257 Fixes:
258 - Proper handling of 'Create' permissions in both mail gateway (earlier
259   commit r4405 by Richard), web interface, and xmlrpc. This used to
260   check 'Edit' permission previously. See
261   http://thread.gmane.org/gmane.comp.bug-tracking.roundup.devel/5133
262   Add regression tests for proper handling of 'Create' and 'Edit'
263   permissions.
264 - Fix handling of non-ascii in realname in the nosy mailer, this used to
265   mangle the email address making it unusable when replying. Thanks to
266   intevation for funding the fix.
267 - Fix documentation on user required to run the tests, fixes 
268   issue2550618, thanks to Chris aka 'radioking'
269 - Add simple doc about translating customised tracker content
270 - Add "flup" setup documentation, thanks Christian Glass
271 - Fix "Web Access" permission check to allow serving of static files to
272   Anonymous again
273 - Add check for "Web Access" permission in all web templating permission
274   checks
275 - Improvements in upgrading documentation, thanks Christian Glass
276 - Display 'today' in the account user's timezone, thanks David Wolever
277 - Fix file handle leak in some web interfaces with logging turned on,
278   fixes issue1675845
279 - Attempt to generate more human-readable addresses in email, fixes
280   issue2550632
281 - Allow value to be specified to multilink form element templating, fixes
282   issue2550613, thanks David Wolever
283 - Fix thread safety with stdin in roundup-server, fixes issue2550596
284   (thanks Werner Hunger)
287 2009-12-21 1.4.11 (r4413)
289 Features:
290 - Generic class editor may now restore retired items (thanks Ralf Hemmecke)
292 Fixes:
293 - Fix security hole allowing user permission escalation (thanks Ralf
294   Schlatterbeck)
295 - More SSL fixes. SSL wants the underlying socket non-blocking. So we
296   don't call socket.setdefaulttimeout in case of SSL. This apparently
297   never raises a WantReadError from SSL.
298   This also fixes a case where a WantReadError is raised and apparently
299   the bytes already read are dropped (seems the WantReadError is really
300   an error, not just an indication to retry).
301 - Correct initial- and end-handshakes for SSL
302 - Update FAQ to mention infinite redirects with pathological settings of
303   the tracker->web variable. Closes issue2537286, thanks to "stuidge"
304   for reporting.
305 - Fix some format errors in italian translation file
306 - Some bugs issue classifiers were causing database lookup errors
307 - Fix security-problem: If user hasn't permission on a message (notably
308   files and content properties) and is on the nosy list, the content was
309   sent via email. We now check that user has permission on the message
310   content and files properties. Thanks to Intevation for funding this
311   fix.
312 - Fix traceback on .../msgN/ url, this requests the file content and for
313   apache mod_wsgi produced a traceback because the mime type is None for
314   messages, fixes issue2550586, thanks to Thomas Arendsen Hein for
315   reporting and to Intevation for funding the fix.
316 - Handle OPTIONS http request method in wsgi handler, fixes issue2550587.
317   Thanks to Thomas Arendsen Hein for reporting and to Intevation for
318   funding the fix.
319 - Add documentation for migrating to the Register permission and
320   fix mailgw to use Register permission, fixes issue2550599
321 - Fix styling of calendar to make it more usable, fixes issue2550608
322 - Fix typo in email section of user guide, fixes issue2550607
323 - Fix WSGI response code (thanks Peter Pöml)
324 - Fix linking of an existing item to a newly created item, e.g.
325   edit action in web template is name="issue-1@link@msg" value="msg1"
326   would trigger a traceback about an unbound variable.
327   Add new regression test for this case. May be related to (now closed)
328   issue1177477. Thanks to Intevation for funding the fix.
329 - Clean up all the places where role processing occurs. This is now in a
330   central place in hyperdb.Class and is used consistently throughout.
331   This also means now a template can override the way role processing
332   occurs (e.g. for elaborate permission schemes). Thanks to intevation
333   for funding the change.
334 - Fix issue2550606 (german translation bug) "an hour" is only used in
335   the context "in an hour" or "an hour ago" which translates to german
336   "in einer Stunde" or "vor einer Stunde".  So "an hour" is translated
337   "einer Stunde" (which sounds wrong at first).  Also note that date.py
338   already has a comment saying "XXX this is internationally broken" --
339   but at least there's a workaround for german :-) Thanks to Chris
340   (radioking) for reporting.
343 2009-10-09 1.4.10 (r4374)
345 Fixes:
346 - Minor update of doc/developers.txt to point to the new resources
347   on www.roundup-tracker.org (Bernhard Reiter)
348 - Small CSS improvements regaring the search box (thanks Thomas Arendsen Hein)
349   (issue 2550589)
350 - Indexers behaviour made more consistent regarding length of indexed words
351   and stopwords (thanks Thomas Arendsen Hein, Bernhard Reiter)(issue 2550584)
352 - fixed typos in the installation instructions (thanks Thomas Arendsen Hein)
353   (issue 2550573) 
354 - New config option csv_field_size: Pythons csv module (which is used
355   for export/import) has a new field size limit starting with python2.5.
356   We now issue a warning during export if the limit is too small and use
357   the csv_field_size configuration during import to set the limit for
358   the csv module. (Ralf Schlatterbeck)
359 - Small fix for CGI-handling of XMLRPC requests for python2.4, this
360   worked only for 2.5 and beyond due to a change in the xmlrpc interface
361   in python (Ralf Schlatterbeck)
362 - Document filter method of xmlrpc interface (Ralf Schlatterbeck)
363 - Fix interaction of SSL and XMLRPC, now XMLRPC works with SSL 
364   (Ralf Schlatterbeck)
366 2009-08-10 1.4.9 (r4346)
368 Fixes:
369 - fixed action taken in response to invalid GET request
370 - fixed classic tracker template to submit POST requests when appropriate
371 - fix problems with french and german locale files (issue 2550546)
372 - Run each message of the mail-gateway in a separate transaction,
373   see http://thread.gmane.org/gmane.comp.bug-tracking.roundup.user/9500
374 - fix problem with bounce-message if incoming mail has insufficient
375   privilege, e.g., user not existing (issue 2550534)
376 - fix construction of individual messages to nosy recipents with
377   attachments (issue 2550568)
378 - re-order sqlite imports to handle multiple installed versions (issue
379   2550570)
380 - don't show entire history by default
381   (fixes http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=540629)
382 - remove use of string exception
385 2009-03-18 1.4.8 (r4209)
387 Fixes:
388 - bug introduced into hyperdb filter (issue 2550505)
389 - bug introduced into CVS export and view (issue 2550529)
390 - bugs introduced in the migration to the email package (issue 2550531)
391 - handle bogus pagination values (issue 2550530)
392 - fix TLS handling with some SMTP servers (issues 2484879 and 1912923)
395 2009-03-13 1.4.7 (r4202)
397 Features:
398 - Provide a "no selection" option in web interface selection widgets
399 - Debug logging now uses the logging module rather than print
400 - Allow CGI frontend to serve XMLRPC requests.
401 - Added XMLRPC actions, as well as bridging CGI actions to XMLRPC actions.
402 - Optimized large file serving via mod_python / sendfile().
403 - Support resuming downloads for (large) files.
405 Fixes:
406 - a number of security issues were discovered by Daniel Diniz
407 - EditCSV and ExportCSV altered to include permission checks
408 - HTTP POST required on actions which alter data
409 - HTML file uploads served as application/octet-stream
410 - Handle Unauthorised in file serving correctly
411 - New item action reject creation of new users
412 - Item retirement was not being controlled
413 - Roundup is now compatible with Python 2.6
414 - Improved French and German translations
415 - Improve consistency of item sorting in HTML interface
416 - Various other small bug fixes, robustification and optimisation
419 2008-09-01 1.4.6
420 Fixed:
421 - Fix bug introduced in 1.4.5 in RDBMS full-text indexing
422 - Make URL matching code less matchy
423 - Try to clarify mail_domain config setting
426 2008-08-19 1.4.5
427 Feature:
428 - Add use of username/password stored in ~/.netrc in mailgw (sf patch
429   #1912105)
431 Fixed:
432 - 'Make a Copy' failed with more than one person in nosy list (sf #1906147)
433 - xml-rpc security checks and tests across all backends (sf #1907211)
434 - Send a Precedence header in email so (well-written) autoresponders don't
435 - Fix mailgw total failure bounce message generation (thanks Bradley Dean)
436 - Fix for postgres 8.3 compatibility (and bug) (sf patch #2030479 and bug
437   #1959261)
438 - Fix for translations (sf patch #2032526)
439 - Fire reactors after file storage is all done (sf patch #2001243)
440 - Allow negative ids other than -1 for item generation (sf patch #1982481)
441 - Better German translation for retiring users (sf #1998701)
442 - More improvements to German translation (sf #1919446)
443 - Add filter() to XML-RPC interface (sf patch #1966456)
444 - Fix IndexError when there are no messages to an issue (sf patch #1894249)
445 - Prevent broken pipe errors in csv export (sf patch #1911449)
446 - New session API and cleanup thanks anatoly t.
447 - Make WSGI handler threadsafe (sf #1968027)
448 - Improved URL matching RE (sf #2038858)
449 - Allow binary file content submission via XML-RPC (sf #1995623)
450 - Don't run old code on newer database (sf #1979556)
451 - Fix HTML injection into page title
452 - Fix indexer handling of indexed Link properties (sf #1936876)
455 2008-03-01 1.4.4
456 Fixed:
457 - Security fixes (thanks Roland Meister)
460 2008-02-27 1.4.3
461 Fixed:
462 - MySQL backend bug introduced in 1.4.2 (TEXT columns need a size when
463   being indexed)
466 2008-02-08 1.4.2
467 Feature:
468 - New config option in mail section: ignore_alternatives allows to
469   ignore alternatives besides the text/plain part used for the content
470   of a message in multipart/alternative attachments.
471 - Admin copy of error email from mailgw includes traceback (thanks Ulrik
472   Mikaelsson)
473 - Messages created through the web are now given an in-reply-to header
474   when email out to nosy (thanks Martin v. Löwis)
475 - Nosy messages now include more information about issues (all link
476   properties with a "name" attribute) (thanks Martin v. Löwis)
478 Fixed:
479 - Searching date range by supplying just a date as the filter spec
480 - Handle no time.tzset under Windows (sf #1825643)
481 - Fix race condition in file storage transaction commit (sf #1883580)
482 - Make user utils JS work with firstname/lastname again (sf #1868323)
483 - Fix ZRoundup to work with Zope 2.8.5 (sf #1806125)
484 - Fix race condition for key properties in rdbms backends (sf #1876683)
485 - Handle Reject in mailgw final set/create (sf #1826425)
488 2007-11-09 1.4.1
489 Fixed:
490 - Removed some metakit references
493 2007-11-04 1.4.0
494 Feature:
495 - Roundup has a new xmlrpc frontend that gives access to a tracker using
496   XMLRPC.
497 - Dates can now be in the year-range 1-9999
498 - The metakit backend has been removed
499 - Add simple anti-spam recipe to docs
500 - Allow customisation of regular expressions used in email parsing, thanks
501   Bruno Damour
502 - Italian translation by Marco Ghidinelli
503 - Multilinks take any iterable
504 - config option: specify port and local hostname for SMTP connections
505 - Tracker index templating (i.e. when roundup_server is serving multiple
506   trackers) (sf bug 1058020)
507 - config option: Limit nosy attachments based on size (Philipp Gortan)
508 - roundup_server supports SSL via pyopenssl
509 - templatable 404 not found messages (sf bug 1403287)
510 - Unauthorized email includes a link to the registration page for
511   the tracker
512 - config options: control whether author info/email is included in email
513   sent by roundup
514 - support for receiving OpenPGP MIME messages (signed or encrypted)
516 Fixed:
517 - Handling of unset Link search in RDBMS backend
518 - Journal export of anydbm didn't correctly export previously empty values
519 - Fix handling of defaults for date fields
520 - Fix <form> name in user editing to allow multilink popups to work
521 - Fix form handling of editing existing hyperdb items from a new item page.
522 - Added new rdbms-indexes for full-text index which will speed up
523   reindexing.
524 - Turning off indexing for content properties of FileClass instance
525   (e.g., "file" and "msg") now works for SQL backends.
526 - Enabled over-riding of content-type in web interface (thanks
527   John Mitchell)
528 - Validate user timezones to filter bad entries (sf bug 1738470)
529 - Classic template allows searching for issues with no topic set
530   (sf bug 1610787)
531 - xapian_indexer uses current API for stemming (Rick Benavidez)
532   (sf bug 1771414)
533 - Ensure email addresses are unique (sf bug 1611787)
534 - roundup_admin tracks uncommitted changes in interactive mode
535   for all backends (sf bug 1297014)
536 - add template search path for easy_install (Marek Kubica)
537 - don't spam the roundup admin on client shutdowns (Ulrik Mikaelsson)
538 - respect umask on filestorage backends (Ulrik Mikaelsson) (sf bug 1744328)
539 - cope with spam robots posting multiple instances of the same form
540 - include the author of property-only changes in generated messages
541 - fuller email validation in templates (sf feature 1216291)
542 - cope with bad cookies from other apps on same domain (sf bug 1691708)
543 - updated Spanish translation from Ramiro Morales
544 - clean up query display of "Private to you items" (sf bug 1481394)
545 - use local timezone for mail date header (sf bug 1658173)
546 - allow CSV export of queries on selected issues (sf bug 1783492)
547 - remove blobfiles on destroy (sf bug 1654132)
548 - handle postgres exceptions during session cleanup (sf bug 1703116)
549 - update Xapian indexer to use current API
550 - handle export and import of old trackers that have data attached to
551   journal "create" events
552 - fix a couple more old instances of "type" instead of "ENGINE" for mysql
553   backend
554 - make LinkHTMLProperty handle non-existing keys (sf patch 1815895)
557 2007-02-15 1.3.3
558 Fixed:
559 - If-Modified-Since handling was broken
560 - Updated documentation for customising hard-coded searches in page.html
561 - Updated Windows installation docs (thanks Bo Berglund)
562 - Handle rounding of seconds generating invalid date values
563 - Handle 8-bit untranslateable messages from database properties
564 - Fix scripts/roundup-reminder date calculation (sf bug 1649979)
565 - Improved due_date and timelog customisation docs (sf bug 1625124)
568 2006-12-19 1.3.2
569 Fixed:
570 - relax rules for required fields in form_parser.py (sf bug 1599740)
571 - documentation cleanup from Luke Ross (sf patch 1594860)
572 - updated Spanish translation from Ramiro Morales (sf patch 1594718)
573 - handle 8-bit untranslateable messages in tracker templates
574 - handling of required for boolean False and numeric 0 (sf bug 1608200)
575 - removed bogus args attr of ConfigurationError (sf bug 1608056)
576 - implemented start_response in roundup.cgi (sf bug 1604304)
577 - clarified windows service documentation (sf patch 1597713)
578 - HTMLClass fixed to work with new item permissions check (sf bug 1602983)
579 - support POP over SSL (sf patch 1597703)
580 - clean up input field generation and quoting of values (sf bug 1615616)
581 - allow use of roundup-server pidfile without forking (sf bug 1614753)
582 - allow translation of status/priority menu options (sf bug 1613976)
585 2006-11-11 1.3.1
586 Fixed:
587 - setup.py had broken reference to roundup.cgi (sf bug 1593573)
588 - full-text search wasn't coping with multiple multilinks to the same class
589 - unicode / sqlite 3 problem (sf bug 1589292)
592 2006-11-09 1.3.0
593 Feature:
594 - WSGI support via roundup.cgi.wsgi_handler
596 Fixed:
597 - sqlite module detection was broken for python 2.5 compiled without sqlite
598   support
599 - fixed support for pysqlite2 (version 2.1.0 is the minimum version
600   supported)
601 - roundup-server called setuid when run by non-root user
602 - fix sort/group direction checkbox in issue.index.html (sf bug 1593025)
603 - fix error detection for non-EN locales of postgres (sf bug 1592249)
604 - fix email change note rendering of multiline properties (sf patch 1575223)
605 - fix sidebar search links (sf patch 1574467)
606 - nicer "permission required" messages (sf patch 1558183)
607 - fix unstable ordering of detectors (sf bug 1585378)
610 2006-10-07 1.2.1
611 Fixed:
612 - E-mail subject line prefix delimiter configuration was being ignored.
613 - Password confirm field in user editing.
616 2006-10-04 1.2.0
617 Feature:
618 - supports Python 2.5, including the sqlite3 module
619 - full timezone support (sf patch 1465296)
620 - handle connection loss when responding to web requests
621 - match incoming mail In-Reply-To against existing messages when no issue
622   id is specified in the Subject
623 - added StringHTMLProperty wrapped() method to wrap long lines in issue
624   display
625 - include the popcal in Date field editing and search fields by default
626 - @required in forms may now specify properties of linked items (sf patch
627   1507093)
628 - update for latest version of pysqlite (sf bug 1487098; patch 1534227)
629 - update for latest version of psycopg2 (sf patch 1429391)
630 - new "exporttables" command in roundup-admin (sf bug 1533791)
631 - roundup-admin "export" may specify classes to exclude (sf bug 1533791)
632 - sorting and grouping by multiple properties is now supported by the
633   backends *and* the classic template.
634 - sorting, grouping, and searching by transitive properties (e.g.,
635   messages.author.supervisor) is now supported in all backends
636 - added filter_sql to SQL backends which takes an arbitrary SQL statement
637   and returns a list of item ids
640 Fixed:
641 - Verbose option for import and export (sf bug 1505645)
642 - -c option for roundup-mailgw won't accept parameter (sf bug 1505649)
643 - '?' in rfc2822-encoded header isn't quoted (sf bug 1505663)
644 - fix error message in form parser
645 - updated ZRoundup for Zope 2.9 (sf patch 1511734)
646 - fix timelog example in customisation doc to mention permissions
647 - nicer listing of Superseder links (sf non-patch 1497767)
648 - include roundup-server.ini.example (sf bug 1493859)
649 - dumb bug in cgi templating utils (sf bug 1490176)
650 - handle unicode in query names (sf bug 1495702)
651 - fix error during mailgw bouncing message (sf bug 1413501)
652 - hyperdb handling of empty raw values for Multilink and Password (sf bug
653   1507814)
654 - don't int() ids (sf bug 1512939)
655 - fix importing into anydbm backend (sf bug 1512939)
656 - fix help message for roundup-admin install (sf bug 1494990)
657 - removed traceback with OTK is used multiple times (sf bug 1240539)
658 - metakit backend was indexing FileClass content even when asked not to
659 - anydbm backend will finally sort numerically by ID
660 - problem with string sorting in anydbm backend fixed: If a string was
661   fully numeric it was sorted as a number
662 - Multilink-sorting now sorts by orderprop not by ID and works for all
663   backends
664 - Bug with name-collisions in sorted classes when sorting by Link
665   properties in metakit backend fixed
666 - Postgres backend allows transaction collisions to be ignored when
667   committing cleanup in the sessions database
668 - translate titles of "show all" and "unassigned" issue lists
669   in classic template (sf patch 1424576)
670 - "as" is a keyword in Python 2.6
671 - "from __future__" statments need to be first line of file in Python 2.6
672 - better conflict retry in postgresql backend (sf bug 1552809)
673 - fix time log example (sf bug 1554630)
676 2006-04-27 1.1.2
677 Feature:
678 - server-ctl script uses server configuration file (sf bug 1443805)
679 - mail user interface translated (sf patch 1462491)
681 Fixed:
682 - progress display in roundup-admin reindex
683 - bug in menu() permission filter (sf bug 1444440)
684 - indexing may be turned off for FileClass "content" now
685   ("content" and "type" properties are now automatically included in the
686   FileClass schema where previously the "content" property was faked and
687   "type" was optional)
688 - verbose output during import is optional now (sf bug 1475624)
689 - escape *all* uses of "schema" in mysql backend (sf bug 1472120)
690 - responses to user rego email (sf bug 1470254)
691 - dangling connections in session handling (sf bug 1463359)
692 - reduced frequency of session timestamp update
693 - classhelp popup pagination forgot about "type" (sf bug 1465836)
694 - umask is now configurable (with the same 0002 default)
695 - sorting of entries in classhelp popup (sf bug 1449000)
696 - allow single digit seconds in date spec (sf bug 1447141)
697 - prevent generation of new single-digit seconds dates (sf bug 1429390)
698 - implement close() on all indexers (sf bug 1242477)
701 2006-03-03 1.1.1
702 Fixed:
703 - failure with browsers not sending "Accept-Language" header
704   (sf bugs 1429646 and 1435335)
705 - translate class name in "required property not supplied" error message
706   (sf bug 1429669)
707 - error in link property lookups with numeric-alike key values (sf bug 1424550)
708 - ignore UTF-8 BOM in .po files
709 - add permission filter to menu() implementations (sf bug 1431188)
710 - lithuanian translation updated by Nerijus Baliunas (sf patch 1411175)
711 - incompatibility with python2.3 in the mailer module (sf bug 1432602)
712 - typo in SMTP TLS option name: "MAIL_TLS_CERFILE" (sf bug 1435452)
713 - email obfuscation code in html templating is more robust
714 - blank-title subject line handling (sf bug 1442121)
715 - "All users may only view and edit issues, files and messages they
716   create" example in docs (sf bug 1439086)
717 - saving of queries (sf bug 1436169)
718 - "Adding a new constrained field to the classic schema" example in docs
719   (sf bug 1433118)
720 - security check in mailgw (sf bug 1442145)
721 - "clear this message" (sf bug 1429367)
722 - escape all uses of "schema" in mysql backend (sf bug 1397569)
723 - date spec wasn't allowing week intervals
726 2006-02-10 1.1.0
727 Feature:
728 - trackers may configure custom stop-words for the full-text indexer
729 - login may now be for a single session (and this is the default)
730 - trackers may hide exceptions from web users (they will be mailed to the
731   tracker admin) (hiding is the default)
732 - include "clear this message" link in the "ok" message bar
734 Fixed:
735 - fixes in scripts/import_sf.py
736 - fix some unicode bugs in roundup-admin import
737 - Xapian indexer wasn't actually being used and its reindexing of existing
738   data was busted to boot
739 - roundup-admin import wasn't indexing message content
740 - allow dispname to be passed to renderWith (sf bug 1424587)
741 - rename dispname to @dispname to avoid name clashes in the future
742 - fixed schema migration problem when Class keys were removed
745 2006-02-03 1.0.1
746 Feature:
747 - scripts/import_sf.py will import a tracker from Sourceforge.NET
748 - added hasRole() to HTMLUser
750 Fixed:
751 - SQL generation for sort/group by separate Link properties (sf bug
752   1417565)
753 - fix timezone offsetting in email Date: header
754 - fix security check for hasPermission('Permission', None)
757 2006-01-27 1.0
758 Feature:
759 - Lithuanian translation by Aiste Kesminaite
760 - Web User Interface language selection by form variable @language,
761   browser cookie or HTTP header Accept-Language (sf patch 1360321)
762 - initial values for configuration options may be passed on
763   'roundup-admin install' command line (based on sf patch 1237110)
764 - favicon.ico image may be changed with server config option (sf patch 1355661)
765 - Password objects initialized from plaintext remember plaintext value
766   (sf rfe 1379447)
767 - Roundup installation document includes configuration example
768   for Exim Internet Mailer (sf bug 1393860)
769 - enable registration confirmation by web only (sf bug 1381675)
770 - allow preselection of values in templating menu()s (sf patch 1396085)
771 - display the query name in the header (sf feature 1298535 / patch 1349387)
772 - classhelp works with Link properties now (sf bug 1410290)
773 - added setorderprop() and setlabelprop() to Class (sf features 1379534,
774   1379490)
775 - CSV encoding support (sf bug 1240848)
776 - fields rendered with StructuredText are hyperlinked by default
777 - additional attributes for input element may be passed to the 'field'
778   method of a property wrapper
779 - added "copy_url" method to generate a URL for copying an item
781 Fixed:
782 - MySQL now creates String columns using the TEXT column type
783 - password.crypt won't work with md5 passwords (sf bug 1372253)
784 - use quoted printable encoding for nosy attachments that have MIME
785   type 'text/plain' but contain 8-bit characters (sf bug 1381559)
786 - login name and email address fields in the classic template
787   are highlighted as required fields (sf bug 1392364)
788 - french translation updated by Patrick Decat (sf patch 1397059)
789 - HTTP authorization takes precedence over session cookie (sf bug 1396134)
790 - enforce correct encoding of PostgreSQL backend (sf bug 1374235)
791 - grouping/sorting on link to same class fixed (sf bug 1404930)
792 - all backends implement the retired check in getnodeids (sf bug 1290560)
793 - fix detection of "missing" existing values in CGI form parser (sf bug
794   1414149)
795 - ZRoundup works again (sf bug 1263842)
796 - default user template does not display password fields and submit button
797   when editing is not allowed
798 - fix StructuredText import in cgi.templating
799 - have "System Messages" be marked as such again (sf bug 1281907)
800 - enable editing of public queries (sf bug 966144)
803 2005-10-07 0.9.0b1
804 Feature:
805 - added "imapServer.py" script (sf patch 934567)
806 - added date selection popup windows (thanks Marcus Priesch)
807 - added Xapian indexer; replaces standard indexers if Xapian is available
808 - mailgw subject parsing has configurable levels of strictness
809 - nosy messages may be sent individually to all recipients
810 - remember where we came from when logging in (sf patch 1312889)
813 2006-??-?? 0.8.6
814 Fixed:
815 - french translation updated by Patrick Decat (sf patch 1397059)
816 - tighten up Date parsing to not allow 'M/D/YY' (or 'D/M/YY) (sf bug
817   1290550)
818 - handle "schema" being reserved word in MySQL 5+ (sf bug 1397569)
819 - fixed documentation of filter() in the case of multiple values in a
820   String search (sf bug 1373396)
821 - fix comma-separated ID filter spec in web requests (sf bug 1396278)
822 - fix Date: header generation to be LOCALE-agnostic (sf bug 1352624)
823 - fix admin doc description of roundup-server config file
824 - fix redirect after instant registration (sf bug 1381676)
825 - fix permission checks in cgi interface (sf bug 1289557)
826 - fix permission check on RetireAction (sf bug 1407342)
827 - timezone now applied to date for pretty-format (sf bug 1406861)
828 - fix mangling of "_" in mail Subject class name (sf bug 1413852)
829 - catch bad classname in URL (related to sf bug 1240541)
830 - clean up digested_file_types (sf bug 1268303)
831 - fix permission checks in mailgw (sf bug 1263655)
832 - fix encoding of subject in generated error message (sf bug 1414465)
835 2005-10-07 0.8.5
836 Feature:
837 - Argentinian Spanish translation by Ramiro Morales
839 Fixed:
840 - Display of Multilinks where linked Class labelprop values are None
841 - Fix references to the old * Registration Permissions
842 - Fix missing merge of fix to sf bug 1177057
843 - Fix RDBMS indexer indexing UTF-8 words that encode to > 30 chars
844 - Handle invalidly-specified charsets in incoming email
847 2005-07-18 0.8.4
848 Fixed:
849 - extra CRs in CSV export files on Windows platform (sf bug 1195742)
850 - activity RDBMS columns were being reported in changes
851 - fix name collision in roundup.cgi script (sf bug 1203795)
852 - fix handling of invalid interval input
853 - search locale files relative ro roundup installation path (sf bug 1219689)
854 - use translation for boolean property rendering (sf bug 1225152)
855 - enabled disabling of REMOTE_USER for when it's not a valid username (sf
856   bug 1190187)
857 - fix invocation of hasPermission from templating code (sf bug 1224172)
858 - have 'roundup-admin security' display property restrictions (sf bug
859   1222135)
860 - fixed templating menu() sort_on handling (sf bug 1221936)
861 - allow specification of pagesize, sorting and filtering in "classhelp"
862   popups (sf bug 1211800)
863 - handle dropped properies in rdbms/metakit journal export (sf bug 1203569)
864 - handle missing Subject lines better (sf bug 1198729)
865 - sort/group by missing values correctly (sf bugs 1198623, 1176897)
866 - discard, don't bounce messages to the mailgw when the messages's sender
867   is invalid (ie. when we try to bounce, we get a 550 "unknown user
868   account" response from the SMTP server) (sf bug 1190906)
869 - removed debugging code from cgi/actions.py
870 - refactored hyperdb.rawToHyperdb, allowing a number of improvements
871   (thanks Ralf Schlatterbeck)
872 - don't try to set a timeout for IMAPS (thanks Paul Jimenez)
873 - present Reject exception messages to web users (sf bug 1237685)
876 2005-05-02 0.8.3
877 Feature:
878 - chinese translation by limodou
880 Fixed:
881 - fix reference to The Zope Book in Roundup FAQ
882 - disabled file logging in Roundup test suite (sf bug 1155649)
883 - return original string if message issue xref isn't valid
884 - fix nosyreaction.py to stop it setting the nosy list unnecessarily
885   (see doc/upgrading.txt for how to fix in your trackers)
886 - after logout, always display tracker home page
887 - web forms don't create new items if no item properties are set from UI
888 - item creation failed if multilink fields had invalid entries (sf bug
889   1177602)
890 - fix bdist_rpm (sf bug 1164328)
891 - fix checking of "Email Access" for Anonymous email registration (sf bug
892   1177057)
893 - disable "Email Access" for Anonymous by default to stop spam regsitering
894   users on public trackers
895 - send errors in the web interface to a logfile by default. Use the
896   "debug" multiprocess mode (roundup-server) or the DEBUG_TO_CLIENT var
897   (roundup.cgi) to have the errors appear in your browser
898 - fix setgid typo (sf bug 1171346)
899 - fix faulty find_template filename facility (sf bug 1163629)
900 - fix roundup-admin "export" so it creates the target dir if needed
901 - "fix" roundup-admin "import" to not use "universal newline support" since
902   the csv module appears to have its own ideas about such things (sf bug
903   1163890)
904 - fix installation docs referring to old-style configuration variables
905 - fix roundup-admin "find" for searching Multilinks (sf bug 1189465)
908 2005-03-03 0.8.2
909 Feature:
910 - roundup-server automatically redirects from trackers list
911   to the tracker page if there is only one tracker
913 Fixed:
914 - added content to ZRoundup refresh.txt file (sf bug 1147622)
915 - fix invalid reference to csv.colon_separated
916 - correct URL to What's New in setup.py meta-data
917 - change AUTOCOMMIT=OFF to AUTOCOMMIT=0 for MySQL (sf bug 1143707)
918 - compile message objects in 'setup.py build'
919 - use backend datatype for journal timestamps in RDBMSes
920 - fixes to the "Using an external password validation source"
921   customisation example (sf bugs 1153640 and 1155108)
924 2005-02-17 0.8.1
925 Fixed:
926 - replaced MutlilinkIterator with multilinkGenerator (thanks Bob Ippolito)
927 - fixed broken csv import in roundup.admin module
928 - fixed braino in HTMLClass.filter() (sf bug 1124213)
929 - change ZTUtils Iterator to always iter() its sequence argument
932 2005-01-16 0.8.0
933 Fixed:
934 - fix roundup-server log and PID file paths to be absolute
935 - fix initialisation of roundup-server in daemon mode so initialisation
936   errors are visible
937 - fix: 'Logout' link was enabled on issue index page only
938 - have Permissions only test the check function if itemid is suppled
939 - modify cgi templating system to check item-level permissions in listings
940 - enable batching in message and file listings
941 - more documentation of security mechanisms (incl. sf patches 1117932,
942   1117860)
943 - better unit tests for security mechanisms
944 - code cleanup (sf patch 1115329 and additional)
945 - issue search page allows setting of no sorting / grouping (sf bug
946   1119475)
947 - better edit conflict handling (sf bug 1118790)
948 - consistent text searching behaviour (AND everywhere) (sf bug 1101036)
949 - fix handling of invalid date input (sf bug 1102165)
950 - retain Boolean selections in edit error handling (sf bug 1101492)
951 - fix initialisation of logging module from config file (sf bug 1108577)
952 - removed rlog module (py 2.3 is minimum version now)
953 - fixed class "help" listing paging (sf bug 1106329)
954 - nicer error looking up values of None (response to sf bug 1108697)
955 - fallback for (list) popups if javascript disabled (sf patch 1101626)
958 2005-01-13 0.8.0b2
959 Fixed:
960 - note about how to run roundup demo in Windows (sf bug 1082090)
961 - fix API for templating utils extensions - remove "utils" arg (sf bug 1081981)
962 - back_sqlite.py is missing "import time" (sf bug 1081959)
963 - fix (list) popup (sf bug 1083570)
964 - fix some security assertions (sf bug 1085481)
965 - 'roundup-server -S' always writes [trackers] section heading (sf bug 1088878)
966 - fix port number as int in mysql connection info (sf bug 1082530)
967 - fix setup.py to work with <Python2.3 (sf bug 1082801)
968 - fix permissions checks in cgi templating (sf bug 1082755)
969 - fix "Users may only edit their issues" example in docs
970 - handle ~/.my.cnf files for MySQL defaults (sf bug 1096031)
973 2004-12-08 0.8.0b1
974 Feature:
975 - added MD5 scheme for password hiding
976 - added support for HTTP charset selection
977 - implement __nonzero__ for HTMLProperty
978 - remove "manual" locking of sqlite database
979 - create a new RDBMS cursor after committing
980 - added basic logging, and configuration of it and python's logging module
981 - roundup-mailgw now logs fatal exceptions rather than mailing them to admin
982 - add a default argument to the DateHTMLProperty.field method, and an
983   optional Interval (string or object) to the DateHTMLProperty.now (patch
984   from Vickenty Fesunov)
985 - hide "(list)" popup links when issue is only viewable
986 - roundup-server options -g and -u accept both ids and names (sf bug 983769)
987 - roundup-server now has a configuration file (-C option)
988 - added mod_python interface (see installation.txt)
989 - reorganised tracker configuration, using ConfigParser config, cleaned-up
990   schema definition and implementing easier extension writing (sf rfe 661301)
991 - Permissions may now be defined on a per-property basis
992 - added "Create" Permission. Replaces the "Web"- and "Email Registration"
993   Permissions.
994 - added option to turn off registration confirmation via email
995   ("instant_registration" in config) (sf rfe 922209)
996 - roundup-admin reindex command may now work on single items or classes
997 - multiple selection Link/Multilink search field (thanks Marlon van den Berg)
998 - relaxed hyperlinking in web interface (accept "issue123" or "Issue 123")
999 - record journaltag lookup ("fixes" sf bug 998140)
1000 - allow listing popup to be used in query forms (thanks Marcus Priesch)
1001 - roundup windows service may be installed with command line options
1002   recognized by roundup-server (but not tracker specification arguments).
1003   Use this to specify server configuration file for the service.
1004 - added experimental multi-thread server
1005 - don't try to import all backends in backends.__init__ unless we *want* to
1006 - unless in debug mode, keep a single persistent connection through a
1007   single web or mailgw request.
1008 - HTTP Basic Authentication (sf patch 1067690)
1009 - extended security.addPermissionToRole to allow skipping the separate
1010   getPermission call
1012 Fixed:
1013 - postgres backend open doesn't hide corruption in schema (sf bug 956375)
1014 - *dbm-style backends nuke() method now clear id counters
1015 - removed safeget() from the API (sf bug 994750)
1016 - demo tracker is always set up on localhost (sf bug 1049101)
1017 - relaxed URL designator syntax to allow issue[0]*1 (sf bug 1054523)
1020 2005-05-02 0.7.12
1021 Fixed:
1022 - handle capitalisation of class names in text hyperlinking (sf bug
1023   1101043)
1024 - quote full-text search text in URL generation
1025 - fixed problem migrating mysql databases
1026 - fix search_checkboxes macro (sf patch 1113828)
1027 - fix bug in date editing in Metakit
1028 - allow suppression of search_text in indexargs_form (sf bug 1101548)
1029 - hack to fix some anydbm export problems (sf bug 1081454)
1030 - ignore AutoReply messages (sf patch 1085051)
1031 - fix ZRoundup syntax error (sf bug 1122335)
1032 - fix RDBMS clear() so it resets all class itemid counters
1035 2005-01-06 0.7.11
1036 Fixed:
1037 - index args URL generation broken in .10 (sf bug 1096027)
1038 - handle NotModified for non-static files (sf patch 1095790)
1039 - fix permission lookup in query editing
1042 2005-01-04 0.7.10
1043 Fixed:
1044 - reset ID counters if the database is cleared (thanks William)
1045 - apply IE caching "fix" to automatically serve up all pages expired
1046 - fix typo (sf patch 1076629)
1047 - fix hyperlinking of items (sf bug 1080251)
1048 - fix roundup-admin find command handling of Multilinks
1049 - fix some security assertions (sf bug 1085481)
1050 - don't set the title to nothing from incoming mail (thanks Bruce Guenter)
1051 - fix py2.4 strftime() API change bug (sf bug 1087746)
1052 - fix indexer searching with no valid words (sf bug 1086787)
1053 - updated searching / indexing docs
1054 - fix "(list)" popup when list is one item long (sf bug 1064716)
1055 - have RDBMS full-text indexer do AND searching (sf bug 1055435)
1056 - handle spaces in String index params in batching (sf bug 1054224)
1059 2004-10-26 0.7.9
1060 Feature:
1061 - DateHTMLProperty.field() accepts format string (thanks Wil Cooley)
1063 Fixed:
1064 - popup listing uses filter args (thanks Marlon van den Berg)
1065 - fixed editing of message contents
1066 - loosened the detection of issue cross-references in messages
1067 - open CSV files in "universal newline" mode
1068 - s/Modifed/Modified (thanks donfu)
1069 - applied patch fixing some form handling issues in ZRoundup (sf bug 995565)
1070 - enforce View Permission when serving file content (sf bug 1050470)
1071 - don't index common words (sf bug 1046612)
1072 - don't wrap query.item.html in a <span> (thanks Roch'e Compaan)
1073 - TAL expressions like 'request/show/whatever' return True
1074   if the request does not contain explicit @columns list
1075 - NumberHTMLProperty should return '' not "None" if not set (thanks
1076   William)
1077 - ensure multilink ordering in RDBMS backends (thanks Marcus Priesch, sf
1078   bug 950963)
1079 - always honor indexme property on Strings (sf patch 1063711)
1080 - make hyperdb value parsing errors readable in mailgw errors
1081 - make anydbm journal export handle removed properties
1082 - allow use of XML templates again
1085 2004-10-15 0.7.8
1086 Fixed:
1087 - Clean out sessions / otks tables when migrating
1090 2004-10-11 0.7.7
1091 Fixed:
1092 - ZRoundup's search interface works now (sf bug 994957)
1093 - fixed history display when "ascending"
1094 - removed references to py2.3+ boolean values (sf bug 995682)
1095 - fix static file path normalisation in security check (thanks David Linke)
1096 - less specific messages for login failures (thanks Chris Withers)
1097 - Reject raised against email messages should result in email rejection, not
1098   discarding of the message
1099 - mailgw can override the MAIL_DEFAULT_CLASS
1100 - handle Py2.3+ datetime objects as Date specs (sf bug 971300)
1101 - use row locking in MySQL newid() (sf bug 1034211)
1102 - add sanity check for sort and group on same property (sf bug 1033477)
1103 - extend OTK and session table value cols to TEXT (sf bug 1031271)
1104 - fix lookup of REMOTE_USER (sf bug 1002923)
1105 - new Interval props weren't created properly in rdbms
1106 - date.Interval() now accepts an Interval as a spec (sf bug 1041266)
1107 - handle deleted properties in RDBMS history
1108 - apply timezone in correct direction in user input (sf bug 1013097)
1109 - more efficient find() in RDBMS (sf bug 1012781)
1112 2004-07-21 0.7.6
1113 Fixed:
1114 - rdbms backend full text search failure after import (sf bug 980314)
1115 - rdbms backends not filtering correctly on link=None
1116 - fix anydbm journal import (sf bug 983166)
1117 - handle postgresql bug in SQL generation (sf bug 984591)
1118 - fix dates-from-Dates (sf bug 984604)
1119 - fix messageid generated when msgid is None for send_message (sf bug 987933)
1120 - make user permissions check more sane (fix search page for anonymous)
1121 - fixed RDBMS filter() for no matches from full-text search (sf bug 990778)
1122 - fixed DateHTMLProperty for invalid date entry (sf bug 986538)
1123 - fixed external password source example (sf bug 986601)
1124 - document the STATIC_FILES config var
1125 - implement the HTTP HEAD command (sf bug 992544)
1126 - fix journal export of files to remove content from CSV files
1127 - API clarification. Previously, the anydbm/bsddb/metakit filter() methods
1128   had required exact matches to Multilink argument lists. The RDBMS
1129   backends treated Multilink matches like all other data types - matching
1130   any of the Multilink argument list is good enough. The latter behaviour
1131   is implemented across the board now.
1132 - fix metakit handling of filter on Link==None
1135 2004-06-24 0.7.5
1136 Fixed:
1137 - force lookup of journal props in anydbm filtering
1138 - fixed lookup of "missing" Link values for new props in anydbm backend
1139 - allow list of values for id, Number and Boolean filtering in anydbm
1140   backend
1141 - fixed some more mysql 0.6->0.7 upgrade bugs (sf bug 950410)
1142 - fixed Boolean values in postgresql (sf bugs 972546 and 972600)
1143 - fixed -g arg to roundup-server (sf bug 973946)
1144 - better roundup-server usage string (sf bug 973352)
1145 - include "context" always, as documented (sf bug 965447)
1146 - fixed REMOTE_USER (external HTTP Basic auth) (sf bug 977309)
1147 - fixed roundup-admin "find" to use better value parsing
1148 - fixed RDBMS Class.find() to handle None value in multiple find
1149 - export now stores file "content" in separate files in export directory
1152 2004-06-10 0.7.4
1153 Fixed:
1154 - re-acquire the OTK manager when we re-open the database
1155 - mailgw handler can close the database on us
1156 - fixed grouping by a NULL Link value
1157 - fixed anydbm import/export (sf bugs 965216, 964457, 964450)
1158 - fix python 2.3.3 strftime deprecation warning (sf patch 968398)
1159 - fix some column datatypes in postgresql and mysql (sf bugs 962611,
1160   959177 and 964231)
1161 - fixed RDBMS journal packing (sf bug 959177)
1162 - fixed filtering by floats in anydbm (sf bug 963584)
1165 2004-05-28 0.7.3
1166 Fixed:
1167 - add "checked" to truth values for Boolean input
1168 - fixed import in metakit backend
1169 - fix SearchAction use of Class.filter(), and clarify API docs for same
1170 - ensure static files may only be served out of the tracker's "static
1171   files" directory
1174 2004-05-17 0.7.2
1175 Fixed:
1176 - anydbm sorting with None values (sf bug 952853)
1177 - roundup-server -g option not recognised (sf bug 952310)
1178 - HTML templating isset() inverted (sf bug 951779)
1179 - otks manager missing (sf bug 952931)
1180 - mention DEFAULT_TIMEZONE requirement in upgrading doc (sf bug 952932)
1181 - fix DateHTMLProperty so local() can override user timezone (sf bug
1182   953678)
1183 - fix anydbm sort/group direction handling, and make RDBMS sort/group use
1184   Link'ed "order" properties (sf bug 953148)
1185 - fix Interval editing (sf bug 954891)
1188 2004-05-10 0.7.1
1189 Fixed:
1190 - several temp files made it into the source distribution (sf bug 949243)
1191 - typo in roundup/instance.py
1192 - missing CRLF var in rfc822.py (sf patch 949471)
1193 - fix user creation page
1194 - have roundup server pass though the cause of a "403 Forbidden" response
1195 - fix schema mutation in sqlite backends (thanks Tamer Fahmy)
1196 - make popup Javascript IE 5.0 friendly (thanks Marlon van den Berg)
1197 - fix RDBMS import (thanks Tamer Fahmy)
1200 2004-05-06 0.7.0
1201 Fixed:
1202 - sqlite migration drops some journal information (thanks David Linke)
1203 - user editing Role entry help text always appears
1204 - disable forking server when os.fork() not available (sf bug 938586)
1205 - removed Boolean from source to make py <2.3 happy (sf bug 938790)
1206 - fix nested scope bug in rdbms multilink sorting
1207 - re-seed the random number generator for each request
1208 - postgresql backend altered to not use popen (thanks Georges Martin)
1209 - fixed journal marshalling in RDBMS backends (sf bug 943627)
1210 - fixed handling of key values starting with numbers (sf bug 941363)
1211 - fixed journal "param" column size in RDBMS backends
1212 - fixed static file serving
1213 - fixed rego from email address (sf bug 947414)
1214 - fixed sqlite journal ordering issue
1215 - fixed mysql date range filtering
1218 2004-04-18 0.7.0b3
1219 Feature:
1220 - added a favicon
1221 - added url_quote and html_quote methods to the utils object
1222 - added isset method to HTMLProperty
1223 - database export now exports full journals too
1224 - tracker name at end of page title (sf rfe 926840)
1225 - roundup-server now uses the ForkingMixin
1226 - added another sample detector "creator_resolution"
1227 - added search_checkboxes as an option for the search form
1228 - added IMAP support to mail gateway (sf rfe 934000)
1229 - check MANIFEST against the files actually unpacked
1230 - roundupdb nosymessage() takes an optional bcc list
1232 Fixed:
1233 - mysql and postgresql schema mutation now handle added Multilinks
1234 - web CSV export was busted (as was any action returning a result)
1235 - MultiMapping deviated from the Zope C implementation in a number of
1236   places (thanks Toby Sargeant)
1237 - MySQL and Postgresql use BOOL/BOOLEAN for Boolean types
1238 - OTK generation was busted (thanks Stuart D. Gathman)
1239 - export and import now include journals (incompatible with export < 0.7)
1240 - added "download_url" method to generate a correctly quoted URL for file
1241   download links (sf bug 927745)
1242 - all uses of TRACKER_WEB now ensure it ends with a '/'
1243 - roundup-admin install checks for existing tracker in target home
1244 - grouping (and sorting) by multilink in RDBMS backends (sf bug 655702)
1245 - roundup scripts may now be asked for their version (sf rfe 798657)
1246 - sqlite backend had stopped using the global lock
1247 - better check for anonymous viewing of user items (sf bug 933510)
1248 - stop Interval from displaying an empty string (sf bug 934022)
1249 - fixed storage of some datatypes in some RDBMS backends
1252 2004-03-27 0.7.0b2
1253 Feature:
1254 - added CSV export to index pages
1255 - added emailauditor.py which works around a bug in IE. See
1256   "detectors/emailauditor.py" for more info.
1257 - added dispatcher functionality - see upgrading.txt for more info
1258 - added Reject exception which may be raised by auditors. This is trapped
1259   by mailgw and may be used to veto creation of file attachments or
1260   messages. (sf bug 700265)
1261 - queries on a per-user basis, and public queries (sf "bug" 891798 :)
1262 - added DEFAULT_TIMEZONE (sf rfe 895139)
1263 - added HTML page template to the templating context as "template"
1264 - added is_retired to HTMLItems in templating
1266 Fixed:
1267 - Boolean, Date and Link HTML templating was broken
1268 - fix reporting of test inclusion in postgresql test
1269 - EditAction was confused about who "self" was
1270 - edit collision detection was broken for index-page edits
1271 - sqlite backend wasn't migrating multilink tables correctly
1272 - use SimpleCookie instead of Cookie (is an alias for the evil SmartCookie)
1273 - handle older sessions in session dbm
1274 - make presetunread more resilient to status Class changes
1275 - HTMLDatabase classes() was broken
1278 2004-03-24 0.7.0b1
1279 Major new features:
1280 - added postgresql backend (originally from sf patch 761740, many changes
1281   since)
1282 - added new "actor" automatic property (indicates user who cause the last
1283   "activity")
1284 - RDBMS backends implement their session and one-time-key stores and
1285   full-text indexers; thus they are now performing their own locking
1286   internally
1287 - all RDBMS backends now have indexes on several columns
1288 - support confirming registration by replying to the email (sf bug 763668)
1289 - all HTML templating methods now automatically check for permissions
1290   (either view or edit as appropriate), greatly simplifying templates
1292 Other new features:
1293 - simple support for collision detection (sf rfe 648763)
1294 - support setgid and running on port < 1024 (sf patch 777528)
1295 - using Zope3's test runner now, allowing GC checks, nicer controls and
1296   coverage analysis
1297 - change nosymessage and send_message to accept msgid=None (RFE #707235)
1298 - handle Resent-From: headers (sf bug 841151)
1299 - always sort MultilinkHTMLProperty in the correct order, usually
1300   alphabetically (sf feature 790512)
1301 - added script for copying user(s) ("scripts/copy-user.py") from tracker
1302   to tracker (sf patch 828963)
1303 - ignore incoming email with "Precedence: bulk" (sf patch 843489)
1304 - use HTTP 'Content-Length' header (modified sf patch 844577)
1305 - HTML generated is now HTML4 (or optionally XHTML) compliant (sf feature
1306   814314 and sf patch 834620)
1307 - default stylesheet turns off sidebar when printing
1308 - allow direct supply of filter() arguments in templating (thanks Godefroid
1309   Chapelle)
1310 - improved body_title slot in HTML templating (sf patch 873502)
1311 - HTMLLinkProperty field() method renders as a field now (thanks darryl)
1312 - cgi Action handlers may now return the actual content to be sent back to
1313   the user (rather than using some template)
1314 - date.Date now handles fractional seconds
1316 Fixed:
1317 - mysql documentation fixed to note requirement of 4.0+ and InnoDB
1318 - added testing of schema mutation, fixed rdbms backends handling of a
1319   couple of cases
1320 - HTML 4.01 validation on the 'classic' backend
1321 - messages to the mailgw can be about classes other than issues now.
1322 - signature matching is more precise (sf bug 827775).
1323 - anonymous user can no longer edit or view itself (sf bug 828901).
1324 - corrected typo in installation.html (sf bug 822967).
1325 - clarified listTemplates docstring.
1326 - print a nicer error message when the address is already in use
1327   (sf bug 798659).
1328 - remove empty lines before sending strings off to the csv parser
1329   (sf bug 821364).
1330 - centralised conversion of user-input data to hyperdb values (sf bug
1331   802405, sf bug 817217, sf rfe 816994)
1332 - recalculate SHA on template files when installed tracker used as
1333   template (sf bug 827510)
1334 - fixed ZRoundup (sf bug 624380)
1335 - the mail gateway now searches recursively for the text/plain and the
1336   attachments of a message (sf bug 841241).
1337 - fixed display of feedback messages in some situations (sf bug 739545)
1338 - fixed ability to edit "content" property (sf bug 914062)
1340 Cleanup:
1341 - replace curuserid attribute on Database with the extended getuid() method
1342 - extract a new 'mailer' module for sending mail
1343 - extract a '_send_mail' method for testing mail sending
1344 - simplify backend importing
1345 - use roundup_server in demo.py
1346 - implement newItemAction using editItemAction
1347 - use FormError in client.py, moving the handling up to inner_main()
1348 - implemented semantic comparison of Message objects in test_mailgw
1349 - tidied up forms in default stylesheet
1350 - force textareas to use monospace fonts, lessening surprise on the user
1351 - moved out parts of client.py to new modules:
1352   * actions.py - the xxxAction and xxxPermission functions refactored into
1353     Action classes
1354   * exceptions.py - all exceptions
1355   * form_parser.py - parsePropsFromForm & extractFormList in a FormParser
1356     class
1359 2004-05-17 0.6.10
1360 Fixed:
1361 - mysql backend wasn't locking tracker
1362 - ensure static files may only be served out of the tracker's "static
1363   files" directory
1366 2004-04-18 0.6.9
1367 Fixed:
1368 - paging in classhelp popup was broken
1369 - socket timeout error logging can fail
1370 - hyperlink designators in message display (sf bug 931828)
1371 - don't match retired items in RDBMS stringFind
1374 2004-04-01 0.6.8
1375 Fixed:
1376 - existing trackers (ie. live ones) may be used as templates for new
1377   trackers - the TEMPLATE-INFO.txt name entry has the tracker's dir name
1378   appended (so the demo tracker's template name is "classic-demo")
1379 - handle bad multilink input at item creation time better (sf bug 917834)
1380 - make sure email signature starts on a newline (sf bug 919759)
1381 - add line to rego email to help URL detection (sf bug 906247)
1382 - look harder for text/plain in email
1383 - fixed fallback excel writer in rcsv so it has a delimiter
1384 - fixed setup.py's use of listTemplates (!)
1385 - make rdbms serialise() less trusting
1386 - handle Boolean values in history HTML display
1389 2004-03-01 0.6.7
1390 Fixed:
1391 - be more backward-compatible when asking for EMAIL_CHARSET
1392 - made error on create consistent with edit when user enters invalid data
1393   for Multilink and Link form fields (sf bug 904072)
1394 - made errors from bad input in the quick "Show issue:" form more
1395   user-friendly (sf bug 904064)
1396 - don't add a query to a user's list if it's already there
1397 - nicer invalid property error in HTML templating
1398 - use EMAIL_CHARSET for message body too (still sf bug 900046)
1401 2004-02-25 0.6.6
1402 Fixed:
1403 - don't insert spaces into designators, it just confuses users (sf bug
1404   898087)
1405 - Eudora can't handle utf-8 headers. We love Eudora. (sf bug 900046)
1406 - fixed bug in args to new DateHTMLProperty in the local() method (sf bug
1407   901444)
1408 - fixed registration (sf bug 903283)
1409 - also changed rego to not use a 302 during confirmation, as this seems to
1410   confuse some email clients or browsers.
1413 2004-02-16 0.6.5
1414 Fixed:
1415 - mailgw handling of subject-line errors
1416 - allow serving of FileClass file content when the class isn't called
1417   "file" (eg. messages and other FileClasses)
1418 - allowed negative ids (ie. new item markers) in HTMLClass.getItem,
1419   allowing "db/file_with_status/-1/status/menu" to generate a useful
1420   widget
1421 - fixed content-type when templates are serving up xml (thanks Godefroid
1422   Chapelle)
1423 - fixed IE double-submit when it shouldn't (sf bug 842254)
1424 - fixed check for JS pop()/push() to make more general (sf bug 877504)
1425 - fix re-enabling queries (sf bug 861940)
1426 - use supplied content-type on file uploads before trying filename)
1427 - fixed roundup-reminder script to use default schema (thanks Klamer Schutte)
1428 - fixed edit action / parsePropsFromForm to handle index-page edits better
1429 - safer logging from HTTP server (sf bug 896917)
1432 2003-12-17 0.6.4
1433 Fixed:
1434 - fixed date arithmetic to not allow day-of-month == 0 (sf bug 853306)
1435 - fixed date arithmetic to limit hours-per-day to 24, not 60
1436 - hard-coded python2.3-ism (socket.timeout) fixed
1437 - fixed activity displaying as future because of Date arithmetic fix in 0.6.3
1438   (sf bug 842027).
1439 - fix Windows service mode for roundup-server (sf bug 819890)
1440 - fixed #white in cgitb (thanks Henrik Levkowetz)
1443 2003-11-14 0.6.3
1444 Fixed:
1445 - fixed detectors fix incorrectly fixed in bugfix release 0.6.2
1446 - added note to upgrading doc for detectors fix in 0.6.2
1447 - added script to help migrating queries from pre-0.6 trackers
1448 - fixed "documentation" of getnodeids in roundup.hyperdb
1449 - added flush() to DevNull (sf bug 835365)
1450 - fixed javascript for help window for only one checkbox case
1451 - date arithmetic was utterly broken, and has been for a long time.
1452   Date +/- Interval now works, and Date - Date also works (produces
1453   an Interval.
1454 - handle socket timeout exception (thanks Marcus Priesch)
1455 - fixed retirement of items in rdbms imports (sf bug 841355)
1456 - fixed bug in looking up journal of newly-created items in *dbm backends
1459 2003-09-29 0.6.2
1460 Fixed:
1461 - cleaned up, clarified internal caching API in *dbm backends
1462 - stopped pyc writing to current directory! yay! (patch 800718 with changes)
1463 - fixed file leak in detector initialisation (patch 800715)
1464 - commented out example tracker homes (patch 800720)
1465 - added note about hidden :template var in user.item (bug 799842)
1466 - fixed Apply Error that was raised, when property was deleted from class and
1467   we are trying to edit an instance
1470 2003-08-31 0.6.1
1471 Fixed:
1472 - Add note about installing cgi-bin with a different interpreter
1473 - Importing wasn't setting None values explicitly when it should have been
1474 - Fixed import warning regarding 0xffff0000 literal, finally, really this
1475   time. Checked on win2k. (sf bug 786711)
1476 - fix CGI editCSV action to handle metakit's integer itemids
1477 - apply fix for "remove" links from Klamer Schutte
1478 - added permission check on "remove" link while I was there..
1479 - applied CSV fix for python2.3 (sf bug 790363)
1480 - fixed form padding in LHS menu (sf bug 790502)
1481 - fixed upgrading docs for timezones (sf bug 790498)
1482 - set the content type on page templates (can have XML templates now)
1483 - various cosmetic fixes (thanks James Kew for being persistent :)
1484 - applied patch 739314 (sorry John!)
1487 2003-08-08 0.6.0
1488 - Fixed editing attributes on FileClass nodes.
1489 - Query editing now works correctly (sf bug 621248)
1490 - roundup-server now logs IP addresses by default (sf bug 778795)
1491 - logfile must be specified if pidfile is (sf bug 772820)
1492 - timelog editing via csv interface crashes (sf bug 699837)
1493 - sort multilinks a little better for grouping (sf bug 772935)
1494 - batch the (list) listings at 500 entries per page (sf bug 759906)
1495 - don't have RDBMS backends list retired nodes (sf bug 767319)
1496 - fix file downloading
1497 - add action attribute to issue.item form tag
1500 2003-07-29 0.6.0b4
1501 - plugged cross-site-scripting hole (thanks Jeff Epler)
1502 - handle deprecation of FCNTL in python2.2+ (sf bug 756756)
1503 - handle missing Subject: line (sf bug 755331)
1504 - fix New User creation (sf bug 754510)
1505 - fix hackish message escaping (sf bug 757128)
1506 - fix :required ordering problem (sf bug 740214)
1507 - audit some user properties for valid values (roles, address) (sf bugs
1508   742968 and 739653)
1509 - fix HTML file detection (hence history xref linking) (sf bug 741478)
1510 - session database caches it's type, rather than calling whichdb each time
1511   around.
1512 - changed rdbms_common to fix sql backends for new Boolean types under Py2.3
1515 2003-06-10 0.6.0b3
1516 Fixed:
1517 - cgi client was broken during b2 fixing
1520 2003-06-09 0.6.0b2
1521 Feature:
1522 - added the start/stop/restart/condstart/status roundup-server control
1523   script
1525 Fixed:
1526 - handle non-existant demo dir (thanks Ollie Rutherfurd)
1527 - strip whitespace from Role names so "User, Admin" will work
1528 - fixed template searching on Windows (thanks J Vickroy)
1531 2003-05-09 0.6.0b1
1532 Removed:
1533 - having served its purpose as a template for other relational database
1534   implementations, the gadfly backend has now been removed from the Roundup
1535   distribution.
1537 Feature:
1538 - new instant-gratification Demo Mode
1539 - support setting of properties on message and file through web and
1540   email interface (thanks John Rouillard)
1541 - allow additional control over the roundupdb email sending (explicit
1542   cc addresses, different from address and different nosy list property)
1543   (thanks John Rouillard)
1544 - applied patch for nicer history display (sf feature 638280)
1545 - cleaning old unused sessions only once per hour, not on every cgi
1546   request. It is greatly improves web interface performance, especially
1547   on trackers under high load
1548 - added mysql backend (see doc/mysql.txt for details)
1549 - switch metakit to use "compressed" multilink journal change representation
1550 - metakit now handles "unset" for most types (not Number and Boolean)
1551 - fixed bug in metakit search-by-ID
1552 - added ability to display localized dates in web interface. User input is
1553   convered to GMT (see doc/upgrading.txt).
1554 - added a form to show a specific issue
1555 - more proper sorting/grouping on mulitilink properties. Sorting is performed
1556   not only by number of links, but also by links itself. This makes usable
1557   grouping e.g. by topic multilink
1558 - add "ago" to intervals in the past (sf bug 679232)
1559 - included UN*X manual pages from Bastian Kleineidam
1560 - implemented extension to form parsing to allow editing of multiple items
1561   and creation of multiple items (but only one per class)
1562 - the colon ":" special form variable designator may now be any of : + @
1563 - trackers' templates directory can contain subdirectories with static files
1564   (e.g. images). They are accessible naturally: _file/images/img.gif
1565 - altered Class.create() and FileClass.create() methods to make "content"
1566   property available in auditors
1567 - can now configure CC to author only for messages creating issues (sf
1568   feature 625808)
1569 - registration is now a two-step process, with confirmation from the email
1570   address supplied in the registration form
1571 - added password reset feature for forgotten password / login
1572 - added support for last-modified and if-modified-since headers for static
1573   file serving
1574 - added Node.get() method
1575 - nicer page titles (sf feature 65197)
1576 - relaxed CVS importing (sf feature 693277)
1577 - added support for searching on ranges of dates and intervals (see
1578   doc/user_guide.txt in chapter "Searching Page" for details) (closes sf
1579   feature 700178)
1580 - role names made case insensitive
1581 - added ability to restore retired nodes
1582 - more lenient date input and addition Interval input support (sf bug 677764)
1583 - roundup mailgw now handles apop
1584 - implemented ability to search for multilink properties with no value
1585 - Class.find() may now find unset Links (sf bug 700620)
1586 - more flexibility in classhelp link labelling (sf feature 608204)
1587 - added command-line functionality for roundup-admin (sf feature 687664)
1588 - added nicer popup windows for topic, nosy, etc (has add/remove buttons)
1589   thanks Gus Gollings
1590 - HTML templating files now have a .html extension
1591 - Roundup templates are now distributed much more sanely, allowing for
1592   3rd-party templates.
1593 - extended date syntax to make range searches even more useful
1594 - SMTP login and TLS support added (sf bug 710853 with extras ;)
1595   Note: requires python 2.2+
1596 - added Windows Service mode for roundup-server when daemonification is
1597   attempted on Windows.
1598 - sort HTMLClass.properties results by name (sf feature 724738)
1599 - nicer index navigation (sf feature 676866)
1601 Fixed:
1602 - applied unicode patch. All data is stored in utf-8. Incoming messages
1603   converted from any encoding to utf-8, outgoing messages are encoded
1604   according to rfc2822 (sf bug 568873)
1605 - fixed layout issues with forms in sidebar
1606 - fixed timelog example so it handles new issues (sf bug 678908)
1607 - handle missing os.fork() (sf bug 681046)
1608 - added warning filter for "FutureWarning: hex/oct constants > sys.maxint will
1609   return positive values..." (literal 0xffff0000 in portalocker.py)
1610 - fixed ZPT code generating SyntaxWarning for assignment to None
1611 - open static files using binary mode (sf bug 693208)
1612 - fixed deja-vu bug 692910
1613 - don't display "Editing" on read-only pages (sf bug 651967)
1614 - re-worked detectors initialisation - woohoo, no more cross-importing!
1615 - fixed export/import of retired nodes (sf bug 685273)
1616 - remember the display template specified during edit (sf bug 701815)
1617 - added example HTML tempating for vacation flag (sf bug 701722)
1618 - finally, tables autosize columns (sf bug 609070)
1619 - added creation to index columns (sf bug 708247)
1620 - fixed missing (pre-commit) journal entries in *dbm backends (sf bug 679217)
1621 - URL cited in roundup email confusing dumb Email clients (sf bug 716585)
1622 - set title on issues even when the email body is empty (sf bug 727430)
1623 - under the heading of "questionable whether it's a fix or not"
1624   (sf "bug" 621226 for the users of the "standards compliant" browser IE)
1627 2003-05-08 0.5.7
1628 - fixed Interval maths (sf bug 665357)
1629 - fixed sqlite rollback/caching bug (sf bug 689383)
1630 - fixed rdbms table update detection logic (sf bug 703297)
1631 - fixed detection of bad date specs (sf bug 691439)
1632 - required String properties not being flagged (thanks Ajit George)
1633 - only look for CSV files when importing (thanks Dan Grassi)
1634 - can now unset values in CSV editing (sf bug 704788)
1635 - fixed rdbms email address lookup (case insensitivity)
1636 - email file attachments added to issue files list (sf bug 711501)
1637 - added socket timeout to attempt to prevent stuck processes (sf bug 665487)
1638 - email registered users shouldn't be able to log in (sf bug 714673)
1639 - handle missing addresses on users (sf bug 724537)
1642 2003-02-27 0.5.6
1643 - fixed templating filter function arguments (sf bug 678911)
1644 - fixed multiselect in searching (sf bug 676874)
1645 - fixed parsing of content-disposition filenames (sf bug 675116)
1646 - added 'h' to roundup-server optarg list (sf bug 674070)
1647 - fixed doc for db.history in anydbm and rdbms_common (sf bug 679221)
1648 - fixed roundup-reminder (sf bug 681042)
1649 - fixed int assumptions about Number values (sf bug 677762)
1650 - clarified licensing
1651 - another attempt to fix cookie misbehaviour - customise cookie name using
1652   tracker name
1653 - fixed error in indexargs_url (thanks Patrick Ohly)
1654 - fixed getnode (sf bug 684531)
1655 - fixed args to some date templating methods (sf bug 689670)
1656 - fixed database corruption in rdbms property mutation
1659 2003-01-24 0.5.5
1660 - fixed rdbms searching by ID (sf bug 666615)
1661 - fixed metakit searching by ID
1662 - detect corrupted index and raise semi-useful exception (sf bug 666767)
1663 - open server logfile unbuffered
1664 - revert StringHTMLProperty to not hyperlink text by default
1665 - fixes to CGI form handling
1666 - fix unlink bug in metakit backend
1667 - fixed hyperlinking ambiguity (sf bug 669777)
1668 - fixed cookie path to use TRACKER_WEB (sf bug 667020) (thanks Nathaniel Smith
1669   for helping chase it down and Luke Opperman for confirming fix)
1672 2003-01-10 0.5.4
1673 - key the templates cache off full path, not filename
1674 - implemented whole-database locking
1675 - hyperlinking of special text (url, email, item designator) in messages
1676 - fixed time default in date.py
1677 - fixed error in cgi/templates.py (sf bug 652089)
1678 - fixed handling of missing password (sf bug 655632)
1679 - applied patches for handling Outlook quirks (thanks Andrey Lebedev)
1680   (multipart/alternative, "fw" and content-type "name")
1681 - fire auditors and reactors in rdbms retire (thanks Sheila King)
1682 - better match for mailgw help "command" text
1683 - handle :add: better in cgi form parsing (sf bug 663235)
1684 - handle all-whitespace multilink values in forms (sf bug 663855)
1685 - fixed searching on date / interval fields (sf bug 658157)
1686 - fixed form elements names in search form to allow grouping and sorting
1687   on "creation" field
1688 - display of saved queries is now performed correctly
1691 2002-12-11 0.5.3
1692 - added mention of how to give users multiple Roles
1693 - mention needed trailing "/" in TRACKER_WEB
1694 - fixed upgrading doc to have CGI changes in the correct order
1695 - fixed double-close of anydbm backend (sf bug 639030)
1696 - removed use of string/strop from TAL/TALInterpreter
1697 - handle KeyboardInterrupt nicely
1698 - fixed Date and Interval form value handling
1699 - fixed Date.local()
1700 - email quoted text stripping is controllable again (sf bug 650742)
1701 - extract attachment name from content-disposition if name is missing (sf
1702   bug 637278)
1703 - removed FILTER_POSITION from bundled configs
1704 - reverse message listing in issue display (reversion of recent change)
1705 - bad entries for multilink editing in cgi don't traceback now (sf bug 640310)
1706 - detect and break email loops (sf bug 640854)
1707 - finished of handling of retired flag in filter() (sf bug 635260)
1708 - allow StringHTMLProperty in MultilinkHTMLProperty test to work
1709 - don't set explicit None Link properties in web create
1710 - fixed nasty sorting bug that was lowercasing properties
1711 - allow multiple :remove and :add elements per property being edited
1712 - added date header to emails (sf bug 651358)
1715 2002-11-07 0.5.2
1716 - added quotes around python interpreter in windows bat (sf bug 623963)
1717 - fixed link at end of installation doc (sf bug 623957)
1718 - handle "classname" URL path errors cleaner (generate a 404)
1719 - added CGI :remove:<propname> and :add:<propname> which specify item ids to
1720   remove / add in <propname> multilink.
1721 - bugfix in boolean templating
1722 - remember the change note on bad submissions (sf bug 625989)
1723 - highlight required form fields (sf bug 625989)
1724 - force non-word boundary to match re: in subject (sf bug 626303)
1725 - handle sqlite bug (<2.7.2) (sf bug 630828)
1726 - handle missing props in anydbm stringFind
1727 - updated email package address formatting (deprecation)
1728 - copied email address quoting from email v2.4.3 so we're consistent with 2.2
1729 - email summary extraction now takes the first whole sentence or line -
1730   whichever is longer
1731 - documented dependency on Active State (sf bug 623959)
1732 - ensured there's no zero-length files in source (sf bug 633622)
1733 - added ID to the search page (sf bug 631601)
1734 - fixed filtering by id in anydbm
1735 - show issue ID in the headings (sf bug 631598)
1736 - show entire messages by default in issues (sf bug 625995)
1737 - fixed journalling to save old values instead of new (sorry it took so long GM)
1738 - handle missing REQUEST_URI for cgi-bin users (sf bug 620163)
1741 2002-10-16 0.5.1
1742 - highlight rows in groups of three
1743 - metakit cleanups
1744 - nicer "navigation" style in index views
1745 - handle missing Link values in anydbm backend set() operation
1746 - fixed filter() with no sort/group (sf bug 618614)
1747 - fixed register with no session (sf bug 618611)
1748 - fixed log / pid file path handling in roundup-server (sf bug 617981)
1749 - fixed old gadfly compatibiltiy problem, for sure this time (sf bug 612873)
1750 - https URLs from config now recognised as valid (sf bug 619829)
1751 - nicer display of tracker list in roundup-server (sf bug 619769)
1752 - fixed some missed renaming instance -> tracker (sf bug 619769)
1753 - allow blank passwords again (sf bug 619714)
1754 - expose the tracker config as a variable for templating
1755 - homogenise newlines in CGI text submissions (sf bug 614072)
1756 - merged Zope Collector #372 fix from ZPT CVS trunk
1757 - fixed history to display username instead of userid
1758 - shipped templates didn't import all hyperdb types in dbinit.py
1759 - fixed bug in Interval serialisation
1760 - handle "unset" status in status auditor (sf bug 621250)
1761 - issues in 'done-cbb' are now also moved to 'chatting' on new messages
1762 - implemented the missing Interval.__add__
1763 - added ability to implement new templating utility methods
1764 - expose the Date.pretty method to templating
1765 - made form table cell alignment consistent (sf bug 621887)
1766 - include stylesheet in docs (sf bug 623183)
1767 - store PIPE messages so we can re-send them on errors (sf bug 623082)
1768 - implemented "retire" cgi action, added to user index (sf bug 618612)
1769 - included doc ideas from Bernhard Reiter (sf feature 621941)
1772 2002-10-02 0.5.0
1773 - fixed style for alternating rows in user lists
1774 - fixed query edit form so it doesn't barf
1775 - #617133 ] 0.5.0pr1 uses nonexistent renderTemplate
1776 - merged Zope Collector #539 fix from ZPT CVS trunk
1779 2002-09-27 0.5.0 pr1
1780 - handling of None for Date/Interval/Password values in export/import
1781 - handling of journal values in export/import
1782 - password edit now has a confirmation field
1783 - registration error punts back to register page
1784 - gadfly backend now handles changes to the schema - but only one property
1785   at a time
1786 - cgi.client base URL is now obtained from the config TRACKER_WEB
1787 - request.url has gone away - there's too much magic in trying to figure
1788   what it should be
1789 - cgi-bin script redirects to https now if the request was https
1790 - FileClass "content" property wasn't being returned by getprops() in most
1791   backends
1792 - we now verify instance attributes on instance open and throw a useful error
1793   if they're not all there
1794 - sf 611217 ] menu() has problems when labelprop==None
1795 - verify contents of tracker module when the tracker is opened
1796 - many performance improvements in *dbm and sql backends
1797 - mailgw was missing an "import sys"
1798 - setup now installs scripts with python -O flag, doubling performance in some
1799   cases (there's a lot of __debug__ use)
1800 - fix :required for Link menus
1801 - import wasn't setting the ID to maxid+1
1802 - added getItem to HTMLClass so you can access arbitrary items in templates
1803 - index filtering form values may now be key values too
1804 - replaced the content() callback ickiness with Page Template macro usage
1805 - changed the default CSS style to be less offensive to some ;)
1806 - better handling of Page Template compilation errors
1807 - handle multiple unrelated indexed classes
1808 - #614188 ] Exception in mailgw.py
1809 - #613310 ] traceback on onexistant items
1810 - #613291 ] typos in nosy list
1811 - handle stupid mailers that QUOTE their Re; 'Re: "[issue1] bla blah"'
1812 - giving a user a Role that doesn't exist doesn't break stuff any more
1813 - revamped user guide, customisation guide, added maintenance guide
1814 - merge Zope Collector #538 fix from ZPT CVS trunk (path expressions with a
1815   non-path final alternate no longer try to call a value returned by that
1816   alternate)
1817 - merge Zope Collector #573 fix from ZPT CVS trunk
1818 - merge Zope Collector #580 fix from ZPT CVS trunk
1819 - added "crypt" password encoding and ability to set password with
1820   already encrypted password through roundup-admin
1821 - fixed the mailgw so that anonymous users may still access it
1822 - add hook to allow external password verification, overridable in the
1823   tracker interfaces module
1824 - fixed login attempt by user that doesn't exist
1827 2002-09-13 0.5.0 beta2
1828 -  all backends now have a .close() method, and it's used everywhere
1829 -  fixed bug in detectors __init__
1830 -  switched the default issue item display to only show issue summary
1831    (added instructions to doc to make it display entire content)
1832 -  MANIFEST.in was missing a lot of template files
1833 -  added generic item editing
1834 -  much nicer layout of template rendering errors
1835 -  added context/is_edit_ok and context/is_view_ok convenience methods and
1836    implemented use of them in the classic template
1839 2002-09-11 0.5.0 beta1
1840 Fixed:
1841 -  #576086 ] dumb copying mistake (frontends/ZRoundup.py)
1842 -  installation instructions now mention "python2" in "testing your python".
1843 -  made the unit tests run again - they were quite b0rken
1844 -  #571170 ] gdbm deadlock
1845 -  #576241 ] MultiLink problems in parsePropsFromForm
1846 -  fixed the date module so that Date(". - 2d") works
1847 -  web forms may now unset Link values (like assignedto)
1848 -  cleanup: moved roundup.templatebuilder to roundup.templates.builder
1849 -  instance __init__ no longer silently traps dbinit import errors
1851 Feature:
1852 -  new backend for metakit (thanks Gordon McMillan)
1853 -  new backend for gadfly (it's as done as it's going to get)
1854 -  further split the dbm backends from the core code, allowing easier
1855    non-dict-like backends (eg metakit, RDB)
1856 -  implemented and used the new access control mechanisms (Permissions, Roles)
1857    (see doc/security.txt)
1858 -  switched templating to use Zope's PageTemplates (yay!)
1859 -  switched to sessions for web authentication
1860 -  added Boolean and Number types
1861 -  fixed the journal bloat
1862 -  updated design document for new access controls
1863 -  updated customisation document, including more examples
1864 -  entire database export and import (incl files)
1865 -  better mailgw help message (feature request #558562)
1866 -  re-enabled link backrefs from messages (feature request #568714)
1867 -  the page layout is now templatable
1868 -  re-worked cgi interface to abstract out the explicit "issue" interface
1869 -  have index page handle mid-page errors better so header and footer are
1870    still visible
1871 -  we handle "not found", access and item page render errors better
1872 -  fixed double-submit by having new-item-submit redirect at end
1873 -  daemonify roundup-server (fork, logfile, pidfile)
1874 -  modify cgitb to display PageTemplate errors better
1875 -  rename to "instance" to "tracker"
1876 -  have roundup.cgi pick up tracker config from the environment
1877 -  revamped look and feel in web interface
1878 -  cleaned up stylesheet usage
1879 -  several bug fixes and documentation fixes
1880 -  added is_retired test to hyperdb.Class
1881 -  added capability to save queries:
1882    - a query Class with name, klass (to search) and url (query string)
1883      properties
1884    - a Multilink to query on user called queries
1885    - html templates for query, and a list of queries in user.item
1886    - search form has Save button & name input
1887    - saved queries put in menu in pagehead
1888    - for migration, none of the above is required and old behavior preserved.
1889    - showquery translates search form <-> query string
1890 -  cleaned up the indexer code:
1891    - it splits more words out
1892    - removed code we'll never use (roundup.roundup_indexer has the full
1893      implementation, and replaces roundup.indexer)
1894    - only index text/plain and rfc822/message (ideas for other text formats to
1895      index are welcome)
1896    - added simple unit test for indexer. Needs more tests for regression.
1897    - all String properties may now be indexed too. Currently there's a bit of
1898      "issue" specific code in the actual searching which needs to be
1899      addressed. In a nutshell:
1900      + pass 'indexme="yes"' as a String() property initialisation arg, eg:
1901            file = FileClass(db, "file", name=String(), type=String(),
1902                comment=String(indexme="yes"))
1903      + the comment will then be indexed and be searchable, with the results
1904        related back to the issue that the file is linked to
1905    - as a result of this work, the FileClass has a default MIME type that may
1906      be overridden in a subclass, or by the use of a "type" property as is
1907      done in the default templates.
1908    - the regeneration of the indexes (if necessary) is done once the schema is
1909      set up in the dbinit.
1910    - new "reindex" command in roundup-admin used to force regeneration of the
1911      index
1912 -  added email display function - mangles email addrs so they're not so easily
1913    scraped from the web
1914 -  switched to using a session-based web login
1915 -  made mailgw handle set and modify operations on multilinks (bug #579094)
1916 -  fixed the journal bloat from multilink changes - we just log the add or
1917    remove operations, not the whole list
1920 2002-06-24 0.4.2
1921 Fixed:
1922 -  Cleaned up the hyperdb unit tests.
1923 -  Applied patch from Andrew W. Nosenko to give nicer Unauthorised message
1924    when anonymous user tries to edit. Should've been applied in 0.4.2pr1. Oops.
1925 -  Added more detailed note to MIGRATION regarding the detectors changes.
1928 2002-06-19 0.4.2pr1
1929 Feature:
1930 -  added a "detectors" directory for people to put their useful auditors and
1931    reactors in. Note - the roundupdb.IssueClass.sendmessage method has been
1932    split and renamed "nosymessage" specifically for things like the nosy
1933    reactor, and "send_message" which just sends the message.
1934 -  link() htmltemplate function now has a "showid" option for links and
1935    multilinks. When true, it only displays the linked node id as the anchor
1936    text. The link value is displayed as a tooltip using the title anchor
1937    attribute.
1938    To use in eg. the superseder field, have something like this:
1939    <td>
1940     <display call="field('superseder', showid=1)">
1941     <display call="classhelp('issue', 'id,title', label='list', width=500)">
1942     <property name="superseder">
1943      <br>View: <display call="link('superseder', showid=1)">
1944     </property>
1945    </td>
1946 -  stripping of the email message body can now be controlled through the
1947    config variables EMAIL_KEEP_QUOTED_TEXT and EMAIL_LEAVE_BODY_UNCHANGED.
1948 -  all database files created are now group readable and writable.
1949 -  added option to automatically add the authors and recipients of messages
1950    to the nosy lists with the options ADD_AUTHOR_TO_NOSY (default 'new') and
1951    ADD_RECIPIENTS_TO_NOSY (default 'new'). These settings emulate the current
1952    behaviour. Setting them to 'yes' will add the author/recipients to the nosy
1953    on messages that create issues and followup messages.
1954 -  reverting to dates for intervals > 2 months sucks
1955 -  changed the default message list in issues to display the message body
1956 -  applied patch #558876 ] cgi client customization
1957 -  split instance initialisation into two steps, allowing config changes
1958    before the database is initialised.
1959 -  don't create an empty message on email issue creation if the email is empty
1960 -  may now display additional fields in Multilink form menus
1961 -  #541941 ] changing multilink properties by mail
1962 -  #526730 ] search for messages capability
1963 -  #505180 ] split MailGW.handle_Message
1964    - also changed cgi client since it was duplicating the functionality
1966 Fixed:
1967 -  stop sending blank (whitespace-only) notes
1968 -  cleanup of serialisation for database storage
1969 -  node ids are now generated from a lockable store - no more race conditions
1970 -  sorting was applied to all nodes of the MultiLink class instead of
1971    to the nodes that are actually linked to in the "field" template
1972    function.  This adds about 20+ seconds in the display of an issue if
1973    your database has a 1000 or more issues in it.
1974 -  added missing documentation for a few of the config option values
1975 -  file upload broke if you didn't supply a change note
1976 -  fixed SCRIPT_NAME in ZRoundup for instances not at top level of Zope
1977    (thanks dman)
1978 -  fixed some sorting issues that were breaking some unit tests under py2.2
1979 -  mailgw test output dir was confusing the init test (but only on 2.2 *shrug*)
1980 -  node caching now works, and gives a small boost in performance
1981 -  #449374 ] re-enable bsddb3 backend
1982    bsddb3 backend now works, reinstating
1983 -  #551483 ] assignedto in Client.make_index_link
1984 -  made backends.__init__ be more specific about which ImportErrors it really
1985    wants to ignore
1986 -  fixed the example addresses in the templates to use correct example domains
1987 -  cleaned out the template stylesheets, removing a bunch of junk that really
1988    wasn't necessary (font specs, styles never used) and added a style for
1989    message content
1990 -  build htmlbase if tests are run using CVS checkout
1991 -  #565979 ] code error in hyperdb.Class.find
1992 -  #565996 ] The "Attach a File to this Issue" fails
1993 -  #564271 ] find() and new properties
1994 -  #562130 ] cookie path generated from ZRoundup was wrong in some situations
1995 -  remove CR characters embedded in messages (ZRoundup)
1996 -  properly quote the email address and "real name" in all situations using the
1997     'email' module if it is available and 'rfc822' otherwise
1998 -  #565992 ] if ISSUE_TRACKER_WEB doesn't have the trailing '/', add it
1999 -  use the rfc822 module to ensure that every (oddball) email address and
2000    real-name is properly quoted
2001 -  #558867 ] ZRoundup redirect /instance requests to /instance/
2002 -  #569415 ] {version}
2003 -  #569178 ] type error
2004    was fixed as part of the general cleanup of reactors
2007 2002-03-25 - 0.4.1
2008 Feature:
2009 -  use blobfiles in back_anydbm which is used in back_bsddb.
2010    change test_db as dirlist does not work for subdirectories.
2011    ATTENTION: blobfiles now creates subdirectories for files.
2012 -  add module blobfiles in backends with file access functions.
2013 -  roundup db catch only IOError in getfile.
2014 -  roundup db catches retrieving not existing files.
2015 -  #503204 ] mailgw needs a default class
2016    - partially done - the setting of additional properties can wait for a
2017      better configuration system.
2018 -  Alternate email addresses are now available for users. See the MIGRATION
2019    file for info on how to activate the feature.
2020 -  #511168 ] Web interface: Adding new products
2021    Classes that don't provide template html get a default edit interface now:
2022    - access using the admin "class list" interface
2023    - limited to admin-only
2024    - requires the csv module from object-craft (url given if it's missing)
2025 -  Added popup help for classes using the classhelp html template function.
2026    - add <display call="classhelp('priority', 'id,name,description')">
2027      to an item page, and it generates a link to a popup window which displays
2028      the id, name and description for the priority class. The description
2029      field won't exist in most installations, but it will be added to the
2030      default templates.
2031 -  #517734 ] web header customisation is obscure
2032 -  All messages sent to the nosy list are now encoded as
2033    quoted-printable before they are sent.
2034 -  Fixed display of mutlilink properties when using the template
2035    functions, menu and plain.
2037 Fixed:
2038 -  Clean up mail handling, multipart handling.
2039 -  respect encodings in non multipart messages.
2040 -  makeHtmlBase: re.sub under python 2.2 did not replace '.', string.replace
2041    does it.
2042 -  preamble in tepmlateBuilder mentioned htmldata
2043 -  mailgw checks encoding on first part too.
2044 -  #511586 ] unittest FAIL: testReldate_date
2045 -  Added a uniquely Roundup header to email, "X-Roundup-Name"
2046 -  All forms now have "double-submit" protection when Javascript is enabled
2047    on the client-side.
2048 -  #516883 ] mail interface + ANONYMOUS_REGISTER
2049 -  #516854 ] "My Issues" and redisplay
2050 -  #517906 ] Attribute order in "View customisation"
2051 -  #514854 ] History: "User" is always ticket creator
2052 -  wasn't handling cvs parser feeding correctly
2053 -  fixed some problems in date calculations (calendar.py doesn't handle over-
2054    and under-flow). Also, hour/minute/second intervals may now be more than
2055    99 each.
2056 -  #527416 ] roundup-admin uses undefined value
2057 -  #527503 ] unfriendly init blowup when parent dir
2058    (also handles UsageError correctly now in init)
2059 -  #524129 ] roundup-admin gets python path wrong
2062 2002-01-24 - 0.4.0
2063 Feature:
2064 -  much nicer history display (actualy real handling of property types etc)
2065 -  journal entries for link and mutlilink properties can be switched on or
2066    off
2067 -  properties in change note are now sorted
2068 -  you can now use the roundup-admin tool pack the database
2070 Fixed:
2071 -  the mail gateway now responds with an error message when invalid values
2072    for arguments are specified for link or mutlilink properties
2073 -  modified unit test to check nosy and assignedto when specified as arguments
2074 -  handle attachments with no name (eg tnef)
2075 -  fixed setting nosy as argument in subject line
2076 -  fixed back_bsddb so it passed the journal tests
2077 -  fixed status changes in mail gateway (eg. unread -> chatting)
2078 -  we'll actually distribute the frontends directory now, as advertised...
2079 -  handle stripping of "AW:" from subject line
2080 -  htmltemplate list() wasn't sorting...
2081 -  unit tests for html templating (and re-enabled the listbox field for
2082    multilinks)
2083 -  allow abbreviation of "help" in admin tool too.
2084 -  run_tests testReldate_date failed if LANG is 'german'
2085 -  mailgw failures (unexpected ones) are forwarded to the roundup admin
2088 2002-01-16 - 0.4.0b2
2089 Fixed:
2090 -  #495392 ] empty nosy -patch
2091 -  #500574 ] messageid must have format <part1@part2>
2092 -  fixed some problems with web editing and change detection
2093 -  mail splitting wasn't detecting responses in the same "section" as quoted
2094    text
2095 -  missed a "from i18n import _" in date.py
2096 -  #501690 ] MIGRATION.txt incomplete
2097 -  #502342 ] pipe interface
2098 -  #502437 ] rogue reactor and unittest
2099 -  re-enabled dumbdbm when using python >2.1.1 (ie 2.1.2, 2.2)
2100 -  changed all config accesses so they access either the instance or the
2101    config attriubute on the db. This means that all config is obtained from
2102    instance_config instead of the mish-mash of classes. This will make
2103    switching to a ConfigParser setup easier too, I hope.
2104 -  #502951 ] adding new properties to old database
2105 -  #502953 ] nosy-like treatment of other multilinks
2106 -  #503164 ] create and passwords
2107 -  plain rendering of links in the htmltemplate now generate a hyperlink to
2108    the linked node's page.
2109 -  #503330 ] ANONYMOUS_REGISTER now applies to mail
2110 -  #503353 ] setting properties in initial email
2111 -  #502956 ] filtering by multilink not supported
2112 -  #503340 ] creating issue with [asignedto=p.ohly]
2113 -  #502949 ] index view for non-issues and redisplay
2114 -  #503793 ] changing assignedto resets nosy list
2115 -  lots of date/interval related changes:
2116    - more relaxed date format for input
2117    - handle None for date/interval properties
2120 2002-01-08 - 0.4.0b1
2121 Feature:
2122 -  Added INSTANCE_NAME to configuration - used in web and email to identify
2123    the instance.
2124 -  Added EMAIL_SIGNATURE_POSITION to indicate where to place the roundup
2125    signature info in e-mails.
2126 -  Some more flexibility in the mail gateway and more error handling.
2127 -  Login now takes you to the page you back to the were denied access to.
2128 -  Admin user now can has a user index link on their web interface.
2129 -  We now have basic transaction support. Information is only written to
2130    the database when the commit() method is called. Only the anydbm and
2131    bsddb3 backends are modified in this way - the bsddb3 backend needs a
2132    lot more work anyway...
2133     - the CGI and mailgw automatically commit() at the end of processing a
2134       single transaction
2135     - the admin tool requires an explicit "commit" - it will prompt at exit
2136       if there are unsaved changes. A "rollback" removes all changes made
2137       during the session (up to the last commit).
2138 -  Added the "display" command to the admin tool - displays a node's values
2139 -  Message author's name appears in From: instead of roundup instance name
2140    (which still appears in the Reply-To:)
2141 -  Added a Zope frontend for roundup.
2142 -  Centralised the python version check code, bumped version to 2.1.1 (really
2143    needs to be 2.1.2, but that isn't released yet :)
2144 -  much better attaching of erroneous messages in the mail gateway
2145 -  #496356 ] Use threading in messages
2146    This adds the tracking of messages by message-id and allows threading
2147    using in-reply-to. Most e-mail clients support threading using this
2148    feature, and we hope to add support for it to the web gateway.
2150 Fixed:
2151 -  Lots of bugs, thanks Roché and others on the devel mailing list!
2152 -  login_action and newuser_action return values were being ignored
2153 -  Woohoo! Found that bloody re-login bug that was killing the mail
2154    gateway.
2155 -  Fixed login/registration forwarding the user to the right page (or not,
2156    on a failure)
2157 -  We now use weakrefs in the Classes to keep the database reference, so
2158    the close() method on the database is no longer needed.
2159 -  #487480 ] roundup-server
2160 -  #487476 ] INSTALL.txt
2161 -  #489760 ] [issue] only subject
2162 -  fixed doc/index.html to include the quoting in the mail alias.
2163 -  fixed the backends __init__ so we can pydoc the backend modules
2164 -  web i/f reports "note added" if there are no changes but a note is entered
2165 -  we were assuming database files created by anydbm had the same name, but
2166    this is not the case for dbm. We now perform a much better check _and_
2167    cope with the anydbm implementation module changing too!
2168 -  envelope-from is now set to the roundup-admin and not roundup itself so
2169    delivery reports aren't sent to roundup (thanks Patrick Ohly)
2170 -  #495400 ] entering blanks
2171    Values with spaces are now accepted in roundup-admin - check the long help
2172    for details.
2173 -  #496360 ] table width does not work
2174 -  detectors were being registered multiple times
2175 -  added tests for mailgw
2178 2001-11-23 - 0.3.0
2179 Feature:
2180 -  #467129 ] Lossage when username=e-mail-address
2181 -  #473123 ] Change message generation for author
2182 -  MailGW now moves 'resolved' to 'chatting' on receiving e-mail for an issue.
2183 -  Added Structured Text rendering to htmltemplate, thanks Brad Clements.
2184 -  Added CGI configuration via env vars (see roundup.cgi for details)
2185 -  "roundup.cgi" is now installed to "<python-prefix>/share/roundup/cgi-bin"
2186 -  roundup-admin now accepts abbreviated commands (eg. l = li = lis = list)
2187 -  roundup-mailgw now supports unix mailbox and POP as sources of mail.
2188 -  roundup-admin now handles all hyperdb exceptions
2189 -  users may attach files to issues (and support in ext) through the web now
2190 -  incorporated patch from Roch'e Compaan implementing attachments in nosy
2191    e-mail
2192 -  added a target version field to the extended issue schema
2193 -  added dummy hooks for I18N and some preliminary (test) markup of
2194    translatable messages
2196 Fixed:
2197 -  Fixed a bug in HTMLTemplate changes.
2198 -  'unread' to 'chatting' automagic status change was b0rken.
2199 -  Anonymous user lockout wasn't working.
2200 -  roundup-server now works on Windows, thanks Juergen Hermann.
2201 -  Fixed install documentation, also thanks Juergen Hermann.
2202 -  Fixed some URL issues in roundup.cgi, again thanks Juergen Hermann.
2203 -  bug #475347 ] WindowsError still not caught (patch from Juergen Hermann)
2204 -  bug #474749 ] indentations lost
2205 -  bug #477104 ] HTML tag error in roundup-server
2206 -  bug #477107 ] HTTP header problem
2207 -  bug #477687 ] conforming html
2208 -  bug #474372 ] Netscape 4.77 do not render Support form
2209 -  bug #477685 ] base64.decodestring breaks
2210 -  bug #477837 ] lynx does not like the cookie
2211 -  bug #477892 ] Password edit doesn't fix login cookie
2212 -  newuser_action now presents error messages rather than tracebacks.
2213 -  bug #479511 ] mailgw to pop
2214 -  bug #479508 ] roundup-admin crash on wrong class
2215 -  bad error report in hyperdb
2216 -  roundup.mailgw now handles errors on the set() and create() at the end
2217    of processing
2218 -  roundup.mailgw also handles messages that are passed to it that don't
2219    contain a From: line - apparently some POP servers can do this. It punts
2220    an error message to the roundup admin.
2221 -  fixed nosy reaction and author copy handling
2222 -  errors in nosy reaction will be propogated now (were effectively being
2223    squashed)
2224 -  re-open the database as the author in mail handling
2225 -  missing "return" in filter_section (thanks Roch'e Compaan)
2228 2001-10-23 - 0.3.0 pre 3
2229 Feature:
2230 -  MailGW now moves 'unread' to 'chatting' on receiving e-mail for an issue.
2231 -  feature #473127: Filenames. I modified the file.index and htmltemplate
2232    source so that the filename is used in the link and the creation
2233    information is displayed.
2234  Admin Tool (roundup-admin):
2235  -  Interactive mode for running multiple (independant at present) commands.
2236  -  Tabular display of nodes.
2237  -  Import and export via colon-separated files.
2239 Changed:
2240 -  re-organised the html templating code. Fixed some bugs, probably
2241    introduced some more.  Hopefully not too many.
2243 Fixed:
2244 -  Stand-alone server now has a configurable setuid user.
2245 -  CGI interface wasn't handling checkboxes at all.
2246 -  Fixed quopri usage in mailgw from bug reports on mailing list.
2247 -  Remove the "freshen" command from the roundup-admin tool.
2248 -  Catch errors in login - no username or password supplied.
2249 -  Fixed editing of password (Password property type) thanks Roch'e Compaan.
2250 -  Fixed grouping of non-str properties thanks Roch'e Compaan.
2251 -  bug #473121: The customisation view and filters (CGI interface view
2252    customisation section may now be hidden (patch from Roch'e Compaan.)
2253 -  bug #473122: Issue id sorting (hyperdb sorts strings-that-look-like-numbers
2254    as numbers now.
2255 -  bug #473124: UI inconsistency with Link fields.
2256    This also prompted me to fix a fairly long-standing usability issue -
2257    that of being able to turn off certain filters.
2258 -  bug #473125: Paragraph in e-mails
2259 -  bug #473126: Sender unknown
2260 -  bug #473130: Nosy list not set correctly
2263 2001-10-11 - 0.3.0 pre 2
2264 Fixed:
2265 -  Hyperdatabase was inserting empty strings instead of None for missing
2266    property values. This broke a lot of things.
2269 2001-10-10 - 0.3.0 pre 1
2270 Feature:
2271 -  roundup-admin create now prompts for property info if none is supplied
2272    on the command-line.
2273 -  hyperdb Class getprops() method may now return only the mutable
2274    properties.
2275 -  CGI interfaces now generate a top-level index of their known instances.
2277 Changed:
2278 -  Login now uses cookies, which makes it a whole lot more flexible. We can
2279    now support anonymous user access (read-only, unless there's an
2280    "anonymous" user, in which case write access is permitted). Login
2281    handling has been moved into cgi_client.Client.main()
2282 -  The "extended" schema is now the default in roundup init.
2283 -  The schemas have had their page headings modified to cope with the new
2284    login handling. Existing installations should copy the interfaces.py
2285    file from the roundup lib directory to their instance home.
2286 -  Passwords are now encoded by default (except exising databases which
2287    will only be encoded when the passwords are changed). The scheme used
2288    at the moment is SHA - but the code is flexible enough to take any
2289    number of encoding systems.
2290 -  The roundup-admin tool always operates as the "admin" user now. Database
2291    protection should be achieved using file system protections (see the
2292    documentation for details.)
2294 Fixed:
2295 -  Incorrectly had a Bizar Software copyright on the cgitb.py module from
2296    Ping - has been removed.
2297 -  Pretty time interval wasn't handling > 1 month properly.
2298 -  Generation of links to Link/Multilink in indexes. (thanks Hubert Hoegl)
2299 -  AssignedTo wasn't in the "classic" schema's item page.
2300 -  Fixed a whole bunch of places in the CGI interface where we should have
2301    been returning Not Found instead of throwing an exception.
2302 -  Fixed a deviation from the spec: trying to modify the 'id' property of
2303    an item now throws an exception.
2304 -  The plain() template function now html-escapes the content.
2305 -  Change message was stuffing up for multilinks with no key property.
2309 --------------
2311 2001-08-30 - 0.2.8
2312 Fixed:
2313 -  Wasn't handling unguessable mime types for file uploads.
2314 -  Missing import in mailgw.
2317 2001-08-29 - 0.2.7
2318 Feature:
2319 -  Text searches are now case insensitive. All forms of text search use
2320    regular expressions now.
2322 Fixed:
2323 -  Had another 2.1-ism in the unit tests
2324 -  Made the mail parser a little more robust w.r.t missing Subject:
2325    (both thanks Mikhail Sobolev)
2326 -  Missed some isFooType usages (thanks Mikhail Sobolev for spotting them)
2327 -  Reverted back to sending change messages to the web editor of a node so
2328    that the change note message is actually genrated.
2329 -  CGI interface wasn't generating correct change messages.
2330 -  Notes entered during a change are saved to the messages list even if
2331    there's no nosy list. No message is generated if there's no nosy list and
2332    there's no change note (since it would just duplicates the journal).
2333 -  Completely removed the bsddb3 module from the tests - will be reinstated
2334    when the http://bsddb.sourceforge.net/'s bugs #439959 and #456408 are
2335    dealt with. One is fixed in CVS, the other pending.
2338 2001-08-08 - 0.2.6
2339 Note:
2340 -  Roundup is now released under the same terms as the Python License.
2342 Feature:
2343 -  Added tests for instance initialisation. No more releasing the software
2344    with bugs in roundup.init!
2345 -  Now bundling unittest with the package so that python 2.0 users can use
2346    the tests.
2347 -  Much better error handling and messages generated by the mail gateway.
2349 Fixed:
2350 -  Implemented correct mail splitting. Added unit tests. Also snips
2351    signatures now too.
2352 -  Bug #447671 - typo in roundup/init.py
2353 -  Changed date.Date to use regular string formatting instead of strftime -
2354    win32 seems to have problems with %T and no hour... or something...
2355 -  Bug #448484 - now catching correct exception from makedirs.
2356 -  Instances are now opened by a special function that generates a unique
2357    module name for the instances on import time.
2360 2001-08-03 - 0.2.5
2361 Note:
2362 -  The bsddb3 module has a bug that renders it non-functional. Users should
2363    select the anydbm or bsddb backend instead.
2365 Fixed:
2366 -  Python 2.0 does not contain the unittest module. The setup.py module now
2367    checks for unittest before attempting to run the unit tests.
2370 2001-08-03 - 0.2.4
2371 Features:
2372 -  Added ability for cgi newblah forms to indicate that the new node
2373    should be linked somewhere.
2374 -  Added time logging and file uploading to the templates.
2375 -  Added "My Issues" and "My Support" to extended template. Changed "Your
2376    Details" to "My Details". Changed the "New Foo" links to "Add Foo".
2377    Added links for unassigned support and issues. Generally reorganised and
2378    cleanup the header up.
2379 -  Changed the order of the information in the message generated by web edits.
2380 -  Extended the range of intervals that are pretty-printed before actual dates
2381    are displayed.
2382 -  Added more BUILD instructions including the "clean" command to force
2383    rebuild.
2384 -  Web edit messages aren't sent to the person who did the edit any more. No
2385    message is generated if they are the only person on the nosy list.
2386 -  Roundupdb now appends "mailing list" information to its messages which
2387    include the e-mail address and web interface address. Templates may
2388    override this in their db classes to include specific information (support
2389    instructions, etc).
2391 Fixed:
2392 -  Argument handling for the roundup-admin find command.
2393 -  Handling of summary when no note supplied for newblah. Again.
2394 -  Detection of no form in htmltemplate Field display.
2395 -  Checklist html template command was setting wrong name.
2396 -  2.1-specific gmtime() (no arg) call in roundup.date. (thanks Paul Wright)
2397 -  mailgw was making naughty assumptions about the schema of the classes it
2398    was creating nodes for.
2399 -  remove the $Foo$ from the HTML files stored in the htmlbase modules.
2400 -  Instance import now imports the instance using imp.load_module so that
2401    we can have instance homes of "roundup" or other existing python package
2402    names.
2405 2001-07-30 - 0.2.3
2406 Big change:
2407 -  I've split off the support class from the issue class in "extended".
2408    Anyone who has any support entries, sorry. It should be possible to
2409    write a scipt that moves the entries over pretty easily. If this causes
2410    you pain, I'll do so. You'll want to update your instance with the new
2411    code in "extended" either way.
2413 Features:
2414 -  Added the unit tests to the start of setup.py so they're run whenever
2415    we do anything distutils'y.
2416 -  Added nicer prompting to the roundup-admin "init" command.
2417 -  Actually, the roundup-admin code is totally revamped, and has command
2418    help and better command-line arg handling.
2419 -  The cgi_client.Client base class now reflects the structure of "classic"
2420    rather than "extended" since "classic" is more of a "base" template.
2421 -  Added more DB to test. Skips tests where imports fail.
2423 Fixed:
2424 -  One of the tests in test_date had the wrong expected result.
2425 -  Fixed IssueClass so that superseders links to its classname rather than
2426    hard-coded to "issue".
2427 -  templatebuilder was catching IOError instead of OSError.
2428 -  The cgi_client newblah method wasn't detecting the __note form field
2429    properly.
2430 -  The History command in htmltemplate didn't handle a new node (None
2431    nodeid) properly.
2434 2001-07-29 - 0.2.2
2435 Features:
2436 -  Added implementation.txt to the doc directory. Contains implementation
2437    notes specific to this implementations of Roundup.
2438 -  Cleaned up mailgw some (subclass Message for getPart) and added some
2439    tests for multipart splitting.
2440 -  Better checking for html dir in templatebuilder.
2441 -  Base hyperdb.Class now fakes the "id" property.
2442 -  Made the classic roundup look more like the original prototype.
2443 -  Made cgi_client and templating slightly more generic.
2444 -  Moved some code around in cgi_client allowing for subclassing to change
2445    behaviour.
2446 -  Added the fabricated property "id" to all hyperdb classes.
2447 -  Cleanup of the link label generation (new method on hyperdb.Class to do
2448    it).
2450 Fixed:
2451 -  Everything uses errno module now to check errno values.
2452 -  New issue form handles lack of note better now.
2453 -  HTML templating uses section-bar style for index group headers now.
2454 -  Fixed problem in link display when Link value is None.
2455 -  Form handling in cgi client wasn't propogating through the previous
2456    query elements.
2457 -  Fixed sort arguments generated for column headings so sorting can be
2458    changed now.
2461 2001-07-28 - 0.2.1
2462 Features:
2463 -  Added docstring to roundup package so pydoc reports useful information.
2464 -  Added the roundup 1 software carpentry submission HTML to the doc
2465    directory as "overview.html".
2467 Fixes:
2468 -  Fixed bug in init command - templatebuilder was assuming existence of
2469    "html" directory in instance home.
2470 -  Fixed INSTALL.txt to reflect some changes in the installation and test
2471    procedure. Whatdya know, "setup.py install" does the script install.
2472    There you go...
2473 -  Fixed some non-string node ids in cgi_client now that the hyperdb is
2474    strict about such things.
2476 2001-07-26 - 0.2.0
2477 Features:
2478 -  Major reorganisation of code to allow multiple roundup instances and a
2479    single, site-packages -based installation. Also allows multiple database
2480    back-ends.
2481 -  Moved the bin/ proggies into the top dir, so that it all works
2482    out-of-the-box
2483 -  Added the "classic" template - a direct implementation of the Roundup
2484    spec. Well, as close as we're going to get, anyway.
2485 -  Added an issue priority of support to "extended"
2486 -  Added command-line arg handling to roundup-server so it's more useful
2487    out-of-the-box.
2488 -  Added distutils-style installation of "lib" files.
2489 -  Added some unit tests.
2491 Fixes:
2492 -  Fixed bug in re generation in the filter
2493 -  Fixed handling of None String property in grouped list headings
2494 -  Fixed adding new issue with no change note
2495 -  Fixed values in text input fields which contained quotes (") are now
2496    quoted.
2497 -  Fixed a bug in the hyperdb filter - wrong variable names in the error
2498    message.
2500 2001-07-19 - 0.1.3
2501 -  Reldate now takes an argument "pretty" - when true, it pretty-prints the
2502    interval generated up to 5 days, then pretty-prints the date of last
2503    activity. The issue index and item now use the pretty format.
2504 -  Classes list for admin user in CGI interface.
2505 -  Made the view configuration more accessible, neater and more realistic.
2506 -  Fixed list view grouping handling grouping by a Multilink or String or Link
2507    value of None or Date, ...  (mind you, sorting by Date???)
2508 -  Fixed bug in the plain formatter when a Link was None.
2509 -  Fixed ordering of list view column headings.
2510 -  Fixed list view column heading sort links - and limited the number of
2511    columns to sort by to 2.
2512 -  Added searching by glob to StringType filtering -
2513     ^text  - search for text at start of fields
2514     text$  - search for text at end of fields
2515     ^text$ - exactly match text in fields
2516     te*xt  - search for text matching "te"<any characters>"xt"
2517     te?xt  - search for text matching "te"<any one character>"xt"
2518 -  Added more fields to the issue.filter and issue.index templates
2521 2001-07-18 - 0.1.2
2522 -  Set default index to ?:group=priority&:columns=activity,status,title so
2523    the priority column isn't displayed.
2524 -  Thanks Anthony:
2525    - added notes to the README about Python prerequisites
2526    - added check to roundup.py, roundup.cgi, server.py and roundup-mailgw.py
2527      for python 2+ - and made the file itself parseable by 1.5.2 ;)
2528    - python 2.0 didn't have the default args for the time module functions.
2529    - better handling of db directory in initDB
2530 -  Sorting on the extra properties defined by roundupdb classes was broken
2531    due to the caching used. May now sort on activity and creation
2532    properties, etc.
2533 -  Set the default index to sort on activity
2536 2001-07-18 - 0.1.1
2537 -  Initial version release with consent of Roundup spec author, Ka-Ping Yee:
2538    "Amazing!  Nice work.  I'll watch for the source code on your website."
2540 2001-07-11 - 0.1.0
2541 -  Needed a bug tracking system. Looked around. Tried to install many
2542    Perl-based systems, to no avail. Got tired of waiting for Roundup to be
2543    released. Had just finished major product project, so needed something
2544    different for a while. Roundup here I come...