[Checkins] SVN: z3c.layer/trunk/ - Fixed home page and email address.

Michael Howitz mh at gocept.com
Sat Feb 7 09:58:26 EST 2009


Log message for revision 96207:
  - Fixed home page and email address.
  
  - Added README files of layers to long description.
  
  

Changed:
  U   z3c.layer/trunk/CHANGES.txt
  U   z3c.layer/trunk/setup.py
  U   z3c.layer/trunk/src/z3c/layer/minimal/README.txt
  U   z3c.layer/trunk/src/z3c/layer/pagelet/README.txt
  U   z3c.layer/trunk/src/z3c/layer/trusted/README.txt

-=-
Modified: z3c.layer/trunk/CHANGES.txt
===================================================================
--- z3c.layer/trunk/CHANGES.txt	2009-02-07 14:48:38 UTC (rev 96206)
+++ z3c.layer/trunk/CHANGES.txt	2009-02-07 14:58:26 UTC (rev 96207)
@@ -2,7 +2,7 @@
 CHANGES
 =======
 
-0.2.4 (unreleased)
+0.3.0 (2009-02-07)
 ------------------
 
 - Replaced ``zope.app.zapi`` by the original imports.
@@ -15,7 +15,11 @@
 - Declared ``zope.app.zcmlfiles`` as testing dependency, as otherwise
   tests break.
 
+- Fixed home page and email address.
 
+- Added README files of layers to long description.
+
+
 0.2.3 (2007-11-07)
 ------------------
 

Modified: z3c.layer/trunk/setup.py
===================================================================
--- z3c.layer/trunk/setup.py	2009-02-07 14:48:38 UTC (rev 96206)
+++ z3c.layer/trunk/setup.py	2009-02-07 14:58:26 UTC (rev 96207)
@@ -25,11 +25,17 @@
 setup(name = 'z3c.layer',
       version = '0.3.0dev',
       author='Zope Corporation and Contributors',
-      author_email='zope3-dev at zope.org',
+      author_email='zope-dev at zope.org',
       description='Collection of Alternative Base Layers',
       long_description=(
           read('README.txt')
+          + '\n\n' + '.. contents::' + '\n\n' +
+          read('src', 'z3c', 'layer', 'minimal', 'README.txt')
           + '\n\n' +
+          read('src', 'z3c', 'layer', 'pagelet', 'README.txt')
+          + '\n\n' +
+          read('src', 'z3c', 'layer', 'trusted', 'README.txt')
+          + '\n\n' +
           read('CHANGES.txt')
           ),
       keywords = "zope3 layer",
@@ -43,7 +49,7 @@
           'Operating System :: OS Independent',
           'Topic :: Internet :: WWW/HTTP',
           'Framework :: Zope3'],
-      url='http://cheeseshop.python.org/pypi/z3c.layer',
+      url='http://pypi.python.org/pypi/z3c.layer',
       license='ZPL 2.1',
       packages=find_packages('src'),
       package_dir = {'': 'src'},

Modified: z3c.layer/trunk/src/z3c/layer/minimal/README.txt
===================================================================
--- z3c.layer/trunk/src/z3c/layer/minimal/README.txt	2009-02-07 14:48:38 UTC (rev 96206)
+++ z3c.layer/trunk/src/z3c/layer/minimal/README.txt	2009-02-07 14:58:26 UTC (rev 96207)
@@ -1,8 +1,8 @@
-======
-README
-======
+=============
+Minimal layer
+=============
 
-This package contains the minimal layer. This layer supports a correct set of 
+This package contains the minimal layer. This layer supports a correct set of
 component registration and can be used for inheritation in custom skins.
 
 Right now the default implementation in Zope3 has different restriction in the
@@ -12,12 +12,12 @@
 IMinimalBrowserLayer
 --------------------
 
-The minimal layer is useful for build custom presentation skins without access 
-to ZMI menus like zmi_views etc. This means there is no menu item registred if 
+The minimal layer is useful for build custom presentation skins without access
+to ZMI menus like zmi_views etc. This means there is no menu item registred if
 you use this layer.
 
-This layer is NOT derived from IDefaultBrowserLayer. Therefore it provides 
-only a minimal set of the most important public views such as @@absolute_url. 
+This layer is NOT derived from IDefaultBrowserLayer. Therefore it provides
+only a minimal set of the most important public views such as @@absolute_url.
 The following packages are accounted:
 
 - zope.app.http.exception
@@ -30,9 +30,9 @@
 Testing
 -------
 
-For testing the IMinimalBrowserLayer we use the testing skin defined in the 
+For testing the IMinimalBrowserLayer we use the testing skin defined in the
 tests package which uses the IMinimalBrowserLayer as the only base layer.
-This means, that our testing skin provides only the views defined in the 
+This means, that our testing skin provides only the views defined in the
 minimal package and it's testing views defined in tests.
 
 Login as manager first:
@@ -41,7 +41,7 @@
   >>> manager = Browser()
   >>> manager.addHeader('Authorization', 'Basic mgr:mgrpw')
 
-Check if we can access the page.html view which is registred in the 
+Check if we can access the page.html view which is registred in the
 ftesting.zcml file with our skin:
 
   >>> manager = Browser()
@@ -108,7 +108,7 @@
   <BLANKLINE>
   <BLANKLINE>
 
-And check the user error page which is a view registred for 
+And check the user error page which is a view registred for
 ``zope.exceptions.interfaces.IUserError`` exceptions:
 
   >>> manager.open(skinURL + '/@@usererror.html')
@@ -127,7 +127,7 @@
   <BLANKLINE>
   <BLANKLINE>
 
-And check error view registred for 
+And check error view registred for
 ``zope.interface.common.interfaces.IException``:
 
   >>> manager.open(skinURL + '/@@systemerror.html')
@@ -153,7 +153,7 @@
   <BLANKLINE>
   <BLANKLINE>
 
-And check the ``zope.security.interfaces.IUnauthorized`` view, use a new 
+And check the ``zope.security.interfaces.IUnauthorized`` view, use a new
 unregistred user (test browser) for this:
 
   >>> unauthorized = Browser()

Modified: z3c.layer/trunk/src/z3c/layer/pagelet/README.txt
===================================================================
--- z3c.layer/trunk/src/z3c/layer/pagelet/README.txt	2009-02-07 14:48:38 UTC (rev 96206)
+++ z3c.layer/trunk/src/z3c/layer/pagelet/README.txt	2009-02-07 14:58:26 UTC (rev 96207)
@@ -1,6 +1,6 @@
-======
-README
-======
+=============
+Pagelet layer
+=============
 
 This package contains the pagelet layer. This layer supports a correct set of
 component registration and can be used for inheritation in custom skins.

Modified: z3c.layer/trunk/src/z3c/layer/trusted/README.txt
===================================================================
--- z3c.layer/trunk/src/z3c/layer/trusted/README.txt	2009-02-07 14:48:38 UTC (rev 96206)
+++ z3c.layer/trunk/src/z3c/layer/trusted/README.txt	2009-02-07 14:58:26 UTC (rev 96207)
@@ -1,6 +1,6 @@
-======
-README
-======
+=============
+Trusted layer
+=============
 
 This package contains the trusted layer. This layer support a correct set of
 component registration and can be used for inheritation in custom skins.
@@ -11,7 +11,8 @@
 over a PAU (pluggable IAuthentication utility) without to run into a
 Unautorized exception.
 
-For more information see also the README.txt in z3c.layer.minimal.
+For more information see also the README.txt in
+z3c.layer.minimal. (`Minimal Layer`_)
 
 
 Testing



More information about the Checkins mailing list