[MOBY-guts] biomoby commit
Andreas Groscurth
groscurt at dev.open-bio.org
Mon Jan 5 08:46:07 UTC 2009
groscurt
Mon Jan 5 03:46:07 EST 2009
Update of /home/repository/moby/moby-live/Java/src/main/org/biomoby/service/dashboard
In directory dev.open-bio.org:/tmp/cvs-serv23910/src/main/org/biomoby/service/dashboard
Modified Files:
GeneratorPanel.java
Log Message:
changed to allow deployment on tomcat AND jboss
moby-live/Java/src/main/org/biomoby/service/dashboard GeneratorPanel.java,1.18,1.19
===================================================================
RCS file: /home/repository/moby/moby-live/Java/src/main/org/biomoby/service/dashboard/GeneratorPanel.java,v
retrieving revision 1.18
retrieving revision 1.19
diff -u -r1.18 -r1.19
--- /home/repository/moby/moby-live/Java/src/main/org/biomoby/service/dashboard/GeneratorPanel.java 2008/03/02 16:59:54 1.18
+++ /home/repository/moby/moby-live/Java/src/main/org/biomoby/service/dashboard/GeneratorPanel.java 2009/01/05 08:46:07 1.19
@@ -442,8 +442,8 @@
SwingUtils.addComponent (pDeploy, glue, 1, 0, 1, 1, HORI, NWEST, 1.0, 0.0);
SwingUtils.addComponent (pDeploy, remotely, 2, 0, 1, 1, NONE, NEAST, 0.0, 0.0);
- // Tomcat/Axis locations
- JPanel pServer = createTitledPanel ("Tomcat/Axis locations");
+ // Server/Axis locations
+ JPanel pServer = createTitledPanel ("Server/Axis locations");
String initValue = null;
String os = System.getProperty ("os.name");
@@ -455,17 +455,18 @@
else
initValue = "/usr/local/";
- JLabel lTomcatHome = new JLabel ("Tomcat home directory");
+ JLabel lTomcatHome = new JLabel ("Server home directory");
JFileChooserWithHistory tomcatHome =
- createFileSelector ("Select Tomcat home directory",
+ createFileSelector ("Select server home directory",
"Select",
initValue,
DP_TOMCAT_HOME,
DP_TOMCAT_HOME);
tomcatHome.getFileChooser().setFileSelectionMode (JFileChooser.DIRECTORIES_ONLY);
- JLabel lAxisInT = new JLabel ("Axis relative path in Tomcat");
- JTextFieldWithHistory axisInT = createText ("axis", DP_AXIS_IN_TOMCAT, DP_AXIS_IN_TOMCAT);
+ JLabel lAxisInT = new JLabel ("Axis relative path");
+ JTextFieldWithHistory axisInT = createText (null, DP_AXIS_IN_TOMCAT, DP_AXIS_IN_TOMCAT);
+ axisInT.setToolTipText( "The path to Axis - e.g. webapps/axis for Tomcat or server/default/deploy/axis.war for JBoss" );
JLabel lHost = new JLabel ("Hostname");
JTextFieldWithHistory host = createText ("localhost", DP_HOSTNAME, DP_HOSTNAME);
JLabel lPort = new JLabel ("Port");
More information about the MOBY-guts
mailing list