[Checkins] SVN: grokproject/trunk/grokproject/template_paste/etc/zope.conf.in_tmpl Enable blob-storage by default.

Uli Fouquet uli at gnufix.de
Sun Aug 16 13:25:01 EDT 2009


Log message for revision 102859:
  Enable blob-storage by default.
  

Changed:
  U   grokproject/trunk/grokproject/template_paste/etc/zope.conf.in_tmpl

-=-
Modified: grokproject/trunk/grokproject/template_paste/etc/zope.conf.in_tmpl
===================================================================
--- grokproject/trunk/grokproject/template_paste/etc/zope.conf.in_tmpl	2009-08-16 14:57:52 UTC (rev 102858)
+++ grokproject/trunk/grokproject/template_paste/etc/zope.conf.in_tmpl	2009-08-16 17:25:01 UTC (rev 102859)
@@ -2,11 +2,19 @@
 site-definition $${site_zcml:output}
 
 <zodb>
-  # Standard Filestorage
-  <filestorage>
-    path $${data:path}
-  </filestorage>
+  # Standard blob storage
+  <blobstorage>
+    blob-dir $${buildout:parts-directory}/blobs
+    <filestorage>
+      path $${data:path}
+    </filestorage>
+  </blobstorage>
 
+# Uncomment this if you want a blob-less standard file storage instead:
+#  <filestorage>
+#    path $${data:path}
+#  </filestorage>
+
 # Uncomment this if you want to connect to a ZEO server instead:
 #  <zeoclient>
 #    server localhost:8100
@@ -17,15 +25,6 @@
 #    #client zeo1
 #  </zeoclient>
 
-# Uncomment this if you want to enable a blob storage (and comment out
-# standard filestorage above):
-#  <blobstorage>
-#    <filestorage>
-#      path $${data:path}
-#    </filestorage>
-#    blob-dir = $${data:path}/blobs
-#  </blobstorage>
-
 </zodb>
 
 <eventlog>



More information about the Checkins mailing list