Code

current state of play
[roundup.git] / TODO.txt
1 General Roundup project TODO list. Note that some of these are semi-formed
2 ideas. Those ideas that don't make the cutoff for the next major release are
3 punted automatically into the subsequent major release TODO.
5 State   Description
6 ------------------------------------------------------------------------------
7 pending example: meta/parent bug implementation (feature request #506815)
8 pending example: replace the "extended" example with a "help desk" one, and
9                  rename "classic" to "bug tracker"
10 pending example: script for retrieval of "mbox" archive of all messages
11 pending hyperdb: range searching of values (dates in particular)
12         - filter specifies {property: (comparison function, value)}
13           comparison functions: lt, le, eq, ge, gt. eq and
14           [value, value, ...] implies "in"
15 pending hyperdb: make creator, creation and activity available pre-commit
16 pending hyperdb: migrate "id" property to be Number type
17 pending instance: including much simpler upgrade path and the use of
18                   non-Python configuration files (ConfigParser)
19 pending instance: split instance.open() into open() and login()
20 pending instance: rename to "instance" to "tracker"
21 pending mailgw: allow commands (feature request #556996)
22                 like "help", "dump issue123" (would send all info about
23                 issue123, including a digest of all messages, but probably
24                 not all files...), "list issue", ...
25 pending mailgw: Allow multiple email addresses at one gw with different default
26                 classes and property values (possibly through command-line
27                 args to the mailgw as invoked in the mail delivery "aliases"
28                 file) eg:
29                   roundup: "|roundup-mailgw /instances/dev"
30                   vmbugs: "|roundup-mailgw /instances/dev component=voicemail"
31 pending project: switch to a Roundup instance for Roundup bug/feature tracking
32 pending project: have the demo allow anonymous login
33 pending security: at least an LDAP user database implementation
34 pending security: authenticate over a secure connection
35 pending security: use digital signatures in mailgw
36 pending security: submission protection
37 pending web: I18N
38 pending web: Better message summary display (feature request #520244)
39 pending web: Navigating around the issues (feature request #559149)
40 pending web: Quick help links next to the property labels giving a
41              description of the property. Combine with help for the actual
42              form element too, eg. how to use the nosy list edit box.
43 pending web: clicking on a group header should filter for that type of entry
44 pending web: re-enable auth by basic http auth
45 pending web: search "refinement"
46              - pre-fill the search page with the current search parameters)
47              - add a drop-down with all queries which fills form with selected
48                query values
49 pending web: have roundup.cgi pick up instance config from the environment 
51 New templating TODO:
52 . rewritten documentation (can come after the beta though so stuff is settled)
53 . add :required to edit action
54 active web: title is stoopid
55 active hyperdb: full-text searching doesn't appear to match stuff in titles,
56                 even though they're supposed to be indexed...
58 ongoing: any bugs
60 done web: Re-enable link backrefs from messages (feature request #568714) (RJ)
61 done web: have the page layout (header/footer) be templatable (RJ)
62 done web: fixing the templating so it works (RJ)
63 done web: re-work cgi interface to abstract out the explicit "issue"
64           interface (RJ)
65 done web: have index page handle mid-page errors better so header and
66           footer are still visible (RJ)
67 done hyperdb: write a backend for gadfly (it's as done as it's going to get)
68 done hyperdb: full-text search also search certain String properties (RJ)
69 done hyperdb: further split the *dbm backends from the core code, allowing
70               easier non-dict-like backends (eg metakit, RDB) (RJ)
71 done hyperdb: fix the journal bloat (RJ)
72 done hyperdb: add Boolean and Number types (GM)
73 done hyperdb: update design document (RJ)
74 done hyperdb: entire database export and import (incl files) (RJ)
75 done mailgw: better help message (feature request #558562) (RJ)
76 done security: add info from doc/security.txt to design doc (RJ)
77 done security: switch to sessions for web authentication (RJ)
78 done security: implement and use the new logical control mechanisms
79 done web: saving of named queries (GM)
80 done web: handle "not found", access and item page render errors better (RJ)
81 done web: fix double-submit by having new-item-submit redirect at end (RJ)