[Checkins] SVN: grok/trunk/doc/groktut/ add extends-cache dir and update zope.conf.in templates

Jan-Wijbrand Kolman janwijbrand at gmail.com
Tue Oct 26 09:21:42 EDT 2010


Log message for revision 117897:
  add extends-cache dir and update zope.conf.in templates

Changed:
  U   grok/trunk/doc/groktut/a_second_model/etc/zope.conf.in
  A   grok/trunk/doc/groktut/a_second_model/extends-cache/
  U   grok/trunk/doc/groktut/a_second_view/etc/zope.conf.in
  A   grok/trunk/doc/groktut/a_second_view/extends-cache/
  U   grok/trunk/doc/groktut/a_view_for_a_model/etc/zope.conf.in
  A   grok/trunk/doc/groktut/a_view_for_a_model/extends-cache/
  U   grok/trunk/doc/groktut/a_view_for_a_model2/etc/zope.conf.in
  A   grok/trunk/doc/groktut/a_view_for_a_model2/extends-cache/
  U   grok/trunk/doc/groktut/an_empty_grok_project/etc/zope.conf.in
  A   grok/trunk/doc/groktut/an_empty_grok_project/extends-cache/
  U   grok/trunk/doc/groktut/completely_python_driven_views/etc/zope.conf.in
  A   grok/trunk/doc/groktut/completely_python_driven_views/extends-cache/
  U   grok/trunk/doc/groktut/containers/etc/zope.conf.in
  A   grok/trunk/doc/groktut/containers/extends-cache/
  U   grok/trunk/doc/groktut/doing_some_calculation_before_viewing_a_page/etc/zope.conf.in
  A   grok/trunk/doc/groktut/doing_some_calculation_before_viewing_a_page/extends-cache/
  U   grok/trunk/doc/groktut/explicitly_associating_a_view_with_a_model/etc/zope.conf.in
  A   grok/trunk/doc/groktut/explicitly_associating_a_view_with_a_model/extends-cache/
  U   grok/trunk/doc/groktut/generating_html_from_python/etc/zope.conf.in
  A   grok/trunk/doc/groktut/generating_html_from_python/extends-cache/
  U   grok/trunk/doc/groktut/making_our_page_dynamic/etc/zope.conf.in
  A   grok/trunk/doc/groktut/making_our_page_dynamic/extends-cache/
  U   grok/trunk/doc/groktut/publishing_a_simple_web_page/etc/zope.conf.in
  A   grok/trunk/doc/groktut/publishing_a_simple_web_page/extends-cache/
  U   grok/trunk/doc/groktut/reading_url_parameters/etc/zope.conf.in
  A   grok/trunk/doc/groktut/reading_url_parameters/extends-cache/
  U   grok/trunk/doc/groktut/reading_url_parameters2/etc/zope.conf.in
  A   grok/trunk/doc/groktut/reading_url_parameters2/extends-cache/
  U   grok/trunk/doc/groktut/redirection/etc/zope.conf.in
  A   grok/trunk/doc/groktut/redirection/extends-cache/
  U   grok/trunk/doc/groktut/setting_the_content_type/etc/zope.conf.in
  A   grok/trunk/doc/groktut/setting_the_content_type/extends-cache/
  U   grok/trunk/doc/groktut/showing_the_value_in_the_form/etc/zope.conf.in
  A   grok/trunk/doc/groktut/showing_the_value_in_the_form/extends-cache/
  U   grok/trunk/doc/groktut/simple_forms/etc/zope.conf.in
  A   grok/trunk/doc/groktut/simple_forms/extends-cache/
  U   grok/trunk/doc/groktut/simple_forms2/etc/zope.conf.in
  A   grok/trunk/doc/groktut/simple_forms2/extends-cache/
  U   grok/trunk/doc/groktut/static_resources_for_our_web_page/etc/zope.conf.in
  A   grok/trunk/doc/groktut/static_resources_for_our_web_page/extends-cache/
  U   grok/trunk/doc/groktut/storing_data/etc/zope.conf.in
  A   grok/trunk/doc/groktut/storing_data/extends-cache/
  U   grok/trunk/doc/groktut/template/etc/zope.conf.in
  A   grok/trunk/doc/groktut/template/extends-cache/
  U   grok/trunk/doc/groktut/the_rules_of_persistence/etc/zope.conf.in
  A   grok/trunk/doc/groktut/the_rules_of_persistence/extends-cache/
  U   grok/trunk/doc/groktut/the_rules_of_persistence2/etc/zope.conf.in
  A   grok/trunk/doc/groktut/the_rules_of_persistence2/extends-cache/
  U   grok/trunk/doc/groktut/the_rules_of_persistence3/etc/zope.conf.in
  A   grok/trunk/doc/groktut/the_rules_of_persistence3/extends-cache/
  U   grok/trunk/doc/groktut/using_view_methods/etc/zope.conf.in
  A   grok/trunk/doc/groktut/using_view_methods/extends-cache/

-=-
Modified: grok/trunk/doc/groktut/a_second_model/etc/zope.conf.in
===================================================================
--- grok/trunk/doc/groktut/a_second_model/etc/zope.conf.in	2010-10-26 13:15:46 UTC (rev 117896)
+++ grok/trunk/doc/groktut/a_second_model/etc/zope.conf.in	2010-10-26 13:21:42 UTC (rev 117897)
@@ -2,11 +2,19 @@
 site-definition ${site_zcml:output}
 
 <zodb>
-  # Standard Filestorage
-  <filestorage>
-    path ${data:path}
-  </filestorage>
+  # Standard blob storage
+  <blobstorage>
+    blob-dir ${zope_conf:blobstorage}
+    <filestorage>
+      path ${zope_conf:filestorage}/Data.fs
+    </filestorage>
+  </blobstorage>
 
+# Uncomment this if you want a blob-less standard file storage instead:
+#  <filestorage>
+#       path ${zope_conf:filestorage}
+#  </filestorage>
+
 # Uncomment this if you want to connect to a ZEO server instead:
 #  <zeoclient>
 #    server localhost:8100
@@ -16,27 +24,17 @@
 #    # Uncomment to have a persistent disk cache
 #    #client zeo1
 #  </zeoclient>
+
 </zodb>
 
 <eventlog>
-  # This sets up logging to a file.
-  # The "path" setting can be a relative or absolute
-  # filesystem path.
-
-  <logfile>
-    path ${buildout:directory}/parts/log/z3.log
-    formatter zope.exceptions.log.Formatter
-  </logfile>
-
-  # This sets up logging to to standard output.
-  # The "path" setting can be the tokens STDOUT or STDERR
-  
-#  <logfile>
-#    path STDOUT
-#    formatter zope.exceptions.log.Formatter
-#  </logfile>
+# logfiles are setup in the debug.ini and deploy.ini files.
 </eventlog>
 
 # Comment this line to disable developer mode.  This should be done in
 # production
-devmode on
\ No newline at end of file
+devmode on
+
+# Extra configuration lines can be added to zope_conf's extra option. Put for
+# instance productconf sections in here.
+${zope_conf:extra}

Modified: grok/trunk/doc/groktut/a_second_view/etc/zope.conf.in
===================================================================
--- grok/trunk/doc/groktut/a_second_view/etc/zope.conf.in	2010-10-26 13:15:46 UTC (rev 117896)
+++ grok/trunk/doc/groktut/a_second_view/etc/zope.conf.in	2010-10-26 13:21:42 UTC (rev 117897)
@@ -2,11 +2,19 @@
 site-definition ${site_zcml:output}
 
 <zodb>
