浏览代码

SEC-2194: Remove samples errors/tabs folders

Rob Winch 12 年之前
父节点
当前提交
b5ecaf61ed
共有 40 个文件被更改,包括 0 次插入750 次删除
  1. 0 21
      samples/concurrency-jc/src/main/webapp/WEB-INF/tags/tab.tagx
  2. 0 18
      samples/concurrency-jc/src/main/webapp/WEB-INF/views/errors/403.jspx
  3. 0 18
      samples/concurrency-jc/src/main/webapp/WEB-INF/views/errors/404.jspx
  4. 0 18
      samples/concurrency-jc/src/main/webapp/WEB-INF/views/errors/500.jspx
  5. 0 21
      samples/hellomvc-jc/src/main/webapp/WEB-INF/tags/tab.tagx
  6. 0 18
      samples/hellomvc-jc/src/main/webapp/WEB-INF/views/errors/403.jspx
  7. 0 18
      samples/hellomvc-jc/src/main/webapp/WEB-INF/views/errors/404.jspx
  8. 0 18
      samples/hellomvc-jc/src/main/webapp/WEB-INF/views/errors/500.jspx
  9. 0 21
      samples/inmemory-jc/src/main/webapp/WEB-INF/tags/tab.tagx
  10. 0 18
      samples/inmemory-jc/src/main/webapp/WEB-INF/views/errors/403.jspx
  11. 0 18
      samples/inmemory-jc/src/main/webapp/WEB-INF/views/errors/404.jspx
  12. 0 18
      samples/inmemory-jc/src/main/webapp/WEB-INF/views/errors/500.jspx
  13. 0 21
      samples/insecuremvc/src/main/webapp/WEB-INF/tags/tab.tagx
  14. 0 18
      samples/insecuremvc/src/main/webapp/WEB-INF/views/errors/403.jspx
  15. 0 18
      samples/insecuremvc/src/main/webapp/WEB-INF/views/errors/404.jspx
  16. 0 18
      samples/insecuremvc/src/main/webapp/WEB-INF/views/errors/500.jspx
  17. 0 21
      samples/jdbc-jc/src/main/webapp/WEB-INF/tags/tab.tagx
  18. 0 18
      samples/jdbc-jc/src/main/webapp/WEB-INF/views/errors/403.jspx
  19. 0 18
      samples/jdbc-jc/src/main/webapp/WEB-INF/views/errors/404.jspx
  20. 0 18
      samples/jdbc-jc/src/main/webapp/WEB-INF/views/errors/500.jspx
  21. 0 21
      samples/ldap-jc/src/main/webapp/WEB-INF/tags/tab.tagx
  22. 0 18
      samples/ldap-jc/src/main/webapp/WEB-INF/views/errors/403.jspx
  23. 0 18
      samples/ldap-jc/src/main/webapp/WEB-INF/views/errors/404.jspx
  24. 0 18
      samples/ldap-jc/src/main/webapp/WEB-INF/views/errors/500.jspx
  25. 0 21
      samples/openid-jc/src/main/webapp/WEB-INF/tags/tab.tagx
  26. 0 18
      samples/openid-jc/src/main/webapp/WEB-INF/views/errors/403.jspx
  27. 0 18
      samples/openid-jc/src/main/webapp/WEB-INF/views/errors/404.jspx
  28. 0 18
      samples/openid-jc/src/main/webapp/WEB-INF/views/errors/500.jspx
  29. 0 21
      samples/preauth-jc/src/main/webapp/WEB-INF/tags/tab.tagx
  30. 0 18
      samples/preauth-jc/src/main/webapp/WEB-INF/views/errors/403.jspx
  31. 0 18
      samples/preauth-jc/src/main/webapp/WEB-INF/views/errors/404.jspx
  32. 0 18
      samples/preauth-jc/src/main/webapp/WEB-INF/views/errors/500.jspx
  33. 0 21
      samples/rememberme-jc/src/main/webapp/WEB-INF/tags/tab.tagx
  34. 0 18
      samples/rememberme-jc/src/main/webapp/WEB-INF/views/errors/403.jspx
  35. 0 18
      samples/rememberme-jc/src/main/webapp/WEB-INF/views/errors/404.jspx
  36. 0 18
      samples/rememberme-jc/src/main/webapp/WEB-INF/views/errors/500.jspx
  37. 0 21
      samples/x509-jc/src/main/webapp/WEB-INF/tags/tab.tagx
  38. 0 18
      samples/x509-jc/src/main/webapp/WEB-INF/views/errors/403.jspx
  39. 0 18
      samples/x509-jc/src/main/webapp/WEB-INF/views/errors/404.jspx
  40. 0 18
      samples/x509-jc/src/main/webapp/WEB-INF/views/errors/500.jspx

+ 0 - 21
samples/concurrency-jc/src/main/webapp/WEB-INF/tags/tab.tagx

