[Checkins] SVN: z3ext.resource/tags/1.2.0/ tag release

Nikolay Kim fafhrd at datacom.kz
Sun Oct 5 07:34:05 EDT 2008


Log message for revision 91776:
  tag release

Changed:
  A   z3ext.resource/tags/1.2.0/
  D   z3ext.resource/tags/1.2.0/CHANGES.txt
  A   z3ext.resource/tags/1.2.0/CHANGES.txt
  D   z3ext.resource/tags/1.2.0/setup.py
  A   z3ext.resource/tags/1.2.0/setup.py
  D   z3ext.resource/tags/1.2.0/src/z3ext/resource/configure.zcml
  A   z3ext.resource/tags/1.2.0/src/z3ext/resource/configure.zcml
  D   z3ext.resource/tags/1.2.0/src/z3ext/resource/stylesheet/
  D   z3ext.resource/tags/1.2.0/src/z3ext/resource/zrtresource/configure.zcml
  A   z3ext.resource/tags/1.2.0/src/z3ext/resource/zrtresource/configure.zcml

-=-
Copied: z3ext.resource/tags/1.2.0 (from rev 91713, z3ext.resource/trunk)

Deleted: z3ext.resource/tags/1.2.0/CHANGES.txt
===================================================================
--- z3ext.resource/trunk/CHANGES.txt	2008-10-03 16:36:33 UTC (rev 91713)
+++ z3ext.resource/tags/1.2.0/CHANGES.txt	2008-10-05 11:34:04 UTC (rev 91776)
@@ -1,16 +0,0 @@
-=======
-CHANGES
-=======
-
-1.1.0 (2008-03-28)
-------------------
-
-- Added 'stylesheet' resource type
-
-- Code moved to svn.zope.org
-
-
-1.0.0 (2007-12-14)
-------------------
-
-- Initial release.

Copied: z3ext.resource/tags/1.2.0/CHANGES.txt (from rev 91775, z3ext.resource/trunk/CHANGES.txt)
===================================================================
--- z3ext.resource/tags/1.2.0/CHANGES.txt	                        (rev 0)
+++ z3ext.resource/tags/1.2.0/CHANGES.txt	2008-10-05 11:34:04 UTC (rev 91776)
@@ -0,0 +1,24 @@
+=======
+CHANGES
+=======
+
+1.2.0 (2008-10-06)
+------------------
+
+- Update deoendencies
+
+- Removed 'stylesheet' resource type because it's useless
+
+
+1.1.0 (2008-03-28)
+------------------
+
+- Added 'stylesheet' resource type
+
+- Code moved to svn.zope.org
+
+
+1.0.0 (2007-12-14)
+------------------
+
+- Initial release.

Deleted: z3ext.resource/tags/1.2.0/setup.py
===================================================================
--- z3ext.resource/trunk/setup.py	2008-10-03 16:36:33 UTC (rev 91713)
+++ z3ext.resource/tags/1.2.0/setup.py	2008-10-05 11:34:04 UTC (rev 91776)
@@ -1,72 +0,0 @@
-##############################################################################
-#
-# Copyright (c) 2007 Zope Corporation and Contributors.
-# All Rights Reserved.
-#
-# This software is subject to the provisions of the Zope Public License,
-# Version 2.1 (ZPL).  A copy of the ZPL should accompany this distribution.
-# THIS SOFTWARE IS PROVIDED "AS IS" AND ANY AND ALL EXPRESS OR IMPLIED
-# WARRANTIES ARE DISCLAIMED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
-# WARRANTIES OF TITLE, MERCHANTABILITY, AGAINST INFRINGEMENT, AND FITNESS
-# FOR A PARTICULAR PURPOSE.
-#
-##############################################################################
-"""Setup for z3ext.resource package
-
-$Id$
-"""
-import sys, os
-from setuptools import setup, find_packages
-
-def read(*rnames):
-    return open(os.path.join(os.path.dirname(__file__), *rnames)).read()
-
-version = '1.2.0dev'
-
-
-setup(name='z3ext.resource',
-      version=version,
-      description="Extended resource",
-      long_description=(
-          'Detailed Dcoumentation\n' +
-          '======================\n'
-          + '\n\n' +
-          read('src', 'z3ext', 'resource', 'README.txt')
-          + '\n\n' +
-          read('CHANGES.txt')
-          ),
-      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'],
-      author='Nikolay Kim',
-      author_email='fafhrd91 at gmail.com',
-      url='http://z3ext.net/',
-      license='ZPL 2.1',
-      packages=find_packages('src'),
-      package_dir = {'':'src'},
-      namespace_packages=['z3ext'],
-      install_requires = ['setuptools',
-                          'zope.schema',
-                          'zope.component',
-                          'zope.interface',
-			  'zope.configuration',
-			  'zope.publisher',
-			  'zope.security',
-                          'zope.app.publisher',
-			  'z3ext.cacheheaders',
-                          ],
-      extras_require = dict(test=['zope.traversing',
-                                  'zope.app.testing',
-                                  'zope.testing',
-                                  'zope.testbrowser',
-                                  ]),
-      include_package_data = True,
-      zip_safe = False
-      )

