Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorThomas Becker2013-09-06 14:34:02 +0000
committerThomas Becker2013-09-06 14:34:02 +0000
commite26ce1b303aad1608c01ce9350be1fc8c86cf596 (patch)
tree1e79b861e13ceda370018ce553393242faf3ac8d
parent30487639a7d915e1cc25a99b148fef8e21f95509 (diff)
downloadorg.eclipse.jetty.project-e26ce1b303aad1608c01ce9350be1fc8c86cf596.tar.gz
org.eclipse.jetty.project-e26ce1b303aad1608c01ce9350be1fc8c86cf596.tar.xz
org.eclipse.jetty.project-e26ce1b303aad1608c01ce9350be1fc8c86cf596.zip
/jetty-webapp/src/main/config/etc/webdefault.xml fix xml error
-rw-r--r--jetty-webapp/src/main/config/etc/webdefault.xml6
1 files changed, 2 insertions, 4 deletions
diff --git a/jetty-webapp/src/main/config/etc/webdefault.xml b/jetty-webapp/src/main/config/etc/webdefault.xml
index fc8d7f9801..c3f350fd64 100644
--- a/jetty-webapp/src/main/config/etc/webdefault.xml
+++ b/jetty-webapp/src/main/config/etc/webdefault.xml
@@ -284,9 +284,7 @@
<!-- If you get an error reporting that jikes can't use UTF-8 encoding, -->
<!-- try setting the init parameter "javaEncoding" to "ISO-8859-1". -->
<!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
- <servlet
- id="jsp"
- >
+ <servlet id="jsp">
<servlet-name>jsp</servlet-name>
<servlet-class>org.apache.jasper.servlet.JspServlet</servlet-class>
<init-param>
@@ -527,7 +525,7 @@
<security-constraint>
<web-resource-collection>
<web-resource-name>Enable everything but TRACE</web-resource-name>
- <url-pattern/>/</url-pattern>
+ <url-pattern>/</url-pattern>
<http-method-ommission>TRACE</http-method-ommission>
</web-resource-collection>
</security-constraint>

Back to the top