view doc/Makefile @ 4310:8e0d350ce644

Proper handling of 'Create' permissions in both mail gateway... ...(earlier commit 2009-12-07 00:13:27!richard@users.sourceforge.net by Richard) and web interface, this used to check 'Edit' permission previously. See http://thread.gmane.org/gmane.comp.bug-tracking.roundup.devel/5133 Add regression tests for proper handling of 'Create' and 'Edit' permissions.
author Ralf Schlatterbeck <schlatterbeck@users.sourceforge.net>
date Mon, 21 Dec 2009 12:00:57 +0000
parents 257b4eab3bb2
children 6ec048310de7
line wrap: on
line source

STXTOHTML = rst2html
STXTOHT = rst2ht.py
WEBDIR = ../../htdocs/htdocs/doc-1.0

SOURCE = announcement.txt customizing.txt developers.txt FAQ.txt features.txt \
    glossary.txt implementation.txt index.txt design.txt mysql.txt \
    installation.txt upgrading.txt user_guide.txt admin_guide.txt \
	postgresql.txt tracker_templates.txt xmlrpc.txt

COMPILED := $(SOURCE:.txt=.html)
WEBHT := $(SOURCE:.txt=.ht)

all: html ht
html: ${COMPILED}
ht: ${WEBHT}

website: ${WEBHT}
	cp *.ht ${WEBDIR}
	cp -r images ${WEBDIR}

%.html: %.txt
	${STXTOHTML} --report=warning -d $< $@

%.ht: %.txt
	${STXTOHT} --report=warning -d $< $@

clean:
	rm -f ${COMPILED}

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