svn co ?

2006-06-08 Thread Marc Chantreux
Hi all, I would like to check out the svn to use/hack the lastest trunk of perl-ldap. I tried to follow the "repository" link of http://ldap.perl.org but it only points to a browser. Tried the FAQ but haven't found a clue ... can anyone help ? regards, mc -- téléphone : 03.90.24.00.19 courriel

[patch] Ease the Net::LDAP::Entry creation

2006-06-08 Thread Marc Chantreux
Hi all, I wrote a patch to ease the creation of entries. Once applied, this code sub create { my $dn = shift; my $e = new Net::LDAP::Entry ; $e->dn( $dn ); $e->add( objectClass => [EMAIL PROTECTED] ); return $e; } can be written like this : sub create { my $dn = shift

Re: svn co ?

2006-06-08 Thread Graham Barr
On Thu, June 8, 2006 8:50 am, Marc Chantreux wrote: > Hi all, > > I would like to check out the svn to use/hack the lastest trunk of > perl-ldap. I tried to follow the "repository" link of > http://ldap.perl.org but it only points to a browser. Hm, must update that link, the mutatus domain will go

Re: svn co ?

2006-06-08 Thread Marc Chantreux
Hi Graham, le 08/06/2006, Graham Barr nous écrivait : > You can find it at > > http://svn.goingon.net/repos/perl-ldap/ works fine. thanks for help. regards mc -- téléphone : 03.90.24.00.19 courriel : [EMAIL PROTECTED] ---

Re: [patch] Ease the Net::LDAP::Entry creation

2006-06-08 Thread Chris Ridd
On 8/6/06 3:25, Marc Chantreux <[EMAIL PROTECTED]> wrote: > Hi all, > > I wrote a patch to ease the creation of entries. Once applied, this code > > sub create { > my $dn = shift; > > my $e = new Net::LDAP::Entry ; > $e->dn( $dn ); > $e->add( objectClass => [EMAIL PROTECTED] );

Re: svn co ?

2006-06-08 Thread Achim Grolms
On Thursday 08 June 2006 16:26, Graham Barr wrote: > On Thu, June 8, 2006 8:50 am, Marc Chantreux wrote: > > I would like to check out the svn to use/hack the lastest trunk of > http://svn.goingon.net/repos/perl-ldap/ Im am planning to add "How to use Authen::SASL::Perl::GSSAPI" examples to my w

Re: svn co ?

2006-06-08 Thread Graham Barr
On Thu, June 8, 2006 3:59 pm, Achim Grolms wrote: > On Thursday 08 June 2006 16:26, Graham Barr wrote: >> On Thu, June 8, 2006 8:50 am, Marc Chantreux wrote: > >> > I would like to check out the svn to use/hack the lastest trunk of > >> http://svn.goingon.net/repos/perl-ldap/ > > Im am planning to

empty results

2006-06-08 Thread Luis Cerezo
hi! i am looking for a way to capture non-existing entries from a list... ie: while(somefile) { $mesg = $ldap->search, blah blah blah foreach entry print $result || no such blah blah can't seem to find the right combo here. rgds, -luis --