Mercurial > p > roundup > code
annotate doc/Makefile @ 4652:dfbc0cfa9811
Add an interface to register clearCache callbacks in roundupdb.
Sometimes complicated computations may require an application cache.
This application can now register a callback to clear the application
cache, because roundup knows better when to clear it (usually when a
transaction ends, either with rollback or with commit). The interface
for this is currently considered experimental. The current interface
is registerClearCacheCallback(self, method, param) where method is
called with param as the only parameter.
| author | Ralf Schlatterbeck <rsc@runtux.com> |
|---|---|
| date | Fri, 17 Aug 2012 15:30:36 +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} |
