[Zope-Checkins] CVS: Zope3 - startup.zcml:1.1.2.3.4.1
Stephan Richter
srichter@cbu.edu
Thu, 4 Apr 2002 06:45:20 -0500
Update of /cvs-repository/Zope3
In directory cvs.zope.org:/tmp/cvs-serv21650
Modified Files:
Tag: Zope3-Server-Branch
startup.zcml
Log Message:
Worked some more on FTP, especially in regards with the Publisher.
- Finally we can get rid of the medusa base. I think I have extracted all
of the interesting code.
- Started on a PublisherFileSystem. A few methods might work, but most of
the FS methods are not hooked up yet.
- Started writing VFS Publisher hooks.
- Added the FTPServer to the startup registry. It comes up, but do not
expect it to work, since no views have been written for VFS yet.
=== Zope3/startup.zcml 1.1.2.3 => 1.1.2.3.4.1 ===
Browser - A standard HTML/XUL server
XML-RPC - An XML-RPC server, for calling objects remotely
+ FTP - A server to access the ZODB via the FTP protocol
Soon:
SOAP - An SOAP server for Zope based on ZSI
- FTP - A server to access the ZODB via the FTP protocol
The 'port' option specifies the port the server should run on of course.
@@ -46,6 +46,7 @@
<startup:addServer type = "Browser" port = "8080" />
<startup:addServer type = "XML-RPC" port = "8081" verbose="true"/>
+ <startup:addServer type = "FTP" port = "8021" />
</startup:defineSite>