- From: Jean-Guilhem Rouel via cvs-syncmail <cvsmail@w3.org>
- Date: Fri, 18 Apr 2008 12:35:24 +0000
- To: www-validator-cvs@w3.org
Update of /sources/public/2006/unicorn/org/w3c/unicorn/util
In directory hutz:/tmp/cvs-serv25229/org/w3c/unicorn/util
Modified Files:
LocalizedString.java Property.java remote-unicorn.properties
unicorn.properties
Log Message:
fixed a bug preventing the completion of unicorn initialization + misc
Index: Property.java
===================================================================
RCS file: /sources/public/2006/unicorn/org/w3c/unicorn/util/Property.java,v
retrieving revision 1.1.1.1
retrieving revision 1.2
diff -u -d -r1.1.1.1 -r1.2
--- Property.java 31 Aug 2006 09:09:28 -0000 1.1.1.1
+++ Property.java 18 Apr 2008 12:35:22 -0000 1.2
@@ -21,7 +21,7 @@
*/
public class Property {
- private static final Log logger = LogFactory.getLog("org.w3c.unicorn.util");
+ private static final Log logger = LogFactory.getLog(Property.class);
private static final Map<String, Property> mapOfProperty = new Hashtable<String, Property>();
private static void addProperty (final Property aProperty) {
Index: remote-unicorn.properties
===================================================================
RCS file: /sources/public/2006/unicorn/org/w3c/unicorn/util/remote-unicorn.properties,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -d -r1.1 -r1.2
--- remote-unicorn.properties 29 Nov 2007 14:11:58 -0000 1.1
+++ remote-unicorn.properties 18 Apr 2008 12:35:22 -0000 1.2
@@ -1,6 +1,5 @@
-
-UNICORN_URL = http://flyingman.sophia.w3.org:8180/unicorn/
-UNICORN_HOME = /usr/share/tomcat5.5-webapps/unicorn/
+UNICORN_URL = http://localhost:8180/unicorn/
+UNICORN_HOME = /var/lib/tomcat5.5/webapps/unicorn/
UNICORN_ENCODING = UTF-8
UNICORN_PARAMETER_PREFIX = ucn_
@@ -26,9 +25,7 @@
URL_TO_TEMPORARY_FILES = $UNICORN_URL , temporary_files/
OBSERVER_LIST_FILE = $PATH_TO_OBSERVER_LIST , observers.list
-OBSERVER_RDF_MODEL = $FILESYSTEM_PREFIX , $PATH_TO_RESOURCES , schemas/Observer.rdfs
OBSERVER_XML_FILENAME = observer.wadl
-OBSERVER_RDF_FILENAME = observer.rdf
TASKLIST_RDF_FILENAME = tasklist.rdf
TASKLIST_RDF_FILE = $PATH_TO_TASKLIST , $TASKLIST_RDF_FILENAME
Index: LocalizedString.java
===================================================================
RCS file: /sources/public/2006/unicorn/org/w3c/unicorn/util/LocalizedString.java,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -d -r1.3 -r1.4
--- LocalizedString.java 20 Feb 2008 15:09:59 -0000 1.3
+++ LocalizedString.java 18 Apr 2008 12:35:22 -0000 1.4
@@ -18,7 +18,7 @@
*/
public class LocalizedString {
- private static final Log logger = LogFactory.getLog("org.w3c.unicorn.util");
+ private static final Log logger = LogFactory.getLog(LocalizedString.class);
public static String DEFAULT_LANGUAGE = "en";
Index: unicorn.properties
===================================================================
RCS file: /sources/public/2006/unicorn/org/w3c/unicorn/util/unicorn.properties,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -d -r1.3 -r1.4
--- unicorn.properties 29 Nov 2007 14:11:58 -0000 1.3
+++ unicorn.properties 18 Apr 2008 12:35:22 -0000 1.4
@@ -1,6 +1,6 @@
-UNICORN_URL = http://flyingman.sophia.w3.org:8180/unicorn/
-UNICORN_HOME = D:/unicorn/
+UNICORN_URL = http://localhost:8180/unicorn/
+UNICORN_HOME = /var/lib/tomcat55/webapps/unicorn/
UNICORN_ENCODING = UTF-8
UNICORN_PARAMETER_PREFIX = ucn_
Received on Friday, 18 April 2008 12:35:54 UTC