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
|
S | M | T | W | T | F | S |
---|---|---|---|---|---|---|
|
|
|
|
|
1
|
2
|
3
|
4
|
5
|
6
|
7
|
8
|
9
|
10
|
11
|
12
|
13
|
14
|
15
|
16
|
17
(3) |
18
|
19
(3) |
20
|
21
|
22
|
23
|
24
|
25
|
26
|
27
|
28
(1) |
29
|
30
|
From: Michael Str?d. <str...@us...> - 2001-06-28 11:33:09
|
CVSROOT: /cvsroot/python-ldap Module name: htdocs Changes by: stroeder 2001/06/28 04:33:08 Modified files: . : faq.shtml Log message: - hint about export "LDFLAGS=-lresolv" - <ol> instead of <dl> since David seems to prefer numbers... |
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: David L. <le...@us...> - 2001-06-19 21:06:36
|
CVSROOT: /cvsroot/python-ldap Module name: python-ldap Changes by: leonard@usw-pr-cvs1. 2001/06/19 14:06:34 Modified files: . : README Log message: update |
From: Michael Str?d. <str...@us...> - 2001-06-19 15:29:52
|
Update of /cvsroot/python-ldap/python-ldap/Lib In directory usw-pr-cvs1:/tmp/cvs-serv11801 Modified Files: ldapthreadlock.py Log Message: Rewrote timeout-handling in method LDAPObject.result(). This version is significantly faster. The former version was simply braindead and slow. Index: ldapthreadlock.py =================================================================== RCS file: /cvsroot/python-ldap/python-ldap/Lib/ldapthreadlock.py,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -r1.2 -r1.3 *** ldapthreadlock.py 2001/05/16 02:50:34 1.2 --- ldapthreadlock.py 2001/06/19 15:29:48 1.3 *************** *** 132,148 **** return _ldap_call(self._l.result,msgid,all,0) else: ! result_interval = 0.2 ! interval_counter = int(timeout/result_interval) ! result = _ldap_call(self._l.result,msgid,all,0) ! while (result is None): ! time.sleep(result_interval) if timeout!=-1: ! interval_counter = interval_counter-1 ! if interval_counter<=0: raise ldap.TIMELIMIT_EXCEEDED( "LDAP time limit (%d secs) exceeded." % (timeout) ) ! result = _ldap_call(self._l.result,msgid,all,0) ! return result def search(self,base,scope,filterstr,attrlist=None,attrsonly=0): --- 132,145 ---- return _ldap_call(self._l.result,msgid,all,0) else: ! result_ldap = None ! start_time = time.time() ! while (result_ldap is None) or (result_ldap==(None,None)): ! result_ldap = _ldap_call(self._l.result,msgid,all,0) if timeout!=-1: ! if time.time()-start_time>timeout: raise ldap.TIMELIMIT_EXCEEDED( "LDAP time limit (%d secs) exceeded." % (timeout) ) ! return result_ldap def search(self,base,scope,filterstr,attrlist=None,attrsonly=0): |
From: David L. <le...@us...> - 2001-06-17 13:35:04
|
Update of /cvsroot/python-ldap/python-ldap In directory usw-pr-cvs1:/tmp/cvs-serv31940 Modified Files: TODO Log Message: update Index: TODO =================================================================== RCS file: /cvsroot/python-ldap/python-ldap/TODO,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -r1.2 -r1.3 *** TODO 2000/07/27 16:08:57 1.2 --- TODO 2001/06/17 13:35:01 1.3 *************** *** 1,12 **** * Find someone with MSVC who can build the WIN32 DLL for _ldapmodule. ! * merge in fog's work ! - move configure script to the top level directory (here) ! ! ! Netscape's LDAP API ! http://developer.netscape.com/docs/manuals/dirsdk/csdk30/index.htm ! ! Perl OO API for LDAP ! http://developer.netscape.com/tech/directory/perldap_docs/Conn.html ! http://developer.netscape.com/tech/directory/perldap_docs/Entry.html --- 1,5 ---- + * Clearly describe an X.500 API (fog?) + * Get some better demo/sample code * Find someone with MSVC who can build the WIN32 DLL for _ldapmodule. ! * Add security/authentication |
From: David L. <dav...@cs...> - 2001-06-17 13:14:26
|
another test message -- David Leonard Dav...@ds... DSTC Room:78-632 Ph:+61 7 336 58358 The University of Queensland http://www.dstc.edu.au/ QLD 4072 AUSTRALIA B73CD65FBEF4C089B79A8EBADF1A932F13EA0FC8 .signature: Invalid argument |
From: David L. <dav...@cs...> - 2001-06-17 13:08:34
|
is this list working -- David Leonard Dav...@ds... DSTC Room:78-632 Ph:+61 7 336 58358 The University of Queensland http://www.dstc.edu.au/ QLD 4072 AUSTRALIA B73CD65FBEF4C089B79A8EBADF1A932F13EA0FC8 .signature: Invalid argument |