@@ -1,21 +0,0 @@
-<jsp:root xmlns:c="http://java.sun.com/jsp/jstl/core"
-    xmlns:sec="http://www.springframework.org/security/tags"
-    xmlns:jsp="http://java.sun.com/JSP/Page" version="2.0">
-    <jsp:output omit-xml-declaration="yes" />
-    <jsp:directive.attribute name="url" type="java.lang.String" required="true" description="The url to go to"/>
-    <jsp:directive.attribute name="text" type="java.lang.String" required="true" description="The text for the tab"/>
-    <jsp:directive.attribute name="id" type="java.lang.String" required="true" description="The id for the tab"/>
-
-    <sec:authorize url="${url}">
-        <c:url var="url" value="${url}"/>
-        <c:choose>
-            <c:when test="${id == tab}">
-                <c:set var="css" value=" selected"/>
-            </c:when>
-            <c:otherwise>
-                <c:set var="css" value=""/>
-            </c:otherwise>
-        </c:choose>
-        <li class="tab${css}"><a href="${url}">${text}</a></li>
-    </sec:authorize>
-</jsp:root>

+ 0 - 18
samples/concurrency-jc/src/main/webapp/WEB-INF/views/errors/403.jspx

@@ -1,18 +0,0 @@
-<jsp:root
-   xmlns:jsp="http://java.sun.com/JSP/Page"
-   xmlns:spring="http://www.springframework.org/tags"
-   xmlns:c="http://java.sun.com/jsp/jstl/core"
-   xmlns:form="http://www.springframework.org/tags/form"
-   version="2.0">
-   <jsp:directive.page language="java" contentType="text/html"/>
-<html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en">
-    <c:set var="title" value="Access Denied"/>
-    <head>
-        <title>${title}</title>
-    </head>
-    <body>
-        <h1>${title}</h1>
-        <div class="errors">You do not have sufficient privileges to access this page.</div>
-    </body>
-</html>
-</jsp:root>

+ 0 - 18
samples/concurrency-jc/src/main/webapp/WEB-INF/views/errors/404.jspx

@@ -1,18 +0,0 @@
-<jsp:root
-   xmlns:jsp="http://java.sun.com/JSP/Page"
-   xmlns:spring="http://www.springframework.org/tags"
-   xmlns:c="http://java.sun.com/jsp/jstl/core"
-   xmlns:form="http://www.springframework.org/tags/form"
-   version="2.0">
-   <jsp:directive.page language="java" contentType="text/html"/>
-<html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en">
-    <c:set var="title" value="Page Not Found"/>
-    <head>
-        <title>${title}</title>
-    </head>
-    <body>
-        <h1>${title}</h1>
-        <div class="errors">The requested page could not be found.</div>
-    </body>
-</html>
-</jsp:root>

+ 0 - 18
samples/concurrency-jc/src/main/webapp/WEB-INF/views/errors/500.jspx

@@ -1,18 +0,0 @@
-<jsp:root
-   xmlns:jsp="http://java.sun.com/JSP/Page"
-   xmlns:spring="http://www.springframework.org/tags"
-   xmlns:c="http://java.sun.com/jsp/jstl/core"
-   xmlns:form="http://www.springframework.org/tags/form"
-   version="2.0">
-   <jsp:directive.page language="java" contentType="text/html"/>
-<html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en">
-    <c:set var="title" value="Internal Error"/>
-    <head>
-        <title>${title}</title>
-    </head>
-    <body>
-        <h1>${title}</h1>
-        <div class="errors">An internal error occurred.</div>
-    </body>
-</html>
-</jsp:root>

+ 0 - 21
samples/hellomvc-jc/src/main/webapp/WEB-INF/tags/tab.tagx

@@ -1,21 +0,0 @@
-<jsp:root xmlns:c="http://java.sun.com/jsp/jstl/core"
-    xmlns:sec="http://www.springframework.org/security/tags"
-    xmlns:jsp="http://java.sun.com/JSP/Page" version="2.0">
-    <jsp:output omit-xml-declaration="yes" />
-    <jsp:directive.attribute name="url" type="java.lang.String" required="true" description="The url to go to"/>
-    <jsp:directive.attribute name="text" type="java.lang.String" required="true" description="The text for the tab"/>
-    <jsp:directive.attribute name="id" type="java.lang.String" required="true" description="The id for the tab"/>
-
-    <sec:authorize url="${url}">
-        <c:url var="url" value="${url}"/>
-        <c:choose>
-            <c:when test="${id == tab}">
-                <c:set var="css" value=" selected"/>
-            </c:when>
-            <c:otherwise>
-                <c:set var="css" value=""/>
-            </c:otherwise>
-        </c:choose>
-        <li class="tab${css}"><a href="${url}">${text}</a></li>
-    </sec:authorize>
-</jsp:root>

+ 0 - 18
samples/hellomvc-jc/src/main/webapp/WEB-INF/views/errors/403.jspx

@@ -1,18 +0,0 @@
-<jsp:root
-   xmlns:jsp="http://java.sun.com/JSP/Page"
-   xmlns:spring="http://www.springframework.org/tags"
-   xmlns:c="http://java.sun.com/jsp/jstl/core"
-   xmlns:form="http://www.springframework.org/tags/form"
-   version="2.0">
-   <jsp:directive.page language="java" contentType="text/html"/>
-<html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en">
-    <c:set var="title" value="Access Denied"/>
-    <head>
-        <title>${title}</title>
-    </head>
-    <body>
-        <h1>${title}</h1>
-        <div class="errors">You do not have sufficient privileges to access this page.</div>
-    </body>
-</html>
-</jsp:root>

