[Checkins] SVN: gocept.recipe.zope3instance/trunk/src/gocept/zope3instance/ - updated license quips

Christian Theune ct at gocept.com
Thu Jan 11 01:30:23 EST 2007


Log message for revision 71913:
   - updated license quips
   - added attribution
   - changed namespace package references
  

Changed:
  U   gocept.recipe.zope3instance/trunk/src/gocept/zope3instance/README.txt
  U   gocept.recipe.zope3instance/trunk/src/gocept/zope3instance/__init__.py
  U   gocept.recipe.zope3instance/trunk/src/gocept/zope3instance/ctl.py
  U   gocept.recipe.zope3instance/trunk/src/gocept/zope3instance/tests.py
  U   gocept.recipe.zope3instance/trunk/src/gocept/zope3instance/zope3scripts.py

-=-
Modified: gocept.recipe.zope3instance/trunk/src/gocept/zope3instance/README.txt
===================================================================
--- gocept.recipe.zope3instance/trunk/src/gocept/zope3instance/README.txt	2007-01-11 06:27:15 UTC (rev 71912)
+++ gocept.recipe.zope3instance/trunk/src/gocept/zope3instance/README.txt	2007-01-11 06:30:23 UTC (rev 71913)
@@ -1,14 +1,22 @@
 Zope 3 Instance Recipe
 ======================
 
-The zc.recipe.zope3instance recipe creates a Zope 3 instance.  A Zope
-3 instance is a collection of scripts and configuration that define a Zope
-server process.  This recipe is likely to evolve quite a bit as our
-knowledge of how to deploy applications with eggs evolves. For
-example, we now need to know the location of a Zope 3 installation,
-however, in the future, we may be able to express our dependence on
-Zope3 soley via eggs.
+Credits
+-------
 
+The gocept.zope3instance recipe was derived from a development version of Jim
+Fulton's original zc.recipe.zope3instance recipe.
+
+Usage
+-----
+
+This recipe creates a Zope 3 instance.  A Zope 3 instance is a collection of
+scripts and configuration that define a Zope server process.  This recipe is
+likely to evolve quite a bit as our knowledge of how to deploy applications
+with eggs evolves. For example, we now need to know the location of a Zope 3
+installation, however, in the future, we may be able to express our dependence
+on Zope3 soley via eggs.
+
 Note that, currently, this recipe is fairly unix-centric.  Windows
 support will be added in the future.
 

Modified: gocept.recipe.zope3instance/trunk/src/gocept/zope3instance/__init__.py
===================================================================
--- gocept.recipe.zope3instance/trunk/src/gocept/zope3instance/__init__.py	2007-01-11 06:27:15 UTC (rev 71912)
+++ gocept.recipe.zope3instance/trunk/src/gocept/zope3instance/__init__.py	2007-01-11 06:30:23 UTC (rev 71913)
@@ -1,6 +1,6 @@
 ##############################################################################
 #
-# Copyright (c) 2006 Zope Corporation and Contributors.
+# Copyright (c) 2006-2007 Zope Corporation and Contributors.
 # All Rights Reserved.
 #
 # This software is subject to the provisions of the Zope Public License,
@@ -20,7 +20,7 @@
 import zc.buildout
 import zc.recipe.egg
 
-logger = logging.getLogger('zc.recipe.zope3instance')
+logger = logging.getLogger('gocept.zope3instance')
 
 
 class Recipe:
@@ -98,10 +98,10 @@
 
         # Install the scripts defined by this recipe, which adds entry points
         # missing from Zope itself.
-        requirements, ws = self.egg.working_set(['zc.recipe.zope3instance'])
+        requirements, ws = self.egg.working_set(['gocept.zope3instance'])
         zc.buildout.easy_install.scripts(
-            [('debugzope', 'zc.recipe.zope3instance.zope3scripts', 'debug'),
-             ('scriptzope', 'zc.recipe.zope3instance.zope3scripts', 'script'),
+            [('debugzope', 'gocept.zope3instance.zope3scripts', 'debug'),
+             ('scriptzope', 'gocept.zope3instance.zope3scripts', 'script'),
              ],
             ws, options['executable'], options['subprogram_dir'],
             extra_paths = options['extra-paths'].split(),
@@ -111,7 +111,7 @@
             )
 
         zc.buildout.easy_install.scripts(
-            [(self.name, 'zc.recipe.zope3instance.ctl', 'main')],
+            [(self.name, 'gocept.zope3instance.ctl', 'main')],
             ws, options['executable'], options['bin-directory'],
             extra_paths = options['extra-paths'].split(),
             arguments = ('\n        %r,'

Modified: gocept.recipe.zope3instance/trunk/src/gocept/zope3instance/ctl.py
===================================================================
--- gocept.recipe.zope3instance/trunk/src/gocept/zope3instance/ctl.py	2007-01-11 06:27:15 UTC (rev 71912)
+++ gocept.recipe.zope3instance/trunk/src/gocept/zope3instance/ctl.py	2007-01-11 06:30:23 UTC (rev 71913)
@@ -1,6 +1,6 @@
 ##############################################################################
 #
-# Copyright (c) 2004 Zope Corporation and Contributors.
+# Copyright (c) 2004-2007 Zope Corporation and Contributors.
 # All Rights Reserved.
 #
 # This software is subject to the provisions of the Zope Public License,

Modified: gocept.recipe.zope3instance/trunk/src/gocept/zope3instance/tests.py
===================================================================
--- gocept.recipe.zope3instance/trunk/src/gocept/zope3instance/tests.py	2007-01-11 06:27:15 UTC (rev 71912)
+++ gocept.recipe.zope3instance/trunk/src/gocept/zope3instance/tests.py	2007-01-11 06:30:23 UTC (rev 71913)
@@ -1,6 +1,6 @@
 ##############################################################################
 #
-# Copyright (c) 2006 Zope Corporation and Contributors.
+# Copyright (c) 2006-2007 Zope Corporation and Contributors.
 # All Rights Reserved.
 #
 # This software is subject to the provisions of the Zope Public License,
@@ -24,7 +24,7 @@
 
 def setUp(test):
     zc.buildout.testing.buildoutSetUp(test)
-    zc.buildout.testing.install_develop('zc.recipe.zope3instance', test)
+    zc.buildout.testing.install_develop('gocept.zope3instance', test)
     zc.buildout.testing.install('zope.testing', test)
     zc.buildout.testing.install('zc.recipe.egg', test)
     sample_zope3 = test.globs['tmpdir']()

Modified: gocept.recipe.zope3instance/trunk/src/gocept/zope3instance/zope3scripts.py
===================================================================
--- gocept.recipe.zope3instance/trunk/src/gocept/zope3instance/zope3scripts.py	2007-01-11 06:27:15 UTC (rev 71912)
+++ gocept.recipe.zope3instance/trunk/src/gocept/zope3instance/zope3scripts.py	2007-01-11 06:30:23 UTC (rev 71913)
@@ -1,6 +1,6 @@
 ##############################################################################
 #
-# Copyright (c) 2006 Zope Corporation and Contributors.
+# Copyright (c) 2006-2007 Zope Corporation and Contributors.
 # All Rights Reserved.
 #
 # This software is subject to the provisions of the Zope Public License,



More information about the Checkins mailing list