greenrd 00/11/14 10:23:42
Modified: src/org/apache/cocoon/framework Configurations.java
Log:
fixed cocoon init bug
Revision Changes Path
1.11 +1 -0
xml-cocoon/src/org/apache/cocoon/framework/Configurations.java
Index: Configurations.java
===================================================================
RCS file:
/home/cvs/xml-cocoon/src/org/apache/cocoon/framework/Configurations.java,v
retrieving revision 1.10
retrieving revision 1.11
diff -u -r1.10 -r1.11
--- Configurations.java 2000/11/10 21:12:29 1.10
+++ Configurations.java 2000/11/14 18:23:41 1.11
@@ -1,4 +1,4 @@
-/*-- $Id: Configurations.java,v 1.10 2000/11/10 21:12:29 greenrd Exp $ --
+/*-- $Id: Configurations.java,v 1.11 2000/11/14 18:23:41 greenrd Exp $ --
============================================================================
The Apache Software License, Version 1.1
@@ -58,7 +58,7 @@
* class to work.
*
* @author <a href="mailto:[EMAIL PROTECTED]">Stefano Mazzocchi</a>
- * @version $Revision: 1.10 $ $Date: 2000/11/10 21:12:29 $
+ * @version $Revision: 1.11 $ $Date: 2000/11/14 18:23:41 $
*/
public class Configurations {
@@ -126,6 +126,7 @@
* Create a subconfiguration starting from the base node.
*/
public Configurations(Configurations parent, String base) {
+ properties = new Properties();
root = parent.root;
setBasename((parent.baseName == null) ? base : parent.baseName + "."
+ base);
String prefix = base + ".";