Changeset 1061
- Timestamp:
- May 11, 2009, 1:23:32 PM (14 years ago)
- Location:
- extensions/net.sf.basedb.mev/trunk
- Files:
-
- 3 added
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
extensions/net.sf.basedb.mev/trunk/META-INF/extensions.xml
r1016 r1061 67 67 </extension> 68 68 <extension 69 id="net.sf.basedb.mev.testlaunchexport" 70 extends="net.sf.basedb.clients.web.bioassayset.list.tools" 71 > 72 <index>3</index> 73 <about> 74 <name>Test - MeV TDMS Export</name> 75 <description> 76 Adds an action to the "Tools" column that exports data to a 77 MeV TDMS file. For debug only. 78 </description> 79 </about> 80 <action-factory> 81 <factory-class> 82 net.sf.basedb.mev.factory.MevButtonFactory 83 </factory-class> 84 <parameters> 85 <requireSpotData>true</requireSpotData> 86 <title>Test MeV TDMS file</title> 87 <tooltip>Immediately creates a MeV TDMS file from the data in this bioassay set</tooltip> 88 <onClick>MeV.testTDMS($ID$)</onClick> 89 <icon>~/images/tm4_export.png</icon> 90 <script>~/scripts/mev.jsp</script> 91 </parameters> 92 </action-factory> 93 </extension> 94 95 <extension 69 96 id="net.sf.basedb.mev.options" 70 97 extends="net.sf.basedb.clients.web.menu.extensions" -
extensions/net.sf.basedb.mev/trunk/README
r1011 r1061 1 1 == Requirements == 2 2 3 1. BASE 2.1 1.0 or later.3 1. BASE 2.12.0 or later. 4 4 5 5 == Introduction == -
extensions/net.sf.basedb.mev/trunk/build.xml
r1026 r1061 23 23 <property name="javac.target" value="1.5" /> 24 24 <property name="javac.encoding" value="UTF-8" /> 25 <property name="depend.jars" value="http://base2.thep.lu.se/base/jars/2.1 1.0" />25 <property name="depend.jars" value="http://base2.thep.lu.se/base/jars/2.12.0" /> 26 26 27 27 <!-- set up classpath for compiling --> … … 101 101 description="Checks that the BASE2Core.jar, BASE2Webclient.jar, BASE2CorePlugins.jar and BASE2WSClient.jar exists." 102 102 > 103 <available classname="net.sf.basedb. core.Application"103 <available classname="net.sf.basedb.util.export.spotdata.AbstractBioAssaySetExporter" 104 104 classpathref="classpath" property="base2core" /> 105 105 <available classname="net.sf.basedb.plugins.BioAssaySetExporter" -
extensions/net.sf.basedb.mev/trunk/resources/launch_export.jsp
r1026 r1061 76 76 catch (Throwable t) 77 77 {} 78 78 79 79 } 80 80 finally … … 106 106 Do you wish to create one with the BioAssaySetExporter plug-in? 107 107 <br><br> 108 <a href="test.xjsp?ID=<%=ID%>&bioassayset_id=<%=bioAssaySetId%>">Test new export</a> 108 109 </base:note> 109 110 <p> -
extensions/net.sf.basedb.mev/trunk/resources/scripts/mev.jsp
r1026 r1061 25 25 Main.openPopup(url, 'CreateTDMSFile', 400, 300); 26 26 } 27 28 this.testTDMS = function(bioAssaySetId) 29 { 30 var url = '<%=homeUrl%>/test.xjsp'; 31 url += '?ID='+getSessionId(); 32 url += '&bioassayset_id=' + bioAssaySetId; 33 Main.openPopup(url, 'TestCreateTDMSFile', 400, 300); 34 } 35 27 36 } 28 37 ();
Note: See TracChangeset
for help on using the changeset viewer.