File tree Expand file tree Collapse file tree 1 file changed +38
-0
lines changed
Expand file tree Collapse file tree 1 file changed +38
-0
lines changed Original file line number Diff line number Diff line change 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+
You can’t perform that action at this time.
0 commit comments