Mercurial > p > roundup > code
comparison doc/customizing.txt @ 1133:36ec30d286ea
Cleaned up CHANGES/TODO
Added try/finally to enforce db.close()
Changed default classic issue item display to only show message summary
| author | Richard Jones <richard@users.sourceforge.net> |
|---|---|
| date | Fri, 13 Sep 2002 00:08:44 +0000 |
| parents | 3c1533be3822 |
| children | 7e193bbda38e |
comparison
equal
deleted
inserted
replaced
| 1132:77581d5309f2 | 1133:36ec30d286ea |
|---|---|
| 1 =================== | 1 =================== |
| 2 Customising Roundup | 2 Customising Roundup |
| 3 =================== | 3 =================== |
| 4 | 4 |
| 5 :Version: $Revision: 1.31 $ | 5 :Version: $Revision: 1.32 $ |
| 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:: |
| 1755 </td> | 1755 </td> |
| 1756 | 1756 |
| 1757 which displays only the allowed status to transition to. | 1757 which displays only the allowed status to transition to. |
| 1758 | 1758 |
| 1759 | 1759 |
| 1760 Displaying entire message contents in the issue display | |
| 1761 ------------------------------------------------------- | |
| 1762 | |
| 1763 Alter the issue.item template section for messages to:: | |
| 1764 | |
| 1765 <table class="messages" tal:condition="context/messages"> | |
| 1766 <tr><th colspan=3 class="header">Messages</th></tr> | |
| 1767 <tal:block tal:repeat="msg context/messages/reverse"> | |
| 1768 <tr> | |
| 1769 <th><a tal:attributes="href string:msg${msg/id}" | |
| 1770 tal:content="string:msg${msg/id}"></a></th> | |
| 1771 <th tal:content="string:Author: ${msg/author}">author</th> | |
| 1772 <th tal:content="string:Date: ${msg/date}">date</th> | |
| 1773 </tr> | |
| 1774 <tr> | |
| 1775 <td colspan="3" class="content"> | |
| 1776 <pre tal:content="msg/content">content</pre> | |
| 1777 </td> | |
| 1778 </tr> | |
| 1779 </tal:block> | |
| 1780 </table> | |
| 1781 | |
| 1760 ------------------- | 1782 ------------------- |
| 1761 | 1783 |
| 1762 Back to `Table of Contents`_ | 1784 Back to `Table of Contents`_ |
| 1763 | 1785 |
| 1764 .. _`Table of Contents`: index.html | 1786 .. _`Table of Contents`: index.html |
