[Checkins] SVN: z3c.boston/trunk/ bumped the version to 1.0.2 to get Cheeseshop to use an egg without the

Kevin Gill kevin at movieextras.ie
Tue Oct 21 16:40:03 EDT 2008


Log message for revision 92456:
  bumped the version to 1.0.2 to get Cheeseshop to use an egg without the
  subversion suffix.
  
  

Changed:
  U   z3c.boston/trunk/README.txt
  U   z3c.boston/trunk/setup.cfg
  U   z3c.boston/trunk/setup.py
  U   z3c.boston/trunk/z3c/boston/README.txt
  U   z3c.boston/trunk/z3c.boston.egg-info/PKG-INFO

-=-
Modified: z3c.boston/trunk/README.txt
===================================================================
--- z3c.boston/trunk/README.txt	2008-10-21 20:38:54 UTC (rev 92455)
+++ z3c.boston/trunk/README.txt	2008-10-21 20:40:02 UTC (rev 92456)
@@ -1,5 +1,26 @@
 Introduction
 ============
 
-z3c.pagelet is a skin built on top of zope.app.boston in order to support
-pagelets, z3c.form and z3c.formjs.
+This skin is a derivative of the zope.app.boston.Boston skin, which
+supports pagelets, forms and javascript forms.
+
+Usage:
+
+
+It includes the information needed to configure itself. To add it
+to your configuration;
+
+    1.  Add it to your buildout...
+
+        eggs=...
+            z3c.boston
+
+    2.  To use the skin, you can use a traversal adapter:
+
+        http://localhost:8080/++skin++z3c_boston/index.html
+
+    3.  To configure this as your default skin, add this line to your
+        site.zcml file:
+
+        <includeOverrides package="z3c.boston" file="default_skin.zcml" />
+

Modified: z3c.boston/trunk/setup.cfg
===================================================================
--- z3c.boston/trunk/setup.cfg	2008-10-21 20:38:54 UTC (rev 92455)
+++ z3c.boston/trunk/setup.cfg	2008-10-21 20:40:02 UTC (rev 92456)
@@ -1,3 +1,3 @@
 [egg_info]
 tag_build = 
-tag_svn_revision = true
+tag_svn_revision = false

Modified: z3c.boston/trunk/setup.py
===================================================================
--- z3c.boston/trunk/setup.py	2008-10-21 20:38:54 UTC (rev 92455)
+++ z3c.boston/trunk/setup.py	2008-10-21 20:40:02 UTC (rev 92456)
@@ -1,7 +1,7 @@
 from setuptools import setup, find_packages
 import os
 
-version = '1.0.1'
+version = '1.0.2'
 
 setup(name='z3c.boston',
       version=version,
@@ -9,10 +9,16 @@
       long_description=open("README.txt").read() + "\n" +
                        open(os.path.join("docs", "HISTORY.txt")).read(),
       # Get more strings from http://www.python.org/pypi?%3Aaction=list_classifiers
-      classifiers=[
-        "Programming Language :: Python",
-        "Topic :: Software Development :: Libraries :: Python Modules",
-        ],
+      classifiers = [
+        'Development Status :: 5 - Production/Stable',
+        'Environment :: Web Environment',
+        'Intended Audience :: Developers',
+        'License :: OSI Approved :: Zope Public License',
+        'Programming Language :: Python',
+        'Natural Language :: English',
+        'Operating System :: OS Independent',
+        'Topic :: Internet :: WWW/HTTP',
+        'Framework :: Zope3'],
       keywords='zope3 pagelet form skin',
       author='Kevin Gill and the Zope Community',
       author_email='zope-dev at zope.org',

Modified: z3c.boston/trunk/z3c/boston/README.txt
===================================================================
--- z3c.boston/trunk/z3c/boston/README.txt	2008-10-21 20:38:54 UTC (rev 92455)
+++ z3c.boston/trunk/z3c/boston/README.txt	2008-10-21 20:40:02 UTC (rev 92456)
@@ -12,7 +12,7 @@
         eggs=...
             z3c.boston
 
-    2.  To use the skin, you can use a path adapter:
+    2.  To use the skin, you can use a traversal adapter:
 
         http://localhost:8080/++skin++z3c_boston/index.html
 

Modified: z3c.boston/trunk/z3c.boston.egg-info/PKG-INFO
===================================================================
--- z3c.boston/trunk/z3c.boston.egg-info/PKG-INFO	2008-10-21 20:38:54 UTC (rev 92455)
+++ z3c.boston/trunk/z3c.boston.egg-info/PKG-INFO	2008-10-21 20:40:02 UTC (rev 92456)
@@ -1,6 +1,6 @@
 Metadata-Version: 1.0
 Name: z3c.boston
-Version: 1.0.1-r92422
+Version: 1.0.2
 Summary: A version of the zope.app.boston skin which support pagelets.
 Home-page: http://pypi.python.org/pypi/z3c.boston
 Author: Kevin Gill and the Zope Community
@@ -9,9 +9,30 @@
 Description: Introduction
         ============
         
-        z3c.pagelet is a skin built on top of zope.app.boston in order to support
-        pagelets, z3c.form and z3c.formjs.
+        This skin is a derivative of the zope.app.boston.Boston skin, which
+        supports pagelets, forms and javascript forms.
         
+        Usage:
+        
+        
+        It includes the information needed to configure itself. To add it
+        to your configuration;
+        
+        1.  Add it to your buildout...
+        
+        eggs=...
+        z3c.boston
+        
+        2.  To use the skin, you can use a traversal adapter:
+        
+        http://localhost:8080/++skin++z3c_boston/index.html
+        
+        3.  To configure this as your default skin, add this line to your
+        site.zcml file:
+        
+        <includeOverrides package="z3c.boston" file="default_skin.zcml" />
+        
+        
         Changelog
         =========
         
@@ -23,5 +44,12 @@
         
 Keywords: zope3 pagelet form skin
 Platform: UNKNOWN
+Classifier: Development Status :: 5 - Production/Stable
+Classifier: Environment :: Web Environment
+Classifier: Intended Audience :: Developers
+Classifier: License :: OSI Approved :: Zope Public License
 Classifier: Programming Language :: Python
-Classifier: Topic :: Software Development :: Libraries :: Python Modules
+Classifier: Natural Language :: English
+Classifier: Operating System :: OS Independent
+Classifier: Topic :: Internet :: WWW/HTTP
+Classifier: Framework :: Zope3



More information about the Checkins mailing list