[Checkins] SVN: grokproject/branches/d2m-dual-startup/ removed refences to zopectl from the paster template

Michael Haubenwallner michael at d2m.at
Mon Sep 29 02:14:20 EDT 2008


Log message for revision 91587:
  removed refences to zopectl from the paster template

Changed:
  U   grokproject/branches/d2m-dual-startup/README.txt
  U   grokproject/branches/d2m-dual-startup/grokproject/template_paste/buildout.cfg_tmpl
  U   grokproject/branches/d2m-dual-startup/grokproject/template_paste/etc/zdaemon.conf
  U   grokproject/branches/d2m-dual-startup/grokproject/template_paste/etc/zope.conf

-=-
Modified: grokproject/branches/d2m-dual-startup/README.txt
===================================================================
--- grokproject/branches/d2m-dual-startup/README.txt	2008-09-29 03:14:38 UTC (rev 91586)
+++ grokproject/branches/d2m-dual-startup/README.txt	2008-09-29 06:14:20 UTC (rev 91587)
@@ -16,20 +16,23 @@
 
 After the project area has been created successfully, you will find an
 empty Python package in the ``src`` directory in which you can place
-the code for your web application.  To start the Zope server, execute
-``bin/paster serve etc/deploy.ini``.
+the code for your web application.  
+To start the application server, execute::
 
+  $ bin/paster serve etc/deploy.ini
+
+For those who know paster: ``grokproject`` is just a wrapper around a
+paster template.  So instead of running the ``grokproject`` command,
+you can also run::
+
+  $ paster create -t grok MammotHerd
+
 To create a project with the previous ``zopectl`` layout run the ``grokproject`` 
-script like:
+script like::
 
   $ grokproject --zopectl MammothHerd
 
-or:
+or::
 
   $ paster create -t grok MammothHerd zopectl=True
-
-For those who know paster: ``grokproject`` is just a wrapper around a
-paster template.  So instead of running the ``grokproject`` command,
-you can also run:
-
-  $ paster create -t grok MammotHerd
+  
\ No newline at end of file

Modified: grokproject/branches/d2m-dual-startup/grokproject/template_paste/buildout.cfg_tmpl
===================================================================
--- grokproject/branches/d2m-dual-startup/grokproject/template_paste/buildout.cfg_tmpl	2008-09-29 03:14:38 UTC (rev 91586)
+++ grokproject/branches/d2m-dual-startup/grokproject/template_paste/buildout.cfg_tmpl	2008-09-29 06:14:20 UTC (rev 91587)
@@ -1,6 +1,6 @@
 [buildout]
 develop = .
-parts = eggbasket app i18n test data zopectl
+parts = eggbasket app i18n test data log
 newest = ${newest}
 extends = versions.cfg
 # eggs will be installed in the default buildout location
@@ -21,7 +21,7 @@
 [data]
 recipe = zc.recipe.filestorage
 
-[zopectl]
+[log]
 recipe = zc.recipe.filestorage
 
 [test]

Modified: grokproject/branches/d2m-dual-startup/grokproject/template_paste/etc/zdaemon.conf
===================================================================
--- grokproject/branches/d2m-dual-startup/grokproject/template_paste/etc/zdaemon.conf	2008-09-29 03:14:38 UTC (rev 91586)
+++ grokproject/branches/d2m-dual-startup/grokproject/template_paste/etc/zdaemon.conf	2008-09-29 06:14:20 UTC (rev 91587)
@@ -1,8 +1,8 @@
 <runner>
   program bin/paster serve etc/deploy.ini
   daemon on
-  transcript parts/zopectl/zdaemon.log
-  socket-name parts/zopectl/zdaemonsock
+  transcript parts/log/zdaemon.log
+  socket-name 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/d2m-dual-startup/grokproject/template_paste/etc/zope.conf
===================================================================
--- grokproject/branches/d2m-dual-startup/grokproject/template_paste/etc/zope.conf	2008-09-29 03:14:38 UTC (rev 91586)
+++ grokproject/branches/d2m-dual-startup/grokproject/template_paste/etc/zope.conf	2008-09-29 06:14:20 UTC (rev 91587)
@@ -24,7 +24,7 @@
   # filesystem path or the tokens STDOUT or STDERR.
 
   <logfile>
-    path parts/zopectl/z3.log
+    path parts/log/z3.log
     formatter zope.exceptions.log.Formatter
   </logfile>
 



More information about the Checkins mailing list