Skip to content

Commit bcb107f

Browse files
author
Richard Jones
committed
merge from HEAD
1 parent 0d46ecf commit bcb107f

File tree

3 files changed

+7
-3
lines changed

3 files changed

+7
-3
lines changed

doc/customizing.txt

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
Customising Roundup
33
===================
44

5-
:Version: $Revision: 1.161.2.18 $
5+
:Version: $Revision: 1.161.2.19 $
66

77
.. This document borrows from the ZopeBook section on ZPT. The original is at:
88
http://www.zope.org/Documentation/Books/ZopeBook/current/ZPT.stx
@@ -2676,6 +2676,10 @@ This example shows how to add a simple field (a due date) to the default
26762676
classic schema. It does not add any additional behaviour, such as enforcing
26772677
the due date, or causing automatic actions to fire if the due date passes.
26782678

2679+
You add new fields by editing the ``schema.py`` file in you tracker's home.
2680+
Schema changes are automatically applied to the database on the next
2681+
tracker access (note that roundup-server would need to be restarted as it
2682+
caches the schema).
26792683

26802684
1. modify the schema::
26812685

templates/classic/html/_generic.index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@
3838
</tal:block>
3939
<form onSubmit="return submit_once()" method="POST"
4040
tal:attributes="action context/designator">
41-
<textarea rows="15" cols="60" name="rows" tal:content="context/csv"></textarea>
41+
<textarea rows="15" style="width:90%" name="rows" tal:content="context/csv"></textarea>
4242
<br>
4343
<input type="hidden" name="@action" value="editCSV">
4444
<input type="submit" value="Edit Items" i18n:attributes="value">

templates/minimal/html/_generic.index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@
3838
</tal:block>
3939
<form onSubmit="return submit_once()" method="POST"
4040
tal:attributes="action context/designator">
41-
<textarea rows="15" cols="60" name="rows" tal:content="context/csv"></textarea>
41+
<textarea rows="15" style="width:90%" name="rows" tal:content="context/csv"></textarea>
4242
<br>
4343
<input type="hidden" name="@action" value="editCSV">
4444
<input type="submit" value="Edit Items" i18n:attributes="value">

0 commit comments

Comments
 (0)