Changeset 5946
- Timestamp:
- Feb 3, 2012, 2:18:47 PM (11 years ago)
- Location:
- trunk
- Files:
-
- 55 added
- 63 deleted
- 267 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/clients/web/net/sf/basedb/clients/web/Base.java
r5934 r5946 1642 1642 if (root != null) 1643 1643 { 1644 viewIcon = "<img src=\"" + root + "images/view. gif" + "\" alt=\"view\" border=\"0\">";1645 downloadIcon = "<img src=\"" + root + "images/download. gif" + "\" alt=\"download\" border=\"0\">";1644 viewIcon = "<img src=\"" + root + "images/view.png" + "\" alt=\"view\">"; 1645 downloadIcon = "<img src=\"" + root + "images/download.png" + "\" alt=\"download\">"; 1646 1646 separator = " "; 1647 1647 } -
trunk/src/clients/web/net/sf/basedb/clients/web/taglib/Icon.java
r5945 r5946 33 33 <pre> 34 34 <%@ taglib prefix="base" uri="/WEB-INF/base.tld" %> 35 <base:icon image="required. gif" />35 <base:icon image="required.png" /> 36 36 </pre> 37 37 … … 238 238 StringBuilder sb = new StringBuilder(); 239 239 sb.append("<span "); 240 addIdAndStyles(sb, getOnclick() != null ? "link" : "", isEnabled() && getOnclick() != null? "" : "disabled");240 addIdAndStyles(sb, getOnclick() != null ? "link" : "", isEnabled() ? "" : "disabled"); 241 241 if (getTooltip() != null) sb.append(" title=\"").append(getTooltip()).append("\""); 242 242 if (getOnclick() != null && isEnabled()) sb.append(" onclick=\"").append(getOnclick()).append("\""); … … 260 260 if (!isVisible()) return EVAL_PAGE; 261 261 StringBuilder sb = new StringBuilder(); 262 sb.append("</span> \n");262 sb.append("</span>"); 263 263 try 264 264 { -
trunk/src/clients/web/net/sf/basedb/clients/web/taglib/Note.java
r5903 r5946 300 300 break; 301 301 case NOTE_TYPE_WARNING: 302 theIcon = "warning. gif";302 theIcon = "warning.png"; 303 303 break; 304 304 case NOTE_TYPE_QUESTION: 305 theIcon = "question. gif";305 theIcon = "question.png"; 306 306 break; 307 307 default: 308 theIcon = "info. gif";308 theIcon = "info.png"; 309 309 break; 310 310 } -
trunk/src/clients/web/net/sf/basedb/clients/web/taglib/PropertyValue.java
r5650 r5946 283 283 { 284 284 sb.append("<img class=\"icon\" src=\"").append(getRoot()); 285 sb.append("images/deleted. gif\" alt=\"This item has been scheduled for deletion\" border=\"0\">");285 sb.append("images/deleted.png\" alt=\"This item has been scheduled for deletion\">"); 286 286 } 287 287 } -
trunk/src/clients/web/net/sf/basedb/clients/web/taglib/path/Path.java
r5918 r5946 134 134 { 135 135 numElements++; 136 if (separator == null)137 {138 //separator = "<img class=\"separator\" src=\""+getRoot()+"images/pathseparator.gif\">";139 }140 136 return numElements > 1 ? separator : ""; 141 137 } -
trunk/src/clients/web/net/sf/basedb/clients/web/taglib/table/ColumnDef.java
r5940 r5946 653 653 sb.append(">"); 654 654 sb.append("</td><td>"); 655 sb.append("<img class=\"smartimage\" src=\"").append(table.getPage().getRoot()).append("images/pull_down. gif\"");655 sb.append("<img class=\"smartimage\" src=\"").append(table.getPage().getRoot()).append("images/pull_down.png\""); 656 656 sb.append(" onclick=\"SmartEnum.activateAndDisplay('"); 657 657 sb.append(table.getId()).append("','").append(inputName).append("')\">"); … … 682 682 sb.append(">"); 683 683 sb.append("</td><td>"); 684 sb.append("<img class=\"smartimage\" src=\"").append(table.getPage().getRoot()).append("images/pull_down. gif\"");684 sb.append("<img class=\"smartimage\" src=\"").append(table.getPage().getRoot()).append("images/pull_down.png\""); 685 685 sb.append(" onclick=\"MultiOptions.activateAndDisplay("); 686 686 sb.append("'").append(table.getId()).append("'"); -
trunk/src/clients/web/net/sf/basedb/clients/web/taglib/table/Navigator.java
r4889 r5946 280 280 if (currentPage > 0) 281 281 { 282 sb.append("<a href=\"javascript:Table.setPage('").append(table.getId()).append("', 0)\" title=\"Goto first page\" ><img src=\"").append(root).append("images/first. gif\" border=0 hspace=2></a>");283 sb.append("<a href=\"javascript:Table.setPage('").append(table.getId()).append("', ").append(currentPage-1).append(")\" title=\"Goto previous page\"><img src=\"").append(root).append("images/previous. gif\" border=0 hspace=2></a>");282 sb.append("<a href=\"javascript:Table.setPage('").append(table.getId()).append("', 0)\" title=\"Goto first page\" ><img src=\"").append(root).append("images/first.png\"></a>"); 283 sb.append("<a href=\"javascript:Table.setPage('").append(table.getId()).append("', ").append(currentPage-1).append(")\" title=\"Goto previous page\"><img src=\"").append(root).append("images/previous.png\"></a>"); 284 284 } 285 285 else 286 286 { 287 sb.append("<img src=\"").append(root).append("images/first _gray.gif\" border=0 alt=\"\" hspace=2>");288 sb.append("<img src=\"").append(root).append("images/previous _gray.gif\" border=0 alt=\"\" hspace=2>");287 sb.append("<img src=\"").append(root).append("images/first.png\" class=\"disabled\" alt=\"\">"); 288 sb.append("<img src=\"").append(root).append("images/previous.png\" class=\"disabled\" alt=\"\">"); 289 289 } 290 290 sb.append(" "); 291 291 if ((currentPage+1)*rowsPerPage < totalRows ) 292 292 { 293 sb.append("<a href=\"javascript:Table.setPage('").append(table.getId()).append("', ").append(currentPage+1).append(")\" title=\"Goto next page\"><img src=\"").append(root).append("images/next. gif\" border=0 hspace=2></a>");294 sb.append("<a href=\"javascript:Table.setPage('").append(table.getId()).append("', ").append(numPages-1).append(")\" title=\"Goto last page\"><img src=\"").append(root).append("images/last. gif\" border=0 hspace=2></a>");293 sb.append("<a href=\"javascript:Table.setPage('").append(table.getId()).append("', ").append(currentPage+1).append(")\" title=\"Goto next page\"><img src=\"").append(root).append("images/next.png\"></a>"); 294 sb.append("<a href=\"javascript:Table.setPage('").append(table.getId()).append("', ").append(numPages-1).append(")\" title=\"Goto last page\"><img src=\"").append(root).append("images/last.png\"></a>"); 295 295 } 296 296 else 297 297 { 298 sb.append("<img src=\"").append(root).append("images/next _gray.gif\" border=0 alt=\"\" hspace=2>");299 sb.append("<img src=\"").append(root).append("images/last _gray.gif\" border=0 alt=\"\" hspace=2>");298 sb.append("<img src=\"").append(root).append("images/next.png\" class=\"disabled\" alt=\"\">"); 299 sb.append("<img src=\"").append(root).append("images/last.png\" class=\"disabled\" alt=\"\">"); 300 300 } 301 301 sb.append(" "); -
trunk/src/clients/web/net/sf/basedb/clients/web/taglib/table/PresetSelector.java
r5474 r5946 358 358 sb.append(" hidden column(s) with a filter. Click here to show those columns.\">"); 359 359 sb.append("<img src=\"").append(table.getPage().getRoot()); 360 sb.append("images/hiddenfilter. gif\" border=\"0\">");360 sb.append("images/hiddenfilter.png\">"); 361 361 sb.append("</a>"); 362 362 } … … 367 367 sb.append(" column(s); Click here to clear all filters.\">"); 368 368 sb.append("<img src=\"").append(table.getPage().getRoot()); 369 sb.append("images/filter. gif\" border=\"0\">");369 sb.append("images/filter.png\">"); 370 370 sb.append("</a>"); 371 371 } -
trunk/src/clients/web/net/sf/basedb/clients/web/taglib/table/Table.java
r5940 r5946 480 480 { 481 481 return " <img src=\""+getPage().getRoot()+"images/" + 482 (sortDirection == ItemContext.SortDirection.ASC ? "sort_asc. gif" : "sort_desc.gif") +483 "\" border=\"0\"alt=\"\"> ";482 (sortDirection == ItemContext.SortDirection.ASC ? "sort_asc.png" : "sort_desc.png") + 483 "\" alt=\"\"> "; 484 484 } 485 485 -
trunk/src/core/net/sf/basedb/util/extensions/debug/BeanActionFactory.java
r5689 r5946 44 44 a setter method with the same name as the parameter tag, 45 45 following the usual syntax rules. Eg. the parameter value 46 <code><icon>/images/icon. gif</icon> will46 <code><icon>/images/icon.png</icon> will 47 47 be passed to the <code>setIcon(String)</code> method on the 48 48 bean. If there is no such method the factory will check if -
trunk/src/core/net/sf/basedb/util/extensions/debug/ProxyActionFactory.java
r5384 r5946 52 52 Parameters in the XML file will be passed on as return values for 53 53 method calls on the proxy, following the usual syntax rules. Eg. 54 The parameter value <code><icon>/images/icon. gif</icon> will54 The parameter value <code><icon>/images/icon.png</icon> will 55 55 be returned as a result of calling <code>getIcon()</code> on the 56 56 proxy. Null is returned for parameters that have not been specified -
trunk/src/core/net/sf/basedb/util/extensions/xml/PathConverter.java
r5482 r5946 32 32 <ul> 33 33 <li>If the value starts with '/', the root path is added to the start 34 of the value, for example, <code>/images/copy. gif --> /base2/images/copy.gif</code>.34 of the value, for example, <code>/images/copy.png --> /base2/images/copy.png</code>. 35 35 <li>If the value starts with '~', the path to the home directory for 36 36 the current extension is added, for example, 37 37 <code>~/images/myimage.png --> /base2/extensions/my-extensions.jar/images/myimage.png</code> 38 38 <li>If the path type is {@link PathType#CONTEXT_RELATIVE} the context-path is 39 removed from the final path. Eg. <code>/base2/images/copy. gif --> /images/copy.gif</code>39 removed from the final path. Eg. <code>/base2/images/copy.png --> /images/copy.png</code> 40 40 </ul> 41 41 … … 46 46 <p> 47 47 Note 2! Using the {@link VariableSetter} annotation and values like 48 <code>$ROOT$/images/copy. gif</code> would have the same result. The only48 <code>$ROOT$/images/copy.png</code> would have the same result. The only 49 49 reason to use this annotation is that it allows for a shorter notation. 50 50 -
trunk/src/core/net/sf/basedb/util/extensions/xml/VariableConverter.java
r4515 r5946 46 46 home directory (<code>/base2/extensions/xxxx</code>) of the current 47 47 extension. This means that the XML configuration file may 48 contain values like <code>$ROOT$/images/copy. gif</code>. The48 contain values like <code>$ROOT$/images/copy.png</code>. The 49 49 <code>$ROOT$</code> portion will automatically be replaced with the 50 50 correct path if the factory method is annotated with the {@link VariableSetter} -
trunk/www/admin/annotationtypecategories/edit_category.jsp
r5922 r5946 262 262 263 263 <div class="legend"> 264 <base:icon image="required. gif" />= required information264 <base:icon image="required.png" />= required information 265 265 </div> 266 266 -
trunk/www/admin/annotationtypecategories/list_categories.jsp
r5945 r5946 304 304 /> 305 305 <tbl:button 306 image="delete. gif"306 image="delete.png" 307 307 onclick="deleteItems()" 308 308 title="Delete" … … 310 310 /> 311 311 <tbl:button 312 image="restore. gif"312 image="restore.png" 313 313 onclick="restoreItems()" 314 314 title="Restore" … … 334 334 /> 335 335 <tbl:button 336 image="import. gif"336 image="import.png" 337 337 onclick="runPlugin('ImportItems')" 338 338 title="Import…" … … 341 341 /> 342 342 <tbl:button 343 image="export. gif"343 image="export.png" 344 344 onclick="runPlugin('ExportItems')" 345 345 title="Export…" … … 380 380 visible="<%=mode.hasCheck()%>" 381 381 ><base:icon 382 image="check_uncheck. gif"382 image="check_uncheck.png" 383 383 tooltip="Check/uncheck all" 384 384 onclick="Forms.checkUncheck(document.forms[formId])" style="align: left;" … … 444 444 visible="<%=mode.hasIcons()%>" 445 445 ><base:icon 446 image="deleted. gif"446 image="deleted.png" 447 447 onclick="<%=deletePermission ? deletePermanently : null%>" 448 448 tooltip="This item has been scheduled for deletion" -
trunk/www/admin/annotationtypecategories/view_category.jsp
r5945 r5946 155 155 <th class="itemstatus"> 156 156 <base:icon 157 image="shared. gif"157 image="shared.png" 158 158 visible="<%=annotationTypeCategory.isShared()%>" 159 159 tooltip="This item is shared to other users, groups and/or projects" 160 160 /> 161 161 <base:icon 162 image="deleted. gif"162 image="deleted.png" 163 163 onclick="deleteItemPermanently()" 164 164 tooltip="This item has been flagged for deletion. Click to delete it now." … … 166 166 visible="<%=isRemoved%>" 167 167 /> 168 <base:icon image="used. gif"168 <base:icon image="used.png" 169 169 onclick="showUsingItems()" 170 170 tooltip="This item is used by other items and can't be permanently deleted. Show the items that are using this one" … … 182 182 <tbl:button 183 183 disabled="<%=!deletePermission%>" 184 image="delete. gif"184 image="delete.png" 185 185 onclick="deleteItem()" 186 186 title="Delete" … … 190 190 <tbl:button 191 191 disabled="<%=!writePermission%>" 192 image="restore. gif"192 image="restore.png" 193 193 onclick="restoreItem()" 194 194 title="Restore" … … 211 211 /> 212 212 <tbl:button 213 image="import. gif"213 image="import.png" 214 214 onclick="runPlugin('ImportItem')" 215 215 title="Import…" … … 218 218 /> 219 219 <tbl:button 220 image="export. gif"220 image="export.png" 221 221 onclick="runPlugin('ExportItem')" 222 222 title="Export…" … … 321 321 <tbl:row> 322 322 <tbl:cell column="name"><base:icon 323 image="deleted. gif"323 image="deleted.png" 324 324 tooltip="This item has been scheduled for deletion" 325 325 visible="<%=annotationType.isRemoved()%>" -
trunk/www/admin/annotationtypes/edit_annotationtype.jsp
r5922 r5946 1100 1100 1101 1101 <div class="legend"> 1102 <base:icon image="required. gif" />= required information<br>1103 <base:icon image="unchangeable. gif" /> = can't be changed later1102 <base:icon image="required.png" />= required information<br> 1103 <base:icon image="unchangeable.png" /> = can't be changed later 1104 1104 </div> 1105 1105 -
trunk/www/admin/annotationtypes/list_annotationtypes.jsp
r5945 r5946 448 448 /> 449 449 <tbl:button 450 image="delete. gif"450 image="delete.png" 451 451 onclick="deleteItems()" 452 452 title="Delete" … … 454 454 /> 455 455 <tbl:button 456 image="restore. gif"456 image="restore.png" 457 457 onclick="restoreItems()" 458 458 title="Restore" … … 478 478 /> 479 479 <tbl:button 480 image="import. gif"480 image="import.png" 481 481 onclick="runPlugin('ImportItems')" 482 482 title="Import…" … … 485 485 /> 486 486 <tbl:button 487 image="export. gif"487 image="export.png" 488 488 onclick="runPlugin('ExportItems')" 489 489 title="Export…" … … 524 524 visible="<%=mode.hasCheck()%>" 525 525 ><base:icon 526 image="check_uncheck. gif"526 image="check_uncheck.png" 527 527 tooltip="Check/uncheck all" 528 528 onclick="Forms.checkUncheck(document.forms[formId])" style="align: left;" … … 590 590 visible="<%=mode.hasIcons()%>" 591 591 ><base:icon 592 image="deleted. gif"592 image="deleted.png" 593 593 onclick="<%=deletePermission ? deletePermanently : null%>" 594 594 tooltip="This item has been scheduled for deletion" -
trunk/www/admin/annotationtypes/view_annotationtype.jsp
r5945 r5946 172 172 <th class="itemstatus"> 173 173 <base:icon 174 image="shared. gif"174 image="shared.png" 175 175 visible="<%=annotationType.isShared()%>" 176 176 tooltip="This item is shared to other users, groups and/or projects" 177 177 /> 178 178 <base:icon 179 image="deleted. gif"179 image="deleted.png" 180 180 onclick="deleteItemPermanently()" 181 181 tooltip="This item has been flagged for deletion. Click to delete it now." … … 183 183 visible="<%=isRemoved%>" 184 184 /> 185 <base:icon image="used. gif"185 <base:icon image="used.png" 186 186 onclick="showUsingItems()" 187 187 tooltip="This item is used by other items and can't be permanently deleted. Show the items that are using this one" … … 199 199 <tbl:button 200 200 disabled="<%=!deletePermission%>" 201 image="delete. gif"201 image="delete.png" 202 202 onclick="deleteItem()" 203 203 title="Delete" … … 207 207 <tbl:button 208 208 disabled="<%=!writePermission%>" 209 image="restore. gif"209 image="restore.png" 210 210 onclick="restoreItem()" 211 211 title="Restore" … … 228 228 /> 229 229 <tbl:button 230 image="import. gif"230 image="import.png" 231 231 onclick="runPlugin('ImportItem')" 232 232 title="Import…" … … 235 235 /> 236 236 <tbl:button 237 image="export. gif"237 image="export.png" 238 238 onclick="runPlugin('ExportItem')" 239 239 title="Export…" … … 385 385 <tbl:row> 386 386 <tbl:cell column="name"><base:icon 387 image="deleted. gif"387 image="deleted.png" 388 388 tooltip="This item has been scheduled for deletion" 389 389 visible="<%=category.isRemoved()%>" -
trunk/www/admin/clients/edit_client.jsp
r5921 r5946 175 175 176 176 <div class="legend"> 177 <base:icon image="required. gif" />= required information177 <base:icon image="required.png" />= required information 178 178 </div> 179 179 -
trunk/www/admin/clients/help/edit_help.jsp
r5945 r5946 401 401 402 402 <div class="legend"> 403 <base:icon image="required. gif" />= required information403 <base:icon image="required.png" />= required information 404 404 </div> 405 405 -
trunk/www/admin/clients/help/list_help.jsp
r5945 r5946 277 277 <tbl:button 278 278 disabled="<%=!deletePermission%>" 279 image="delete. gif"279 image="delete.png" 280 280 title="Delete…" 281 281 onclick="deleteItems()" … … 289 289 /> 290 290 <tbl:button 291 image="import. gif"291 image="import.png" 292 292 onclick="runPlugin('ImportItems')" 293 293 title="Import…" … … 296 296 /> 297 297 <tbl:button 298 image="export. gif"298 image="export.png" 299 299 onclick="runPlugin('ExportItems')" 300 300 title="Export…" … … 335 335 visible="<%=mode.hasCheck()%>" 336 336 ><base:icon 337 image="check_uncheck. gif"337 image="check_uncheck.png" 338 338 tooltip="Check/uncheck all" 339 339 onclick="Forms.checkUncheck(document.forms[formId])" style="align: left;" -
trunk/www/admin/clients/help/view_help.jsp
r5945 r5946 131 131 <tbl:button 132 132 disabled="<%=!deletePermission%>" 133 image="delete. gif"133 image="delete.png" 134 134 onclick="deleteItem()" 135 135 title="Delete" … … 137 137 /> 138 138 <tbl:button 139 image="import. gif"139 image="import.png" 140 140 onclick="runPlugin('ImportItem')" 141 141 title="Import…" … … 144 144 /> 145 145 <tbl:button 146 image="export. gif"146 image="export.png" 147 147 onclick="runPlugin('ExportItem')" 148 148 title="Export…" -
trunk/www/admin/clients/list_clients.jsp
r5945 r5946 289 289 /> 290 290 <tbl:button 291 image="delete. gif"291 image="delete.png" 292 292 onclick="deleteItems()" 293 293 title="Delete" … … 295 295 /> 296 296 <tbl:button 297 image="restore. gif"297 image="restore.png" 298 298 onclick="restoreItems()" 299 299 title="Restore" … … 319 319 /> 320 320 <tbl:button 321 image="import. gif"321 image="import.png" 322 322 onclick="runPlugin('ImportItems')" 323 323 title="Import…" … … 326 326 /> 327 327 <tbl:button 328 image="export. gif"328 image="export.png" 329 329 onclick="runPlugin('ExportItems')" 330 330 title="Export…" … … 365 365 visible="<%=mode.hasCheck()%>" 366 366 ><base:icon 367 image="check_uncheck. gif"367 image="check_uncheck.png" 368 368 tooltip="Check/uncheck all" 369 369 onclick="Forms.checkUncheck(document.forms[formId])" style="align: left;" … … 429 429 visible="<%=mode.hasIcons()%>" 430 430 ><base:icon 431 image="deleted. gif"431 image="deleted.png" 432 432 onclick="<%=deletePermission ? deletePermanently : null%>" 433 433 tooltip="This item has been scheduled for deletion" -
trunk/www/admin/clients/view_client.jsp
r5945 r5946 166 166 <th class="itemstatus"> 167 167 <base:icon 168 image="shared. gif"168 image="shared.png" 169 169 visible="<%=client.isShared()%>" 170 170 tooltip="This item is shared to other users, groups and/or projects" 171 171 /> 172 172 <base:icon 173 image="deleted. gif"173 image="deleted.png" 174 174 onclick="deleteItemPermanently()" 175 175 tooltip="This item has been flagged for deletion. Click to delete it now." … … 177 177 visible="<%=isRemoved%>" 178 178 /> 179 <base:icon image="used. gif"179 <base:icon image="used.png" 180 180 onclick="showUsingItems()" 181 181 tooltip="This item is used by other items and can't be permanently deleted. Show the items that are using this one" … … 193 193 <tbl:button 194 194 disabled="<%=!deletePermission%>" 195 image="delete. gif"195 image="delete.png" 196 196 onclick="deleteItem()" 197 197 title="Delete" … … 201 201 <tbl:button 202 202 disabled="<%=!writePermission%>" 203 image="restore. gif"203 image="restore.png" 204 204 onclick="restoreItem()" 205 205 title="Restore" … … 222 222 /> 223 223 <tbl:button 224 image="import. gif"224 image="import.png" 225 225 onclick="runPlugin('ImportItem')" 226 226 title="Import…" … … 229 229 /> 230 230 <tbl:button 231 image="export. gif"231 image="export.png" 232 232 onclick="runPlugin('ExportItem')" 233 233 title="Export…" -
trunk/www/admin/datafiletypes/edit_filetype.jsp
r5922 r5946 263 263 264 264 <div class="legend"> 265 <base:icon image="required. gif" />= required information265 <base:icon image="required.png" />= required information 266 266 <%if (fileType == null) {%><br> 267 <base:icon image="unchangeable. gif" /> = can't be changed later267 <base:icon image="unchangeable.png" /> = can't be changed later 268 268 <%}%> 269 269 </div> -
trunk/www/admin/datafiletypes/list_filetypes.jsp
r5945 r5946 315 315 <tbl:button 316 316 disabled="<%=!deletePermission%>" 317 image="delete. gif"317 image="delete.png" 318 318 onclick="deleteItems()" 319 319 title="Delete" … … 322 322 <tbl:button 323 323 disabled="<%=!writePermission%>" 324 image="restore. gif"324 image="restore.png" 325 325 onclick="restoreItems()" 326 326 title="Restore" … … 334 334 /> 335 335 <tbl:button 336 image="import. gif"336 image="import.png" 337 337 onclick="runPlugin('ImportItems')" 338 338 title="Import…" … … 341 341 /> 342 342 <tbl:button 343 image="export. gif"343 image="export.png" 344 344 onclick="runPlugin('ExportItems')" 345 345 title="Export…" … … 380 380 visible="<%=mode.hasCheck()%>" 381 381 ><base:icon 382 image="check_uncheck. gif"382 image="check_uncheck.png" 383 383 tooltip="Check/uncheck all" 384 384 onclick="Forms.checkUncheck(document.forms[formId])" style="align: left;" … … 440 440 visible="<%=mode.hasIcons()%>" 441 441 ><base:icon 442 image="deleted. gif"442 image="deleted.png" 443 443 onclick="<%=deletePermission ? deletePermanently : null%>" 444 444 tooltip="This item has been scheduled for deletion" -
trunk/www/admin/datafiletypes/view_filetype.jsp
r5945 r5946 139 139 <th class="itemstatus"> 140 140 <base:icon 141 image="deleted. gif"141 image="deleted.png" 142 142 onclick="deleteItemPermanently()" 143 143 tooltip="This item has been flagged for deletion. Click to delete it now." … … 145 145 visible="<%=isRemoved%>" 146 146 /> 147 <base:icon image="used. gif"147 <base:icon image="used.png" 148 148 onclick="showUsingItems()" 149 149 tooltip="This item is used by other items and can't be permanently deleted. Show the items that are using this one" … … 161 161 <tbl:button 162 162 disabled="<%=!deletePermission%>" 163 image="delete. gif"163 image="delete.png" 164 164 onclick="deleteItem()" 165 165 title="Delete" … … 169 169 <tbl:button 170 170 disabled="<%=!writePermission%>" 171 image="restore. gif"171 image="restore.png" 172 172 onclick="restoreItem()" 173 173 title="Restore" … … 176 176 /> 177 177 <tbl:button 178 image="import. gif"178 image="import.png" 179 179 onclick="runPlugin('ImportItem')" 180 180 title="Import…" … … 183 183 /> 184 184 <tbl:button 185 image="export. gif"185 image="export.png" 186 186 onclick="runPlugin('ExportItem')" 187 187 title="Export…" … … 296 296 <tbl:row> 297 297 <tbl:cell column="platform"><base:icon 298 image="deleted. gif"298 image="deleted.png" 299 299 tooltip="This item has been scheduled for deletion" 300 300 visible="<%=p.isRemoved()%>" 301 301 /><%=Base.getLinkedName(ID, p, false, true)%></tbl:cell> 302 302 <tbl:cell column="variant"><base:icon 303 image="deleted. gif"303 image="deleted.png" 304 304 tooltip="This item has been scheduled for deletion" 305 305 visible="<%=v!= null && v.isRemoved()%>" -
trunk/www/admin/diskusage/details/view_details.jsp
r5945 r5946 410 410 <tbl:toolbar> 411 411 <tbl:button 412 image="delete. gif"412 image="delete.png" 413 413 onclick="deleteItems()" 414 414 title="Delete" … … 417 417 /> 418 418 <tbl:button 419 image="restore. gif"419 image="restore.png" 420 420 onclick="restoreItems()" 421 421 title="Restore" … … 458 458 clazz="check" 459 459 ><base:icon 460 image="check_uncheck. gif"460 image="check_uncheck.png" 461 461 tooltip="Check/uncheck all" 462 462 onclick="Forms.checkUncheck(document.forms[formId], /item:/)" style="align: left;" … … 533 533 clazz="icons" 534 534 ><base:icon 535 image="deleted. gif"535 image="deleted.png" 536 536 tooltip="This item has been marked for deletion" 537 537 visible="<%=isRemoved%>" -
trunk/www/admin/diskusage/list_groups.jsp
r5945 r5946 287 287 visible="<%=mode.hasCheck()%>" 288 288 ><base:icon 289 image="check_uncheck. gif"289 image="check_uncheck.png" 290 290 tooltip="Check/uncheck all" 291 291 onclick="Forms.checkUncheck(document.forms[formId])" style="align: left;" … … 346 346 visible="<%=mode.hasIcons()%>" 347 347 ><base:icon 348 image="deleted. gif"348 image="deleted.png" 349 349 tooltip="This item has been scheduled for deletion" 350 350 visible="<%=item.isRemoved()%>" … … 449 449 { 450 450 %> 451 <base:icon image="bullet. gif" />451 <base:icon image="bullet.png" /> 452 452 <a href="javascript:viewDiskUsageDetails(<%=itemId%>)">View details</a> 453 453 <% -
trunk/www/admin/diskusage/list_users.jsp
r5945 r5946 419 419 visible="<%=mode.hasCheck()%>" 420 420 ><base:icon 421 image="check_uncheck. gif"421 image="check_uncheck.png" 422 422 tooltip="Check/uncheck all" 423 423 onclick="Forms.checkUncheck(document.forms[formId])" style="align: left;" … … 478 478 visible="<%=mode.hasIcons()%>" 479 479 ><base:icon 480 image="deleted. gif"480 image="deleted.png" 481 481 tooltip="This item has been scheduled for deletion" 482 482 visible="<%=item.isRemoved()%>" … … 586 586 { 587 587 %> 588 <base:icon image="bullet. gif" />588 <base:icon image="bullet.png" /> 589 589 <a href="javascript:viewDiskUsageDetails(<%=itemId%>)">View details</a> 590 590 <% -
trunk/www/admin/extensions/details.jsp
r5945 r5946 259 259 onclick="manualScan()" 260 260 title="Install/uninstall…" 261 image="new_wizard. gif"261 image="new_wizard.png" 262 262 tooltip="Install and uninstall extensions and plug-ins" 263 263 disabled="<%=!writePermission%>" … … 553 553 <td> 554 554 <table><tr><td> 555 <base:button image="bullet. gif"555 <base:button image="bullet.png" 556 556 onclick="scanResults()" 557 557 title="More details…" -
trunk/www/admin/extravaluetypes/edit_extravaluetype.jsp
r5922 r5946 341 341 342 342 <div class="legend"> 343 <base:icon image="required. gif" />= required information343 <base:icon image="required.png" />= required information 344 344 <%if (extraValueType == null) {%><br> 345 <base:icon image="unchangeable. gif" /> = can't be changed later345 <base:icon image="unchangeable.png" /> = can't be changed later 346 346 <%}%> 347 347 </div> -
trunk/www/admin/extravaluetypes/list_extravaluetypes.jsp
r5945 r5946 337 337 <tbl:button 338 338 disabled="<%=!deletePermission%>" 339 image="delete. gif"339 image="delete.png" 340 340 onclick="deleteItems()" 341 341 title="Delete" … … 344 344 <tbl:button 345 345 disabled="<%=!writePermission%>" 346 image="restore. gif"346 image="restore.png" 347 347 onclick="restoreItems()" 348 348 title="Restore" … … 356 356 /> 357 357 <tbl:button 358 image="import. gif"358 image="import.png" 359 359 onclick="runPlugin('ImportItems')" 360 360 title="Import…" … … 363 363 /> 364 364 <tbl:button 365 image="export. gif"365 image="export.png" 366 366 onclick="runPlugin('ExportItems')" 367 367 title="Export…" … … 402 402 visible="<%=mode.hasCheck()%>" 403 403 ><base:icon 404 image="check_uncheck. gif"404 image="check_uncheck.png" 405 405 tooltip="Check/uncheck all" 406 406 onclick="Forms.checkUncheck(document.forms[formId])" style="align: left;" … … 462 462 visible="<%=mode.hasIcons()%>" 463 463 ><base:icon 464 image="deleted. gif"464 image="deleted.png" 465 465 onclick="<%=deletePermission ? deletePermanently : null%>" 466 466 tooltip="This item has been scheduled for deletion" -
trunk/www/admin/extravaluetypes/view_extravaluetype.jsp
r5945 r5946 134 134 <th class="itemstatus"> 135 135 <base:icon 136 image="deleted. gif"136 image="deleted.png" 137 137 onclick="deleteItemPermanently()" 138 138 tooltip="This item has been flagged for deletion. Click to delete it now." … … 140 140 visible="<%=isRemoved%>" 141 141 /> 142 <base:icon image="used. gif"142 <base:icon image="used.png" 143 143 onclick="showUsingItems()" 144 144 tooltip="This item is used by other items and can't be permanently deleted. Show the items that are using this one" … … 156 156 <tbl:button 157 157 disabled="<%=!deletePermission%>" 158 image="delete. gif"158 image="delete.png" 159 159 onclick="deleteItem()" 160 160 title="Delete" … … 164 164 <tbl:button 165 165 disabled="<%=!writePermission%>" 166 image="restore. gif"166 image="restore.png" 167 167 onclick="restoreItem()" 168 168 title="Restore" … … 171 171 /> 172 172 <tbl:button 173 image="import. gif"173 image="import.png" 174 174 onclick="runPlugin('ImportItem')" 175 175 title="Import…" … … 178 178 /> 179 179 <tbl:button 180 image="export. gif"180 image="export.png" 181 181 onclick="runPlugin('ExportItem')" 182 182 title="Export…" -
trunk/www/admin/groups/edit_group.jsp
r5922 r5946 406 406 407 407 <div class="legend"> 408 <base:icon image="required. gif" />= required information408 <base:icon image="required.png" />= required information 409 409 </div> 410 410 -
trunk/www/admin/groups/list_groups.jsp
r5945 r5946 317 317 <tbl:button 318 318 disabled="<%=!deletePermission%>" 319 image="delete. gif"319 image="delete.png" 320 320 onclick="deleteItems()" 321 321 title="Delete" … … 324 324 <tbl:button 325 325 disabled="<%=!writePermission%>" 326 image="restore. gif"326 image="restore.png" 327 327 onclick="restoreItems()" 328 328 title="Restore" … … 336 336 /> 337 337 <tbl:button 338 image="import. gif"338 image="import.png" 339 339 onclick="runPlugin('ImportItems')" 340 340 title="Import…" … … 343 343 /> 344 344 <tbl:button 345 image="export. gif"345 image="export.png" 346 346 onclick="runPlugin('ExportItems')" 347 347 title="Export…" … … 382 382 visible="<%=mode.hasCheck()%>" 383 383 ><base:icon 384 image="check_uncheck. gif"384 image="check_uncheck.png" 385 385 tooltip="Check/uncheck all" 386 386 onclick="Forms.checkUncheck(document.forms[formId])" style="align: left;" … … 442 442 visible="<%=mode.hasIcons()%>" 443 443 ><base:icon 444 image="deleted. gif"444 image="deleted.png" 445 445 onclick="<%=deletePermission ? deletePermanently : null%>" 446 446 tooltip="This item has been scheduled for deletion" 447 447 visible="<%=item.isRemoved()%>" 448 448 /><base:icon 449 image="systemitem. gif"449 image="systemitem.png" 450 450 tooltip="This item is a system item" 451 451 visible="<%=item.isSystemItem()%>" -
trunk/www/admin/groups/view_group.jsp
r5945 r5946 140 140 <th class="itemstatus"> 141 141 <base:icon 142 image="deleted. gif"142 image="deleted.png" 143 143 onclick="deleteItemPermanently()" 144 144 tooltip="This item has been flagged for deletion. Click to delete it now." … … 146 146 visible="<%=isRemoved%>" 147 147 /> 148 <base:icon image="used. gif"148 <base:icon image="used.png" 149 149 onclick="showUsingItems()" 150 150 tooltip="This item is used by other items and can't be permanently deleted. Show the items that are using this one" … … 162 162 <tbl:button 163 163 disabled="<%=!deletePermission%>" 164 image="delete. gif"164 image="delete.png" 165 165 onclick="deleteItem()" 166 166 title="Delete" … … 170 170 <tbl:button 171 171 disabled="<%=!writePermission%>" 172 image="restore. gif"172 image="restore.png" 173 173 onclick="restoreItem()" 174 174 title="Restore" … … 177 177 /> 178 178 <tbl:button 179 image="import. gif"179 image="import.png" 180 180 onclick="runPlugin('ImportItem')" 181 181 title="Import…" … … 184 184 /> 185 185 <tbl:button 186 image="export. gif"186 image="export.png" 187 187 onclick="runPlugin('ExportItem')" 188 188 title="Export…" … … 301 301 <tbl:row> 302 302 <tbl:cell column="name"><base:icon 303 image="deleted. gif"303 image="deleted.png" 304 304 tooltip="This item has been scheduled for deletion" 305 305 visible="<%=user.isRemoved()%>" … … 315 315 <tbl:row> 316 316 <tbl:cell column="name"><base:icon 317 image="deleted. gif"317 image="deleted.png" 318 318 tooltip="This item has been scheduled for deletion" 319 319 visible="<%=child.isRemoved()%>" -
trunk/www/admin/hardware/edit_hardware.jsp
r5921 r5946 223 223 224 224 <div class="legend"> 225 <base:icon image="required. gif" />= required information225 <base:icon image="required.png" />= required information 226 226 </div> 227 227 -
trunk/www/admin/hardware/list_hardware.jsp
r5945 r5946 302 302 /> 303 303 <tbl:button 304 image="delete. gif"304 image="delete.png" 305 305 onclick="deleteItems()" 306 306 title="Delete" … … 308 308 /> 309 309 <tbl:button 310 image="restore. gif"310 image="restore.png" 311 311 onclick="restoreItems()" 312 312 title="Restore" … … 332 332 /> 333 333 <tbl:button 334 image="import. gif"334 image="import.png" 335 335 onclick="runPlugin('ImportItems')" 336 336 title="Import…" … … 339 339 /> 340 340 <tbl:button 341 image="export. gif"341 image="export.png" 342 342 onclick="runPlugin('ExportItems')" 343 343 title="Export…" … … 378 378 visible="<%=mode.hasCheck()%>" 379 379 ><base:icon 380 image="check_uncheck. gif"380 image="check_uncheck.png" 381 381 tooltip="Check/uncheck all" 382 382 onclick="Forms.checkUncheck(document.forms[formId])" style="align: left;" … … 442 442 visible="<%=mode.hasIcons()%>" 443 443 ><base:icon 444 image="deleted. gif"444 image="deleted.png" 445 445 onclick="<%=deletePermission ? deletePermanently : null%>" 446 446 tooltip="This item has been scheduled for deletion" -
trunk/www/admin/hardware/view_hardware.jsp
r5945 r5946 151 151 <th class="itemstatus"> 152 152 <base:icon 153 image="shared. gif"153 image="shared.png" 154 154 visible="<%=hardware.isShared()%>" 155 155 tooltip="This item is shared to other users, groups and/or projects" 156 156 /> 157 157 <base:icon 158 image="deleted. gif"158 image="deleted.png" 159 159 onclick="deleteItemPermanently()" 160 160 tooltip="This item has been flagged for deletion. Click to delete it now." … … 162 162 visible="<%=isRemoved%>" 163 163 /> 164 <base:icon image="used. gif"164 <base:icon image="used.png" 165 165 onclick="showUsingItems()" 166 166 tooltip="This item is used by other items and can't be permanently deleted. Show the items that are using this one" … … 178 178 <tbl:button 179 179 disabled="<%=!deletePermission%>" 180 image="delete. gif"180 image="delete.png" 181 181 onclick="deleteItem()" 182 182 title="Delete" … … 186 186 <tbl:button 187 187 disabled="<%=!writePermission%>" 188 image="restore. gif"188 image="restore.png" 189 189 onclick="restoreItem()" 190 190 title="Restore" … … 207 207 /> 208 208 <tbl:button 209 image="import. gif"209 image="import.png" 210 210 onclick="runPlugin('ImportItem')" 211 211 title="Import…" … … 214 214 /> 215 215 <tbl:button 216 image="export. gif"216 image="export.png" 217 217 onclick="runPlugin('ExportItem')" 218 218 title="Export…" -
trunk/www/admin/itemsubtypes/edit_subtype.jsp
r5922 r5946 466 466 467 467 <div class="legend"> 468 <base:icon image="required. gif" />= required information468 <base:icon image="required.png" />= required information 469 469 </div> 470 470 -
trunk/www/admin/itemsubtypes/list_subtypes.jsp
r5945 r5946 309 309 <tbl:button 310 310 disabled="<%=deletePermission ? false : true %>" 311 image="delete. gif"311 image="delete.png" 312 312 onclick="deleteItems()" 313 313 title="Delete" … … 316 316 <tbl:button 317 317 disabled="<%=!writePermission%>" 318 image="restore. gif"318 image="restore.png" 319 319 onclick="restoreItems()" 320 320 title="Restore" … … 328 328 /> 329 329 <tbl:button 330 image="import. gif"330 image="import.png" 331 331 onclick="runPlugin('ImportItems')" 332 332 title="Import…" … … 335 335 /> 336 336 <tbl:button 337 image="export. gif"337 image="export.png" 338 338 onclick="runPlugin('ExportItems')" 339 339 title="Export…" … … 374 374 visible="<%=mode.hasCheck()%>" 375 375 ><base:icon 376 image="check_uncheck. gif"376 image="check_uncheck.png" 377 377 tooltip="Check/uncheck all" 378 378 onclick="Forms.checkUncheck(document.forms[formId])" style="align: left;" … … 436 436 visible="<%=mode.hasIcons()%>" 437 437 ><base:icon 438 image="deleted. gif"438 image="deleted.png" 439 439 onclick="<%=deletePermission ? deletePermanently : null%>" 440 440 tooltip="This item has been scheduled for deletion" 441 441 visible="<%=item.isRemoved()%>" 442 442 /><base:icon 443 image="systemitem. gif"443 image="systemitem.png" 444 444 tooltip="This item is a system item" 445 445 visible="<%=item.isSystemItem()%>" -
trunk/www/admin/itemsubtypes/view_subtype.jsp
r5945 r5946 140 140 <th class="itemstatus"> 141 141 <base:icon 142 image="deleted. gif"142 image="deleted.png" 143 143 onclick="deleteItemPermanently()" 144 144 tooltip="This item has been flagged for deletion. Click to delete it now." … … 146 146 visible="<%=isRemoved%>" 147 147 /> 148 <base:icon image="used. gif"148 <base:icon image="used.png" 149 149 onclick="showUsingItems()" 150 150 tooltip="This item is used by other items and can't be permanently deleted. Show the items that are using this one" … … 162 162 <tbl:button 163 163 disabled="<%=!deletePermission%>" 164 image="delete. gif"164 image="delete.png" 165 165 onclick="deleteItem()" 166 166 title="Delete" … … 170 170 <tbl:button 171 171 disabled="<%=!writePermission%>" 172 image="restore. gif"172 image="restore.png" 173 173 onclick="restoreItem()" 174 174 title="Restore" … … 177 177 /> 178 178 <tbl:button 179 image="export. gif"179 image="export.png" 180 180 onclick="runPlugin('ExportItem')" 181 181 title="Export…" … … 305 305 <tbl:row> 306 306 <tbl:cell column="name"><base:icon 307 image="deleted. gif"307 image="deleted.png" 308 308 tooltip="This item has been scheduled for deletion" 309 309 visible="<%=parent.isRemoved()%>" … … 388 388 <tbl:row> 389 389 <tbl:cell column="name"><base:icon 390 image="deleted. gif"390 image="deleted.png" 391 391 tooltip="This item has been scheduled for deletion" 392 392 visible="<%=dft.isRemoved()%>" -
trunk/www/admin/jobagents/edit_agent.jsp
r5922 r5946 504 504 505 505 <div class="legend"> 506 <base:icon image="required. gif" />= required information506 <base:icon image="required.png" />= required information 507 507 </div> 508 508 -
trunk/www/admin/jobagents/list_agents.jsp
r5945 r5946 335 335 /> 336 336 <tbl:button 337 image="delete. gif"337 image="delete.png" 338 338 onclick="deleteItems()" 339 339 title="Delete" … … 341 341 /> 342 342 <tbl:button 343 image="restore. gif"343 image="restore.png" 344 344 onclick="restoreItems()" 345 345 title="Restore" … … 365 365 /> 366 366 <tbl:button 367 image="import. gif"367 image="import.png" 368 368 onclick="runPlugin('ImportItems')" 369 369 title="Import…" … … 372 372 /> 373 373 <tbl:button 374 image="export. gif"374 image="export.png" 375 375 onclick="runPlugin('ExportItems')" 376 376 title="Export…" … … 423 423 visible="<%=mode.hasCheck()%>" 424 424 ><base:icon 425 image="check_uncheck. gif"425 image="check_uncheck.png" 426 426 tooltip="Check/uncheck all" 427 427 onclick="Forms.checkUncheck(document.forms[formId])" style="align: left;" … … 487 487 visible="<%=mode.hasIcons()%>" 488 488 ><base:icon 489 image="deleted. gif"489 image="deleted.png" 490 490 onclick="<%=deletePermission ? deletePermanently : null%>" 491 491 tooltip="This item has been scheduled for deletion" -
trunk/www/admin/jobagents/view_agent.jsp
r5945 r5946 169 169 <th class="itemstatus"> 170 170 <base:icon 171 image="shared. gif"171 image="shared.png" 172 172 visible="<%=agent.isShared()%>" 173 173 tooltip="This item is shared to other users, groups and/or projects" 174 174 /> 175 <base:icon image="warning. gif"175 <base:icon image="warning.png" 176 176 visible="<%=!agent.isShared()%>" 177 177 tooltip="This item is NOT shared to other users, groups or projects. Only the owner will be able to run jobs on this agent" 178 178 /> 179 179 <base:icon 180 image="deleted. gif"180 image="deleted.png" 181 181 onclick="deleteItemPermanently()" 182 182 tooltip="This item has been flagged for deletion. Click to delete it now." … … 184 184 visible="<%=isRemoved%>" 185 185 /> 186 <base:icon image="used. gif"186 <base:icon image="used.png" 187 187 onclick="showUsingItems()" 188 188 tooltip="This item is used by other items and can't be permanently deleted. Show the items that are using this one" … … 200 200 <tbl:button 201 201 disabled="<%=!deletePermission%>" 202 image="delete. gif"202 image="delete.png" 203 203 onclick="deleteItem()" 204 204 title="Delete" … … 208 208 <tbl:button 209 209 disabled="<%=!writePermission%>" 210 image="restore. gif"210 image="restore.png" 211 211 onclick="restoreItem()" 212 212 title="Restore" … … 229 229 /> 230 230 <tbl:button 231 image="import. gif"231 image="import.png" 232 232 onclick="runPlugin('ImportItem')" 233 233 title="Import…" … … 236 236 /> 237 237 <tbl:button 238 image="export. gif"238 image="export.png" 239 239 onclick="runPlugin('ExportItem')" 240 240 title="Export…" … … 406 406 <tbl:row> 407 407 <tbl:cell column="plugin"><base:icon 408 image="deleted. gif"408 image="deleted.png" 409 409 tooltip="This item has been scheduled for deletion" 410 410 visible="<%=plugin != null && plugin.isRemoved()%>" -
trunk/www/admin/mimetypes/edit_mimetype.jsp
r5922 r5946 256 256 257 257 <div class="legend"> 258 <base:icon image="required. gif" />= required information258 <base:icon image="required.png" />= required information 259 259 </div> 260 260 -
trunk/www/admin/mimetypes/list_mimetypes.jsp
r5945 r5946 293 293 <tbl:button 294 294 disabled="<%=!deletePermission%>" 295 image="delete. gif"295 image="delete.png" 296 296 onclick="deleteItems()" 297 297 title="Delete" … … 300 300 <tbl:button 301 301 disabled="<%=!writePermission%>" 302 image="restore. gif"302 image="restore.png" 303 303 onclick="restoreItems()" 304 304 title="Restore" … … 312 312 /> 313 313 <tbl:button 314 image="import. gif"314 image="import.png" 315 315 onclick="runPlugin('ImportItems')" 316 316 title="Import…" … … 319 319 /> 320 320 <tbl:button 321 image="export. gif"321 image="export.png" 322 322 onclick="runPlugin('ExportItems')" 323 323 title="Export…" … … 358 358 visible="<%=mode.hasCheck()%>" 359 359 ><base:icon 360 image="check_uncheck. gif"360 image="check_uncheck.png" 361 361 tooltip="Check/uncheck all" 362 362 onclick="Forms.checkUncheck(document.forms[formId])" style="align: left;" … … 418 418 visible="<%=mode.hasIcons()%>" 419 419 ><base:icon 420 image="deleted. gif"420 image="deleted.png" 421 421 onclick="<%=deletePermission ? deletePermanently : null%>" 422 422 tooltip="This item has been scheduled for deletion" -
trunk/www/admin/mimetypes/view_mimetype.jsp
r5945 r5946 132 132 <th class="itemstatus"> 133 133 <base:icon 134 image="deleted. gif"134 image="deleted.png" 135 135 onclick="deleteItemPermanently()" 136 136 tooltip="This item has been flagged for deletion. Click to delete it now." … … 138 138 visible="<%=isRemoved%>" 139 139 /> 140 <base:icon image="used. gif"140 <base:icon image="used.png" 141 141 onclick="showUsingItems()" 142 142 tooltip="This item is used by other items and can't be permanently deleted. Show the items that are using this one" … … 154 154 <tbl:button 155 155 disabled="<%=!deletePermission%>" 156 image="delete. gif"156 image="delete.png" 157 157 onclick="deleteItem()" 158 158 title="Delete" … … 162 162 <tbl:button 163 163 disabled="<%=!writePermission%>" 164 image="restore. gif"164 image="restore.png" 165 165 onclick="restoreItem()" 166 166 title="Restore" … … 169 169 /> 170 170 <tbl:button 171 image="import. gif"171 image="import.png" 172 172 onclick="runPlugin('ImportItem')" 173 173 title="Import…" … … 176 176 /> 177 177 <tbl:button 178 image="export. gif"178 image="export.png" 179 179 onclick="runPlugin('ExportItem')" 180 180 title="Export…" -
trunk/www/admin/news/edit_news.jsp
r5921 r5946 261 261 262 262 <div class="legend"> 263 <base:icon image="required. gif" />= required information263 <base:icon image="required.png" />= required information 264 264 </div> 265 265 -
trunk/www/admin/news/list_news.jsp
r5945 r5946 277 277 <tbl:button 278 278 disabled="<%=!deletePermission%>" 279 image="delete. gif"279 image="delete.png" 280 280 onclick="deleteItems()" 281 281 title="Delete" … … 284 284 <tbl:button 285 285 disabled="<%=!writePermission%>" 286 image="restore. gif"286 image="restore.png" 287 287 onclick="restoreItems()" 288 288 title="Restore" … … 296 296 /> 297 297 <tbl:button 298 image="import. gif"298 image="import.png" 299 299 onclick="runPlugin('ImportItems')" 300 300 title="Import…" … … 303 303 /> 304 304 <tbl:button 305 image="export. gif"305 image="export.png" 306 306 onclick="runPlugin('ExportItems')" 307 307 title="Export…" … … 342 342 visible="<%=mode.hasCheck()%>" 343 343 ><base:icon 344 image="check_uncheck. gif"344 image="check_uncheck.png" 345 345 tooltip="Check/uncheck all" 346 346 onclick="Forms.checkUncheck(document.forms[formId])" style="align: left;" … … 402 402 visible="<%=mode.hasIcons()%>" 403 403 ><base:icon 404 image="deleted. gif"404 image="deleted.png" 405 405 onclick="<%=deletePermission ? deletePermanently : null%>" 406 406 tooltip="This item has been scheduled for deletion" -
trunk/www/admin/news/view_news.jsp
r5945 r5946 132 132 <th class="itemstatus"> 133 133 <base:icon 134 image="deleted. gif"134 image="deleted.png" 135 135 onclick="deleteItemPermanently()" 136 136 tooltip="This item has been flagged for deletion. Click to delete it now." … … 138 138 visible="<%=isRemoved%>" 139 139 /> 140 <base:icon image="used. gif"140 <base:icon image="used.png" 141 141 onclick="showUsingItems()" 142 142 tooltip="This item is used by other items and can't be permanently deleted. Show the items that are using this one" … … 154 154 <tbl:button 155 155 disabled="<%=!deletePermission%>" 156 image="delete. gif"156 image="delete.png" 157 157 onclick="deleteItem()" 158 158 title="Delete" … … 162 162 <tbl:button 163 163 disabled="<%=!writePermission%>" 164 image="restore. gif"164 image="restore.png" 165 165 onclick="restoreItem()" 166 166 title="Restore" … … 169 169 /> 170 170 <tbl:button 171 image="import. gif"171 image="import.png" 172 172 onclick="runPlugin('ImportItem')" 173 173 title="Import…" … … 176 176 /> 177 177 <tbl:button 178 image="export. gif"178 image="export.png" 179 179 onclick="runPlugin('ExportItem')" 180 180 title="Export…" -
trunk/www/admin/platforms/edit_platform.jsp
r5922 r5946 398 398 399 399 <div class="legend"> 400 <base:icon image="required. gif" />= required information400 <base:icon image="required.png" />= required information 401 401 <%if (platform == null) {%><br> 402 <base:icon image="unchangeable. gif" /> = can't be changed later402 <base:icon image="unchangeable.png" /> = can't be changed later 403 403 <%}%> 404 404 </div> -
trunk/www/admin/platforms/list_platforms.jsp
r5945 r5946 295 295 <tbl:button 296 296 disabled="<%=!deletePermission%>" 297 image="delete. gif"297 image="delete.png" 298 298 onclick="deleteItems()" 299 299 title="Delete" … … 302 302 <tbl:button 303 303 disabled="<%=!writePermission%>" 304 image="restore. gif"304 image="restore.png" 305 305 onclick="restoreItems()" 306 306 title="Restore" … … 314 314 /> 315 315 <tbl:button 316 image="import. gif"316 image="import.png" 317 317 onclick="runPlugin('ImportItems')" 318 318 title="Import…" … … 321 321 /> 322 322 <tbl:button 323 image="export. gif"323 image="export.png" 324 324 onclick="runPlugin('ExportItems')" 325 325 title="Export…" … … 360 360 visible="<%=mode.hasCheck()%>" 361 361 ><base:icon 362 image="check_uncheck. gif"362 image="check_uncheck.png" 363 363 tooltip="Check/uncheck all" 364 364 onclick="Forms.checkUncheck(document.forms[formId])" style="align: left;" … … 421 421 visible="<%=mode.hasIcons()%>" 422 422 ><base:icon 423 image="deleted. gif"423 image="deleted.png" 424 424 onclick="<%=deletePermission ? deletePermanently : null%>" 425 425 tooltip="This item has been scheduled for deletion" -
trunk/www/admin/platforms/variants/edit_variant.jsp
r5922 r5946 407 407 408 408 <div class="legend"> 409 <base:icon image="required. gif" />= required information409 <base:icon image="required.png" />= required information 410 410 <%if (variant == null) {%><br> 411 <base:icon image="unchangeable. gif" /> = can't be changed later411 <base:icon image="unchangeable.png" /> = can't be changed later 412 412 <%}%> 413 413 </div> -
trunk/www/admin/platforms/variants/list_variants.jsp
r5945 r5946 318 318 <tbl:button 319 319 disabled="<%=!deletePermission%>" 320 image="delete. gif"320 image="delete.png" 321 321 onclick="deleteItems()" 322 322 title="Delete" … … 325 325 <tbl:button 326 326 disabled="<%=!writePermission%>" 327 image="restore. gif"327 image="restore.png" 328 328 onclick="restoreItems()" 329 329 title="Restore" … … 337 337 /> 338 338 <tbl:button 339 image="import. gif"339 image="import.png" 340 340 onclick="runPlugin('ImportItems')" 341 341 title="Import…" … … 344 344 /> 345 345 <tbl:button 346 image="export. gif"346 image="export.png" 347 347 onclick="runPlugin('ExportItems')" 348 348 title="Export…" … … 383 383 visible="<%=mode.hasCheck()%>" 384 384 ><base:icon 385 image="check_uncheck. gif"385 image="check_uncheck.png" 386 386 tooltip="Check/uncheck all" 387 387 onclick="Forms.checkUncheck(document.forms[formId])" style="align: left;" … … 444 444 visible="<%=mode.hasIcons()%>" 445 445 ><base:icon 446 image="deleted. gif"446 image="deleted.png" 447 447 onclick="<%=deletePermission ? deletePermanently : null%>" 448 448 tooltip="This item has been scheduled for deletion" -
trunk/www/admin/platforms/variants/view_variant.jsp
r5945 r5946 144 144 <th class="itemstatus"> 145 145 <base:icon 146 image="deleted. gif"146 image="deleted.png" 147 147 onclick="deleteItemPermanently()" 148 148 tooltip="This item has been flagged for deletion. Click to delete it now." … … 150 150 visible="<%=isRemoved%>" 151 151 /> 152 <base:icon image="used. gif"152 <base:icon image="used.png" 153 153 onclick="showUsingItems()" 154 154 tooltip="This item is used by other items and can't be permanently deleted. Show the items that are using this one" … … 166 166 <tbl:button 167 167 disabled="<%=!deletePermission%>" 168 image="delete. gif"168 image="delete.png" 169 169 onclick="deleteItem()" 170 170 title="Delete" … … 174 174 <tbl:button 175 175 disabled="<%=!writePermission%>" 176 image="restore. gif"176 image="restore.png" 177 177 onclick="restoreItem()" 178 178 title="Restore" … … 181 181 /> 182 182 <tbl:button 183 image="import. gif"183 image="import.png" 184 184 onclick="runPlugin('ImportItem')" 185 185 title="Import…" … … 188 188 /> 189 189 <tbl:button 190 image="export. gif"190 image="export.png" 191 191 onclick="runPlugin('ExportItem')" 192 192 title="Export…" … … 324 324 <tbl:row> 325 325 <tbl:cell column="variant"><base:icon 326 image="deleted. gif"326 image="deleted.png" 327 327 tooltip="This item has been scheduled for deletion" 328 328 visible="<%=thisVariant != null && thisVariant.isRemoved()%>" 329 329 /><%=thisVariant == null ? "<i>- all -</i>" : Base.getLinkedName(ID, thisVariant, false, true)%></tbl:cell> 330 330 <tbl:cell column="name"><base:icon 331 image="deleted. gif"331 image="deleted.png" 332 332 tooltip="This item has been scheduled for deletion" 333 333 visible="<%=dft != null && dft.isRemoved()%>" -
trunk/www/admin/platforms/view_platform.jsp
r5945 r5946 159 159 <th class="itemstatus"> 160 160 <base:icon 161 image="deleted. gif"161 image="deleted.png" 162 162 onclick="deleteItemPermanently()" 163 163 tooltip="This item has been flagged for deletion. Click to delete it now." … … 165 165 visible="<%=isRemoved%>" 166 166 /> 167 <base:icon image="used. gif"167 <base:icon image="used.png" 168 168 onclick="showUsingItems()" 169 169 tooltip="This item is used by other items and can't be permanently deleted. Show the items that are using this one" … … 181 181 <tbl:button 182 182 disabled="<%=!deletePermission%>" 183 image="delete. gif"183 image="delete.png" 184 184 onclick="deleteItem()" 185 185 title="Delete" … … 189 189 <tbl:button 190 190 disabled="<%=!writePermission%>" 191 image="restore. gif"191 image="restore.png" 192 192 onclick="restoreItem()" 193 193 title="Restore" … … 203 203 /> 204 204 <tbl:button 205 image="import. gif"205 image="import.png" 206 206 onclick="runPlugin('ImportItem')" 207 207 title="Import…" … … 210 210 /> 211 211 <tbl:button 212 image="export. gif"212 image="export.png" 213 213 onclick="runPlugin('ExportItem')" 214 214 title="Export…" … … 346 346 <tbl:row> 347 347 <tbl:cell column="variant"><base:icon 348 image="deleted. gif"348 image="deleted.png" 349 349 tooltip="This item has been scheduled for deletion" 350 350 visible="<%=variant != null && variant.isRemoved()%>" 351 351 /><%=variant == null ? "<i>- all -</i>" : Base.getLinkedName(ID, variant, false, true)%></tbl:cell> 352 352 <tbl:cell column="name"><base:icon 353 image="deleted. gif"353 image="deleted.png" 354 354 tooltip="This item has been scheduled for deletion" 355 355 visible="<%=dft != null && dft.isRemoved()%>" -
trunk/www/admin/pluginconfigurations/edit_configuration.jsp
r5945 r5946 313 313 314 314 <div class="legend"> 315 <base:icon image="required. gif" />= required information315 <base:icon image="required.png" />= required information 316 316 </div> 317 317 -
trunk/www/admin/pluginconfigurations/list_configurations.jsp
r5945 r5946 358 358 /> 359 359 <tbl:button 360 image="delete. gif"360 image="delete.png" 361 361 onclick="deleteItems()" 362 362 title="Delete" … … 364 364 /> 365 365 <tbl:button 366 image="restore. gif"366 image="restore.png" 367 367 onclick="restoreItems()" 368 368 title="Restore" … … 388 388 /> 389 389 <tbl:button 390 image="import. gif"390 image="import.png" 391 391 onclick="runPlugin('ImportItems')" 392 392 title="Import…" … … 395 395 /> 396 396 <tbl:button 397 image="export. gif"397 image="export.png" 398 398 onclick="runPlugin('ExportItems')" 399 399 title="Export…" … … 434 434 visible="<%=mode.hasCheck()%>" 435 435 ><base:icon 436 image="check_uncheck. gif"436 image="check_uncheck.png" 437 437 tooltip="Check/uncheck all" 438 438 onclick="Forms.checkUncheck(document.forms[formId])" style="align: left;" … … 510 510 visible="<%=mode.hasIcons()%>" 511 511 ><base:icon 512 image="deleted. gif"512 image="deleted.png" 513 513 onclick="<%=deletePermission ? deletePermanently : null%>" 514 514 tooltip="This item has been scheduled for deletion" … … 549 549 %> 550 550 <base:icon 551 image="copy. gif"551 image="copy.png" 552 552 onclick="<%=openCopyPopup%>" 553 553 tooltip="Create a copy of this item" -
trunk/www/admin/pluginconfigurations/view_configuration.jsp
r5945 r5946 202 202 <th class="itemstatus"> 203 203 <base:icon 204 image="shared. gif"204 image="shared.png" 205 205 visible="<%=configuration.isShared()%>" 206 206 tooltip="This item is shared to other users, groups and/or projects" 207 207 /> 208 208 <base:icon 209 image="deleted. gif"209 image="deleted.png" 210 210 onclick="deleteItemPermanently()" 211 211 tooltip="This item has been flagged for deletion. Click to delete it now." … … 213 213 visible="<%=isRemoved%>" 214 214 /> 215 <base:icon image="used. gif"215 <base:icon image="used.png" 216 216 onclick="showUsingItems()" 217 217 tooltip="This item is used by other items and can't be permanently deleted. Show the items that are using this one" … … 229 229 <tbl:button 230 230 disabled="<%=!createPermission%>" 231 image="copy. gif"231 image="copy.png" 232 232 onclick="copyItem()" 233 233 title="Copy…" … … 236 236 <tbl:button 237 237 disabled="<%=!deletePermission%>" 238 image="delete. gif"238 image="delete.png" 239 239 onclick="deleteItem()" 240 240 title="Delete" … … 244 244 <tbl:button 245 245 disabled="<%=!writePermission%>" 246 image="restore. gif"246 image="restore.png" 247 247 onclick="restoreItem()" 248 248 title="Restore" … … 265 265 /> 266 266 <tbl:button 267 image="import. gif"267 image="import.png" 268 268 onclick="runPlugin('ImportItem')" 269 269 title="Import…" … … 272 272 /> 273 273 <tbl:button 274 image="export. gif"274 image="export.png" 275 275 onclick="runPlugin('ExportItem')" 276 276 title="Export…" -
trunk/www/admin/plugindefinitions/edit_plugin.jsp
r5922 r5946 1039 1039 1040 1040 <div class="legend"> 1041 <base:icon image="required. gif" />= required information1041 <base:icon image="required.png" />= required information 1042 1042 </div> 1043 1043 -
trunk/www/admin/plugindefinitions/list_plugins.jsp
r5945 r5946 508 508 /> 509 509 <tbl:button 510 image="delete. gif"510 image="delete.png" 511 511 onclick="deleteItems()" 512 512 title="Delete" … … 514 514 /> 515 515 <tbl:button 516 image="restore. gif"516 image="restore.png" 517 517 onclick="restoreItems()" 518 518 title="Restore" … … 538 538 /> 539 539 <tbl:button 540 image="import. gif"540 image="import.png" 541 541 onclick="runPlugin('ImportItems')" 542 542 title="Import…" … … 545 545 /> 546 546 <tbl:button 547 image="export. gif"547 image="export.png" 548 548 onclick="runPlugin('ExportItems')" 549 549 title="Export…" … … 589 589 visible="<%=mode.hasCheck()%>" 590 590 ><base:icon 591 image="check_uncheck. gif"591 image="check_uncheck.png" 592 592 tooltip="Check/uncheck all" 593 593 onclick="Forms.checkUncheck(document.forms[formId])" style="align: left;" … … 655 655 visible="<%=mode.hasIcons()%>" 656 656 ><base:icon 657 image="deleted. gif"657 image="deleted.png" 658 658 onclick="<%=deletePermission ? deletePermanently : null%>" 659 659 tooltip="This item has been scheduled for deletion" -
trunk/www/admin/plugindefinitions/view_plugin.jsp
r5945 r5946 238 238 <th class="itemstatus"> 239 239 <base:icon 240 image="shared. gif"240 image="shared.png" 241 241 visible="<%=plugin.isShared()%>" 242 242 tooltip="This item is shared to other users, groups and/or projects" 243 243 /> 244 244 <base:icon 245 image="deleted. gif"245 image="deleted.png" 246 246 onclick="deleteItemPermanently()" 247 247 tooltip="This item has been flagged for deletion. Click to delete it now." … … 249 249 visible="<%=isRemoved%>" 250 250 /> 251 <base:icon image="used. gif"251 <base:icon image="used.png" 252 252 onclick="showUsingItems()" 253 253 tooltip="This item is used by other items and can't be permanently deleted. Show the items that are using this one" … … 272 272 <tbl:button 273 273 disabled="<%=!deletePermission%>" 274 image="delete. gif"274 image="delete.png" 275 275 onclick="deleteItem()" 276 276 title="Delete" … … 280 280 <tbl:button 281 281 disabled="<%=!writePermission%>" 282 image="restore. gif"282 image="restore.png" 283 283 onclick="restoreItem()" 284 284 title="Restore" … … 309 309 /> 310 310 <tbl:button 311 image="import. gif"311 image="import.png" 312 312 onclick="runPlugin('ImportItem')" 313 313 title="Import…" … … 316 316 /> 317 317 <tbl:button 318 image="export. gif"318 image="export.png" 319 319 onclick="runPlugin('ExportItem')" 320 320 title="Export…" … … 485 485 <tbl:row> 486 486 <tbl:cell column="name"><base:icon 487 image="deleted. gif"487 image="deleted.png" 488 488 tooltip="This item has been scheduled for deletion" 489 489 visible="<%=pc.isRemoved()%>" … … 590 590 <tbl:row> 591 591 <tbl:cell column="name"><base:icon 592 image="deleted. gif"592 image="deleted.png" 593 593 tooltip="This item has been scheduled for deletion" 594 594 visible="<%=agent.isRemoved()%>" -
trunk/www/admin/plugintypes/edit_plugintype.jsp
r5922 r5946 179 179 180 180 <div class="legend"> 181 <base:icon image="required. gif" />= required information181 <base:icon image="required.png" />= required information 182 182 </div> 183 183 -
trunk/www/admin/plugintypes/list_plugintypes.jsp
r5945 r5946 284 284 <tbl:button 285 285 disabled="<%=!deletePermission%>" 286 image="delete. gif"286 image="delete.png" 287 287 onclick="deleteItems()" 288 288 title="Delete" … … 291 291 <tbl:button 292 292 disabled="<%=!writePermission%>" 293 image="restore. gif"293 image="restore.png" 294 294 onclick="restoreItems()" 295 295 title="Restore" … … 303 303 /> 304 304 <tbl:button 305 image="import. gif"305 image="import.png" 306 306 onclick="runPlugin('ImportItems')" 307 307 title="Import…" … … 310 310 /> 311 311 <tbl:button 312 image="export. gif"312 image="export.png" 313 313 onclick="runPlugin('ExportItems')" 314 314 title="Export…" … … 349 349 visible="<%=mode.hasCheck()%>" 350 350 ><base:icon 351 image="check_uncheck. gif"351 image="check_uncheck.png" 352 352 tooltip="Check/uncheck all" 353 353 onclick="Forms.checkUncheck(document.forms[formId])" style="align: left;" … … 409 409 visible="<%=mode.hasIcons()%>" 410 410 ><base:icon 411 image="deleted. gif"411 image="deleted.png" 412 412 onclick="<%=deletePermission ? deletePermanently : null%>" 413 413 tooltip="This item has been scheduled for deletion" -
trunk/www/admin/plugintypes/view_plugintype.jsp
r5945 r5946 138 138 <th class="itemstatus"> 139 139 <base:icon 140 image="deleted. gif"140 image="deleted.png" 141 141 onclick="deleteItemPermanently()" 142 142 tooltip="This item has been flagged for deletion. Click to delete it now." … … 144 144 visible="<%=isRemoved%>" 145 145 /> 146 <base:icon image="used. gif"146 <base:icon image="used.png" 147 147 onclick="showUsingItems()" 148 148 tooltip="This item is used by other items and can't be permanently deleted. Show the items that are using this one" … … 160 160 <tbl:button 161 161 disabled="<%=!deletePermission%>" 162 image="delete. gif"162 image="delete.png" 163 163 onclick="deleteItem()" 164 164 title="Delete" … … 168 168 <tbl:button 169 169 disabled="<%=!writePermission%>" 170 image="restore. gif"170 image="restore.png" 171 171 onclick="restoreItem()" 172 172 title="Restore" … … 175 175 /> 176 176 <tbl:button 177 image="import. gif"177 image="import.png" 178 178 onclick="runPlugin('ImportItem')" 179 179 title="Import…" … … 182 182 /> 183 183 <tbl:button 184 image="export. gif"184 image="export.png" 185 185 onclick="runPlugin('ExportItem')" 186 186 title="Export…" … … 284 284 <tbl:row> 285 285 <tbl:cell column="name"><base:icon 286 image="deleted. gif"286 image="deleted.png" 287 287 tooltip="This item has been scheduled for deletion" 288 288 visible="<%=plugin.isRemoved()%>" -
trunk/www/admin/protocols/edit_protocol.jsp
r5921 r5946 397 397 398 398 <div class="legend"> 399 <base:icon image="required. gif" />= required information399 <base:icon image="required.png" />= required information 400 400 </div> 401 401 -
trunk/www/admin/protocols/list_protocol.jsp
r5945 r5946 351 351 /> 352 352 <tbl:button 353 image="delete. gif"353 image="delete.png" 354 354 onclick="deleteItems()" 355 355 title="Delete" … … 357 357 /> 358 358 <tbl:button 359 image="restore. gif"359 image="restore.png" 360 360 onclick="restoreItems()" 361 361 title="Restore" … … 381 381 /> 382 382 <tbl:button 383 image="import. gif"383 image="import.png" 384 384 onclick="runPlugin('ImportItems')" 385 385 title="Import…" … … 388 388 /> 389 389 <tbl:button 390 image="export. gif"390 image="export.png" 391 391 onclick="runPlugin('ExportItems')" 392 392 title="Export…" … … 427 427 visible="<%=mode.hasCheck()%>" 428 428 ><base:icon 429 image="check_uncheck. gif"429 image="check_uncheck.png" 430 430 tooltip="Check/uncheck all" 431 431 onclick="Forms.checkUncheck(document.forms[formId])" style="align: left;" … … 491 491 visible="<%=mode.hasIcons()%>" 492 492 ><base:icon 493 image="deleted. gif"493 image="deleted.png" 494 494 onclick="<%=deletePermission ? deletePermanently : null%>" 495 495 tooltip="This item has been scheduled for deletion" -
trunk/www/admin/protocols/view_protocol.jsp
r5945 r5946 171 171 <th class="itemstatus"> 172 172 <base:icon 173 image="shared. gif"173 image="shared.png" 174 174 visible="<%=protocol.isShared()%>" 175 175 tooltip="This item is shared to other users, groups and/or projects" 176 176 /> 177 177 <base:icon 178 image="deleted. gif"178 image="deleted.png" 179 179 onclick="deleteItemPermanently()" 180 180 tooltip="This item has been flagged for deletion. Click to delete it now." … … 182 182 visible="<%=isRemoved%>" 183 183 /> 184 <base:icon image="used. gif"184 <base:icon image="used.png" 185 185 onclick="showUsingItems()" 186 186 tooltip="This item is used by other items and can't be permanently deleted. Show the items that are using this one" … … 198 198 <tbl:button 199 199 disabled="<%=!deletePermission%>" 200 image="delete. gif"200 image="delete.png" 201 201 onclick="deleteItem()" 202 202 title="Delete" … … 206 206 <tbl:button 207 207 disabled="<%=!writePermission%>" 208 image="restore. gif"208 image="restore.png" 209 209 onclick="restoreItem()" 210 210 title="Restore" … … 227 227 /> 228 228 <tbl:button 229 image="import. gif"229 image="import.png" 230 230 onclick="runPlugin('ImportItem')" 231 231 title="Import…" … … 234 234 /> 235 235 <tbl:button 236 image="export. gif"236 image="export.png" 237 237 onclick="runPlugin('ExportItem')" 238 238 title="Export…" … … 346 346 <tbl:row> 347 347 <tbl:cell column="name"><base:icon 348 image="deleted. gif"348 image="deleted.png" 349 349 tooltip="This item has been scheduled for deletion" 350 350 visible="<%=item.isRemoved()%>" -
trunk/www/admin/quantities/edit_quantity.jsp
r5922 r5946 173 173 174 174 <div class="legend"> 175 <base:icon image="required. gif" />= required information175 <base:icon image="required.png" />= required information 176 176 </div> 177 177 -
trunk/www/admin/quantities/list_quantities.jsp
r5945 r5946 280 280 <tbl:button 281 281 disabled="<%=!deletePermission%>" 282 image="delete. gif"282 image="delete.png" 283 283 onclick="deleteItems()" 284 284 title="Delete" … … 287 287 <tbl:button 288 288 disabled="<%=!writePermission%>" 289 image="restore. gif"289 image="restore.png" 290 290 onclick="restoreItems()" 291 291 title="Restore" … … 299 299 /> 300 300 <tbl:button 301 image="import. gif"301 image="import.png" 302 302 onclick="runPlugin('ImportItems')" 303 303 title="Import…" … … 306 306 /> 307 307 <tbl:button 308 image="export. gif"308 image="export.png" 309 309 onclick="runPlugin('ExportItems')" 310 310 title="Export…" … … 345 345 visible="<%=mode.hasCheck()%>" 346 346 ><base:icon 347 image="check_uncheck. gif"347 image="check_uncheck.png" 348 348 tooltip="Check/uncheck all" 349 349 onclick="Forms.checkUncheck(document.forms[formId])" style="align: left;" … … 406 406 visible="<%=mode.hasIcons()%>" 407 407 ><base:icon 408 image="deleted. gif"408 image="deleted.png" 409 409 onclick="<%=deletePermission ? deletePermanently : null%>" 410 410 tooltip="This item has been scheduled for deletion" 411 411 visible="<%=item.isRemoved()%>" 412 412 /><base:icon 413 image="systemitem. gif"413 image="systemitem.png" 414 414 tooltip="This item is a system item" 415 415 visible="<%=item.isSystemItem()%>" -
trunk/www/admin/quantities/units/edit_unit.jsp
r5922 r5946 248 248 249 249 <div class="legend"> 250 <base:icon image="required. gif" />= required information250 <base:icon image="required.png" />= required information 251 251 </div> 252 252 -
trunk/www/admin/quantities/units/view_unit.jsp
r5945 r5946 153 153 <th class="itemstatus"> 154 154 <base:icon 155 image="deleted. gif"155 image="deleted.png" 156 156 onclick="deleteItemPermanently()" 157 157 tooltip="This item has been flagged for deletion. Click to delete it now." … … 159 159 visible="<%=isRemoved%>" 160 160 /> 161 <base:icon image="used. gif"161 <base:icon image="used.png" 162 162 onclick="showUsingItems()" 163 163 tooltip="This item is used by other items and can't be permanently deleted. Show the items that are using this one" … … 175 175 <tbl:button 176 176 disabled="<%=!deletePermission%>" 177 image="delete. gif"177 image="delete.png" 178 178 onclick="deleteItem()" 179 179 title="Delete" … … 183 183 <tbl:button 184 184 disabled="<%=!writePermission%>" 185 image="restore. gif"185 image="restore.png" 186 186 onclick="restoreItem()" 187 187 title="Restore" … … 191 191 192 192 <tbl:button 193 image="import. gif"193 image="import.png" 194 194 onclick="runPlugin('ImportItem')" 195 195 title="Import…" … … 198 198 /> 199 199 <tbl:button 200 image="export. gif"200 image="export.png" 201 201 onclick="runPlugin('ExportItem')" 202 202 title="Export…" -
trunk/www/admin/quantities/view_quantity.jsp
r5945 r5946 140 140 <th class="itemstatus"> 141 141 <base:icon 142 image="deleted. gif"142 image="deleted.png" 143 143 onclick="deleteItemPermanently()" 144 144 tooltip="This item has been flagged for deletion. Click to delete it now." … … 146 146 visible="<%=isRemoved%>" 147 147 /> 148 <base:icon image="used. gif"148 <base:icon image="used.png" 149 149 onclick="showUsingItems()" 150 150 tooltip="This item is used by other items and can't be permanently deleted. Show the items that are using this one" … … 162 162 <tbl:button 163 163 disabled="<%=!deletePermission%>" 164 image="delete. gif"164 image="delete.png" 165 165 onclick="deleteItem()" 166 166 title="Delete" … … 170 170 <tbl:button 171 171 disabled="<%=!writePermission%>" 172 image="restore. gif"172 image="restore.png" 173 173 onclick="restoreItem()" 174 174 title="Restore" … … 184 184 /> 185 185 <tbl:button 186 image="import. gif"186 image="import.png" 187 187 onclick="runPlugin('ImportItem')" 188 188 title="Import…" … … 191 191 /> 192 192 <tbl:button 193 image="export. gif"193 image="export.png" 194 194 onclick="runPlugin('ExportItem')" 195 195 title="Export…" … … 310 310 <tbl:row> 311 311 <tbl:cell column="name"><base:icon 312 image="deleted. gif"312 image="deleted.png" 313 313 tooltip="This item has been scheduled for deletion" 314 314 visible="<%=item.isRemoved()%>" -
trunk/www/admin/quota/edit_quota.jsp
r5921 r5946 282 282 283 283 <div class="legend"> 284 <base:icon image="required. gif" />= required information284 <base:icon image="required.png" />= required information 285 285 </div> 286 286 -
trunk/www/admin/quota/list_quota.jsp
r5945 r5946 251 251 <tbl:button 252 252 disabled="<%=!deletePermission%>" 253 image="delete. gif"253 image="delete.png" 254 254 onclick="deleteItems()" 255 255 title="Delete" … … 258 258 <tbl:button 259 259 disabled="<%=!writePermission%>" 260 image="restore. gif"260 image="restore.png" 261 261 onclick="restoreItems()" 262 262 title="Restore" … … 270 270 /> 271 271 <tbl:button 272 image="import. gif"272 image="import.png" 273 273 onclick="runPlugin('ImportItems')" 274 274 title="Import…" … … 277 277 /> 278 278 <tbl:button 279 image="export. gif"279 image="export.png" 280 280 onclick="runPlugin('ExportItems')" 281 281 title="Export…" … … 316 316 visible="<%=mode.hasCheck()%>" 317 317 ><base:icon 318 image="check_uncheck. gif"318 image="check_uncheck.png" 319 319 tooltip="Check/uncheck all" 320 320 onclick="Forms.checkUncheck(document.forms[formId])" style="align: left;" … … 377 377 visible="<%=mode.hasIcons()%>" 378 378 ><base:icon 379 image="deleted. gif"379 image="deleted.png" 380 380 onclick="<%=deletePermission ? deletePermanently : null%>" 381 381 tooltip="This item has been scheduled for deletion" 382 382 visible="<%=item.isRemoved()%>" 383 383 /><base:icon 384 image="systemitem. gif"384 image="systemitem.png" 385 385 tooltip="This item is a system item" 386 386 visible="<%=item.isSystemItem()%>" -
trunk/www/admin/quota/view_quota.jsp
r5945 r5946 175 175 <th class="itemstatus"> 176 176 <base:icon 177 image="deleted. gif"177 image="deleted.png" 178 178 onclick="deleteItemPermanently()" 179 179 tooltip="This item has been flagged for deletion. Click to delete it now." … … 181 181 visible="<%=isRemoved%>" 182 182 /> 183 <base:icon image="used. gif"183 <base:icon image="used.png" 184 184 onclick="showUsingItems()" 185 185 tooltip="This item is used by other items and can't be permanently deleted. Show the items that are using this one" … … 197 197 <tbl:button 198 198 disabled="<%=!deletePermission%>" 199 image="delete. gif"199 image="delete.png" 200 200 onclick="deleteItem()" 201 201 title="Delete" … … 205 205 <tbl:button 206 206 disabled="<%=!writePermission%>" 207 image="restore. gif"207 image="restore.png" 208 208 onclick="restoreItem()" 209 209 title="Restore" … … 212 212 /> 213 213 <tbl:button 214 image="import. gif"214 image="import.png" 215 215 onclick="runPlugin('ImportItem')" 216 216 title="Import…" … … 219 219 /> 220 220 <tbl:button 221 image="export. gif"221 image="export.png" 222 222 onclick="runPlugin('ExportItem')" 223 223 title="Export…" -
trunk/www/admin/quotatypes/edit_quotatype.jsp
r5922 r5946 157 157 158 158 <div class="legend"> 159 <base:icon image="required. gif" />= required information159 <base:icon image="required.png" />= required information 160 160 </div> 161 161 -
trunk/www/admin/quotatypes/list_quotatypes.jsp
r5945 r5946 221 221 /> 222 222 <tbl:button 223 image="export. gif"223 image="export.png" 224 224 onclick="runPlugin('ExportItems')" 225 225 title="Export…" … … 260 260 visible="<%=mode.hasCheck()%>" 261 261 ><base:icon 262 image="check_uncheck. gif"262 image="check_uncheck.png" 263 263 tooltip="Check/uncheck all" 264 264 onclick="Forms.checkUncheck(document.forms[formId])" style="align: left;" … … 319 319 visible="<%=mode.hasIcons()%>" 320 320 ><base:icon 321 image="systemitem. gif"321 image="systemitem.png" 322 322 tooltip="This item is a system item" 323 323 visible="<%=item.isSystemItem()%>" -
trunk/www/admin/quotatypes/view_quotatype.jsp
r5945 r5946 117 117 /> 118 118 <tbl:button 119 image="export. gif"119 image="export.png" 120 120 onclick="runPlugin('ExportItem')" 121 121 title="Export…" -
trunk/www/admin/reporterclonetemplates/edit_template.jsp
r5921 r5946 254 254 255 255 <div class="legend"> 256 <base:icon image="required. gif" />= required information256 <base:icon image="required.png" />= required information 257 257 </div> 258 258 -
trunk/www/admin/reporterclonetemplates/list_templates.jsp
r5945 r5946 294 294 /> 295 295 <tbl:button 296 image="delete. gif"296 image="delete.png" 297 297 onclick="deleteItems()" 298 298 title="Delete" … … 300 300 /> 301 301 <tbl:button 302 image="restore. gif"302 image="restore.png" 303 303 onclick="restoreItems()" 304 304 title="Restore" … … 324 324 /> 325 325 <tbl:button 326 image="import. gif"326 image="import.png" 327 327 onclick="runPlugin('ImportItems')" 328 328 title="Import…" … … 331 331 /> 332 332 <tbl:button 333 image="export. gif"333 image="export.png" 334 334 onclick="runPlugin('ExportItems')" 335 335 title="Export…" … … 370 370 visible="<%=mode.hasCheck()%>" 371 371 ><base:icon 372 image="check_uncheck. gif"372 image="check_uncheck.png" 373 373 tooltip="Check/uncheck all" 374 374 onclick="Forms.checkUncheck(document.forms[formId])" style="align: left;" … … 434 434 visible="<%=mode.hasIcons()%>" 435 435 ><base:icon 436 image="deleted. gif"436 image="deleted.png" 437 437 onclick="<%=deletePermission ? deletePermanently : null%>" 438 438 tooltip="This item has been scheduled for deletion" -
trunk/www/admin/reporterclonetemplates/view_template.jsp
r5945 r5946 168 168 <th class="itemstatus"> 169 169 <base:icon 170 image="shared. gif"170 image="shared.png" 171 171 visible="<%=template.isShared()%>" 172 172 tooltip="This item is shared to other users, groups and/or projects" 173 173 /> 174 174 <base:icon 175 image="deleted. gif"175 image="deleted.png" 176 176 onclick="deleteItemPermanently()" 177 177 tooltip="This item has been flagged for deletion. Click to delete it now." … … 179 179 visible="<%=isRemoved%>" 180 180 /> 181 <base:icon image="used. gif"181 <base:icon image="used.png" 182 182 onclick="showUsingItems()" 183 183 tooltip="This item is used by other items and can't be permanently deleted. Show the items that are using this one" … … 195 195 <tbl:button 196 196 disabled="<%=!deletePermission%>" 197 image="delete. gif"197 image="delete.png" 198 198 onclick="deleteItem()" 199 199 title="Delete" … … 203 203 <tbl:button 204 204 disabled="<%=!writePermission%>" 205 image="restore. gif"205 image="restore.png" 206 206 onclick="restoreItem()" 207 207 title="Restore" … … 224 224 /> 225 225 <tbl:button 226 image="import. gif"226 image="import.png" 227 227 onclick="runPlugin('ImportItem')" 228 228 title="Import…" … … 231 231 /> 232 232 <tbl:button 233 image="export. gif"233 image="export.png" 234 234 onclick="runPlugin('ExportItem')" 235 235 title="Export…" … … 334 334 <tbl:row> 335 335 <tbl:cell column="title"> 336 <base:icon image="warning. gif" visible="<%=!exists %>"/>336 <base:icon image="warning.png" visible="<%=!exists %>"/> 337 337 <%=HTML.encodeTags(property.getTitle())%></tbl:cell> 338 338 <tbl:cell column="description"><%=HTML.encodeTags(property.getDescription())%></tbl:cell> … … 349 349 { 350 350 %> 351 <base:icon image="warning. gif" /> = This property no longer exists in the main reporter table351 <base:icon image="warning.png" /> = This property no longer exists in the main reporter table 352 352 and will be ignored when cloning 353 353 <% -
trunk/www/admin/reportertypes/edit_reportertype.jsp
r5922 r5946 158 158 159 159 <div class="legend"> 160 <base:icon image="required. gif" />= required information160 <base:icon image="required.png" />= required information 161 161 </div> 162 162 -
trunk/www/admin/reportertypes/list_reportertypes.jsp
r5945 r5946 247 247 <tbl:button 248 248 disabled="<%=!deletePermission%>" 249 image="delete. gif"249 image="delete.png" 250 250 onclick="deleteItems()" 251 251 title="Delete" … … 254 254 <tbl:button 255 255 disabled="<%=!writePermission%>" 256 image="restore. gif"256 image="restore.png" 257 257 onclick="restoreItems()" 258 258 title="Restore" … … 266 266 /> 267 267 <tbl:button 268 image="import. gif"268 image="import.png" 269 269 onclick="runPlugin('ImportItems')" 270 270 title="Import…" … … 273 273 /> 274 274 <tbl:button 275 image="export. gif"275 image="export.png" 276 276 onclick="runPlugin('ExportItems')" 277 277 title="Export…" … … 312 312 visible="<%=mode.hasCheck()%>" 313 313 ><base:icon 314 image="check_uncheck. gif"314 image="check_uncheck.png" 315 315 tooltip="Check/uncheck all" 316 316 onclick="Forms.checkUncheck(document.forms[formId])" style="align: left;" … … 372 372 visible="<%=mode.hasIcons()%>" 373 373 ><base:icon 374 image="deleted. gif"374 image="deleted.png" 375 375 onclick="<%=deletePermission ? deletePermanently : null%>" 376 376 tooltip="This item has been scheduled for deletion" -
trunk/www/admin/reportertypes/view_reportertype.jsp
r5945 r5946 132 132 <th class="itemstatus"> 133 133 <base:icon 134 image="deleted. gif"134 image="deleted.png" 135 135 onclick="deleteItemPermanently()" 136 136 tooltip="This item has been flagged for deletion. Click to delete it now." … … 138 138 visible="<%=isRemoved%>" 139 139 /> 140 <base:icon image="used. gif"140 <base:icon image="used.png" 141 141 onclick="showUsingItems()" 142 142 tooltip="This item is used by other items and can't be permanently deleted. Show the items that are using this one" … … 154 154 <tbl:button 155 155 disabled="<%=!deletePermission%>" 156 image="delete. gif"156 image="delete.png" 157 157 onclick="deleteItem()" 158 158 title="Delete" … … 162 162 <tbl:button 163 163 disabled="<%=!writePermission%>" 164 image="restore. gif"164 image="restore.png" 165 165 onclick="restoreItem()" 166 166 title="Restore" … … 169 169 /> 170 170 <tbl:button 171 image="import. gif"171 image="import.png" 172 172 onclick="runPlugin('ImportItem')" 173 173 title="Import…" … … 176 176 /> 177 177 <tbl:button 178 image="export. gif"178 image="export.png" 179 179 onclick="runPlugin('ExportItem')" 180 180 title="Export…" -
trunk/www/admin/roles/edit_role.jsp
r5922 r5946 520 520 521 521 <div class="legend"> 522 <base:icon image="required. gif" />= required information522 <base:icon image="required.png" />= required information 523 523 </div> 524 524 -
trunk/www/admin/roles/list_roles.jsp
r5945 r5946 284 284 <tbl:button 285 285 disabled="<%=!deletePermission%>" 286 image="delete. gif"286 image="delete.png" 287 287 onclick="deleteItems()" 288 288 title="Delete" … … 291 291 <tbl:button 292 292 disabled="<%=!writePermission%>" 293 image="restore. gif"293 image="restore.png" 294 294 onclick="restoreItems()" 295 295 title="Restore" … … 303 303 /> 304 304 <tbl:button 305 image="import. gif"305 image="import.png" 306 306 onclick="runPlugin('ImportItems')" 307 307 title="Import…" … … 310 310 /> 311 311 <tbl:button 312 image="export. gif"312 image="export.png" 313 313 onclick="runPlugin('ExportItems')" 314 314 title="Export…" … … 349 349 visible="<%=mode.hasCheck()%>" 350 350 ><base:icon 351 image="check_uncheck. gif"351 image="check_uncheck.png" 352 352 tooltip="Check/uncheck all" 353 353 onclick="Forms.checkUncheck(document.forms[formId])" style="align: left;" … … 409 409 visible="<%=mode.hasIcons()%>" 410 410 ><base:icon 411 image="deleted. gif"411 image="deleted.png" 412 412 onclick="<%=deletePermission ? deletePermanently : null%>" 413 413 tooltip="This item has been scheduled for deletion" 414 414 visible="<%=item.isRemoved()%>" 415 415 /><base:icon 416 image="systemitem. gif"416 image="systemitem.png" 417 417 tooltip="This item is a system item" 418 418 visible="<%=item.isSystemItem()%>" -
trunk/www/admin/roles/view_role.jsp
r5945 r5946 173 173 <th class="itemstatus"> 174 174 <base:icon 175 image="deleted. gif"175 image="deleted.png" 176 176 onclick="deleteItemPermanently()" 177 177 tooltip="This item has been flagged for deletion. Click to delete it now." … … 179 179 visible="<%=isRemoved%>" 180 180 /> 181 <base:icon image="used. gif"181 <base:icon image="used.png" 182 182 onclick="showUsingItems()" 183 183 tooltip="This item is used by other items and can't be permanently deleted. Show the items that are using this one" … … 195 195 <tbl:button 196 196 disabled="<%=!deletePermission%>" 197 image="delete. gif"197 image="delete.png" 198 198 onclick="deleteItem()" 199 199 title="Delete" … … 203 203 <tbl:button 204 204 disabled="<%=!writePermission%>" 205 image="restore. gif"205 image="restore.png" 206 206 onclick="restoreItem()" 207 207 title="Restore" … … 210 210 /> 211 211 <tbl:button 212 image="import. gif"212 image="import.png" 213 213 onclick="runPlugin('ImportItem')" 214 214 title="Import…" … … 217 217 /> 218 218 <tbl:button 219 image="export. gif"219 image="export.png" 220 220 onclick="runPlugin('ExportItem')" 221 221 title="Export…" … … 411 411 <tbl:row> 412 412 <tbl:cell column="name"><base:icon 413 image="deleted. gif"413 image="deleted.png" 414 414 tooltip="This item has been scheduled for deletion" 415 415 visible="<%=user.isRemoved()%>" -
trunk/www/admin/software/edit_software.jsp
r5921 r5946 224 224 225 225 <div class="legend"> 226 <base:icon image="required. gif" />= required information226 <base:icon image="required.png" />= required information 227 227 </div> 228 228 -
trunk/www/admin/software/list_software.jsp
r5945 r5946 302 302 /> 303 303 <tbl:button 304 image="delete. gif"304 image="delete.png" 305 305 onclick="deleteItems()" 306 306 title="Delete" … … 308 308 /> 309 309 <tbl:button 310 image="restore. gif"310 image="restore.png" 311 311 onclick="restoreItems()" 312 312 title="Restore" … … 332 332 /> 333 333 <tbl:button 334 image="import. gif"334 image="import.png" 335 335 onclick="runPlugin('ImportItems')" 336 336 title="Import…" … … 339 339 /> 340 340 <tbl:button 341 image="export. gif"341 image="export.png" 342 342 onclick="runPlugin('ExportItems')" 343 343 title="Export…" … … 378 378 visible="<%=mode.hasCheck()%>" 379 379 ><base:icon 380 image="check_uncheck. gif"380 image="check_uncheck.png" 381 381 tooltip="Check/uncheck all" 382 382 onclick="Forms.checkUncheck(document.forms[formId])" style="align: left;" … … 442 442 visible="<%=mode.hasIcons()%>" 443 443 ><base:icon 444 image="deleted. gif"444 image="deleted.png" 445 445 onclick="<%=deletePermission ? deletePermanently : null%>" 446 446 tooltip="This item has been scheduled for deletion" -
trunk/www/admin/software/view_software.jsp
r5945 r5946 151 151 <th class="itemstatus"> 152 152 <base:icon 153 image="shared. gif"153 image="shared.png" 154 154 visible="<%=software.isShared()%>" 155 155 tooltip="This item is shared to other users, groups and/or projects" 156 156 /> 157 157 <base:icon 158 image="deleted. gif"158 image="deleted.png" 159 159 onclick="deleteItemPermanently()" 160 160 tooltip="This item has been flagged for deletion. Click to delete it now." … … 162 162 visible="<%=isRemoved%>" 163 163 /> 164 <base:icon image="used. gif"164 <base:icon image="used.png" 165 165 onclick="showUsingItems()" 166 166 tooltip="This item is used by other items and can't be permanently deleted. Show the items that are using this one" … … 178 178 <tbl:button 179 179 disabled="<%=!deletePermission%>" 180 image="delete. gif"180 image="delete.png" 181 181 onclick="deleteItem()" 182 182 title="Delete" … … 186 186 <tbl:button 187 187 disabled="<%=!writePermission%>" 188 image="restore. gif"188 image="restore.png" 189 189 onclick="restoreItem()" 190 190 title="Restore" … … 207 207 /> 208 208 <tbl:button 209 image="import. gif"209 image="import.png" 210 210 onclick="runPlugin('ImportItem')" 211 211 title="Import…" … … 214 214 /> 215 215 <tbl:button 216 image="export. gif"216 image="export.png" 217 217 onclick="runPlugin('ExportItem')" 218 218 title="Export…" -
trunk/www/admin/users/edit_user.jsp
r5922 r5946 893 893 894 894 <div class="legend"> 895 <base:icon image="required. gif" />= required information895 <base:icon image="required.png" />= required information 896 896 </div> 897 897 -
trunk/www/admin/users/list_users.jsp
r5945 r5946 459 459 <tbl:button 460 460 disabled="<%=!deletePermission%>" 461 image="delete. gif"461 image="delete.png" 462 462 onclick="deleteItems()" 463 463 title="Delete" … … 466 466 <tbl:button 467 467 disabled="<%=!writePermission%>" 468 image="restore. gif"468 image="restore.png" 469 469 onclick="restoreItems()" 470 470 title="Restore" … … 478 478 /> 479 479 <tbl:button 480 image="membership. gif"480 image="membership.png" 481 481 onclick="defaultMembership()" 482 482 title="Default membership…" … … 491 491 /> 492 492 <tbl:button 493 image="import. gif"493 image="import.png" 494 494 onclick="runPlugin('ImportItems')" 495 495 title="Import…" … … 498 498 /> 499 499 <tbl:button 500 image="export. gif"500 image="export.png" 501 501 onclick="runPlugin('ExportItems')" 502 502 title="Export…" … … 537 537 visible="<%=mode.hasCheck()%>" 538 538 ><base:icon 539 image="check_uncheck. gif"539 image="check_uncheck.png" 540 540 tooltip="Check/uncheck all" 541 541 onclick="Forms.checkUncheck(document.forms[formId])" style="align: left;" … … 597 597 visible="<%=mode.hasIcons()%>" 598 598 ><base:icon 599 image="deleted. gif"599 image="deleted.png" 600 600 onclick="<%=deletePermission ? deletePermanently : null%>" 601 601 tooltip="This item has been scheduled for deletion" 602 602 visible="<%=item.isRemoved()%>" 603 603 /><base:icon 604 image="systemitem. gif"604 image="systemitem.png" 605 605 tooltip="This item is a system item" 606 606 visible="<%=item.isSystemItem()%>" -
trunk/www/admin/users/view_user.jsp
r5945 r5946 145 145 <th class="itemstatus"> 146 146 <base:icon 147 image="deleted. gif"147 image="deleted.png" 148 148 onclick="deleteItemPermanently()" 149 149 tooltip="This item has been flagged for deletion. Click to delete it now." … … 151 151 visible="<%=isRemoved%>" 152 152 /> 153 <base:icon image="used. gif"153 <base:icon image="used.png" 154 154 onclick="showUsingItems()" 155 155 tooltip="This item is used by other items and can't be permanently deleted. Show the items that are using this one" … … 167 167 <tbl:button 168 168 disabled="<%=!deletePermission%>" 169 image="delete. gif"169 image="delete.png" 170 170 onclick="deleteItem()" 171 171 title="Delete" … … 175 175 <tbl:button 176 176 disabled="<%=!writePermission%>" 177 image="restore. gif"177 image="restore.png" 178 178 onclick="restoreItem()" 179 179 title="Restore" … … 182 182 /> 183 183 <tbl:button 184 image="import. gif"184 image="import.png" 185 185 onclick="runPlugin('ImportItem')" 186 186 title="Import…" … … 189 189 /> 190 190 <tbl:button 191 image="export. gif"191 image="export.png" 192 192 onclick="runPlugin('ExportItem')" 193 193 title="Export…" … … 399 399 <tbl:row> 400 400 <tbl:cell column="name"><base:icon 401 image="deleted. gif"401 image="deleted.png" 402 402 tooltip="This item has been scheduled for deletion" 403 403 visible="<%=group.isRemoved()%>" … … 413 413 <tbl:row> 414 414 <tbl:cell column="name"><base:icon 415 image="deleted. gif"415 image="deleted.png" 416 416 tooltip="This item has been scheduled for deletion" 417 417 visible="<%=role.isRemoved()%>" -
trunk/www/biomaterials/bioplateeventtypes/edit_eventtype.jsp
r5913 r5946 184 184 185 185 <div class="legend"> 186 <base:icon image="required. gif" />= required information186 <base:icon image="required.png" />= required information 187 187 <%if (eventType == null) {%><br> 188 <base:icon image="unchangeable. gif" /> = can't be changed later188 <base:icon image="unchangeable.png" /> = can't be changed later 189 189 <%}%> 190 190 </div> -
trunk/www/biomaterials/bioplateeventtypes/list_eventtypes.jsp
r5945 r5946 245 245 /> 246 246 <tbl:button 247 image="delete. gif"247 image="delete.png" 248 248 onclick="deleteItems()" 249 249 title="Delete" … … 251 251 /> 252 252 <tbl:button 253 image="restore. gif"253 image="restore.png" 254 254 onclick="restoreItems()" 255 255 title="Restore" … … 263 263 /> 264 264 <tbl:button 265 image="import. gif"265 image="import.png" 266 266 onclick="runPlugin('ImportItems')" 267 267 title="Import…" … … 270 270 /> 271 271 <tbl:button 272 image="export. gif"272 image="export.png" 273 273 onclick="runPlugin('ExportItems')" 274 274 title="Export…" … … 309 309 visible="<%=mode.hasCheck()%>" 310 310 ><base:icon 311 image="check_uncheck. gif"311 image="check_uncheck.png" 312 312 tooltip="Check/uncheck all" 313 313 onclick="Forms.checkUncheck(document.forms[formId])" style="align: left;" … … 371 371 visible="<%=mode.hasIcons()%>" 372 372 ><base:icon 373 image="deleted. gif"373 image="deleted.png" 374 374 onclick="<%=deletePermission ? deletePermanently : null%>" 375 375 tooltip="This item has been scheduled for deletion" -
trunk/www/biomaterials/bioplateeventtypes/view_eventtype.jsp
r5945 r5946 139 139 <th class="itemstatus"> 140 140 <base:icon 141 image="deleted. gif"141 image="deleted.png" 142 142 onclick="deleteItemPermanently()" 143 143 tooltip="This item has been flagged for deletion. Click to delete it now." … … 145 145 visible="<%=isRemoved%>" 146 146 /> 147 <base:icon image="used. gif"147 <base:icon image="used.png" 148 148 onclick="showUsingItems()" 149 149 tooltip="This item is used by other items and can't be permanently deleted. Show the items that are using this one" … … 162 162 <tbl:button 163 163 disabled="<%=!deletePermission%>" 164 image="delete. gif"164 image="delete.png" 165 165 onclick="deleteItem()" 166 166 title="Delete" … … 170 170 <tbl:button 171 171 disabled="<%=!writePermission%>" 172 image="restore. gif"172 image="restore.png" 173 173 onclick="restoreItem()" 174 174 title="Restore" … … 177 177 /> 178 178 <tbl:button 179 image="import. gif"179 image="import.png" 180 180 onclick="runPlugin('ImportItem')" 181 181 title="Import…" … … 184 184 /> 185 185 <tbl:button 186 image="export. gif"186 image="export.png" 187 187 onclick="runPlugin('ExportItem')" 188 188 title="Export…" -
trunk/www/biomaterials/bioplates/edit_bioplate.jsp
r5913 r5946 433 433 434 434 <div class="legend"> 435 <base:icon image="required. gif" />= required information435 <base:icon image="required.png" />= required information 436 436 <%if (bioplate == null) {%><br> 437 <base:icon image="unchangeable. gif" /> = can't be changed later437 <base:icon image="unchangeable.png" /> = can't be changed later 438 438 <%}%> 439 439 </div> -
trunk/www/biomaterials/bioplates/events/edit_event.jsp
r5913 r5946 285 285 286 286 <div class="legend"> 287 <base:icon image="required. gif" />= required information287 <base:icon image="required.png" />= required information 288 288 </div> 289 289 -
trunk/www/biomaterials/bioplates/events/list_events.jsp
r5945 r5946 364 364 > 365 365 <tbl:button 366 image="delete. gif"366 image="delete.png" 367 367 onclick="deleteItems()" 368 368 title="Delete" … … 370 370 /> 371 371 <tbl:button 372 image="restore. gif"372 image="restore.png" 373 373 onclick="restoreItems()" 374 374 title="Restore" … … 394 394 /> 395 395 <tbl:button 396 image="import. gif"396 image="import.png" 397 397 onclick="runPlugin('ImportItems')" 398 398 title="Import…" … … 401 401 /> 402 402 <tbl:button 403 image="export. gif"403 image="export.png" 404 404 onclick="runPlugin('ExportItems')" 405 405 title="Export…" … … 440 440 visible="<%=mode.hasCheck()%>" 441 441 ><base:icon 442 image="check_uncheck. gif"442 image="check_uncheck.png" 443 443 tooltip="Check/uncheck all" 444 444 onclick="Forms.checkUncheck(document.forms[formId])" style="align: left;" … … 505 505 visible="<%=mode.hasIcons()%>" 506 506 ><base:icon 507 image="deleted. gif"507 image="deleted.png" 508 508 onclick="<%=deletePermission ? deletePermanently : null%>" 509 509 tooltip="This item has been scheduled for deletion" -
trunk/www/biomaterials/bioplates/events/view_event.jsp
r5945 r5946 196 196 <th class="itemstatus"> 197 197 <base:icon 198 image="shared. gif"198 image="shared.png" 199 199 visible="<%=event.isShared()%>" 200 200 tooltip="This item is shared to other users, groups and/or projects" 201 201 /> 202 202 <base:icon 203 image="deleted. gif"203 image="deleted.png" 204 204 onclick="deleteItemPermanently()" 205 205 tooltip="This item has been flagged for deletion. Click to delete it now." … … 207 207 visible="<%=isRemoved%>" 208 208 /> 209 <base:icon image="used. gif"209 <base:icon image="used.png" 210 210 onclick="showUsingItems()" 211 211 tooltip="This item is used by other items and can't be permanently deleted. Show the items that are using this one" … … 223 223 <tbl:button 224 224 disabled="<%=!deletePermission%>" 225 image="delete. gif"225 image="delete.png" 226 226 onclick="deleteItem()" 227 227 title="Delete" … … 231 231 <tbl:button 232 232 disabled="<%=!writePermission%>" 233 image="restore. gif"233 image="restore.png" 234 234 onclick="restoreItem()" 235 235 title="Restore" … … 252 252 /> 253 253 <tbl:button 254 image="import. gif"254 image="import.png" 255 255 onclick="runPlugin('ImportItem')" 256 256 title="Import…" … … 259 259 /> 260 260 <tbl:button 261 image="export. gif"261 image="export.png" 262 262 onclick="runPlugin('ExportItem')" 263 263 title="Export…" … … 366 366 <tbl:row> 367 367 <tbl:cell column="bioplate"><base:icon 368 image="deleted. gif"368 image="deleted.png" 369 369 tooltip="This item has been scheduled for deletion" 370 370 visible="<%=plate != null && plate.isRemoved()%>" … … 455 455 <tbl:row> 456 456 <tbl:cell column="item"><base:icon 457 image="deleted. gif"457 image="deleted.png" 458 458 tooltip="This item has been scheduled for deletion" 459 459 visible="<%=item != null && item.isRemoved()%>" -
trunk/www/biomaterials/bioplates/list_bioplates.jsp
r5945 r5946 421 421 /> 422 422 <tbl:button 423 image="delete. gif"423 image="delete.png" 424 424 onclick="deleteItems()" 425 425 title="Delete" … … 427 427 /> 428 428 <tbl:button 429 image="restore. gif"429 image="restore.png" 430 430 onclick="restoreItems()" 431 431 title="Restore" … … 451 451 /> 452 452 <tbl:button 453 image="import. gif"453 image="import.png" 454 454 onclick="runPlugin('ImportItems')" 455 455 title="Import…" … … 458 458 /> 459 459 <tbl:button 460 image="export. gif"460 image="export.png" 461 461 onclick="runPlugin('ExportItems')" 462 462 title="Export…" … … 497 497 visible="<%=mode.hasCheck()%>" 498 498 ><base:icon 499 image="check_uncheck. gif"499 image="check_uncheck.png" 500 500 tooltip="Check/uncheck all" 501 501 onclick="Forms.checkUncheck(document.forms[formId])" style="align: left;" … … 563 563 visible="<%=mode.hasIcons()%>" 564 564 ><base:icon 565 image="deleted. gif"565 image="deleted.png" 566 566 onclick="<%=deletePermission ? deletePermanently : null%>" 567 567 tooltip="This item has been scheduled for deletion" -
trunk/www/biomaterials/bioplates/view_bioplate.jsp
r5945 r5946 274 274 <th class="itemstatus"> 275 275 <base:icon 276 image="shared. gif"276 image="shared.png" 277 277 visible="<%=bioplate.isShared()%>" 278 278 tooltip="This item is shared to other users, groups and/or projects" 279 279 /> 280 280 <base:icon 281 image="deleted. gif"281 image="deleted.png" 282 282 onclick="deleteItemPermanently()" 283 283 tooltip="This item has been flagged for deletion. Click to delete it now." … … 285 285 visible="<%=isRemoved%>" 286 286 /> 287 <base:icon image="used. gif"287 <base:icon image="used.png" 288 288 onclick="showUsingItems()" 289 289 tooltip="This item is used by other items and can't be permanently deleted. Show the items that are using this one" … … 302 302 <tbl:button 303 303 disabled="<%=!deletePermission%>" 304 image="delete. gif"304 image="delete.png" 305 305 onclick="deleteItem()" 306 306 title="Delete" … … 310 310 <tbl:button 311 311 disabled="<%=!writePermission%>" 312 image="restore. gif"312 image="restore.png" 313 313 onclick="restoreItem()" 314 314 title="Restore" … … 344 344 /> 345 345 <tbl:button 346 image="import. gif"346 image="import.png" 347 347 onclick="runPlugin('ImportItem')" 348 348 title="Import…" … … 351 351 /> 352 352 <tbl:button 353 image="export. gif"353 image="export.png" 354 354 onclick="runPlugin('ExportItem')" 355 355 title="Export…" -
trunk/www/biomaterials/bioplates/wells/list_biowells.jsp
r5945 r5946 324 324 /> 325 325 <tbl:button 326 image="import. gif"326 image="import.png" 327 327 onclick="runPlugin('ImportItems')" 328 328 title="Import…" … … 331 331 /> 332 332 <tbl:button 333 image="export. gif"333 image="export.png" 334 334 onclick="runPlugin('ExportItems')" 335 335 title="Export…" … … 370 370 visible="<%=mode.hasCheck()%>" 371 371 ><base:icon 372 image="check_uncheck. gif"372 image="check_uncheck.png" 373 373 tooltip="Check/uncheck all" 374 374 onclick="Forms.checkUncheck(document.forms[formId])" style="align: left;" … … 481 481 <base:icon 482 482 visible="<%=!editWellPermission%>" 483 image="locked. gif"483 image="locked.png" 484 484 tooltip="<%=item.hasBeenUsed() ? "This well has already been used" : "This well is locked for modification"%>" 485 485 /> -
trunk/www/biomaterials/bioplatetypes/edit_platetype.jsp
r5913 r5946 319 319 320 320 <div class="legend"> 321 <base:icon image="required. gif" />= required information321 <base:icon image="required.png" />= required information 322 322 <%if (bioPlateType == null) {%><br> 323 <base:icon image="unchangeable. gif" /> = can't be changed later323 <base:icon image="unchangeable.png" /> = can't be changed later 324 324 <%}%> 325 325 </div> -
trunk/www/biomaterials/bioplatetypes/list_platetypes.jsp
r5945 r5946 293 293 /> 294 294 <tbl:button 295 image="delete. gif"295 image="delete.png" 296 296 onclick="deleteItems()" 297 297 title="Delete" … … 299 299 /> 300 300 <tbl:button 301 image="restore. gif"301 image="restore.png" 302 302 onclick="restoreItems()" 303 303 title="Restore" … … 311 311 /> 312 312 <tbl:button 313 image="import. gif"313 image="import.png" 314 314 onclick="runPlugin('ImportItems')" 315 315 title="Import…" … … 318 318 /> 319 319 <tbl:button 320 image="export. gif"320 image="export.png" 321 321 onclick="runPlugin('ExportItems')" 322 322 title="Export…" … … 357 357 visible="<%=mode.hasCheck()%>" 358 358 ><base:icon 359 image="check_uncheck. gif"359 image="check_uncheck.png" 360 360 tooltip="Check/uncheck all" 361 361 onclick="Forms.checkUncheck(document.forms[formId])" style="align: left;" … … 419 419 visible="<%=mode.hasIcons()%>" 420 420 ><base:icon 421 image="deleted. gif"421 image="deleted.png" 422 422 onclick="<%=deletePermission ? deletePermanently : null%>" 423 423 tooltip="This item has been scheduled for deletion" -
trunk/www/biomaterials/bioplatetypes/view_platetype.jsp
r5945 r5946 139 139 <th class="itemstatus"> 140 140 <base:icon 141 image="deleted. gif"141 image="deleted.png" 142 142 onclick="deleteItemPermanently()" 143 143 tooltip="This item has been flagged for deletion. Click to delete it now." … … 145 145 visible="<%=isRemoved%>" 146 146 /> 147 <base:icon image="used. gif"147 <base:icon image="used.png" 148 148 onclick="showUsingItems()" 149 149 tooltip="This item is used by other items and can't be permanently deleted. Show the items that are using this one" … … 161 161 <tbl:button 162 162 disabled="<%=!deletePermission%>" 163 image="delete. gif"163 image="delete.png" 164 164 onclick="deleteItem()" 165 165 title="Delete" … … 169 169 <tbl:button 170 170 disabled="<%=!writePermission%>" 171 image="restore. gif"171 image="restore.png" 172 172 onclick="restoreItem()" 173 173 title="Restore" … … 176 176 /> 177 177 <tbl:button 178 image="import. gif"178 image="import.png" 179 179 onclick="runPlugin('ImportItem')" 180 180 title="Import…" … … 183 183 /> 184 184 <tbl:button 185 image="export. gif"185 image="export.png" 186 186 onclick="runPlugin('ExportItem')" 187 187 title="Export…" -
trunk/www/biomaterials/biosources/edit_biosource.jsp
r5913 r5946 250 250 251 251 <div class="legend"> 252 <base:icon image="required. gif" />= required information252 <base:icon image="required.png" />= required information 253 253 </div> 254 254 -
trunk/www/biomaterials/biosources/list_biosources.jsp
r5945 r5946 231 231 /> 232 232 <tbl:button 233 image="delete. gif"233 image="delete.png" 234 234 onclick="deleteItems()" 235 235 title="Delete" … … 237 237 /> 238 238 <tbl:button 239 image="restore. gif"239 image="restore.png" 240 240 onclick="restoreItems()" 241 241 title="Restore" … … 268 268 /> 269 269 <tbl:button 270 image="import. gif"270 image="import.png" 271 271 onclick="runPlugin('ImportItems')" 272 272 title="Import…" … … 275 275 /> 276 276 <tbl:button 277 image="export. gif"277 image="export.png" 278 278 onclick="runPlugin('ExportItems')" 279 279 title="Export…" … … 463 463 visible="<%=mode.hasCheck()%>" 464 464 ><base:icon 465 image="check_uncheck. gif"465 image="check_uncheck.png" 466 466 tooltip="Check/uncheck all" 467 467 onclick="Forms.checkUncheck(document.forms[formId])" … … 528 528 visible="<%=mode.hasIcons()%>" 529 529 ><base:icon 530 image="deleted. gif"530 image="deleted.png" 531