Changeset 2066
- Timestamp:
- Oct 15, 2013, 8:40:23 AM (10 years ago)
- Location:
- extensions/net.sf.basedb.reggie/trunk
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
extensions/net.sf.basedb.reggie/trunk/resources/libprep/pool_registration.jsp
r2044 r2066 479 479 <table> 480 480 <tr valign="top"> 481 <td class="prompt"> Date</td>481 <td class="prompt">Pool date</td> 482 482 <td class="input"> 483 483 <input type="text" class="required" name="poolDate" value="" size="12" maxlength="10" -
extensions/net.sf.basedb.reggie/trunk/src/net/sf/basedb/reggie/dao/Annotationtype.java
r2060 r2066 539 539 540 540 /** 541 The "PoolDate" annotation, used for extracts (PooledLibrary). 542 The date the pool was created. 543 @since 2.13 544 */ 545 public static final Annotationtype POOL_DATE = 546 new Annotationtype("PoolDate", Type.DATE, Item.EXTRACT); 547 548 549 /** 541 550 The "PoolMixingStrategy" annotation, used for extracts (PooledLibrary). 542 551 Store the admin-defined setting for the strategy to use when mixing the pool. -
extensions/net.sf.basedb.reggie/trunk/src/net/sf/basedb/reggie/servlet/InstallServlet.java
r2060 r2066 270 270 new ValueOptions(PooledLibrary.MIXING_STRATEGY_FIXED, PooledLibrary.MIXING_STRATEGY_DYNAMIC), 271 271 effectiveOptions, createIfMissing)); 272 jsonChecks.add(checkAnnotationType(dc, Annotationtype.POOL_DATE, 1, null, effectiveOptions, createIfMissing)); 272 273 jsonChecks.add(checkAnnotationType(dc, Annotationtype.OPERATOR, 1, null, effectiveOptions, createIfMissing)); 273 274 jsonChecks.add(checkAnnotationType(dc, Annotationtype.DILUTION_DATE, 1, null, effectiveOptions, createIfMissing)); … … 365 366 jsonChecks.add(checkAnnotationTypeCategory(dc, Subtype.POOLED_LIBRARY, createIfMissing, 366 367 Annotationtype.POOL_MOLARITY, Annotationtype.POOL_CONC, Annotationtype.POOL_TARGET_VOLUME_PER_LIB, 367 Annotationtype.POOL_MIXING_STRATEGY, Annotationtype. OPERATOR));368 Annotationtype.POOL_MIXING_STRATEGY, Annotationtype.POOL_DATE, Annotationtype.OPERATOR)); 368 369 369 370 jsonChecks.add(checkAnnotationTypeCategory(dc, Subtype.FLOW_CELL, createIfMissing, -
extensions/net.sf.basedb.reggie/trunk/src/net/sf/basedb/reggie/servlet/PoolServlet.java
r2044 r2066 551 551 poolExtract.setDescription(Values.getStringOrNull((String)jsonPool.get("comments"))); 552 552 Annotationtype.OPERATOR.setAnnotationValue(dc, poolExtract, operator); 553 Annotationtype.POOL_DATE.setAnnotationValue(dc, poolExtract, poolDate); 553 554 554 555 // Check if there are any .dil items
Note: See TracChangeset
for help on using the changeset viewer.