[Zodb-checkins] SVN: ZODB/branches/3.7/src/ZODB/co Backport r85640
from trunk
Wichert Akkerman
wichert at wiggy.net
Sat May 3 07:44:07 EDT 2008
Log message for revision 86187:
Backport r85640 from trunk
Changed:
U ZODB/branches/3.7/src/ZODB/component.xml
U ZODB/branches/3.7/src/ZODB/config.py
-=-
Modified: ZODB/branches/3.7/src/ZODB/component.xml
===================================================================
--- ZODB/branches/3.7/src/ZODB/component.xml 2008-05-03 11:43:32 UTC (rev 86186)
+++ ZODB/branches/3.7/src/ZODB/component.xml 2008-05-03 11:44:06 UTC (rev 86187)
@@ -132,6 +132,16 @@
read_only_fallback should be true.
</description>
</key>
+ <key name="username" required="no">
+ <description>
+ The authentication username of the server.
+ </description>
+ </key>
+ <key name="password" required="no">
+ <description>
+ The authentication password of the server.
+ </description>
+ </key>
<key name="realm" required="no">
<description>
The authentication realm of the server. Some authentication
Modified: ZODB/branches/3.7/src/ZODB/config.py
===================================================================
--- ZODB/branches/3.7/src/ZODB/config.py 2008-05-03 11:43:32 UTC (rev 86186)
+++ ZODB/branches/3.7/src/ZODB/config.py 2008-05-03 11:44:06 UTC (rev 86187)
@@ -152,7 +152,10 @@
max_disconnect_poll=self.config.max_disconnect_poll,
wait=self.config.wait,
read_only=self.config.read_only,
- read_only_fallback=self.config.read_only_fallback)
+ read_only_fallback=self.config.read_only_fallback,
+ username=self.config.username,
+ password=self.config.password,
+ realm=self.config.realm)
class BDBStorage(BaseConfig):
More information about the Zodb-checkins
mailing list