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

Jim Fulton jim@zope.com
Thu, 5 Sep 2002 14:55:34 -0400


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

Modified Files:
	ZPTPage.py 
Log Message:
Moved the Schema package into the Zope package.

Also cleaned up a bunch of "from x import *".


=== Zope3/lib/python/Zope/App/OFS/Content/ZPTPage/ZPTPage.py 1.6 => 1.7 ===
--- Zope3/lib/python/Zope/App/OFS/Content/ZPTPage/ZPTPage.py:1.6	Wed Sep  4 09:44:29 2002
+++ Zope3/lib/python/Zope/App/OFS/Content/ZPTPage/ZPTPage.py	Thu Sep  5 14:55:03 2002
@@ -16,7 +16,7 @@
 """
 from Interface import Interface
 from Interface.Attribute import Attribute
-import Schema
+import Zope.Schema
 from Persistence import Persistent
 
 from Zope.ContextWrapper import ContextMethod
@@ -42,7 +42,7 @@
     def getSource():
         """Get the source of the page template."""
 
-    source = Schema.Str(
+    source = Zope.Schema.Str(
         title="Source",
         description="""The source od the page template.""",
         required=1)