Mercurial > p > roundup > code
annotate doc/Makefile @ 4651:beb8d43f4d9d
issue2550765: Don't show links in calendar that will fail. Found and fixed by Cédric Krier.
| author | Bernhard Reiter <bernhard@intevation.de> |
|---|---|
| date | Wed, 01 Aug 2012 08:49:41 +0200 |
| parents | b59ba4dda623 |
| children |
| rev | line source |
|---|---|
|
4325
6ec048310de7
add simple doc about translating customised tracker content
Richard Jones <richard@users.sourceforge.net>
parents:
3950
diff
changeset
|
1 STXTOHTML = rst2html.py |
|
3526
9b99fff18683
*** empty log message ***
Richard Jones <richard@users.sourceforge.net>
parents:
2910
diff
changeset
|
2 WEBDIR = ../../htdocs/htdocs/doc-1.0 |
| 798 | 3 |
| 4 SOURCE = announcement.txt customizing.txt developers.txt FAQ.txt features.txt \ | |
|
1839
06f5b36b201b
Fix a couple of failures in mysql backend unit tests.
Richard Jones <richard@users.sourceforge.net>
parents:
1651
diff
changeset
|
5 glossary.txt implementation.txt index.txt design.txt mysql.txt \ |
|
2003
a291bf753037
maintenance -> admin guide
Richard Jones <richard@users.sourceforge.net>
parents:
1875
diff
changeset
|
6 installation.txt upgrading.txt user_guide.txt admin_guide.txt \ |
|
3950
257b4eab3bb2
Documentation for the XML-RPC interface
Justus Pendleton <jpend@users.sourceforge.net>
parents:
3949
diff
changeset
|
7 postgresql.txt tracker_templates.txt xmlrpc.txt |
| 798 | 8 |
| 9 COMPILED := $(SOURCE:.txt=.html) | |
| 2409 | 10 WEBHT := $(SOURCE:.txt=.ht) |
| 798 | 11 |
|
4550
b59ba4dda623
remove old website HT file support; alter repository mentioned in developers doc
Richard Jones <richard@users.sourceforge.net>
parents:
4325
diff
changeset
|
12 all: html |
|
3949
29dfb873b32e
Small documentation cleanup
Justus Pendleton <jpend@users.sourceforge.net>
parents:
3756
diff
changeset
|
13 html: ${COMPILED} |
| 2409 | 14 |
| 15 website: ${WEBHT} | |
| 16 cp *.ht ${WEBDIR} | |
|
3756
068b3d7d4279
images for user guide
Richard Jones <richard@users.sourceforge.net>
parents:
3650
diff
changeset
|
17 cp -r images ${WEBDIR} |
| 798 | 18 |
| 19 %.html: %.txt | |
|
1304
61ad556cfc8d
working toward 0.5.2 release
Richard Jones <richard@users.sourceforge.net>
parents:
1249
diff
changeset
|
20 ${STXTOHTML} --report=warning -d $< $@ |
| 798 | 21 |
| 1091 | 22 clean: |
| 23 rm -f ${COMPILED} |
