[Zope-Checkins] CVS: Zope/skel/etc - zope.conf.in:1.12
Chris McDonough
chrism at zope.com
Sun Aug 17 18:10:53 EDT 2003
Update of /cvs-repository/Zope/skel/etc
In directory cvs.zope.org:/tmp/cvs-serv27575/skel/etc
Modified Files:
zope.conf.in
Log Message:
Document path and environment directives.
=== Zope/skel/etc/zope.conf.in 1.11 => 1.12 ===
--- Zope/skel/etc/zope.conf.in:1.11 Thu Aug 14 13:47:16 2003
+++ Zope/skel/etc/zope.conf.in Sun Aug 17 17:10:49 2003
@@ -39,10 +39,28 @@
# clienthome /home/chrism/projects/sessions/var
-# Directive: products
+# Directive: path
#
# Description:
+# Name of a directory which should be inserted into the
+# the beginning of Python's module search path. This directive
+# may be specified as many times as needed to insert additional
+# directories. The set of directories specified is inserted into the
+# beginning of the module search path in the order which they are specified
+# here. Note that the processing of this directive may happen too late
+# under some circumstances; it is recommended that you use the PYTHONPATH
+# environment variable if using this directive doesn't work for you.
+#
+# Default: $INSTANCE/lib/python
+#
+# Example:
+#
+# path $INSTANCE/mypymodules
+
+# Directive: products
+#
+# Description:
# Name of a directory that contains additional Product packages. This
# directive may be used as many times as needed to add additional
# collections of products. Each directory identified will be
@@ -60,6 +78,22 @@
#
# products /home/chrism/projects/myproducts
+
+# Directive: environment
+#
+# Description:
+# A section which can be used to define arbitrary key-value pairs
+# for use as environment variables during Zope's run cycle. It
+# is not recommended to set system-related environment variables such as
+# PYTHONPATH within this section.
+#
+# Default: unset
+#
+# Example:
+#
+# <environment>
+# MY_PRODUCT_ENVVAR foobar
+# </environment>
# Directive: debug-mode
#
More information about the Zope-Checkins
mailing list