[MOBY-guts] biomoby commit

Gary Schiltz gss at pub.open-bio.org
Wed Mar 15 00:51:11 UTC 2006


gss
Tue Mar 14 19:51:11 EST 2006
Update of /home/repository/moby/s-moby/ref-impl/semanticmoby.org/src/org/semanticmoby/ref/servlets
In directory pub.open-bio.org:/tmp/cvs-serv28344/src/org/semanticmoby/ref/servlets

Modified Files:
	PostResourcesServlet.java 
Log Message:
Fixed to use updated URIInvestigator class; convert line endings to Unix

s-moby/ref-impl/semanticmoby.org/src/org/semanticmoby/ref/servlets PostResourcesServlet.java,1.3,1.4
===================================================================
RCS file: /home/repository/moby/s-moby/ref-impl/semanticmoby.org/src/org/semanticmoby/ref/servlets/PostResourcesServlet.java,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- /home/repository/moby/s-moby/ref-impl/semanticmoby.org/src/org/semanticmoby/ref/servlets/PostResourcesServlet.java	2006/03/02 08:54:32	1.3
+++ /home/repository/moby/s-moby/ref-impl/semanticmoby.org/src/org/semanticmoby/ref/servlets/PostResourcesServlet.java	2006/03/15 00:51:11	1.4
@@ -36,11 +36,13 @@
             for (int i = 0; i < resourceCount; i++) {
 
                 String resourceURL = request.getParameter("resource-" + (i + 1));
-                if (Log.INFO) Log.info("resourceURL = " + resourceURL);
+                if (Log.DEBUG) Log.debug("resourceURL = " + resourceURL);
 
                 if (resourceURL != null) {
                     if (!resourceURL.equals("")) {
-                        URIInvestigator.investigate(resourceURL);
+                    	URIInvestigator investigator =
+                    		new URIInvestigator(resourceURL);
+                    	investigator.investigate();
                         count++;
                     }
                 }




More information about the MOBY-guts mailing list