Changeset 2022
- Timestamp:
- Sep 17, 2013, 2:46:12 PM (9 years ago)
- Location:
- extensions/net.sf.basedb.reggie/trunk
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
extensions/net.sf.basedb.reggie/trunk/resources/admin/install.jsp
r1915 r2022 92 92 } 93 93 94 if (lastItemType != check.itemType) 94 var sameSection = lastItemType == check.itemType; 95 // Do not start new section when switching between plugin definition and configuration 96 if (!sameSection) sameSection = lastItemType == 'PLUGINDEFINITION' && check.itemType == 'PLUGINCONFIGURATION'; 97 if (!sameSection) sameSection = lastItemType == 'PLUGINCONFIGURATION' && check.itemType == 'PLUGINDEFINITION'; 98 if (!sameSection) 95 99 { 96 100 html += first10; … … 125 129 } 126 130 127 var line = '<tr class="sameitemtype highlight ">';131 var line = '<tr class="sameitemtype highlight '+check.itemType+'">'; 128 132 lastItemType = check.itemType; 129 133 var name = check.name; … … 266 270 } 267 271 272 .report .sameitemtype.PLUGINCONFIGURATION > td:first-child 273 { 274 padding-left: 2.5em; 275 font-style: italic; 276 } 277 268 278 .report td 269 279 { -
extensions/net.sf.basedb.reggie/trunk/src/net/sf/basedb/reggie/servlet/InstallServlet.java
r2021 r2022 355 355 // Plugin definitions and configurations 356 356 jsonChecks.add(checkPlugin(dc, CaliperSampleNameExporter.class, effectiveOptions, createIfMissing)); 357 357 358 jsonChecks.add(checkPlugin(dc, CaliperRunParametersExporter.class, effectiveOptions, createIfMissing)); 358 jsonChecks.add(checkPlugin(dc, CaliperLibPrepParametersExporter.class, effectiveOptions, createIfMissing));359 jsonChecks.add(checkPlugin(dc, QubitSampleNameExporter.class, effectiveOptions, createIfMissing));360 jsonChecks.add(checkPlugin(dc, FlowCellSampleSheetExporter.class, effectiveOptions, createIfMissing));361 362 359 jsonChecks.add(checkPluginConfiguration(dc, CaliperRunParametersExporter.class, "Standard sensitivity", effectiveOptions, createIfMissing)); 363 360 jsonChecks.add(checkPluginConfiguration(dc, CaliperRunParametersExporter.class, "High sensitivity", effectiveOptions, createIfMissing)); 361 362 jsonChecks.add(checkPlugin(dc, CaliperLibPrepParametersExporter.class, effectiveOptions, createIfMissing)); 364 363 jsonChecks.add(checkPluginConfiguration(dc, CaliperLibPrepParametersExporter.class, "HT DNA 1K Ver2 (96)", effectiveOptions, createIfMissing)); 365 364 jsonChecks.add(checkPluginConfiguration(dc, CaliperLibPrepParametersExporter.class, "HT DNA 1K Ver2 (384)", effectiveOptions, createIfMissing)); 366 365 366 jsonChecks.add(checkPlugin(dc, QubitSampleNameExporter.class, effectiveOptions, createIfMissing)); 367 368 jsonChecks.add(checkPlugin(dc, FlowCellSampleSheetExporter.class, effectiveOptions, createIfMissing)); 367 369 jsonChecks.add(checkPluginConfiguration(dc, FlowCellSampleSheetExporter.class, "SCAN-B 2x50", effectiveOptions, createIfMissing)); 368 370
Note: See TracChangeset
for help on using the changeset viewer.