[PATCH 2/4] ChangeLog template conformance fixes.
Edouard Gomez
edouard.gomez at gmail.com
Sat Jul 2 22:16:35 UTC 2005
# HG changeset patch
# User ed.gomez at free.fr
# Node ID e0661b00c613fa2bf1b670db1c9097423b4a107f
# Parent b2e9146c237d84a1dd24af9a08bfb031bcc3a523
ChangeLog template conformance fixes.
As per: http://www.w3.org/TR/html401/interact/forms.html#h-17.3
form element MUST have action attribute
As per: http://www.w3.org/TR/html401/interact/forms.html#h-17.4
input has no length attribute, replace by size (i don't couple this
with maxlength because a tag may be used in future versions and no
length limit might be required ?).
diff -r b2e9146c237d -r e0661b00c613 templates/changelog.tmpl
--- a/templates/changelog.tmpl Sat Jul 2 21:17:29 2005
+++ b/templates/changelog.tmpl Sat Jul 2 21:28:44 2005
@@ -10,20 +10,24 @@
<h2>changelog for #repo|escape#</h2>
-<form>
-search:
+<form action="#">
+<p>
+<label for="search1">search:</label>
<input type="hidden" name="cmd" value="changelog">
-<input name="rev" type="text" width="30">
-navigate: <small>#changenav#</small><br/>
+<input name="rev" id="search1" type="text" size="30">
+navigate: <small>#changenav#</small>
+</p>
</form>
#entries#
-<form>
-search:
+<form action="#">
+<p>
+<label for="search2">search:</label>
<input type="hidden" name="cmd" value="changelog">
-<input name="rev" type="text" width="30">
-navigate: <small>#changenav#</small><br/>
+<input name="rev" id="search2" type="text" size="30">
+navigate: <small>#changenav#</small>
+</p>
</form>
#footer#
--
Edouard Gomez
More information about the Mercurial
mailing list