[Zope3-checkins] CVS: Zope3/lib/python/Zope/App/OFS/Content/ZPTPage - ZPTPage.py:1.9

Jim Fulton jim@zope.com
Wed, 11 Sep 2002 18:08:36 -0400


Update of /cvs-repository/Zope3/lib/python/Zope/App/OFS/Content/ZPTPage
In directory cvs.zope.org:/tmp/cvs-serv9283/lib/python/Zope/App/OFS/Content/ZPTPage

Modified Files:
	ZPTPage.py 
Log Message:
Updated to work with new schemas.
In particular, changed field titles and desciptions to unicode.


=== Zope3/lib/python/Zope/App/OFS/Content/ZPTPage/ZPTPage.py 1.8 => 1.9 ===
--- Zope3/lib/python/Zope/App/OFS/Content/ZPTPage/ZPTPage.py:1.8	Sat Sep  7 12:18:50 2002
+++ Zope3/lib/python/Zope/App/OFS/Content/ZPTPage/ZPTPage.py	Wed Sep 11 18:08:35 2002
@@ -43,8 +43,8 @@
         """Get the source of the page template."""
 
     source = Zope.Schema.Text(
-        title="Source",
-        description="""The source of the page template.""",
+        title=u"Source",
+        description=u"""The source of the page template.""",
         required=1)