+ 0 - 18
samples/hellomvc-jc/src/main/webapp/WEB-INF/views/errors/404.jspx

@@ -1,18 +0,0 @@
-<jsp:root
-   xmlns:jsp="http://java.sun.com/JSP/Page"
-   xmlns:spring="http://www.springframework.org/tags"
-   xmlns:c="http://java.sun.com/jsp/jstl/core"
-   xmlns:form="http://www.springframework.org/tags/form"
-   version="2.0">
-   <jsp:directive.page language="java" contentType="text/html"/>
-<html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en">
-    <c:set var="title" value="Page Not Found"/>
-    <head>
-        <title>${title}</title>
-    </head>
-    <body>
-        <h1>${title}</h1>
-        <div class="errors">The requested page could not be found.</div>
-    </body>
-</html>
-</jsp:root>

+ 0 - 18
samples/hellomvc-jc/src/main/webapp/WEB-INF/views/errors/500.jspx

@@ -1,18 +0,0 @@
-<jsp:root
-   xmlns:jsp="http://java.sun.com/JSP/Page"
-   xmlns:spring="http://www.springframework.org/tags"
-   xmlns:c="http://java.sun.com/jsp/jstl/core"
-   xmlns:form="http://www.springframework.org/tags/form"
-   version="2.0">
-   <jsp:directive.page language="java" contentType="text/html"/>
-<html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en">
-    <c:set var="title" value="Internal Error"/>
-    <head>
-        <title>${title}</title>
-    </head>
-    <body>
-        <h1>${title}</h1>
-        <div class="errors">An internal error occurred.</div>
-    </body>
-</html>
-</jsp:root>

+ 0 - 21
samples/inmemory-jc/src/main/webapp/WEB-INF/tags/tab.tagx

@@ -1,21 +0,0 @@
-<jsp:root xmlns:c="http://java.sun.com/jsp/jstl/core"
-    xmlns:sec="http://www.springframework.org/security/tags"
-    xmlns:jsp="http://java.sun.com/JSP/Page" version="2.0">
-    <jsp:output omit-xml-declaration="yes" />
-    <jsp:directive.attribute name="url" type="java.lang.String" required="true" description="The url to go to"/>
-    <jsp:directive.attribute name="text" type="java.lang.String" required="true" description="The text for the tab"/>
-    <jsp:directive.attribute name="id" type="java.lang.String" required="true" description="The id for the tab"/>
-
-    <sec:authorize url="${url}">
-        <c:url var="url" value="${url}"/>
-        <c:choose>
-            <c:when test="${id == tab}">
-                <c:set var="css" value=" selected"/>
-            </c:when>
-            <c:otherwise>
-                <c:set var="css" value=""/>
-            </c:otherwise>
-        </c:choose>
-        <li class="tab${css}"><a href="${url}">${text}</a></li>
-    </sec:authorize>
-</jsp:root>

+ 0 - 18
samples/inmemory-jc/src/main/webapp/WEB-INF/views/errors/403.jspx

@@ -1,18 +0,0 @@
-<jsp:root
-   xmlns:jsp="http://java.sun.com/JSP/Page"
-   xmlns:spring="http://www.springframework.org/tags"
-   xmlns:c="http://java.sun.com/jsp/jstl/core"
-   xmlns:form="http://www.springframework.org/tags/form"
-   version="2.0">
-   <jsp:directive.page language="java" contentType="text/html"/>
-<html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en">
-    <c:set var="title" value="Access Denied"/>
-    <head>
-        <title>${title}</title>
-    </head>
-    <body>
-        <h1>${title}</h1>
-        <div class="errors">You do not have sufficient privileges to access this page.</div>
-    </body>
-</html>
-</jsp:root>

+ 0 - 18
samples/inmemory-jc/src/main/webapp/WEB-INF/views/errors/404.jspx

@@ -1,18 +0,0 @@
-<jsp:root
-   xmlns:jsp="http://java.sun.com/JSP/Page"
-   xmlns:spring="http://www.springframework.org/tags"
-   xmlns:c="http://java.sun.com/jsp/jstl/core"
-   xmlns:form="http://www.springframework.org/tags/form"
-   version="2.0">
-   <jsp:directive.page language="java" contentType="text/html"/>
-<html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en">
-    <c:set var="title" value="Page Not Found"/>
-    <head>
-        <title>${title}</title>
-    </head>
-    <body>
-        <h1>${title}</h1>
-        <div class="errors">The requested page could not be found.</div>
-    </body>
-</html>
-</jsp:root>

+ 0 - 18
samples/inmemory-jc/src/main/webapp/WEB-INF/views/errors/500.jspx

@@ -1,18 +0,0 @@
-<jsp:root
-   xmlns:jsp="http://java.sun.com/JSP/Page"
-   xmlns:spring="http://www.springframework.org/tags"
-   xmlns:c="http://java.sun.com/jsp/jstl/core"
-   xmlns:form="http://www.springframework.org/tags/form"
-   version="2.0">
-   <jsp:directive.page language="java" contentType="text/html"/>
-<html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en">
-    <c:set var="title" value="Internal Error"/>
-    <head>
-        <title>${title}</title>
-    </head>
-    <body>
-        <h1>${title}</h1>
-        <div class="errors">An internal error occurred.</div>
-    </body>
-</html>
-</jsp:root>

