view gnv/src/main/webapp/WEB-INF/jsp/includes/display_fis_inc.jsp @ 1022:28a0628b11b0

Added license file and license header. gnv/trunk@1258 c6561f87-3c4e-4783-a992-168aeb5c3f6f
author Ingo Weinzierl <ingo.weinzierl@intevation.de>
date Tue, 02 Nov 2010 17:15:08 +0000
parents ae1e616ecf94
children
line wrap: on
line source
<%--
 Copyright (c) 2010 by Intevation GmbH

 This program is free software under the LGPL (>=v2.1)
 Read the file LGPL.txt coming with the software for details
 or visit http://www.gnu.org/licenses/ if it does not exist.
--%>

<%@ taglib uri="http://jakarta.apache.org/struts/tags-bean" prefix="bean" %>
<%@ taglib uri="http://jakarta.apache.org/struts/tags-bean-el" prefix="bean-el" %>
<%@page import="de.intevation.gnv.action.sessionmodel.SessionModel"%>
<%@page import="de.intevation.gnv.action.sessionmodel.SessionModelFactory"%>
<%@page import="java.util.Collection"%>
<%@page import="de.intevation.gnv.artifactdatabase.objects.ArtifactObject"%>
<%@page import="java.util.Iterator"%>
<%
  SessionModel sm = SessionModelFactory.getInstance().getSessionModel(request);
  Collection<ArtifactObject> artifactFactories = sm.getArtifactFactories();
  String prefix = "gnviewer.fis.";
%>
<div id="basefilter">
    <form id="fisSelectionForm" action="<%=response.encodeURL("selectArtifactFactory.do")%>" method="post">
       <fieldset>
            <legend><bean:message key="gnviewer.productselection.fisselection.title"/></legend>
      <%if (artifactFactories != null){%>
           
           <select name="artifactFactory">
           <%Iterator<ArtifactObject> it = artifactFactories.iterator();
           while (it.hasNext()){
                ArtifactObject ao = it.next();%>
                <option value="<%=ao.getId()%>" <%=(ao.isSelected() ? "selected=\"selected\"" : "")%> ><bean-el:message key="<%=(prefix+ao.getName())%>"/></option>
           <%}%>
           </select>
    <%}%>
           <br/>
            <input style="margin-top: 5px;" type="image" src="<bean:message key="gnviewer.select.button.src"/>"/>
        </fieldset>
    </form>
</div>

http://dive4elements.wald.intevation.org