Changeset 7874
- Timestamp:
- Oct 22, 2020, 8:21:45 AM (3 years ago)
- Location:
- trunk
- Files:
-
- 1 deleted
- 12 edited
- 1 copied
Legend:
- Unmodified
- Added
- Removed
-
trunk
- Property svn:mergeinfo changed
/branches/3.17-stable (added) merged: 7862,7864-7871,7873
- Property svn:mergeinfo changed
-
trunk/credits.txt
r7794 r7874 1 1 $Id$ 2 2 3 The current BASE team is (at BASE 3.1 6release)3 The current BASE team is (at BASE 3.17 release) 4 4 {{{ 5 5 Jari Häkkinen -
trunk/doc/3rd-party-components.txt
r7825 r7874 107 107 108 108 More info : https://dev.mysql.com/downloads/connector/j/ 109 Version : 8.0. 19109 Version : 8.0.22 110 110 License : GPLv2 (mysql-connector-LICENSE.txt) 111 Jar files : mysql-connector-java-8.0. 19.jar111 Jar files : mysql-connector-java-8.0.22.jar 112 112 113 113 -
trunk/src/clients/web/net/sf/basedb/clients/web/extensions/list/AnyLinkColumnActionFactory.java
r7855 r7874 57 57 58 58 59 @SuppressWarnings( "unchecked")59 @SuppressWarnings({"unchecked", "rawtypes"}) 60 60 @Override 61 61 public ListColumnAction<BasicItem, Object>[] getActions(InvokationContext<? super ListColumnAction<BasicItem, Object>> context) -
trunk/src/clients/web/net/sf/basedb/clients/web/extensions/list/RelatedItemColumnActionFactory.java
r7840 r7874 60 60 61 61 62 @SuppressWarnings( "unchecked")62 @SuppressWarnings({"unchecked", "rawtypes"}) 63 63 @Override 64 64 public ListColumnAction<Annotatable, Object>[] getActions(InvokationContext<? super ListColumnAction<Annotatable, Object>> context) -
trunk/src/clients/web/net/sf/basedb/clients/web/formatter/AutoLinkFormatter.java
r7855 r7874 35 35 36 36 * Files are linked with {@link Base#getLinkedFile(String, File, boolean, boolean, boolean, String)} 37 and with a {@link FileViewerUtil} if it is available 37 38 * Nameable items are linked with {@link Base#getLinkedName(String, Nameable, boolean, boolean)} 38 * Other items are linked with {@link Base#getLink(String, String, Item, int, boolean) 39 * Other items are linked with {@link Base#getLink(String, String, Item, int, boolean)} 39 40 40 41 -
trunk/src/core/net/sf/basedb/util/AnyToAnyLinkStatistics.java
r7853 r7874 150 150 Set the maximum number of items to use for gathering the statistics. 151 151 The default value is 500. A higher value may affect performance. 152 @param maxRandomSamples153 152 */ 154 153 public void setMaxRandomSamples(int maxRandomSamples) -
trunk/src/core/net/sf/basedb/util/parser/FlatFileParser.java
r7832 r7874 2011 2011 protected String fixString(String value) 2012 2012 { 2013 // TODO - In Java 11 we can use String.strip() which also handles other white-space than "space" 2014 if (value != null && trimWhiteSpace) value = value.trim(); 2013 if (value != null && trimWhiteSpace) value = value.strip(); 2015 2014 2016 2015 return value == null || -
trunk/src/plugins/core/net/sf/basedb/plugins/batchimport/AnyToAnyImporter.java
r7849 r7874 49 49 import net.sf.basedb.core.Job; 50 50 import net.sf.basedb.core.Metadata; 51 import net.sf.basedb.core.Nameable; 51 52 import net.sf.basedb.core.Permission; 52 53 import net.sf.basedb.core.PluginParameter; -
trunk/src/test/net/sf/basedb/test/roles/AnalysisTest.java
r7052 r7874 48 48 import net.sf.basedb.util.overview.Validator; 49 49 import net.sf.basedb.util.overview.Failure; 50 import net.sf.basedb.util.overview.extensions.ValidationRuleAction;51 50 52 51 /** … … 82 81 83 82 ValidationOptions options = new ValidationOptions(); 84 // Expected, since we never specified a biosource for the reference sample and never kit for any item 85 options.setSeverity((ValidationRuleAction)Validator.MISSING_BIOSOURCE, Severity.IGNORE); 86 options.setSeverity((ValidationRuleAction)Validator.MISSING_KIT, Severity.IGNORE); 83 // Expected, since we never specified a biosource for the reference sample and never kit for any item or files for protocols 84 options.setSeverity(Validator.MISSING_BIOSOURCE, Severity.IGNORE); 85 options.setSeverity(Validator.MISSING_KIT, Severity.IGNORE); 86 options.setSeverity(Validator.MISSING_FILE, Severity.IGNORE); 87 87 GenericOverview overview = getExperimentOverview(dc, experiment, 88 88 activeProject, options, 0); 89 89 90 90 // Expected, since the Affymetrix experiment is using a different raw data type 91 options.setSeverity( (ValidationRuleAction)Validator.NONDEFAULT_RAWDATATYPE, Severity.IGNORE);92 options.setSeverity( (ValidationRuleAction)Validator.MISSING_HARDWARE, Severity.IGNORE);93 options.setSeverity( (ValidationRuleAction)Validator.MISSING_PROTOCOL, Severity.IGNORE);94 options.setSeverity( (ValidationRuleAction)Validator.NONMATCHING_SPOTCOUNT, Severity.IGNORE);91 options.setSeverity(Validator.NONDEFAULT_RAWDATATYPE, Severity.IGNORE); 92 options.setSeverity(Validator.MISSING_HARDWARE, Severity.IGNORE); 93 options.setSeverity(Validator.MISSING_PROTOCOL, Severity.IGNORE); 94 options.setSeverity(Validator.NONMATCHING_SPOTCOUNT, Severity.IGNORE); 95 95 GenericOverview affyOverview = getExperimentOverview(dc, affyExperiment, 96 96 activeProject, options, 2); 97 97 98 options.setSeverity( (ValidationRuleAction)Validator.MISSING_ARRAYSLIDE, Severity.IGNORE);99 options.setSeverity( (ValidationRuleAction)Validator.MISSING_TAG, Severity.IGNORE);98 options.setSeverity(Validator.MISSING_ARRAYSLIDE, Severity.IGNORE); 99 options.setSeverity(Validator.MISSING_TAG, Severity.IGNORE); 100 100 // Sequence experiment overview 101 101 GenericOverview seqOverview = getExperimentOverview(dc, seqExperiment, -
trunk/www/common/columns/add_linkeditem_column.jsp
r7853 r7874 64 64 <div class="content"> 65 65 <table class="fullform input100 bottomborder"> 66 <tr> 67 <th></th> 68 <td> 69 <select name="presets" id="presets" style="width: 25em;"> 70 <option value="">- presets - 71 <% 72 for (AnyToAnyLinkStatistics stat : stats) 73 { 74 String name = HTML.encodeTags(stat.getLinkName()); 75 String targetType = stat.getTargetType().name(); 66 <% 67 if (stats.size() > 0) 68 { 69 %> 70 <tr> 71 <th></th> 72 <td> 73 <select name="presets" id="presets" style="width: 25em;"> 74 <option value="">- presets - 75 <% 76 for (AnyToAnyLinkStatistics stat : stats) 77 { 78 String name = HTML.encodeTags(stat.getLinkName()); 79 String targetType = stat.getTargetType().name(); 80 %> 81 <option data-linkname="<%=name%>" data-targettype="<%=targetType%>"><%=name%> [<%=targetType%>] 82 <% 83 } 76 84 %> 77 <option data-linkname="<%=name%>" data-targettype="<%=targetType%>"><%=name%> [<%=targetType%>] 78 <% 79 } 80 %> 81 </select> 82 </td> 83 </tr> 85 </select> 86 </td> 87 </tr> 88 <% 89 } 90 %> 84 91 <tr> 85 92 <th style="border-top-width: 0;">Link name</th> -
trunk/www/include/styles/table.css
r7851 r7874 225 225 float: left; 226 226 content: '›'; 227 color: # 999999;227 color: #666666; 228 228 } 229 229
Note: See TracChangeset
for help on using the changeset viewer.