You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@beehive.apache.org by js...@apache.org on 2004/10/13 00:44:47 UTC

svn commit: rev 54707 - in incubator/beehive/trunk/controls/test: . infra/tch tools/tch/src/java/org/apache/beehive/test/tools/tch/logger tools/tch/src/java/org/apache/beehive/test/tools/tch/tool tools/tch/src/java/org/apache/beehive/test/tools/tch/util/gtlf

Author: jsong
Date: Tue Oct 12 15:44:45 2004
New Revision: 54707

Modified:
   incubator/beehive/trunk/controls/test/build.xml
   incubator/beehive/trunk/controls/test/infra/tch/tchx.jar
   incubator/beehive/trunk/controls/test/tools/tch/src/java/org/apache/beehive/test/tools/tch/logger/GTLFLogger.java
   incubator/beehive/trunk/controls/test/tools/tch/src/java/org/apache/beehive/test/tools/tch/tool/GTLFGenerator.java
   incubator/beehive/trunk/controls/test/tools/tch/src/java/org/apache/beehive/test/tools/tch/util/gtlf/GTLFEntityResolver.java
Log:
TCH will use the dtd located at http://incubator.apache.org/beehive/dtd/gtlf/gtlf-config-2.0.dtd in the GTLF result files.

Contributed by Joe Pemberton



Modified: incubator/beehive/trunk/controls/test/build.xml
==============================================================================
--- incubator/beehive/trunk/controls/test/build.xml	(original)
+++ incubator/beehive/trunk/controls/test/build.xml	Tue Oct 12 15:44:45 2004
@@ -356,7 +356,7 @@
         <gethostname/> <!-- set ${hostname} -->
 
 	<property name="gtlf.dtd.use.remote" value="true"/>
-	<property name="gtlf.dtd.remote" value="http://svn.apache.org/viewcvs.cgi/*checkout*/incubator/beehive/trunk/controls/test/infra/gtlf/gtlf-config-2.0.dtd?root=Apache-SVN"/>
+	<property name="gtlf.dtd.remote" value="http://incubator.apache.org/beehive/dtd/gtlf/gtlf-config-2.0.dtd"/>
 	<property name="gtlf.dtd.local" value="infra/gtlf/gtlf-config-2.0.dtd"/>
 
         <property name="test.hostname" value="${hostname}" />

Modified: incubator/beehive/trunk/controls/test/infra/tch/tchx.jar
==============================================================================
Binary files. No diff available.

Modified: incubator/beehive/trunk/controls/test/tools/tch/src/java/org/apache/beehive/test/tools/tch/logger/GTLFLogger.java
==============================================================================
--- incubator/beehive/trunk/controls/test/tools/tch/src/java/org/apache/beehive/test/tools/tch/logger/GTLFLogger.java	(original)
+++ incubator/beehive/trunk/controls/test/tools/tch/src/java/org/apache/beehive/test/tools/tch/logger/GTLFLogger.java	Tue Oct 12 15:44:45 2004
@@ -30,7 +30,7 @@
     "<!DOCTYPE "
       + TEST_LOG_ELEMENT
       + " PUBLIC \"-//BEA Systems, Inc.//DTD GTLF 1.0//EN\""
-      +   " \"http://incubator.apache.org/beehive/gtlf-config-2.0.dtd\">";
+      +   " \"http://incubator.apache.org/beehive/dtd/gtlf/gtlf-config-2.0.dtd,\">";
 
   public static final SimpleDateFormat XML_LOG_DATEFORMAT =
     new SimpleDateFormat("MM/dd/yyyy HH:mm:ss");

Modified: incubator/beehive/trunk/controls/test/tools/tch/src/java/org/apache/beehive/test/tools/tch/tool/GTLFGenerator.java
==============================================================================
--- incubator/beehive/trunk/controls/test/tools/tch/src/java/org/apache/beehive/test/tools/tch/tool/GTLFGenerator.java	(original)
+++ incubator/beehive/trunk/controls/test/tools/tch/src/java/org/apache/beehive/test/tools/tch/tool/GTLFGenerator.java	Tue Oct 12 15:44:45 2004
@@ -30,8 +30,6 @@
     result.clearNonNull();
 
     // Stuff the result object.
-    // See http://sapphire/docs/test_guide.html#import for legal values
-    // The GTLF dtd is at: http://sapphire/docs/downloads/gtlf-config-1-0.dtd
 
     String testunit = "rmi";
 	result.setTestUnitName(testunit);

Modified: incubator/beehive/trunk/controls/test/tools/tch/src/java/org/apache/beehive/test/tools/tch/util/gtlf/GTLFEntityResolver.java
==============================================================================
--- incubator/beehive/trunk/controls/test/tools/tch/src/java/org/apache/beehive/test/tools/tch/util/gtlf/GTLFEntityResolver.java	(original)
+++ incubator/beehive/trunk/controls/test/tools/tch/src/java/org/apache/beehive/test/tools/tch/util/gtlf/GTLFEntityResolver.java	Tue Oct 12 15:44:45 2004
@@ -11,15 +11,15 @@
 {
 
   public static String REMOTE_GTLF_DTD_V10 =
-    "http://blah.beasys.com/docs/downloads/gtlf-config-1-0.dtd";
+    "http://incubator.apache.org/beehive/dtd/gtlf/gtlf-config-1.0.dtd";
   public static String LOCAL_GTLF_DTD_V10 = "gtlf-config-1-0.dtd";
 
   public static String REMOTE_GTLF_DTD_V20 =
-    "http://blah.beasys.com/docs/downloads/gtlf-config-2-0.dtd";
+    "http://incubator.apache.org/beehive/dtd/gtlf/gtlf-config-2.0.dtd";
   public static String LOCAL_GTLF_DTD_V20 = "gtlf-config-2-0.dtd";
 
   public static String REMOTE_VALID_VALUES_DTD_V10 =
-    "http://blah.beasys.com/docs/downloads/valid-values-1-0.dtd";
+    "http://incubator.apache.org/beehive/dtd/gtlf/valid-values-1.0.dtd";
   public static String LOCAL_VALID_VALUES_DTD_V10 = "valid-values-1-0.dtd";
 
   private static Map mappings = new HashMap();