-  # Standard Filestorage
-  <filestorage>
-    path ${data:path}
-  </filestorage>
+  # Standard blob storage
+  <blobstorage>
+    blob-dir ${zope_conf:blobstorage}
+    <filestorage>
+      path ${zope_conf:filestorage}/Data.fs
+    </filestorage>
+  </blobstorage>
 
+# Uncomment this if you want a blob-less standard file storage instead:
+#  <filestorage>
+#       path ${zope_conf:filestorage}
+#  </filestorage>
+
 # Uncomment this if you want to connect to a ZEO server instead:
 #  <zeoclient>
 #    server localhost:8100
@@ -16,27 +24,17 @@
 #    # Uncomment to have a persistent disk cache
 #    #client zeo1
 #  </zeoclient>
+
 </zodb>
 
 <eventlog>
-  # This sets up logging to a file.
-  # The "path" setting can be a relative or absolute
-  # filesystem path.
-
-  <logfile>
-    path ${buildout:directory}/parts/log/z3.log
-    formatter zope.exceptions.log.Formatter
-  </logfile>
-
-  # This sets up logging to to standard output.
-  # The "path" setting can be the tokens STDOUT or STDERR
-  
-#  <logfile>
-#    path STDOUT
-#    formatter zope.exceptions.log.Formatter
-#  </logfile>
+# logfiles are setup in the debug.ini and deploy.ini files.
 </eventlog>
 
 # Comment this line to disable developer mode.  This should be done in
 # production
-devmode on
\ No newline at end of file
+devmode on
+
+# Extra configuration lines can be added to zope_conf's extra option. Put for
+# instance productconf sections in here.
+${zope_conf:extra}

Modified: grok/trunk/doc/groktut/a_view_for_a_model/etc/zope.conf.in
===================================================================
--- grok/trunk/doc/groktut/a_view_for_a_model/etc/zope.conf.in	2010-10-26 13:15:46 UTC (rev 117896)
+++ grok/trunk/doc/groktut/a_view_for_a_model/etc/zope.conf.in	2010-10-26 13:21:42 UTC (rev 117897)
@@ -2,11 +2,19 @@
 site-definition ${site_zcml:output}
 
 <zodb>
-  # Standard Filestorage
-  <filestorage>
-    path ${data:path}
-  </filestorage>
+  # Standard blob storage
+  <blobstorage>
+    blob-dir ${zope_conf:blobstorage}
+    <filestorage>
+      path ${zope_conf:filestorage}/Data.fs
+    </filestorage>
+  </blobstorage>
 
+# Uncomment this if you want a blob-less standard file storage instead:
+#  <filestorage>
+#       path ${zope_conf:filestorage}
+#  </filestorage>
+
 # Uncomment this if you want to connect to a ZEO server instead:
 #  <zeoclient>
 #    server localhost:8100
@@ -16,27 +24,17 @@
 #    # Uncomment to have a persistent disk cache
 #    #client zeo1
 #  </zeoclient>
+
 </zodb>
 
 <eventlog>
-  # This sets up logging to a file.
-  # The "path" setting can be a relative or absolute
-  # filesystem path.
-
-  <logfile>
-    path ${buildout:directory}/parts/log/z3.log
-    formatter zope.exceptions.log.Formatter
-  </logfile>
-
-  # This sets up logging to to standard output.
-  # The "path" setting can be the tokens STDOUT or STDERR
-  
-#  <logfile>
-#    path STDOUT
-#    formatter zope.exceptions.log.Formatter
-#  </logfile>
+# logfiles are setup in the debug.ini and deploy.ini files.
 </eventlog>
 
 # Comment this line to disable developer mode.  This should be done in
 # production
-devmode on
\ No newline at end of file
+devmode on
+
+# Extra configuration lines can be added to zope_conf's extra option. Put for
+# instance productconf sections in here.
+${zope_conf:extra}

Modified: grok/trunk/doc/groktut/a_view_for_a_model2/etc/zope.conf.in
===================================================================
--- grok/trunk/doc/groktut/a_view_for_a_model2/etc/zope.conf.in	2010-10-26 13:15:46 UTC (rev 117896)
+++ grok/trunk/doc/groktut/a_view_for_a_model2/etc/zope.conf.in	2010-10-26 13:21:42 UTC (rev 117897)
@@ -2,11 +2,19 @@
 site-definition ${site_zcml:output}
 
 <zodb>
-  # Standard Filestorage
-  <filestorage>
-    path ${data:path}
-  </filestorage>
+  # Standard blob storage
+  <blobstorage>
+    blob-dir ${zope_conf:blobstorage}
+    <filestorage>
+      path ${zope_conf:filestorage}/Data.fs
+    </filestorage>
+  </blobstorage>
 
+# Uncomment this if you want a blob-less standard file storage instead:
+#  <filestorage>
+#       path ${zope_conf:filestorage}
+#  </filestorage>
+
 # Uncomment this if you want to connect to a ZEO server instead:
 #  <zeoclient>
 #    server localhost:8100
@@ -16,27 +24,17 @@
 #    # Uncomment to have a persistent disk cache
 #    #client zeo1
 #  </zeoclient>
+
 </zodb>
 
 <eventlog>
-  # This sets up logging to a file.
-  # The "path" setting can be a relative or absolute
-  # filesystem path.
-
-  <logfile>
-    path ${buildout:directory}/parts/log/z3.log
-    formatter zope.exceptions.log.Formatter
-  </logfile>
-
-  # This sets up logging to to standard output.
-  # The "path" setting can be the tokens STDOUT or STDERR
-  
-#  <logfile>
-#    path STDOUT
-#    formatter zope.exceptions.log.Formatter
-#  </logfile>
+# logfiles are setup in the debug.ini and deploy.ini files.
 </eventlog>
 
 # Comment this line to disable developer mode.  This should be done in
 # production
-devmode on
\ No newline at end of file
+devmode on
+
+# Extra configuration lines can be added to zope_conf's extra option. Put for
+# instance productconf sections in here.
+${zope_conf:extra}

Modified: grok/trunk/doc/groktut/an_empty_grok_project/etc/zope.conf.in
===================================================================
--- grok/trunk/doc/groktut/an_empty_grok_project/etc/zope.conf.in	2010-10-26 13:15:46 UTC (rev 117896)
+++ grok/trunk/doc/groktut/an_empty_grok_project/etc/zope.conf.in	2010-10-26 13:21:42 UTC (rev 117897)
@@ -2,11 +2,19 @@
 site-definition ${site_zcml:output}
 
 <zodb>
-  # Standard Filestorage
-  <filestorage>
-    path ${data:path}
-  </filestorage>
+  # Standard blob storage
+  <blobstorage>
+    blob-dir ${zope_conf:blobstorage}
+    <filestorage>
+      path ${zope_conf:filestorage}/Data.fs
+    </filestorage>
+  </blobstorage>
 
+# Uncomment this if you want a blob-less standard file storage instead:
+#  <filestorage>
+#       path ${zope_conf:filestorage}
+#  </filestorage>
+
 # Uncomment this if you want to connect to a ZEO server instead:
 #  <zeoclient>
 #    server localhost:8100
@@ -16,27 +24,17 @@
 #    # Uncomment to have a persistent disk cache
 #    #client zeo1
 #  </zeoclient>
+
 </zodb>
 
 <eventlog>
-  # This sets up logging to a file.
-  # The "path" setting can be a relative or absolute
-  # filesystem path.
-
-  <logfile>
-    path ${buildout:directory}/parts/log/z3.log
-    formatter zope.exceptions.log.Formatter
-  </logfile>
-
-  # This sets up logging to to standard output.
-  # The "path" setting can be the tokens STDOUT or STDERR
-  
-#  <logfile>
-#    path STDOUT
-#    formatter zope.exceptions.log.Formatter
-#  </logfile>
+# logfiles are setup in the debug.ini and deploy.ini files.
 </eventlog>
 
 # Comment this line to disable developer mode.  This should be done in
 # production
