Commit 10e35640 authored by Wichert Akkerman's avatar Wichert Akkerman

Complete authentication configuration through XML on the client side. Server...

Complete authentication configuration through XML on the client side. Server part was implemented way back in 2003.
parent 45446fee
......@@ -146,6 +146,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
......
......@@ -162,7 +162,10 @@ class ZEOClient(BaseConfig):
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):
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment