[Zope3-checkins] CVS: Zope3/src/zope/app/interfaces/content - sql.py:1.1.2.3

Fred L. Drake, Jr. fred@zope.com
Tue, 24 Dec 2002 01:13:06 -0500


Update of /cvs-repository/Zope3/src/zope/app/interfaces/content
In directory cvs.zope.org:/tmp/cvs-serv12143

Modified Files:
      Tag: NameGeddon-branch
	sql.py 
Log Message:
- fix more references
- re-order imports
- normalize whitespace


=== Zope3/src/zope/app/interfaces/content/sql.py 1.1.2.2 => 1.1.2.3 ===
--- Zope3/src/zope/app/interfaces/content/sql.py:1.1.2.2	Mon Dec 23 15:49:37 2002
+++ Zope3/src/zope/app/interfaces/content/sql.py	Tue Dec 24 01:13:06 2002
@@ -14,13 +14,15 @@
 """
 $Id$
 """
+import zope.schema
+
 from zope.app.interfaces.rdb import ISQLCommand
-from zope.interface import Attribute
 from zope.component import getService
+from zope.interface import Attribute
 from zope.proxy.context import ContextProperty
-import zope.schema
 
-class SQLConnectionName(Zope.Schema.TextLine):
+
+class SQLConnectionName(zope.schema.TextLine):
     """SQL Connection Name"""
 
     def __allowed(self):
@@ -39,13 +41,13 @@
         description=u"The Connection Name for the connection to be used.",
         required=False)
 
-    arguments = Zope.Schema.BytesLine(
+    arguments = zope.schema.BytesLine(
         title=u"Arguments",
         description=u"A set of attributes that can be used during the DTML "
                     u"rendering process to provide dynamic data.",
         required=False)
 
-    source = Zope.Schema.Bytes(
+    source = zope.schema.Bytes(
         title=u"Source",
         description=u"The source of the page template.",
         required=True)
@@ -75,4 +77,3 @@
 
     def getConnectionName():
         """Get the connection name for this SQL Script."""
-