+ 0 - 21
samples/insecuremvc/src/main/webapp/WEB-INF/tags/tab.tagx

@@ -1,21 +0,0 @@
-<jsp:root xmlns:c="http://java.sun.com/jsp/jstl/core"
-    xmlns:sec="http://www.springframework.org/security/tags"
-    xmlns:jsp="http://java.sun.com/JSP/Page" version="2.0">
-    <jsp:output omit-xml-declaration="yes" />
-    <jsp:directive.attribute name="url" type="java.lang.String" required="true" description="The url to go to"/>
-    <jsp:directive.attribute name="text" type="java.lang.String" required="true" description="The text for the tab"/>
-    <jsp:directive.attribute name="id" type="java.lang.String" required="true" description="The id for the tab"/>
-
-    <sec:authorize url="${url}">
-        <c:url var="url" value="${url}"/>
-        <c:choose>
-            <c:when test="${id == tab}">
-                <c:set var="css" value=" selected"/>
-            </c:when>
-            <c:otherwise>
-                <c:set var="css" value=""/>
-            </c:otherwise>
-        </c:choose>
-        <li class="tab${css}"><a href="${url}">${text}</a></li>
-    </sec:authorize>
-</jsp:root>

+ 0 - 18
samples/insecuremvc/src/main/webapp/WEB-INF/views/errors/403.jspx

@@ -1,18 +0,0 @@
-<jsp:root
-   xmlns:jsp="http://java.sun.com/JSP/Page"
-   xmlns:spring="http://www.springframework.org/tags"
-   xmlns:c="http://java.sun.com/jsp/jstl/core"
-   xmlns:form="http://www.springframework.org/tags/form"
-   version="2.0">
-   <jsp:directive.page language="java" contentType="text/html"/>
-<html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en">
-    <c:set var="title" value="Access Denied"/>
-    <head>
-        <title>${title}</title>
-    </head>
-    <body>
-        <h1>${title}</h1>
-        <div class="errors">You do not have sufficient privileges to access this page.</div>
-    </body>
-</html>
-</jsp:root>

+ 0 - 18
samples/insecuremvc/src/main/webapp/WEB-INF/views/errors/404.jspx

@@ -1,18 +0,0 @@
-<jsp:root
-   xmlns:jsp="http://java.sun.com/JSP/Page"
-   xmlns:spring="http://www.springframework.org/tags"
-   xmlns:c="http://java.sun.com/jsp/jstl/core"
-   xmlns:form="http://www.springframework.org/tags/form"
-   version="2.0">
-   <jsp:directive.page language="java" contentType="text/html"/>
-<html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en">
-    <c:set var="title" value="Page Not Found"/>
-    <head>
-        <title>${title}</title>
-    </head>
-    <body>
-        <h1>${title}</h1>
-        <div class="errors">The requested page could not be found.</div>
-    </body>
-</html>
-</jsp:root>

+ 0 - 18
samples/insecuremvc/src/main/webapp/WEB-INF/views/errors/500.jspx

@@ -1,18 +0,0 @@
-<jsp:root
-   xmlns:jsp="http://java.sun.com/JSP/Page"
-   xmlns:spring="http://www.springframework.org/tags"
-   xmlns:c="http://java.sun.com/jsp/jstl/core"
-   xmlns:form="http://www.springframework.org/tags/form"
-   version="2.0">
-   <jsp:directive.page language="java" contentType="text/html"/>
-<html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en">
-    <c:set var="title" value="Internal Error"/>
-    <head>
-        <title>${title}</title>
-    </head>
-    <body>
-        <h1>${title}</h1>
-        <div class="errors">An internal error occurred.</div>
-    </body>
-</html>
-</jsp:root>

+ 0 - 21
samples/jdbc-jc/src/main/webapp/WEB-INF/tags/tab.tagx

@@ -1,21 +0,0 @@
-<jsp:root xmlns:c="http://java.sun.com/jsp/jstl/core"
-    xmlns:sec="http://www.springframework.org/security/tags"
-    xmlns:jsp="http://java.sun.com/JSP/Page" version="2.0">
-    <jsp:output omit-xml-declaration="yes" />
-    <jsp:directive.attribute name="url" type="java.lang.String" required="true" description="The url to go to"/>
-    <jsp:directive.attribute name="text" type="java.lang.String" required="true" description="The text for the tab"/>
-    <jsp:directive.attribute name="id" type="java.lang.String" required="true" description="The id for the tab"/>
-
-    <sec:authorize url="${url}">
-        <c:url var="url" value="${url}"/>
-        <c:choose>
-            <c:when test="${id == tab}">
-                <c:set var="css" value=" selected"/>
-            </c:when>
-            <c:otherwise>
-                <c:set var="css" value=""/>
-            </c:otherwise>
-        </c:choose>
-        <li class="tab${css}"><a href="${url}">${text}</a></li>
-    </sec:authorize>
-</jsp:root>

+ 0 - 18
samples/jdbc-jc/src/main/webapp/WEB-INF/views/errors/403.jspx

