annotate doc/Makefile @ 928:23c9d4f86380

Added the web access and email access permissions.. ...so people can restrict access to users who register through the email interface (for example). Also added "security" command to the roundup-admin interface to display the Role/Permission config for an instance.
author Richard Jones <richard@users.sourceforge.net>
date Thu, 01 Aug 2002 00:56:22 +0000
parents b0d3d3535998
children f36ffa50374f
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
798
faf164ab8ed9 Docco changes.
Richard Jones <richard@users.sourceforge.net>
parents:
diff changeset
1 PYTHON = /usr/bin/python2
faf164ab8ed9 Docco changes.
Richard Jones <richard@users.sourceforge.net>
parents:
diff changeset
2 STXTOHTML = -c "from docutils.core import publish;publish(writer_name='html')"
faf164ab8ed9 Docco changes.
Richard Jones <richard@users.sourceforge.net>
parents:
diff changeset
3
faf164ab8ed9 Docco changes.
Richard Jones <richard@users.sourceforge.net>
parents:
diff changeset
4 SOURCE = announcement.txt customizing.txt developers.txt FAQ.txt features.txt \
faf164ab8ed9 Docco changes.
Richard Jones <richard@users.sourceforge.net>
parents:
diff changeset
5 getting_started.txt glossary.txt implementation.txt index.txt \
faf164ab8ed9 Docco changes.
Richard Jones <richard@users.sourceforge.net>
parents:
diff changeset
6 installation.txt security.txt upgrading.txt user_guide.txt
faf164ab8ed9 Docco changes.
Richard Jones <richard@users.sourceforge.net>
parents:
diff changeset
7
faf164ab8ed9 Docco changes.
Richard Jones <richard@users.sourceforge.net>
parents:
diff changeset
8 COMPILED := $(SOURCE:.txt=.html)
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 all: ${COMPILED}
faf164ab8ed9 Docco changes.
Richard Jones <richard@users.sourceforge.net>
parents:
diff changeset
11
faf164ab8ed9 Docco changes.
Richard Jones <richard@users.sourceforge.net>
parents:
diff changeset
12 %.html: %.txt
902
b0d3d3535998 Bugger it. Here's the current shape of the new security implementation.
Richard Jones <richard@users.sourceforge.net>
parents: 798
diff changeset
13 ${PYTHON} ${STXTOHTML} -d $< $@
798
faf164ab8ed9 Docco changes.
Richard Jones <richard@users.sourceforge.net>
parents:
diff changeset
14

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