[Checkins] SVN: grokproject/branches/ulif-dynamic_conf_files/grokproject/template_paste/cfg_templates/z Escape buildout vars.

Uli Fouquet uli at gnufix.de
Wed Feb 4 20:51:25 EST 2009


Log message for revision 96118:
  Escape buildout vars.

Changed:
  U   grokproject/branches/ulif-dynamic_conf_files/grokproject/template_paste/cfg_templates/zdaemon.conf.in_tmpl
  U   grokproject/branches/ulif-dynamic_conf_files/grokproject/template_paste/cfg_templates/zope.conf.in_tmpl

-=-
Modified: grokproject/branches/ulif-dynamic_conf_files/grokproject/template_paste/cfg_templates/zdaemon.conf.in_tmpl
===================================================================
--- grokproject/branches/ulif-dynamic_conf_files/grokproject/template_paste/cfg_templates/zdaemon.conf.in_tmpl	2009-02-05 00:57:36 UTC (rev 96117)
+++ grokproject/branches/ulif-dynamic_conf_files/grokproject/template_paste/cfg_templates/zdaemon.conf.in_tmpl	2009-02-05 01:51:24 UTC (rev 96118)
@@ -1,8 +1,8 @@
 <runner>
-  program bin/paster serve ${buildout:directory}/etc/deploy.ini
+  program bin/paster serve $${buildout:directory} #end raw /etc/deploy.ini
   daemon on
-  transcript ${buildout:directory}/parts/log/zdaemon.log
-  socket-name ${buildout:directory}/parts/log/zdaemonsock
+  transcript $${buildout:directory}/parts/log/zdaemon.log
+  socket-name $${buildout:directory}/parts/log/zdaemonsock
   # Enable this to run the child process as a different user
   # user zope
 </runner>
\ No newline at end of file

Modified: grokproject/branches/ulif-dynamic_conf_files/grokproject/template_paste/cfg_templates/zope.conf.in_tmpl
===================================================================
--- grokproject/branches/ulif-dynamic_conf_files/grokproject/template_paste/cfg_templates/zope.conf.in_tmpl	2009-02-05 00:57:36 UTC (rev 96117)
+++ grokproject/branches/ulif-dynamic_conf_files/grokproject/template_paste/cfg_templates/zope.conf.in_tmpl	2009-02-05 01:51:24 UTC (rev 96118)
@@ -1,10 +1,10 @@
 # Identify the component configuration used to define the site:
-site-definition ${buildout:directory}/etc/site.zcml
+site-definition $${buildout:directory}/etc/site.zcml
 
 <zodb>
   # Standard Filestorage
   <filestorage>
-    path ${buildout:directory}/parts/data/Data.fs
+    path $${buildout:directory}/parts/data/Data.fs
   </filestorage>
 
 # Uncomment this if you want to connect to a ZEO server instead:
@@ -24,7 +24,7 @@
   # filesystem path or the tokens STDOUT or STDERR.
 
   <logfile>
-    path ${buildout:directory}/parts/log/z3.log
+    path $${buildout:directory}/parts/log/z3.log
     formatter zope.exceptions.log.Formatter
   </logfile>
 



More information about the Checkins mailing list