[Checkins] SVN: zope.app.publisher/trunk/ ------------------------------------------------------------------------

Philipp von Weitershausen philikon at philikon.de
Thu Aug 23 17:37:39 EDT 2007


Log message for revision 79187:
  ------------------------------------------------------------------------
  r79179 | philikon | 2007-08-23 23:23:07 +0200 (Thu, 23 Aug 2007) | 3 lines
  
  Added description and long_description (the latter is composed of an
  all-new README.txt file and CHANGES.txt)
  
  ------------------------------------------------------------------------
  
  

Changed:
  A   zope.app.publisher/trunk/README.txt
  U   zope.app.publisher/trunk/setup.py

-=-
Copied: zope.app.publisher/trunk/README.txt (from rev 79179, zope.app.publisher/branches/3.4/README.txt)
===================================================================
--- zope.app.publisher/trunk/README.txt	                        (rev 0)
+++ zope.app.publisher/trunk/README.txt	2007-08-23 21:37:39 UTC (rev 79187)
@@ -0,0 +1,37 @@
+========
+Overview
+========
+
+``zope.publisher`` is a general purpose object publishing framework
+which delegates to a publication object for determining the
+to-be-published object.  With Zope 3's default publication from
+``zope.app.publication``, this is usually a view or a resource.
+
+This package, ``zope.app.publisher``, provides base implementations
+for those.  It also provides ZCML directives for configuring views and
+resources.  More specifically, ``zope.app.publisher`` defines the
+following ZCML directives:
+
+* browser:page
+
+* browser:pages
+
+* browser:view
+
+* browser:menu
+
+* browser:menuItem
+
+* browser:menuItems
+
+* browser:addMenuitem
+
+* browser:resource
+
+* browser:resourceDirectory
+
+* browser:defeaultSkin
+
+* browser:icon
+
+* xmlrpc:view

Modified: zope.app.publisher/trunk/setup.py
===================================================================
--- zope.app.publisher/trunk/setup.py	2007-08-23 21:35:03 UTC (rev 79186)
+++ zope.app.publisher/trunk/setup.py	2007-08-23 21:37:39 UTC (rev 79187)
@@ -15,11 +15,17 @@
 """
 from setuptools import setup, find_packages, Extension
 
+long_description = (open('README.txt').read() + '\n\n' +
+                    open('CHANGES.txt').read())
+
 setup(name='zope.app.publisher',
       version = '3.5.0a1',
       url='http://pypi.python.org/pypi/zope.app.publisher/',
       author='Zope Corporation and Contributors',
       author_email='zope3-dev at zope.org',
+      description='Implementations and means for configuration of Zope 3-'
+                  'style views and resources.',
+      long_description=long_description,
 
       packages=find_packages('src'),
       package_dir={'': 'src'},



More information about the Checkins mailing list