Mercurial > p > roundup > code
annotate doc/Makefile @ 2089:93f03c6714d8
A few big changes in this commit:
1. The current indexer has been moved to backends/indexer_dbm in
anticipation of my writing an indexer_rdbms,
2. Changed indexer invocation during create / set to follow the pattern
set by the metakit backend, which was much cleaner, and
3. The "content" property of FileClass is now mutable in all but the
metakit backend.
Metakit needs to be changed to support the editing of "content". Hey, and
I learnt today that the metakit backend implements its own indexer. How
about that... :)
| author | Richard Jones <richard@users.sourceforge.net> |
|---|---|
| date | Fri, 19 Mar 2004 04:47:59 +0000 |
| parents | a291bf753037 |
| children | f01befe8a7fe |
| rev | line source |
|---|---|
| 798 | 1 PYTHON = /usr/bin/python2 |
| 1560 | 2 STXTOHTML = rst2html |
| 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 \ |
|
1875
3ffb7b56172a
*** empty log message ***
Richard Jones <richard@users.sourceforge.net>
parents:
1839
diff
changeset
|
7 postgresql.txt |
| 798 | 8 |
| 9 COMPILED := $(SOURCE:.txt=.html) | |
| 10 | |
| 11 all: ${COMPILED} | |
| 12 | |
| 13 %.html: %.txt | |
|
1304
61ad556cfc8d
working toward 0.5.2 release
Richard Jones <richard@users.sourceforge.net>
parents:
1249
diff
changeset
|
14 ${STXTOHTML} --report=warning -d $< $@ |
| 798 | 15 |
| 1091 | 16 clean: |
| 17 rm -f ${COMPILED} |
