[Checkins] SVN: zope.browserzcml2/trunk/ Change some standard fixtures

Philipp von Weitershausen philikon at philikon.de
Fri Apr 21 09:52:37 EDT 2006


Log message for revision 67215:
  Change some standard fixtures
  

Changed:
  U   zope.browserzcml2/trunk/CHANGES.txt
  U   zope.browserzcml2/trunk/INSTALL.txt
  U   zope.browserzcml2/trunk/README.txt
  U   zope.browserzcml2/trunk/setup.py

-=-
Modified: zope.browserzcml2/trunk/CHANGES.txt
===================================================================
--- zope.browserzcml2/trunk/CHANGES.txt	2006-04-21 13:46:20 UTC (rev 67214)
+++ zope.browserzcml2/trunk/CHANGES.txt	2006-04-21 13:52:37 UTC (rev 67215)
@@ -1,32 +1,4 @@
-zope.XXX Package Changelog
-==========================
+zope.browserzcml2 Changelog
+===========================
 
-zope.XXX version 3.2.1 (2006/03/26)
------------------------------------
-
-- Corresponds to the verison of the zope.XXX package shipped as part of
-  the Zope 3.2.1 release.
-
-zope.XXX version 3.2.0 (2006/01/05)
------------------------------------
-
-- Corresponds to the verison of the zope.XXX package shipped as part of
-  the Zope 3.2.0 release.
-
-zope.XXX version 3.1.0 (2005/10/03)
------------------------------------
-
-- Corresponds to the verison of the zope.XXX package shipped as part of
-  the Zope 3.1.0 release.
-
-zope.XXX version 3.0.1 (2005/07/27)
------------------------------------
-
-- Corresponds to the verison of the zope.XXX package shipped as part of
-  the Zope X3.0.1 release.
-
-zope.XXX version 3.0.0 (2004/11/07)
------------------------------------
-
-- Corresponds to the verison of the zope.XXX package shipped as part of
-  the Zope X3.0.0 release.
+XXX

Modified: zope.browserzcml2/trunk/INSTALL.txt
===================================================================
--- zope.browserzcml2/trunk/INSTALL.txt	2006-04-21 13:46:20 UTC (rev 67214)
+++ zope.browserzcml2/trunk/INSTALL.txt	2006-04-21 13:52:37 UTC (rev 67215)
@@ -26,9 +26,9 @@
 
 Check out the package from subversion:
 
-  $ svn co svn+ssh://svn.zope.org/repos/main/zope.XXX/trunk \
-    src/zope.XXX
-  $ cd src/zope.XXX
+  $ svn co svn+ssh://svn.zope.org/repos/main/zope.browserzcml2/trunk \
+    src/zope.browserzcml2
+  $ cd src/zope.browserzcml2
 
 Install it as a "devlopment egg" (which also installs its "hard"
 dependencies):
@@ -68,7 +68,7 @@
 You can also install it from a source distribution:
 
   $ /path/to/easy_install --find-links="...." -eb src zope.XXX
-  $ cd src/zope.XXX
+  $ cd src/zope.browserzcml2
   $ /path/to/your/python setup.py devel
 
 
@@ -78,6 +78,4 @@
 Install the package as a "binary egg" (which also installs its "hard"
 dependencies):
 
-  $ /path/to/easy_install --find-links="...." zope.XXX
-
-
+  $ /path/to/easy_install --find-links="...." zope.browserzcml2

Modified: zope.browserzcml2/trunk/README.txt
===================================================================
--- zope.browserzcml2/trunk/README.txt	2006-04-21 13:46:20 UTC (rev 67214)
+++ zope.browserzcml2/trunk/README.txt	2006-04-21 13:52:37 UTC (rev 67215)
@@ -1,16 +1,21 @@
-zope.XXX Package Readme
-=======================
+zope.browserzcml2
+=================
 
 Overview
 --------
 
-Lorem ipsum delorem.
+Alternate ZCML browser directives that don't magically create classes
+etc.  The goal is more clarity in both Python and ZCML.
 
+See http://dev.zope.org/Zope3/TheBrowserPageCompromise.
+
+
 Changes
 -------
 
 See CHANGES.txt.
 
+
 Installation
 ------------
 
@@ -22,16 +27,12 @@
 
 - Subversion browser:
 
-  http://svn.zope.org/zope.XXX/
+  http://svn.zope.org/zope.browserzcml2/
 
 - Read-only Subversion checkout:
 
-  $ svn co svn://svn.zope.org/repos/main/zope.XXX/trunk
+  $ svn co svn://svn.zope.org/repos/main/zope.browserzcml2/trunk
 
 - Writable Subversion checkout:
 
-  $ svn co svn://svn.zope.org/repos/main/zope.XXX/trunk
-
-- Note that the 'src/zope/XXX' package is acutally a 'svn:externals' link
-  to the corresponding package in the Zope3 trunk (or to a specific tag,
-  for released versions of the package).
+  $ svn co svn://svn.zope.org/repos/main/zope.browserzcml2/trunk

Modified: zope.browserzcml2/trunk/setup.py
===================================================================
--- zope.browserzcml2/trunk/setup.py	2006-04-21 13:46:20 UTC (rev 67214)
+++ zope.browserzcml2/trunk/setup.py	2006-04-21 13:52:37 UTC (rev 67215)
@@ -15,7 +15,6 @@
 
 $Id$
 """
-
 import os
 
 try:
@@ -23,24 +22,18 @@
 except ImportError, e:
     from distutils.core import setup, Extension
 
-setup(name='zope.XXX',
+setup(name='zope.browserzcml2',
       version='1.0',
-      url='http://svn.zope.org/zope.XXX',
+      url='http://svn.zope.org/zope.browserzcml2',
       license='ZPL 2.1',
-      description='XXX',
+      description='Alternate, non-magical browser ZCML directives',
       author='Zope Corporation and Contributors',
       author_email='zope3-dev at zope.org',
       long_description='',
       
-      packages=['zope', 'zope.XXX'],
+      packages=['zope', 'zope.browserzcml2'],
       package_dir = {'': 'src'},
 
-##       ext_modules=[Extension("zope.XXX._zope_XXX",
-##                              [os.path.join('src', 'zope', 'XXX',
-##                                            "_zope_XXX.c")
-##                               ]),
-##                    ],
-
       namespace_packages=['zope',],
       tests_require = ['zope.testing'],
       install_requires=['zope.deprecation'],



More information about the Checkins mailing list