s4-python: add some helper for converting ldb_flag to text
[Samba/ekacnet.git] / source4 / scripting / python / samba / misc.py
blobb01b134a4c14acf835b9c263947d8f3d68f839b4
1 #!/usr/bin/python
3 # Unix SMB/CIFS implementation.
4 # Copyright (C) Matthieu Patou 2010 <mat@matws.net>
7 # This program is free software; you can redistribute it and/or modify
8 # it under the terms of the GNU General Public License as published by
9 # the Free Software Foundation; either version 3 of the License, or
10 # (at your option) any later version.
12 # This program is distributed in the hope that it will be useful,
13 # but WITHOUT ANY WARRANTY; without even the implied warranty of
14 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 # GNU General Public License for more details.
17 # You should have received a copy of the GNU General Public License
18 # along with this program. If not, see <http://www.gnu.org/licenses/>.
21 """Misc helper functions"""
23 __docformat__ = "restructuredText"
25 import ldb
27 def messageEltFlagToString(flag):
28 if flag == ldb.FLAG_MOD_ADD:
29 return "MOD_ADD"
30 elif flag == ldb.FLAG_MOD_REPLACE:
31 return "MOD_REPLACE"
32 elif flag == ldb.FLAG_MOD_DELETE:
33 return "MOD_DELETE"