|
[Webware-checkins] r6675 - in Webware/trunk/WebKit: . Docs
From: <updates@we...> - 2007-06-28 19:22
|
Author: chrisz
Date: Thu Jun 28 13:22:10 2007
New Revision: 6675
Modified:
Webware/trunk/WebKit/Docs/Configuration.txt
Webware/trunk/WebKit/ThreadedAppServer.py
Log:
Using the plural form "AddressFiles" for the setting to remind you that these are several files, not only one.
Modified: Webware/trunk/WebKit/Docs/Configuration.txt
==============================================================================
--- Webware/trunk/WebKit/Docs/Configuration.txt (original)
+++ Webware/trunk/WebKit/Docs/Configuration.txt Thu Jun 28 13:22:10 2007
@@ -433,10 +433,10 @@
The location is relative to the working directory (or WebKit path, if you're
not using a working directory), or you can specify an absolute path.
Default: ``appserver.pid``.
-``AddressFile``:
+``AddressFiles``:
When the AppServer starts up, the server address (IP address and port)
- of the adapter handler and other handlers will be written into a file with
- this file name, where ``%s`` will be replaced by the name of the handler.
+ of the adapter handler and other handlers will be written into files with
+ this name, ``%s`` being replaced by the name of the respective handler.
The location is relative to the working directory (or WebKit path, if you're
not using a working directory), or you can specify an absolute path.
Default: ``%s.address``.
Modified: Webware/trunk/WebKit/ThreadedAppServer.py
==============================================================================
--- Webware/trunk/WebKit/ThreadedAppServer.py (original)
+++ Webware/trunk/WebKit/ThreadedAppServer.py Thu Jun 28 13:22:10 2007
@@ -49,7 +49,7 @@
'RequestQueueSize': 0, # means twice the maximum number of threads
'RequestBufferSize': 8*1024, # 8 kBytes
'ResponseBufferSize': 8*1024, # 8 kBytes
- 'AddressFile': '%s.address', # %s stands for the protocol name
+ 'AddressFiles': '%s.address', # %s stands for the protocol name
# @@ the following setting is not yet implemented
# 'SocketType': 'inet', # inet, inet6, unix
}
@@ -571,7 +571,7 @@
def addressFileName(self, handlerClass):
"""Get the name of the text file with the server address."""
return self.serverSidePath(
- self.setting('AddressFile') % handlerClass.protocolName)
+ self.setting('AddressFiles') % handlerClass.protocolName)
class Handler:
|
| Thread | Author | Date |
|---|---|---|
| [Webware-checkins] r6675 - in Webware/trunk/WebKit: . Docs | <updates@we...> |