[Zope3-checkins] CVS: Products3/PsycopgDA/Views/Browser - PsycopgDAAddView.py:1.2
Marius Gedminas
mgedmin@codeworks.lt
Thu, 12 Dec 2002 06:34:14 -0500
Update of /cvs-repository/Products3/PsycopgDA/Views/Browser
In directory cvs.zope.org:/tmp/cvs-serv22238/PsycopgDA/Views/Browser
Modified Files:
PsycopgDAAddView.py
Log Message:
Updated to work with the new service configuration code
=== Products3/PsycopgDA/Views/Browser/PsycopgDAAddView.py 1.1 => 1.2 ===
--- Products3/PsycopgDA/Views/Browser/PsycopgDAAddView.py:1.1 Wed Nov 13 05:13:22 2002
+++ Products3/PsycopgDA/Views/Browser/PsycopgDAAddView.py Thu Dec 12 06:34:14 2002
@@ -2,26 +2,25 @@
#
# Copyright (c) 2002 Zope Corporation and Contributors.
# All Rights Reserved.
-#
+#
# This software is subject to the provisions of the Zope Public License,
# Version 2.0 (ZPL). A copy of the ZPL should accompany this distribution.
# THIS SOFTWARE IS PROVIDED "AS IS" AND ANY AND ALL EXPRESS OR IMPLIED
# WARRANTIES ARE DISCLAIMED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
# WARRANTIES OF TITLE, MERCHANTABILITY, AGAINST INFRINGEMENT, AND FITNESS
# FOR A PARTICULAR PURPOSE.
-#
+#
##############################################################################
"""
$Id$
"""
-from Zope.App.OFS.Services.ConnectionService.Views.Browser.AdapterAdd import \
- AdapterAdd
+from Zope.App.RDB.Browser.AdapterAdd import AdapterAdd
from Zope.App.OFS.Container.IAdding import IAdding
class PsycopgDAAddView(AdapterAdd):
"""Provide a user interface for adding a Psycopg DA"""
-
+
# This needs to be overridden by the actual implementation
_adapter_factory_id = "PsycopgDA"