Mercurial > p > roundup > code
annotate doc/Makefile @ 4437:261c9f913ff7
- Add explicit "Search" permissions, see Security Fix below.
- Security Fix: Add a check for search-permissions: now we allow
searching for properties only if the property is readable without a
check method or if an explicit search permission (see above unter
"Features) is given for the property. This fixes cases where a user
doesn't have access to a property but can deduce the content by
crafting a clever search, group or sort query.
see doc/upgrading.txt for how to fix your trackers!
| author | Ralf Schlatterbeck <schlatterbeck@users.sourceforge.net> |
|---|---|
| date | Tue, 19 Oct 2010 15:29:05 +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} |
