Changeset 5901
- Timestamp:
- Dec 8, 2011, 9:30:53 AM (12 years ago)
- Location:
- trunk
- Files:
-
- 3 added
- 1 deleted
- 73 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/clients/web/net/sf/basedb/clients/web/taglib/Help.java
r4889 r5901 45 45 tabcontrol=... 46 46 clazz=... 47 subclass=... 47 48 style=... 48 49 image=... 49 50 tooltip=... 50 onclick=...51 51 visible=... 52 52 > … … 90 90 </td> 91 91 </tr> 92 <tr> 93 <td>subclass</td> 94 <td>-</td> 95 <td>no</td> 96 <td> 97 Additional classes to put in the HTML class attribute. Doesn't 98 replace the main class attribute. 99 </td> 100 </tr> 92 101 <tr> 93 102 <td>style</td> … … 143 152 */ 144 153 public class Help 145 extends TagSupport154 extends StylableTag 146 155 { 147 156 /** … … 165 174 private String tabcontrol = null; 166 175 167 /**168 Optional <code>class</code> attribute169 */170 private String clazz = "help";171 172 /**173 Optional <code>style</code> attribute174 */175 private String style = null;176 176 177 177 /** 178 178 The path to the help icon 179 179 */ 180 private String image = "help. gif";180 private String image = "help.png"; 181 181 182 182 /** … … 195 195 private boolean visible = true; 196 196 197 public Help() 198 { 199 super("help"); 200 } 201 197 202 /* 198 203 Taglib initialization methods … … 215 220 return this.tabcontrol; 216 221 } 217 218 public void setClazz(String clazz) 219 { 220 this.clazz = clazz; 221 } 222 public String getClazz() 223 { 224 return this.clazz; 225 } 226 227 public void setStyle(String style) 228 { 229 this.style = style; 230 } 231 public String getStyle() 232 { 233 return this.style; 234 } 235 222 236 223 public void setImage(String image) 237 224 { … … 250 237 { 251 238 return this.tooltip; 252 }253 254 public void setOnClick(String onclick)255 {256 this.onClick = onclick;257 }258 public String getOnClick()259 {260 return this.onClick;261 239 } 262 240 … … 277 255 if (!isVisible()) return SKIP_BODY; 278 256 279 String theStyle = getStyle();280 281 if (getOnClick() != null)282 {283 theStyle = Values.getString(theStyle) + "cursor: pointer;";284 }285 257 StringBuilder sb = new StringBuilder(); 286 sb.append("<a href=\"javascript:"); 258 sb.append("<img"); 259 addIdAndStyles(sb); 260 sb.append(" onclick=\""); 261 287 262 if (getTabcontrol() != null) 288 263 { 289 264 sb.append("Main.openTabControlHelp('").append(pageContext.getRequest().getParameter("ID")); 290 sb.append("', '").append(getTabcontrol()).append("', '").append(getHelpid()).append("') \">");265 sb.append("', '").append(getTabcontrol()).append("', '").append(getHelpid()).append("')"); 291 266 } 292 267 else 293 268 { 294 269 sb.append("Main.openHelp('").append(pageContext.getRequest().getParameter("ID")); 295 sb.append("', '").append(getHelpid()).append("') \">");270 sb.append("', '").append(getHelpid()).append("')"); 296 271 } 297 sb.append("<img border=0"); 298 if (getClazz() != null) sb.append(" class=\"").append(getClazz()).append("\""); 299 if (theStyle != null) sb.append(" style=\"").append(theStyle).append("\""); 300 if (getTooltip() != null) sb.append(" title=\"").append(getTooltip()).append("\""); 301 if (getOnClick() != null) sb.append(" onclick=\"").append(getOnClick()).append("\""); 272 sb.append("\""); 302 273 sb.append(" src=\"").append(page.getRoot()).append("images/").append(getImage()).append("\""); 303 274 sb.append(">"); 304 sb.append("</a>");305 275 try 306 276 { -
trunk/www/WEB-INF/base.tld
r5900 r5901 328 328 <tagclass>net.sf.basedb.clients.web.taglib.Help</tagclass> 329 329 <attribute> 330 <name>id</name> 331 <required>false</required> 332 <rtexprvalue>true</rtexprvalue> 333 </attribute> 334 <attribute> 335 <name>clazz</name> 336 <required>false</required> 337 <rtexprvalue>true</rtexprvalue> 338 </attribute> 339 <attribute> 340 <name>subclass</name> 341 <required>false</required> 342 <rtexprvalue>true</rtexprvalue> 343 </attribute> 344 <attribute> 345 <name>style</name> 346 <required>false</required> 347 <rtexprvalue>true</rtexprvalue> 348 </attribute> 349 <attribute> 330 350 <name>helpid</name> 331 351 <required>false</required> … … 338 358 </attribute> 339 359 <attribute> 340 <name>clazz</name>341 <required>false</required>342 <rtexprvalue>true</rtexprvalue>343 </attribute>344 <attribute>345 <name>style</name>346 <required>false</required>347 <rtexprvalue>true</rtexprvalue>348 </attribute>349 <attribute>350 360 <name>image</name> 351 361 <required>false</required> … … 354 364 <attribute> 355 365 <name>tooltip</name> 356 <required>false</required>357 <rtexprvalue>true</rtexprvalue>358 </attribute>359 <attribute>360 <name>onclick</name>361 366 <required>false</required> 362 367 <rtexprvalue>true</rtexprvalue> -
trunk/www/admin/annotationtypecategories/view_category.jsp
r5511 r5901 212 212 wrapper="<%=new PrefixSuffixRenderer(jspContext, "<td>", "</td>") %>"/> 213 213 <tbl:button 214 image="help. gif"214 image="help.png" 215 215 onclick="<%="Main.openHelp('" + ID +"', 'annotationtypecategory.view.properties')"%>" 216 216 title="Help…" -
trunk/www/admin/annotationtypes/view_annotationtype.jsp
r5511 r5901 229 229 wrapper="<%=new PrefixSuffixRenderer(jspContext, "<td>", "</td>") %>"/> 230 230 <tbl:button 231 image="help. gif"231 image="help.png" 232 232 onclick="<%="Main.openHelp('" + ID +"', 'annotationtype.view.properties')"%>" 233 233 title="Help…" -
trunk/www/admin/clients/help/view_help.jsp
r5507 r5901 153 153 /> 154 154 <tbl:button 155 image="help. gif"155 image="help.png" 156 156 onclick="<%="Main.openHelp('" + ID + "', '"+HTML.javaScriptEncode(help.getExternalId())+"')"%>" 157 157 title="Preview…" … … 161 161 wrapper="<%=new PrefixSuffixRenderer(jspContext, "<td>", "</td>") %>"/> 162 162 <tbl:button 163 image="help. gif"163 image="help.png" 164 164 onclick="<%="Main.openHelp('" + ID +"', 'help.view.properties')"%>" 165 165 title="Help…" -
trunk/www/admin/clients/view_client.jsp
r5507 r5901 223 223 wrapper="<%=new PrefixSuffixRenderer(jspContext, "<td>", "</td>") %>"/> 224 224 <tbl:button 225 image="help. gif"225 image="help.png" 226 226 onclick="<%="Main.openHelp('" + ID +"', 'client.view.properties')"%>" 227 227 title="Help…" -
trunk/www/admin/datafiletypes/view_filetype.jsp
r5713 r5901 182 182 wrapper="<%=new PrefixSuffixRenderer(jspContext, "<td>", "</td>") %>"/> 183 183 <tbl:button 184 image="help. gif"184 image="help.png" 185 185 onclick="<%="Main.openHelp('" + ID +"', 'datafiletype.view.properties')"%>" 186 186 title="Help…" -
trunk/www/admin/diskusage/details/view_details.jsp
r5590 r5901 224 224 wrapper="<%=new PrefixSuffixRenderer(jspContext, "<td>", "</td>") %>"/> 225 225 <tbl:button 226 image="help. gif"226 image="help.png" 227 227 onclick="<%="Main.openHelp('" + ID +"', 'diskusage.details')"%>" 228 228 title="Help…" -
trunk/www/admin/extensions/details.jsp
r5839 r5901 203 203 /> 204 204 <tbl:button 205 image="help. gif"205 image="help.png" 206 206 onclick="<%="Main.openHelp('" + ID +"', 'extensions.details.extension')"%>" 207 207 title="Help…" … … 224 224 /> 225 225 <tbl:button 226 image="help. gif"226 image="help.png" 227 227 onclick="<%="Main.openHelp('" + ID +"', 'extensions.details.extensionspoint')"%>" 228 228 title="Help…" … … 263 263 /> 264 264 <tbl:button 265 image="help. gif"265 image="help.png" 266 266 onclick="<%="Main.openHelp('" + ID +"', 'extensions.details.main')"%>" 267 267 title="Help…" -
trunk/www/admin/extravaluetypes/view_extravaluetype.jsp
r5511 r5901 177 177 wrapper="<%=new PrefixSuffixRenderer(jspContext, "<td>", "</td>") %>"/> 178 178 <tbl:button 179 image="help. gif"179 image="help.png" 180 180 onclick="<%="Main.openHelp('" + ID +"', 'extravaluetype.view.properties')"%>" 181 181 title="Help…" -
trunk/www/admin/groups/view_group.jsp
r5507 r5901 183 183 wrapper="<%=new PrefixSuffixRenderer(jspContext, "<td>", "</td>") %>"/> 184 184 <tbl:button 185 image="help. gif"185 image="help.png" 186 186 onclick="<%="Main.openHelp('" + ID +"', 'group.view.properties')"%>" 187 187 title="Help…" -
trunk/www/admin/hardware/view_hardware.jsp
r5643 r5901 208 208 wrapper="<%=new PrefixSuffixRenderer(jspContext, "<td>", "</td>") %>"/> 209 209 <tbl:button 210 image="help. gif"210 image="help.png" 211 211 onclick="<%="Main.openHelp('" + ID +"', 'hardware.view.properties')"%>" 212 212 title="Help…" -
trunk/www/admin/itemsubtypes/view_subtype.jsp
r5713 r5901 176 176 wrapper="<%=new PrefixSuffixRenderer(jspContext, "<td>", "</td>") %>"/> 177 177 <tbl:button 178 image="help. gif"178 image="help.png" 179 179 onclick="<%="Main.openHelp('" + ID +"', 'itemsubtype.view.properties')"%>" 180 180 title="Help…" -
trunk/www/admin/jobagents/view_agent.jsp
r5610 r5901 240 240 wrapper="<%=new PrefixSuffixRenderer(jspContext, "<td>", "</td>") %>"/> 241 241 <tbl:button 242 image="help. gif"242 image="help.png" 243 243 onclick="<%="Main.openHelp('" + ID +"', 'jobagent.view.properties')"%>" 244 244 title="Help…" -
trunk/www/admin/mimetypes/view_mimetype.jsp
r5511 r5901 175 175 wrapper="<%=new PrefixSuffixRenderer(jspContext, "<td>", "</td>") %>"/> 176 176 <tbl:button 177 image="help. gif"177 image="help.png" 178 178 onclick="<%="Main.openHelp('" + ID +"', 'mimetype.view.properties')"%>" 179 179 title="Help…" -
trunk/www/admin/news/view_news.jsp
r5507 r5901 175 175 wrapper="<%=new PrefixSuffixRenderer(jspContext, "<td>", "</td>") %>"/> 176 176 <tbl:button 177 image="help. gif"177 image="help.png" 178 178 onclick="<%="Main.openHelp('" + ID +"', 'news.view.properties')"%>" 179 179 title="Help…" -
trunk/www/admin/platforms/variants/view_variant.jsp
r5763 r5901 187 187 wrapper="<%=new PrefixSuffixRenderer(jspContext, "<td>", "</td>") %>"/> 188 188 <tbl:button 189 image="help. gif"189 image="help.png" 190 190 onclick="<%="Main.openHelp('" + ID +"', 'platformvariant.view.properties')"%>" 191 191 title="Help…" -
trunk/www/admin/platforms/view_platform.jsp
r5713 r5901 209 209 wrapper="<%=new PrefixSuffixRenderer(jspContext, "<td>", "</td>") %>"/> 210 210 <tbl:button 211 image="help. gif"211 image="help.png" 212 212 onclick="<%="Main.openHelp('" + ID +"', 'platform.view.properties')"%>" 213 213 title="Help…" -
trunk/www/admin/pluginconfigurations/view_configuration.jsp
r5610 r5901 272 272 wrapper="<%=new PrefixSuffixRenderer(jspContext, "<td>", "</td>") %>"/> 273 273 <tbl:button 274 image="help. gif"274 image="help.png" 275 275 onclick="<%="Main.openHelp('" + ID +"', 'pluginconfiguration.view.properties')"%>" 276 276 title="Help…" -
trunk/www/admin/plugindefinitions/view_plugin.jsp
r5615 r5901 314 314 wrapper="<%=new PrefixSuffixRenderer(jspContext, "<td>", "</td>") %>"/> 315 315 <tbl:button 316 image="help. gif"316 image="help.png" 317 317 onclick="<%="Main.openHelp('" + ID +"', 'plugindefinition.view.properties')"%>" 318 318 title="Help…" -
trunk/www/admin/plugintypes/view_plugintype.jsp
r5613 r5901 181 181 wrapper="<%=new PrefixSuffixRenderer(jspContext, "<td>", "</td>") %>"/> 182 182 <tbl:button 183 image="help. gif"183 image="help.png" 184 184 onclick="<%="Main.openHelp('" + ID +"', 'plugintype.view.properties')"%>" 185 185 title="Help…" -
trunk/www/admin/protocols/view_protocol.jsp
r5630 r5901 228 228 wrapper="<%=new PrefixSuffixRenderer(jspContext, "<td>", "</td>") %>"/> 229 229 <tbl:button 230 image="help. gif"230 image="help.png" 231 231 onclick="<%="Main.openHelp('" + ID +"', 'protocol.view.properties')"%>" 232 232 title="Help…" -
trunk/www/admin/quantities/units/view_unit.jsp
r5511 r5901 197 197 wrapper="<%=new PrefixSuffixRenderer(jspContext, "<td>", "</td>") %>"/> 198 198 <tbl:button 199 image="help. gif"199 image="help.png" 200 200 onclick="<%="Main.openHelp('" + ID +"', 'unit.view.properties')"%>" 201 201 title="Help…" -
trunk/www/admin/quantities/view_quantity.jsp
r5511 r5901 190 190 wrapper="<%=new PrefixSuffixRenderer(jspContext, "<td>", "</td>") %>"/> 191 191 <tbl:button 192 image="help. gif"192 image="help.png" 193 193 onclick="<%="Main.openHelp('" + ID +"', 'quantity.view.properties')"%>" 194 194 title="Help…" -
trunk/www/admin/quota/view_quota.jsp
r5507 r5901 207 207 wrapper="<%=new PrefixSuffixRenderer(jspContext, "<td>", "</td>") %>"/> 208 208 <tbl:button 209 image="help. gif"209 image="help.png" 210 210 onclick="<%="Main.openHelp('" + ID +"', 'quota.view.properties')"%>" 211 211 title="Help…" -
trunk/www/admin/quotatypes/view_quotatype.jsp
r5511 r5901 128 128 wrapper="<%=new PrefixSuffixRenderer(jspContext, "<td>", "</td>") %>"/> 129 129 <tbl:button 130 image="help. gif"130 image="help.png" 131 131 onclick="<%="Main.openHelp('" + ID +"', 'quotatype.view.properties')"%>" 132 132 title="Help…" -
trunk/www/admin/reporterclonetemplates/view_template.jsp
r5885 r5901 225 225 wrapper="<%=new PrefixSuffixRenderer(jspContext, "<td>", "</td>") %>"/> 226 226 <tbl:button 227 image="help. gif"227 image="help.png" 228 228 onclick="<%="Main.openHelp('" + ID +"', 'reporterclonetemplate.view.properties')"%>" 229 229 title="Help…" -
trunk/www/admin/reportertypes/view_reportertype.jsp
r5511 r5901 175 175 wrapper="<%=new PrefixSuffixRenderer(jspContext, "<td>", "</td>") %>"/> 176 176 <tbl:button 177 image="help. gif"177 image="help.png" 178 178 onclick="<%="Main.openHelp('" + ID +"', 'reportertype.view.properties')"%>" 179 179 title="Help…" -
trunk/www/admin/roles/view_role.jsp
r5507 r5901 216 216 wrapper="<%=new PrefixSuffixRenderer(jspContext, "<td>", "</td>") %>"/> 217 217 <tbl:button 218 image="help. gif"218 image="help.png" 219 219 onclick="<%="Main.openHelp('" + ID +"', 'role.view.properties')"%>" 220 220 title="Help…" -
trunk/www/admin/software/view_software.jsp
r5643 r5901 207 207 wrapper="<%=new PrefixSuffixRenderer(jspContext, "<td>", "</td>") %>"/> 208 208 <tbl:button 209 image="help. gif"209 image="help.png" 210 210 onclick="<%="Main.openHelp('" + ID +"', 'software.view.properties')"%>" 211 211 title="Help…" -
trunk/www/admin/users/view_user.jsp
r5507 r5901 188 188 wrapper="<%=new PrefixSuffixRenderer(jspContext, "<td>", "</td>") %>"/> 189 189 <tbl:button 190 image="help. gif"190 image="help.png" 191 191 onclick="<%="Main.openHelp('" + ID +"', 'user.view.properties')"%>" 192 192 title="Help…" -
trunk/www/biomaterials/bioplateeventtypes/view_eventtype.jsp
r5525 r5901 182 182 wrapper="<%=new PrefixSuffixRenderer(jspContext, "<td>", "</td>") %>"/> 183 183 <tbl:button 184 image="help. gif"184 image="help.png" 185 185 onclick="<%="Main.openHelp('" + ID +"', 'bioplateeventtype.view.properties')"%>" 186 186 title="Help…" -
trunk/www/biomaterials/bioplates/view_bioplate.jsp
r5722 r5901 345 345 wrapper="<%=new PrefixSuffixRenderer(jspContext, "<td>", "</td>") %>"/> 346 346 <tbl:button 347 image="help. gif"347 image="help.png" 348 348 onclick="<%="Main.openHelp('" + ID +"', 'plate.view.properties')"%>" 349 349 title="Help…" -
trunk/www/biomaterials/bioplatetypes/view_platetype.jsp
r5709 r5901 183 183 wrapper="<%=new PrefixSuffixRenderer(jspContext, "<td>", "</td>") %>"/> 184 184 <tbl:button 185 image="help. gif"185 image="help.png" 186 186 onclick="<%="Main.openHelp('" + ID +"', 'bioplatetype.view.properties')"%>" 187 187 title="Help…" -
trunk/www/biomaterials/biosources/view_biosource.jsp
r5663 r5901 244 244 wrapper="<%=new PrefixSuffixRenderer(jspContext, "<td>", "</td>") %>"/> 245 245 <tbl:button 246 image="help. gif"246 image="help.png" 247 247 onclick="<%="Main.openHelp('" + ID +"', 'biosource.view.properties')"%>" 248 248 title="Help…" -
trunk/www/biomaterials/extracts/view_extract.jsp
r5750 r5901 289 289 wrapper="<%=new PrefixSuffixRenderer(jspContext, "<td>", "</td>") %>"/> 290 290 <tbl:button 291 image="help. gif"291 image="help.png" 292 292 onclick="<%="Main.openHelp('" + ID +"', 'extract.view.properties')"%>" 293 293 title="Help…" -
trunk/www/biomaterials/lists/view_list.jsp
r5529 r5901 259 259 wrapper="<%=new PrefixSuffixRenderer(jspContext, "<td>", "</td>") %>"/> 260 260 <tbl:button 261 image="help. gif"261 image="help.png" 262 262 onclick="<%="Main.openHelp('" + ID +"', 'biomateriallist.view.properties')"%>" 263 263 title="Help…" -
trunk/www/biomaterials/samples/view_sample.jsp
r5664 r5901 274 274 wrapper="<%=new PrefixSuffixRenderer(jspContext, "<td>", "</td>") %>"/> 275 275 <tbl:button 276 image="help. gif"276 image="help.png" 277 277 onclick="<%="Main.openHelp('" + ID +"', 'sample.view.properties')"%>" 278 278 title="Help…" -
trunk/www/biomaterials/tags/view_tag.jsp
r5641 r5901 212 212 wrapper="<%=new PrefixSuffixRenderer(jspContext, "<td>", "</td>") %>"/> 213 213 <tbl:button 214 image="help. gif"214 image="help.png" 215 215 onclick="<%="Main.openHelp('" + ID +"', 'tag.view.properties')"%>" 216 216 title="Help…" -
trunk/www/common/overview/overview.jsp
r5807 r5901 149 149 <ext:render extensions="<%=invoker%>" context="<%=jspContext%>" 150 150 wrapper="<%=new PrefixSuffixRenderer(jspContext, "<td>", "</td>") %>"/> 151 <tbl:button image="help. gif" title="Help…"151 <tbl:button image="help.png" title="Help…" 152 152 onclick="<%="Main.openHelp('" + ID +"', 'item.overview')"%>" 153 153 tooltip="Get help about this page" -
trunk/www/filemanager/files/view_file.jsp
r5630 r5901 273 273 wrapper="<%=new PrefixSuffixRenderer(jspContext, "<td>", "</td>") %>"/> 274 274 <tbl:button 275 image="help. gif"275 image="help.png" 276 276 onclick="<%="Main.openHelp('" + ID +"', 'file.view.properties')"%>" 277 277 title="Help…" -
trunk/www/filemanager/fileservers/view_fileserver.jsp
r5618 r5901 240 240 wrapper="<%=new PrefixSuffixRenderer(jspContext, "<td>", "</td>") %>"/> 241 241 <tbl:button 242 image="help. gif"242 image="help.png" 243 243 onclick="<%="Main.openHelp('" + ID +"', 'fileserver.view.properties')"%>" 244 244 title="Help…" -
trunk/www/include/styles/main.css
r5900 r5901 110 110 } 111 111 112 img.help 113 { 114 cursor: pointer; 115 } 112 116 113 117 /* -
trunk/www/include/styles/popup.css
r5900 r5901 29 29 {} 30 30 31 /* Main title of a popup dialog */ 32 .popup h1 33 { 34 position: absolute; 35 top: 0px; 36 left: 0px; 37 right: 0px; 38 /* height is specified in one of size_*.css */ 39 color: #f0f0f0; 40 font-weight: bold; 41 background-image: url('backgrounds/popup_h1.png'); 42 background-color: #224488; 43 background-position: right; 44 background-repeat: no-repeat; 45 margin: 0px; 46 white-space: nowrap; 47 } 48 49 .popup h1:before 50 { 51 content: '►'; 52 padding-left: 4px; 53 padding-right: 4px; 54 color: #2288aa; 55 xfont-size: smaller; 56 } 57 58 /* help icon is positioned to the right */ 59 .popup h1 img 60 { 61 position: absolute; 62 right: 6px; 63 } 64 31 65 /* 32 66 Buttons and related … … 41 75 right: 0px; 42 76 /* height is specified in one of size_*.css */ 43 padding: 10px 0px 6px 0px;44 77 } 45 78 -
trunk/www/include/styles/size_m.css
r5900 r5901 31 31 */ 32 32 33 body 34 { 35 font-size: 12px; 36 } 37 38 h1 39 { 40 font-size: 18px; 41 } 42 33 43 /* Dialog buttons in popup windows need fixed height so that we can align other content */ 44 .popup h1 45 { 46 font-size: 18px; 47 height: 25px; 48 padding-top: 3px; 49 } 50 51 .popup h1 img 52 { 53 /* help icon should be centered vertically */ 54 padding-top: 3px; 55 padding-bottom: 3px; 56 } 57 34 58 .popup .buttongroup.dialogbuttons 35 59 { 36 60 height: 24px; 61 padding-top: 10px; 62 padding-bottom: 6px; 37 63 } 38 64 … … 42 68 */ 43 69 44 45 46 body, td, th, h3, input, select, textarea { 47 font-size: 12px; 48 } 49 50 h1, .pathelement { 70 .pathelement { 51 71 font-size: 18px; 52 72 } -
trunk/www/lims/arraybatches/view_batch.jsp
r5499 r5901 256 256 wrapper="<%=new PrefixSuffixRenderer(jspContext, "<td>", "</td>") %>"/> 257 257 <tbl:button 258 image="help. gif"258 image="help.png" 259 259 onclick="<%="Main.openHelp('" + ID +"', 'arraybatch.view.properties')"%>" 260 260 title="Help…" -
trunk/www/lims/arraydesigns/view_design.jsp
r5623 r5901 284 284 wrapper="<%=new PrefixSuffixRenderer(jspContext, "<td>", "</td>") %>"/> 285 285 <tbl:button 286 image="help. gif"286 image="help.png" 287 287 onclick="<%="Main.openHelp('" + ID +"', 'arraydesign.view.properties')"%>" 288 288 title="Help…" -
trunk/www/lims/arrayslides/view_slide.jsp
r5642 r5901 232 232 wrapper="<%=new PrefixSuffixRenderer(jspContext, "<td>", "</td>") %>"/> 233 233 <tbl:button 234 image="help. gif"234 image="help.png" 235 235 onclick="<%="Main.openHelp('" + ID +"', 'arrayslide.view.properties')"%>" 236 236 title="Help…" -
trunk/www/lims/geometries/view_geometry.jsp
r5499 r5901 196 196 wrapper="<%=new PrefixSuffixRenderer(jspContext, "<td>", "</td>") %>"/> 197 197 <tbl:button 198 image="help. gif"198 image="help.png" 199 199 onclick="<%="Main.openHelp('" + ID +"', 'plategeometry.view.properties')"%>" 200 200 title="Help…" -
trunk/www/lims/platemappings/view_mapping.jsp
r5499 r5901 221 221 wrapper="<%=new PrefixSuffixRenderer(jspContext, "<td>", "</td>") %>"/> 222 222 <tbl:button 223 image="help. gif"223 image="help.png" 224 224 onclick="<%="Main.openHelp('" + ID +"', 'platemapping.view.properties')"%>" 225 225 title="Help…" -
trunk/www/lims/plates/events/view_event.jsp
r5499 r5901 170 170 wrapper="<%=new PrefixSuffixRenderer(jspContext, "<td>", "</td>") %>"/> 171 171 <tbl:button 172 image="help. gif"172 image="help.png" 173 173 onclick="<%="Main.openHelp('" + ID +"', 'plateevent.view.properties')"%>" 174 174 title="Help…" -
trunk/www/lims/plates/view_plate.jsp
r5499 r5901 255 255 wrapper="<%=new PrefixSuffixRenderer(jspContext, "<td>", "</td>") %>"/> 256 256 <tbl:button 257 image="help. gif"257 image="help.png" 258 258 onclick="<%="Main.openHelp('" + ID +"', 'plate.view.properties')"%>" 259 259 title="Help…" -
trunk/www/lims/plates/wells/view_well.jsp
r5499 r5901 179 179 wrapper="<%=new PrefixSuffixRenderer(jspContext, "<td>", "</td>") %>"/> 180 180 <tbl:button 181 image="help. gif"181 image="help.png" 182 182 onclick="<%="Main.openHelp('" + ID +"', 'well.view.properties')"%>" 183 183 title="Help…" -
trunk/www/lims/platetypes/eventtypes/view_eventtype.jsp
r5630 r5901 155 155 wrapper="<%=new PrefixSuffixRenderer(jspContext, "<td>", "</td>") %>"/> 156 156 <tbl:button 157 image="help. gif"157 image="help.png" 158 158 onclick="<%="Main.openHelp('" + ID +"', 'plateeventtype.view.properties')"%>" 159 159 title="Help…" -
trunk/www/lims/platetypes/view_platetype.jsp
r5499 r5901 231 231 wrapper="<%=new PrefixSuffixRenderer(jspContext, "<td>", "</td>") %>"/> 232 232 <tbl:button 233 image="help. gif"233 image="help.png" 234 234 onclick="<%="Main.openHelp('" + ID +"', 'platetype.view.properties')"%>" 235 235 title="Help…" -
trunk/www/my_base/index.jsp
r5479 r5901 295 295 { 296 296 %> 297 <h3 class="light docked"><base:icon image="help. gif" /> Help</h3>297 <h3 class="light docked"><base:icon image="help.png" /> Help</h3> 298 298 <div id="help" class="welcomesection" style="height: 80px; overflow: auto;"> 299 299 <% -
trunk/www/my_base/projects/view_project.jsp
r5650 r5901 228 228 wrapper="<%=new PrefixSuffixRenderer(jspContext, "<td>", "</td>") %>"/> 229 229 <tbl:button 230 image="help. gif"230 image="help.png" 231 231 onclick="<%="Main.openHelp('" + ID +"', 'project.view.properties')"%>" 232 232 title="Help…" -
trunk/www/my_base/user/preferences.jsp
r5900 r5901 227 227 </base:head> 228 228 <base:body onload="initItemTypes()"> 229 <p> 230 229 230 <h1>Preferences for <%=HTML.encodeTags(user.getName())%> <base:help tabcontrol="settings" /></h1> 231 <br><br> 231 232 <form action="submit_user.jsp?ID=<%=ID%>" method="post" name="preferences" 232 233 onsubmit="return false;"> … … 236 237 <input type="hidden" name="maxcolor" value="FFFF00"> 237 238 238 <h3 class="docked">Preferences for <%=HTML.encodeTags(user.getName())%> <base:help tabcontrol="settings" /></h3>239 239 <t:tabcontrol active="<%=activePage%>" remember="<%=activePage == null%>" id="settings" 240 240 contentstyle="<%="height: "+(int)(scale*260)+"px;"%>" -
trunk/www/my_base/user/reset_filters.jsp
r5900 r5901 88 88 </base:head> 89 89 <base:body> 90 <p> 90 <h1>Reset list settings for <%=HTML.encodeTags(user.getName())%> 91 <base:help helpid="userpreferences.resetfilters" /></h1> 92 <br><br> 91 93 92 94 <form action="submit_user.jsp?ID=<%=ID%>" method="post" name="preferences" … … 94 96 <input type=hidden name="cmd" value="ResetFilters"> 95 97 96 <h3 class="docked">Reset list settings for <%=HTML.encodeTags(user.getName())%> 97 <base:help helpid="userpreferences.resetfilters" /></h3> 98 98 99 <div class="boxed"> 99 100 -
trunk/www/my_base/user/settings.jsp
r5900 r5901 178 178 </script> 179 179 </base:head> 180 <base:body onload="Forms.fixTextareaBug('user');"> 181 <p> 180 <base:body> 181 <h1>Information for <%=HTML.encodeTags(user.getName())%> <base:help tabcontrol="settings" /></h1> 182 183 <br><br> 182 184 183 185 <form action="submit_user.jsp?ID=<%=ID%>" method="post" name="user" onsubmit="return false;"> 184 186 <input type=hidden name="cmd" value="SaveSettings"> 185 187 186 <h3 class="docked">Information for <%=HTML.encodeTags(user.getName())%> <base:help tabcontrol="settings" /></h3>187 188 <t:tabcontrol active="<%=activePage%>" id="settings" 188 189 contentstyle="<%="height: "+(int)(scale*240)+"px;"%>" position="bottom" remember="false"> -
trunk/www/views/derivedbioassays/view_bioassay.jsp
r5729 r5901 290 290 wrapper="<%=new PrefixSuffixRenderer(jspContext, "<td>", "</td>") %>"/> 291 291 <tbl:button 292 image="help. gif"292 image="help.png" 293 293 onclick="<%="Main.openHelp('" + ID +"', 'derivedbioassay.view.properties')"%>" 294 294 title="Help…" -
trunk/www/views/experiments/bioassays/view_bioassay.jsp
r5504 r5901 176 176 wrapper="<%=new PrefixSuffixRenderer(jspContext, "<td>", "</td>") %>"/> 177 177 <tbl:button 178 image="help. gif"178 image="help.png" 179 179 onclick="<%="Main.openHelp('" + ID +"', 'bioassay.view.properties')"%>" 180 180 title="Help…" -
trunk/www/views/experiments/bioassaysets/view_bioassayset.jsp
r5610 r5901 349 349 wrapper="<%=new PrefixSuffixRenderer(jspContext, "<td>", "</td>") %>"/> 350 350 <tbl:button 351 image="help. gif"351 image="help.png" 352 352 onclick="<%="Main.openHelp('" + ID +"', 'bioassayset.view.properties')"%>" 353 353 title="Help…" -
trunk/www/views/experiments/extravalues/view_extravalue.jsp
r5610 r5901 229 229 wrapper="<%=new PrefixSuffixRenderer(jspContext, "<td>", "</td>") %>"/> 230 230 <tbl:button 231 image="help. gif"231 image="help.png" 232 232 onclick="<%="Main.openHelp('" + ID +"', 'extravalue.view.properties')"%>" 233 233 title="Help…" -
trunk/www/views/experiments/transformations/view_transformation.jsp
r5610 r5901 232 232 wrapper="<%=new PrefixSuffixRenderer(jspContext, "<td>", "</td>") %>"/> 233 233 <tbl:button 234 image="help. gif"234 image="help.png" 235 235 onclick="<%="Main.openHelp('" + ID +"', 'transformation.view.properties')"%>" 236 236 title="Help…" -
trunk/www/views/experiments/view_experiment.jsp
r5897 r5901 384 384 wrapper="<%=new PrefixSuffixRenderer(jspContext, "<td>", "</td>") %>"/> 385 385 <tbl:button 386 image="help. gif"386 image="help.png" 387 387 onclick="<%="Main.openHelp('" + ID +"', 'experiment.view.properties')"%>" 388 388 title="Help…" -
trunk/www/views/formulas/view_formula.jsp
r5502 r5901 227 227 wrapper="<%=new PrefixSuffixRenderer(jspContext, "<td>", "</td>") %>"/> 228 228 <tbl:button 229 image="help. gif"229 image="help.png" 230 230 onclick="<%="Main.openHelp('" + ID +"', 'formula.view.properties')"%>" 231 231 title="Help…" -
trunk/www/views/permissiontemplates/view_template.jsp
r5502 r5901 210 210 wrapper="<%=new PrefixSuffixRenderer(jspContext, "<td>", "</td>") %>"/> 211 211 <tbl:button 212 image="help. gif"212 image="help.png" 213 213 onclick="<%="Main.openHelp('" + ID +"', 'permissiontemplate.view.properties')"%>" 214 214 title="Help…" -
trunk/www/views/physicalbioassays/view_bioassay.jsp
r5701 r5901 252 252 wrapper="<%=new PrefixSuffixRenderer(jspContext, "<td>", "</td>") %>"/> 253 253 <tbl:button 254 image="help. gif"254 image="help.png" 255 255 onclick="<%="Main.openHelp('" + ID +"', 'physicalbioassay.view.properties')"%>" 256 256 title="Help…" -
trunk/www/views/rawbioassays/view_rawbioassay.jsp
r5685 r5901 280 280 wrapper="<%=new PrefixSuffixRenderer(jspContext, "<td>", "</td>") %>"/> 281 281 <tbl:button 282 image="help. gif"282 image="help.png" 283 283 onclick="<%="Main.openHelp('" + ID +"', 'rawbioassay.view.properties')"%>" 284 284 title="Help…" -
trunk/www/views/reporterlists/view_reporterlist.jsp
r5502 r5901 249 249 wrapper="<%=new PrefixSuffixRenderer(jspContext, "<td>", "</td>") %>"/> 250 250 <tbl:button 251 image="help. gif"251 image="help.png" 252 252 onclick="<%="Main.openHelp('" + ID +"', 'reporterlist.view.properties')"%>" 253 253 title="Help…" -
trunk/www/views/reporters/view_reporter.jsp
r5426 r5901 160 160 /> 161 161 <tbl:button 162 image="help. gif"162 image="help.png" 163 163 onclick="<%="Main.openHelp('" + ID +"', 'reporter.view.properties')"%>" 164 164 title="Help…" -
trunk/www/views/trashcan/view_item.jsp
r5426 r5901 231 231 wrapper="<%=new PrefixSuffixRenderer(jspContext, "<td>", "</td>") %>"/> 232 232 <tbl:button 233 image="help. gif"233 image="help.png" 234 234 onclick="<%="Main.openHelp('" + ID +"', 'trash.view.properties')"%>" 235 235 title="Help…"
Note: See TracChangeset
for help on using the changeset viewer.