Skip to content

Commit 6390b59

Browse files
author
stroeder
committed
started 2.4.41: Added support for increment: lines in LDIF changes records
1 parent d567af9 commit 6390b59

File tree

6 files changed

+23
-14
lines changed

6 files changed

+23
-14
lines changed

CHANGES

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
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+
19
----------------------------------------------------------------
210
Released 2.4.40 2017-06-27
311

@@ -1452,4 +1460,4 @@ Released 2.0.0pre02 2002-02-01
14521460
----------------------------------------------------------------
14531461
Released 1.10alpha3 2000-09-19
14541462

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 $

Lib/dsml.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,13 +4,13 @@
44
55
See http://www.python-ldap.org/ for details.
66
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 $
88
99
Python compability note:
1010
Tested with Python 2.0+.
1111
"""
1212

13-
__version__ = '2.4.40'
13+
__version__ = '2.4.41'
1414

1515
import string,base64
1616

Lib/ldap/__init__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,12 @@
33
44
See http://www.python-ldap.org/ for details.
55
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 $
77
"""
88

99
# This is also the overall release version number
1010

11-
__version__ = '2.4.40'
11+
__version__ = '2.4.41'
1212

1313
import sys
1414

Lib/ldapurl.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,15 +3,15 @@
33
44
See http://www.python-ldap.org/ for details.
55
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 $
77
88
Python compability note:
99
This module only works with Python 2.0+ since
1010
1. string methods are used instead of module string and
1111
2. list comprehensions are used.
1212
"""
1313

14-
__version__ = '2.4.40'
14+
__version__ = '2.4.41'
1515

1616
__all__ = [
1717
# constants

Lib/ldif.py

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3,13 +3,13 @@
33
44
See http://www.python-ldap.org/ for details.
55
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 $
77
88
Python compability note:
99
Tested with Python 2.0+, but should work with Python 1.5.2+.
1010
"""
1111

12-
__version__ = '2.4.40'
12+
__version__ = '2.4.41'
1313

1414
__all__ = [
1515
# constants
@@ -40,13 +40,14 @@
4040
ldif_pattern = '^((dn(:|::) %(dn_pattern)s)|(%(attrtype_pattern)s(:|::) .*)$)+' % vars()
4141

4242
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
4545
'replace':2, # ldap.MOD_REPLACE
46+
'increment':3, # ldap.MOD_INCREMENT
4647
}
4748

4849
MOD_OP_STR = {
49-
0:'add',1:'delete',2:'replace'
50+
0:'add',1:'delete',2:'replace',3:'increment'
5051
}
5152

5253
CHANGE_TYPES = ['add','delete','modify','modrdn']

Lib/slapdtest.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,13 +4,13 @@
44
55
See http://www.python-ldap.org/ for details.
66
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 $
88
99
Python compability note:
1010
This module only works with Python 2.7.x since
1111
"""
1212

13-
__version__ = '2.4.40'
13+
__version__ = '2.4.41'
1414

1515
import os
1616
import socket

0 commit comments

Comments
 (0)
pFad - Phonifier reborn

Pfad - The Proxy pFad of © 2024 Garber Painting. All rights reserved.

Note: This service is not intended for secure transactions such as banking, social media, email, or purchasing. Use at your own risk. We assume no liability whatsoever for broken pages.


Alternative Proxies:

Alternative Proxy

pFad Proxy

pFad v3 Proxy

pFad v4 Proxy