[Zope3-checkins] SVN: Zope3/trunk/src/ZConfig/datatypes.py Removed special handling of default server on Windows. Added XXX in the hope someone will take a closer look at this. Corresponds to issue 383.

Garrett Smith garrett at mojave-corp.com
Tue Mar 15 22:38:37 EST 2005


Log message for revision 29484:
  Removed special handling of default server on Windows. Added XXX in the hope someone will take a closer look at this. Corresponds to issue 383.

Changed:
  U   Zope3/trunk/src/ZConfig/datatypes.py

-=-
Modified: Zope3/trunk/src/ZConfig/datatypes.py
===================================================================
--- Zope3/trunk/src/ZConfig/datatypes.py	2005-03-15 23:41:59 UTC (rev 29483)
+++ Zope3/trunk/src/ZConfig/datatypes.py	2005-03-16 03:38:35 UTC (rev 29484)
@@ -169,7 +169,13 @@
 
 
 if sys.platform[:3] == "win":
-    DEFAULT_HOST = "localhost"
+    # XXX I removed the setting of DEFAULT_HOST under Windows to get Zope to
+    # accept connections from other machines when the host name is omitted
+    # from the server address (in zope.conf). This may cause other problems,
+    # as I don't know why the special handling is there in the first place.
+    # See collector issue 383 for more info.
+    ##DEFAULT_HOST = "localhost"
+    DEFAULT_HOST = ""
 else:
     DEFAULT_HOST = ""
 



More information about the Zope3-Checkins mailing list