- From: Thomas Gambet via cvs-syncmail <cvsmail@w3.org>
- Date: Tue, 15 Sep 2009 15:38:59 +0000
- To: www-validator-cvs@w3.org
Update of /sources/public/2006/unicorn/src/org/w3c/unicorn In directory hutz:/tmp/cvs-serv13155/src/org/w3c/unicorn Modified Files: RequestThread.java Log Message: fixed io_error references were HTMLescaped instead of XMLescaped Index: RequestThread.java =================================================================== RCS file: /sources/public/2006/unicorn/src/org/w3c/unicorn/RequestThread.java,v retrieving revision 1.2 retrieving revision 1.3 diff -u -d -r1.2 -r1.3 --- RequestThread.java 14 Sep 2009 15:50:48 -0000 1.2 +++ RequestThread.java 15 Sep 2009 15:38:57 -0000 1.3 @@ -15,7 +15,7 @@ import org.w3c.unicorn.request.Request; import org.w3c.unicorn.response.Response; import org.w3c.unicorn.response.parser.ResponseParserFactory; -import org.w3c.unicorn.util.EscapeHTMLEntities; +import org.w3c.unicorn.util.EscapeXMLEntities; import org.w3c.unicorn.util.Templates; /** @@ -92,7 +92,7 @@ VelocityContext context = new VelocityContext(Framework.getLanguageContexts().get(lang)); EventCartridge aEventCartridge = new EventCartridge(); - aEventCartridge.addEventHandler(new EscapeHTMLEntities()); + aEventCartridge.addEventHandler(new EscapeXMLEntities()); aEventCartridge.attachToContext(context); if (e.getMessage() != null)
Received on Tuesday, 15 September 2009 15:39:07 UTC