[Zope3-checkins] CVS: Zope3/lib/python/Zope/App/RDB - SQLCommand.py:1.4 configure.zcml:1.5

Albertas Agejevas alga@codeworks.lt
Wed, 4 Dec 2002 12:57:19 -0500


Update of /cvs-repository/Zope3/lib/python/Zope/App/RDB
In directory cvs.zope.org:/tmp/cvs-serv25799/lib/python/Zope/App/RDB

Modified Files:
	SQLCommand.py configure.zcml 
Log Message:
Renamed 'Connections' service to 'SQLDatabaseConnections'

=== Zope3/lib/python/Zope/App/RDB/SQLCommand.py 1.3 => 1.4 ===
--- Zope3/lib/python/Zope/App/RDB/SQLCommand.py:1.3	Thu Aug  1 14:42:16 2002
+++ Zope3/lib/python/Zope/App/RDB/SQLCommand.py	Wed Dec  4 12:57:18 2002
@@ -35,7 +35,7 @@
 
     def getConnection(self):
         'See Zope.App.RDB.ISQLCommand.ISQLCommand'
-        connection_service = getNextService(self, "Connections")
+        connection_service = getNextService(self, "SQLDatabaseConnections")
         connection = connection_service.getConnection(self.connectionName)
         return connection
 


=== Zope3/lib/python/Zope/App/RDB/configure.zcml 1.4 => 1.5 ===
--- Zope3/lib/python/Zope/App/RDB/configure.zcml:1.4	Tue Nov  5 12:34:38 2002
+++ Zope3/lib/python/Zope/App/RDB/configure.zcml	Wed Dec  4 12:57:18 2002
@@ -1,7 +1,7 @@
 <zopeConfigure
      xmlns='http://namespaces.zope.org/zope'>
 
-<serviceType id="Connections" interface=".IConnectionService." />
+<serviceType id="SQLDatabaseConnections" interface=".IConnectionService." />
 
 <content class=".ZopeConnection.">
   <require