- From: Olivier Thereaux via cvs-syncmail <cvsmail@w3.org>
- Date: Tue, 11 Sep 2007 04:44:52 +0000
- To: www-validator-cvs@w3.org
Update of /sources/public/validator/share/templates/en_US
In directory hutz:/tmp/cvs-serv20020
Modified Files:
table.tmpl
Log Message:
* for revalidation after direct input/upload, using POST rather than get
(avoiding 414 Request-URI Too Large)
* rewording of table header for source display textarea
Index: table.tmpl
===================================================================
RCS file: /sources/public/validator/share/templates/en_US/table.tmpl,v
retrieving revision 1.29
retrieving revision 1.30
diff -u -d -r1.29 -r1.30
--- table.tmpl 5 Sep 2007 08:14:33 -0000 1.29
+++ table.tmpl 11 Sep 2007 04:44:49 -0000 1.30
@@ -16,7 +16,11 @@
<TMPL_IF NAME="file_uri">
+<TMPL_IF NAME="is_upload">
+<form id="form" method="post" action="check">
+<TMPL_ELSE>
<form id="form" method="get" action="check">
+</TMPL_IF>
<table class="header">
<tr>
<th>Result:</th>
@@ -36,7 +40,7 @@
</tr>
<tr>
<TMPL_IF NAME="is_upload">
- <th>Direct Input:</th><td colspan="2"><textarea id="fragment" name="fragment" rows="12" cols="80"><TMPL_LOOP NAME="file_source"><TMPL_VAR NAME="file_source_line" ESCAPE="HTML">
+ <th>Uploaded Content:</th><td colspan="2"><textarea id="fragment" name="fragment" rows="12" cols="80"><TMPL_LOOP NAME="file_source"><TMPL_VAR NAME="file_source_line" ESCAPE="HTML">
</TMPL_LOOP></textarea></td>
<TMPL_ELSE>
<th><label title="Address of Page to Validate" for="uri">Address</label>:</th>
Received on Tuesday, 11 September 2007 04:44:55 UTC