Changeset 1104 for extensions/net.sf.basedb.genepattern
- Timestamp:
- May 29, 2009, 2:53:33 PM (14 years ago)
- Location:
- extensions/net.sf.basedb.genepattern/trunk
- Files:
-
- 12 added
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
extensions/net.sf.basedb.genepattern/trunk/README
r1090 r1104 1 1 == Requirements == 2 2 3 1. BASE 2.12. 0or later.3 1. BASE 2.12.1 or later. 4 4 5 5 == Introduction == … … 18 18 1. Download the gp-integration-*.tar.gz file. 19 19 2. Unpack the downloaded file to a directory of your choice. 20 3. Copy the gp-integration.jar file to your BASE extensions directory:21 WEB-INF/extensions.20 3. Copy the `gp-integration.jar` file and the `lib` directory, including sub- 21 directories and files, to your BASE extensions directory, `WEB-INF/extensions`. 22 22 4. Run the 'Extensions -> Manual scan' command if you have disabled automatic 23 23 installation. Otherwise, just wait a bit and the automatic installation will … … 30 30 7. Done. 31 31 32 32 33 33 == Known issues == 34 34 -
extensions/net.sf.basedb.genepattern/trunk/build.xml
r1103 r1104 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.12. 0" />25 <property name="depend.jars" value="http://base2.thep.lu.se/base/jars/2.12.1" /> 26 26 <property name="genepattern.jars" value="http://genepattern.broad.mit.edu/gp/downloads" /> 27 27 … … 59 59 prefix="${tar.prefix}" 60 60 preserveLeadingSlashes="true" 61 includes="${jar.name},README,LICENSE*" 61 includes="${jar.name},README,LICENSE*,lib/genepattern/*" 62 excludes="lib/genepattern/GenePattern.jar,lib/genepattern/gp-modules.jar" 62 63 > 63 64 </tarfileset> … … 76 77 <jar 77 78 jarfile="${jar.name}" 79 manifest="${build}/META-INF/MANIFEST.MF" 78 80 > 79 81 <fileset dir="${build}" /> -
extensions/net.sf.basedb.genepattern/trunk/resources/edit_server.jsp
r1102 r1104 81 81 if (validate()) document.forms['options'].submit(); 82 82 } 83 function testServer() 84 { 85 if (!validate()) return; 86 var frm = document.forms['options']; 87 var url = '<%=homeUrl%>/TestServer.servlet'; 88 url += '?server=' + encodeURIComponent(frm.gpServer.value); 89 url += '&login=' + encodeURIComponent(frm.gpLogin.value); 90 url += '&password=' + encodeURIComponent(frm.gpPassword.value); 91 Main.openPopup(url, 'TestGPServer', 700, 500); 92 } 83 93 </script> 84 94 </base:head> … … 110 120 <table align="center"> 111 121 <tr> 112 <td width="50%"><base:button onclick="saveSettings();" title="Save" /></td> 113 <td width="50%"><base:button onclick="window.close();" title="Cancel" /></td> 122 <td width="33%"><base:button onclick="testServer();" title="Test" 123 image="<%=homeUrl + "/images/genepattern.gif" %>" 124 onclick="testServer()" /></td> 125 <td width="33%"><base:button onclick="saveSettings();" title="Save" /></td> 126 <td width="33%"><base:button onclick="window.close();" title="Cancel" /></td> 114 127 </tr> 115 128 </table>
Note: See TracChangeset
for help on using the changeset viewer.