diff options
author | Jelmer Vernooij <jelmer@samba.org> | 2010-04-04 02:01:47 +0200 |
---|---|---|
committer | Jelmer Vernooij <jelmer@samba.org> | 2010-04-06 13:12:43 +0200 |
commit | e9c3f2ef13f62eb583bd7c5dfb6b94a0a8a0fc4f (patch) | |
tree | 98fa5618f4983c8ffb2ec39a585c305ce1af70fe /source4/scripting/python/samba | |
parent | ae9761349904ac9c4c2745018903d8c2fcc2abf1 (diff) | |
download | samba-e9c3f2ef13f62eb583bd7c5dfb6b94a0a8a0fc4f.tar.gz samba-e9c3f2ef13f62eb583bd7c5dfb6b94a0a8a0fc4f.tar.xz samba-e9c3f2ef13f62eb583bd7c5dfb6b94a0a8a0fc4f.zip |
s4-python: Move ldb_set_utf8_casefold to pyldb-samba.
Diffstat (limited to 'source4/scripting/python/samba')
-rw-r--r-- | source4/scripting/python/samba/__init__.py | 14 |
1 files changed, 3 insertions, 11 deletions
diff --git a/source4/scripting/python/samba/__init__.py b/source4/scripting/python/samba/__init__.py index 64ad6470f2..796654bbb7 100644 --- a/source4/scripting/python/samba/__init__.py +++ b/source4/scripting/python/samba/__init__.py @@ -44,9 +44,9 @@ else: import ldb import dsdb import glue -from samba._ldb import Ldb +from samba._ldb import Ldb as _Ldb -class Ldb(Ldb): +class Ldb(_Ldb): """Simple Samba-specific LDB subclass that takes care of setting up the modules dir, credentials pointers, etc. @@ -97,7 +97,7 @@ class Ldb(Ldb): print text #self.set_debug(msg) - glue.ldb_set_utf8_casefold(self) + self.set_utf8_casefold() # Allow admins to force non-sync ldb for all databases if lp is not None: @@ -308,14 +308,6 @@ class Ldb(Ldb): "Get the server site name" return dsdb.samdb_server_site_name(self) - def set_opaque_integer(self, name, value): - """Set an integer as an opaque (a flag or other value) value on the database - - :param name: The name for the opaque value - :param value: The integer value - """ - dsdb.dsdb_set_opaque_integer(self, name, value) - def substitute_var(text, values): """substitute strings of the form ${NAME} in str, replacing |