extensions/net.sf.basedb.reggie/trunk/resources/analysis/cufflinks_confirm.jsp

Code
Comments
Other
Rev Date Author Line
2826 16 Oct 14 nicklas 1 <%@ page
2826 16 Oct 14 nicklas 2   pageEncoding="UTF-8"
2826 16 Oct 14 nicklas 3   session="false"
2826 16 Oct 14 nicklas 4   import="net.sf.basedb.core.User"
2826 16 Oct 14 nicklas 5   import="net.sf.basedb.core.DbControl"
2826 16 Oct 14 nicklas 6   import="net.sf.basedb.core.SessionControl"
2826 16 Oct 14 nicklas 7   import="net.sf.basedb.core.Application"
2826 16 Oct 14 nicklas 8   import="net.sf.basedb.clients.web.Base"  
2826 16 Oct 14 nicklas 9   import="net.sf.basedb.clients.web.util.HTML"  
2826 16 Oct 14 nicklas 10   import="net.sf.basedb.clients.web.extensions.ExtensionsControl"
2826 16 Oct 14 nicklas 11 %>
2826 16 Oct 14 nicklas 12 <%@ taglib prefix="base" uri="/WEB-INF/base.tld" %>
2826 16 Oct 14 nicklas 13 <%@ taglib prefix="p" uri="/WEB-INF/path.tld" %>
2826 16 Oct 14 nicklas 14 <%
3976 26 May 16 nicklas 15 final SessionControl sc = Base.getExistingSessionControl(request, "net.sf.basedb.reggie", true);
2826 16 Oct 14 nicklas 16 final String ID = sc.getId();
2826 16 Oct 14 nicklas 17 final float scale = Base.getScale(sc);
2826 16 Oct 14 nicklas 18 final String home = ExtensionsControl.getHomeUrl("net.sf.basedb.reggie");
2826 16 Oct 14 nicklas 19 DbControl dc = null;
2826 16 Oct 14 nicklas 20 try
2826 16 Oct 14 nicklas 21 {
2826 16 Oct 14 nicklas 22   dc = sc.newDbControl();
2826 16 Oct 14 nicklas 23   final User user = User.getById(dc, sc.getLoggedInUserId());
2826 16 Oct 14 nicklas 24 %>
2826 16 Oct 14 nicklas 25 <base:page type="default" >
2826 16 Oct 14 nicklas 26 <base:head 
2826 16 Oct 14 nicklas 27   scripts="~../reggie-2.js,~cufflinks_confirm.js" 
2826 16 Oct 14 nicklas 28   styles="path.css,~../css/reggie-2.css"
2826 16 Oct 14 nicklas 29   >
2826 16 Oct 14 nicklas 30 <style>
2826 16 Oct 14 nicklas 31 tr.highlight
2826 16 Oct 14 nicklas 32 {
3026 11 Dec 14 nicklas 33   border-top-width: 1px;
3026 11 Dec 14 nicklas 34   border-top-style: dotted;
2826 16 Oct 14 nicklas 35 }
2826 16 Oct 14 nicklas 36
2826 16 Oct 14 nicklas 37 #rawBioAssaysTable
2826 16 Oct 14 nicklas 38 {
2826 16 Oct 14 nicklas 39   width: 100%; 
2826 16 Oct 14 nicklas 40   border-collapse: collapse;
2826 16 Oct 14 nicklas 41 }
2826 16 Oct 14 nicklas 42
2826 16 Oct 14 nicklas 43 #rawBioAssaysTable thead
2826 16 Oct 14 nicklas 44 {
3026 11 Dec 14 nicklas 45   border-bottom-width: 1px;
3026 11 Dec 14 nicklas 46   border-top-width: 1px;
2826 16 Oct 14 nicklas 47 }
2826 16 Oct 14 nicklas 48
2826 16 Oct 14 nicklas 49 #rawBioAssaysTable td
2826 16 Oct 14 nicklas 50 {
2826 16 Oct 14 nicklas 51   text-align: center;
2826 16 Oct 14 nicklas 52   min-width: 4.5em;
2826 16 Oct 14 nicklas 53 }
2826 16 Oct 14 nicklas 54
2826 16 Oct 14 nicklas 55 #rawBioAssaysTable tbody td
2826 16 Oct 14 nicklas 56 {
2826 16 Oct 14 nicklas 57   padding-top: 1px;
2826 16 Oct 14 nicklas 58   padding-bottom: 1px;
2826 16 Oct 14 nicklas 59 }
2826 16 Oct 14 nicklas 60
2826 16 Oct 14 nicklas 61 #rawBioAssaysTable .italic
2826 16 Oct 14 nicklas 62 {
2826 16 Oct 14 nicklas 63   font-style: italic;
2826 16 Oct 14 nicklas 64 }
2826 16 Oct 14 nicklas 65
4542 26 Jun 17 nicklas 66 #rawBioAssaysTable .warning-col
4542 26 Jun 17 nicklas 67 {
4542 26 Jun 17 nicklas 68   max-width: 20px;
4542 26 Jun 17 nicklas 69   min-width: 0;
4542 26 Jun 17 nicklas 70 }
4542 26 Jun 17 nicklas 71
2826 16 Oct 14 nicklas 72 .file-link
2826 16 Oct 14 nicklas 73 {
2826 16 Oct 14 nicklas 74   margin-left: 0.5em;
2826 16 Oct 14 nicklas 75 }
2826 16 Oct 14 nicklas 76
2826 16 Oct 14 nicklas 77 .comment input
2826 16 Oct 14 nicklas 78 {
2826 16 Oct 14 nicklas 79   width: 95%;
2826 16 Oct 14 nicklas 80   min-width: 20em;
2826 16 Oct 14 nicklas 81 }
2826 16 Oct 14 nicklas 82
2826 16 Oct 14 nicklas 83 </style>
2826 16 Oct 14 nicklas 84 </base:head>
2826 16 Oct 14 nicklas 85 <base:body>
2826 16 Oct 14 nicklas 86
2826 16 Oct 14 nicklas 87   <p:path><p:pathelement 
2826 16 Oct 14 nicklas 88     title="Reggie" href="<%="../index.jsp?ID="+ID%>" 
2826 16 Oct 14 nicklas 89     /><p:pathelement title="Confirm feature extraction" 
2826 16 Oct 14 nicklas 90     /></p:path>
2826 16 Oct 14 nicklas 91
2826 16 Oct 14 nicklas 92   <div class="content">
2826 16 Oct 14 nicklas 93   <form name="reggie" id="wizard" class="wizard">
2826 16 Oct 14 nicklas 94   
2826 16 Oct 14 nicklas 95   <div class="step" id="step-1">
2826 16 Oct 14 nicklas 96     <div class="step-no">1</div>
2826 16 Oct 14 nicklas 97     <div class="step-content">
2826 16 Oct 14 nicklas 98       
2826 16 Oct 14 nicklas 99       <div id="rawBioAssays"></div>
2826 16 Oct 14 nicklas 100     
2826 16 Oct 14 nicklas 101       <table class="step-form topborder" id="delete-items" style="display: none;">
2826 16 Oct 14 nicklas 102       <tr>
2826 16 Oct 14 nicklas 103         <td class="prompt"></td>
2826 16 Oct 14 nicklas 104         <td class="input" style="text-align: right; vertical-align: middle;">
2826 16 Oct 14 nicklas 105           <label>Delete items created by failed jobs
2826 16 Oct 14 nicklas 106           <input type="checkbox" name="deleteItemsCreatedByFailedJobs" id="deleteItemsCreatedByFailedJobs" checked>
2826 16 Oct 14 nicklas 107           </label>
2826 16 Oct 14 nicklas 108         </td>
2826 16 Oct 14 nicklas 109         <td class="status" id="deleteItemsCreatedByFailedJobs.status"></td>
2826 16 Oct 14 nicklas 110         <td class="help">
2826 16 Oct 14 nicklas 111           <span id="deleteItemsCreatedByFailedJobs.message" class="message"></span>
4545 28 Jun 17 nicklas 112           Recommended! Items created by failed jobs are deleted to avoid cluttering in the database.
2826 16 Oct 14 nicklas 113         </td>
2826 16 Oct 14 nicklas 114       </tr>
2826 16 Oct 14 nicklas 115       </table>
2826 16 Oct 14 nicklas 116     </div>
2826 16 Oct 14 nicklas 117   </div>
2826 16 Oct 14 nicklas 118       
2826 16 Oct 14 nicklas 119   <div id="wizard-status"></div>
2826 16 Oct 14 nicklas 120
2826 16 Oct 14 nicklas 121   <table class="navigation" id="navigation">
2826 16 Oct 14 nicklas 122   <tr>
2826 16 Oct 14 nicklas 123     <td><base:button id="gocancel" title="Cancel" /></td>
2826 16 Oct 14 nicklas 124     <td><base:button id="gonext" title="Next" image="<%=home+"/images/gonext.png"%>" /></td>
2826 16 Oct 14 nicklas 125     <td><base:button id="goregister" title="Register" image="<%=home+"/images/import.png"%>"  /></td>
2826 16 Oct 14 nicklas 126     <td><base:button id="gorestart" title="Restart" image="<%=home+"/images/goback.png"%>" /></td>
2826 16 Oct 14 nicklas 127     <td id="gonext-message" class="message"></td>
2826 16 Oct 14 nicklas 128   </tr>
2826 16 Oct 14 nicklas 129   </table>
2826 16 Oct 14 nicklas 130
2826 16 Oct 14 nicklas 131   </form>
2826 16 Oct 14 nicklas 132   </div>
2826 16 Oct 14 nicklas 133   
2826 16 Oct 14 nicklas 134 </base:body>
2826 16 Oct 14 nicklas 135 </base:page>
2826 16 Oct 14 nicklas 136 <%
2826 16 Oct 14 nicklas 137 }
2826 16 Oct 14 nicklas 138 finally
2826 16 Oct 14 nicklas 139 {
2826 16 Oct 14 nicklas 140   if (dc != null) dc.close();
2826 16 Oct 14 nicklas 141 }
2826 16 Oct 14 nicklas 142 %>