Copied: z3ext.resource/tags/1.2.0/setup.py (from rev 91775, z3ext.resource/trunk/setup.py)
===================================================================
--- z3ext.resource/tags/1.2.0/setup.py	                        (rev 0)
+++ z3ext.resource/tags/1.2.0/setup.py	2008-10-05 11:34:04 UTC (rev 91776)
@@ -0,0 +1,73 @@
+##############################################################################
+#
+# Copyright (c) 2007 Zope Corporation and Contributors.
+# All Rights Reserved.
+#
+# This software is subject to the provisions of the Zope Public License,
+# Version 2.1 (ZPL).  A copy of the ZPL should accompany this distribution.
+# THIS SOFTWARE IS PROVIDED "AS IS" AND ANY AND ALL EXPRESS OR IMPLIED
+# WARRANTIES ARE DISCLAIMED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
+# WARRANTIES OF TITLE, MERCHANTABILITY, AGAINST INFRINGEMENT, AND FITNESS
+# FOR A PARTICULAR PURPOSE.
+#
+##############################################################################
+"""Setup for z3ext.resource package
+
+$Id$
+"""
+import sys, os
+from setuptools import setup, find_packages
+
+def read(*rnames):
+    return open(os.path.join(os.path.dirname(__file__), *rnames)).read()
+
+version = '1.2.0'
+
+
+setup(name='z3ext.resource',
+      version=version,
+      description="Extended resource",
+      long_description=(
+          'Detailed Dcoumentation\n' +
+          '======================\n'
+          + '\n\n' +
+          read('src', 'z3ext', 'resource', 'README.txt')
+          + '\n\n' +
+          read('CHANGES.txt')
+          ),
+      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'],
+      author='Nikolay Kim',
+      author_email='fafhrd91 at gmail.com',
+      url='http://z3ext.net/',
+      license='ZPL 2.1',
+      packages=find_packages('src'),
+      package_dir = {'':'src'},
+      namespace_packages=['z3ext'],
+      install_requires = ['setuptools',
+                          'zope.schema',
+                          'zope.component',
+                          'zope.interface',
+			  'zope.configuration',
+			  'zope.publisher',
+			  'zope.security',
+                          'zope.app.publisher',
+                          'z3c.zrtresource>=1.1.0',
+			  'z3ext.cacheheaders',
+                          ],
+      extras_require = dict(test=['zope.traversing',
+                                  'zope.app.testing',
+                                  'zope.testing',
+                                  'zope.testbrowser',
+                                  ]),
+      include_package_data = True,
+      zip_safe = False
+      )

Deleted: z3ext.resource/tags/1.2.0/src/z3ext/resource/configure.zcml
===================================================================
--- z3ext.resource/trunk/src/z3ext/resource/configure.zcml	2008-10-03 16:36:33 UTC (rev 91713)
+++ z3ext.resource/tags/1.2.0/src/z3ext/resource/configure.zcml	2008-10-05 11:34:04 UTC (rev 91776)
@@ -1,61 +0,0 @@
-<configure 
-   xmlns="http://namespaces.zope.org/zope"
-   xmlns:zcml="http://namespaces.zope.org/zcml">
-
-  <include package="z3ext.cacheheaders" />
-
-  <utility
-     component=".fileresource.filefactory"
-     provides=".resource.IResourceFactoryType" />
-
-  <utility
-     name="fileresource"
-     component=".fileresource.filefactory"
-     provides=".resource.IResourceFactoryType" />
-
-  <utility
-     name="imageresource"
-     component=".fileresource.imagefactory"
-     provides=".resource.IResourceFactoryType" />
-
-  <utility
-     name="gif"
-     component=".fileresource.imagefactory"
-     provides=".resource.IResourceFactoryType" />
-
-  <utility
-     name="png"
-     component=".fileresource.imagefactory"
-     provides=".resource.IResourceFactoryType" />
-
-  <utility
-     name="jpg"
-     component=".fileresource.imagefactory"
-     provides=".resource.IResourceFactoryType" />
-
-  <utility
-     name="pt"
-     component=".resource.pagetemplatefactory"
-     provides=".resource.IResourceFactoryType" />
-
-  <utility
-     name="zpt"
-     component=".resource.pagetemplatefactory"
-     provides=".resource.IResourceFactoryType" />
-
-  <utility
-     name="html"
-     component=".resource.pagetemplatefactory"
-     provides=".resource.IResourceFactoryType" />
-
-  <adapter
-     for="zope.app.publisher.browser.fileresource.FileResource"
-     factory=".fileresource.FileResourceAdapter"
-     permission="zope.Public" />
-
-  <zcml:configure zcml:condition="installed z3c.zrtresource">
-    <include package="z3ext.resource.stylesheet" />
-    <include package="z3ext.resource.zrtresource" />
-  </zcml:configure>
-
-</configure>