-devmode on
\ No newline at end of file
+devmode on
+
+# Extra configuration lines can be added to zope_conf's extra option. Put for
+# instance productconf sections in here.
+${zope_conf:extra}

Modified: grok/trunk/doc/groktut/completely_python_driven_views/etc/zope.conf.in
===================================================================
--- grok/trunk/doc/groktut/completely_python_driven_views/etc/zope.conf.in	2010-10-26 13:15:46 UTC (rev 117896)
+++ grok/trunk/doc/groktut/completely_python_driven_views/etc/zope.conf.in	2010-10-26 13:21:42 UTC (rev 117897)
@@ -2,11 +2,19 @@
 site-definition ${site_zcml:output}
 
 <zodb>
-  # Standard Filestorage
-  <filestorage>
-    path ${data:path}
-  </filestorage>
+  # Standard blob storage
+  <blobstorage>
+    blob-dir ${zope_conf:blobstorage}
+    <filestorage>
+      path ${zope_conf:filestorage}/Data.fs
+    </filestorage>
+  </blobstorage>
 
+# Uncomment this if you want a blob-less standard file storage instead:
+#  <filestorage>
+#       path ${zope_conf:filestorage}
+#  </filestorage>
+
 # Uncomment this if you want to connect to a ZEO server instead:
 #  <zeoclient>
 #    server localhost:8100
@@ -16,27 +24,17 @@
 #    # Uncomment to have a persistent disk cache
 #    #client zeo1
 #  </zeoclient>
+
 </zodb>
 
 <eventlog>
-  # This sets up logging to a file.
-  # The "path" setting can be a relative or absolute
-  # filesystem path.
-
-  <logfile>
-    path ${buildout:directory}/parts/log/z3.log
-    formatter zope.exceptions.log.Formatter
-  </logfile>
-
-  # This sets up logging to to standard output.
-  # The "path" setting can be the tokens STDOUT or STDERR
-  
-#  <logfile>
-#    path STDOUT
-#    formatter zope.exceptions.log.Formatter
-#  </logfile>
+# logfiles are setup in the debug.ini and deploy.ini files.
 </eventlog>
 
 # Comment this line to disable developer mode.  This should be done in
 # production
-devmode on
\ No newline at end of file
+devmode on
+
+# Extra configuration lines can be added to zope_conf's extra option. Put for
+# instance productconf sections in here.
+${zope_conf:extra}

Modified: grok/trunk/doc/groktut/containers/etc/zope.conf.in
===================================================================
--- grok/trunk/doc/groktut/containers/etc/zope.conf.in	2010-10-26 13:15:46 UTC (rev 117896)
+++ grok/trunk/doc/groktut/containers/etc/zope.conf.in	2010-10-26 13:21:42 UTC (rev 117897)
@@ -2,11 +2,19 @@
 site-definition ${site_zcml:output}
 
 <zodb>
-  # Standard Filestorage
-  <filestorage>
-    path ${data:path}
-  </filestorage>
+  # Standard blob storage
+  <blobstorage>
+    blob-dir ${zope_conf:blobstorage}
+    <filestorage>
+      path ${zope_conf:filestorage}/Data.fs
+    </filestorage>
+  </blobstorage>
 
+# Uncomment this if you want a blob-less standard file storage instead:
+#  <filestorage>
+#       path ${zope_conf:filestorage}
+#  </filestorage>
+
 # Uncomment this if you want to connect to a ZEO server instead:
 #  <zeoclient>
 #    server localhost:8100
@@ -16,27 +24,17 @@
 #    # Uncomment to have a persistent disk cache
 #    #client zeo1
 #  </zeoclient>
+
 </zodb>
 
 <eventlog>
-  # This sets up logging to a file.
-  # The "path" setting can be a relative or absolute
-  # filesystem path.
-
-  <logfile>
-    path ${buildout:directory}/parts/log/z3.log
-    formatter zope.exceptions.log.Formatter
-  </logfile>
-
-  # This sets up logging to to standard output.
-  # The "path" setting can be the tokens STDOUT or STDERR
-  
-#  <logfile>
-#    path STDOUT
-#    formatter zope.exceptions.log.Formatter
-#  </logfile>
+# logfiles are setup in the debug.ini and deploy.ini files.
 </eventlog>
 
 # Comment this line to disable developer mode.  This should be done in
 # production
-devmode on
\ No newline at end of file
+devmode on
+
+# Extra configuration lines can be added to zope_conf's extra option. Put for
+# instance productconf sections in here.
+${zope_conf:extra}

Modified: grok/trunk/doc/groktut/doing_some_calculation_before_viewing_a_page/etc/zope.conf.in
===================================================================
--- grok/trunk/doc/groktut/doing_some_calculation_before_viewing_a_page/etc/zope.conf.in	2010-10-26 13:15:46 UTC (rev 117896)
+++ grok/trunk/doc/groktut/doing_some_calculation_before_viewing_a_page/etc/zope.conf.in	2010-10-26 13:21:42 UTC (rev 117897)
@@ -2,11 +2,19 @@
 site-definition ${site_zcml:output}
 
 <zodb>
-  # Standard Filestorage
-  <filestorage>
-    path ${data:path}
-  </filestorage>
+  # Standard blob storage
+  <blobstorage>
+    blob-dir ${zope_conf:blobstorage}
+    <filestorage>
+      path ${zope_conf:filestorage}/Data.fs
+    </filestorage>
+  </blobstorage>
 
+# Uncomment this if you want a blob-less standard file storage instead:
+#  <filestorage>
+#       path ${zope_conf:filestorage}
+#  </filestorage>
+
 # Uncomment this if you want to connect to a ZEO server instead:
 #  <zeoclient>
 #    server localhost:8100
@@ -16,27 +24,17 @@
 #    # Uncomment to have a persistent disk cache
 #    #client zeo1
 #  </zeoclient>
+
 </zodb>
 
 <eventlog>
-  # This sets up logging to a file.
-  # The "path" setting can be a relative or absolute
-  # filesystem path.
-
-  <logfile>
-    path ${buildout:directory}/parts/log/z3.log
-    formatter zope.exceptions.log.Formatter
-  </logfile>
-
-  # This sets up logging to to standard output.
-  # The "path" setting can be the tokens STDOUT or STDERR
-  
-#  <logfile>
-#    path STDOUT
-#    formatter zope.exceptions.log.Formatter
-#  </logfile>
+# logfiles are setup in the debug.ini and deploy.ini files.
 </eventlog>
 
 # Comment this line to disable developer mode.  This should be done in
 # production
-devmode on
\ No newline at end of file
+devmode on
+
+# Extra configuration lines can be added to zope_conf's extra option. Put for
+# instance productconf sections in here.
+${zope_conf:extra}

Modified: grok/trunk/doc/groktut/explicitly_associating_a_view_with_a_model/etc/zope.conf.in
===================================================================
--- grok/trunk/doc/groktut/explicitly_associating_a_view_with_a_model/etc/zope.conf.in	2010-10-26 13:15:46 UTC (rev 117896)
+++ grok/trunk/doc/groktut/explicitly_associating_a_view_with_a_model/etc/zope.conf.in	2010-10-26 13:21:42 UTC (rev 117897)
@@ -2,11 +2,19 @@
 site-definition ${site_zcml:output}
 
 <zodb>
