Mercurial > p > roundup > code
view doc/Makefile @ 902:b0d3d3535998
Bugger it. Here's the current shape of the new security implementation.
Still to do:
. call the security funcs from cgi and mailgw
. change shipped templates to include correct initialisation and remove
the old config vars
... that seems like a lot. The bulk of the work has been done though. Honest :)
| author | Richard Jones <richard@users.sourceforge.net> |
|---|---|
| date | Thu, 25 Jul 2002 07:14:06 +0000 |
| parents | faf164ab8ed9 |
| children | f36ffa50374f |
line wrap: on
line source
PYTHON = /usr/bin/python2 STXTOHTML = -c "from docutils.core import publish;publish(writer_name='html')" SOURCE = announcement.txt customizing.txt developers.txt FAQ.txt features.txt \ getting_started.txt glossary.txt implementation.txt index.txt \ installation.txt security.txt upgrading.txt user_guide.txt COMPILED := $(SOURCE:.txt=.html) all: ${COMPILED} %.html: %.txt ${PYTHON} ${STXTOHTML} -d $< $@
