Project

General

Profile

1
<%@ page contentType="text/html; charset=UTF-8" %>
2
<%@ taglib uri="/tags/struts-bean" prefix="bean" %>
3
<%@ taglib uri="/tags/struts-html" prefix="html" %>
4
<%@ taglib uri="/tags/struts-logic" prefix="logic" %>
5

    
6
<!-- This .jsp expects to have a "StylesEditorForm" bean called "dataStylesEditorForm" available. Inside the bean are: -->
7
<!--     String[] validationReport -->
8

    
9

    
10

    
11
<!-- ALL THIS STUFF TAKEN FROM MAINLAYOUT.JSP -->
12
<!------------------------------------------------------------------------>
13
<html:html locale="true" xhtml="true">
14
  <head>
15
    <title>
16
      <bean:message key="geoserver.logo"/>
17
      Geoserver
18
    </title>
19
    <meta content="text/html; charset=UTF-8" http-equiv="content-type"/>
20
    <meta content="text/css" http-equiv="content-style-type"/>  
21
    <meta name="keywords"
22
          content="(GeoServer) (GIS) (Geographic Information Systems)"/>
23
    <meta name="author" content="David Blasby"/>
24
  
25
    <style type="text/css">
26
      <!-- @import url("<html:rewrite forward='style'/>"); -->
27
    </style>
28
  
29
    <link type="image/gif" href="<html:rewrite forward='icon'/>" rel="icon"/>
30
    <link href="<html:rewrite forward='favicon'/>" rel="SHORTCUT ICON"/>
31
    <html:base/>
32
  </head>
33
  <body>
34
 <table class="page">
35
  <tbody>
36
	<tr class="header">
37
        <td class="gutter">
38
          <span class="project">
39
            <a href="<bean:message key="link.geoserver"/>">
40
              <bean:message key="geoserver.logo"/>
41
            </a>
42
          </span>
43
          <span class="license">
44
            <a href="<bean:message key="link.license"/>">&copy;</a>
45
          </span>
46
		</td>
47
        <td style="width: 1em">
48
        </td>
49
		<td style="vertical-align: bottom; white-space: nowrap;">
50
          <span class="site">
51
<logic:notEmpty name="GeoServer" property="title">
52
              <bean:write name="GeoServer" property="title"/>
53
</logic:notEmpty>
54
<logic:empty name="GeoServer" property="title">
55
              <bean:message key="message.noTitle"/>
56
</logic:empty>            
57
          </span>			
58
		</td>	
59
		<td style="vertical-align: bottom; white-space: nowrap; text-align: right;">
60
			<span class="contact">
61
			   <a href="<bean:message key="label.credits.url"/>"><bean:message key="label.credits"/></a>
62
			</span>
63
<logic:notEmpty name="GeoServer" property="contactParty">
64
            <span class="contact">		
65
              <bean:message key="label.contact"/>: 	
66
              <html:link forward="contact">
67
                <bean:write name="GeoServer" property="contactParty"/>
68
              </html:link>
69
            </span>            
70
</logic:notEmpty>                
71
        </td>
72
	</tr>
73
	</table>
74
<!------------------------------------------------------------------------>
75

    
76
<!-- Print everything out! -->
77
          
78
<h1><bean:message key="sldValididity.title"/></h1>
79
<a href=<bean:message key="sldValiditity.help.url"/>><bean:message key="sldValiditity.help.text"/></a>
80
<br>          
81
<pre>
82
<logic:iterate id="it_value"  name="dataStylesEditorForm" property="validationReport"><logic:match name="it_value" location="start" value=" "><font color=red><b></logic:match>
83
<bean:write name="it_value"/><logic:match name="it_value" location="start" value=" "></font></b></logic:match></logic:iterate>
84
</pre>         
85
          
86

    
87
<!------------------------------------------------------------------------>
88
</body>
89
</html:html>
(22-22/26)