Code

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