From victor.fernandez at upcnet.es Wed Mar 15 11:10:01 2006 From: victor.fernandez at upcnet.es (Victor Fernandez) Date: Wed, 15 Mar 2006 11:10:01 +0100 Subject: module ldap.res Message-ID: <4417E7F9.2020706@upcnet.es> Hello, I'm trying to delete a complete branch in a ldap server programatically. I've found the script "deltree.py" in the documentation of the package python-ldap, but I haven't found the way to execute it, because it complains about the module "ldap.res"... To what module is refering? Thanks in advance. -- ---------------------------------------------- V?ctor Fern?ndez de Alba Encinas Projectes Tecnol?gics UPCnet Edifici M?ster's - Pedro i Pons, 9, 9? 08034 BARCELONA Tel. centraleta: 93 401 16 00 ---------------------------------------------- From michael at stroeder.com Sun Mar 26 15:22:59 2006 From: michael at stroeder.com (=?ISO-8859-1?Q?Michael_Str=F6der?=) Date: Sun, 26 Mar 2006 15:22:59 +0200 Subject: module ldap.res In-Reply-To: <4417E7F9.2020706@upcnet.es> References: <4417E7F9.2020706@upcnet.es> Message-ID: <442695B3.6040903@stroeder.com> Victor Fernandez wrote: > > I'm trying to delete a complete branch in a ldap server programatically. > I've found the script "deltree.py" in the documentation of the package > python-ldap, but I haven't found the way to execute it, because it > complains about the module "ldap.res"... Uuumh. This should have never been added to CVS. I removed it. Maybe you can tweak it to use ldap.async (like web2ldap does). > To what module is refering? ldap.res was planned to be a better implementation of what ldap.async provides but was never finished. I tend more to use ldap.resiter which is not finished either. But it seems I already moved examples from Demo/Lib/ldap/async/ to Demo/Lib/ldap/res/. I've reverted this change. Please test the CVS scripts. Ciao, Michael.