@@ -1,18 +0,0 @@
-<jsp:root
-   xmlns:jsp="http://java.sun.com/JSP/Page"
-   xmlns:spring="http://www.springframework.org/tags"
-   xmlns:c="http://java.sun.com/jsp/jstl/core"
-   xmlns:form="http://www.springframework.org/tags/form"
-   version="2.0">
-   <jsp:directive.page language="java" contentType="text/html"/>
-<html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en">
-    <c:set var="title" value="Access Denied"/>
-    <head>
-        <title>${title}</title>
-    </head>
-    <body>
-        <h1>${title}</h1>
-        <div class="errors">You do not have sufficient privileges to access this page.</div>
-    </body>
-</html>
-</jsp:root>

+ 0 - 18
samples/jdbc-jc/src/main/webapp/WEB-INF/views/errors/404.jspx

@@ -1,18 +0,0 @@
-<jsp:root
-   xmlns:jsp="http://java.sun.com/JSP/Page"
-   xmlns:spring="http://www.springframework.org/tags"
-   xmlns:c="http://java.sun.com/jsp/jstl/core"
-   xmlns:form="http://www.springframework.org/tags/form"
-   version="2.0">
-   <jsp:directive.page language="java" contentType="text/html"/>
-<html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en">
-    <c:set var="title" value="Page Not Found"/>
-    <head>
-        <title>${title}</title>
-    </head>
-    <body>
-        <h1>${title}</h1>
-        <div class="errors">The requested page could not be found.</div>
-    </body>
-</html>
-</jsp:root>

+ 0 - 18
samples/jdbc-jc/src/main/webapp/WEB-INF/views/errors/500.jspx

@@ -1,18 +0,0 @@
-<jsp:root
-   xmlns:jsp="http://java.sun.com/JSP/Page"
-   xmlns:spring="http://www.springframework.org/tags"
-   xmlns:c="http://java.sun.com/jsp/jstl/core"
-   xmlns:form="http://www.springframework.org/tags/form"
-   version="2.0">
-   <jsp:directive.page language="java" contentType="text/html"/>
-<html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en">
-    <c:set var="title" value="Internal Error"/>
-    <head>
-        <title>${title}</title>
-    </head>
-    <body>
-        <h1>${title}</h1>
-        <div class="errors">An internal error occurred.</div>
-    </body>
-</html>
-</jsp:root>

+ 0 - 21
samples/ldap-jc/src/main/webapp/WEB-INF/tags/tab.tagx

@@ -1,21 +0,0 @@
-<jsp:root xmlns:c="http://java.sun.com/jsp/jstl/core"
-    xmlns:sec="http://www.springframework.org/security/tags"
-    xmlns:jsp="http://java.sun.com/JSP/Page" version="2.0">
-    <jsp:output omit-xml-declaration="yes" />
-    <jsp:directive.attribute name="url" type="java.lang.String" required="true" description="The url to go to"/>
-    <jsp:directive.attribute name="text" type="java.lang.String" required="true" description="The text for the tab"/>
-    <jsp:directive.attribute name="id" type="java.lang.String" required="true" description="The id for the tab"/>
-
-    <sec:authorize url="${url}">
-        <c:url var="url" value="${url}"/>
-        <c:choose>
-            <c:when test="${id == tab}">
-                <c:set var="css" value=" selected"/>
-            </c:when>
-            <c:otherwise>
-                <c:set var="css" value=""/>
-            </c:otherwise>
-        </c:choose>
-        <li class="tab${css}"><a href="${url}">${text}</a></li>
-    </sec:authorize>
-</jsp:root>

+ 0 - 18
samples/ldap-jc/src/main/webapp/WEB-INF/views/errors/403.jspx

@@ -1,18 +0,0 @@
-<jsp:root
-   xmlns:jsp="http://java.sun.com/JSP/Page"
-   xmlns:spring="http://www.springframework.org/tags"
-   xmlns:c="http://java.sun.com/jsp/jstl/core"
-   xmlns:form="http://www.springframework.org/tags/form"
-   version="2.0">
-   <jsp:directive.page language="java" contentType="text/html"/>
-<html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en">
-    <c:set var="title" value="Access Denied"/>
-    <head>
-        <title>${title}</title>
-    </head>
-    <body>
-        <h1>${title}</h1>
-        <div class="errors">You do not have sufficient privileges to access this page.</div>
-    </body>
-</html>
-</jsp:root>

+ 0 - 18
samples/ldap-jc/src/main/webapp/WEB-INF/views/errors/404.jspx

@@ -1,18 +0,0 @@
-<jsp:root
-   xmlns:jsp="http://java.sun.com/JSP/Page"
-   xmlns:spring="http://www.springframework.org/tags"
-   xmlns:c="http://java.sun.com/jsp/jstl/core"
-   xmlns:form="http://www.springframework.org/tags/form"
-   version="2.0">
-   <jsp:directive.page language="java" contentType="text/html"/>
-<html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en">
-    <c:set var="title" value="Page Not Found"/>
-    <head>
-        <title>${title}</title>
-    </head>
-    <body>
-        <h1>${title}</h1>
-        <div class="errors">The requested page could not be found.</div>
-    </body>
-</html>
-</jsp:root>

