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 2006/08/09 08:09:54 UTC

svn commit: r429974 - /cocoon/trunk/core/cocoon-core/src/main/java/org/apache/cocoon/Constants.java

Author: cziegeler
Date: Tue Aug  8 23:09:54 2006
New Revision: 429974

URL: http://svn.apache.org/viewvc?rev=429974&view=rev
Log:
Fix constants

Modified:
    cocoon/trunk/core/cocoon-core/src/main/java/org/apache/cocoon/Constants.java

Modified: cocoon/trunk/core/cocoon-core/src/main/java/org/apache/cocoon/Constants.java
URL: http://svn.apache.org/viewvc/cocoon/trunk/core/cocoon-core/src/main/java/org/apache/cocoon/Constants.java?rev=429974&r1=429973&r2=429974&view=diff
==============================================================================
--- cocoon/trunk/core/cocoon-core/src/main/java/org/apache/cocoon/Constants.java (original)
+++ cocoon/trunk/core/cocoon-core/src/main/java/org/apache/cocoon/Constants.java Tue Aug  8 23:09:54 2006
@@ -51,7 +51,7 @@
     /** The name of this project. 
      * @deprecated This will be removed soon. 
      */
-    public static final String NAME = properties.getProperty("name");
+    public static final String NAME = "Cocoon";
 
     /** The version of this build. */
     public static final String VERSION = properties.getProperty("version");
@@ -59,7 +59,7 @@
     /** The full name of this project.
      * @deprecated This will be removed soon. 
      */
-    public static final String COMPLETE_NAME = properties.getProperty("fullname") + " " + VERSION;
+    public static final String COMPLETE_NAME = "Apache Cocoon " + VERSION;
 
     /** The version of the configuration schema */
     public static final String CONF_VERSION  = "2.2";