Changeset 3102
- Timestamp:
- Feb 5, 2007, 11:02:35 PM (17 years ago)
- Location:
- trunk/www/plugins/org/tigr/microarray/mev
- Files:
-
- 1 edited
- 1 moved
Legend:
- Unmodified
- Added
- Removed
-
trunk/www/plugins/org/tigr/microarray/mev/launch_mev.jsp
r3100 r3102 5 5 This file is part of BASE - BioArray Software Environment. 6 6 Available at http://base.thep.lu.se/ 7 8 This file is part of BASE.9 7 10 8 BASE is free software; you can redistribute it and/or … … 29 27 30 28 <%@ page session="false" 31 import="net.sf.basedb.util.Values"32 import="net.sf.basedb.plugins.BioAssaySetExporter"33 29 %> 34 30 <% 35 31 final String SessionID=request.getParameter("ID"); 36 final int bioassaysetId=Values.getInt(request.getParameter("bioassayset_id")); 37 final BioAssaySetExporter base=null; 32 final String bioassaysetId=request.getParameter("bioassayset_id"); 33 final String serverName=request.getServerName(); 34 final int serverPort=request.getServerPort(); 35 final String serverPath=request.getContextPath(); 38 36 %> 39 37 … … 46 44 47 45 <jnlp spec="1.0" 48 codebase="http:// localhost:8080/base/plugins/org/tigr/microarray/mev"46 codebase="http://<%=serverName%>:<%=serverPort%><%=serverPath%>/plugins/org/tigr/microarray/mev" 49 47 version="4.0"> 50 48 … … 92 90 <jar href="vecmath.jar"/> 93 91 <jar href="xerces.jar"/> 94 <extension name="others" href="others.j nlp"/>92 <extension name="others" href="others.jsp"/> 95 93 <j2se version="1.4.2+" 96 94 max-heap-size="512M" … … 98 96 </resources> 99 97 <application-desc main-class="org.tigr.microarray.mev.TMEV"> 100 <argument>-download_url http:// localhost:8080/base/plugins/org/tigr/microarray/mev/export?ID=<%=SessionID%>&bioassayset_id=<%=bioassaysetId%></argument>98 <argument>-download_url http://<%=serverName%>:<%=serverPort%><%=serverPath%>/plugins/org/tigr/microarray/mev/export?ID=<%=SessionID%>&bioassayset_id=<%=bioassaysetId%></argument> 101 99 <argument>-row 1</argument> 102 100 <argument>-column 20</argument> -
trunk/www/plugins/org/tigr/microarray/mev/others.jsp
r3101 r3102 26 26 --> 27 27 28 <?xml version="1.0" encoding="utf-8"?> 28 <%@ page session="false" 29 %> 30 <% 31 final String serverName=request.getServerName(); 32 final int serverPort=request.getServerPort(); 33 final String serverPath=request.getContextPath(); 34 %> 35 36 <%@page contentType="application/x-java-jnlp-file"%> 37 <% 38 response.setHeader("Expires", "0"); 39 %> 40 <?xml version="1.0" encoding="UTF-8"?> 41 <!DOCTYPE jnlp PUBLIC "-//Sun Microsystems, Inc.//DTD JNLP 1.5//EN" "http://www.netbeans.org/jnlp/DTD/jnlp.dtd"> 29 42 30 43 <jnlp spec="1.0" 31 codebase="http://localhost:8080/base/plugins/org/tigr/microarray/mev"44 codebase="http://<%=serverName%>:<%=serverPort%><%=serverPath%>/plugins/org/tigr/microarray/mev" 32 45 version="4.0"> 33 46 <information>
Note: See TracChangeset
for help on using the changeset viewer.