[Zope-Checkins] CVS: Zope3/lib/python/Zope/StartUp - configure.zcml:1.1 startup-registry.zcml:NONE

Steve Alexander steve@cat-box.net
Mon, 17 Jun 2002 15:34:13 -0400


Update of /cvs-repository/Zope3/lib/python/Zope/StartUp
In directory cvs.zope.org:/tmp/cvs-serv8164/lib/python/Zope/StartUp

Added Files:
	configure.zcml 
Removed Files:
	startup-registry.zcml 
Log Message:
changed foo-meta.zcml in tests to meta.zcml
changed zcml filenames to configure.zcml where feasible, and removed
the file attribute of include directives where I could.


=== Added File Zope3/lib/python/Zope/StartUp/configure.zcml ===
<zopeConfigure
   xmlns="http://namespaces.zope.org/zope"
   xmlns:startup="http://namespaces.zope.org/startup">


  <startup:registerRequestFactory name="BrowserRequestFactory"
    publication = 
    "Zope.App.ZopePublication.Browser.Publication.BrowserPublication"
    request = "Zope.Publisher.Browser.BrowserRequest." 
  />


  <startup:registerRequestFactory name="XMLRPCRequestFactory" 
    publication = 
    "Zope.App.ZopePublication.XMLRPC.Publication.XMLRPCPublication"
    request = "Zope.Publisher.XMLRPC.XMLRPCRequest." 
  />


  <startup:registerRequestFactory name="VFSRequestFactory"
    publication = 
    "Zope.App.ZopePublication.VFS.Publication.VFSPublication"
    request = "Zope.Publisher.VFS.VFSRequest." 
  />


  <startup:registerServerType 
    name = "Browser"
    factory = "Zope.Server.HTTP.PublisherHTTPServer."
    requestFactory="BrowserRequestFactory"
    logFactory = "Zope.Server.HTTP.CommonHitLogger."
    defaultPort="8080"
    defaultVerbose="true" />


  <startup:registerServerType 
    name = "XML-RPC"
    factory = "Zope.Server.HTTP.PublisherHTTPServer."
    requestFactory="XMLRPCRequestFactory"
    logFactory = "Zope.Server.HTTP.CommonHitLogger."
    defaultPort="8081"
    defaultVerbose="true" />


  <startup:registerServerType 
    name = "FTP"
    factory = "Zope.Server.FTP.PublisherFTPServer."
    requestFactory="VFSRequestFactory"
    logFactory = "Zope.Server.FTP.CommonFTPActivityLogger."
    defaultPort="8021"
    defaultVerbose="true" />


</zopeConfigure>

=== Removed File Zope3/lib/python/Zope/StartUp/startup-registry.zcml ===