You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@continuum.apache.org by ct...@apache.org on 2009/03/17 10:58:18 UTC

svn commit: r755173 - /continuum/trunk/continuum-webapp/src/main/webapp/WEB-INF/jsp/error/releaseError.jsp

Author: ctan
Date: Tue Mar 17 09:58:18 2009
New Revision: 755173

URL: http://svn.apache.org/viewvc?rev=755173&view=rev
Log:
[CONTINUUM-2136] added releaseError page

Added:
    continuum/trunk/continuum-webapp/src/main/webapp/WEB-INF/jsp/error/releaseError.jsp   (with props)

Added: continuum/trunk/continuum-webapp/src/main/webapp/WEB-INF/jsp/error/releaseError.jsp
URL: http://svn.apache.org/viewvc/continuum/trunk/continuum-webapp/src/main/webapp/WEB-INF/jsp/error/releaseError.jsp?rev=755173&view=auto
==============================================================================
--- continuum/trunk/continuum-webapp/src/main/webapp/WEB-INF/jsp/error/releaseError.jsp (added)
+++ continuum/trunk/continuum-webapp/src/main/webapp/WEB-INF/jsp/error/releaseError.jsp Tue Mar 17 09:58:18 2009
@@ -0,0 +1,43 @@
+<%--
+  ~ Licensed to the Apache Software Foundation (ASF) under one
+  ~ or more contributor license agreements.  See the NOTICE file
+  ~ distributed with this work for additional information
+  ~ regarding copyright ownership.  The ASF licenses this file
+  ~ to you under the Apache License, Version 2.0 (the
+  ~ "License"); you may not use this file except in compliance
+  ~ with the License.  You may obtain a copy of the License at
+  ~
+  ~   http://www.apache.org/licenses/LICENSE-2.0
+  ~
+  ~ Unless required by applicable law or agreed to in writing,
+  ~ software distributed under the License is distributed on an
+  ~ "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+  ~ KIND, either express or implied.  See the License for the
+  ~ specific language governing permissions and limitations
+  ~ under the License.
+  --%>
+
+<%@ taglib prefix="s" uri="/struts-tags" %>
+<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>
+
+<html>
+<head>
+  <title>Release Error</title>
+</head>
+
+<body>
+  <div id="h3">
+    <h3>Release Error</h3>
+    <div class="errors">
+      <c:if test="${!empty actionErrors}">
+        <div class="errormessage">
+          <s:iterator value="actionErrors">
+            <p><s:property/></p>
+          </s:iterator>
+        </div>
+      </c:if>
+    </div>
+  </div>
+</body>
+</html>
+  
\ No newline at end of file

Propchange: continuum/trunk/continuum-webapp/src/main/webapp/WEB-INF/jsp/error/releaseError.jsp
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: continuum/trunk/continuum-webapp/src/main/webapp/WEB-INF/jsp/error/releaseError.jsp
------------------------------------------------------------------------------
    svn:keywords = Author Date Id Revision