Project

General

Profile

« Previous | Next » 

Revision 8203

Redesigned the /admin configuration pages to better match our new MetacatUI design. Looks good in both /context/admin view and the #external view using metacatUI

View differences:

skins-configuration.jsp
46 46
<body>
47 47
<%@ include file="./header-section.jsp"%>
48 48

  
49
<img src="<%= request.getContextPath() %>/metacat-logo.png" width="100px" align="right"/> 
49
<img src="<%= request.getContextPath() %>/metacat-logo-darkgray.png" width="100px" align="right"/> 
50 50
<h2>Skins Configuration</h2>
51 51

  
52 52
<br class="skins-header">
......
58 58

  
59 59

  
60 60
<h3>Skins Configuration</h3>
61
<hr class="config-line">
62 61
<div class="heading-comment message-text">
63 62
	NOTE: Metacat v2.2.0 includes a new mechanism for customizing the look and feel of your  
64 63
	Metacat deployment. MetacatUI themes can be deployed separately from the Metacat server
......
142 141
				if (fieldType.equals("select")) {
143 142
%>
144 143
				<div class="form-row"> 
145
					<img class="question-mark" src="style/images/help.png" 
146
						 onClick="helpWindow('<%= request.getContextPath() %>','<%= metaDataProperty.getHelpFile() %>')""/>
147 144
					<div class="textinput-label"><label for="<%= metaDataProperty.getKey() %>" title="<%= metaDataProperty.getDescription() %>"><%= metaDataProperty.getLabel() %></label>  		
148 145
					<select class="textinput" name="<%= skinName %>.<%= metaDataProperty.getKey() %>">
149 146

  
......
157 154
					}
158 155
%>
159 156
					</select>
157
					<img class="question-mark" src="style/images/help.png" 
158
						 onClick="helpWindow('<%= request.getContextPath() %>','<%= metaDataProperty.getHelpFile() %>')""/>
160 159
				</div>
161 160
<%
162 161
					if (metaDataProperty.getDescription() != null) {
......
167 166
				} else if (fieldType.equals("password")) {
168 167
%>	
169 168
				<div class="form-row">
170
					<img class="question-mark" src="style/images/help.png" 
171
						 onClick="helpWindow('<%= request.getContextPath() %>','<%= metaDataProperty.getHelpFile() %>')"/>
172 169
					<div class="textinput-label"><label for="<%= metaDataProperty.getKey() %>" title="<%= metaDataProperty.getDescription() %>"><%= metaDataProperty.getLabel() %></label></div>
173 170
					<input class="textinput" id="<%= skinName %>.<%= metaDataProperty.getKey() %>" name="<%= skinName %>.<%= metaDataProperty.getKey() %>" 	             		    	    	           		    	             			
174 171
							type="<%= fieldType %>"/> 
172
					<img class="question-mark" src="style/images/help.png" 
173
						 onClick="helpWindow('<%= request.getContextPath() %>','<%= metaDataProperty.getHelpFile() %>')"/>
175 174
				</div>
176 175
<%
177 176
					if (metaDataProperty.getDescription() != null) {
......
182 181
				} else if (fieldType.equals("checkbox")) {
183 182
%>
184 183
				<div class="form-row">
185
					<img class="question-mark" src="style/images/help.png" 
186
						 alt="<%= metaDataProperty.getDescription() %>" 
187
						 onClick="helpWindow('<%= request.getContextPath() %>','<%= metaDataProperty.getHelpFile() %>')"/>
188 184
					<input class="checkradio" id="<%= skinName %>.<%= metaDataProperty.getKey() %>" name="<%= skinName %>.<%= metaDataProperty.getKey() %>" 	             		    	    	           		    	             			
189 185
						   type="<%= fieldType %>"
190 186
<%
......
196 192
%>
197 193
						   /> 
198 194
					<label class="checkradio-label" for="<%= metaDataProperty.getKey() %>" title="<%= metaDataProperty.getDescription() %>"><%= metaDataProperty.getLabel() %></label>
195
					<img class="question-mark" src="style/images/help.png" 
196
						 alt="<%= metaDataProperty.getDescription() %>" 
197
						 onClick="helpWindow('<%= request.getContextPath() %>','<%= metaDataProperty.getHelpFile() %>')"/>
199 198
				</div>
200 199
<%
201 200
					if (metaDataProperty.getDescription() != null) {
......
206 205
				} else {
207 206
%>
208 207
				<div class="form-row">
209
					<img class="question-mark" src="style/images/help.png" 
210
						 onClick="helpWindow('<%= request.getContextPath() %>','<%= metaDataProperty.getHelpFile() %>')"/>
211 208
					<label class="textinput-label" for="<%= metaDataProperty.getKey() %>" title="<%= metaDataProperty.getDescription() %>"><%= metaDataProperty.getLabel() %></label>
212 209
					<input class="textinput" id="<%= skinName %>.<%= metaDataProperty.getKey() %>" name="<%= skinName %>.<%= metaDataProperty.getKey() %>" 
213 210
							value="<%= skinProperties.get(metaDataProperty.getKey()) %>"	             		    	    	           		    	             			
214 211
							type="<%= fieldType %>"/>	
212
					<img class="question-mark" src="style/images/help.png" 
213
						 onClick="helpWindow('<%= request.getContextPath() %>','<%= metaDataProperty.getHelpFile() %>')"/>
215 214
				</div>  
216 215
<%
217 216
					if (metaDataProperty.getDescription() != null) {

Also available in: Unified diff