[Checkins] SVN: Sandbox/philikon/zopeproject/trunk/zopeproject/deploy/ convert template to work with a different template renderer

Philipp von Weitershausen philikon at philikon.de
Sat Jul 14 13:08:22 EDT 2007


Log message for revision 77957:
  convert template to work with a  different template renderer
  

Changed:
  U   Sandbox/philikon/zopeproject/trunk/zopeproject/deploy/buildout.cfg_tmpl
  U   Sandbox/philikon/zopeproject/trunk/zopeproject/deploy/deploy.ini_tmpl
  U   Sandbox/philikon/zopeproject/trunk/zopeproject/deploy/site.zcml_tmpl

-=-
Modified: Sandbox/philikon/zopeproject/trunk/zopeproject/deploy/buildout.cfg_tmpl
===================================================================
--- Sandbox/philikon/zopeproject/trunk/zopeproject/deploy/buildout.cfg_tmpl	2007-07-14 17:07:03 UTC (rev 77956)
+++ Sandbox/philikon/zopeproject/trunk/zopeproject/deploy/buildout.cfg_tmpl	2007-07-14 17:08:22 UTC (rev 77957)
@@ -1,10 +1,9 @@
 [buildout]
-develop = {{develop}}
-parts = app
+parts = app test
 
 [app]
 recipe = zc.recipe.egg
-eggs = {{egg}}
+eggs = ${egg}
        Paste
        PasteScript
        PasteDeploy

Modified: Sandbox/philikon/zopeproject/trunk/zopeproject/deploy/deploy.ini_tmpl
===================================================================
--- Sandbox/philikon/zopeproject/trunk/zopeproject/deploy/deploy.ini_tmpl	2007-07-14 17:07:03 UTC (rev 77956)
+++ Sandbox/philikon/zopeproject/trunk/zopeproject/deploy/deploy.ini_tmpl	2007-07-14 17:08:22 UTC (rev 77957)
@@ -1,5 +1,5 @@
 [app:main]
-use = egg:{{egg}}
+use = egg:${egg}
 
 [server:main]
 use = egg:Paste#http

Modified: Sandbox/philikon/zopeproject/trunk/zopeproject/deploy/site.zcml_tmpl
===================================================================
--- Sandbox/philikon/zopeproject/trunk/zopeproject/deploy/site.zcml_tmpl	2007-07-14 17:07:03 UTC (rev 77956)
+++ Sandbox/philikon/zopeproject/trunk/zopeproject/deploy/site.zcml_tmpl	2007-07-14 17:08:22 UTC (rev 77957)
@@ -1,7 +1,7 @@
 <configure xmlns="http://namespaces.zope.org/zope"
-           i18n_domain="{{package}}">
+           i18n_domain="${package}">
 
-  <include package="{{package}}" />
+  <include package="${package}" />
 
   <securityPolicy 
       component="zope.app.securitypolicy.zopepolicy.ZopeSecurityPolicy" />
@@ -16,9 +16,9 @@
                   title="All Users" />
   <principal id="zope.manager"
              title="Manager"
-             login="{{user}}"
+             login="${user}"
              password_manager="Plain Text"
-             password="{{passwd}}"
+             password="${passwd}"
              />
 
   <!-- Replace the following directive if you don't want public access -->



More information about the Checkins mailing list