-  # Standard Filestorage
-  <filestorage>
-    path ${data:path}
-  </filestorage>
+  # Standard blob storage
+  <blobstorage>
+    blob-dir ${zope_conf:blobstorage}
+    <filestorage>
+      path ${zope_conf:filestorage}/Data.fs
+    </filestorage>
+  </blobstorage>
 
+# Uncomment this if you want a blob-less standard file storage instead:
+#  <filestorage>
+#       path ${zope_conf:filestorage}
+#  </filestorage>
+
 # Uncomment this if you want to connect to a ZEO server instead:
 #  <zeoclient>
 #    server localhost:8100
@@ -16,27 +24,17 @@
 #    # Uncomment to have a persistent disk cache
 #    #client zeo1
 #  </zeoclient>
+
 </zodb>
 
 <eventlog>
-  # This sets up logging to a file.
-  # The "path" setting can be a relative or absolute
-  # filesystem path.
-
-  <logfile>
-    path ${buildout:directory}/parts/log/z3.log
-    formatter zope.exceptions.log.Formatter
-  </logfile>
-
-  # This sets up logging to to standard output.
-  # The "path" setting can be the tokens STDOUT or STDERR
-  
-#  <logfile>
-#    path STDOUT
-#    formatter zope.exceptions.log.Formatter
-#  </logfile>
+# logfiles are setup in the debug.ini and deploy.ini files.
 </eventlog>
 
 # Comment this line to disable developer mode.  This should be done in
 # production
-devmode on
\ No newline at end of file
+devmode on
+
+# Extra configuration lines can be added to zope_conf's extra option. Put for
+# instance productconf sections in here.
+${zope_conf:extra}

Modified: grok/trunk/doc/groktut/generating_html_from_python/etc/zope.conf.in
===================================================================
--- grok/trunk/doc/groktut/generating_html_from_python/etc/zope.conf.in	2010-10-26 13:15:46 UTC (rev 117896)
+++ grok/trunk/doc/groktut/generating_html_from_python/etc/zope.conf.in	2010-10-26 13:21:42 UTC (rev 117897)
@@ -2,11 +2,19 @@
 site-definition ${site_zcml:output}
 
 <zodb>
-  # Standard Filestorage
-  <filestorage>
-    path ${data:path}
-  </filestorage>
+  # Standard blob storage
+  <blobstorage>
+    blob-dir ${zope_conf:blobstorage}
+    <filestorage>
+      path ${zope_conf:filestorage}/Data.fs
+    </filestorage>
+  </blobstorage>
 
+# Uncomment this if you want a blob-less standard file storage instead:
+#  <filestorage>
+#       path ${zope_conf:filestorage}
+#  </filestorage>
+
 # Uncomment this if you want to connect to a ZEO server instead:
 #  <zeoclient>
 #    server localhost:8100
@@ -16,27 +24,17 @@
 #    # Uncomment to have a persistent disk cache
 #    #client zeo1
 #  </zeoclient>
+
 </zodb>
 
 <eventlog>
-  # This sets up logging to a file.
-  # The "path" setting can be a relative or absolute
-  # filesystem path.
-
-  <logfile>
-    path ${buildout:directory}/parts/log/z3.log
-    formatter zope.exceptions.log.Formatter
-  </logfile>
-
-  # This sets up logging to to standard output.
-  # The "path" setting can be the tokens STDOUT or STDERR
-  
-#  <logfile>
-#    path STDOUT
-#    formatter zope.exceptions.log.Formatter
-#  </logfile>
+# logfiles are setup in the debug.ini and deploy.ini files.
 </eventlog>
 
 # Comment this line to disable developer mode.  This should be done in
 # production
-devmode on
\ No newline at end of file
+devmode on
+
+# Extra configuration lines can be added to zope_conf's extra option. Put for
+# instance productconf sections in here.
+${zope_conf:extra}

Modified: grok/trunk/doc/groktut/making_our_page_dynamic/etc/zope.conf.in
===================================================================
--- grok/trunk/doc/groktut/making_our_page_dynamic/etc/zope.conf.in	2010-10-26 13:15:46 UTC (rev 117896)
+++ grok/trunk/doc/groktut/making_our_page_dynamic/etc/zope.conf.in	2010-10-26 13:21:42 UTC (rev 117897)
@@ -2,11 +2,19 @@
 site-definition ${site_zcml:output}
 
 <zodb>
-  # Standard Filestorage
-  <filestorage>
-    path ${data:path}
-  </filestorage>
+  # Standard blob storage
+  <blobstorage>
+    blob-dir ${zope_conf:blobstorage}
+    <filestorage>
+      path ${zope_conf:filestorage}/Data.fs
+    </filestorage>
+  </blobstorage>
 
+# Uncomment this if you want a blob-less standard file storage instead:
+#  <filestorage>
+#       path ${zope_conf:filestorage}
+#  </filestorage>
+
 # Uncomment this if you want to connect to a ZEO server instead:
 #  <zeoclient>
 #    server localhost:8100
@@ -16,27 +24,17 @@
 #    # Uncomment to have a persistent disk cache
 #    #client zeo1
 #  </zeoclient>
+
 </zodb>
 
 <eventlog>
-  # This sets up logging to a file.
-  # The "path" setting can be a relative or absolute
-  # filesystem path.
-
-  <logfile>
-    path ${buildout:directory}/parts/log/z3.log
-    formatter zope.exceptions.log.Formatter
-  </logfile>
-
-  # This sets up logging to to standard output.
-  # The "path" setting can be the tokens STDOUT or STDERR
-  
-#  <logfile>
-#    path STDOUT
-#    formatter zope.exceptions.log.Formatter
-#  </logfile>
+# logfiles are setup in the debug.ini and deploy.ini files.
 </eventlog>
 
 # Comment this line to disable developer mode.  This should be done in
 # production
-devmode on
\ No newline at end of file
+devmode on
+
+# Extra configuration lines can be added to zope_conf's extra option. Put for
+# instance productconf sections in here.
+${zope_conf:extra}

Modified: grok/trunk/doc/groktut/publishing_a_simple_web_page/etc/zope.conf.in
===================================================================
--- grok/trunk/doc/groktut/publishing_a_simple_web_page/etc/zope.conf.in	2010-10-26 13:15:46 UTC (rev 117896)
+++ grok/trunk/doc/groktut/publishing_a_simple_web_page/etc/zope.conf.in	2010-10-26 13:21:42 UTC (rev 117897)
@@ -2,11 +2,19 @@
 site-definition ${site_zcml:output}
 
 <zodb>
-  # Standard Filestorage
-  <filestorage>
-    path ${data:path}
-  </filestorage>
+  # Standard blob storage
+  <blobstorage>
+    blob-dir ${zope_conf:blobstorage}
+    <filestorage>
+      path ${zope_conf:filestorage}/Data.fs
+    </filestorage>
+  </blobstorage>
 
+# Uncomment this if you want a blob-less standard file storage instead:
+#  <filestorage>
+#       path ${zope_conf:filestorage}
+#  </filestorage>
+
 # Uncomment this if you want to connect to a ZEO server instead:
 #  <zeoclient>
 #    server localhost:8100
@@ -16,27 +24,17 @@
 #    # Uncomment to have a persistent disk cache
 #    #client zeo1
 #  </zeoclient>
+
 </zodb>
 
 <eventlog>
-  # This sets up logging to a file.
-  # The "path" setting can be a relative or absolute
-  # filesystem path.
-
-  <logfile>
-    path ${buildout:directory}/parts/log/z3.log
-    formatter zope.exceptions.log.Formatter
-  </logfile>
-
-  # This sets up logging to to standard output.
-  # The "path" setting can be the tokens STDOUT or STDERR
-  
-#  <logfile>
-#    path STDOUT
-#    formatter zope.exceptions.log.Formatter
-#  </logfile>
+# logfiles are setup in the debug.ini and deploy.ini files.
 </eventlog>
 
 # Comment this line to disable developer mode.  This should be done in
 # production
