[Checkins] SVN: zope.app.pythonpage/tags/3.4.1/ Prepare to release 3.4.1.

Marius Gedminas marius at pov.lt
Wed Jul 30 13:14:56 EDT 2008


Log message for revision 89037:
  Prepare to release 3.4.1.
  
  

Changed:
  A   zope.app.pythonpage/tags/3.4.1/
  D   zope.app.pythonpage/tags/3.4.1/CHANGES.txt
  A   zope.app.pythonpage/tags/3.4.1/CHANGES.txt
  D   zope.app.pythonpage/tags/3.4.1/src/zope/app/pythonpage/browser.py
  A   zope.app.pythonpage/tags/3.4.1/src/zope/app/pythonpage/browser.py

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

Deleted: zope.app.pythonpage/tags/3.4.1/CHANGES.txt
===================================================================
--- zope.app.pythonpage/trunk/CHANGES.txt	2008-07-30 16:39:44 UTC (rev 89029)
+++ zope.app.pythonpage/tags/3.4.1/CHANGES.txt	2008-07-30 17:14:55 UTC (rev 89037)
@@ -1,8 +0,0 @@
-=======
-CHANGES
-=======
-
-3.4.0 (2007-10-24)
-------------------
-
-- Initial release independent of the main Zope tree.

Copied: zope.app.pythonpage/tags/3.4.1/CHANGES.txt (from rev 89036, zope.app.pythonpage/trunk/CHANGES.txt)
===================================================================
--- zope.app.pythonpage/tags/3.4.1/CHANGES.txt	                        (rev 0)
+++ zope.app.pythonpage/tags/3.4.1/CHANGES.txt	2008-07-30 17:14:55 UTC (rev 89037)
@@ -0,0 +1,17 @@
+=======
+CHANGES
+=======
+
+3.5.0 (unreleased)
+------------------
+
+- Get rid of zope.app.zapi as a dependency.
+  See https://bugs.launchpad.net/zope3/+bug/219302
+
+- Fix deprecation warning in zope/app/pythonpage/browser.py: zope.app.i18n
+  was moved to zope.i18nmessageid.
+
+3.4.0 (2007-10-24)
+------------------
+
+- Initial release independent of the main Zope tree.

Deleted: zope.app.pythonpage/tags/3.4.1/src/zope/app/pythonpage/browser.py
===================================================================
--- zope.app.pythonpage/trunk/src/zope/app/pythonpage/browser.py	2008-07-30 16:39:44 UTC (rev 89029)
+++ zope.app.pythonpage/tags/3.4.1/src/zope/app/pythonpage/browser.py	2008-07-30 17:14:55 UTC (rev 89037)
@@ -1,46 +0,0 @@
-##############################################################################
-#
-# Copyright (c) 2004 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.
-#
-##############################################################################
-"""Python Page Browser Views 
-
-$Id$
-"""
-from zope.app.form.browser.editview import EditView
-from zope.app.i18n import ZopeMessageFactory as _
-
-class PythonPageEval(object):
-    """Evaluate the Python Page."""
-
-    def index(self, **kw):
-        """Call a Python Page"""
-
-        self.request.response.setHeader('content-type',
-                                        self.context.contentType)
-
-        return self.context(self.request, **kw)
-
-class PythonPageEditView(EditView):
-    """Edit View Class for Python Page."""
-
-    syntaxError = None
-
-    def update(self):
-        """Update the content with the HTML form data."""
-        try:
-            status = super(PythonPageEditView, self).update()
-        except SyntaxError, err:
-            self.syntaxError = err
-            status = _('A syntax error occurred.')
-            self.update_status = status
-
-        return status

Copied: zope.app.pythonpage/tags/3.4.1/src/zope/app/pythonpage/browser.py (from rev 89030, zope.app.pythonpage/trunk/src/zope/app/pythonpage/browser.py)
===================================================================
--- zope.app.pythonpage/tags/3.4.1/src/zope/app/pythonpage/browser.py	                        (rev 0)
+++ zope.app.pythonpage/tags/3.4.1/src/zope/app/pythonpage/browser.py	2008-07-30 17:14:55 UTC (rev 89037)
@@ -0,0 +1,46 @@
+##############################################################################
+#
+# Copyright (c) 2004 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.
+#
+##############################################################################
+"""Python Page Browser Views 
+
+$Id$
+"""
+from zope.app.form.browser.editview import EditView
+from zope.i18nmessageid import ZopeMessageFactory as _
+
+class PythonPageEval(object):
+    """Evaluate the Python Page."""
+
+    def index(self, **kw):
+        """Call a Python Page"""
+
+        self.request.response.setHeader('content-type',
+                                        self.context.contentType)
+
+        return self.context(self.request, **kw)
+
+class PythonPageEditView(EditView):
+    """Edit View Class for Python Page."""
+
+    syntaxError = None
+
+    def update(self):
+        """Update the content with the HTML form data."""
+        try:
+            status = super(PythonPageEditView, self).update()
+        except SyntaxError, err:
+            self.syntaxError = err
+            status = _('A syntax error occurred.')
+            self.update_status = status
+
+        return status



More information about the Checkins mailing list