Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Z
zodb
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Joshua
zodb
Commits
51147cc9
Commit
51147cc9
authored
Dec 19, 2003
by
Christian Robottom
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Rework overzealous check when specifying realm to Database.
parent
790480c9
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
6 deletions
+7
-6
src/ZEO/auth/base.py
src/ZEO/auth/base.py
+7
-6
No files found.
src/ZEO/auth/base.py
View file @
51147cc9
...
@@ -46,7 +46,7 @@ class Database:
...
@@ -46,7 +46,7 @@ class Database:
usernames to password hashes. The hashes are SHA hex digests
usernames to password hashes. The hashes are SHA hex digests
produced from the password string.
produced from the password string.
"""
"""
realm
=
None
def
__init__
(
self
,
filename
,
realm
=
None
):
def
__init__
(
self
,
filename
,
realm
=
None
):
"""Creates a new Database
"""Creates a new Database
...
@@ -60,11 +60,12 @@ class Database:
...
@@ -60,11 +60,12 @@ class Database:
self
.
_users
=
{}
self
.
_users
=
{}
self
.
filename
=
filename
self
.
filename
=
filename
self
.
load
()
self
.
load
()
if
self
.
realm
and
self
.
realm
!=
realm
:
if
realm
:
raise
ValueError
,
(
"Specified realm %r differs from "
if
self
.
realm
and
self
.
realm
!=
realm
:
"database realm %r"
%
(
realm
or
''
,
self
.
realm
))
raise
ValueError
,
(
"Specified realm %r differs from database "
else
:
"realm %r"
%
(
realm
or
''
,
self
.
realm
))
self
.
realm
=
realm
else
:
self
.
realm
=
realm
def
save
(
self
,
fd
=
None
):
def
save
(
self
,
fd
=
None
):
filename
=
self
.
filename
filename
=
self
.
filename
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment