annotate doc/Makefile @ 1003:f89b8d32291b
Hack hack hack...
. Implemented security assertion idea punted to mailing list (pretty easy to
back out if someone comes up with a better idea) so editing "my details"
works again. Rationalised and cleaned up the actions in any case.
. fixed some more display issues (stuff appearing when it should and shouldn't)
. trying a nicer colouring scheme for the top level page
. handle no grouping being specified
. fixed journaltag so the logged-in user is journalled, not admin!
| author |
Richard Jones <richard@users.sourceforge.net> |
| date |
Sun, 01 Sep 2002 12:18:41 +0000 |
| parents |
f36ffa50374f |
| children |
d870139aeb5c |
| rev |
line source |
798
Richard Jones <richard@users.sourceforge.net>
parents:
diff
changeset
|
1 PYTHON = /usr/bin/python2
|
Richard Jones <richard@users.sourceforge.net>
parents:
diff
changeset
|
2 STXTOHTML = -c "from docutils.core import publish;publish(writer_name='html')"
|
Richard Jones <richard@users.sourceforge.net>
parents:
diff
changeset
|
3
|
Richard Jones <richard@users.sourceforge.net>
parents:
diff
changeset
|
4 SOURCE = announcement.txt customizing.txt developers.txt FAQ.txt features.txt \
|
Richard Jones <richard@users.sourceforge.net>
parents:
diff
changeset
|
5 getting_started.txt glossary.txt implementation.txt index.txt \
|
Richard Jones <richard@users.sourceforge.net>
parents:
diff
changeset
|
6 installation.txt security.txt upgrading.txt user_guide.txt
|
Richard Jones <richard@users.sourceforge.net>
parents:
diff
changeset
|
7
|
Richard Jones <richard@users.sourceforge.net>
parents:
diff
changeset
|
8 COMPILED := $(SOURCE:.txt=.html)
|
Richard Jones <richard@users.sourceforge.net>
parents:
diff
changeset
|
9
|
Richard Jones <richard@users.sourceforge.net>
parents:
diff
changeset
|
10 all: ${COMPILED}
|
Richard Jones <richard@users.sourceforge.net>
parents:
diff
changeset
|
11
|
Richard Jones <richard@users.sourceforge.net>
parents:
diff
changeset
|
12 %.html: %.txt
|
|
979
|
13 ${PYTHON} ${STXTOHTML} --report=warning -d $< $@
|
798
Richard Jones <richard@users.sourceforge.net>
parents:
diff
changeset
|
14
|