[Zope-Checkins] CVS: Zope3/lib/python/Zope/Publisher/VFS - metaConfigure.py:1.1.2.3 vfs-meta.zcml:1.1.2.2 vfs-meta.py:NONE
Stephan Richter
srichter@cbu.edu
Tue, 9 Apr 2002 20:23:33 -0400
Update of /cvs-repository/Zope3/lib/python/Zope/Publisher/VFS
In directory cvs.zope.org:/tmp/cvs-serv17043/lib/python/Zope/Publisher/VFS
Modified Files:
Tag: Zope3-Server-Branch
metaConfigure.py vfs-meta.zcml
Removed Files:
Tag: Zope3-Server-Branch
vfs-meta.py
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/Publisher/VFS/metaConfigure.py 1.1.2.2 => 1.1.2.3 ===
callable = setDefaultViewName,
args = (for_, IVFSPublisher, name),
- )
+ ),
Action(
discriminator = ('view', for_, name, IVFSPublisher, layer),
callable = provideView,
=== Zope3/lib/python/Zope/Publisher/VFS/vfs-meta.zcml 1.1.2.1 => 1.1.2.2 ===
+<zopeConfigure xmlns="http://namespaces.zope.org/zope">
- <!-- Zope.Publisher.VFS -->
<directives namespace="http://namespaces.zope.org/vfs">
<directive name="view" attributes="factory, name, for"
- handler="Zope.Publisher.VFS.metaConfigure.view" />
+ handler=".metaConfigure.view" />
</directives>
</zopeConfigure>
=== Removed File Zope3/lib/python/Zope/Publisher/VFS/vfs-meta.py ===