Changeset 5727 for trunk/www/views/derivedbioassays/view_bioassay.jsp
- Timestamp:
- Sep 8, 2011, 2:04:19 PM (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/www/views/derivedbioassays/view_bioassay.jsp
r5685 r5727 21 21 22 22 --%> 23 <%@page import="net.sf.basedb.core.RawBioAssay"%>24 23 <%@ page pageEncoding="UTF-8" session="false" 25 24 import="net.sf.basedb.core.SessionControl" … … 40 39 import="net.sf.basedb.core.PluginDefinition" 41 40 import="net.sf.basedb.core.ParameterInfo" 41 import="net.sf.basedb.core.RawBioAssay" 42 42 import="net.sf.basedb.core.RawDataType" 43 43 import="net.sf.basedb.core.BasicItem" … … 280 280 visible="<%=pluginCount.containsKey(Plugin.MainType.OTHER)%>" 281 281 /> 282 <tbl:button 283 image="runplugin.gif" 284 onclick="runItemPlugin('RunAnalysisPlugin')" 285 title="Run analysis…" 286 tooltip="Run an analysis plugin with data from this bioassay" 287 visible="<%=pluginCount.containsKey(Plugin.MainType.ANALYZE)%>" 288 /> 282 289 <ext:render extensions="<%=toolbarInvoker%>" context="<%=jspContext%>" 283 290 wrapper="<%=new PrefixSuffixRenderer(jspContext, "<td>", "</td>") %>"/> … … 358 365 </tr> 359 366 </table> 360 367 </td> 368 <td width="50%"> 369 <h4>Job & Plug-in parameters</h4> 370 <table class="form" cellspacing=0> 371 <tr> 372 <td class="prompt">Job</td> 373 <td><%=Base.getLinkedName(ID, job, !readJob, false)%></td> 374 </tr> 375 <tr> 376 <td class="prompt">Plugin</td> 377 <td><%=Base.getLinkedName(ID, plugin, 378 !readPlugin, plugin != null && plugin.hasPermission(Permission.WRITE))%></td> 379 </tr> 380 <tr> 381 <td class="prompt">Plugin configuration</td> 382 <td><%=Base.getLinkedName(ID, configuration, !readConfiguration, 383 configuration != null && configuration.hasPermission(Permission.WRITE))%></td> 384 </tr> 361 385 <% 362 386 if (job != null) 363 387 { 364 388 %> 365 <h4>Job</h4>366 <table class="form" cellspacing=0>367 368 <tr>369 <td class="prompt">Job</td>370 <td><%=Base.getLinkedName(ID, job, !readJob, false)%></td>371 </tr>372 389 <tr valign=top> 373 390 <td class="prompt">Started</td> 374 391 <td> 375 <%= dateTimeFormatter.format(job.getStarted())%>392 <%=job == null ? "" : dateTimeFormatter.format(job.getStarted())%> 376 393 </td> 377 394 </tr> … … 379 396 <td class="prompt">Ended</td> 380 397 <td> 381 <%= dateTimeFormatter.format(job.getEnded())%>398 <%=job == null ? "" : dateTimeFormatter.format(job.getEnded())%> 382 399 </td> 383 400 </tr> … … 388 405 </td> 389 406 </tr> 390 <tr>391 <td class="prompt">Description</td>392 <td><%=HTML.niceFormat(job.getDescription())%></td>393 </tr>394 </table>395 407 <% 396 }397 %>398 </td>399 <td width="50%">400 <h4>Plugin & parameters</h4>401 <table class="form" cellspacing=0>402 <tr>403 <td class="prompt">Plugin</td>404 <td><%=Base.getLinkedName(ID, plugin,405 !readPlugin, plugin != null && plugin.hasPermission(Permission.WRITE))%></td>406 </tr>407 <tr>408 <td class="prompt">Plugin configuration</td>409 <td><%=Base.getLinkedName(ID, configuration, !readConfiguration,410 configuration != null && configuration.hasPermission(Permission.WRITE))%></td>411 </tr>412 <%413 if (job != null)414 {415 408 for (String name : job.getParameterNames()) 416 409 {
Note: See TracChangeset
for help on using the changeset viewer.