view doc/Makefile @ 3441:5791c9e6ab24

Fixes for SourceForge tracker items. - favicon.ico image may be changed with server config option (patch [SF#1355661]) - Password objects initialized from plaintext remember plaintext value (rfe [SF#1379447]) - use quoted printable encoding for nosy attachments that have MIME type 'text/plain' but contain 8-bit characters [SF#1381559]
author Alexander Smishlajev <a1s@users.sourceforge.net>
date Sun, 25 Dec 2005 16:24:11 +0000
parents 5c0e5abcb5e3
children 7a3e791b2b2b 9b99fff18683
line wrap: on
line source

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

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 whatsnew-0.8.txt

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

all: ${COMPILED} ${WEBHT}

website: ${WEBHT}
	cp *.ht ${WEBDIR}

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

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

clean:
	rm -f ${COMPILED}

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