+ 0 - 18
samples/ldap-jc/src/main/webapp/WEB-INF/views/errors/500.jspx

@@ -1,18 +0,0 @@
-<jsp:root
-   xmlns:jsp="http://java.sun.com/JSP/Page"
-   xmlns:spring="http://www.springframework.org/tags"
-   xmlns:c="http://java.sun.com/jsp/jstl/core"
-   xmlns:form="http://www.springframework.org/tags/form"
-   version="2.0">
-   <jsp:directive.page language="java" contentType="text/html"/>
-<html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en">
-    <c:set var="title" value="Internal Error"/>
-    <head>
-        <title>${title}</title>
-    </head>
-    <body>
-        <h1>${title}</h1>
-        <div class="errors">An internal error occurred.</div>
-    </body>
-</html>
-</jsp:root>

+ 0 - 21
samples/openid-jc/src/main/webapp/WEB-INF/tags/tab.tagx

@@ -1,21 +0,0 @@
-<jsp:root xmlns:c="http://java.sun.com/jsp/jstl/core"
-    xmlns:sec="http://www.springframework.org/security/tags"
-    xmlns:jsp="http://java.sun.com/JSP/Page" version="2.0">
-    <jsp:output omit-xml-declaration="yes" />
-    <jsp:directive.attribute name="url" type="java.lang.String" required="true" description="The url to go to"/>
-    <jsp:directive.attribute name="text" type="java.lang.String" required="true" description="The text for the tab"/>
-    <jsp:directive.attribute name="id" type="java.lang.String" required="true" description="The id for the tab"/>
-
-    <sec:authorize url="${url}">
-        <c:url var="url" value="${url}"/>
-        <c:choose>
-            <c:when test="${id == tab}">
-                <c:set var="css" value=" selected"/>
-            </c:when>
-            <c:otherwise>
-                <c:set var="css" value=""/>
-            </c:otherwise>
-        </c:choose>
-        <li class="tab${css}"><a href="${url}">${text}</a></li>
-    </sec:authorize>
-</jsp:root>

+ 0 - 18
samples/openid-jc/src/main/webapp/WEB-INF/views/errors/403.jspx

@@ -1,18 +0,0 @@
-<jsp:root
-   xmlns:jsp="http://java.sun.com/JSP/Page"
-   xmlns:spring="http://www.springframework.org/tags"
-   xmlns:c="http://java.sun.com/jsp/jstl/core"
-   xmlns:form="http://www.springframework.org/tags/form"
-   version="2.0">
-   <jsp:directive.page language="java" contentType="text/html"/>
-<html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en">
-    <c:set var="title" value="Access Denied"/>
-    <head>
-        <title>${title}</title>
-    </head>
-    <body>
-        <h1>${title}</h1>
-        <div class="errors">You do not have sufficient privileges to access this page.</div>
-    </body>
-</html>
-</jsp:root>

+ 0 - 18
samples/openid-jc/src/main/webapp/WEB-INF/views/errors/404.jspx

@@ -1,18 +0,0 @@
-<jsp:root
-   xmlns:jsp="http://java.sun.com/JSP/Page"
-   xmlns:spring="http://www.springframework.org/tags"
-   xmlns:c="http://java.sun.com/jsp/jstl/core"
-   xmlns:form="http://www.springframework.org/tags/form"
-   version="2.0">
-   <jsp:directive.page language="java" contentType="text/html"/>
-<html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en">
-    <c:set var="title" value="Page Not Found"/>
-    <head>
-        <title>${title}</title>
-    </head>
-    <body>
-        <h1>${title}</h1>
-        <div class="errors">The requested page could not be found.</div>
-    </body>
-</html>
-</jsp:root>

+ 0 - 18
samples/openid-jc/src/main/webapp/WEB-INF/views/errors/500.jspx

@@ -1,18 +0,0 @@
-<jsp:root
-   xmlns:jsp="http://java.sun.com/JSP/Page"
-   xmlns:spring="http://www.springframework.org/tags"
-   xmlns:c="http://java.sun.com/jsp/jstl/core"
-   xmlns:form="http://www.springframework.org/tags/form"
-   version="2.0">
-   <jsp:directive.page language="java" contentType="text/html"/>
-<html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en">
-    <c:set var="title" value="Internal Error"/>
-    <head>
-        <title>${title}</title>
-    </head>
-    <body>
-        <h1>${title}</h1>
-        <div class="errors">An internal error occurred.</div>
-    </body>
-</html>
-</jsp:root>

+ 0 - 21
samples/preauth-jc/src/main/webapp/WEB-INF/tags/tab.tagx

