You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@cocoon.apache.org by cz...@apache.org on 2007/01/16 15:12:00 UTC

svn commit: r496696 - in /cocoon/trunk/core: cocoon-core/src/main/resources/org/apache/cocoon/ cocoon-pipeline/cocoon-pipeline-api/src/main/java/org/apache/cocoon/ cocoon-sitemap/cocoon-sitemap-components/src/main/java/org/apache/cocoon/generation/

Author: cziegeler
Date: Tue Jan 16 06:12:00 2007
New Revision: 496696

URL: http://svn.apache.org/viewvc?view=rev&rev=496696
Log:
Remove build information as this is not working with Maven and not very useful because of the split up.

Modified:
    cocoon/trunk/core/cocoon-core/src/main/resources/org/apache/cocoon/cocoon.properties
    cocoon/trunk/core/cocoon-pipeline/cocoon-pipeline-api/src/main/java/org/apache/cocoon/Constants.java
    cocoon/trunk/core/cocoon-sitemap/cocoon-sitemap-components/src/main/java/org/apache/cocoon/generation/StatusGenerator.java

Modified: cocoon/trunk/core/cocoon-core/src/main/resources/org/apache/cocoon/cocoon.properties
URL: http://svn.apache.org/viewvc/cocoon/trunk/core/cocoon-core/src/main/resources/org/apache/cocoon/cocoon.properties?view=diff&rev=496696&r1=496695&r2=496696
==============================================================================
--- cocoon/trunk/core/cocoon-core/src/main/resources/org/apache/cocoon/cocoon.properties (original)
+++ cocoon/trunk/core/cocoon-core/src/main/resources/org/apache/cocoon/cocoon.properties Tue Jan 16 06:12:00 2007
@@ -22,4 +22,3 @@
 version=${pom.version}
 released.version=2.1.10
 year=1999-2007
-build.info=@date@ (TargetVM=@target.vm@, SourceVM=@source.vm@, Debug=@compiler.debug@, Optimize=@compiler.optimize@)

Modified: cocoon/trunk/core/cocoon-pipeline/cocoon-pipeline-api/src/main/java/org/apache/cocoon/Constants.java
URL: http://svn.apache.org/viewvc/cocoon/trunk/core/cocoon-pipeline/cocoon-pipeline-api/src/main/java/org/apache/cocoon/Constants.java?view=diff&rev=496696&r1=496695&r2=496696
==============================================================================
--- cocoon/trunk/core/cocoon-pipeline/cocoon-pipeline-api/src/main/java/org/apache/cocoon/Constants.java (original)
+++ cocoon/trunk/core/cocoon-pipeline/cocoon-pipeline-api/src/main/java/org/apache/cocoon/Constants.java Tue Jan 16 06:12:00 2007
@@ -70,9 +70,6 @@
     /** The year of the build */
     public static final String YEAR = properties.getProperty("year");
 
-    /** The build information */
-    public static final String BUILD_INFO = properties.getProperty("build.info");
-
     /**
      * The request parameter name to add a line of the request duration.
      *

Modified: cocoon/trunk/core/cocoon-sitemap/cocoon-sitemap-components/src/main/java/org/apache/cocoon/generation/StatusGenerator.java
URL: http://svn.apache.org/viewvc/cocoon/trunk/core/cocoon-sitemap/cocoon-sitemap-components/src/main/java/org/apache/cocoon/generation/StatusGenerator.java?view=diff&rev=496696&r1=496695&r2=496696
==============================================================================
--- cocoon/trunk/core/cocoon-sitemap/cocoon-sitemap-components/src/main/java/org/apache/cocoon/generation/StatusGenerator.java (original)
+++ cocoon/trunk/core/cocoon-sitemap/cocoon-sitemap-components/src/main/java/org/apache/cocoon/generation/StatusGenerator.java Tue Jan 16 06:12:00 2007
@@ -283,7 +283,6 @@
         atts.addCDATAAttribute(NAMESPACE, "cocoon-version", Constants.VERSION);
         dateTime = DateFormat.getDateTimeInstance().format(new Date(this.settings.getCreationTime()));
         atts.addCDATAAttribute(NAMESPACE, "creation-time", dateTime);
-        atts.addCDATAAttribute(NAMESPACE, "build-info", Constants.BUILD_INFO);
         super.contentHandler.startElement(NAMESPACE, "statusinfo", "statusinfo", atts);
 
         if (this.showContinuations) {