[Zope3-checkins] CVS: Products3/psycopgda - configure.zcml:1.4

Sidnei da Silva sidnei@x3ng.com.br
Tue, 29 Jul 2003 14:36:19 -0400


Update of /cvs-repository/Products3/psycopgda
In directory cvs.zope.org:/tmp/cvs-serv3699

Modified Files:
	configure.zcml 
Log Message:
remove trailing dots. not acceptable anymore.

=== Products3/psycopgda/configure.zcml 1.3 => 1.4 ===
--- Products3/psycopgda/configure.zcml:1.3	Sat Jun 21 21:05:28 2003
+++ Products3/psycopgda/configure.zcml	Tue Jul 29 14:36:15 2003
@@ -1,20 +1,19 @@
 <zopeConfigure
    xmlns="http://namespaces.zope.org/zope"
-   xmlns:browser="http://namespaces.zope.org/browser"
->
+   xmlns:browser="http://namespaces.zope.org/browser">
 
   <content class=".adapter.PsycopgAdapter">
-    <factory 
+    <factory
         id="PsycopgDA"
-        permission="zope.Public" 
+        permission="zope.Public"
         />
 
-    <require permission="zope.Public" 
-        interface="zope.app.interfaces.rdb.IZopeDatabaseAdapter." 
+    <require permission="zope.Public"
+        interface="zope.app.interfaces.rdb.IZopeDatabaseAdapter"
         />
 
-    <implements 
-        interface="zope.app.interfaces.annotation.IAttributeAnnotatable." 
+    <implements
+        interface="zope.app.interfaces.annotation.IAttributeAnnotatable"
         />
 
     <implements
@@ -27,7 +26,7 @@
   <!-- Browser-specific directives -->
   <browser:view
       name="zopeproducts.psycopgda"
-      for="zope.app.interfaces.container.IAdding."
+      for="zope.app.interfaces.container.IAdding"
       class=
         "zopeproducts.psycopgda.browser.PsycopgDAAddView"
       permission="zope.Public">
@@ -38,7 +37,7 @@
 
   <!-- Menu entry for "add component" menu -->
   <browser:menuItem menu="add_component"
-      for="zope.app.interfaces.container.IAdding."
+      for="zope.app.interfaces.container.IAdding"
       title="Psycopg DA"
       description="A PostgreSQL Database Adapter using the Psycopg driver"
       action="zopeproducts.psycopgda"