Commit 41e3d85b authored by jocuri%softhome.net's avatar jocuri%softhome.net

Patch for bug 328089: make number of columns in additional comments field…

Patch for bug 328089: make number of columns in additional comments field identical with constants.COMMENT_COLS; patch by Rudolf Ramler <rudolf.ramler@scch.at>, r=vladd, a=justdave.
parent c128d5e1
...@@ -242,7 +242,7 @@ ...@@ -242,7 +242,7 @@
id = 'comment' id = 'comment'
minrows = 6 minrows = 6
maxrows = 15 maxrows = 15
cols = 80 cols = constants.COMMENT_COLS
wrap = 'soft' wrap = 'soft'
%] %]
</td> </td>
......
...@@ -336,7 +336,7 @@ function PutDescription() { ...@@ -336,7 +336,7 @@ function PutDescription() {
[% INCLUDE global/textarea.html.tmpl [% INCLUDE global/textarea.html.tmpl
name = 'comment' name = 'comment'
minrows = 6 minrows = 6
cols = 80 cols = constants.COMMENT_COLS
%] %]
<p> <p>
Expand on the Summary. Please be Expand on the Summary. Please be
...@@ -388,7 +388,7 @@ function PutDescription() { ...@@ -388,7 +388,7 @@ function PutDescription() {
[% INCLUDE global/textarea.html.tmpl [% INCLUDE global/textarea.html.tmpl
name = 'reproduce_steps' name = 'reproduce_steps'
minrows = 4 minrows = 4
cols = 80 cols = constants.COMMENT_COLS
defaultcontent = "1.\n2.\n3." defaultcontent = "1.\n2.\n3."
%] %]
<p> <p>
...@@ -406,7 +406,7 @@ function PutDescription() { ...@@ -406,7 +406,7 @@ function PutDescription() {
[% INCLUDE global/textarea.html.tmpl [% INCLUDE global/textarea.html.tmpl
name = 'actual_results' name = 'actual_results'
minrows = 4 minrows = 4
cols = 80 cols = constants.COMMENT_COLS
%] %]
<p> <p>
What happened after you performed the steps above? What happened after you performed the steps above?
...@@ -422,7 +422,7 @@ function PutDescription() { ...@@ -422,7 +422,7 @@ function PutDescription() {
[% INCLUDE global/textarea.html.tmpl [% INCLUDE global/textarea.html.tmpl
name = 'expected_results' name = 'expected_results'
minrows = 4 minrows = 4
cols = 80 cols = constants.COMMENT_COLS
%] %]
<p> <p>
What should the software have done instead? What should the software have done instead?
...@@ -438,7 +438,7 @@ function PutDescription() { ...@@ -438,7 +438,7 @@ function PutDescription() {
[% INCLUDE global/textarea.html.tmpl [% INCLUDE global/textarea.html.tmpl
name = 'additional_info' name = 'additional_info'
minrows = 8 minrows = 8
cols = 80 cols = constants.COMMENT_COLS
%] %]
<p> <p>
Add any additional information you feel may be Add any additional information you feel may be
......
...@@ -319,7 +319,7 @@ function set_assign_to() { ...@@ -319,7 +319,7 @@ function set_assign_to() {
name = 'comment' name = 'comment'
minrows = 10 minrows = 10
maxrows = 25 maxrows = 25
cols = 80 cols = constants.COMMENT_COLS
defaultcontent = defaultcontent defaultcontent = defaultcontent
%] %]
<br> <br>
......
...@@ -572,7 +572,7 @@ ...@@ -572,7 +572,7 @@
id = 'comment' id = 'comment'
minrows = 10 minrows = 10
maxrows = 25 maxrows = 25
cols = 80 cols = constants.COMMENT_COLS
accesskey = 'c' accesskey = 'c'
%] %]
......
...@@ -180,6 +180,8 @@ ...@@ -180,6 +180,8 @@
whine reports whine reports
[% ELSIF object == "sanity_check" %] [% ELSIF object == "sanity_check" %]
a sanity check a sanity check
[% ELSIF object == "settings" %]
settings
[% ELSIF object == "sudo_session" %] [% ELSIF object == "sudo_session" %]
an sudo session an sudo session
[% ELSIF object == "timetracking_summaries" %] [% ELSIF object == "timetracking_summaries" %]
......
...@@ -214,7 +214,7 @@ ...@@ -214,7 +214,7 @@
id = 'comment' id = 'comment'
minrows = 5 minrows = 5
maxrows = 25 maxrows = 25
cols = 80 cols = constants.COMMENT_COLS
%]<br> %]<br>
[% IF groups.size > 0 %] [% IF groups.size > 0 %]
......
...@@ -33,7 +33,7 @@ ...@@ -33,7 +33,7 @@
[% INCLUDE global/textarea.html.tmpl [% INCLUDE global/textarea.html.tmpl
name = 'text' name = 'text'
minrows = 20 minrows = 20
cols = 80 cols = constants.COMMENT_COLS
%] %]
<br> <br>
<input type="hidden" name="id" value="linked.html"> <input type="hidden" name="id" value="linked.html">
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment