Skip to content

Commit 067aa03

Browse files
author
Richard Jones
committed
*** empty log message ***
1 parent 92a6ece commit 067aa03

File tree

2 files changed

+20
-5
lines changed

2 files changed

+20
-5
lines changed

doc/Makefile

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,25 @@
1-
PYTHON = /usr/bin/python2
21
STXTOHTML = rst2html
2+
STXTOHT = rst2ht.py
3+
WEBDIR = ../../htdocs/htdocs/doc-0.7
34

45
SOURCE = announcement.txt customizing.txt developers.txt FAQ.txt features.txt \
56
glossary.txt implementation.txt index.txt design.txt mysql.txt \
67
installation.txt upgrading.txt user_guide.txt admin_guide.txt \
78
postgresql.txt tracker_templates.txt whatsnew-0.7.txt
89

910
COMPILED := $(SOURCE:.txt=.html)
11+
WEBHT := $(SOURCE:.txt=.ht)
1012

11-
all: ${COMPILED}
13+
all: ${COMPILED} ${WEBHT}
14+
15+
website: ${WEBHT}
16+
mv *.ht ${WEBDIR}
1217

1318
%.html: %.txt
1419
${STXTOHTML} --report=warning -d $< $@
1520

21+
%.ht: %.txt
22+
${STXTOHT} --report=warning -d $< $@
23+
1624
clean:
1725
rm -f ${COMPILED}

doc/customizing.txt

Lines changed: 10 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
Customising Roundup
33
===================
44

5-
:Version: $Revision: 1.135 $
5+
:Version: $Revision: 1.135.2.1 $
66

77
.. This document borrows from the ZopeBook section on ZPT. The original is at:
88
http://www.zope.org/Documentation/Books/ZopeBook/current/ZPT.stx
@@ -3464,12 +3464,19 @@ resolved. To achieve this:
34643464
example, the existing "Show All" link in the "page" template (in the
34653465
tracker's "html" directory) looks like this::
34663466

3467-
<a href="issue?:sort=-activity&:group=priority&:filter=status&:columns=id,activity,title,creator,assignedto,status&status=-1,1,2,3,4,5,6,7">Show All</a><br>
3467+
<a href="issue?:sort=-activity&:group=priority&:filter=status&
3468+
:columns=id,activity,title,creator,assignedto,status&
3469+
status=-1,1,2,3,4,5,6,7">Show All</a><br>
34683470

34693471
modify it to add the "blockers" info to the URL (note, both the
34703472
":filter" *and* "blockers" values must be specified)::
34713473

3472-
<a href="issue?:sort=-activity&:group=priority&:filter=status,blockers&blockers=-1&:columns=id,activity,title,creator,assignedto,status&status=-1,1,2,3,4,5,6,7">Show All</a><br>
3474+
<a href="issue?:sort=-activity&:group=priority&:filter=status,blockers&
3475+
blockers=-1&:columns=id,activity,title,creator,assignedto,status&
3476+
status=-1,1,2,3,4,5,6,7">Show All</a><br>
3477+
3478+
:Note: the above examples are line-wrapped on the trailing & and should
3479+
be unwrapped.
34733480

34743481
That's it. You should now be able to set blockers on your issues. Note
34753482
that if you want to know whether an issue has any other issues dependent

0 commit comments

Comments
 (0)