[Zope3-checkins] CVS: Zope3/src/zope/app/ftp - configure.zcml:1.4

Jim Fulton cvs-admin at zope.org
Fri Nov 21 12:12:53 EST 2003


Update of /cvs-repository/Zope3/src/zope/app/ftp
In directory cvs.zope.org:/tmp/cvs-serv32535/src/zope/app/ftp

Modified Files:
	configure.zcml 
Log Message:
Views must now be registered for request rather than presentation
types.


=== Zope3/src/zope/app/ftp/configure.zcml 1.3 => 1.4 ===
--- Zope3/src/zope/app/ftp/configure.zcml:1.3	Fri Aug 22 16:02:13 2003
+++ Zope3/src/zope/app/ftp/configure.zcml	Fri Nov 21 12:12:22 2003
@@ -3,7 +3,7 @@
 <view 
   for="zope.app.interfaces.container.IReadContainer"
   name="_traverse"
-  type="zope.publisher.interfaces.ftp.IFTPPresentation"
+  type="zope.publisher.interfaces.ftp.IFTPRequest"
   factory=".FTPView"
   permission="zope.Public"
   allowed_interface="zope.publisher.interfaces.ftp.IFTPDirectoryPublisher"
@@ -12,7 +12,7 @@
 <view 
   for="zope.app.interfaces.container.IReadContainer"
   name="type"
-  type="zope.publisher.interfaces.ftp.IFTPPresentation"
+  type="zope.publisher.interfaces.ftp.IFTPRequest"
   factory=".FTPView"
   permission="zope.Public"
   allowed_interface="zope.publisher.interfaces.ftp.IFTPDirectoryPublisher"
@@ -21,7 +21,7 @@
 <view 
   for="zope.app.interfaces.container.IReadContainer"
   name="names"
-  type="zope.publisher.interfaces.ftp.IFTPPresentation"
+  type="zope.publisher.interfaces.ftp.IFTPRequest"
   factory=".FTPView"
   permission="zope.Public"
   allowed_interface="zope.publisher.interfaces.ftp.IFTPDirectoryPublisher"
@@ -30,7 +30,7 @@
 <view 
   for="zope.app.interfaces.container.IReadContainer"
   name="ls"
-  type="zope.publisher.interfaces.ftp.IFTPPresentation"
+  type="zope.publisher.interfaces.ftp.IFTPRequest"
   factory=".FTPView"
   permission="zope.Public"
   allowed_interface="zope.publisher.interfaces.ftp.IFTPDirectoryPublisher"
@@ -39,7 +39,7 @@
 <view 
   for="zope.app.interfaces.container.IReadContainer"
   name="readfile"
-  type="zope.publisher.interfaces.ftp.IFTPPresentation"
+  type="zope.publisher.interfaces.ftp.IFTPRequest"
   factory=".FTPView"
   permission="zope.Public"
   allowed_interface="zope.publisher.interfaces.ftp.IFTPDirectoryPublisher"
@@ -48,7 +48,7 @@
 <view 
   for="zope.app.interfaces.container.IReadContainer"
   name="lsinfo"
-  type="zope.publisher.interfaces.ftp.IFTPPresentation"
+  type="zope.publisher.interfaces.ftp.IFTPRequest"
   factory=".FTPView"
   permission="zope.Public"
   allowed_interface="zope.publisher.interfaces.ftp.IFTPDirectoryPublisher"
@@ -57,7 +57,7 @@
 <view 
   for="zope.app.interfaces.container.IReadContainer"
   name="mtime"
-  type="zope.publisher.interfaces.ftp.IFTPPresentation"
+  type="zope.publisher.interfaces.ftp.IFTPRequest"
   factory=".FTPView"
   permission="zope.Public"
   allowed_interface="zope.publisher.interfaces.ftp.IFTPDirectoryPublisher"
@@ -66,7 +66,7 @@
 <view 
   for="zope.app.interfaces.container.IReadContainer"
   name="size"
-  type="zope.publisher.interfaces.ftp.IFTPPresentation"
+  type="zope.publisher.interfaces.ftp.IFTPRequest"
   factory=".FTPView"
   permission="zope.Public"
   allowed_interface="zope.publisher.interfaces.ftp.IFTPDirectoryPublisher"
@@ -75,7 +75,7 @@
 <view 
   for="zope.app.interfaces.container.IReadContainer"
   name="mkdir"
-  type="zope.publisher.interfaces.ftp.IFTPPresentation"
+  type="zope.publisher.interfaces.ftp.IFTPRequest"
   factory=".FTPView"
   permission="zope.Public"
   allowed_interface="zope.publisher.interfaces.ftp.IFTPDirectoryPublisher"
@@ -84,7 +84,7 @@
 <view 
   for="zope.app.interfaces.container.IReadContainer"
   name="remove"
-  type="zope.publisher.interfaces.ftp.IFTPPresentation"
+  type="zope.publisher.interfaces.ftp.IFTPRequest"
   factory=".FTPView"
   permission="zope.Public"
   allowed_interface="zope.publisher.interfaces.ftp.IFTPDirectoryPublisher"
@@ -93,7 +93,7 @@
 <view 
   for="zope.app.interfaces.container.IReadContainer"
   name="rmdir"
-  type="zope.publisher.interfaces.ftp.IFTPPresentation"
+  type="zope.publisher.interfaces.ftp.IFTPRequest"
   factory=".FTPView"
   permission="zope.Public"
   allowed_interface="zope.publisher.interfaces.ftp.IFTPDirectoryPublisher"
@@ -102,7 +102,7 @@
 <view 
   for="zope.app.interfaces.container.IReadContainer"
   name="rename"
-  type="zope.publisher.interfaces.ftp.IFTPPresentation"
+  type="zope.publisher.interfaces.ftp.IFTPRequest"
   factory=".FTPView"
   permission="zope.Public"
   allowed_interface="zope.publisher.interfaces.ftp.IFTPDirectoryPublisher"
@@ -111,7 +111,7 @@
 <view 
   for="zope.app.interfaces.container.IReadContainer"
   name="writefile"
-  type="zope.publisher.interfaces.ftp.IFTPPresentation"
+  type="zope.publisher.interfaces.ftp.IFTPRequest"
   factory=".FTPView"
   permission="zope.Public"
   allowed_interface="zope.publisher.interfaces.ftp.IFTPDirectoryPublisher"
@@ -120,7 +120,7 @@
 <view 
   for="zope.app.interfaces.container.IReadContainer"
   name="writable"
-  type="zope.publisher.interfaces.ftp.IFTPPresentation"
+  type="zope.publisher.interfaces.ftp.IFTPRequest"
   factory=".FTPView"
   permission="zope.Public"
   allowed_interface="zope.publisher.interfaces.ftp.IFTPDirectoryPublisher"




More information about the Zope3-Checkins mailing list