[Checkins] SVN: z3c.menu.simple/trunk/ Get ready for release.

Stephan Richter srichter at cosmos.phy.tufts.edu
Thu Jan 24 22:52:26 EST 2008


Log message for revision 83216:
  Get ready for release.
  

Changed:
  U   z3c.menu.simple/trunk/CHANGES.txt
  U   z3c.menu.simple/trunk/setup.py
  U   z3c.menu.simple/trunk/src/z3c/menu/simple/README.txt

-=-
Modified: z3c.menu.simple/trunk/CHANGES.txt
===================================================================
--- z3c.menu.simple/trunk/CHANGES.txt	2008-01-25 03:40:29 UTC (rev 83215)
+++ z3c.menu.simple/trunk/CHANGES.txt	2008-01-25 03:52:25 UTC (rev 83216)
@@ -5,13 +5,10 @@
 0.5.1dev (unreleased)
 ---------------------
 
-- ...
+- Bug: Updated meta-data and documentation.
 
 
-0.5.0 (2007-01-21)
+0.5.0 (2008-01-21)
 ------------------
 
-- The viewlet manager get moved from z3c.viewlet.manager to zope.viewlet.manager
-  Use them from the new location and skip the dependency to z3c.viewlet
-
 - Initial Release

Modified: z3c.menu.simple/trunk/setup.py
===================================================================
--- z3c.menu.simple/trunk/setup.py	2008-01-25 03:40:29 UTC (rev 83215)
+++ z3c.menu.simple/trunk/setup.py	2008-01-25 03:52:25 UTC (rev 83216)
@@ -23,13 +23,18 @@
 
 setup (
     name='z3c.menu.simple',
-    version='0.5.1dev',
+    version='0.5.1',
     author = "Stephan Richter, Roger Ineichen and the Zope Community",
-    author_email = "zope3-dev at zope.org",
+    author_email = "zope-dev at zope.org",
     description = "A simple menu system for Zope3",
     long_description=(
         read('README.txt')
         + '\n\n' +
+        'Detailed Documentation\n'
+        '**********************'
+        + '\n\n' +
+        read('src', 'z3c', 'menu', 'simple', 'README.txt')
+        + '\n\n' +
         read('CHANGES.txt')
         ),
     license = "ZPL 2.1",
@@ -44,7 +49,7 @@
         'Operating System :: OS Independent',
         'Topic :: Internet :: WWW/HTTP',
         'Framework :: Zope3'],
-    url = 'http://cheeseshop.python.org/pypi/z3c.menu.simple',
+    url = 'http://pypi.python.org/pypi/z3c.menu.simple',
     packages = find_packages('src'),
     include_package_data = True,
     package_dir = {'':'src'},
@@ -67,4 +72,4 @@
         'zope.viewlet',
         ],
     zip_safe = False,
-)
\ No newline at end of file
+)

Modified: z3c.menu.simple/trunk/src/z3c/menu/simple/README.txt
===================================================================
--- z3c.menu.simple/trunk/src/z3c/menu/simple/README.txt	2008-01-25 03:40:29 UTC (rev 83215)
+++ z3c.menu.simple/trunk/src/z3c/menu/simple/README.txt	2008-01-25 03:52:25 UTC (rev 83216)
@@ -2,7 +2,7 @@
 Simple Menu
 ===========
 
-The z3c.menu.simple package provides a simple menu implementation which
+The ``z3c.menu.simple`` package provides a simple menu implementation which
 allows you to implement simply menus based on content providers and viewlets.
 
 Right now there are some ``SimpleMenuItem`` menu item implementations and
@@ -58,7 +58,7 @@
   >>> menu.render()
   u''
 
-But now we register a context menu item for the IMenu:
+But now we register a context menu item for the `IMenu`:
 
   >>> import zope.component
   >>> from zope.publisher.interfaces.browser import IDefaultBrowserLayer
@@ -171,8 +171,8 @@
   >>> myActions.render()
   u''
 
-After setup the TabMenu, Tab and Action viewlet managers, we start to register
-a tab menu item:
+After setup the `TabMenu`, `Tab` and `Action` viewlet managers, we start to
+register a tab menu item:
 
   >>> from z3c.menu.simple.menu import TabItem
   >>> class MyTab(TabItem):



More information about the Checkins mailing list