[Zope-Checkins] CVS: Zope/lib/python/Zope/Startup - zopeschema.xml:1.2.2.7

Fred L. Drake, Jr. fred@zope.com
Fri, 21 Feb 2003 10:47:43 -0500


Update of /cvs-repository/Zope/lib/python/Zope/Startup
In directory cvs.zope.org:/tmp/cvs-serv374

Modified Files:
      Tag: new-install-branch
	zopeschema.xml 
Log Message:
The SOFTWARE_HOME and ZOPE_HOME are being removed from the config
schema; these will always be computed based on the software that is
loading the configuration.

Added docstring for clienthome.


=== Zope/lib/python/Zope/Startup/zopeschema.xml 1.2.2.6 => 1.2.2.7 ===
--- Zope/lib/python/Zope/Startup/zopeschema.xml:1.2.2.6	Fri Feb 14 01:01:14 2003
+++ Zope/lib/python/Zope/Startup/zopeschema.xml	Fri Feb 21 10:47:41 2003
@@ -1,4 +1,6 @@
-<schema prefix="Zope.Startup.datatypes" handler="root_handler">
+<schema prefix="Zope.Startup.datatypes"
+        datatype=".root_config"
+        handler="root_handler">
 
   <!-- type definitions -->
 
@@ -30,14 +32,15 @@
   <key name="instancehome" datatype="existing-directory"
        required="yes" handler="instance_home"/>
 
-  <key name="softwarehome" datatype="existing-directory"
-       required="yes" handler="software_home"/>
-
-  <key name="zopehome" datatype="existing-directory"
-       handler="zope_home"/>
-
   <key name="clienthome" datatype="existing-directory"
-       handler="client_home"/>
+       handler="client_home">
+    <description>
+      The directory used to store the file-storage used to back the
+      ZODB database by default, as well as other files used by the
+      Zope application server to control the run-time behavior.
+    </description>
+    <metadefault>$INSTANCE_HOME/var</metadefault>
+  </key>
 
   <key name="pid-filename" datatype="existing-dirpath"/>