Mercurial > p > roundup > code
comparison doc/customizing.txt @ 1560:3f2e516b8de3
doc fixes
| author | Richard Jones <richard@users.sourceforge.net> |
|---|---|
| date | Wed, 26 Mar 2003 06:17:16 +0000 |
| parents | 6bfb9c9de03c |
| children | d181aff91b40 |
comparison
equal
deleted
inserted
replaced
| 1559:6bfb9c9de03c | 1560:3f2e516b8de3 |
|---|---|
| 1 =================== | 1 =================== |
| 2 Customising Roundup | 2 Customising Roundup |
| 3 =================== | 3 =================== |
| 4 | 4 |
| 5 :Version: $Revision: 1.79 $ | 5 :Version: $Revision: 1.80 $ |
| 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:: |
| 118 | 118 |
| 119 **EMAIL_FROM_TAG** - ``''`` | 119 **EMAIL_FROM_TAG** - ``''`` |
| 120 Additional text to include in the "name" part of the ``From:`` address used | 120 Additional text to include in the "name" part of the ``From:`` address used |
| 121 in nosy messages. If the sending user is "Foo Bar", the ``From:`` line is | 121 in nosy messages. If the sending user is "Foo Bar", the ``From:`` line is |
| 122 usually:: | 122 usually:: |
| 123 "Foo Bar" <issue_tracker@tracker.example> | 123 |
| 124 "Foo Bar" <issue_tracker@tracker.example> | |
| 124 | 125 |
| 125 the EMAIL_FROM_TAG goes inside the "Foo Bar" quotes like so:: | 126 the EMAIL_FROM_TAG goes inside the "Foo Bar" quotes like so:: |
| 126 | 127 |
| 127 "Foo Bar EMAIL_FROM_TAG" <issue_tracker@tracker.example> | 128 "Foo Bar EMAIL_FROM_TAG" <issue_tracker@tracker.example> |
| 128 | 129 |
| 2916 blockers=Multilink("issue"), | 2917 blockers=Multilink("issue"), |
| 2917 assignedto=Link("user"), topic=Multilink("keyword"), | 2918 assignedto=Link("user"), topic=Multilink("keyword"), |
| 2918 priority=Link("priority"), status=Link("status")) | 2919 priority=Link("priority"), status=Link("status")) |
| 2919 | 2920 |
| 2920 2. Add the new "blockers" property to the issue.item edit page, using | 2921 2. Add the new "blockers" property to the issue.item edit page, using |
| 2921 something like: | 2922 something like:: |
| 2922 | 2923 |
| 2923 <th nowrap>Waiting On</th> | 2924 <th nowrap>Waiting On</th> |
| 2924 <td> | 2925 <td> |
| 2925 <span tal:replace="structure python:context.blockers.field(showid=1, | 2926 <span tal:replace="structure python:context.blockers.field(showid=1, |
| 2926 size=20)" /> | 2927 size=20)" /> |
