- From: Hiep Duong via cvs-syncmail <cvsmail@w3.org>
- Date: Thu, 21 Feb 2008 14:30:55 +0000
- To: www-validator-cvs@w3.org
Update of /sources/public/2006/unicorn/org/w3c/unicorn/tests
In directory hutz:/tmp/cvs-serv10451/org/w3c/unicorn/tests
Modified Files:
FirstServlet.java
Log Message:
fix xhtml20 -> xhtml10
Index: FirstServlet.java
===================================================================
RCS file: /sources/public/2006/unicorn/org/w3c/unicorn/tests/FirstServlet.java,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -d -r1.8 -r1.9
--- FirstServlet.java 20 Feb 2008 15:45:29 -0000 1.8
+++ FirstServlet.java 21 Feb 2008 14:30:53 -0000 1.9
@@ -122,7 +122,7 @@
final Map<String, String[]> mapOfSpecificParameter = new Hashtable<String, String[]>();
final Map<String, String> mapOfOutputParameter = new Hashtable<String, String>();
mapOfOutputParameter.put("output", "simple");
- mapOfOutputParameter.put("format", "xhtml20");
+ mapOfOutputParameter.put("format", "xhtml10");
mapOfOutputParameter.put("charset", "UTF-8");
mapOfOutputParameter.put("mimetype", "text/html");
@@ -222,7 +222,7 @@
// Variables related to the output
final Map<String, String> mapOfOutputParameter = new Hashtable<String, String>();
mapOfOutputParameter.put("output", "simple");
- mapOfOutputParameter.put("format", "xhtml20");
+ mapOfOutputParameter.put("format", "xhtml10");
mapOfOutputParameter.put("charset", "UTF-8");
mapOfOutputParameter.put("mimetype", "text/html");
Received on Thursday, 21 February 2008 14:31:02 UTC