view gnv/src/main/webapp/WEB-INF/jsp/header.jsp @ 408:b5733f9f386b

Design improvements: Moved chart option panel and export actions beneath the parameterization panel on the left side. Do not render a useless 'draw' button after reaching the final state. gnv/trunk@594 c6561f87-3c4e-4783-a992-168aeb5c3f6f
author Ingo Weinzierl <ingo.weinzierl@intevation.de>
date Fri, 22 Jan 2010 09:49:34 +0000
parents c5edd8fcae8c
children 2183c764b403
line wrap: on
line source
<%@ page contentType="text/html; charset=UTF-8" pageEncoding="UTF-8" language="java"%>
<%@ taglib uri="http://jakarta.apache.org/struts/tags-html" prefix="html"%>
<%@ taglib uri="http://jakarta.apache.org/struts/tags-bean" prefix="bean"%>
<%@ taglib uri="http://jakarta.apache.org/struts/tags-bean-el" prefix="bean-el" %>
<%@ taglib uri="http://java.sun.com/jstl/core" prefix="c"%>
<%@ taglib uri="http://jakarta.apache.org/struts/tags-tiles" prefix="tiles"%>
<% Object exceptionMessage = request.getAttribute(CommunicationKeys.REQUEST_EXCEPTION_MESSAGE_ID);
    exceptionMessage = (exceptionMessage != null ? exceptionMessage.toString().replaceAll(" ", ".").replaceAll(":",".").toLowerCase() : null);
    exceptionMessage = (exceptionMessage != null && exceptionMessage.toString().endsWith(".") ? exceptionMessage.toString().substring(0,exceptionMessage.toString().length()-1) : exceptionMessage);
    
%>
<%@page import="de.intevation.gnv.action.CommunicationKeys"%><html:xhtml />
<!-- Kopfleiste-->
<div id="head" title="GDI BSH genericViewer"> 
	<div id="logo">
	
	
	</div>
    <h1>
        <a href="<html:rewrite action="/start"/>">
            <bean:message key="gnviewer.app.title" />
        </a>
    </h1>
	
	<div id="project">
		<label style="font-weight:bold;">
		         <bean:message key="gnviewer.project.load"/>
			| 
			     <bean:message	key="gnviewer.project.save" />
	 	</label>
		<div id="project_load">
			
		</div>
		<br/>
		
	</div>
	<div class="errormsg" id="load_error">
         <%if (exceptionMessage != null){ %>
            <bean-el:message key="<%=exceptionMessage.toString()%>"/>
         <%}%>
     </div>
</div>

http://dive4elements.wald.intevation.org