diff options
author | myk%mozilla.org <> | 2002-05-22 02:53:03 +0200 |
---|---|---|
committer | myk%mozilla.org <> | 2002-05-22 02:53:03 +0200 |
commit | f3b6e880a28c2f7fbe62702f5557f8b32fc10ca0 (patch) | |
tree | f9bfe5602af8c65ca6045dd499a48a474e8d9804 /template/en/default/reports | |
parent | 58d6d1b7eaf00f9548a5d4bd188dfe65b32cb982 (diff) | |
download | bugzilla-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/reports')
-rw-r--r-- | template/en/default/reports/components.html.tmpl | 4 | ||||
-rw-r--r-- | template/en/default/reports/duplicates-table.html.tmpl | 4 | ||||
-rw-r--r-- | template/en/default/reports/duplicates.html.tmpl | 22 |
3 files changed, 15 insertions, 15 deletions
diff --git a/template/en/default/reports/components.html.tmpl b/template/en/default/reports/components.html.tmpl index 8bc549509..7190883b2 100644 --- a/template/en/default/reports/components.html.tmpl +++ b/template/en/default/reports/components.html.tmpl @@ -55,7 +55,7 @@ [% INCLUDE describe_comp %] [% END %] <tr> - <td colspan='[% numcols %]'> + <td colspan="[% numcols %]"> <hr> </td> </tr> @@ -75,7 +75,7 @@ </td> </tr> <tr> - <td rowspan='2'> + <td rowspan="2"> <a name="[% comp.name FILTER html %]">[% comp.name FILTER html %]</a> </td> <td> diff --git a/template/en/default/reports/duplicates-table.html.tmpl b/template/en/default/reports/duplicates-table.html.tmpl index f7b8ec173..24eb4246e 100644 --- a/template/en/default/reports/duplicates-table.html.tmpl +++ b/template/en/default/reports/duplicates-table.html.tmpl @@ -44,7 +44,7 @@ [%# *** Column Headers *** %] <table border> - <tr BGCOLOR="#CCCCCC"> + <tr bgcolor="#CCCCCC"> [% FOREACH column = [ { name => "id", description => "Bug #" }, { name => "count", description => "Dupe<br>Count" }, { name => "delta", @@ -111,7 +111,7 @@ <td> <center> [% "<strike>" IF bug.resolution != "" %] - <A HREF="show_bug.cgi?id=[% bug.id %]">[% bug.id %]</a> + <a href="show_bug.cgi?id=[% bug.id %]">[% bug.id %]</a> [% "</strike>" IF bug.resolution != "" %] </center> </td> diff --git a/template/en/default/reports/duplicates.html.tmpl b/template/en/default/reports/duplicates.html.tmpl index 203776cd3..64ba5e120 100644 --- a/template/en/default/reports/duplicates.html.tmpl +++ b/template/en/default/reports/duplicates.html.tmpl @@ -59,8 +59,8 @@ <h3><a name="params">Change Parameters</a></h3> <form method="get" action="duplicates.cgi"> - <input type="hidden" name="sortby" value="[% sortby %]" /> - <input type="hidden" name="reverse" value="[% reverse %]" /> + <input type="hidden" name="sortby" value="[% sortby %]"> + <input type="hidden" name="reverse" value="[% reverse %]"> <input type="hidden" name="bug_id" value="[% bug_ids_string %]"> <table> <tr> @@ -68,20 +68,20 @@ work with:</td> <td> <input type="radio" name="sortvisible" id="entirelist" value="0" - [% "checked" IF NOT sortvisible %] /> + [% "checked" IF NOT sortvisible %]> <label for="entirelist"> entire list </label> - <br /> + <br> <input type="radio" name="sortvisible" id="visiblelist" value="1" - [% "checked" IF sortvisible %] /> + [% "checked" IF sortvisible %]> <label for="visiblelist"> currently visible list </label> </td> <td rowspan="4" valign="top">Restrict to products:</td> <td rowspan="4" valign="top"> - <select name="product" size="5" multiple> + <select name="product" size="5" multiple="multiple"> [% FOREACH p = products %] <option name="[% p %]" [% " selected" IF product == p %]>[% p %]</option> @@ -93,14 +93,14 @@ <tr> <td>Max rows:</td> <td> - <input size="4" name="maxrows" value="[% maxrows %]" /> + <input size="4" name="maxrows" value="[% maxrows %]"> </td> </tr> <tr> <td>Change column is change in the last:</td> <td> - <input size="4" name="changedsince" value="[% changedsince %]" /> days + <input size="4" name="changedsince" value="[% changedsince %]"> days </td> </tr> @@ -112,13 +112,13 @@ </td> <td> <input type="checkbox" name="openonly" id="openonly" value="1" - [% "checked" IF openonly %] /> + [% "checked" IF openonly %]> </td> </tr> </table> - <input type="submit" value="Change" /> + <input type="submit" value="Change"> </form> <form method="post" action="buglist.cgi"> @@ -128,7 +128,7 @@ (Note: the order may not be the same.) </form> -<hr /> +<hr> <b> <a name="explanation">What are "Most Frequently Reported Bugs"?</a> |