JETTY-1057
git-svn-id: svn+ssh://dev.eclipse.org/svnroot/rt/org.eclipse.jetty/jetty/trunk@752 7e9141cc-0065-0410-87d8-b60c137991c4
This commit is contained in:
parent
3bdbb963e1
commit
347ea58a28
|
@ -10,6 +10,7 @@ jetty-7.0.0.RC4 18 August 2009
|
|||
+ JETTY-1079 ResourceCollection.toString
|
||||
+ 279820 Fixed HotSwapHandler
|
||||
+ JETTY-1080 Ignore files that would be extracted outside the destination directory when unpacking WARs
|
||||
+ JETTY-1057 XSS error page
|
||||
|
||||
jetty-7.0.0.RC3 7 August 2009
|
||||
+ 277403 remove system properties
|
||||
|
|
|
@ -117,7 +117,7 @@ public class ErrorHandler extends AbstractHandler
|
|||
writer.write("<h2>HTTP ERROR ");
|
||||
writer.write(Integer.toString(code));
|
||||
writer.write("</h2>\n<p>Problem accessing ");
|
||||
writer.write(uri);
|
||||
writer.write(deScript(uri));
|
||||
writer.write(". Reason:\n<pre> ");
|
||||
writer.write(deScript(message));
|
||||
writer.write("</pre></p>");
|
||||
|
|
Loading…
Reference in New Issue