-devmode on
\ No newline at end of file
+devmode on
+
+# Extra configuration lines can be added to zope_conf's extra option. Put for
+# instance productconf sections in here.
+${zope_conf:extra}

Modified: grok/trunk/doc/groktut/reading_url_parameters/etc/zope.conf.in
===================================================================
--- grok/trunk/doc/groktut/reading_url_parameters/etc/zope.conf.in	2010-10-26 13:15:46 UTC (rev 117896)
+++ grok/trunk/doc/groktut/reading_url_parameters/etc/zope.conf.in	2010-10-26 13:21:42 UTC (rev 117897)
@@ -2,11 +2,19 @@
 site-definition ${site_zcml:output}
 
 <zodb>
-  # Standard Filestorage
-  <filestorage>
-    path ${data:path}
-  </filestorage>
+  # Standard blob storage
+  <blobstorage>
+    blob-dir ${zope_conf:blobstorage}
+    <filestorage>
+      path ${zope_conf:filestorage}/Data.fs
+    </filestorage>
+  </blobstorage>
 
+# Uncomment this if you want a blob-less standard file storage instead:
+#  <filestorage>
+#       path ${zope_conf:filestorage}
+#  </filestorage>
+
 # Uncomment this if you want to connect to a ZEO server instead:
 #  <zeoclient>
 #    server localhost:8100
@@ -16,27 +24,17 @@
 #    # Uncomment to have a persistent disk cache
 #    #client zeo1
 #  </zeoclient>
+
 </zodb>
 
 <eventlog>
-  # This sets up logging to a file.
-  # The "path" setting can be a relative or absolute
-  # filesystem path.
-
-  <logfile>
-    path ${buildout:directory}/parts/log/z3.log
-    formatter zope.exceptions.log.Formatter
-  </logfile>
-
-  # This sets up logging to to standard output.
-  # The "path" setting can be the tokens STDOUT or STDERR
-  
-#  <logfile>
-#    path STDOUT
-#    formatter zope.exceptions.log.Formatter
-#  </logfile>
+# logfiles are setup in the debug.ini and deploy.ini files.
 </eventlog>
 
 # Comment this line to disable developer mode.  This should be done in
 # production
-devmode on
\ No newline at end of file
+devmode on
+
+# Extra configuration lines can be added to zope_conf's extra option. Put for
+# instance productconf sections in here.
+${zope_conf:extra}

Modified: grok/trunk/doc/groktut/reading_url_parameters2/etc/zope.conf.in
===================================================================
--- grok/trunk/doc/groktut/reading_url_parameters2/etc/zope.conf.in	2010-10-26 13:15:46 UTC (rev 117896)
+++ grok/trunk/doc/groktut/reading_url_parameters2/etc/zope.conf.in	2010-10-26 13:21:42 UTC (rev 117897)
@@ -2,11 +2,19 @@
 site-definition ${site_zcml:output}
 
 <zodb>
-  # Standard Filestorage
-  <filestorage>
-    path ${data:path}
-  </filestorage>
+  # Standard blob storage
+  <blobstorage>
+    blob-dir ${zope_conf:blobstorage}
+    <filestorage>
+      path ${zope_conf:filestorage}/Data.fs
+    </filestorage>
+  </blobstorage>
 
+# Uncomment this if you want a blob-less standard file storage instead:
+#  <filestorage>
+#       path ${zope_conf:filestorage}
+#  </filestorage>
+
 # Uncomment this if you want to connect to a ZEO server instead:
 #  <zeoclient>
 #    server localhost:8100
@@ -16,27 +24,17 @@
 #    # Uncomment to have a persistent disk cache
 #    #client zeo1
 #  </zeoclient>
+
 </zodb>
 
 <eventlog>
-  # This sets up logging to a file.
-  # The "path" setting can be a relative or absolute
-  # filesystem path.
-
-  <logfile>
-    path ${buildout:directory}/parts/log/z3.log
-    formatter zope.exceptions.log.Formatter
-  </logfile>
-
-  # This sets up logging to to standard output.
-  # The "path" setting can be the tokens STDOUT or STDERR
-  
-#  <logfile>
-#    path STDOUT
-#    formatter zope.exceptions.log.Formatter
-#  </logfile>
+# logfiles are setup in the debug.ini and deploy.ini files.
 </eventlog>
 
 # Comment this line to disable developer mode.  This should be done in
 # production
-devmode on
\ No newline at end of file
+devmode on
+
+# Extra configuration lines can be added to zope_conf's extra option. Put for
+# instance productconf sections in here.
+${zope_conf:extra}

Modified: grok/trunk/doc/groktut/redirection/etc/zope.conf.in
===================================================================
--- grok/trunk/doc/groktut/redirection/etc/zope.conf.in	2010-10-26 13:15:46 UTC (rev 117896)
+++ grok/trunk/doc/groktut/redirection/etc/zope.conf.in	2010-10-26 13:21:42 UTC (rev 117897)
@@ -2,11 +2,19 @@
 site-definition ${site_zcml:output}
 
 <zodb>
-  # Standard Filestorage
-  <filestorage>
-    path ${data:path}
-  </filestorage>
+  # Standard blob storage
+  <blobstorage>
+    blob-dir ${zope_conf:blobstorage}
+    <filestorage>
+      path ${zope_conf:filestorage}/Data.fs
+    </filestorage>
+  </blobstorage>
 
+# Uncomment this if you want a blob-less standard file storage instead:
+#  <filestorage>
+#       path ${zope_conf:filestorage}
+#  </filestorage>
+
 # Uncomment this if you want to connect to a ZEO server instead:
 #  <zeoclient>
 #    server localhost:8100
@@ -16,27 +24,17 @@
 #    # Uncomment to have a persistent disk cache
 #    #client zeo1
 #  </zeoclient>
+
 </zodb>
 
 <eventlog>
-  # This sets up logging to a file.
-  # The "path" setting can be a relative or absolute
-  # filesystem path.
-
-  <logfile>
-    path ${buildout:directory}/parts/log/z3.log
-    formatter zope.exceptions.log.Formatter
-  </logfile>
-
-  # This sets up logging to to standard output.
-  # The "path" setting can be the tokens STDOUT or STDERR
-  
-#  <logfile>
-#    path STDOUT
-#    formatter zope.exceptions.log.Formatter
-#  </logfile>
+# logfiles are setup in the debug.ini and deploy.ini files.
 </eventlog>
 
 # Comment this line to disable developer mode.  This should be done in
 # production
-devmode on
\ No newline at end of file
+devmode on
+
+# Extra configuration lines can be added to zope_conf's extra option. Put for
+# instance productconf sections in here.
+${zope_conf:extra}

Modified: grok/trunk/doc/groktut/setting_the_content_type/etc/zope.conf.in
===================================================================
--- grok/trunk/doc/groktut/setting_the_content_type/etc/zope.conf.in	2010-10-26 13:15:46 UTC (rev 117896)
+++ grok/trunk/doc/groktut/setting_the_content_type/etc/zope.conf.in	2010-10-26 13:21:42 UTC (rev 117897)
@@ -2,11 +2,19 @@
 site-definition ${site_zcml:output}
 
 <zodb>
-  # Standard Filestorage
-  <filestorage>
-    path ${data:path}
-  </filestorage>
+  # Standard blob storage
+  <blobstorage>
+    blob-dir ${zope_conf:blobstorage}
+    <filestorage>
+      path ${zope_conf:filestorage}/Data.fs
+    </filestorage>
+  </blobstorage>
 
