You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ofbiz.apache.org by jo...@apache.org on 2006/11/19 02:35:05 UTC

svn commit: r476681 - in /incubator/ofbiz/trunk/applications/ecommerce/webapp/ecomclone/error: ./ error.jsp

Author: jonesde
Date: Sat Nov 18 17:35:04 2006
New Revision: 476681

URL: http://svn.apache.org/viewvc?view=rev&rev=476681
Log:
Added error page to ecomclone since it's referred to locally

Added:
    incubator/ofbiz/trunk/applications/ecommerce/webapp/ecomclone/error/
    incubator/ofbiz/trunk/applications/ecommerce/webapp/ecomclone/error/error.jsp   (with props)

Added: incubator/ofbiz/trunk/applications/ecommerce/webapp/ecomclone/error/error.jsp
URL: http://svn.apache.org/viewvc/incubator/ofbiz/trunk/applications/ecommerce/webapp/ecomclone/error/error.jsp?view=auto&rev=476681
==============================================================================
--- incubator/ofbiz/trunk/applications/ecommerce/webapp/ecomclone/error/error.jsp (added)
+++ incubator/ofbiz/trunk/applications/ecommerce/webapp/ecomclone/error/error.jsp Sat Nov 18 17:35:04 2006
@@ -0,0 +1,51 @@
+<%--
+
+Copyright 2001-2006 The Apache Software Foundation
+
+Licensed 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.
+--%>
+
+<%@ page import="org.ofbiz.base.util.*" %>
+<html>
+<head>
+<title>Open For Business Message</title>
+<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
+</head>
+
+<% String errorMsg = (String) request.getAttribute("_ERROR_MESSAGE_"); %>
+
+<body bgcolor="#FFFFFF">
+<div align="center">
+  <br/>
+  <table width="100%" border="1" height="200">
+    <tr>
+      <td>
+        <table width="100%" border="0" height="200">
+          <tr bgcolor="#CC6666"> 
+            <td height="45"> 
+              <div align="center"><font face="Verdana, Arial, Helvetica, sans-serif" size="4" color="#FFFFFF"><b>:ERROR MESSAGE:</b></font></div>
+            </td>
+          </tr>
+          <tr> 
+            <td>
+              <div align="left"><font face="Verdana, Arial, Helvetica, sans-serif" size="2"><%=UtilFormatOut.replaceString(errorMsg, "\n", "<br/>")%></font></div>
+            </td>
+          </tr>
+        </table>
+      </td>
+    </tr>
+  </table>
+</div>
+<div align="center"></div>
+</body>
+</html>

Propchange: incubator/ofbiz/trunk/applications/ecommerce/webapp/ecomclone/error/error.jsp
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: incubator/ofbiz/trunk/applications/ecommerce/webapp/ecomclone/error/error.jsp
------------------------------------------------------------------------------
    svn:keywords = "Date Rev Author URL Id"

Propchange: incubator/ofbiz/trunk/applications/ecommerce/webapp/ecomclone/error/error.jsp
------------------------------------------------------------------------------
    svn:mime-type = text/plain