annotate doc/Makefile @ 3696:790363e96852

Sorting/grouping by multiple properties. - Implement sorting/grouping by multiple properties for the web interface. I'm now using @sort0/@sortdir0,@sort1/@sortdir1,... and @group0/@groupdir0,... when generating URLs from a search template. These are converted to a list internally. When saving URLs (e.g. when storing queries) I'm using @sort=prop1,prop2,... and @group=... with optional '-' prepended to individual props. This means saved URLs are backward compatible with existing trackers (and yes, this was a design goal). I need the clumsy version with @sort0,@sort1 etc, because I'm currently using several selectors and checkboxes (as the classic template does, too). I don't think there is a way around that in HTML? - Updated (hopefully all) documentation to reflect the new URL format and the consequences in the web-interface. - I've set the number of sort/group properties in the classic template to two -- this can easily be reverted by changing n_sort to 1. Richard, would you look over these changes? I've set a tag before and (will set) after commit, so that it would be easy to merge out. Don't be too scared about the size of the change, most is documentation, the guts are in cgi/templating.py and small changes in the classic template.
author Ralf Schlatterbeck <schlatterbeck@users.sourceforge.net>
date Wed, 30 Aug 2006 20:28:26 +0000
parents 77e067e64035
children 068b3d7d4279
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
3650
77e067e64035 copy over status/priority descriptions from old overview doc
Richard Jones <richard@users.sourceforge.net>
parents: 3526
diff changeset
1 STXTOHTML = rst2html
2409
Richard Jones <richard@users.sourceforge.net>
parents: 2138
diff changeset
2 STXTOHT = rst2ht.py
3526
9b99fff18683 *** empty log message ***
Richard Jones <richard@users.sourceforge.net>
parents: 2910
diff changeset
3 WEBDIR = ../../htdocs/htdocs/doc-1.0
798
faf164ab8ed9 Docco changes.
Richard Jones <richard@users.sourceforge.net>
parents:
diff changeset
4
faf164ab8ed9 Docco changes.
Richard Jones <richard@users.sourceforge.net>
parents:
diff changeset
5 SOURCE = announcement.txt customizing.txt developers.txt FAQ.txt features.txt \
1839
06f5b36b201b Fix a couple of failures in mysql backend unit tests.
Richard Jones <richard@users.sourceforge.net>
parents: 1651
diff changeset
6 glossary.txt implementation.txt index.txt design.txt mysql.txt \
2003
a291bf753037 maintenance -> admin guide
Richard Jones <richard@users.sourceforge.net>
parents: 1875
diff changeset
7 installation.txt upgrading.txt user_guide.txt admin_guide.txt \
3526
9b99fff18683 *** empty log message ***
Richard Jones <richard@users.sourceforge.net>
parents: 2910
diff changeset
8 postgresql.txt tracker_templates.txt
798
faf164ab8ed9 Docco changes.
Richard Jones <richard@users.sourceforge.net>
parents:
diff changeset
9
faf164ab8ed9 Docco changes.
Richard Jones <richard@users.sourceforge.net>
parents:
diff changeset
10 COMPILED := $(SOURCE:.txt=.html)
2409
Richard Jones <richard@users.sourceforge.net>
parents: 2138
diff changeset
11 WEBHT := $(SOURCE:.txt=.ht)
798
faf164ab8ed9 Docco changes.
Richard Jones <richard@users.sourceforge.net>
parents:
diff changeset
12
2409
Richard Jones <richard@users.sourceforge.net>
parents: 2138
diff changeset
13 all: ${COMPILED} ${WEBHT}
Richard Jones <richard@users.sourceforge.net>
parents: 2138
diff changeset
14
Richard Jones <richard@users.sourceforge.net>
parents: 2138
diff changeset
15 website: ${WEBHT}
Richard Jones <richard@users.sourceforge.net>
parents: 2138
diff changeset
16 cp *.ht ${WEBDIR}
798
faf164ab8ed9 Docco changes.
Richard Jones <richard@users.sourceforge.net>
parents:
diff changeset
17
faf164ab8ed9 Docco changes.
Richard Jones <richard@users.sourceforge.net>
parents:
diff changeset
18 %.html: %.txt
1304
61ad556cfc8d working toward 0.5.2 release
Richard Jones <richard@users.sourceforge.net>
parents: 1249
diff changeset
19 ${STXTOHTML} --report=warning -d $< $@
798
faf164ab8ed9 Docco changes.
Richard Jones <richard@users.sourceforge.net>
parents:
diff changeset
20
2409
Richard Jones <richard@users.sourceforge.net>
parents: 2138
diff changeset
21 %.ht: %.txt
Richard Jones <richard@users.sourceforge.net>
parents: 2138
diff changeset
22 ${STXTOHT} --report=warning -d $< $@
Richard Jones <richard@users.sourceforge.net>
parents: 2138
diff changeset
23
1091
d870139aeb5c more doc
Richard Jones <richard@users.sourceforge.net>
parents: 979
diff changeset
24 clean:
d870139aeb5c more doc
Richard Jones <richard@users.sourceforge.net>
parents: 979
diff changeset
25 rm -f ${COMPILED}

Roundup Issue Tracker: http://roundup-tracker.org/