+# Uncomment this if you want a blob-less standard file storage instead:
+#  <filestorage>
+#       path ${zope_conf:filestorage}
+#  </filestorage>
+
 # Uncomment this if you want to connect to a ZEO server instead:
 #  <zeoclient>
 #    server localhost:8100
@@ -16,27 +24,17 @@
 #    # Uncomment to have a persistent disk cache
 #    #client zeo1
 #  </zeoclient>
+
 </zodb>
 
 <eventlog>
-  # This sets up logging to a file.
-  # The "path" setting can be a relative or absolute
-  # filesystem path.
-
-  <logfile>
-    path ${buildout:directory}/parts/log/z3.log
-    formatter zope.exceptions.log.Formatter
-  </logfile>
-
-  # This sets up logging to to standard output.
-  # The "path" setting can be the tokens STDOUT or STDERR
-  
-#  <logfile>
-#    path STDOUT
-#    formatter zope.exceptions.log.Formatter
-#  </logfile>
+# logfiles are setup in the debug.ini and deploy.ini files.
 </eventlog>
 
 # Comment this line to disable developer mode.  This should be done in
 # production
-devmode on
\ No newline at end of file
+devmode on
+
+# Extra configuration lines can be added to zope_conf's extra option. Put for
+# instance productconf sections in here.
+${zope_conf:extra}

Modified: grok/trunk/doc/groktut/showing_the_value_in_the_form/etc/zope.conf.in
===================================================================
--- grok/trunk/doc/groktut/showing_the_value_in_the_form/etc/zope.conf.in	2010-10-26 13:15:46 UTC (rev 117896)
+++ grok/trunk/doc/groktut/showing_the_value_in_the_form/etc/zope.conf.in	2010-10-26 13:21:42 UTC (rev 117897)
@@ -2,11 +2,19 @@
 site-definition ${site_zcml:output}
 
 <zodb>
-  # Standard Filestorage
-  <filestorage>
-    path ${data:path}
-  </filestorage>
+  # Standard blob storage
+  <blobstorage>
+    blob-dir ${zope_conf:blobstorage}
+    <filestorage>
+      path ${zope_conf:filestorage}/Data.fs
+    </filestorage>
+  </blobstorage>
 
+# Uncomment this if you want a blob-less standard file storage instead:
+#  <filestorage>
+#       path ${zope_conf:filestorage}
+#  </filestorage>
+
 # Uncomment this if you want to connect to a ZEO server instead:
 #  <zeoclient>
 #    server localhost:8100
@@ -16,27 +24,17 @@
 #    # Uncomment to have a persistent disk cache
 #    #client zeo1
 #  </zeoclient>
+
 </zodb>
 
 <eventlog>
-  # This sets up logging to a file.
-  # The "path" setting can be a relative or absolute
-  # filesystem path.
-
-  <logfile>
-    path ${buildout:directory}/parts/log/z3.log
-    formatter zope.exceptions.log.Formatter
-  </logfile>
-
-  # This sets up logging to to standard output.
-  # The "path" setting can be the tokens STDOUT or STDERR
-  
-#  <logfile>
-#    path STDOUT
-#    formatter zope.exceptions.log.Formatter
-#  </logfile>
+# logfiles are setup in the debug.ini and deploy.ini files.
 </eventlog>
 
 # Comment this line to disable developer mode.  This should be done in
 # production
-devmode on
\ No newline at end of file
+devmode on
+
+# Extra configuration lines can be added to zope_conf's extra option. Put for
+# instance productconf sections in here.
+${zope_conf:extra}

Modified: grok/trunk/doc/groktut/simple_forms/etc/zope.conf.in
===================================================================
--- grok/trunk/doc/groktut/simple_forms/etc/zope.conf.in	2010-10-26 13:15:46 UTC (rev 117896)
+++ grok/trunk/doc/groktut/simple_forms/etc/zope.conf.in	2010-10-26 13:21:42 UTC (rev 117897)
@@ -2,11 +2,19 @@
 site-definition ${site_zcml:output}
 
 <zodb>
-  # Standard Filestorage
-  <filestorage>
-    path ${data:path}
-  </filestorage>
+  # Standard blob storage
+  <blobstorage>
+    blob-dir ${zope_conf:blobstorage}
+    <filestorage>
+      path ${zope_conf:filestorage}/Data.fs
+    </filestorage>
+  </blobstorage>
 
+# Uncomment this if you want a blob-less standard file storage instead:
+#  <filestorage>
+#       path ${zope_conf:filestorage}
+#  </filestorage>
+
 # Uncomment this if you want to connect to a ZEO server instead:
 #  <zeoclient>
 #    server localhost:8100
@@ -16,27 +24,17 @@
 #    # Uncomment to have a persistent disk cache
 #    #client zeo1
 #  </zeoclient>
+
 </zodb>
 
 <eventlog>
-  # This sets up logging to a file.
-  # The "path" setting can be a relative or absolute
-  # filesystem path.
-
-  <logfile>
-    path ${buildout:directory}/parts/log/z3.log
-    formatter zope.exceptions.log.Formatter
-  </logfile>
-
-  # This sets up logging to to standard output.
-  # The "path" setting can be the tokens STDOUT or STDERR
-  
-#  <logfile>
-#    path STDOUT
-#    formatter zope.exceptions.log.Formatter
-#  </logfile>
+# logfiles are setup in the debug.ini and deploy.ini files.
 </eventlog>
 
 # Comment this line to disable developer mode.  This should be done in
 # production
-devmode on
\ No newline at end of file
+devmode on
+
+# Extra configuration lines can be added to zope_conf's extra option. Put for
+# instance productconf sections in here.
+${zope_conf:extra}

Modified: grok/trunk/doc/groktut/simple_forms2/etc/zope.conf.in
===================================================================
--- grok/trunk/doc/groktut/simple_forms2/etc/zope.conf.in	2010-10-26 13:15:46 UTC (rev 117896)
+++ grok/trunk/doc/groktut/simple_forms2/etc/zope.conf.in	2010-10-26 13:21:42 UTC (rev 117897)
@@ -2,11 +2,19 @@
 site-definition ${site_zcml:output}
 
 <zodb>
-  # Standard Filestorage
-  <filestorage>
-    path ${data:path}
-  </filestorage>
+  # Standard blob storage
+  <blobstorage>
+    blob-dir ${zope_conf:blobstorage}
+    <filestorage>
+      path ${zope_conf:filestorage}/Data.fs
+    </filestorage>
+  </blobstorage>
 
+# Uncomment this if you want a blob-less standard file storage instead:
+#  <filestorage>
+#       path ${zope_conf:filestorage}
+#  </filestorage>
+
 # Uncomment this if you want to connect to a ZEO server instead:
 #  <zeoclient>
 #    server localhost:8100
@@ -16,27 +24,17 @@
 #    # Uncomment to have a persistent disk cache
 #    #client zeo1
 #  </zeoclient>
+
 </zodb>
 
 <eventlog>
-  # This sets up logging to a file.
-  # The "path" setting can be a relative or absolute
-  # filesystem path.
-
-  <logfile>
-    path ${buildout:directory}/parts/log/z3.log
-    formatter zope.exceptions.log.Formatter
-  </logfile>
-
-  # This sets up logging to to standard output.
-  # The "path" setting can be the tokens STDOUT or STDERR
-  
-#  <logfile>
-#    path STDOUT
-#    formatter zope.exceptions.log.Formatter
-#  </logfile>
+# logfiles are setup in the debug.ini and deploy.ini files.
 </eventlog>
 
 # Comment this line to disable developer mode.  This should be done in
 # production
