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

Jim Fulton jim@zope.com
Fri, 7 Feb 2003 11:00:06 -0500


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

Modified Files:
	configure.zcml 
Log Message:
Implemented HTTP PUT. Do do this, I had to:

- Implement working HTTP publication, request, response

- Change the server setup so that rather than having a Browser
  server and an XML-RPC server, there is an HTTP server that 
  uses:

  o Browser request, response, and publication for browser (GET, POST, 
    and HEAD) requests,

  o XMLRPC request, response, and publication for xml-rpc (POST 
    w content-type=='text/xml') requests,

  o HTTP request, response, and publication for all other HTTP requests.

  XML-RPC now runs on the same port, 8080, as browser requests.

- Implemented HEAD.

- Implemented some simple PUT views that use the
  file-system-reprentation adapter framework. (This is the replacement
  for VFS that is also used by FTP and may be used as part of
  file-system synchronization.) 
  



=== Zope3/src/zope/app/configure.zcml 1.9 => 1.10 ===
--- Zope3/src/zope/app/configure.zcml:1.9	Mon Feb  3 13:08:46 2003
+++ Zope3/src/zope/app/configure.zcml	Fri Feb  7 10:59:35 2003
@@ -80,7 +80,6 @@
   <include package="zope.app.publisher" />
   <include package="zope.app.rdb" />
   <include package="zope.app.traversing" />
-  <include package="zope.app.publication" />
   <include package="zope.app.form" />
   <include package="zope.app.cache" />
   <include package="zope.app.dublincore" />
@@ -93,5 +92,7 @@
 
   <include package="zope.app.browser" />
   <include package="zope.app.ftp" />
+  <include package="zope.app.xmlrpc" />
+  <include package="zope.app.http" />
 
 </zopeConfigure>