Mercurial > p > roundup > code
annotate doc/Makefile @ 2077:3e0961d6d44d
Added the "actor" property.
Metakit backend not done (still not confident I know how it's supposed
to work ;)
Currently it will come up as NULL in the RDBMS backends for older items.
The *dbm backends will look up the journal. I hope to remedy the former
before 0.7's release.
Fixed a bunch of migration issues in the rdbms backends while I was at it
(index changes for key prop changes) and simplified the class table update
code for RDBMSes that have "alter table" in their command set (ie. not
sqlite) ... migration from "version 1" to "version 2" still hasn't
actually been tested yet though.
| author | Richard Jones <richard@users.sourceforge.net> |
|---|---|
| date | Mon, 15 Mar 2004 05:50:20 +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} |
