Code

Fixed various cookie-related bugs:
[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 2001-10-?? - 0.3.0 
5 Feature:
6  . #467129 ] Lossage when username=e-mail-address
7  . #473123 ] Change message generation for author
8  . MailGW now moves 'resolved' to 'chatting' on receiving e-mail for an issue.
9  . Added Structured Text rendering to htmltemplate, thanks Brad Clements.
11 Fixed:
12  . Fixed a bug in HTMLTemplate changes.
13  . 'unread' to 'chatting' automagic status change was b0rken.
14  . Anonymous user lockout wasn't working.
15  . roundup-server now works on Windows, thanks Juergen Hermann.
16  . Fixed install documentation, also thanks Juergen Hermann.
17  . Fixed some URL issues in roundup.cgi, again thanks Juergen Hermann.
18  . bug #475347 ] WindowsError still not caught (patch from Juergen Hermann)
19  . bug #474749 ] indentations lost
20  . bug #477104 ] HTML tag error in roundup-server
21  . bug #477107 ] HTTP header problem
22  . bug #477687 ] conforming html
23  . bug #474372 ] Netscape 4.77 do not render Support form
24  . bug #477685 ] base64.decodestring breaks
25  . bug #477837 ] lynx does not like the cookie
26  . bug #477892 ] Password edit doesn't fix login cookie
28 2001-10-23 - 0.3.0 pre 3
29 Feature:
30  . MailGW now moves 'unread' to 'chatting' on receiving e-mail for an issue.
31  . feature #473127: Filenames. I modified the file.index and htmltemplate
32    source so that the filename is used in the link and the creation
33    information is displayed.
34  Admin Tool (roundup-admin):
35   . Interactive mode for running multiple (independant at present) commands.
36   . Tabular display of nodes.
37   . Import and export via colon-separated files.
39 Changed:
40  . re-organised the html templating code. Fixed some bugs, probably
41    introduced some more.  Hopefully not too many.
43 Fixed:
44  . Stand-alone server now has a configurable setuid user.
45  . CGI interface wasn't handling checkboxes at all.
46  . Fixed quopri usage in mailgw from bug reports on mailing list.
47  . Remove the "freshen" command from the roundup-admin tool.
48  . Catch errors in login - no username or password supplied.
49  . Fixed editing of password (Password property type) thanks Roch'e Compaan.
50  . Fixed grouping of non-str properties thanks Roch'e Compaan.
51  . bug #473121: The customisation view and filters (CGI interface view
52    customisation section may now be hidden (patch from Roch'e Compaan.)
53  . bug #473122: Issue id sorting (hyperdb sorts strings-that-look-like-numbers
54    as numbers now.
55  . bug #473124: UI inconsistency with Link fields.
56    This also prompted me to fix a fairly long-standing usability issue -
57    that of being able to turn off certain filters.
58  . bug #473125: Paragraph in e-mails
59  . bug #473126: Sender unknown
60  . bug #473130: Nosy list not set correctly
63 2001-10-11 - 0.3.0 pre 2
64 Fixed:
65  . Hyperdatabase was inserting empty strings instead of None for missing
66    property values. This broke a lot of things.
69 2001-10-10 - 0.3.0 pre 1
70 Feature:
71  . roundup-admin create now prompts for property info if none is supplied
72    on the command-line.
73  . hyperdb Class getprops() method may now return only the mutable
74    properties.
75  . CGI interfaces now generate a top-level index of their known instances.
77 Changed:
78  . Login now uses cookies, which makes it a whole lot more flexible. We can
79    now support anonymous user access (read-only, unless there's an
80    "anonymous" user, in which case write access is permitted). Login
81    handling has been moved into cgi_client.Client.main()
82  . The "extended" schema is now the default in roundup init.
83  . The schemas have had their page headings modified to cope with the new
84    login handling. Existing installations should copy the interfaces.py
85    file from the roundup lib directory to their instance home.
86  . Passwords are now encoded by default (except exising databases which
87    will only be encoded when the passwords are changed). The scheme used
88    at the moment is SHA - but the code is flexible enough to take any
89    number of encoding systems.
90  . The roundup-admin tool always operates as the "admin" user now. Database
91    protection should be achieved using file system protections (see the
92    documentation for details.)
94 Fixed:
95  . Incorrectly had a Bizar Software copyright on the cgitb.py module from
96    Ping - has been removed.
97  . Pretty time interval wasn't handling > 1 month properly.
98  . Generation of links to Link/Multilink in indexes. (thanks Hubert Hoegl)
99  . AssignedTo wasn't in the "classic" schema's item page.
100  . Fixed a whole bunch of places in the CGI interface where we should have
101    been returning Not Found instead of throwing an exception.
102  . Fixed a deviation from the spec: trying to modify the 'id' property of
103    an item now throws an exception.
104  . The plain() template function now html-escapes the content.
105  . Change message was stuffing up for multilinks with no key property.
109 --------------
111 2001-08-30 - 0.2.8
112 Fixed:
113  . Wasn't handling unguessable mime types for file uploads.
114  . Missing import in mailgw.
117 2001-08-29 - 0.2.7
118 Feature:
119  . Text searches are now case insensitive. All forms of text search use
120    regular expressions now.
122 Fixed:
123  . Had another 2.1-ism in the unit tests
124  . Made the mail parser a little more robust w.r.t missing Subject:
125    (both thanks Mikhail Sobolev)
126  . Missed some isFooType usages (thanks Mikhail Sobolev for spotting them)
127  . Reverted back to sending change messages to the web editor of a node so
128    that the change note message is actually genrated.
129  . CGI interface wasn't generating correct change messages.
130  . Notes entered during a change are saved to the messages list even if
131    there's no nosy list. No message is generated if there's no nosy list and
132    there's no change note (since it would just duplicates the journal).
133  . Completely removed the bsddb3 module from the tests - will be reinstated
134    when the http://bsddb.sourceforge.net/'s bugs #439959 and #456408 are
135    dealt with. One is fixed in CVS, the other pending.
138 2001-08-08 - 0.2.6
139 Note:
140  . Roundup is now released under the same terms as the Python License.
142 Feature:
143  . Added tests for instance initialisation. No more releasing the software
144    with bugs in roundup.init!
145  . Now bundling unittest with the package so that python 2.0 users can use
146    the tests.
147  . Much better error handling and messages generated by the mail gateway.
149 Fixed:
150  . Implemented correct mail splitting. Added unit tests. Also snips
151    signatures now too.
152  . Bug #447671 - typo in roundup/init.py
153  . Changed date.Date to use regular string formatting instead of strftime -
154    win32 seems to have problems with %T and no hour... or something...
155  . Bug #448484 - now catching correct exception from makedirs.
156  . Instances are now opened by a special function that generates a unique
157    module name for the instances on import time.
160 2001-08-03 - 0.2.5
161 Note:
162  . The bsddb3 module has a bug that renders it non-functional. Users should
163    select the anydbm or bsddb backend instead.
165 Fixed:
166  . Python 2.0 does not contain the unittest module. The setup.py module now
167    checks for unittest before attempting to run the unit tests.
170 2001-08-03 - 0.2.4
171 Features:
172  . Added ability for cgi newblah forms to indicate that the new node
173    should be linked somewhere.
174  . Added time logging and file uploading to the templates.
175  . Added "My Issues" and "My Support" to extended template. Changed "Your
176    Details" to "My Details". Changed the "New Foo" links to "Add Foo".
177    Added links for unassigned support and issues. Generally reorganised and
178    cleanup the header up.
179  . Changed the order of the information in the message generated by web edits.
180  . Extended the range of intervals that are pretty-printed before actual dates
181    are displayed.
182  . Added more BUILD instructions including the "clean" command to force
183    rebuild.
184  . Web edit messages aren't sent to the person who did the edit any more. No
185    message is generated if they are the only person on the nosy list.
186  . Roundupdb now appends "mailing list" information to its messages which
187    include the e-mail address and web interface address. Templates may
188    override this in their db classes to include specific information (support
189    instructions, etc).
191 Fixed:
192  . Argument handling for the roundup-admin find command.
193  . Handling of summary when no note supplied for newblah. Again.
194  . Detection of no form in htmltemplate Field display.
195  . Checklist html template command was setting wrong name.
196  . 2.1-specific gmtime() (no arg) call in roundup.date. (thanks Paul Wright)
197  . mailgw was making naughty assumptions about the schema of the classes it
198    was creating nodes for.
199  . remove the $Foo$ from the HTML files stored in the htmlbase modules.
200  . Instance import now imports the instance using imp.load_module so that
201    we can have instance homes of "roundup" or other existing python package
202    names.
205 2001-07-30 - 0.2.3
206 Big change:
207  . I've split off the support class from the issue class in "extended".
208    Anyone who has any support entries, sorry. It should be possible to
209    write a scipt that moves the entries over pretty easily. If this causes
210    you pain, I'll do so. You'll want to update your instance with the new
211    code in "extended" either way.
213 Features:
214  . Added the unit tests to the start of setup.py so they're run whenever
215    we do anything distutils'y.
216  . Added nicer prompting to the roundup-admin "init" command.
217  . Actually, the roundup-admin code is totally revamped, and has command
218    help and better command-line arg handling.
219  . The cgi_client.Client base class now reflects the structure of "classic"
220    rather than "extended" since "classic" is more of a "base" template.
221  . Added more DB to test. Skips tests where imports fail.
223 Fixed:
224  . One of the tests in test_date had the wrong expected result.
225  . Fixed IssueClass so that superseders links to its classname rather than
226    hard-coded to "issue".
227  . templatebuilder was catching IOError instead of OSError.
228  . The cgi_client newblah method wasn't detecting the __note form field
229    properly.
230  . The History command in htmltemplate didn't handle a new node (None
231    nodeid) properly.
234 2001-07-29 - 0.2.2
235 Features:
236  . Added implementation.txt to the doc directory. Contains implementation
237    notes specific to this implementations of Roundup.
238  . Cleaned up mailgw some (subclass Message for getPart) and added some
239    tests for multipart splitting.
240  . Better checking for html dir in templatebuilder.
241  . Base hyperdb.Class now fakes the "id" property.
242  . Made the classic roundup look more like the original prototype.
243  . Made cgi_client and templating slightly more generic.
244  . Moved some code around in cgi_client allowing for subclassing to change
245    behaviour.
246  . Added the fabricated property "id" to all hyperdb classes.
247  . Cleanup of the link label generation (new method on hyperdb.Class to do
248    it).
250 Fixed:
251  . Everything uses errno module now to check errno values.
252  . New issue form handles lack of note better now.
253  . HTML templating uses section-bar style for index group headers now.
254  . Fixed problem in link display when Link value is None.
255  . Form handling in cgi client wasn't propogating through the previous
256    query elements.
257  . Fixed sort arguments generated for column headings so sorting can be
258    changed now.
261 2001-07-28 - 0.2.1
262 Features:
263  . Added docstring to roundup package so pydoc reports useful information.
264  . Added the roundup 1 software carpentry submission HTML to the doc
265    directory as "overview.html".
267 Fixes:
268  . Fixed bug in init command - templatebuilder was assuming existence of
269    "html" directory in instance home.
270  . Fixed INSTALL.txt to reflect some changes in the installation and test
271    procedure. Whatdya know, "setup.py install" does the script install.
272    There you go...
273  . Fixed some non-string node ids in cgi_client now that the hyperdb is
274    strict about such things.
276 2001-07-26 - 0.2.0
277 Features:
278  . Major reorganisation of code to allow multiple roundup instances and a
279    single, site-packages -based installation. Also allows multiple database
280    back-ends.
281  . Moved the bin/ proggies into the top dir, so that it all works
282    out-of-the-box
283  . Added the "classic" template - a direct implementation of the Roundup
284    spec. Well, as close as we're going to get, anyway.
285  . Added an issue priority of support to "extended"
286  . Added command-line arg handling to roundup-server so it's more useful 
287    out-of-the-box.
288  . Added distutils-style installation of "lib" files.
289  . Added some unit tests.
291 Fixes:
292  . Fixed bug in re generation in the filter
293  . Fixed handling of None String property in grouped list headings
294  . Fixed adding new issue with no change note
295  . Fixed values in text input fields which contained quotes (") are now
296    quoted.
297  . Fixed a bug in the hyperdb filter - wrong variable names in the error
298    message.
300 2001-07-19 - 0.1.3
301  . Reldate now takes an argument "pretty" - when true, it pretty-prints the
302    interval generated up to 5 days, then pretty-prints the date of last
303    activity. The issue index and item now use the pretty format.
304  . Classes list for admin user in CGI interface.
305  . Made the view configuration more accessible, neater and more realistic.
306  . Fixed list view grouping handling grouping by a Multilink or String or Link
307    value of None or Date, ...  (mind you, sorting by Date???)
308  . Fixed bug in the plain formatter when a Link was None.
309  . Fixed ordering of list view column headings.
310  . Fixed list view column heading sort links - and limited the number of
311    columns to sort by to 2.
312  . Added searching by glob to StringType filtering -
313     ^text  - search for text at start of fields
314     text$  - search for text at end of fields
315     ^text$ - exactly match text in fields
316     te*xt  - search for text matching "te"<any characters>"xt"
317     te?xt  - search for text matching "te"<any one character>"xt"
318  . Added more fields to the issue.filter and issue.index templates
321 2001-07-18 - 0.1.2
322  . Set default index to ?:group=priority&:columns=activity,status,title so
323    the priority column isn't displayed.
324  . Thanks Anthony:
325    . added notes to the README about Python prerequisites
326    . added check to roundup.py, roundup.cgi, server.py and roundup-mailgw.py
327      for python 2+ - and made the file itself parseable by 1.5.2 ;)
328    . python 2.0 didn't have the default args for the time module functions.
329    . better handling of db directory in initDB
330  . Sorting on the extra properties defined by roundupdb classes was broken
331    due to the caching used. May now sort on activity and creation
332    properties, etc.
333  . Set the default index to sort on activity
336 2001-07-18 - 0.1.1
337  . Initial version release with consent of Roundup spec author, Ka-Ping Yee:
338    "Amazing!  Nice work.  I'll watch for the source code on your website."
340 2001-07-11 - 0.1.0
341  . Needed a bug tracking system. Looked around. Tried to install many
342    Perl-based systems, to no avail. Got tired of waiting for Roundup to be
343    released. Had just finished major product project, so needed something
344    different for a while. Roundup here I come...