[Checkins] SVN: z3c.language.negotiator/trunk/ Fixed up meta data.

Stephan Richter srichter at cosmos.phy.tufts.edu
Fri Jan 25 00:31:44 EST 2008


Log message for revision 83223:
  Fixed up meta data.
  

Changed:
  U   z3c.language.negotiator/trunk/CHANGES.txt
  U   z3c.language.negotiator/trunk/setup.py
  U   z3c.language.negotiator/trunk/src/z3c/language/negotiator/README.txt

-=-
Modified: z3c.language.negotiator/trunk/CHANGES.txt
===================================================================
--- z3c.language.negotiator/trunk/CHANGES.txt	2008-01-25 04:21:59 UTC (rev 83222)
+++ z3c.language.negotiator/trunk/CHANGES.txt	2008-01-25 05:31:43 UTC (rev 83223)
@@ -2,19 +2,20 @@
 CHANGES
 =======
 
-1.0.1dev (unreleased)
----------------------
+1.0.1 (2008-01-24)
+------------------
 
-- ...
+- Bug: Corrected meta data.
 
 
-1.0.0 (2007-01-21)
+1.0.0 (2008-01-21)
 ------------------
 
-- Removed the two vocabulary AvailableTranslationDomainLanguagesVocabulary
-  and AvailableTranslationDomainLanguagesVocabularyForZ3C which depend on the 
-  zope.app.i18n implementation. Note this vocabulary are not persistent and
-  if you will need it, let's implement this in another package. This allow us
-  to skip all dependencies to zope.app.i18n
+- Restructure: Removed the two vocabularies
+  ``AvailableTranslationDomainLanguagesVocabulary`` and
+  ``AvailableTranslationDomainLanguagesVocabularyForZ3C`` which depend on the
+  ``zope.app.i18n`` implementation. Note these vocabularies are not persistent
+  and if you will need it, let's implement this in another package. This
+  allows us to skip all dependencies to ``zope.app.i18n``.
 
-- Moved zope.language.negotiator to it's namespace package
+- Restructure: Moved ``zope.language.negotiator`` to it's namespace package.

Modified: z3c.language.negotiator/trunk/setup.py
===================================================================
--- z3c.language.negotiator/trunk/setup.py	2008-01-25 04:21:59 UTC (rev 83222)
+++ z3c.language.negotiator/trunk/setup.py	2008-01-25 05:31:43 UTC (rev 83223)
@@ -23,13 +23,18 @@
 
 setup (
     name='z3c.language.negotiator',
-    version='1.0.1dev',
+    version='1.0.1',
     author = "Roger Ineichen and the Zope Community",
-    author_email = "zope3-dev at zope.org",
+    author_email = "zope-dev at zope.org",
     description = "Zope3 i18n language negotiator.",
     long_description=(
         read('README.txt')
         + '\n\n' +
+        'Detailed Documentation\n'
+        '**********************'
+        + '\n\n' +
+        read('src', 'z3c', 'language', 'negotiator', '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.language.negotiator',
+    url = 'http://pypi.python.org/pypi/z3c.language.negotiator',
     packages = find_packages('src'),
     include_package_data = True,
     package_dir = {'':'src'},
@@ -72,6 +77,5 @@
         'zope.schema',
         'zope.session',
         ],
-    dependency_links = ['http://download.zope.org/distribution'],
     zip_safe = False,
     )

Modified: z3c.language.negotiator/trunk/src/z3c/language/negotiator/README.txt
===================================================================
--- z3c.language.negotiator/trunk/src/z3c/language/negotiator/README.txt	2008-01-25 04:21:59 UTC (rev 83222)
+++ z3c.language.negotiator/trunk/src/z3c/language/negotiator/README.txt	2008-01-25 05:31:43 UTC (rev 83223)
@@ -2,10 +2,10 @@
 Negotiator
 ==========
 
-This package provides a local implementation of a INegotiator defined in 
-zope.i18n.interfaces. The negotiator implementation offers some additional
-usefull attributes which are explained later. This INegotiator is also used
-in the z3c.language.switch package.
+This package provides a local implementation of the ``INegotiator`` interface
+defined in ``zope.i18n.interfaces``. The negotiator implementation offers some
+additional usefull attributes which are explained later. This ``INegotiator``
+is also used in the ``z3c.language.switch`` package.
 
 Let's setup a negotiator:
 
@@ -19,7 +19,7 @@
 
   >>> INegotiator.providedBy(negotiator)
   True
-  >>> 
+  >>>
   >>> INegotiatorManager.providedBy(negotiator)
   True
   >>>
@@ -91,4 +91,4 @@
   >>> vocab._terms[1].title
   u'fr'
 
-See tests.py for more tests
+See ``tests.py`` for more tests.



More information about the Checkins mailing list