Code

templating redesign
[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: write a backend for gadfly
12 pending hyperdb: range searching of values (dates in particular)
13         - filter specifies {property: (comparison function, value)}
14           comparison functions: lt, le, eq, ge, gt. eq and
15           [value, value, ...] implies "in"
16 pending hyperdb: make creator, creation and activity available pre-commit
17 pending hyperdb: migrate "id" property to be Number type
18 pending hyperdb: allow classes to define their ordering (properties, asc/desc)
19 pending instance: including much simpler upgrade path and the use of
20                   non-Python configuration files (ConfigParser)
21 pending instance: split instance.open() into open() and login()
22 pending instance: rename to "instance" to "tracker"
23 pending mailgw: allow commands (feature request #556996)
24                 like "help", "dump issue123" (would send all info about
25                 issue123, including a digest of all messages, but probably
26                 not all files...), "list issue", ...
27 pending mailgw: Allow multiple email addresses at one gw with different default
28                 classes and property values (possibly through command-line
29                 args to the mailgw as invoked in the mail delivery "aliases"
30                 file) eg:
31                   roundup: "|roundup-mailgw /instances/dev"
32                   vmbugs: "|roundup-mailgw /instances/dev component=voicemail"
33 pending project: switch to a Roundup instance for Roundup bug/feature tracking
34 pending security: at least an LDAP user database implementation
35 pending security: authenticate over a secure connection
36 pending security: use digital signatures in mailgw
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: Re-enable link backrefs from messages (feature request #568714)
41 pending web: fix double-submit by having new-item-submit redirect at end
42 pending web: Quick help links next to the property labels giving a
43              description of the property. Combine with help for the actual
44              form element too, eg. how to use the nosy list edit box.
45 pending web: clicking on a group header should filter for that type of entry
46 pending web: have the page layout (header/footer) be templatable
47 pending web: have index page handle mid-page errors better so header and
48              footer are still visible
49 pending web: re-work cgi interface to abstract out the explicit "issue"
50              interface
52 ongoing  any bugs
54 done hyperdb: full-text search also search certain String properties (RJ)
55 done hyperdb: further split the *dbm backends from the core code, allowing
56               easier non-dict-like backends (eg metakit, RDB) (RJ)
57 done hyperdb: fix the journal bloat (RJ)
58 done hyperdb: add Boolean and Number types (GM)
59 done hyperdb: update design document (RJ)
60 done hyperdb: entire database export and import (incl files) (RJ)
61 done mailgw: better help message (feature request #558562) (RJ)
62 done security: add info from doc/security.txt to design doc (RJ)
63 done security: switch to sessions for web authentication (RJ)
64 done security: implement and use the new logical control mechanisms
65 done web: saving of named queries (GM)
66 done web: handle "not found", access and item page render errors better (RJ)