[Zope-Checkins] CVS: Zope3/lib/python/Zope/App/OFS/Folder/Views/VFS - vfs.zcml:1.1.2.2

Stephan Richter srichter@cbu.edu
Tue, 9 Apr 2002 20:23:32 -0400


Update of /cvs-repository/Zope3/lib/python/Zope/App/OFS/Folder/Views/VFS
In directory cvs.zope.org:/tmp/cvs-serv17043/lib/python/Zope/App/OFS/Folder/Views/VFS

Modified Files:
      Tag: Zope3-Server-Branch
	vfs.zcml 
Log Message:
This check-in makes the Publisher FTP Server finally work. Yipee!
Everything worked out much better than I hope and my protyping turned out
to be an overkill. Now it is time to clean up some things and complete the
code. Things that need to be done:

1. Finish File view, so that read and write can be supported.
2. Implement security. Right now it allows any username/password pair.
3. Fix bugs and remove debugging statements.
4. Write tests.


=== Zope3/lib/python/Zope/App/OFS/Folder/Views/VFS/vfs.zcml 1.1.2.1 => 1.1.2.2 ===
-   xmlns='http://namespaces.zope.org/zope'
-   xmlns:security='http://namespaces.zope.org/security'
-   xmlns:vfs='http://namespaces.zope.org/vfs'
+   xmlns="http://namespaces.zope.org/zope"
+   xmlns:security="http://namespaces.zope.org/security"
+   xmlns:vfs="http://namespaces.zope.org/vfs"
 >
 
-
   <vfs:view name="vfs"
     for="Zope.App.OFS.Container.IContainer."
-    factory="Zope.App.OFS.Container.Views.VFS.VFSDirectoryPublisher." />
+    factory="Zope.App.OFS.Container.Views.VFS.VFSContainerView." />
 
   <security:protectClass 
-    name="Zope.App.OFS.Container.Views.VFS.VFSDirectoryPublisher."
+    name="Zope.App.OFS.Container.Views.VFS.VFSContainerView."
     permission_id="Zope.ManageContent" 
-    interace="Zope.Publisher.VFS.IVFSDirectoryPublisher" />
+    interface="Zope.Publisher.VFS.IVFSDirectoryPublisher." />
 
 </zopeConfigure>