Mercurial > p > roundup > code
comparison 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 |
comparison
equal
deleted
inserted
replaced
| 2405:1736886eefb3 | 2409:096063697f77 |
|---|---|
| 1 =================== | 1 =================== |
| 2 Customising Roundup | 2 Customising Roundup |
| 3 =================== | 3 =================== |
| 4 | 4 |
| 5 :Version: $Revision: 1.137 $ | 5 :Version: $Revision: 1.138 $ |
| 6 | 6 |
| 7 .. This document borrows from the ZopeBook section on ZPT. The original is at: | 7 .. This document borrows from the ZopeBook section on ZPT. The original is at: |
| 8 http://www.zope.org/Documentation/Books/ZopeBook/current/ZPT.stx | 8 http://www.zope.org/Documentation/Books/ZopeBook/current/ZPT.stx |
| 9 | 9 |
| 10 .. contents:: | 10 .. contents:: |
| 3501 URLs so they filter out issues with any blockers. You do this by | 3501 URLs so they filter out issues with any blockers. You do this by |
| 3502 adding an additional filter on "blockers" for the value "-1". For | 3502 adding an additional filter on "blockers" for the value "-1". For |
| 3503 example, the existing "Show All" link in the "page" template (in the | 3503 example, the existing "Show All" link in the "page" template (in the |
| 3504 tracker's "html" directory) looks like this:: | 3504 tracker's "html" directory) looks like this:: |
| 3505 | 3505 |
| 3506 <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> | 3506 <a href="issue?:sort=-activity&:group=priority&:filter=status& |
| 3507 :columns=id,activity,title,creator,assignedto,status& | |
| 3508 status=-1,1,2,3,4,5,6,7">Show All</a><br> | |
| 3507 | 3509 |
| 3508 modify it to add the "blockers" info to the URL (note, both the | 3510 modify it to add the "blockers" info to the URL (note, both the |
| 3509 ":filter" *and* "blockers" values must be specified):: | 3511 ":filter" *and* "blockers" values must be specified):: |
| 3510 | 3512 |
| 3511 <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> | 3513 <a href="issue?:sort=-activity&:group=priority&:filter=status,blockers& |
| 3514 blockers=-1&:columns=id,activity,title,creator,assignedto,status& | |
| 3515 status=-1,1,2,3,4,5,6,7">Show All</a><br> | |
| 3516 | |
| 3517 :Note: the above examples are line-wrapped on the trailing & and should | |
| 3518 be unwrapped. | |
| 3512 | 3519 |
| 3513 That's it. You should now be able to set blockers on your issues. Note | 3520 That's it. You should now be able to set blockers on your issues. Note |
| 3514 that if you want to know whether an issue has any other issues dependent | 3521 that if you want to know whether an issue has any other issues dependent |
| 3515 on it (i.e. it's in their blockers list) you can look at the journal | 3522 on it (i.e. it's in their blockers list) you can look at the journal |
| 3516 history at the bottom of the issue page - look for a "link" event to | 3523 history at the bottom of the issue page - look for a "link" event to |
