[Checkins] SVN: zope.app.pagetemplate/tags/3.4.1/ Release zope.app.pagetemplate 3.4.1.

Marius Gedminas marius at pov.lt
Wed Jul 30 13:32:31 EDT 2008


Log message for revision 89042:
  Release zope.app.pagetemplate 3.4.1.
  
  

Changed:
  A   zope.app.pagetemplate/tags/3.4.1/
  D   zope.app.pagetemplate/tags/3.4.1/CHANGES.txt
  A   zope.app.pagetemplate/tags/3.4.1/CHANGES.txt
  D   zope.app.pagetemplate/tags/3.4.1/setup.py
  A   zope.app.pagetemplate/tags/3.4.1/setup.py
  D   zope.app.pagetemplate/tags/3.4.1/src/zope/app/pagetemplate/ftesting.zcml
  A   zope.app.pagetemplate/tags/3.4.1/src/zope/app/pagetemplate/ftesting.zcml

-=-
Copied: zope.app.pagetemplate/tags/3.4.1 (from rev 89028, zope.app.pagetemplate/trunk)

Deleted: zope.app.pagetemplate/tags/3.4.1/CHANGES.txt
===================================================================
--- zope.app.pagetemplate/trunk/CHANGES.txt	2008-07-30 16:35:30 UTC (rev 89028)
+++ zope.app.pagetemplate/tags/3.4.1/CHANGES.txt	2008-07-30 17:32:30 UTC (rev 89042)
@@ -1,11 +0,0 @@
-Changes
-=======
-
-3.4.0 (2007-09-28)
-------------------
-
-* Initial release as standalone package.
-
-* Dependency on zope.app.interpreter moved to an extra
-  [inline-evaluation].  It is only needed by zope.app.pythonpage,
-  which is an oddity.

Copied: zope.app.pagetemplate/tags/3.4.1/CHANGES.txt (from rev 89041, zope.app.pagetemplate/trunk/CHANGES.txt)
===================================================================
--- zope.app.pagetemplate/tags/3.4.1/CHANGES.txt	                        (rev 0)
+++ zope.app.pagetemplate/tags/3.4.1/CHANGES.txt	2008-07-30 17:32:30 UTC (rev 89042)
@@ -0,0 +1,20 @@
+Changes
+=======
+
+3.4.1 (2008-07-30)
+------------------
+
+* Substitute zope.app.zapi by direct calls to its wrapped apis.
+  See http://launchpad.net/bugs/219302
+
+* Fix deprecation warning in ftesting.zcml: ZopeSecurityPolicy now lives in
+  zope.securitypolicy.
+
+3.4.0 (2007-09-28)
+------------------
+
+* Initial release as standalone package.
+
+* Dependency on zope.app.interpreter moved to an extra
+  [inline-evaluation].  It is only needed by zope.app.pythonpage,
+  which is an oddity.

Deleted: zope.app.pagetemplate/tags/3.4.1/setup.py
===================================================================
--- zope.app.pagetemplate/trunk/setup.py	2008-07-30 16:35:30 UTC (rev 89028)
+++ zope.app.pagetemplate/tags/3.4.1/setup.py	2008-07-30 17:32:30 UTC (rev 89042)
@@ -1,50 +0,0 @@
-from setuptools import setup, find_packages
-
-long_description = (open('README.txt').read() +
-                    '\n\n' +
-                    open('CHANGES.txt').read())
-
-setup(name='zope.app.pagetemplate',
-      version = '3.4.0',
-      url='http://pypi.python.org/pypi/zope.app.pagetemplate',
-      author='Zope Corporation and Contributors',
-      author_email='zope3-dev at zope.org',
-      description='PageTemplate integration for Zope 3',
-      long_description=long_description,
-      classifiers=['Environment :: Web Environment',
-                   'Intended Audience :: Developers',
-                   'License :: OSI Approved :: Zope Public License',
-                   'Programming Language :: Python',
-                   'Framework :: Zope3',
-                   ],
-
-      packages=find_packages('src'),
-      package_dir={'': 'src'},
-      namespace_packages=['zope', 'zope.app'],
-      include_package_data=True,
-      install_requires=[
-          'setuptools',
-          'zope.component [hook]',
-          'zope.configuration',
-          'zope.dublincore',
-          'zope.i18n',
-          'zope.i18nmessageid',
-          'zope.interface',
-          'zope.pagetemplate',
-          'zope.publisher',
-          'zope.schema',
-          'zope.security [untrustedpython]',
-          'zope.size',
-          'zope.tales',
-          'zope.traversing',
-          ],
-      extras_require={
-          "inline-evaluation": ['zope.app.interpreter'],
-          # The tests appear not to need zope.app.interpreter; there
-          # should be tests for that, though.  :-(
-          "test": ['zope.app.testing',
-                   'zope.app.securitypolicy',
-                   'zope.app.zcmlfiles'],
-          },
-      zip_safe=False,
-      )