-devmode on
\ No newline at end of file
+devmode on
+
+# Extra configuration lines can be added to zope_conf's extra option. Put for
+# instance productconf sections in here.
+${zope_conf:extra}

Modified: grok/trunk/doc/groktut/static_resources_for_our_web_page/etc/zope.conf.in
===================================================================
--- grok/trunk/doc/groktut/static_resources_for_our_web_page/etc/zope.conf.in	2010-10-26 13:15:46 UTC (rev 117896)
+++ grok/trunk/doc/groktut/static_resources_for_our_web_page/etc/zope.conf.in	2010-10-26 13:21:42 UTC (rev 117897)
@@ -2,11 +2,19 @@
 site-definition ${site_zcml:output}
 
 <zodb>
-  # Standard Filestorage
-  <filestorage>
-    path ${data:path}
-  </filestorage>
+  # Standard blob storage
+  <blobstorage>
+    blob-dir ${zope_conf:blobstorage}
+    <filestorage>
+      path ${zope_conf:filestorage}/Data.fs
+    </filestorage>
+  </blobstorage>
 
+# Uncomment this if you want a blob-less standard file storage instead:
+#  <filestorage>
+#       path ${zope_conf:filestorage}
+#  </filestorage>
+
 # Uncomment this if you want to connect to a ZEO server instead:
 #  <zeoclient>
 #    server localhost:8100
@@ -16,27 +24,17 @@
 #    # Uncomment to have a persistent disk cache
 #    #client zeo1
 #  </zeoclient>
+
 </zodb>
 
 <eventlog>
-  # This sets up logging to a file.
-  # The "path" setting can be a relative or absolute
-  # filesystem path.
-
-  <logfile>
-    path ${buildout:directory}/parts/log/z3.log
-    formatter zope.exceptions.log.Formatter
-  </logfile>
-
-  # This sets up logging to to standard output.
-  # The "path" setting can be the tokens STDOUT or STDERR
-  
-#  <logfile>
-#    path STDOUT
-#    formatter zope.exceptions.log.Formatter
-#  </logfile>
+# logfiles are setup in the debug.ini and deploy.ini files.
 </eventlog>
 
 # Comment this line to disable developer mode.  This should be done in
 # production
-devmode on
\ No newline at end of file
+devmode on
+
+# Extra configuration lines can be added to zope_conf's extra option. Put for
+# instance productconf sections in here.
+${zope_conf:extra}

Modified: grok/trunk/doc/groktut/storing_data/etc/zope.conf.in
===================================================================
--- grok/trunk/doc/groktut/storing_data/etc/zope.conf.in	2010-10-26 13:15:46 UTC (rev 117896)
+++ grok/trunk/doc/groktut/storing_data/etc/zope.conf.in	2010-10-26 13:21:42 UTC (rev 117897)
@@ -2,11 +2,19 @@
 site-definition ${site_zcml:output}
 
 <zodb>
-  # Standard Filestorage
-  <filestorage>
-    path ${data:path}
-  </filestorage>
+  # Standard blob storage
+  <blobstorage>
+    blob-dir ${zope_conf:blobstorage}
+    <filestorage>
+      path ${zope_conf:filestorage}/Data.fs
+    </filestorage>
+  </blobstorage>
 
+# Uncomment this if you want a blob-less standard file storage instead:
+#  <filestorage>
+#       path ${zope_conf:filestorage}
+#  </filestorage>
+
 # Uncomment this if you want to connect to a ZEO server instead:
 #  <zeoclient>
 #    server localhost:8100
@@ -16,27 +24,17 @@
 #    # Uncomment to have a persistent disk cache
 #    #client zeo1
 #  </zeoclient>
+
 </zodb>
 
 <eventlog>
-  # This sets up logging to a file.
-  # The "path" setting can be a relative or absolute
-  # filesystem path.
-
-  <logfile>
-    path ${buildout:directory}/parts/log/z3.log
-    formatter zope.exceptions.log.Formatter
-  </logfile>
-
-  # This sets up logging to to standard output.
-  # The "path" setting can be the tokens STDOUT or STDERR
-  
-#  <logfile>
-#    path STDOUT
-#    formatter zope.exceptions.log.Formatter
-#  </logfile>
+# logfiles are setup in the debug.ini and deploy.ini files.
 </eventlog>
 
 # Comment this line to disable developer mode.  This should be done in
 # production
-devmode on
\ No newline at end of file
+devmode on
+
+# Extra configuration lines can be added to zope_conf's extra option. Put for
+# instance productconf sections in here.
+${zope_conf:extra}

Modified: grok/trunk/doc/groktut/template/etc/zope.conf.in
===================================================================
--- grok/trunk/doc/groktut/template/etc/zope.conf.in	2010-10-26 13:15:46 UTC (rev 117896)
+++ grok/trunk/doc/groktut/template/etc/zope.conf.in	2010-10-26 13:21:42 UTC (rev 117897)
@@ -2,11 +2,19 @@
 site-definition ${site_zcml:output}
 
 <zodb>
-  # Standard Filestorage
-  <filestorage>
-    path ${data:path}
-  </filestorage>
+  # Standard blob storage
+  <blobstorage>
+    blob-dir ${zope_conf:blobstorage}
+    <filestorage>
+      path ${zope_conf:filestorage}/Data.fs
+    </filestorage>
+  </blobstorage>
 
+# Uncomment this if you want a blob-less standard file storage instead:
+#  <filestorage>
+#       path ${zope_conf:filestorage}
+#  </filestorage>
+
 # Uncomment this if you want to connect to a ZEO server instead:
 #  <zeoclient>
 #    server localhost:8100
@@ -16,27 +24,17 @@
 #    # Uncomment to have a persistent disk cache
 #    #client zeo1
 #  </zeoclient>
+
 </zodb>
 
 <eventlog>
-  # This sets up logging to a file.
-  # The "path" setting can be a relative or absolute
-  # filesystem path.
-
-  <logfile>
-    path ${buildout:directory}/parts/log/z3.log
-    formatter zope.exceptions.log.Formatter
-  </logfile>
-
-  # This sets up logging to to standard output.
-  # The "path" setting can be the tokens STDOUT or STDERR
-  
-#  <logfile>
-#    path STDOUT
-#    formatter zope.exceptions.log.Formatter
-#  </logfile>
+# logfiles are setup in the debug.ini and deploy.ini files.
 </eventlog>
 
 # Comment this line to disable developer mode.  This should be done in
 # production
-devmode on
\ No newline at end of file
+devmode on
+
+# Extra configuration lines can be added to zope_conf's extra option. Put for
+# instance productconf sections in here.
+${zope_conf:extra}

Modified: grok/trunk/doc/groktut/the_rules_of_persistence/etc/zope.conf.in
===================================================================
--- grok/trunk/doc/groktut/the_rules_of_persistence/etc/zope.conf.in	2010-10-26 13:15:46 UTC (rev 117896)
+++ grok/trunk/doc/groktut/the_rules_of_persistence/etc/zope.conf.in	2010-10-26 13:21:42 UTC (rev 117897)
@@ -2,11 +2,19 @@
 site-definition ${site_zcml:output}
 
 <zodb>
-  # Standard Filestorage
-  <filestorage>
-    path ${data:path}
-  </filestorage>
+  # Standard blob storage
+  <blobstorage>
+    blob-dir ${zope_conf:blobstorage}
+    <filestorage>
+      path ${zope_conf:filestorage}/Data.fs
+    </filestorage>
+  </blobstorage>
 
+# Uncomment this if you want a blob-less standard file storage instead:
+#  <filestorage>
+#       path ${zope_conf:filestorage}
+#  </filestorage>
+
 # Uncomment this if you want to connect to a ZEO server instead:
 #  <zeoclient>
 #    server localhost:8100