@@ -1,21 +0,0 @@
-<jsp:root xmlns:c="http://java.sun.com/jsp/jstl/core"
-    xmlns:sec="http://www.springframework.org/security/tags"
-    xmlns:jsp="http://java.sun.com/JSP/Page" version="2.0">
-    <jsp:output omit-xml-declaration="yes" />
-    <jsp:directive.attribute name="url" type="java.lang.String" required="true" description="The url to go to"/>
-    <jsp:directive.attribute name="text" type="java.lang.String" required="true" description="The text for the tab"/>
-    <jsp:directive.attribute name="id" type="java.lang.String" required="true" description="The id for the tab"/>
-
-    <sec:authorize url="${url}">
-        <c:url var="url" value="${url}"/>
-        <c:choose>
-            <c:when test="${id == tab}">
-                <c:set var="css" value=" selected"/>
-            </c:when>
-            <c:otherwise>
-                <c:set var="css" value=""/>
-            </c:otherwise>
-        </c:choose>
-        <li class="tab${css}"><a href="${url}">${text}</a></li>
-    </sec:authorize>
-</jsp:root>

+ 0 - 18
samples/preauth-jc/src/main/webapp/WEB-INF/views/errors/403.jspx

@@ -1,18 +0,0 @@
-<jsp:root
-   xmlns:jsp="http://java.sun.com/JSP/Page"
-   xmlns:spring="http://www.springframework.org/tags"
-   xmlns:c="http://java.sun.com/jsp/jstl/core"
-   xmlns:form="http://www.springframework.org/tags/form"
-   version="2.0">
-   <jsp:directive.page language="java" contentType="text/html"/>
-<html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en">
-    <c:set var="title" value="Access Denied"/>
-    <head>
-        <title>${title}</title>
-    </head>
-    <body>
-        <h1>${title}</h1>
-        <div class="errors">You do not have sufficient privileges to access this page.</div>
-    </body>
-</html>
-</jsp:root>

+ 0 - 18
samples/preauth-jc/src/main/webapp/WEB-INF/views/errors/404.jspx

@@ -1,18 +0,0 @@
-<jsp:root
-   xmlns:jsp="http://java.sun.com/JSP/Page"
-   xmlns:spring="http://www.springframework.org/tags"
-   xmlns:c="http://java.sun.com/jsp/jstl/core"
-   xmlns:form="http://www.springframework.org/tags/form"
-   version="2.0">
-   <jsp:directive.page language="java" contentType="text/html"/>
-<html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en">
-    <c:set var="title" value="Page Not Found"/>
-    <head>
-        <title>${title}</title>
-    </head>
-    <body>
-        <h1>${title}</h1>
-        <div class="errors">The requested page could not be found.</div>
-    </body>
-</html>
-</jsp:root>

+ 0 - 18
samples/preauth-jc/src/main/webapp/WEB-INF/views/errors/500.jspx

@@ -1,18 +0,0 @@
-<jsp:root
-   xmlns:jsp="http://java.sun.com/JSP/Page"
-   xmlns:spring="http://www.springframework.org/tags"
-   xmlns:c="http://java.sun.com/jsp/jstl/core"
-   xmlns:form="http://www.springframework.org/tags/form"
-   version="2.0">
-   <jsp:directive.page language="java" contentType="text/html"/>
-<html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en">
-    <c:set var="title" value="Internal Error"/>
-    <head>
-        <title>${title}</title>
-    </head>
-    <body>
-        <h1>${title}</h1>
-        <div class="errors">An internal error occurred.</div>
-    </body>
-</html>
-</jsp:root>

+ 0 - 21
samples/rememberme-jc/src/main/webapp/WEB-INF/tags/tab.tagx

@@ -1,21 +0,0 @@
-<jsp:root xmlns:c="http://java.sun.com/jsp/jstl/core"
-    xmlns:sec="http://www.springframework.org/security/tags"
-    xmlns:jsp="http://java.sun.com/JSP/Page" version="2.0">
-    <jsp:output omit-xml-declaration="yes" />
-    <jsp:directive.attribute name="url" type="java.lang.String" required="true" description="The url to go to"/>
-    <jsp:directive.attribute name="text" type="java.lang.String" required="true" description="The text for the tab"/>
-    <jsp:directive.attribute name="id" type="java.lang.String" required="true" description="The id for the tab"/>
-
-    <sec:authorize url="${url}">
-        <c:url var="url" value="${url}"/>
-        <c:choose>
-            <c:when test="${id == tab}">
-                <c:set var="css" value=" selected"/>
-            </c:when>
-            <c:otherwise>
-                <c:set var="css" value=""/>
-            </c:otherwise>
-        </c:choose>
-        <li class="tab${css}"><a href="${url}">${text}</a></li>
-    </sec:authorize>
-</jsp:root>

+ 0 - 18
samples/rememberme-jc/src/main/webapp/WEB-INF/views/errors/403.jspx

@@ -1,18 +0,0 @@
-<jsp:root
-   xmlns:jsp="http://java.sun.com/JSP/Page"
-   xmlns:spring="http://www.springframework.org/tags"
-   xmlns:c="http://java.sun.com/jsp/jstl/core"
-   xmlns:form="http://www.springframework.org/tags/form"
-   version="2.0">
-   <jsp:directive.page language="java" contentType="text/html"/>
-<html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en">
-    <c:set var="title" value="Access Denied"/>
-    <head>
-        <title>${title}</title>
-    </head>
-    <body>
-        <h1>${title}</h1>
-        <div class="errors">You do not have sufficient privileges to access this page.</div>
-    </body>
-</html>
-</jsp:root>

+ 0 - 18
samples/rememberme-jc/src/main/webapp/WEB-INF/views/errors/404.jspx

