summaryrefslogtreecommitdiffstats
path: root/template/en/default/list
diff options
context:
space:
mode:
authormyk%mozilla.org <>2002-05-22 02:53:03 +0200
committermyk%mozilla.org <>2002-05-22 02:53:03 +0200
commitf3b6e880a28c2f7fbe62702f5557f8b32fc10ca0 (patch)
treef9bfe5602af8c65ca6045dd499a48a474e8d9804 /template/en/default/list
parent58d6d1b7eaf00f9548a5d4bd188dfe65b32cb982 (diff)
downloadbugzilla-f3b6e880a28c2f7fbe62702f5557f8b32fc10ca0.tar.gz
bugzilla-f3b6e880a28c2f7fbe62702f5557f8b32fc10ca0.tar.xz
Fix for bug 47251: Make HTML output HTML 4.01 Transitional compliant.
Patch by mental <xor@ivwnet.com>. r=justdave,myk
Diffstat (limited to 'template/en/default/list')
-rw-r--r--template/en/default/list/edit-multiple.html.tmpl50
-rw-r--r--template/en/default/list/list-simple.html.tmpl2
-rw-r--r--template/en/default/list/list.html.tmpl8
-rw-r--r--template/en/default/list/quips.html.tmpl6
4 files changed, 33 insertions, 33 deletions
diff --git a/template/en/default/list/edit-multiple.html.tmpl b/template/en/default/list/edit-multiple.html.tmpl
index fb28845c5..eb8e759be 100644
--- a/template/en/default/list/edit-multiple.html.tmpl
+++ b/template/en/default/list/edit-multiple.html.tmpl
@@ -28,11 +28,11 @@
item.checked = value;
}
}
- document.write(' <input type="button" value="Uncheck All" onclick="SetCheckboxes(false);">');
- document.write(' <input type="button" value="Check All" onclick="SetCheckboxes(true);">');
+ document.write(' <input type="button" name="uncheck_all" value="Uncheck All" onclick="SetCheckboxes(false);">');
+ document.write(' <input type="button" name="check_all" value="Check All" onclick="SetCheckboxes(true);">');
</script>
-<hr />
+<hr>
<p><font size="-1">
To change multiple bugs:
@@ -162,24 +162,24 @@
<input type="hidden" name="multiupdate" value="Y">
-<label for="comment"><b>Additional Comments:</b></label><br />
-<textarea id="comment" name="comment" rows="5" cols="80" wrap="hard"></textarea><br />
+<label for="comment"><b>Additional Comments:</b></label><br>
+<textarea id="comment" name="comment" rows="5" cols="80" wrap="hard"></textarea><br>
[% IF groups.size > 0 %]
- <b>Groupset:</b><br />
+ <b>Groupset:</b><br>
<table border="1">
<tr>
- <th>Don't<br />change<br />this group<br />restriction</td>
- <th>Remove<br />bugs<br />from this<br />group</td>
- <th>Add<br />bugs<br />to this<br />group</td>
+ <th>Don&apos;t<br>change<br>this group<br>restriction</td>
+ <th>Remove<br>bugs<br>from this<br>group</td>
+ <th>Add<br>bugs<br>to this<br>group</td>
<th>Group Name:</td>
</tr>
[% FOREACH group = groups %]
<tr>
<td align="center">
- <input type="radio" name="bit-[% group.bit %]" value="-1" checked>
+ <input type="radio" name="bit-[% group.bit %]" value="-1" checked="checked">
</td>
<td align="center">
<input type="radio" name="bit-[% group.bit %]" value="0">
@@ -208,7 +208,7 @@
[% IF foundinactive %]
<font size="-1">(Note: Bugs may not be added to <strike>inactive
- groups</strike>, only removed.)</font><br />
+ groups</strike>, only removed.)</font><br>
[% END %]
[% END %]
@@ -216,33 +216,33 @@
[% knum = 0 %]
-<input id="knob-none" type="radio" name="knob" value="none" CHECKED>
-<label for="knob-none">Do nothing else</label><br />
+<input id="knob-none" type="radio" name="knob" value="none" checked="checked">
+<label for="knob-none">Do nothing else</label><br>
[% IF bugstatuses.size == 1 && bugstatuses.0 == unconfirmedstate %]
[% knum = knum + 1 %]
<input id="knob-confirm" type="radio" name="knob" value="confirm">
<label for="knob-confirm">
Confirm bugs (change status to <b>NEW</b>)
- </label><br />
+ </label><br>
[% END %]
[% knum = knum + 1 %]
<input id="knob-accept" type="radio" name="knob" value="accept">
<label for="knob-accept">
Accept bugs (change status to <b>ASSIGNED</b>)
-</label><br />
+</label><br>
[%# If all the bugs being changed are open, allow the user to close them. %]
[% IF !bugstatuses.containsany(closedstates) %]
[% knum = knum + 1 %]
<input id="knob-clearresolution" type="radio" name="knob" value="clearresolution">
- <label for="knob-clearresolution">Clear the resolution</label><br />
+ <label for="knob-clearresolution">Clear the resolution</label><br>
[% knum = knum + 1 %]
<input id="knob-resolve" type="radio" name="knob" value="resolve">
<label for="knob-resolve">
- Resolve bugs, changing <A HREF="bug_status.html">resolution</A> to
+ Resolve bugs, changing <a href="bug_status.html">resolution</a> to
</label>
<select name="resolution" onchange="document.forms.changeform.knob[[% knum %]].checked=true">
[% FOREACH resolution = resolutions %]
@@ -251,7 +251,7 @@
[% resolution FILTER html %]
</option>
[% END %]
- </select><br />
+ </select><br>
[% END %]
@@ -259,30 +259,30 @@
[% IF !bugstatuses.containsany(openstates) %]
[% knum = knum + 1 %]
<input id="knob-reopen" type="radio" name="knob" value="reopen">
- <label for="knob-reopen">Reopen bugs</label><br />
+ <label for="knob-reopen">Reopen bugs</label><br>
[% END %]
[% IF bugstatuses.size == 1 %]
[% IF bugstatuses.contains('RESOLVED') %]
[% knum = knum + 1 %]
<input id="knob-verify" type="radio" name="knob" value="verify">
- <label for="knob-verify">Mark bugs as <b>VERIFIED</b></label><br />
+ <label for="knob-verify">Mark bugs as <b>VERIFIED</b></label><br>
[% ELSIF bugstatuses.contains('VERIFIED') %]
[% knum = knum + 1 %]
<input id="knob-close" type="radio" name="knob" value="close">
- <label for="knob-close">Mark bugs as <b>CLOSED</b></label><br />
+ <label for="knob-close">Mark bugs as <b>CLOSED</b></label><br>
[% END %]
[% END %]
[% knum = knum + 1 %]
<input id="knob-reassign" type="radio" name="knob" value="reassign">
<label for="knob-reassign"><a href="bug_status.html#assigned_to">
- Reassign</A> bugs to
+ Reassign</a> bugs to
</label>
<input name="assigned_to"
value="[% user.login FILTER html %]"
onchange="document.forms.changeform.knob[[% knum %]].checked = true;"
- size="32"><br />
+ size="32"><br>
[% knum = knum + 1 %]
<input id="knob-reassignbycomponent"
@@ -291,7 +291,7 @@
value="reassignbycomponent">
<label for="knob-reassignbycomponent">
Reassign bugs to owner of selected component
-</label><br />
+</label><br>
<input type="submit" value="Commit">
@@ -306,7 +306,7 @@
[% BLOCK selectmenu %]
<select id="[% menuname %]" name="[% menuname %]">
- <option value="[% dontchange FILTER html %]" selected>
+ <option value="[% dontchange FILTER html %]" selected="selected">
[% dontchange FILTER html %]
</option>
[% FOREACH menuitem = menuitems %]
diff --git a/template/en/default/list/list-simple.html.tmpl b/template/en/default/list/list-simple.html.tmpl
index b86f697ed..25c8c82ec 100644
--- a/template/en/default/list/list-simple.html.tmpl
+++ b/template/en/default/list/list-simple.html.tmpl
@@ -39,7 +39,7 @@
<head>
<title>[% title %]</title>
- <link href="css/buglist.css" rel="stylesheet" type="text/css" />
+ <link href="css/buglist.css" rel="stylesheet" type="text/css">
</head>
<body>
diff --git a/template/en/default/list/list.html.tmpl b/template/en/default/list/list.html.tmpl
index 15d5fc0a0..f6a4df389 100644
--- a/template/en/default/list/list.html.tmpl
+++ b/template/en/default/list/list.html.tmpl
@@ -38,7 +38,7 @@
%]
<div align="center">
- <b>[% currenttime %]</b><br />
+ <b>[% currenttime %]</b><br>
[% IF debug %]
<p>[% query FILTER html %]</p>
@@ -57,7 +57,7 @@
</h2>
[% END %]
-<hr />
+<hr>
[%############################################################################%]
@@ -105,7 +105,7 @@
[% END %]
-<br />
+<br>
[%############################################################################%]
@@ -118,7 +118,7 @@
</form>
- <hr />
+ <hr>
[% END %]
diff --git a/template/en/default/list/quips.html.tmpl b/template/en/default/list/quips.html.tmpl
index 032f35fcf..c874b14d7 100644
--- a/template/en/default/list/quips.html.tmpl
+++ b/template/en/default/list/quips.html.tmpl
@@ -46,10 +46,10 @@
</p>
<form method="post" action="quips.cgi">
- <input type="hidden" name="action" value="add" />
- <input size="80" name="quip" />
+ <input type="hidden" name="action" value="add">
+ <input size="80" name="quip">
<p>
- <input type="submit" value="Add This Quip" />
+ <input type="submit" value="Add This Quip">
</p>
</form>