diff doc/customizing.txt @ 2409:096063697f77

merge
author Richard Jones <richard@users.sourceforge.net>
date Wed, 09 Jun 2004 00:25:32 +0000
parents fa50e1347397
children 38166eb3100f
line wrap: on
line diff
--- a/doc/customizing.txt	Tue Jun 08 23:43:44 2004 +0000
+++ b/doc/customizing.txt	Wed Jun 09 00:25:32 2004 +0000
@@ -2,7 +2,7 @@
 Customising Roundup
 ===================
 
-:Version: $Revision: 1.137 $
+:Version: $Revision: 1.138 $
 
 .. This document borrows from the ZopeBook section on ZPT. The original is at:
    http://www.zope.org/Documentation/Books/ZopeBook/current/ZPT.stx
@@ -3503,12 +3503,19 @@
    example, the existing "Show All" link in the "page" template (in the
    tracker's "html" directory) looks like this::
 
-     <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>
+     <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>
 
    modify it to add the "blockers" info to the URL (note, both the
    ":filter" *and* "blockers" values must be specified)::
 
-     <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>
+     <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>
+
+   :Note: the above examples are line-wrapped on the trailing & and should
+          be unwrapped.
 
 That's it. You should now be able to set blockers on your issues. Note
 that if you want to know whether an issue has any other issues dependent

Roundup Issue Tracker: http://roundup-tracker.org/