@@ -1,18 +0,0 @@
-<jsp:root
-   xmlns:jsp="http://java.sun.com/JSP/Page"
-   xmlns:spring="http://www.springframework.org/tags"
-   xmlns:c="http://java.sun.com/jsp/jstl/core"
-   xmlns:form="http://www.springframework.org/tags/form"
-   version="2.0">
-   <jsp:directive.page language="java" contentType="text/html"/>
-<html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en">
-    <c:set var="title" value="Page Not Found"/>
-    <head>
-        <title>${title}</title>
-    </head>
-    <body>
-        <h1>${title}</h1>
-        <div class="errors">The requested page could not be found.</div>
-    </body>
-</html>
-</jsp:root>

+ 0 - 18
samples/rememberme-jc/src/main/webapp/WEB-INF/views/errors/500.jspx

@@ -1,18 +0,0 @@
-<jsp:root
-   xmlns:jsp="http://java.sun.com/JSP/Page"
-   xmlns:spring="http://www.springframework.org/tags"
-   xmlns:c="http://java.sun.com/jsp/jstl/core"
-   xmlns:form="http://www.springframework.org/tags/form"
-   version="2.0">
-   <jsp:directive.page language="java" contentType="text/html"/>
-<html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en">
-    <c:set var="title" value="Internal Error"/>
-    <head>
-        <title>${title}</title>
-    </head>
-    <body>
-        <h1>${title}</h1>
-        <div class="errors">An internal error occurred.</div>
-    </body>
-</html>
-</jsp:root>

+ 0 - 21
samples/x509-jc/src/main/webapp/WEB-INF/tags/tab.tagx

@@ -1,21 +0,0 @@
-<jsp:root xmlns:c="http://java.sun.com/jsp/jstl/core"
-    xmlns:sec="http://www.springframework.org/security/tags"
-    xmlns:jsp="http://java.sun.com/JSP/Page" version="2.0">
-    <jsp:output omit-xml-declaration="yes" />
-    <jsp:directive.attribute name="url" type="java.lang.String" required="true" description="The url to go to"/>
-    <jsp:directive.attribute name="text" type="java.lang.String" required="true" description="The text for the tab"/>
-    <jsp:directive.attribute name="id" type="java.lang.String" required="true" description="The id for the tab"/>
-
-    <sec:authorize url="${url}">
-        <c:url var="url" value="${url}"/>
-        <c:choose>
-            <c:when test="${id == tab}">
-                <c:set var="css" value=" selected"/>
-            </c:when>
-            <c:otherwise>
-                <c:set var="css" value=""/>
-            </c:otherwise>
-        </c:choose>
-        <li class="tab${css}"><a href="${url}">${text}</a></li>
-    </sec:authorize>
-</jsp:root>

+ 0 - 18
samples/x509-jc/src/main/webapp/WEB-INF/views/errors/403.jspx

@@ -1,18 +0,0 @@
-<jsp:root
-   xmlns:jsp="http://java.sun.com/JSP/Page"
-   xmlns:spring="http://www.springframework.org/tags"
-   xmlns:c="http://java.sun.com/jsp/jstl/core"
-   xmlns:form="http://www.springframework.org/tags/form"
-   version="2.0">
-   <jsp:directive.page language="java" contentType="text/html"/>
-<html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en">
-    <c:set var="title" value="Access Denied"/>
-    <head>
-        <title>${title}</title>
-    </head>
-    <body>
-        <h1>${title}</h1>
-        <div class="errors">You do not have sufficient privileges to access this page.</div>
-    </body>
-</html>
-</jsp:root>

+ 0 - 18
samples/x509-jc/src/main/webapp/WEB-INF/views/errors/404.jspx

@@ -1,18 +0,0 @@
-<jsp:root
-   xmlns:jsp="http://java.sun.com/JSP/Page"
-   xmlns:spring="http://www.springframework.org/tags"
-   xmlns:c="http://java.sun.com/jsp/jstl/core"
-   xmlns:form="http://www.springframework.org/tags/form"
-   version="2.0">
-   <jsp:directive.page language="java" contentType="text/html"/>
-<html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en">
-    <c:set var="title" value="Page Not Found"/>
-    <head>
-        <title>${title}</title>
-    </head>
-    <body>
-        <h1>${title}</h1>
-        <div class="errors">The requested page could not be found.</div>
-    </body>
-</html>
-</jsp:root>

+ 0 - 18
samples/x509-jc/src/main/webapp/WEB-INF/views/errors/500.jspx

@@ -1,18 +0,0 @@
-<jsp:root
-   xmlns:jsp="http://java.sun.com/JSP/Page"
-   xmlns:spring="http://www.springframework.org/tags"
-   xmlns:c="http://java.sun.com/jsp/jstl/core"
-   xmlns:form="http://www.springframework.org/tags/form"
-   version="2.0">
-   <jsp:directive.page language="java" contentType="text/html"/>
-<html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en">
-    <c:set var="title" value="Internal Error"/>
-    <head>
-        <title>${title}</title>
-    </head>
-    <body>
-        <h1>${title}</h1>
-        <div class="errors">An internal error occurred.</div>
-    </body>
-</html>
-</jsp:root>