File tree Expand file tree Collapse file tree 6 files changed +23
-14
lines changed Expand file tree Collapse file tree 6 files changed +23
-14
lines changed Original file line number Diff line number Diff line change
1
+ ----------------------------------------------------------------
2
+ Released 2.4.40 2017-07-xx
3
+
4
+ Changes since 2.4.40:
5
+
6
+ Lib/
7
+ * Added support for increment: lines in LDIF changes records
8
+
1
9
----------------------------------------------------------------
2
10
Released 2.4.40 2017-06-27
3
11
@@ -1452,4 +1460,4 @@ Released 2.0.0pre02 2002-02-01
1452
1460
----------------------------------------------------------------
1453
1461
Released 1.10alpha3 2000-09-19
1454
1462
1455
- $Id: CHANGES,v 1.450 2017/06/27 18:38:08 stroeder Exp $
1463
+ $Id: CHANGES,v 1.451 2017/07/12 17:30:12 stroeder Exp $
Original file line number Diff line number Diff line change 4
4
5
5
See http://www.python-ldap.org/ for details.
6
6
7
- $Id: dsml.py,v 1.57 2017/06/23 07:16:26 stroeder Exp $
7
+ $Id: dsml.py,v 1.58 2017/07/12 17:30:12 stroeder Exp $
8
8
9
9
Python compability note:
10
10
Tested with Python 2.0+.
11
11
"""
12
12
13
- __version__ = '2.4.40 '
13
+ __version__ = '2.4.41 '
14
14
15
15
import string ,base64
16
16
Original file line number Diff line number Diff line change 3
3
4
4
See http://www.python-ldap.org/ for details.
5
5
6
- $Id: __init__.py,v 1.118 2017/06/23 07:16:26 stroeder Exp $
6
+ $Id: __init__.py,v 1.119 2017/07/12 17:30:12 stroeder Exp $
7
7
"""
8
8
9
9
# This is also the overall release version number
10
10
11
- __version__ = '2.4.40 '
11
+ __version__ = '2.4.41 '
12
12
13
13
import sys
14
14
Original file line number Diff line number Diff line change 3
3
4
4
See http://www.python-ldap.org/ for details.
5
5
6
- \$Id: ldapurl.py,v 1.93 2017/06/23 07:16:26 stroeder Exp $
6
+ \$Id: ldapurl.py,v 1.94 2017/07/12 17:30:12 stroeder Exp $
7
7
8
8
Python compability note:
9
9
This module only works with Python 2.0+ since
10
10
1. string methods are used instead of module string and
11
11
2. list comprehensions are used.
12
12
"""
13
13
14
- __version__ = '2.4.40 '
14
+ __version__ = '2.4.41 '
15
15
16
16
__all__ = [
17
17
# constants
Original file line number Diff line number Diff line change 3
3
4
4
See http://www.python-ldap.org/ for details.
5
5
6
- $Id: ldif.py,v 1.113 2017/06/23 07:16:26 stroeder Exp $
6
+ $Id: ldif.py,v 1.114 2017/07/12 17:30:12 stroeder Exp $
7
7
8
8
Python compability note:
9
9
Tested with Python 2.0+, but should work with Python 1.5.2+.
10
10
"""
11
11
12
- __version__ = '2.4.40 '
12
+ __version__ = '2.4.41 '
13
13
14
14
__all__ = [
15
15
# constants
40
40
ldif_pattern = '^((dn(:|::) %(dn_pattern)s)|(%(attrtype_pattern)s(:|::) .*)$)+' % vars ()
41
41
42
42
MOD_OP_INTEGER = {
43
- 'add' :0 , # ldap.MOD_REPLACE
44
- 'delete' :1 , # ldap.MOD_DELETE
43
+ 'add' :0 , # ldap.MOD_ADD
44
+ 'delete' :1 , # ldap.MOD_DELETE
45
45
'replace' :2 , # ldap.MOD_REPLACE
46
+ 'increment' :3 , # ldap.MOD_INCREMENT
46
47
}
47
48
48
49
MOD_OP_STR = {
49
- 0 :'add' ,1 :'delete' ,2 :'replace'
50
+ 0 :'add' ,1 :'delete' ,2 :'replace' , 3 : 'increment'
50
51
}
51
52
52
53
CHANGE_TYPES = ['add' ,'delete' ,'modify' ,'modrdn' ]
Original file line number Diff line number Diff line change 4
4
5
5
See http://www.python-ldap.org/ for details.
6
6
7
- $Id: slapdtest.py,v 1.13 2017/06/23 07:16:26 stroeder Exp $
7
+ $Id: slapdtest.py,v 1.14 2017/07/12 17:30:12 stroeder Exp $
8
8
9
9
Python compability note:
10
10
This module only works with Python 2.7.x since
11
11
"""
12
12
13
- __version__ = '2.4.40 '
13
+ __version__ = '2.4.41 '
14
14
15
15
import os
16
16
import socket
You can’t perform that action at this time.
0 commit comments