[Checkins] SVN: zope.app.publisher/branches/3.4/ Added description and long_description (the latter is composed of an

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


Log message for revision 79179:
  Added description and long_description (the latter is composed of an
  all-new README.txt file and CHANGES.txt)
  

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

-=-
Added: zope.app.publisher/branches/3.4/README.txt
===================================================================
--- zope.app.publisher/branches/3.4/README.txt	                        (rev 0)
+++ zope.app.publisher/branches/3.4/README.txt	2007-08-23 21:23:07 UTC (rev 79179)
@@ -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


Property changes on: zope.app.publisher/branches/3.4/README.txt
___________________________________________________________________
Name: svn:eol-style
   + native

Modified: zope.app.publisher/branches/3.4/setup.py
===================================================================
--- zope.app.publisher/branches/3.4/setup.py	2007-08-23 21:21:22 UTC (rev 79178)
+++ zope.app.publisher/branches/3.4/setup.py	2007-08-23 21:23:07 UTC (rev 79179)
@@ -15,6 +15,9 @@
 """
 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.4.0b2',
       url='http://pypi.python.org/pypi/zope.app.publisher',
@@ -28,6 +31,9 @@
                      'Topic :: Internet :: WWW/HTTP',
                      'Framework :: Zope3',
                      ],
+      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