@@ -16,27 +24,17 @@
 #    # Uncomment to have a persistent disk cache
 #    #client zeo1
 #  </zeoclient>
+
 </zodb>
 
 <eventlog>
-  # This sets up logging to a file.
-  # The "path" setting can be a relative or absolute
-  # filesystem path.
-
-  <logfile>
-    path ${buildout:directory}/parts/log/z3.log
-    formatter zope.exceptions.log.Formatter
-  </logfile>
-
-  # This sets up logging to to standard output.
-  # The "path" setting can be the tokens STDOUT or STDERR
-  
-#  <logfile>
-#    path STDOUT
-#    formatter zope.exceptions.log.Formatter
-#  </logfile>
+# logfiles are setup in the debug.ini and deploy.ini files.
 </eventlog>
 
 # Comment this line to disable developer mode.  This should be done in
 # production
-devmode on
\ No newline at end of file
+devmode on
+
+# Extra configuration lines can be added to zope_conf's extra option. Put for
+# instance productconf sections in here.
+${zope_conf:extra}

Modified: grok/trunk/doc/groktut/the_rules_of_persistence2/etc/zope.conf.in
===================================================================
--- grok/trunk/doc/groktut/the_rules_of_persistence2/etc/zope.conf.in	2010-10-26 13:15:46 UTC (rev 117896)
+++ grok/trunk/doc/groktut/the_rules_of_persistence2/etc/zope.conf.in	2010-10-26 13:21:42 UTC (rev 117897)
@@ -2,11 +2,19 @@
 site-definition ${site_zcml:output}
 
 <zodb>
-  # Standard Filestorage
-  <filestorage>
-    path ${data:path}
-  </filestorage>
+  # Standard blob storage
+  <blobstorage>
+    blob-dir ${zope_conf:blobstorage}
+    <filestorage>
+      path ${zope_conf:filestorage}/Data.fs
+    </filestorage>
+  </blobstorage>
 
+# Uncomment this if you want a blob-less standard file storage instead:
+#  <filestorage>
+#       path ${zope_conf:filestorage}
+#  </filestorage>
+
 # Uncomment this if you want to connect to a ZEO server instead:
 #  <zeoclient>
 #    server localhost:8100
@@ -16,27 +24,17 @@
 #    # Uncomment to have a persistent disk cache
 #    #client zeo1
 #  </zeoclient>
+
 </zodb>
 
 <eventlog>
-  # This sets up logging to a file.
-  # The "path" setting can be a relative or absolute
-  # filesystem path.
-
-  <logfile>
-    path ${buildout:directory}/parts/log/z3.log
-    formatter zope.exceptions.log.Formatter
-  </logfile>
-
-  # This sets up logging to to standard output.
-  # The "path" setting can be the tokens STDOUT or STDERR
-  
-#  <logfile>
-#    path STDOUT
-#    formatter zope.exceptions.log.Formatter
-#  </logfile>
+# logfiles are setup in the debug.ini and deploy.ini files.
 </eventlog>
 
 # Comment this line to disable developer mode.  This should be done in
 # production
-devmode on
\ No newline at end of file
+devmode on
+
+# Extra configuration lines can be added to zope_conf's extra option. Put for
+# instance productconf sections in here.
+${zope_conf:extra}

Modified: grok/trunk/doc/groktut/the_rules_of_persistence3/etc/zope.conf.in
===================================================================
--- grok/trunk/doc/groktut/the_rules_of_persistence3/etc/zope.conf.in	2010-10-26 13:15:46 UTC (rev 117896)
+++ grok/trunk/doc/groktut/the_rules_of_persistence3/etc/zope.conf.in	2010-10-26 13:21:42 UTC (rev 117897)
@@ -2,11 +2,19 @@
 site-definition ${site_zcml:output}
 
 <zodb>
-  # Standard Filestorage
-  <filestorage>
-    path ${data:path}
-  </filestorage>
+  # Standard blob storage
+  <blobstorage>
+    blob-dir ${zope_conf:blobstorage}
+    <filestorage>
+      path ${zope_conf:filestorage}/Data.fs
+    </filestorage>
+  </blobstorage>
 
+# Uncomment this if you want a blob-less standard file storage instead:
+#  <filestorage>
+#       path ${zope_conf:filestorage}
+#  </filestorage>
+
 # Uncomment this if you want to connect to a ZEO server instead:
 #  <zeoclient>
 #    server localhost:8100
@@ -16,27 +24,17 @@
 #    # Uncomment to have a persistent disk cache
 #    #client zeo1
 #  </zeoclient>
+
 </zodb>
 
 <eventlog>
-  # This sets up logging to a file.
-  # The "path" setting can be a relative or absolute
-  # filesystem path.
-
-  <logfile>
-    path ${buildout:directory}/parts/log/z3.log
-    formatter zope.exceptions.log.Formatter
-  </logfile>
-
-  # This sets up logging to to standard output.
-  # The "path" setting can be the tokens STDOUT or STDERR
-  
-#  <logfile>
-#    path STDOUT
-#    formatter zope.exceptions.log.Formatter
-#  </logfile>
+# logfiles are setup in the debug.ini and deploy.ini files.
 </eventlog>
 
 # Comment this line to disable developer mode.  This should be done in
 # production
-devmode on
\ No newline at end of file
+devmode on
+
+# Extra configuration lines can be added to zope_conf's extra option. Put for
+# instance productconf sections in here.
+${zope_conf:extra}

Modified: grok/trunk/doc/groktut/using_view_methods/etc/zope.conf.in
===================================================================
--- grok/trunk/doc/groktut/using_view_methods/etc/zope.conf.in	2010-10-26 13:15:46 UTC (rev 117896)
+++ grok/trunk/doc/groktut/using_view_methods/etc/zope.conf.in	2010-10-26 13:21:42 UTC (rev 117897)
@@ -2,11 +2,19 @@
 site-definition ${site_zcml:output}
 
 <zodb>
-  # Standard Filestorage
-  <filestorage>
-    path ${data:path}
-  </filestorage>
+  # Standard blob storage
+  <blobstorage>
+    blob-dir ${zope_conf:blobstorage}
+    <filestorage>
+      path ${zope_conf:filestorage}/Data.fs
+    </filestorage>
+  </blobstorage>
 
+# Uncomment this if you want a blob-less standard file storage instead:
+#  <filestorage>
+#       path ${zope_conf:filestorage}
+#  </filestorage>
+
 # Uncomment this if you want to connect to a ZEO server instead:
 #  <zeoclient>
 #    server localhost:8100
@@ -16,27 +24,17 @@
 #    # Uncomment to have a persistent disk cache
 #    #client zeo1
 #  </zeoclient>
+
 </zodb>
 
 <eventlog>
-  # This sets up logging to a file.
-  # The "path" setting can be a relative or absolute
-  # filesystem path.
-
-  <logfile>
-    path ${buildout:directory}/parts/log/z3.log
-    formatter zope.exceptions.log.Formatter
-  </logfile>
-
-  # This sets up logging to to standard output.
-  # The "path" setting can be the tokens STDOUT or STDERR
-  
-#  <logfile>
-#    path STDOUT
-#    formatter zope.exceptions.log.Formatter
-#  </logfile>
+# logfiles are setup in the debug.ini and deploy.ini files.
 </eventlog>
 
 # Comment this line to disable developer mode.  This should be done in
 # production
-devmode on
\ No newline at end of file
+devmode on
+
+# Extra configuration lines can be added to zope_conf's extra option. Put for
+# instance productconf sections in here.
+${zope_conf:extra}



More information about the checkins mailing list