Mercurial > p > roundup > code
comparison doc/FAQ.txt @ 551:fa23796baf7b
moving FAQ.txt to doc directory
| author | Richard Jones <richard@users.sourceforge.net> |
|---|---|
| date | Thu, 17 Jan 2002 22:08:45 +0000 |
| parents | |
| children | dbcd04d4dd92 |
comparison
equal
deleted
inserted
replaced
| 550:2be5ee7ce936 | 551:fa23796baf7b |
|---|---|
| 1 2002-01-17 eg | |
| 2 | |
| 3 NOTE: This is just a grabbag, most of this should go into | |
| 4 documentation. | |
| 5 | |
| 6 Changing HTML layout | |
| 7 | |
| 8 Note changes to the files in html take place immediatly without | |
| 9 restart, even when running toundup-server. | |
| 10 | |
| 11 Q: Displaying messages not only the summary | |
| 12 | |
| 13 A: in instance/html/msg.index | |
| 14 | |
| 15 change | |
| 16 <td><display call="plain('summary')"></td> | |
| 17 to | |
| 18 <td><pre><display call="plain('content')"></pre></td> | |
| 19 | |
| 20 displays the whole message not only the first line and <pre> | |
| 21 prevents the browser from reformatting. | |
| 22 | |
| 23 Q: Getting the nosy list picker instead of textfield. | |
| 24 | |
| 25 In classic template there is plenty of spcae below the text field. | |
| 26 | |
| 27 A: in instance/html/issue.item | |
| 28 | |
| 29 At the file top set border=1 to see cell boundaries. | |
| 30 | |
| 31 replace | |
| 32 <td class="form-text"><display call="field('nosy',size=20)"></td> | |
| 33 by | |
| 34 <td rowspan=5 class="form-text"><display call="menu('nosy',height=10)"></td> | |
| 35 | |
| 36 remove the last cell in the next four rows, either by deleting a cell | |
| 37 or by reducing colspan. | |
| 38 |
