Mercurial > p > roundup > code
view doc/Makefile @ 1055:cf72eae57a2c
Fixed instance installation
... moved the htmlbase module into templates and call it
<template>_htmlbase.py ... no more try/except in instance __init__!
Added :required to form handling.
Handle multiple values for single form items with decent error report.
| author | Richard Jones <richard@users.sourceforge.net> |
|---|---|
| date | Thu, 05 Sep 2002 23:39:14 +0000 |
| parents | f36ffa50374f |
| children | d870139aeb5c |
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} --report=warning -d $< $@
