[Zope3-checkins] CVS: Zope3/lib/python/Zope/App/OFS/Content/DTMLPage - DTMLPage.py:1.5
Jim Fulton
jim@zope.com
Thu, 5 Sep 2002 14:55:33 -0400
Update of /cvs-repository/Zope3/lib/python/Zope/App/OFS/Content/DTMLPage
In directory cvs.zope.org:/tmp/cvs-serv21741/lib/python/Zope/App/OFS/Content/DTMLPage
Modified Files:
DTMLPage.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/DTMLPage/DTMLPage.py 1.4 => 1.5 ===
--- Zope3/lib/python/Zope/App/OFS/Content/DTMLPage/DTMLPage.py:1.4 Wed Sep 4 09:44:24 2002
+++ Zope3/lib/python/Zope/App/OFS/Content/DTMLPage/DTMLPage.py Thu Sep 5 14:55:02 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
@@ -38,7 +38,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)