You can subscribe to this list here.
2001 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
(7) |
Jul
(1) |
Aug
|
Sep
(2) |
Oct
(8) |
Nov
(68) |
Dec
(63) |
---|---|---|---|---|---|---|---|---|---|---|---|---|
2002 |
Jan
(26) |
Feb
(58) |
Mar
(10) |
Apr
(2) |
May
(11) |
Jun
(10) |
Jul
(66) |
Aug
(94) |
Sep
(40) |
Oct
(7) |
Nov
(3) |
Dec
(13) |
2003 |
Jan
(11) |
Feb
(7) |
Mar
(17) |
Apr
(31) |
May
(55) |
Jun
(18) |
Jul
(6) |
Aug
(16) |
Sep
(3) |
Oct
(8) |
Nov
(15) |
Dec
(18) |
2004 |
Jan
(20) |
Feb
|
Mar
(30) |
Apr
(4) |
May
(10) |
Jun
(5) |
Jul
(5) |
Aug
|
Sep
|
Oct
(10) |
Nov
(7) |
Dec
(4) |
2005 |
Jan
(1) |
Feb
(10) |
Mar
(18) |
Apr
(1) |
May
(3) |
Jun
(17) |
Jul
(4) |
Aug
|
Sep
(4) |
Oct
|
Nov
(15) |
Dec
(1) |
2006 |
Jan
|
Feb
|
Mar
(8) |
Apr
(9) |
May
(5) |
Jun
|
Jul
(3) |
Aug
(1) |
Sep
(2) |
Oct
|
Nov
(11) |
Dec
(8) |
2007 |
Jan
(4) |
Feb
|
Mar
(16) |
Apr
|
May
(2) |
Jun
(1) |
Jul
(13) |
Aug
(2) |
Sep
(2) |
Oct
(1) |
Nov
|
Dec
(10) |
2008 |
Jan
(1) |
Feb
|
Mar
(27) |
Apr
(32) |
May
(1) |
Jun
(11) |
Jul
(4) |
Aug
(3) |
Sep
|
Oct
|
Nov
|
Dec
|
From: Deepak G. <dee...@us...> - 2005-03-04 17:59:27
|
CVSROOT: /cvsroot/python-ldap Module name: python-ldap Changes by: deepak_giri 2005/03/04 09:59:19 Modified files: Modules : LDAPObject.c Log message: Reverted the previous edit; doing a run-time version check doesn't buy us anything over an #if statement, and it's more complicated. |
From: Deepak G. <dee...@us...> - 2005-03-03 20:12:59
|
CVSROOT: /cvsroot/python-ldap Module name: python-ldap Changes by: deepak_giri 2005/03/03 12:12:53 Modified files: Modules : LDAPObject.c Log message: BUGFIX: Patch to make sasl_interactive_bind work on Python versions < 2.3. Bug discovered/reported by David Hawes. The problem is with the format arguments we give to PyArg_ParseTuple: In Python 2.3+, a "I" format argument indicates that we're either converting the Python object into a long or an unsigned int. In versions prior to that, it will always convert to a long. Since the sasl_flags variable is an unsigned int, we need to use the "I" flag if we're running Python 2.3+ and a "i" otherwise. See the email exchange: http://sourceforge.net/mailarchive/forum.php?thread_id=6720713&forum_id=4346 deepak giridharagopal |
From: <str...@us...> - 2005-03-02 09:33:16
|
CVSROOT: /cvsroot/python-ldap Module name: python-ldap Changes by: stroeder 2005/03/02 01:32:53 Modified files: Doc : ldap.tex ldapurl.tex ldif.tex python-ldap.tex Added files: Doc : ldap-controls.tex ldap-dn.tex Log message: Various additions and updates |
From: <str...@us...> - 2005-03-02 07:18:58
|
CVSROOT: /cvsroot/python-ldap Module name: python-ldap Changes by: stroeder 2005/03/01 23:18:52 Modified files: Lib/ldap : controls.py Log message: Latest changes |
From: <str...@us...> - 2005-03-01 20:16:45
|
CVSROOT: /cvsroot/python-ldap Module name: python-ldap Changes by: stroeder 2005/03/01 12:16:38 Modified files: Modules : options.c Log message: Patch by Deepak for NULL pointer bug |
From: <str...@us...> - 2005-03-01 20:15:52
|
CVSROOT: /cvsroot/python-ldap Module name: python-ldap Changes by: stroeder 2005/03/01 12:15:44 Modified files: Demo : ldapcontrols.py Lib/ldap : ldapobject.py Log message: Now the correct implementation of LDAPObject.manage_dsa_it() |
From: <str...@us...> - 2005-03-01 20:08:57
|
CVSROOT: /cvsroot/python-ldap Module name: python-ldap Changes by: stroeder 2005/03/01 12:08:50 Added files: Demo : ldapcontrols.py Log message: A first short demo |
From: <str...@us...> - 2005-03-01 20:06:37
|
CVSROOT: /cvsroot/python-ldap Module name: python-ldap Changes by: stroeder 2005/03/01 12:06:13 Modified files: . : CHANGES Modules : LDAPObject.c Log message: [ 1099487 ] #if missing in Modules/LDAPObject.c |
From: <str...@us...> - 2005-03-01 20:02:44
|
CVSROOT: /cvsroot/python-ldap Module name: python-ldap Changes by: stroeder 2005/03/01 12:02:38 Modified files: . : CHANGES Log message: Announce a bunch of changes related to support for LDAP controls |
From: <str...@us...> - 2005-03-01 20:00:04
|
CVSROOT: /cvsroot/python-ldap Module name: python-ldap Changes by: stroeder 2005/03/01 11:59:42 Modified files: . : setup.py Log message: SF bug 1123693: ldap.dn was missing in py_modules |
From: <str...@us...> - 2005-03-01 19:58:03
|
CVSROOT: /cvsroot/python-ldap Module name: python-ldap Changes by: stroeder 2005/03/01 11:57:53 Modified files: . : setup.py Log message: Modifications for LDAP control support |
From: <str...@us...> - 2005-03-01 19:54:18
|
CVSROOT: /cvsroot/python-ldap Module name: python-ldap Changes by: stroeder 2005/03/01 11:54:11 Modified files: Lib/ldap : ldapobject.py Log message: Implemented LDAPObject.manage_dsa_it() without calling _ldap |
From: <str...@us...> - 2005-03-01 19:52:22
|
CVSROOT: /cvsroot/python-ldap Module name: python-ldap Changes by: stroeder 2005/03/01 11:52:12 Modified files: Lib/ldap : ldapobject.py Log message: Support for LDAP controls with the help of module ldap.controls |
From: <str...@us...> - 2005-03-01 19:49:20
|
CVSROOT: /cvsroot/python-ldap Module name: python-ldap Changes by: stroeder 2005/03/01 11:48:55 Modified files: Lib/ldap : ldapobject.py Log message: Fixed LDAPObject.search_ext_s() to properly call LDAPObject.search_ext() instead of using _ldap directly |
From: <str...@us...> - 2005-03-01 18:36:37
|
CVSROOT: /cvsroot/python-ldap Module name: python-ldap Changes by: stroeder 2005/03/01 10:36:29 Modified files: Modules : LDAPObject.c Log message: Removed l_ldap_manage_dsa_it() |
From: <str...@us...> - 2005-02-27 17:59:31
|
CVSROOT: /cvsroot/python-ldap Module name: python-ldap Changes by: stroeder 2005/02/27 09:59:22 Modified files: Modules : LDAPObject.c LDAPObject.h options.c Added files: Modules : ldapcontrol.c ldapcontrol.h Log message: Latest patches for LDAPControl patch by Deepak |
From: <str...@us...> - 2005-02-25 17:05:13
|
CVSROOT: /cvsroot/python-ldap Module name: python-ldap Changes by: stroeder 2005/02/25 09:05:07 Modified files: . : README Log message: Added recent contributors |
From: <str...@us...> - 2005-02-25 17:04:41
|
CVSROOT: /cvsroot/python-ldap Module name: python-ldap Changes by: stroeder 2005/02/25 09:04:34 Modified files: . : CHANGES Log message: Started working at support for LDAPControls |
From: <str...@us...> - 2005-02-25 16:43:22
|
CVSROOT: /cvsroot/python-ldap Module name: python-ldap Changes by: stroeder 2005/02/25 08:43:16 Modified files: Tests/Lib/ldap/schema: test_tokenizer.py Log message: Some more test cases for broken schema elements |
From: <str...@us...> - 2005-02-25 16:41:10
|
CVSROOT: /cvsroot/python-ldap Module name: python-ldap Changes by: stroeder 2005/02/25 08:41:04 Added files: Lib/ldap : controls.py Log message: Some basic class API for LDAPControls. Not tested yet! |
From: <str...@us...> - 2005-02-25 16:40:24
|
CVSROOT: /cvsroot/python-ldap Module name: python-ldap Changes by: stroeder 2005/02/25 08:40:16 Modified files: Lib/ldap/schema: models.py Log message: Dict self.token_defaults has to be passed to ldap.schema.tokenizer.split_tokens(). |
From: <str...@us...> - 2005-02-25 16:38:34
|
CVSROOT: /cvsroot/python-ldap Module name: python-ldap Changes by: stroeder 2005/02/25 08:38:26 Modified files: Modules : options.c LDAPObject.c LDAPObject.h Log message: Low-level support for LDAPControls by Deepak Giridharagopal. |
From: <str...@us...> - 2005-02-25 16:19:14
|
CVSROOT: /cvsroot/python-ldap Module name: python-ldap Changes by: stroeder 2005/02/25 08:19:06 Modified files: . : CHANGES Lib/ldap : ldapobject.py Log message: Fixed argument list (position of timeout) when calling LDAPObject.search_ext_s()from search_st() and search_s(). |
From: <str...@us...> - 2005-02-25 16:17:34
|
CVSROOT: /cvsroot/python-ldap Module name: python-ldap Changes by: stroeder 2005/02/25 08:17:28 Modified files: . : CHANGES Lib/ldap/schema: tokenizer.py Log message: New algorithm in ldap.schema.tokenizer.split_tokens() contributed by Wido Depping which is more robust when parsing very broken schema elements (e.g. Oracle's OID). |
From: <str...@us...> - 2005-02-25 16:16:07
|
CVSROOT: /cvsroot/python-ldap Module name: python-ldap Changes by: stroeder 2005/02/25 08:16:00 Modified files: . : CHANGES Lib/ldap : __init__.py Log message: Started 2.1.0 |