[MOBY-guts] biomoby commit
senger@ebi.ac.uk
senger at pub.open-bio.org
Sun Nov 9 01:52:28 UTC 2003
senger
Sat Nov 8 20:52:28 EST 2003
Update of /home/repository/moby/moby-live/Java/src/main/org/biomoby/client
In directory pub.open-bio.org:/tmp/cvs-serv21776/src/main/org/biomoby/client
Modified Files:
GraphsServlet.java
Log Message:
moby-live/Java/src/main/org/biomoby/client GraphsServlet.java,1.2,1.3
===================================================================
RCS file: /home/repository/moby/moby-live/Java/src/main/org/biomoby/client/GraphsServlet.java,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- /home/repository/moby/moby-live/Java/src/main/org/biomoby/client/GraphsServlet.java 2003/11/09 01:05:02 1.2
+++ /home/repository/moby/moby-live/Java/src/main/org/biomoby/client/GraphsServlet.java 2003/11/09 01:52:28 1.3
@@ -667,9 +667,9 @@
// where is the 'dot' program
String dotProg = "dot";
- String dotPath = getString (req, DOT_PATH);
+ String dotPath = (String)initParams.get (DOT_PATH);
if (dotPath != null)
- dotProg = dotPath + System.getProperty ("file.sparator") + dotProg;
+ dotProg = dotPath + System.getProperty ("file.separator") + dotProg;
// depending on the cache implementation we may ask
// 'dot' to produce output to its standard output, or
@@ -742,9 +742,9 @@
// where is the 'dot' program
String dotProg = "dot";
- String dotPath = getString (req, DOT_PATH);
+ String dotPath = (String)initParams.get (DOT_PATH);
if (dotPath != null)
- dotProg = dotPath + System.getProperty ("file.sparator") + dotProg;
+ dotProg = dotPath + System.getProperty ("file.separator") + dotProg;
// depending on the cache implementation we may ask
// 'dot' to produce output to its standard output, or
More information about the MOBY-guts
mailing list