Mercurial > dive4elements > gnv-client
comparison gnv/src/main/webapp/WEB-INF/jsp/header.jsp @ 34:25fdec8b4c69
Added Global Errorhandling to the GNV-Client
gnv/trunk@170 c6561f87-3c4e-4783-a992-168aeb5c3f6f
author | Tim Englich <tim.englich@intevation.de> |
---|---|
date | Fri, 02 Oct 2009 08:38:57 +0000 |
parents | a52aecf5bb9b |
children | cfe6467d3b7b |
comparison
equal
deleted
inserted
replaced
33:32ffff3f67aa | 34:25fdec8b4c69 |
---|---|
2 language="java"%> | 2 language="java"%> |
3 <%@ taglib uri="http://jakarta.apache.org/struts/tags-html" prefix="html"%> | 3 <%@ taglib uri="http://jakarta.apache.org/struts/tags-html" prefix="html"%> |
4 <%@ taglib uri="http://jakarta.apache.org/struts/tags-bean" prefix="bean"%> | 4 <%@ taglib uri="http://jakarta.apache.org/struts/tags-bean" prefix="bean"%> |
5 <%@ taglib uri="http://java.sun.com/jstl/core" prefix="c"%> | 5 <%@ taglib uri="http://java.sun.com/jstl/core" prefix="c"%> |
6 <%@ taglib uri="http://jakarta.apache.org/struts/tags-tiles" prefix="tiles"%> | 6 <%@ taglib uri="http://jakarta.apache.org/struts/tags-tiles" prefix="tiles"%> |
7 <html:xhtml /> | 7 <% Object exceptionMessage = request.getAttribute(CommunicationKeys.REQUEST_EXCEPTION_MESSAGE_ID);%> |
8 <%@page import="de.intevation.gnv.action.CommunicationKeys"%><html:xhtml /> | |
8 <!-- Kopfleiste--> | 9 <!-- Kopfleiste--> |
9 <div id="head" title="GDI BSH genericViewer"> | 10 <div id="head" title="GDI BSH genericViewer"> |
10 <div id="logo"> | 11 <div id="logo"> |
11 | 12 |
12 | 13 |
27 <div id="project_load"> | 28 <div id="project_load"> |
28 | 29 |
29 </div> | 30 </div> |
30 <br/> | 31 <br/> |
31 <div class="errormsg" id="load_error"> | 32 <div class="errormsg" id="load_error"> |
32 <html:errors property="fileload"/> | 33 <%=exceptionMessage != null ? exceptionMessage.toString():"" %> |
33 </div> | 34 </div> |
34 </div> | 35 </div> |
35 </div> | 36 </div> |
36 | 37 |