Copied: z3ext.resource/tags/1.2.0/src/z3ext/resource/configure.zcml (from rev 91775, z3ext.resource/trunk/src/z3ext/resource/configure.zcml)
===================================================================
--- z3ext.resource/tags/1.2.0/src/z3ext/resource/configure.zcml	                        (rev 0)
+++ z3ext.resource/tags/1.2.0/src/z3ext/resource/configure.zcml	2008-10-05 11:34:04 UTC (rev 91776)
@@ -0,0 +1,59 @@
+<configure 
+   xmlns="http://namespaces.zope.org/zope"
+   xmlns:zcml="http://namespaces.zope.org/zcml">
+
+  <include package="z3ext.cacheheaders" />
+
+  <utility
+     component=".fileresource.filefactory"
+     provides=".resource.IResourceFactoryType" />
+
+  <utility
+     name="fileresource"
+     component=".fileresource.filefactory"
+     provides=".resource.IResourceFactoryType" />
+
+  <utility
+     name="imageresource"
+     component=".fileresource.imagefactory"
+     provides=".resource.IResourceFactoryType" />
+
+  <utility
+     name="gif"
+     component=".fileresource.imagefactory"
+     provides=".resource.IResourceFactoryType" />
+
+  <utility
+     name="png"
+     component=".fileresource.imagefactory"
+     provides=".resource.IResourceFactoryType" />
+
+  <utility
+     name="jpg"
+     component=".fileresource.imagefactory"
+     provides=".resource.IResourceFactoryType" />
+
+  <utility
+     name="pt"
+     component=".resource.pagetemplatefactory"
+     provides=".resource.IResourceFactoryType" />
+
+  <utility
+     name="zpt"
+     component=".resource.pagetemplatefactory"
+     provides=".resource.IResourceFactoryType" />
+
+  <utility
+     name="html"
+     component=".resource.pagetemplatefactory"
+     provides=".resource.IResourceFactoryType" />
+
+  <adapter
+     for="zope.app.publisher.browser.fileresource.FileResource"
+     factory=".fileresource.FileResourceAdapter"
+     permission="zope.Public" />
+
+  <include package="z3ext.resource.stylesheet" />
+  <include package="z3ext.resource.zrtresource" />
+
+</configure>

Deleted: z3ext.resource/tags/1.2.0/src/z3ext/resource/zrtresource/configure.zcml
===================================================================
--- z3ext.resource/trunk/src/z3ext/resource/zrtresource/configure.zcml	2008-10-03 16:36:33 UTC (rev 91713)
+++ z3ext.resource/tags/1.2.0/src/z3ext/resource/zrtresource/configure.zcml	2008-10-05 11:34:04 UTC (rev 91776)
@@ -1,12 +0,0 @@
-<configure 
-   xmlns="http://namespaces.zope.org/zope"
-   xmlns:browser="http://namespaces.zope.org/browser">
-
-  <include package="z3c.zrtresource" file="meta.zcml" />
-
-  <utility
-     name="zrt"
-     provides="z3ext.resource.resource.IResourceFactoryType"
-     component=".zrtresource.zrtfactory" />
-
-</configure>

Copied: z3ext.resource/tags/1.2.0/src/z3ext/resource/zrtresource/configure.zcml (from rev 91775, z3ext.resource/trunk/src/z3ext/resource/zrtresource/configure.zcml)
===================================================================
--- z3ext.resource/tags/1.2.0/src/z3ext/resource/zrtresource/configure.zcml	                        (rev 0)
+++ z3ext.resource/tags/1.2.0/src/z3ext/resource/zrtresource/configure.zcml	2008-10-05 11:34:04 UTC (rev 91776)
@@ -0,0 +1,10 @@
+<configure 
+   xmlns="http://namespaces.zope.org/zope"
+   xmlns:browser="http://namespaces.zope.org/browser">
+
+  <utility
+     name="zrt"
+     provides="z3ext.resource.resource.IResourceFactoryType"
+     component=".zrtresource.zrtfactory" />
+
+</configure>



More information about the Checkins mailing list