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

Jim Fulton cvs-admin at zope.org
Sun Nov 9 11:08:49 EST 2003


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

Modified Files:
      Tag: adaptergeddon-branch
	configure.zcml 
Log Message:
Created a global presentation service that replaces the 
global view, resource, and skin services.

Now look up presentation components by adapting from a request type,
rather than adapting to a presentation type.





=== Zope3/src/zope/app/ftp/configure.zcml 1.3 => 1.3.10.1 ===
--- Zope3/src/zope/app/ftp/configure.zcml:1.3	Fri Aug 22 16:02:13 2003
+++ Zope3/src/zope/app/ftp/configure.zcml	Sun Nov  9 11:08:18 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