Mercurial > p > roundup > code
annotate doc/Makefile @ 4483:22bc0426e348
Second patch from issue2550688 -- with some changes:
- password.py now has a second class JournalPassword used for journal
storage. We have some backends that directly store serialized python
objects. Also when reading from the journal some backends expected the
string read to be usable as a parameter to a Password constructor.
This now calls a JournalPassword constructor in all these cases.
The new JournalPassword just keeps the scheme and has an empty
password.
- some factoring, move redundant implementation of "history" from
rdbms_common and back_anydbm to hyperdb.
| author | Ralf Schlatterbeck <schlatterbeck@users.sourceforge.net> |
|---|---|
| date | Thu, 14 Apr 2011 15:42:41 +0000 |
| parents | 6ec048310de7 |
| children | b59ba4dda623 |
| 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 |
| 2409 | 2 STXTOHT = rst2ht.py |
|
3526
9b99fff18683
*** empty log message ***
Richard Jones <richard@users.sourceforge.net>
parents:
2910
diff
changeset
|
3 WEBDIR = ../../htdocs/htdocs/doc-1.0 |
| 798 | 4 |
| 5 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
|
6 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
|
7 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
|
8 postgresql.txt tracker_templates.txt xmlrpc.txt |
| 798 | 9 |
| 10 COMPILED := $(SOURCE:.txt=.html) | |
| 2409 | 11 WEBHT := $(SOURCE:.txt=.ht) |
| 798 | 12 |
|
3950
257b4eab3bb2
Documentation for the XML-RPC interface
Justus Pendleton <jpend@users.sourceforge.net>
parents:
3949
diff
changeset
|
13 all: html ht |
|
3949
29dfb873b32e
Small documentation cleanup
Justus Pendleton <jpend@users.sourceforge.net>
parents:
3756
diff
changeset
|
14 html: ${COMPILED} |
|
29dfb873b32e
Small documentation cleanup
Justus Pendleton <jpend@users.sourceforge.net>
parents:
3756
diff
changeset
|
15 ht: ${WEBHT} |
| 2409 | 16 |
| 17 website: ${WEBHT} | |
| 18 cp *.ht ${WEBDIR} | |
|
3756
068b3d7d4279
images for user guide
Richard Jones <richard@users.sourceforge.net>
parents:
3650
diff
changeset
|
19 cp -r images ${WEBDIR} |
| 798 | 20 |
| 21 %.html: %.txt | |
|
1304
61ad556cfc8d
working toward 0.5.2 release
Richard Jones <richard@users.sourceforge.net>
parents:
1249
diff
changeset
|
22 ${STXTOHTML} --report=warning -d $< $@ |
| 798 | 23 |
| 2409 | 24 %.ht: %.txt |
| 25 ${STXTOHT} --report=warning -d $< $@ | |
| 26 | |
| 1091 | 27 clean: |
| 28 rm -f ${COMPILED} |
