[Zope-Checkins] CVS: Zope3 - startup.zcml:1.1.2.3.4.3

Stephan Richter srichter@cbu.edu
Thu, 11 Apr 2002 00:32:38 -0400


Update of /cvs-repository/Zope3
In directory cvs.zope.org:/tmp/cvs-serv25892

Modified Files:
      Tag: Zope3-Server-Branch
	startup.zcml 
Log Message:
Wee, quiet a bit of changes, but they fix and finnish the stuff Shane did
earlier today.

- Removed a lot of old files and moved some to more appropriate places. The 
  removal of the Suthentication directory is probably the biggest one. I
  also deleted all the other FileSystem types, like MSDOS and Unix, since 
  the FielSystem is not returning formatted lists anymore. Yipee!

- Fixed PublisherFTPServer, so it works with Shane's new Credentials 
  interfaces. Everything should be working fine again.

- Fixed the POP3 and SMTP code to work with the new model. It all works 
  really well. I hope that Gerson Kurz will take over this development 
  soon. I also contacted authors of other server protocols, and they might
  join. Rich Salz is already writing a method for ZSI, so that we can 
  insert SOAP in the next days.

- Made most tests run again and updated them. I still have one error. I know
  why it is caused, but I do not know how to correct. I know it is a test 
  environment problem though, not a code one.



=== Zope3/startup.zcml 1.1.2.3.4.2 => 1.1.2.3.4.3 ===
-   xmlns="http://namespaces.zope.org/zope"
-   xmlns:startup="http://namespaces.zope.org/startup">
-
-  <!-- Define a specific site. The name of the site is used for server
-       messages only. The number of threads specifies the number of
-       threads the server should maximally use. -->
-
-  <startup:defineSite name="Zope 3 Default"
-                      threads="4">
-
-    <!-- You can choose between several storages.
-
-         At the moment only two storages are supported:
-             FileStorage - Saves data in a specified file
-             MappingStorage - Saves data in a dictionary. No saving. -->
-
-    <startup:useFileStorage file = "Data.fs" />
-    <!--startup:useMappingStorage /-->
-
-
-    <!-- Setup the log file.
-
-         There are two special file names:
-             STDERR - sends output to standard error
-             STDOUT - sends output to standard output -->
-
-    <startup:useLog file="STDERR" />
-
-
-    <!-- Now define the servers you would like to start. All you need
-    to specify is the server type. Both, the port and verbose option,
-    are optional.
-
-    The following types are currently available: 
-        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
-
-    The 'port' option specifies the port the server should run on of course.
-
-    The 'verbose' option specifies whether any logs should be written. If
-    set to false, nothing is reported. -->
-
-    <!--startup:addServer type = "Browser" port = "8080" /-->
-    <!--startup:addServer type = "XML-RPC" port = "8081" verbose="true"/-->
-    <startup:addServer type = "FTP" port = "8021" />
-
-
-  </startup:defineSite>
-
-
-</zopeConfigure>
+<zopeConfigure
+   xmlns="http://namespaces.zope.org/zope"
+   xmlns:startup="http://namespaces.zope.org/startup">
+
+  <!-- Define a specific site. The name of the site is used for server
+       messages only. The number of threads specifies the number of
+       threads the server should maximally use. -->
+
+  <startup:defineSite name="Zope 3 Default"
+                      threads="4">
+
+    <!-- You can choose between several storages.
+
+         At the moment only two storages are supported:
+             FileStorage - Saves data in a specified file
+             MappingStorage - Saves data in a dictionary. No saving. -->
+
+    <startup:useFileStorage file = "Data.fs" />
+    <!--startup:useMappingStorage /-->
+
+
+    <!-- Setup the log file.
+
+         There are two special file names:
+             STDERR - sends output to standard error
+             STDOUT - sends output to standard output -->
+
+    <startup:useLog file="STDERR" />
+
+
+    <!-- Now define the servers you would like to start. All you need
+    to specify is the server type. Both, the port and verbose option,
+    are optional.
+
+    The following types are currently available: 
+        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
+
+    The 'port' option specifies the port the server should run on of course.
+
+    The 'verbose' option specifies whether any logs should be written. If
+    set to false, nothing is reported. -->
+
+    <startup:addServer type = "Browser" port = "8080" />
+    <startup:addServer type = "XML-RPC" port = "8081" verbose="true" />
+    <startup:addServer type = "FTP" port = "8021" />
+
+
+  </startup:defineSite>
+
+
+</zopeConfigure>