From: Michael Str?d. <str...@us...> - 2001-06-19 23:38:31
|
CVSROOT: /cvsroot/python-ldap Module name: python-ldap Changes by: stroeder 2001/06/19 16:38:30 Modified files: . : README Log message: who is who |
From: Konstantin C. <kch...@us...> - 2001-07-13 10:22:02
|
CVSROOT: /cvsroot/python-ldap Module name: python-ldap Changes by: kchuguev 2001/07/13 03:21:59 Modified files: Modules : message.c Log message: Fix two memory leaks when parsing LDAP message |
From: Michael Str?d. <str...@us...> - 2001-10-18 15:30:37
|
CVSROOT: /cvsroot/python-ldap Module name: python-ldap Changes by: stroeder 2001/10/18 08:30:36 Modified files: Lib : ldif.py Log message: Some modifications to be more compliant to RFC2849: ParseLDIF(): Only the line separators are stripped at the right-hand side of an attribute value string. CreateLDIF(): Creates trailing empty line for entry separation. CreateLDIF(): All lines are folded to multi-line representation if the line length exceeds the number of columns specified by parameter cols. Code should be more readable now at some places. Regex pattern string for checking if base64-encoding is needed is more readable and compatible to Python 1.5.x and prior version. __version__ is 0.3.0 now. |
From: Michael Str?d. <str...@us...> - 2001-10-18 19:17:30
|
CVSROOT: /cvsroot/python-ldap Module name: python-ldap Changes by: stroeder 2001/10/18 12:17:26 Modified files: Lib : ldif.py Log message: Some more modifications heading to compliance with RFC 2849: - CreateLDIF() / needs_base64(): Also attribute values and DNs with trailing space characters are base64-encoded. - Added more test cases. |
From: Michael Str?d. <str...@us...> - 2001-10-19 18:51:35
|
CVSROOT: /cvsroot/python-ldap Module name: python-ldap Changes by: stroeder 2001/10/19 11:51:34 Modified files: Lib : ldif.py Log message: Fixed subtle bug: StripLineSep() returned None for strings not ending with any line separator at all. |
From: Michael Str?d. <str...@us...> - 2001-10-20 18:08:26
|
CVSROOT: /cvsroot/python-ldap Module name: python-ldap Changes by: stroeder 2001/10/20 11:08:25 Modified files: Lib : ldapthreadlock.py Log message: Implemented LDAPObject.__hasattr__(). All attributes except LDAPObject._l are handled via LDAPObject.__setattr__()/LDAPObject.__getattr__(). This makes it possible to wrap newer python-ldap versions. Added LDAPObject.start_tls_s(). |
From: Michael Str?d. <str...@us...> - 2001-10-21 13:44:11
|
CVSROOT: /cvsroot/python-ldap Module name: python-ldap Changes by: stroeder 2001/10/21 06:44:10 Modified files: Lib : ldapthreadlock.py Log message: - Moved function _ldap_call() to method LDAPObject._ldap_call() - Global var _module_debug_level to specify the debug level - If __debug__ and _module_debug_level>0 trace of all method calls are written via print statements - __version__ is 0.2.0 |
From: Michael Str?d. <str...@us...> - 2001-10-21 15:17:34
|
CVSROOT: /cvsroot/python-ldap Module name: python-ldap Changes by: stroeder 2001/10/21 08:17:33 Modified files: Lib : ldapthreadlock.py Log message: Uurgs! There's no such beast like __hasattr__(). |
From: Michael Str?d. <str...@us...> - 2001-10-21 15:23:42
|
CVSROOT: /cvsroot/python-ldap Module name: python-ldap Changes by: stroeder 2001/10/21 08:23:41 Modified files: Lib : ldapthreadlock.py Log message: Fixed trace output. |
From: Michael Str?d. <str...@us...> - 2001-10-29 11:06:36
|
CVSROOT: /cvsroot/python-ldap Module name: python-ldap Changes by: stroeder 2001/10/29 03:06:35 Modified files: Lib : ldapthreadlock.py Log message: Fixed identiation typo in LDAPObject.__setattr__() which prevented _ldapmodule_lock.acquire() being called outside debug mode. |
From: Michael Str?d. <str...@us...> - 2001-11-02 11:08:03
|
CVSROOT: /cvsroot/python-ldap Module name: python-ldap Changes by: stroeder 2001/11/02 03:08:02 Modified files: Lib : ldapthreadlock.py Log message: Corrected timeout handling in LDAPObject.result(). Timeout condition is only checked there was no result in the mean time. |
From: Michael Str?d. <str...@us...> - 2001-11-02 11:30:38
|
CVSROOT: /cvsroot/python-ldap Module name: python-ldap Changes by: stroeder 2001/11/02 03:30:37 Modified files: Lib : ldapthreadlock.py Log message: Does not display debug messages for result() calls anymore. |
From: Michael Str?d. <str...@us...> - 2001-11-11 00:52:06
|
CVSROOT: /cvsroot/python-ldap Module name: python-ldap Changes by: stroeder 2001/11/10 16:52:05 Modified files: . : setup.py setup.cfg Modules : LDAPObject.c constants.c errors.c message.c Log message: Added patches provided by Konstantin and Steffen: - Build possible against OpenLDAP 2.0.x libs. - Basic support for StartTLS. |
From: Michael Str?d. <str...@us...> - 2001-11-11 01:08:55
|
CVSROOT: /cvsroot/python-ldap Module name: python-ldap Changes by: stroeder 2001/11/10 17:08:53 Removed files: . : configure.in acconfig.h Log message: Abandon old autoconf method in favor of building with DistUtils. |
From: Michael Str?d. <str...@us...> - 2001-11-11 01:14:18
|
CVSROOT: /cvsroot/python-ldap Module name: python-ldap Changes by: stroeder 2001/11/10 17:14:17 Modified files: . : README Log message: Slightly updated. |
From: Michael Str?d. <str...@us...> - 2001-11-11 01:25:37
|
CVSROOT: /cvsroot/python-ldap Module name: python-ldap Changes by: stroeder 2001/11/10 17:25:37 Removed files: . : Makefile.in Log message: Dropped build with autoconf |
From: Michael Str?d. <str...@us...> - 2001-11-11 01:27:04
|
CVSROOT: /cvsroot/python-ldap Module name: python-ldap Changes by: stroeder 2001/11/10 17:27:04 Removed files: . : TODO Log message: |
From: Michael Str?d. <str...@us...> - 2001-11-11 01:39:13
|
CVSROOT: /cvsroot/python-ldap Module name: python-ldap Changes by: stroeder 2001/11/10 17:39:12 Added files: . : TODO Log message: Added completely new to-do list. |
From: Michael Str?d. <str...@us...> - 2001-11-11 13:59:50
|
CVSROOT: /cvsroot/python-ldap Module name: python-ldap Changes by: stroeder 2001/11/11 05:59:49 Modified files: . : TODO Log message: More things... |
From: Michael Str?d. <str...@us...> - 2001-11-11 14:05:00
|
CVSROOT: /cvsroot/python-ldap Module name: python-ldap Changes by: stroeder 2001/11/11 06:04:59 Modified files: Lib : ldif.py Log message: Removed hint about GPL. License is relaxed. |
From: Michael Str?d. <str...@us...> - 2001-11-11 14:07:01
|
CVSROOT: /cvsroot/python-ldap Module name: python-ldap Changes by: stroeder 2001/11/11 06:07:01 Modified files: . : TODO Log message: More items. |
From: Michael Str?d. <str...@us...> - 2001-11-11 14:11:57
|
CVSROOT: /cvsroot/python-ldap Module name: python-ldap Changes by: stroeder 2001/11/11 06:11:57 Modified files: . : TODO Log message: Support for ldapi:// |
From: Michael Str?d. <str...@us...> - 2001-11-11 19:27:58
|
CVSROOT: /cvsroot/python-ldap Module name: python-ldap Changes by: stroeder 2001/11/11 11:27:57 Modified files: . : TODO Log message: Jacek added ldap.initialize() => support for ldaps:// and ldapi://. |
From: Jacek K. <ja...@us...> - 2001-11-12 14:58:15
|
CVSROOT: /cvsroot/python-ldap Module name: python-ldap Changes by: jajcus 2001/11/12 06:58:14 Modified files: Modules : constants.c errors.c functions.c message.c Log message: - support for OpenLDAP1 removed |
From: Michael Str?d. <str...@us...> - 2001-11-12 15:39:33
|
CVSROOT: /cvsroot/python-ldap Module name: python-ldap Changes by: stroeder 2001/11/12 07:39:32 Modified files: . : setup.py Log message: Removed - from version since not allowed in RPM versions. |