]> git.decadent.org.uk Git - maypole.git/blob - TODO
Admin
[maypole.git] / TODO
1 =head1 TODO List
2
3 =head2 Advanced searching
4
5 I'm already using AbstractSearch, so I need to put the operators as form
6 fields in the templates, then extract them again in the search method.
7 The code is almost there.
8
9 =head2 Ordering of columns
10
11 What order do the columns appear in the lists and edit boxes? It B<is>
12 already possible to customize this by overriding C<columns> in an
13 individual model class, but it might be better to do that in the config.
14
15 Excluding some columns from list display might be worth doing. Again, it
16 can be done in the templates, but might be better in config.
17
18 =head2 Pages with several ?(different kinds) of objects?
19
20 I don't know if this is actually a useful concept. Maybe someone will
21 find a case for it.
22
23 =head2 ACLs? Users? Last-updated?
24
25 Probably not. These are handled in subclasses
26
27 =head2 Error handling
28
29 When happens if authentication is denied, for instance? Currently we
30 just get an Apache 403.
31
32 =head2 Many-to-many relationships
33
34 Beers are on pumps in pubs. How do I say which pubs have what beers on
35 and vice versa? A multiple select seems the right way to do it from the
36 CGI point of view, so we need to do something with edit, create, search
37 and view pages to enable this. Maybe another C<related>-style hack
38 required.