Copied: zope.app.pagetemplate/tags/3.4.1/setup.py (from rev 89041, zope.app.pagetemplate/trunk/setup.py)
===================================================================
--- zope.app.pagetemplate/tags/3.4.1/setup.py	                        (rev 0)
+++ zope.app.pagetemplate/tags/3.4.1/setup.py	2008-07-30 17:32:30 UTC (rev 89042)
@@ -0,0 +1,50 @@
+from setuptools import setup, find_packages
+
+long_description = (open('README.txt').read() +
+                    '\n\n' +
+                    open('CHANGES.txt').read())
+
+setup(name='zope.app.pagetemplate',
+      version = '3.4.1',
+      url='http://pypi.python.org/pypi/zope.app.pagetemplate',
+      author='Zope Corporation and Contributors',
+      author_email='zope3-dev at zope.org',
+      description='PageTemplate integration for Zope 3',
+      long_description=long_description,
+      classifiers=['Environment :: Web Environment',
+                   'Intended Audience :: Developers',
+                   'License :: OSI Approved :: Zope Public License',
+                   'Programming Language :: Python',
+                   'Framework :: Zope3',
+                   ],
+
+      packages=find_packages('src'),
+      package_dir={'': 'src'},
+      namespace_packages=['zope', 'zope.app'],
+      include_package_data=True,
+      install_requires=[
+          'setuptools',
+          'zope.component [hook]',
+          'zope.configuration',
+          'zope.dublincore',
+          'zope.i18n',
+          'zope.i18nmessageid',
+          'zope.interface',
+          'zope.pagetemplate',
+          'zope.publisher',
+          'zope.schema',
+          'zope.security [untrustedpython]',
+          'zope.size',
+          'zope.tales',
+          'zope.traversing',
+          ],
+      extras_require={
+          "inline-evaluation": ['zope.app.interpreter'],
+          # The tests appear not to need zope.app.interpreter; there
+          # should be tests for that, though.  :-(
+          "test": ['zope.app.testing',
+                   'zope.app.securitypolicy',
+                   'zope.app.zcmlfiles'],
+          },
+      zip_safe=False,
+      )

Deleted: zope.app.pagetemplate/tags/3.4.1/src/zope/app/pagetemplate/ftesting.zcml
===================================================================
--- zope.app.pagetemplate/trunk/src/zope/app/pagetemplate/ftesting.zcml	2008-07-30 16:35:30 UTC (rev 89028)
+++ zope.app.pagetemplate/tags/3.4.1/src/zope/app/pagetemplate/ftesting.zcml	2008-07-30 17:32:30 UTC (rev 89042)
@@ -1,40 +0,0 @@
-<configure
-   xmlns="http://namespaces.zope.org/zope"
-   i18n_domain="zope"
-   package="zope.app.pagetemplate"
-   >
-
-  <!-- This file is the equivalent of site.zcml and it is -->
-  <!-- used for functional testing setup -->
-
-  <include package="zope.app.securitypolicy" file="meta.zcml" />
-
-  <include package="zope.app.zcmlfiles" />
-  <include package="zope.app.zcmlfiles" file="ftesting.zcml" />
-  <include package="zope.app.authentication" />
-  <include package="zope.app.securitypolicy" />
-
-  <securityPolicy
-    component="zope.app.securitypolicy.zopepolicy.ZopeSecurityPolicy" />
-
-  <role id="zope.Manager" title="Site Manager" />
-
-  <grantAll role="zope.Manager" />
-
-  <!-- Principal that tests generally run as -->
-  <principal
-      id="zope.mgr"
-      title="Manager"
-      login="mgr"
-      password="mgrpw" />
-
-  <!-- Bootstrap principal used to make local grant to the principal above -->
-  <principal
-      id="zope.globalmgr"
-      title="Manager"
-      login="globalmgr"
-      password="globalmgrpw" />
-
-  <grant role="zope.Manager" principal="zope.globalmgr" />
-
-</configure>

Copied: zope.app.pagetemplate/tags/3.4.1/src/zope/app/pagetemplate/ftesting.zcml (from rev 89029, zope.app.pagetemplate/trunk/src/zope/app/pagetemplate/ftesting.zcml)
===================================================================
--- zope.app.pagetemplate/tags/3.4.1/src/zope/app/pagetemplate/ftesting.zcml	                        (rev 0)
+++ zope.app.pagetemplate/tags/3.4.1/src/zope/app/pagetemplate/ftesting.zcml	2008-07-30 17:32:30 UTC (rev 89042)
@@ -0,0 +1,40 @@
+<configure
+   xmlns="http://namespaces.zope.org/zope"
+   i18n_domain="zope"
+   package="zope.app.pagetemplate"
+   >
+
+  <!-- This file is the equivalent of site.zcml and it is -->
+  <!-- used for functional testing setup -->
+
+  <include package="zope.app.securitypolicy" file="meta.zcml" />
+
+  <include package="zope.app.zcmlfiles" />
+  <include package="zope.app.zcmlfiles" file="ftesting.zcml" />
+  <include package="zope.app.authentication" />
+  <include package="zope.app.securitypolicy" />
+
+  <securityPolicy
+    component="zope.securitypolicy.zopepolicy.ZopeSecurityPolicy" />
+
+  <role id="zope.Manager" title="Site Manager" />
+
+  <grantAll role="zope.Manager" />
+
+  <!-- Principal that tests generally run as -->
+  <principal
+      id="zope.mgr"
+      title="Manager"
+      login="mgr"
+      password="mgrpw" />
+
+  <!-- Bootstrap principal used to make local grant to the principal above -->
+  <principal
+      id="zope.globalmgr"
+      title="Manager"
+      login="globalmgr"
+      password="globalmgrpw" />
+
+  <grant role="zope.Manager" principal="zope.globalmgr" />
+
+</configure>



More information about the Checkins mailing list