- From: Thomas Gambet via cvs-syncmail <cvsmail@w3.org>
- Date: Mon, 14 Sep 2009 15:50:50 +0000
- To: www-validator-cvs@w3.org
Update of /sources/public/2006/unicorn/src/org/w3c/unicorn In directory hutz:/tmp/cvs-serv30955/src/org/w3c/unicorn Modified Files: RequestThread.java Log Message: uses EscapeHTMLentities instead of EscapeXMLEntities Index: RequestThread.java =================================================================== RCS file: /sources/public/2006/unicorn/src/org/w3c/unicorn/RequestThread.java,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- RequestThread.java 4 Sep 2009 13:51:06 -0000 1.1 +++ RequestThread.java 14 Sep 2009 15:50:48 -0000 1.2 @@ -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.EscapeXMLEntities; +import org.w3c.unicorn.util.EscapeHTMLEntities; 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 EscapeXMLEntities()); + aEventCartridge.addEventHandler(new EscapeHTMLEntities()); aEventCartridge.attachToContext(context); if (e.getMessage() != null)
Received on Monday, 14 September 2009 15:51:00 UTC