Code

1c187f3644ae06e22055f15063308a492d536701
[roundup.git] / CHANGES.txt
1 This file contains the changes to the Roundup system over time. The entries
2 are given with the most recent entry first.
4 200?-??-?? 0.7.0
5 Feature:
6 - support confirming registration by replying to the email (sf bug 763668)
7 - support setgid and running on port < 1024 (sf patch 777528)
9 Fixed:
10 - mysql documentation fixed to note requirement of 4.0+ and InnoDB
13 2003-10-?? 0.6.3
14 Fixed:
15 - Fixed detectors fix incorrectly fixed in bugfix release 0.6.2
16 - Added note to upgrading doc for detectors fix in 0.6.2
19 2003-09-29 0.6.2
20 Fixed:
21 - cleaned up, clarified internal caching API in *dbm backends
22 - stopped pyc writing to current directory! yay! (patch 800718 with changes)
23 - fixed file leak in detector initialisation (patch 800715)
24 - commented out example tracker homes (patch 800720)
25 - added note about hidden :template var in user.item (bug 799842)
26 - fixed Apply Error that was raised, when property was deleted from class and
27   we are trying to edit an instance
30 2003-08-31 0.6.1
31 Fixed:
32 - Add note about installing cgi-bin with a different interpreter
33 - Importing wasn't setting None values explicitly when it should have been
34 - Fixed import warning regarding 0xffff0000 literal, finally, really this
35   time. Checked on win2k. (sf bug 786711)
36 - fix CGI editCSV action to handle metakit's integer itemids
37 - apply fix for "remove" links from Klamer Schutte
38 - added permission check on "remove" link while I was there..
39 - applied CSV fix for python2.3 (sf bug 790363)
40 - fixed form padding in LHS menu (sf bug 790502)
41 - fixed upgrading docs for timezones (sf bug 790498)
42 - set the content type on page templates (can have XML templates now)
43 - various cosmetic fixes (thanks James Kew for being persistent :)
44 - applied patch 739314 (sorry John!)
47 2003-08-08 0.6.0
48 - Fixed editing attributes on FileClass nodes.
49 - Query editing now works correctly (sf bug 621248)
50 - roundup-server now logs IP addresses by default (sf bug 778795)
51 - logfile must be specified if pidfile is (sf bug 772820)
52 - timelog editing via csv interface crashes (sf bug 699837)
53 - sort multilinks a little better for grouping (sf bug 772935)
54 - batch the (list) listings at 500 entries per page (sf bug 759906)
55 - don't have RDBMS backends list retired nodes (sf bug 767319)
56 - fix file downloading
57 - add action attribute to issue.item form tag
60 2003-07-29 0.6.0b4
61 - plugged cross-site-scripting hole (thanks Jeff Epler)
62 - handle deprecation of FCNTL in python2.2+ (sf bug 756756)
63 - handle missing Subject: line (sf bug 755331)
64 - fix New User creation (sf bug 754510)
65 - fix hackish message escaping (sf bug 757128)
66 - fix :required ordering problem (sf bug 740214)
67 - audit some user properties for valid values (roles, address) (sf bugs
68   742968 and 739653)
69 - fix HTML file detection (hence history xref linking) (sf bug 741478)
70 - session database caches it's type, rather than calling whichdb each time 
71   around.
72 - changed rdbms_common to fix sql backends for new Boolean types under Py2.3
75 2003-06-10 0.6.0b3
76 Fixed:
77 - cgi client was broken during b2 fixing
80 2003-06-09 0.6.0b2
81 Feature:
82 - added the start/stop/restart/condstart/status roundup-server control
83   script
85 Fixed:
86 - handle non-existant demo dir (thanks Ollie Rutherfurd)
87 - strip whitespace from Role names so "User, Admin" will work
88 - fixed template searching on Windows (thanks J Vickroy)
91 2003-05-09 0.6.0b1
92 Removed:
93 - having served its purpose as a template for other relational database
94   implementations, the gadfly backend has now been removed from the Roundup
95   distribution.
97 Feature:
98 - new instant-gratification Demo Mode
99 - support setting of properties on message and file through web and
100   email interface (thanks John Rouillard)
101 - allow additional control over the roundupdb email sending (explicit
102   cc addresses, different from address and different nosy list property)
103   (thanks John Rouillard)
104 - applied patch for nicer history display (sf feature 638280)
105 - cleaning old unused sessions only once per hour, not on every cgi 
106   request. It is greatly improves web interface performance, especially
107   on trackers under high load
108 - added mysql backend (see doc/mysql.txt for details)
109 - switch metakit to use "compressed" multilink journal change representation
110 - metakit now handles "unset" for most types (not Number and Boolean)
111 - fixed bug in metakit search-by-ID
112 - added ability to display localized dates in web interface. User input is
113   convered to GMT (see doc/upgrading.txt).
114 - added a form to show a specific issue
115 - more proper sorting/grouping on mulitilink properties. Sorting is performed
116   not only by number of links, but also by links itself. This makes usable
117   grouping e.g. by topic multilink
118 - add "ago" to intervals in the past (sf bug 679232)
119 - included UN*X manual pages from Bastian Kleineidam
120 - implemented extension to form parsing to allow editing of multiple items
121   and creation of multiple items (but only one per class)
122 - the colon ":" special form variable designator may now be any of : + @
123 - trackers' templates directory can contain subdirectories with static files
124   (e.g. images). They are accessible naturally: _file/images/img.gif
125 - altered Class.create() and FileClass.create() methods to make "content"
126   property available in auditors
127 - can now configure CC to author only for messages creating issues (sf
128   feature 625808)
129 - registration is now a two-step process, with confirmation from the email
130   address supplied in the registration form
131 - added password reset feature for forgotten password / login
132 - added support for last-modified and if-modified-since headers for static
133   file serving
134 - added Node.get() method
135 - nicer page titles (sf feature 65197)
136 - relaxed CVS importing (sf feature 693277)
137 - added support for searching on ranges of dates and intervals (see
138   doc/user_guide.txt in chapter "Searching Page" for details) (closes sf
139   feature 700178)
140 - role names made case insensitive
141 - added ability to restore retired nodes
142 - more lenient date input and addition Interval input support (sf bug 677764)
143 - roundup mailgw now handles apop
144 - implemented ability to search for multilink properties with no value
145 - Class.find() may now find unset Links (sf bug 700620)
146 - more flexibility in classhelp link labelling (sf feature 608204)
147 - added command-line functionality for roundup-admin (sf feature 687664)
148 - added nicer popup windows for topic, nosy, etc (has add/remove buttons)
149   thanks Gus Gollings
150 - HTML templating files now have a .html extension
151 - Roundup templates are now distributed much more sanely, allowing for
152   3rd-party templates.
153 - extended date syntax to make range searches even more useful
154 - SMTP login and TLS support added (sf bug 710853 with extras ;)
155   Note: requires python 2.2+
156 - added Windows Service mode for roundup-server when daemonification is
157   attempted on Windows.
158 - sort HTMLClass.properties results by name (sf feature 724738)
159 - nicer index navigation (sf feature 676866)
161 Fixed:
162 - applied unicode patch. All data is stored in utf-8. Incoming messages
163   converted from any encoding to utf-8, outgoing messages are encoded 
164   according to rfc2822 (sf bug 568873)
165 - fixed layout issues with forms in sidebar
166 - fixed timelog example so it handles new issues (sf bug 678908)
167 - handle missing os.fork() (sf bug 681046)
168 - added warning filter for "FutureWarning: hex/oct constants > sys.maxint will
169   return positive values..." (literal 0xffff0000 in portalocker.py)
170 - fixed ZPT code generating SyntaxWarning for assignment to None
171 - open static files using binary mode (sf bug 693208)
172 - fixed deja-vu bug 692910
173 - don't display "Editing" on read-only pages (sf bug 651967)
174 - re-worked detectors initialisation - woohoo, no more cross-importing!
175 - fixed export/import of retired nodes (sf bug 685273)
176 - remember the display template specified during edit (sf bug 701815)
177 - added example HTML tempating for vacation flag (sf bug 701722)
178 - finally, tables autosize columns (sf bug 609070)
179 - added creation to index columns (sf bug 708247)
180 - fixed missing (pre-commit) journal entries in *dbm backends (sf bug 679217)
181 - URL cited in roundup email confusing dumb Email clients (sf bug 716585)
182 - set title on issues even when the email body is empty (sf bug 727430)
183 - under the heading of "questionable whether it's a fix or not"
184   (sf "bug" 621226 for the users of the "standards compliant" browser IE)
187 2003-05-08 0.5.7
188 - fixed Interval maths (sf bug 665357)
189 - fixed sqlite rollback/caching bug (sf bug 689383)
190 - fixed rdbms table update detection logic (sf bug 703297)
191 - fixed detection of bad date specs (sf bug 691439)
192 - required String properties not being flagged (thanks Ajit George)
193 - only look for CSV files when importing (thanks Dan Grassi)
194 - can now unset values in CSV editing (sf bug 704788)
195 - fixed rdbms email address lookup (case insensitivity)
196 - email file attachments added to issue files list (sf bug 711501)
197 - added socket timeout to attempt to prevent stuck processes (sf bug 665487)
198 - email registered users shouldn't be able to log in (sf bug 714673)
199 - handle missing addresses on users (sf bug 724537)
202 2003-02-27 0.5.6
203 - fixed templating filter function arguments (sf bug 678911)
204 - fixed multiselect in searching (sf bug 676874)
205 - fixed parsing of content-disposition filenames (sf bug 675116)
206 - added 'h' to roundup-server optarg list (sf bug 674070)
207 - fixed doc for db.history in anydbm and rdbms_common (sf bug 679221)
208 - fixed roundup-reminder (sf bug 681042)
209 - fixed int assumptions about Number values (sf bug 677762)
210 - clarified licensing
211 - another attempt to fix cookie misbehaviour - customise cookie name using
212   tracker name
213 - fixed error in indexargs_url (thanks Patrick Ohly)
214 - fixed getnode (sf bug 684531)
215 - fixed args to some date templating methods (sf bug 689670)
216 - fixed database corruption in rdbms property mutation
219 2003-01-24 0.5.5
220 - fixed rdbms searching by ID (sf bug 666615)
221 - fixed metakit searching by ID
222 - detect corrupted index and raise semi-useful exception (sf bug 666767)
223 - open server logfile unbuffered
224 - revert StringHTMLProperty to not hyperlink text by default
225 - fixes to CGI form handling
226 - fix unlink bug in metakit backend
227 - fixed hyperlinking ambiguity (sf bug 669777)
228 - fixed cookie path to use TRACKER_WEB (sf bug 667020) (thanks Nathaniel Smith
229   for helping chase it down and Luke Opperman for confirming fix)
232 2003-01-10 0.5.4
233 - key the templates cache off full path, not filename
234 - implemented whole-database locking
235 - hyperlinking of special text (url, email, item designator) in messages
236 - fixed time default in date.py
237 - fixed error in cgi/templates.py (sf bug 652089)
238 - fixed handling of missing password (sf bug 655632)
239 - applied patches for handling Outlook quirks (thanks Andrey Lebedev)
240   (multipart/alternative, "fw" and content-type "name")
241 - fire auditors and reactors in rdbms retire (thanks Sheila King)
242 - better match for mailgw help "command" text
243 - handle :add: better in cgi form parsing (sf bug 663235)
244 - handle all-whitespace multilink values in forms (sf bug 663855)
245 - fixed searching on date / interval fields (sf bug 658157)
246 - fixed form elements names in search form to allow grouping and sorting 
247   on "creation" field
248 - display of saved queries is now performed correctly
251 2002-12-11 0.5.3
252 - added mention of how to give users multiple Roles
253 - mention needed trailing "/" in TRACKER_WEB
254 - fixed upgrading doc to have CGI changes in the correct order
255 - fixed double-close of anydbm backend (sf bug 639030)
256 - removed use of string/strop from TAL/TALInterpreter
257 - handle KeyboardInterrupt nicely
258 - fixed Date and Interval form value handling
259 - fixed Date.local()
260 - email quoted text stripping is controllable again (sf bug 650742)
261 - extract attachment name from content-disposition if name is missing (sf
262   bug 637278)
263 - removed FILTER_POSITION from bundled configs
264 - reverse message listing in issue display (reversion of recent change)
265 - bad entries for multilink editing in cgi don't traceback now (sf bug 640310)
266 - detect and break email loops (sf bug 640854)
267 - finished of handling of retired flag in filter() (sf bug 635260)
268 - allow StringHTMLProperty in MultilinkHTMLProperty test to work
269 - don't set explicit None Link properties in web create
270 - fixed nasty sorting bug that was lowercasing properties
271 - allow multiple :remove and :add elements per property being edited
272 - added date header to emails (sf bug 651358)
275 2002-11-07 0.5.2
276 - added quotes around python interpreter in windows bat (sf bug 623963)
277 - fixed link at end of installation doc (sf bug 623957)
278 - handle "classname" URL path errors cleaner (generate a 404)
279 - added CGI :remove:<propname> and :add:<propname> which specify item ids to
280   remove / add in <propname> multilink.
281 - bugfix in boolean templating
282 - remember the change note on bad submissions (sf bug 625989)
283 - highlight required form fields (sf bug 625989)
284 - force non-word boundary to match re: in subject (sf bug 626303)
285 - handle sqlite bug (<2.7.2) (sf bug 630828)
286 - handle missing props in anydbm stringFind
287 - updated email package address formatting (deprecation)
288 - copied email address quoting from email v2.4.3 so we're consistent with 2.2
289 - email summary extraction now takes the first whole sentence or line -
290   whichever is longer
291 - documented dependency on Active State (sf bug 623959)
292 - ensured there's no zero-length files in source (sf bug 633622)
293 - added ID to the search page (sf bug 631601)
294 - fixed filtering by id in anydbm
295 - show issue ID in the headings (sf bug 631598)
296 - show entire messages by default in issues (sf bug 625995)
297 - fixed journalling to save old values instead of new (sorry it took so long GM)
298 - handle missing REQUEST_URI for cgi-bin users (sf bug 620163)
301 2002-10-16 0.5.1
302 - highlight rows in groups of three
303 - metakit cleanups
304 - nicer "navigation" style in index views
305 - handle missing Link values in anydbm backend set() operation
306 - fixed filter() with no sort/group (sf bug 618614)
307 - fixed register with no session (sf bug 618611)
308 - fixed log / pid file path handling in roundup-server (sf bug 617981)
309 - fixed old gadfly compatibiltiy problem, for sure this time (sf bug 612873)
310 - https URLs from config now recognised as valid (sf bug 619829)
311 - nicer display of tracker list in roundup-server (sf bug 619769)
312 - fixed some missed renaming instance -> tracker (sf bug 619769)
313 - allow blank passwords again (sf bug 619714)
314 - expose the tracker config as a variable for templating
315 - homogenise newlines in CGI text submissions (sf bug 614072)
316 - merged Zope Collector #372 fix from ZPT CVS trunk
317 - fixed history to display username instead of userid
318 - shipped templates didn't import all hyperdb types in dbinit.py
319 - fixed bug in Interval serialisation
320 - handle "unset" status in status auditor (sf bug 621250)
321 - issues in 'done-cbb' are now also moved to 'chatting' on new messages
322 - implemented the missing Interval.__add__
323 - added ability to implement new templating utility methods
324 - expose the Date.pretty method to templating
325 - made form table cell alignment consistent (sf bug 621887)
326 - include stylesheet in docs (sf bug 623183)
327 - store PIPE messages so we can re-send them on errors (sf bug 623082)
328 - implemented "retire" cgi action, added to user index (sf bug 618612)
329 - included doc ideas from Bernhard Reiter (sf feature 621941)
332 2002-10-02 0.5.0
333 - fixed style for alternating rows in user lists
334 - fixed query edit form so it doesn't barf
335 - #617133 ] 0.5.0pr1 uses nonexistent renderTemplate
336 - merged Zope Collector #539 fix from ZPT CVS trunk
339 2002-09-27 0.5.0 pr1
340 - handling of None for Date/Interval/Password values in export/import
341 - handling of journal values in export/import
342 - password edit now has a confirmation field
343 - registration error punts back to register page
344 - gadfly backend now handles changes to the schema - but only one property
345   at a time
346 - cgi.client base URL is now obtained from the config TRACKER_WEB
347 - request.url has gone away - there's too much magic in trying to figure
348   what it should be
349 - cgi-bin script redirects to https now if the request was https
350 - FileClass "content" property wasn't being returned by getprops() in most
351   backends
352 - we now verify instance attributes on instance open and throw a useful error
353   if they're not all there
354 - sf 611217 ] menu() has problems when labelprop==None
355 - verify contents of tracker module when the tracker is opened
356 - many performance improvements in *dbm and sql backends
357 - mailgw was missing an "import sys"
358 - setup now installs scripts with python -O flag, doubling performance in some
359   cases (there's a lot of __debug__ use)
360 - fix :required for Link menus
361 - import wasn't setting the ID to maxid+1
362 - added getItem to HTMLClass so you can access arbitrary items in templates
363 - index filtering form values may now be key values too
364 - replaced the content() callback ickiness with Page Template macro usage
365 - changed the default CSS style to be less offensive to some ;)
366 - better handling of Page Template compilation errors
367 - handle multiple unrelated indexed classes
368 - #614188 ] Exception in mailgw.py
369 - #613310 ] traceback on onexistant items
370 - #613291 ] typos in nosy list
371 - handle stupid mailers that QUOTE their Re; 'Re: "[issue1] bla blah"'
372 - giving a user a Role that doesn't exist doesn't break stuff any more
373 - revamped user guide, customisation guide, added maintenance guide
374 - merge Zope Collector #538 fix from ZPT CVS trunk (path expressions with a
375   non-path final alternate no longer try to call a value returned by that
376   alternate)
377 - merge Zope Collector #573 fix from ZPT CVS trunk
378 - merge Zope Collector #580 fix from ZPT CVS trunk
379 - added "crypt" password encoding and ability to set password with
380   already encrypted password through roundup-admin
381 - fixed the mailgw so that anonymous users may still access it
382 - add hook to allow external password verification, overridable in the
383   tracker interfaces module
384 - fixed login attempt by user that doesn't exist
387 2002-09-13 0.5.0 beta2
388 -  all backends now have a .close() method, and it's used everywhere
389 -  fixed bug in detectors __init__
390 -  switched the default issue item display to only show issue summary
391    (added instructions to doc to make it display entire content)
392 -  MANIFEST.in was missing a lot of template files
393 -  added generic item editing
394 -  much nicer layout of template rendering errors
395 -  added context/is_edit_ok and context/is_view_ok convenience methods and
396    implemented use of them in the classic template
399 2002-09-11 0.5.0 beta1
400 Fixed:
401 -  #576086 ] dumb copying mistake (frontends/ZRoundup.py)
402 -  installation instructions now mention "python2" in "testing your python".
403 -  made the unit tests run again - they were quite b0rken
404 -  #571170 ] gdbm deadlock
405 -  #576241 ] MultiLink problems in parsePropsFromForm
406 -  fixed the date module so that Date(". - 2d") works
407 -  web forms may now unset Link values (like assignedto)
408 -  cleanup: moved roundup.templatebuilder to roundup.templates.builder
409 -  instance __init__ no longer silently traps dbinit import errors
411 Feature:
412 -  new backend for metakit (thanks Gordon McMillan)
413 -  new backend for gadfly (it's as done as it's going to get)
414 -  further split the dbm backends from the core code, allowing easier
415    non-dict-like backends (eg metakit, RDB)
416 -  implemented and used the new access control mechanisms (Permissions, Roles)
417    (see doc/security.txt)
418 -  switched templating to use Zope's PageTemplates (yay!)
419 -  switched to sessions for web authentication
420 -  added Boolean and Number types
421 -  fixed the journal bloat
422 -  updated design document for new access controls
423 -  updated customisation document, including more examples
424 -  entire database export and import (incl files)
425 -  better mailgw help message (feature request #558562)
426 -  re-enabled link backrefs from messages (feature request #568714)
427 -  the page layout is now templatable
428 -  re-worked cgi interface to abstract out the explicit "issue" interface
429 -  have index page handle mid-page errors better so header and footer are
430    still visible
431 -  we handle "not found", access and item page render errors better
432 -  fixed double-submit by having new-item-submit redirect at end
433 -  daemonify roundup-server (fork, logfile, pidfile)
434 -  modify cgitb to display PageTemplate errors better
435 -  rename to "instance" to "tracker"
436 -  have roundup.cgi pick up tracker config from the environment 
437 -  revamped look and feel in web interface
438 -  cleaned up stylesheet usage
439 -  several bug fixes and documentation fixes
440 -  added is_retired test to hyperdb.Class
441 -  added capability to save queries:
442    - a query Class with name, klass (to search) and url (query string)
443      properties
444    - a Multilink to query on user called queries
445    - html templates for query, and a list of queries in user.item
446    - search form has Save button & name input
447    - saved queries put in menu in pagehead
448    - for migration, none of the above is required and old behavior preserved.
449    - showquery translates search form <-> query string
450 -  cleaned up the indexer code:
451    - it splits more words out
452    - removed code we'll never use (roundup.roundup_indexer has the full
453      implementation, and replaces roundup.indexer)
454    - only index text/plain and rfc822/message (ideas for other text formats to
455      index are welcome)
456    - added simple unit test for indexer. Needs more tests for regression.
457    - all String properties may now be indexed too. Currently there's a bit of
458      "issue" specific code in the actual searching which needs to be
459      addressed. In a nutshell:
460      + pass 'indexme="yes"' as a String() property initialisation arg, eg:
461            file = FileClass(db, "file", name=String(), type=String(),
462                comment=String(indexme="yes"))
463      + the comment will then be indexed and be searchable, with the results
464        related back to the issue that the file is linked to
465    - as a result of this work, the FileClass has a default MIME type that may
466      be overridden in a subclass, or by the use of a "type" property as is
467      done in the default templates.
468    - the regeneration of the indexes (if necessary) is done once the schema is
469      set up in the dbinit.
470    - new "reindex" command in roundup-admin used to force regeneration of the 
471      index
472 -  added email display function - mangles email addrs so they're not so easily
473    scraped from the web
474 -  switched to using a session-based web login
475 -  made mailgw handle set and modify operations on multilinks (bug #579094)
476 -  fixed the journal bloat from multilink changes - we just log the add or
477    remove operations, not the whole list
480 2002-06-24 0.4.2
481 Fixed:
482 -  Cleaned up the hyperdb unit tests.
483 -  Applied patch from Andrew W. Nosenko to give nicer Unauthorised message
484    when anonymous user tries to edit. Should've been applied in 0.4.2pr1. Oops.
485 -  Added more detailed note to MIGRATION regarding the detectors changes.
488 2002-06-19 0.4.2pr1
489 Feature:
490 -  added a "detectors" directory for people to put their useful auditors and
491    reactors in. Note - the roundupdb.IssueClass.sendmessage method has been
492    split and renamed "nosymessage" specifically for things like the nosy
493    reactor, and "send_message" which just sends the message.
494 -  link() htmltemplate function now has a "showid" option for links and
495    multilinks. When true, it only displays the linked node id as the anchor
496    text. The link value is displayed as a tooltip using the title anchor
497    attribute.
498    To use in eg. the superseder field, have something like this:
499    <td>
500     <display call="field('superseder', showid=1)">
501     <display call="classhelp('issue', 'id,title', label='list', width=500)">
502     <property name="superseder">
503      <br>View: <display call="link('superseder', showid=1)">
504     </property>
505    </td>
506 -  stripping of the email message body can now be controlled through the
507    config variables EMAIL_KEEP_QUOTED_TEXT and EMAIL_LEAVE_BODY_UNCHANGED.
508 -  all database files created are now group readable and writable.
509 -  added option to automatically add the authors and recipients of messages
510    to the nosy lists with the options ADD_AUTHOR_TO_NOSY (default 'new') and
511    ADD_RECIPIENTS_TO_NOSY (default 'new'). These settings emulate the current
512    behaviour. Setting them to 'yes' will add the author/recipients to the nosy
513    on messages that create issues and followup messages.
514 -  reverting to dates for intervals > 2 months sucks
515 -  changed the default message list in issues to display the message body
516 -  applied patch #558876 ] cgi client customization
517 -  split instance initialisation into two steps, allowing config changes
518    before the database is initialised.
519 -  don't create an empty message on email issue creation if the email is empty
520 -  may now display additional fields in Multilink form menus
521 -  #541941 ] changing multilink properties by mail
522 -  #526730 ] search for messages capability
523 -  #505180 ] split MailGW.handle_Message
524    - also changed cgi client since it was duplicating the functionality
526 Fixed:
527 -  stop sending blank (whitespace-only) notes
528 -  cleanup of serialisation for database storage
529 -  node ids are now generated from a lockable store - no more race conditions
530 -  sorting was applied to all nodes of the MultiLink class instead of
531    to the nodes that are actually linked to in the "field" template
532    function.  This adds about 20+ seconds in the display of an issue if
533    your database has a 1000 or more issues in it.
534 -  added missing documentation for a few of the config option values
535 -  file upload broke if you didn't supply a change note
536 -  fixed SCRIPT_NAME in ZRoundup for instances not at top level of Zope
537    (thanks dman)
538 -  fixed some sorting issues that were breaking some unit tests under py2.2
539 -  mailgw test output dir was confusing the init test (but only on 2.2 *shrug*)
540 -  node caching now works, and gives a small boost in performance
541 -  #449374 ] re-enable bsddb3 backend
542    bsddb3 backend now works, reinstating
543 -  #551483 ] assignedto in Client.make_index_link
544 -  made backends.__init__ be more specific about which ImportErrors it really
545    wants to ignore
546 -  fixed the example addresses in the templates to use correct example domains
547 -  cleaned out the template stylesheets, removing a bunch of junk that really
548    wasn't necessary (font specs, styles never used) and added a style for 
549    message content
550 -  build htmlbase if tests are run using CVS checkout
551 -  #565979 ] code error in hyperdb.Class.find
552 -  #565996 ] The "Attach a File to this Issue" fails
553 -  #564271 ] find() and new properties
554 -  #562130 ] cookie path generated from ZRoundup was wrong in some situations
555 -  remove CR characters embedded in messages (ZRoundup)
556 -  properly quote the email address and "real name" in all situations using the
557     'email' module if it is available and 'rfc822' otherwise
558 -  #565992 ] if ISSUE_TRACKER_WEB doesn't have the trailing '/', add it
559 -  use the rfc822 module to ensure that every (oddball) email address and
560    real-name is properly quoted
561 -  #558867 ] ZRoundup redirect /instance requests to /instance/ 
562 -  #569415 ] {version}
563 -  #569178 ] type error
564    was fixed as part of the general cleanup of reactors
567 2002-03-25 - 0.4.1
568 Feature:
569 -  use blobfiles in back_anydbm which is used in back_bsddb.
570    change test_db as dirlist does not work for subdirectories.
571    ATTENTION: blobfiles now creates subdirectories for files.
572 -  add module blobfiles in backends with file access functions.
573 -  roundup db catch only IOError in getfile.
574 -  roundup db catches retrieving not existing files.
575 -  #503204 ] mailgw needs a default class
576    - partially done - the setting of additional properties can wait for a
577      better configuration system.
578 -  Alternate email addresses are now available for users. See the MIGRATION
579    file for info on how to activate the feature.
580 -  #511168 ] Web interface: Adding new products
581    Classes that don't provide template html get a default edit interface now:
582    - access using the admin "class list" interface
583    - limited to admin-only
584    - requires the csv module from object-craft (url given if it's missing)
585 -  Added popup help for classes using the classhelp html template function.
586    - add <display call="classhelp('priority', 'id,name,description')">
587      to an item page, and it generates a link to a popup window which displays
588      the id, name and description for the priority class. The description
589      field won't exist in most installations, but it will be added to the
590      default templates.
591 -  #517734 ] web header customisation is obscure
592 -  All messages sent to the nosy list are now encoded as
593    quoted-printable before they are sent.
594 -  Fixed display of mutlilink properties when using the template
595    functions, menu and plain.
597 Fixed:
598 -  Clean up mail handling, multipart handling.
599 -  respect encodings in non multipart messages.
600 -  makeHtmlBase: re.sub under python 2.2 did not replace '.', string.replace
601    does it.
602 -  preamble in tepmlateBuilder mentioned htmldata
603 -  mailgw checks encoding on first part too.
604 -  #511586 ] unittest FAIL: testReldate_date
605 -  Added a uniquely Roundup header to email, "X-Roundup-Name"
606 -  All forms now have "double-submit" protection when Javascript is enabled
607    on the client-side.
608 -  #516883 ] mail interface + ANONYMOUS_REGISTER
609 -  #516854 ] "My Issues" and redisplay
610 -  #517906 ] Attribute order in "View customisation"
611 -  #514854 ] History: "User" is always ticket creator
612 -  wasn't handling cvs parser feeding correctly
613 -  fixed some problems in date calculations (calendar.py doesn't handle over-
614    and under-flow). Also, hour/minute/second intervals may now be more than
615    99 each.
616 -  #527416 ] roundup-admin uses undefined value
617 -  #527503 ] unfriendly init blowup when parent dir
618    (also handles UsageError correctly now in init)
619 -  #524129 ] roundup-admin gets python path wrong
622 2002-01-24 - 0.4.0
623 Feature:
624 -  much nicer history display (actualy real handling of property types etc)
625 -  journal entries for link and mutlilink properties can be switched on or 
626    off
627 -  properties in change note are now sorted
628 -  you can now use the roundup-admin tool pack the database
630 Fixed:
631 -  the mail gateway now responds with an error message when invalid values 
632    for arguments are specified for link or mutlilink properties
633 -  modified unit test to check nosy and assignedto when specified as arguments
634 -  handle attachments with no name (eg tnef)
635 -  fixed setting nosy as argument in subject line
636 -  fixed back_bsddb so it passed the journal tests
637 -  fixed status changes in mail gateway (eg. unread -> chatting)
638 -  we'll actually distribute the frontends directory now, as advertised...
639 -  handle stripping of "AW:" from subject line
640 -  htmltemplate list() wasn't sorting...
641 -  unit tests for html templating (and re-enabled the listbox field for
642    multilinks)
643 -  allow abbreviation of "help" in admin tool too.
644 -  run_tests testReldate_date failed if LANG is 'german'
645 -  mailgw failures (unexpected ones) are forwarded to the roundup admin
648 2002-01-16 - 0.4.0b2
649 Fixed:
650 -  #495392 ] empty nosy -patch
651 -  #500574 ] messageid must have format <part1@part2>
652 -  fixed some problems with web editing and change detection
653 -  mail splitting wasn't detecting responses in the same "section" as quoted
654    text
655 -  missed a "from i18n import _" in date.py
656 -  #501690 ] MIGRATION.txt incomplete
657 -  #502342 ] pipe interface
658 -  #502437 ] rogue reactor and unittest
659 -  re-enabled dumbdbm when using python >2.1.1 (ie 2.1.2, 2.2)
660 -  changed all config accesses so they access either the instance or the
661    config attriubute on the db. This means that all config is obtained from
662    instance_config instead of the mish-mash of classes. This will make
663    switching to a ConfigParser setup easier too, I hope.
664 -  #502951 ] adding new properties to old database
665 -  #502953 ] nosy-like treatment of other multilinks
666 -  #503164 ] create and passwords
667 -  plain rendering of links in the htmltemplate now generate a hyperlink to
668    the linked node's page.
669 -  #503330 ] ANONYMOUS_REGISTER now applies to mail
670 -  #503353 ] setting properties in initial email
671 -  #502956 ] filtering by multilink not supported
672 -  #503340 ] creating issue with [asignedto=p.ohly]
673 -  #502949 ] index view for non-issues and redisplay
674 -  #503793 ] changing assignedto resets nosy list
675 -  lots of date/interval related changes:
676    - more relaxed date format for input
677    - handle None for date/interval properties
680 2002-01-08 - 0.4.0b1
681 Feature:
682 -  Added INSTANCE_NAME to configuration - used in web and email to identify
683    the instance.
684 -  Added EMAIL_SIGNATURE_POSITION to indicate where to place the roundup
685    signature info in e-mails.
686 -  Some more flexibility in the mail gateway and more error handling.
687 -  Login now takes you to the page you back to the were denied access to.
688 -  Admin user now can has a user index link on their web interface.
689 -  We now have basic transaction support. Information is only written to
690    the database when the commit() method is called. Only the anydbm and
691    bsddb3 backends are modified in this way - the bsddb3 backend needs a
692    lot more work anyway...
693     - the CGI and mailgw automatically commit() at the end of processing a
694       single transaction
695     - the admin tool requires an explicit "commit" - it will prompt at exit
696       if there are unsaved changes. A "rollback" removes all changes made
697       during the session (up to the last commit).
698 -  Added the "display" command to the admin tool - displays a node's values
699 -  Message author's name appears in From: instead of roundup instance name
700    (which still appears in the Reply-To:)
701 -  Added a Zope frontend for roundup.
702 -  Centralised the python version check code, bumped version to 2.1.1 (really
703    needs to be 2.1.2, but that isn't released yet :)
704 -  much better attaching of erroneous messages in the mail gateway
705 -  #496356 ] Use threading in messages
706    This adds the tracking of messages by message-id and allows threading
707    using in-reply-to. Most e-mail clients support threading using this
708    feature, and we hope to add support for it to the web gateway.
710 Fixed:
711 -  Lots of bugs, thanks Roché and others on the devel mailing list!
712 -  login_action and newuser_action return values were being ignored
713 -  Woohoo! Found that bloody re-login bug that was killing the mail
714    gateway.
715 -  Fixed login/registration forwarding the user to the right page (or not,
716    on a failure)
717 -  We now use weakrefs in the Classes to keep the database reference, so
718    the close() method on the database is no longer needed.
719 -  #487480 ] roundup-server
720 -  #487476 ] INSTALL.txt
721 -  #489760 ] [issue] only subject
722 -  fixed doc/index.html to include the quoting in the mail alias.
723 -  fixed the backends __init__ so we can pydoc the backend modules
724 -  web i/f reports "note added" if there are no changes but a note is entered
725 -  we were assuming database files created by anydbm had the same name, but
726    this is not the case for dbm. We now perform a much better check _and_
727    cope with the anydbm implementation module changing too!
728 -  envelope-from is now set to the roundup-admin and not roundup itself so
729    delivery reports aren't sent to roundup (thanks Patrick Ohly)
730 -  #495400 ] entering blanks
731    Values with spaces are now accepted in roundup-admin - check the long help
732    for details.
733 -  #496360 ] table width does not work
734 -  detectors were being registered multiple times
735 -  added tests for mailgw
738 2001-11-23 - 0.3.0 
739 Feature:
740 -  #467129 ] Lossage when username=e-mail-address
741 -  #473123 ] Change message generation for author
742 -  MailGW now moves 'resolved' to 'chatting' on receiving e-mail for an issue.
743 -  Added Structured Text rendering to htmltemplate, thanks Brad Clements.
744 -  Added CGI configuration via env vars (see roundup.cgi for details)
745 -  "roundup.cgi" is now installed to "<python-prefix>/share/roundup/cgi-bin"
746 -  roundup-admin now accepts abbreviated commands (eg. l = li = lis = list)
747 -  roundup-mailgw now supports unix mailbox and POP as sources of mail.
748 -  roundup-admin now handles all hyperdb exceptions
749 -  users may attach files to issues (and support in ext) through the web now
750 -  incorporated patch from Roch'e Compaan implementing attachments in nosy
751    e-mail
752 -  added a target version field to the extended issue schema
753 -  added dummy hooks for I18N and some preliminary (test) markup of
754    translatable messages
756 Fixed:
757 -  Fixed a bug in HTMLTemplate changes.
758 -  'unread' to 'chatting' automagic status change was b0rken.
759 -  Anonymous user lockout wasn't working.
760 -  roundup-server now works on Windows, thanks Juergen Hermann.
761 -  Fixed install documentation, also thanks Juergen Hermann.
762 -  Fixed some URL issues in roundup.cgi, again thanks Juergen Hermann.
763 -  bug #475347 ] WindowsError still not caught (patch from Juergen Hermann)
764 -  bug #474749 ] indentations lost
765 -  bug #477104 ] HTML tag error in roundup-server
766 -  bug #477107 ] HTTP header problem
767 -  bug #477687 ] conforming html
768 -  bug #474372 ] Netscape 4.77 do not render Support form
769 -  bug #477685 ] base64.decodestring breaks
770 -  bug #477837 ] lynx does not like the cookie
771 -  bug #477892 ] Password edit doesn't fix login cookie
772 -  newuser_action now presents error messages rather than tracebacks.
773 -  bug #479511 ] mailgw to pop
774 -  bug #479508 ] roundup-admin crash on wrong class
775 -  bad error report in hyperdb
776 -  roundup.mailgw now handles errors on the set() and create() at the end
777    of processing
778 -  roundup.mailgw also handles messages that are passed to it that don't
779    contain a From: line - apparently some POP servers can do this. It punts
780    an error message to the roundup admin.
781 -  fixed nosy reaction and author copy handling
782 -  errors in nosy reaction will be propogated now (were effectively being
783    squashed)
784 -  re-open the database as the author in mail handling
785 -  missing "return" in filter_section (thanks Roch'e Compaan)
788 2001-10-23 - 0.3.0 pre 3
789 Feature:
790 -  MailGW now moves 'unread' to 'chatting' on receiving e-mail for an issue.
791 -  feature #473127: Filenames. I modified the file.index and htmltemplate
792    source so that the filename is used in the link and the creation
793    information is displayed.
794  Admin Tool (roundup-admin):
795  -  Interactive mode for running multiple (independant at present) commands.
796  -  Tabular display of nodes.
797  -  Import and export via colon-separated files.
799 Changed:
800 -  re-organised the html templating code. Fixed some bugs, probably
801    introduced some more.  Hopefully not too many.
803 Fixed:
804 -  Stand-alone server now has a configurable setuid user.
805 -  CGI interface wasn't handling checkboxes at all.
806 -  Fixed quopri usage in mailgw from bug reports on mailing list.
807 -  Remove the "freshen" command from the roundup-admin tool.
808 -  Catch errors in login - no username or password supplied.
809 -  Fixed editing of password (Password property type) thanks Roch'e Compaan.
810 -  Fixed grouping of non-str properties thanks Roch'e Compaan.
811 -  bug #473121: The customisation view and filters (CGI interface view
812    customisation section may now be hidden (patch from Roch'e Compaan.)
813 -  bug #473122: Issue id sorting (hyperdb sorts strings-that-look-like-numbers
814    as numbers now.
815 -  bug #473124: UI inconsistency with Link fields.
816    This also prompted me to fix a fairly long-standing usability issue -
817    that of being able to turn off certain filters.
818 -  bug #473125: Paragraph in e-mails
819 -  bug #473126: Sender unknown
820 -  bug #473130: Nosy list not set correctly
823 2001-10-11 - 0.3.0 pre 2
824 Fixed:
825 -  Hyperdatabase was inserting empty strings instead of None for missing
826    property values. This broke a lot of things.
829 2001-10-10 - 0.3.0 pre 1
830 Feature:
831 -  roundup-admin create now prompts for property info if none is supplied
832    on the command-line.
833 -  hyperdb Class getprops() method may now return only the mutable
834    properties.
835 -  CGI interfaces now generate a top-level index of their known instances.
837 Changed:
838 -  Login now uses cookies, which makes it a whole lot more flexible. We can
839    now support anonymous user access (read-only, unless there's an
840    "anonymous" user, in which case write access is permitted). Login
841    handling has been moved into cgi_client.Client.main()
842 -  The "extended" schema is now the default in roundup init.
843 -  The schemas have had their page headings modified to cope with the new
844    login handling. Existing installations should copy the interfaces.py
845    file from the roundup lib directory to their instance home.
846 -  Passwords are now encoded by default (except exising databases which
847    will only be encoded when the passwords are changed). The scheme used
848    at the moment is SHA - but the code is flexible enough to take any
849    number of encoding systems.
850 -  The roundup-admin tool always operates as the "admin" user now. Database
851    protection should be achieved using file system protections (see the
852    documentation for details.)
854 Fixed:
855 -  Incorrectly had a Bizar Software copyright on the cgitb.py module from
856    Ping - has been removed.
857 -  Pretty time interval wasn't handling > 1 month properly.
858 -  Generation of links to Link/Multilink in indexes. (thanks Hubert Hoegl)
859 -  AssignedTo wasn't in the "classic" schema's item page.
860 -  Fixed a whole bunch of places in the CGI interface where we should have
861    been returning Not Found instead of throwing an exception.
862 -  Fixed a deviation from the spec: trying to modify the 'id' property of
863    an item now throws an exception.
864 -  The plain() template function now html-escapes the content.
865 -  Change message was stuffing up for multilinks with no key property.
869 --------------
871 2001-08-30 - 0.2.8
872 Fixed:
873 -  Wasn't handling unguessable mime types for file uploads.
874 -  Missing import in mailgw.
877 2001-08-29 - 0.2.7
878 Feature:
879 -  Text searches are now case insensitive. All forms of text search use
880    regular expressions now.
882 Fixed:
883 -  Had another 2.1-ism in the unit tests
884 -  Made the mail parser a little more robust w.r.t missing Subject:
885    (both thanks Mikhail Sobolev)
886 -  Missed some isFooType usages (thanks Mikhail Sobolev for spotting them)
887 -  Reverted back to sending change messages to the web editor of a node so
888    that the change note message is actually genrated.
889 -  CGI interface wasn't generating correct change messages.
890 -  Notes entered during a change are saved to the messages list even if
891    there's no nosy list. No message is generated if there's no nosy list and
892    there's no change note (since it would just duplicates the journal).
893 -  Completely removed the bsddb3 module from the tests - will be reinstated
894    when the http://bsddb.sourceforge.net/'s bugs #439959 and #456408 are
895    dealt with. One is fixed in CVS, the other pending.
898 2001-08-08 - 0.2.6
899 Note:
900 -  Roundup is now released under the same terms as the Python License.
902 Feature:
903 -  Added tests for instance initialisation. No more releasing the software
904    with bugs in roundup.init!
905 -  Now bundling unittest with the package so that python 2.0 users can use
906    the tests.
907 -  Much better error handling and messages generated by the mail gateway.
909 Fixed:
910 -  Implemented correct mail splitting. Added unit tests. Also snips
911    signatures now too.
912 -  Bug #447671 - typo in roundup/init.py
913 -  Changed date.Date to use regular string formatting instead of strftime -
914    win32 seems to have problems with %T and no hour... or something...
915 -  Bug #448484 - now catching correct exception from makedirs.
916 -  Instances are now opened by a special function that generates a unique
917    module name for the instances on import time.
920 2001-08-03 - 0.2.5
921 Note:
922 -  The bsddb3 module has a bug that renders it non-functional. Users should
923    select the anydbm or bsddb backend instead.
925 Fixed:
926 -  Python 2.0 does not contain the unittest module. The setup.py module now
927    checks for unittest before attempting to run the unit tests.
930 2001-08-03 - 0.2.4
931 Features:
932 -  Added ability for cgi newblah forms to indicate that the new node
933    should be linked somewhere.
934 -  Added time logging and file uploading to the templates.
935 -  Added "My Issues" and "My Support" to extended template. Changed "Your
936    Details" to "My Details". Changed the "New Foo" links to "Add Foo".
937    Added links for unassigned support and issues. Generally reorganised and
938    cleanup the header up.
939 -  Changed the order of the information in the message generated by web edits.
940 -  Extended the range of intervals that are pretty-printed before actual dates
941    are displayed.
942 -  Added more BUILD instructions including the "clean" command to force
943    rebuild.
944 -  Web edit messages aren't sent to the person who did the edit any more. No
945    message is generated if they are the only person on the nosy list.
946 -  Roundupdb now appends "mailing list" information to its messages which
947    include the e-mail address and web interface address. Templates may
948    override this in their db classes to include specific information (support
949    instructions, etc).
951 Fixed:
952 -  Argument handling for the roundup-admin find command.
953 -  Handling of summary when no note supplied for newblah. Again.
954 -  Detection of no form in htmltemplate Field display.
955 -  Checklist html template command was setting wrong name.
956 -  2.1-specific gmtime() (no arg) call in roundup.date. (thanks Paul Wright)
957 -  mailgw was making naughty assumptions about the schema of the classes it
958    was creating nodes for.
959 -  remove the $Foo$ from the HTML files stored in the htmlbase modules.
960 -  Instance import now imports the instance using imp.load_module so that
961    we can have instance homes of "roundup" or other existing python package
962    names.
965 2001-07-30 - 0.2.3
966 Big change:
967 -  I've split off the support class from the issue class in "extended".
968    Anyone who has any support entries, sorry. It should be possible to
969    write a scipt that moves the entries over pretty easily. If this causes
970    you pain, I'll do so. You'll want to update your instance with the new
971    code in "extended" either way.
973 Features:
974 -  Added the unit tests to the start of setup.py so they're run whenever
975    we do anything distutils'y.
976 -  Added nicer prompting to the roundup-admin "init" command.
977 -  Actually, the roundup-admin code is totally revamped, and has command
978    help and better command-line arg handling.
979 -  The cgi_client.Client base class now reflects the structure of "classic"
980    rather than "extended" since "classic" is more of a "base" template.
981 -  Added more DB to test. Skips tests where imports fail.
983 Fixed:
984 -  One of the tests in test_date had the wrong expected result.
985 -  Fixed IssueClass so that superseders links to its classname rather than
986    hard-coded to "issue".
987 -  templatebuilder was catching IOError instead of OSError.
988 -  The cgi_client newblah method wasn't detecting the __note form field
989    properly.
990 -  The History command in htmltemplate didn't handle a new node (None
991    nodeid) properly.
994 2001-07-29 - 0.2.2
995 Features:
996 -  Added implementation.txt to the doc directory. Contains implementation
997    notes specific to this implementations of Roundup.
998 -  Cleaned up mailgw some (subclass Message for getPart) and added some
999    tests for multipart splitting.
1000 -  Better checking for html dir in templatebuilder.
1001 -  Base hyperdb.Class now fakes the "id" property.
1002 -  Made the classic roundup look more like the original prototype.
1003 -  Made cgi_client and templating slightly more generic.
1004 -  Moved some code around in cgi_client allowing for subclassing to change
1005    behaviour.
1006 -  Added the fabricated property "id" to all hyperdb classes.
1007 -  Cleanup of the link label generation (new method on hyperdb.Class to do
1008    it).
1010 Fixed:
1011 -  Everything uses errno module now to check errno values.
1012 -  New issue form handles lack of note better now.
1013 -  HTML templating uses section-bar style for index group headers now.
1014 -  Fixed problem in link display when Link value is None.
1015 -  Form handling in cgi client wasn't propogating through the previous
1016    query elements.
1017 -  Fixed sort arguments generated for column headings so sorting can be
1018    changed now.
1021 2001-07-28 - 0.2.1
1022 Features:
1023 -  Added docstring to roundup package so pydoc reports useful information.
1024 -  Added the roundup 1 software carpentry submission HTML to the doc
1025    directory as "overview.html".
1027 Fixes:
1028 -  Fixed bug in init command - templatebuilder was assuming existence of
1029    "html" directory in instance home.
1030 -  Fixed INSTALL.txt to reflect some changes in the installation and test
1031    procedure. Whatdya know, "setup.py install" does the script install.
1032    There you go...
1033 -  Fixed some non-string node ids in cgi_client now that the hyperdb is
1034    strict about such things.
1036 2001-07-26 - 0.2.0
1037 Features:
1038 -  Major reorganisation of code to allow multiple roundup instances and a
1039    single, site-packages -based installation. Also allows multiple database
1040    back-ends.
1041 -  Moved the bin/ proggies into the top dir, so that it all works
1042    out-of-the-box
1043 -  Added the "classic" template - a direct implementation of the Roundup
1044    spec. Well, as close as we're going to get, anyway.
1045 -  Added an issue priority of support to "extended"
1046 -  Added command-line arg handling to roundup-server so it's more useful 
1047    out-of-the-box.
1048 -  Added distutils-style installation of "lib" files.
1049 -  Added some unit tests.
1051 Fixes:
1052 -  Fixed bug in re generation in the filter
1053 -  Fixed handling of None String property in grouped list headings
1054 -  Fixed adding new issue with no change note
1055 -  Fixed values in text input fields which contained quotes (") are now
1056    quoted.
1057 -  Fixed a bug in the hyperdb filter - wrong variable names in the error
1058    message.
1060 2001-07-19 - 0.1.3
1061 -  Reldate now takes an argument "pretty" - when true, it pretty-prints the
1062    interval generated up to 5 days, then pretty-prints the date of last
1063    activity. The issue index and item now use the pretty format.
1064 -  Classes list for admin user in CGI interface.
1065 -  Made the view configuration more accessible, neater and more realistic.
1066 -  Fixed list view grouping handling grouping by a Multilink or String or Link
1067    value of None or Date, ...  (mind you, sorting by Date???)
1068 -  Fixed bug in the plain formatter when a Link was None.
1069 -  Fixed ordering of list view column headings.
1070 -  Fixed list view column heading sort links - and limited the number of
1071    columns to sort by to 2.
1072 -  Added searching by glob to StringType filtering -
1073     ^text  - search for text at start of fields
1074     text$  - search for text at end of fields
1075     ^text$ - exactly match text in fields
1076     te*xt  - search for text matching "te"<any characters>"xt"
1077     te?xt  - search for text matching "te"<any one character>"xt"
1078 -  Added more fields to the issue.filter and issue.index templates
1081 2001-07-18 - 0.1.2
1082 -  Set default index to ?:group=priority&:columns=activity,status,title so
1083    the priority column isn't displayed.
1084 -  Thanks Anthony:
1085    - added notes to the README about Python prerequisites
1086    - added check to roundup.py, roundup.cgi, server.py and roundup-mailgw.py
1087      for python 2+ - and made the file itself parseable by 1.5.2 ;)
1088    - python 2.0 didn't have the default args for the time module functions.
1089    - better handling of db directory in initDB
1090 -  Sorting on the extra properties defined by roundupdb classes was broken
1091    due to the caching used. May now sort on activity and creation
1092    properties, etc.
1093 -  Set the default index to sort on activity
1096 2001-07-18 - 0.1.1
1097 -  Initial version release with consent of Roundup spec author, Ka-Ping Yee:
1098    "Amazing!  Nice work.  I'll watch for the source code on your website."
1100 2001-07-11 - 0.1.0
1101 -  Needed a bug tracking system. Looked around. Tried to install many
1102    Perl-based systems, to no avail. Got tired of waiting for Roundup to be
1103    released. Had just finished major product project, so needed something
1104    different for a while. Roundup here I come...