You can subscribe to this list here.
2001 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
(9) |
Nov
(4) |
Dec
(15) |
---|---|---|---|---|---|---|---|---|---|---|---|---|
2002 |
Jan
(23) |
Feb
(18) |
Mar
(11) |
Apr
(3) |
May
(23) |
Jun
(13) |
Jul
(16) |
Aug
(11) |
Sep
(5) |
Oct
(4) |
Nov
(2) |
Dec
(4) |
2003 |
Jan
(18) |
Feb
(13) |
Mar
(56) |
Apr
(3) |
May
(124) |
Jun
(21) |
Jul
(2) |
Aug
(8) |
Sep
(1) |
Oct
(23) |
Nov
(4) |
Dec
(2) |
2004 |
Jan
(18) |
Feb
(5) |
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
From: Chris R. <chr...@us...> - 2003-05-06 12:16:57
|
Update of /cvsroot/perl-ldap/ldap/lib/Net/LDAP In directory sc8-pr-cvs1:/tmp/cvs-serv2313/lib/Net/LDAP Modified Files: Examples.pod Log Message: Fixed schema examples Index: Examples.pod =================================================================== RCS file: /cvsroot/perl-ldap/ldap/lib/Net/LDAP/Examples.pod,v retrieving revision 1.4 retrieving revision 1.5 diff -u -d -r1.4 -r1.5 --- Examples.pod 12 Sep 2000 09:17:09 -0000 1.4 +++ Examples.pod 6 May 2003 12:16:54 -0000 1.5 @@ -469,7 +469,7 @@ $mesg = $self->search( base => $dn, scope => 'base', - filter => '(objectClass=*)', + filter => '(objectClass=subschema)', ); Once the schema object has been initialized, schema methods @@ -484,56 +484,34 @@ # Get the attributes # - @attributes = $schema->attributes(); + @attributes = $schema->all_attributes(); # # Display the attributes # foreach ( @attributes) { - print "attributeType\n"; + print "attributeType $_\n"; # - # Get and display the oid number of the objectclass. + # Get a reference to the attribute details # - $oid = $schema->name2oid( "$_" ); + $ar = $schema->attribute( $_ ); # - # Get the various items associated with - # this attribute. - # - @attribute_items = $schema->items( "$oid" ); - # - # Read returned item names and display their associated data. + # Print all the details # - foreach $value ( @attribute_items ) + foreach $key ( keys $ar ) { - # We know we are dealing with an attribute, ignore type. - next if ( $value eq 'type'); # Type holds oc or at - # - # Read the data for this item of this oid. - # - @item = $schema->item( $oid, $value ); - # - # Some item names have no data, the name itself is data. - # This type of item has 1 as data. - # - if ( defined(@item) && $item[0] == 1 ) - { - print "\t$value\n"; - next; - } - if ( defined(@item) && $#item >= 0 ) - { - print "\t$value: @item\n"; - } - + print join("\n\t\t", "\t$key:", + ref($ar->{$key}) ? @{$ar->{$key}} : $ar->{$key}), + "\n"; } } The process is the basically the same for getting objectClass -information. Where schema->attributes() is used, substitute -schema->objectclasses(). From that point on the process is +information. Where schema->all_attributes() is used, substitute +schema->all_objectclasses(). From that point on the process is the same for both objectClasses and attributes. =head1 BUGS |
From: Chris R. <chr...@us...> - 2003-05-06 11:58:20
|
Update of /cvsroot/perl-ldap/ldap/lib/Net/LDAP In directory sc8-pr-cvs1:/tmp/cvs-serv27619/lib/Net/LDAP Modified Files: Schema.pm Log Message: Return schema parse errors Index: Schema.pm =================================================================== RCS file: /cvsroot/perl-ldap/ldap/lib/Net/LDAP/Schema.pm,v retrieving revision 1.15 retrieving revision 1.16 diff -u -d -r1.15 -r1.16 --- Schema.pm 28 May 2002 07:57:45 -0000 1.15 +++ Schema.pm 6 May 2003 11:58:16 -0000 1.16 @@ -48,12 +48,12 @@ elsif (UNIVERSAL::isa($arg, 'Net::LDAP::Search')) { unless ($entry = $arg->entry) { $schema->{error} = 'Bad Argument'; - return undef; + return $schema; } } else { $schema->{error} = 'Bad Argument'; - return undef; + return $schema; } } elsif( -f $arg ) { @@ -62,12 +62,12 @@ $entry = $ldif->read(); unless( $entry ) { $schema->{error} = "Cannot parse LDIF from file [$arg]"; - return undef; + return $schema; } } else { $schema->{error} = "Can't load schema from [$arg]: $!"; - return undef; + return $schema; } eval { @@ -77,7 +77,7 @@ if ($@) { $schema->{error} = $@; - return undef; + return $schema; } return $schema; |
From: Chris R. <chr...@us...> - 2003-05-06 11:55:09
|
Update of /cvsroot/perl-ldap/ldap/lib/Net/LDAP In directory sc8-pr-cvs1:/tmp/cvs-serv26359/lib/Net/LDAP Modified Files: Message.pm Log Message: Ziya Suzen's fix for insecure dependencies Index: Message.pm =================================================================== RCS file: /cvsroot/perl-ldap/ldap/lib/Net/LDAP/Message.pm,v retrieving revision 1.4 retrieving revision 1.5 diff -u -d -r1.4 -r1.5 --- Message.pm 12 Sep 2000 09:17:09 -0000 1.4 +++ Message.pm 6 May 2003 11:55:05 -0000 1.5 @@ -83,9 +83,14 @@ sub error { my $self = shift; - $self->server_error - or require Net::LDAP::Util - and Net::LDAP::Util::ldap_error_desc( $self->code ); + my $return; + + unless ($return = $self->server_error) { + require Net::LDAP::Util and + $return = Net::LDAP::Util::ldap_error_desc( $self->code ); + } + + $return; } sub set_error { |
From: Chris R. <chr...@us...> - 2003-05-06 11:52:43
|
Update of /cvsroot/perl-ldap/ldap/lib/Net In directory sc8-pr-cvs1:/tmp/cvs-serv25359/lib/Net Modified Files: LDAP.pod Log Message: Typo fixes from Damon Brodie Index: LDAP.pod =================================================================== RCS file: /cvsroot/perl-ldap/ldap/lib/Net/LDAP.pod,v retrieving revision 1.19 retrieving revision 1.20 diff -u -d -r1.19 -r1.20 --- LDAP.pod 9 Mar 2003 10:57:19 -0000 1.19 +++ LDAP.pod 6 May 2003 11:52:40 -0000 1.20 @@ -31,7 +31,7 @@ $result = $ldap->add ( 'cn = Barbara Jensen, o=University of Michigan, c=us', attr => [ 'cn' => ['Barbara Jensen', 'Barbs Jensen'], - 'sn => 'Jensen', + 'sn' => 'Jensen', 'mail' => 'b.j...@um...', 'objectclass' => ['top', 'person', 'organizationalPerson', @@ -40,6 +40,7 @@ ); $result->code && warn "failed to add entry: ", $result->error ; + $ldap->unbind; # take down session =head1 DESCRIPTION |
From: Chris R. <chr...@us...> - 2003-05-06 11:46:15
|
Update of /cvsroot/perl-ldap/website In directory sc8-pr-cvs1:/tmp/cvs-serv22696 Modified Files: index.html Log Message: Added new Howes book, changed CVS URL. Index: index.html =================================================================== RCS file: /cvsroot/perl-ldap/website/index.html,v retrieving revision 1.34 retrieving revision 1.35 diff -u -d -r1.34 -r1.35 --- index.html 23 Apr 2003 16:58:43 -0000 1.34 +++ index.html 6 May 2003 11:46:09 -0000 1.35 @@ -54,7 +54,7 @@ <p>The latest release of the library is <a href= "http://prdownloads.sourceforge.net/perl-ldap/perl-ldap-0.2701.tar.gz"> perl-ldap-0.2701</a>. You may also <a href= - "http://cvs.sourceforge.net/cgi-bin/viewcvs.cgi/perl-ldap/">look + "http://cvs.sourceforge.net/cgi-bin/viewcvs.cgi/perl-ldap/ldap/">look at the individual files</a> in the CVS repository and the <a href= "http://search.cpan.org/~gbarr/perl-ldap/ChangeLog">ChangeLog</a> and <a href= "http://search.cpan.org/~gbarr/perl-ldap/RELEASE_NOTES">RELEASE_NOTES</a> files, @@ -203,6 +203,11 @@ <li><a href="http://www.oreilly.com/catalog/ldapsa/">LDAP System Administration</a> by Gerald Carter and published by <a href="http://www.oreilly.com/">O'Reilly</a>, has a chapter on Net::LDAP and perl.</li> + <li>The second edition of <a href="http://www.awprofessional.com/">Understanding + and Deploying LDAP Directory Services</a> by Tim Howes, Mark C + Smith and Gordon Good has been published by Addison-Wesley. It only mentions + Net::LDAP in passing but gives good general guidance (<i>Addison-Wesley also + sent me a free copy</i>)</li> </ul> </div> </div> |
From: Graham B. <gb...@us...> - 2003-05-06 11:07:23
|
Update of /cvsroot/perl-ldap/asn/lib/Convert/ASN1 In directory sc8-pr-cvs1:/tmp/cvs-serv6983/lib/Convert/ASN1 Modified Files: _decode.pm _encode.pm Log Message: utf8 support for perl >= 5.8 Index: _decode.pm =================================================================== RCS file: /cvsroot/perl-ldap/asn/lib/Convert/ASN1/_decode.pm,v retrieving revision 1.15 retrieving revision 1.16 diff -u -d -r1.15 -r1.16 --- _decode.pm 25 Mar 2002 09:06:16 -0000 1.15 +++ _decode.pm 6 May 2003 11:07:19 -0000 1.16 @@ -7,8 +7,10 @@ # $Id$ BEGIN { - local $SIG{__DIE__}; - eval { require bytes } and 'bytes'->import + unless (CHECK_UTF8) { + local $SIG{__DIE__}; + eval { require bytes } and 'bytes'->import + } } # These are the subs that do the decode, they are called with @@ -536,12 +538,20 @@ # $optn, $op, $stash, $var, $buf, $pos, $len BEGIN { - local $SIG{__DIE__}; - eval { require bytes } and 'bytes'->unimport; - eval { require utf8 } and 'utf8'->import; + unless (CHECK_UTF8) { + local $SIG{__DIE__}; + eval { require bytes } and 'bytes'->unimport; + eval { require utf8 } and 'utf8'->import; + } + } + + if (CHECK_UTF8) { + $_[3] = Encode::decode('utf8', substr($_[4],$_[5],$_[6])); + } + else { + $_[3] = (substr($_[4],$_[5],$_[6]) =~ /(.*)/s)[0]; } - $_[3] = (substr($_[4],$_[5],$_[6]) =~ /(.*)/s)[0]; 1; } Index: _encode.pm =================================================================== RCS file: /cvsroot/perl-ldap/asn/lib/Convert/ASN1/_encode.pm,v retrieving revision 1.16 retrieving revision 1.17 diff -u -d -r1.16 -r1.17 --- _encode.pm 19 Aug 2002 23:51:38 -0000 1.16 +++ _encode.pm 6 May 2003 11:07:20 -0000 1.17 @@ -7,8 +7,10 @@ # $Id$ BEGIN { - local $SIG{__DIE__}; - eval { require bytes } and 'bytes'->import + unless (CHECK_UTF8) { + local $SIG{__DIE__}; + eval { require bytes } and 'bytes'->import + } } # These are the subs which do the encoding, they are called with @@ -127,8 +129,15 @@ # 0 1 2 3 4 5 6 # $optn, $op, $stash, $var, $buf, $loop, $path - $_[4] .= asn_encode_length(length $_[3]); - $_[4] .= $_[3]; + if (CHECK_UTF8 and Encode::is_utf8($_[3])) { + utf8::encode(my $tmp = $_[3]); + $_[4] .= asn_encode_length(length $tmp); + $_[4] .= $tmp; + } + else { + $_[4] .= asn_encode_length(length $_[3]); + $_[4] .= $_[3]; + } } @@ -329,8 +338,17 @@ # 0 1 2 3 4 5 6 # $optn, $op, $stash, $var, $buf, $loop, $path - $_[4] .= asn_encode_length(length $_[3]); - $_[4] .= $_[3]; + if (CHECK_UTF8) { + my $tmp = $_[3]; + utf8::upgrade($tmp) unless Encode::is_utf8($tmp); + utf8::encode($tmp); + $_[4] .= asn_encode_length(length $tmp); + $_[4] .= $tmp; + } + else { + $_[4] .= asn_encode_length(length $_[3]); + $_[4] .= $_[3]; + } } |
From: Graham B. <gb...@us...> - 2003-05-06 11:07:23
|
Update of /cvsroot/perl-ldap/asn/lib/Convert In directory sc8-pr-cvs1:/tmp/cvs-serv6983/lib/Convert Modified Files: ASN1.pm Log Message: utf8 support for perl >= 5.8 Index: ASN1.pm =================================================================== RCS file: /cvsroot/perl-ldap/asn/lib/Convert/ASN1.pm,v retrieving revision 1.23 retrieving revision 1.24 diff -u -d -r1.23 -r1.24 --- ASN1.pm 20 Aug 2002 00:00:57 -0000 1.23 +++ ASN1.pm 6 May 2003 11:07:19 -0000 1.24 @@ -11,9 +11,17 @@ use vars qw($VERSION @ISA @EXPORT_OK %EXPORT_TAGS @opParts @opName $AUTOLOAD); use Exporter; +use constant CHECK_UTF8 => $] > 5.007; + BEGIN { + + if (CHECK_UTF8) { + require Encode; + require utf8; + } + @ISA = qw(Exporter); - $VERSION = '0.16'; + $VERSION = '0.16_01'; %EXPORT_TAGS = ( io => [qw(asn_recv asn_send asn_read asn_write asn_get asn_ready)], |
From: Graham B. <gb...@us...> - 2003-05-06 11:07:22
|
Update of /cvsroot/perl-ldap/asn/t In directory sc8-pr-cvs1:/tmp/cvs-serv6983/t Added Files: 13utf8.t Log Message: utf8 support for perl >= 5.8 --- NEW FILE: 13utf8.t --- #!/usr/local/bin/perl # # Test the use of utf8 strings # use Convert::ASN1; BEGIN { require 't/funcs.pl' } if ($] < 5.006) { print "1..0\n"; exit; } print "1..12\n"; btest 1, $asn = Convert::ASN1->new() or warn $asn->error; btest 2, $asn->prepare(q( str STRING )) or warn $asn->error; my $result = pack("C*", 0x04, 0x07, 0x75, 0x74, 0x66, 0x38, 0x20, 0xc6, 0x81); stest 3, $result, $asn->encode(str => "utf8 " . chr(0x181)) or warn $asn->error; btest 4, $ret = $asn->decode($result) or warn $asn->error; stest 5, "utf8 " . chr(0xc6) . chr(0x81), $ret->{str}; btest 6, $asn->prepare(q( str UTF8String )) or warn $asn->error; my $utf_str = "utf8 " . chr(0x181); $result = pack("C*", 0x0c, 0x07, 0x75, 0x74, 0x66, 0x38, 0x20, 0xc6, 0x81); stest 7, $result, $asn->encode(str => $utf_str) or warn $asn->error; btest 8, $ret = $asn->decode($result) or warn $asn->error; stest 9, $utf_str, $ret->{str}; # Test that UTF8String will upgrade on encoding, except in 5.6 $result = $] > 5.007 ? pack("C*", 0x0c, 0x02, 0xc2, 0x81) : pack("C*", 0x0c, 0x01, 0x81); stest 10, $result, $asn->encode(str => chr(0x81)) or warn $asn->error; btest 11, $ret = $asn->decode($result) or warn $asn->error; stest 12, chr(0x81), $ret->{str}; |
From: Chris R. <chr...@us...> - 2003-04-23 16:58:49
|
Update of /cvsroot/perl-ldap/website In directory sc8-pr-cvs1:/tmp/cvs-serv16255 Modified Files: index.html Log Message: Updated mailing list info Index: index.html =================================================================== RCS file: /cvsroot/perl-ldap/website/index.html,v retrieving revision 1.33 retrieving revision 1.34 diff -u -d -r1.33 -r1.34 --- index.html 26 Mar 2003 07:50:25 -0000 1.33 +++ index.html 23 Apr 2003 16:58:43 -0000 1.34 @@ -14,14 +14,14 @@ <h1>Perl-LDAP Homepage</h1> </div> <div id="banners"> - <p> This site is hosted by<br> + <p>This site is hosted by<br> <a href="http://sourceforge.net"><img src= "http://sourceforge.net/sflogo.php?group_id=5050&type=1" width="88" height="31" alt= "SourceForge Logo"></a></p> <ul> <li><a href= - "http://lists.sourceforge.net/mailman/listinfo/perl-ldap-dev"> Mailing + "mailto:per...@pe...">Mailing List</a></li> <li><a href="http://sourceforge.net/cvs/?group_id=5050">CVS</a></li> <li><a href= @@ -157,11 +157,21 @@ </div> <div class="section"> <h2>Mailing List</h2> - <p>SourceForge also hosts a mailing list for the perl-ldap project. You can - subscribe by visiting <a href= - "http://lists.sourceforge.net/mailman/listinfo/perl-ldap-dev"> http://lists.sourceforge.net/mailman/listinfo/perl-ldap-dev</a>, - or you can just post a question or bug report to <a href= - "mailto:per...@li...">per...@li...</a>. </p> + <p>There is also a mailing list for the perl-ldap project. You do not have + to subscribe in order to post a question, and the list is filtered for + spam automatically.</p> + <h3>To post</h3> + <p><a href="mailto:per...@pe...">per...@pe...</a></p> + <h3>To subscribe</h3> + <p><a href="mailto:per...@pe...">per...@pe...</a></p> + <h3>To unsubscribe</h3> + <p><a href="mailto:per...@pe...">per...@pe...</a></p> + <h3>List archives</h3> + <ul> + <li><a href="http://archive.develooper.com/per...@pe.../">http://archive.develooper.com/per...@pe.../</a></li> + <li><a href="http://nntp.x.perl.org/group/perl.ldap">http://nntp.x.perl.org/group/perl.ldap</a></li> + <li><a href="news://nntp.perl.org/perl.ldap">news://nntp.perl.org/perl.ldap</a></li> + </ul> </div> <div class="section"> <h2>LDAP Web Resources</h2> |
From: Graham B. <gb...@us...> - 2003-04-07 15:05:19
|
Update of /cvsroot/perl-ldap/ldap/lib/Net/LDAP/Control In directory sc8-pr-cvs1:/tmp/cvs-serv29845/lib/Net/LDAP/Control Modified Files: VLVResponse.pm Log Message: Fix VLV response extraction. Patch from Paul Connolly Index: VLVResponse.pm =================================================================== RCS file: /cvsroot/perl-ldap/ldap/lib/Net/LDAP/Control/VLVResponse.pm,v retrieving revision 1.4 retrieving revision 1.5 diff -u -d -r1.4 -r1.5 --- VLVResponse.pm 24 Aug 2001 19:31:14 -0000 1.4 +++ VLVResponse.pm 7 Apr 2003 15:05:14 -0000 1.5 @@ -8,7 +8,7 @@ use Net::LDAP::Control; @ISA = qw(Net::LDAP::Control); -$VERSION = "0.01"; +$VERSION = "0.02"; use Net::LDAP::ASN qw(VirtualListViewResponse); use strict; @@ -22,10 +22,10 @@ else { my $asn = $self->{asn} = {}; - $asn->{targetPosition} = $self->{target} || 0; - $asn->{contentCount} = $self->{content} || 0; - $asn->{virtualListViewResult} = $self->{result} || 0; - $asn->{context} = $self->{context} || undef; + $asn->{targetPosition} = $self->{target} || 0; + $asn->{contentCount} = $self->{content} || 0; + $asn->{virtualListViewResult} = $self->{result} || 0; + $asn->{contextID} = $self->{contextID} || undef; } $self; @@ -63,9 +63,9 @@ my $self = shift; if (@_) { delete $self->{value}; - return $self->{asn}{context} = shift; + return $self->{asn}{contextID} = shift; } - $self->{asn}{context}; + $self->{asn}{contextID}; } sub value { |
From: Graham B. <gb...@us...> - 2003-04-07 15:05:18
|
Update of /cvsroot/perl-ldap/ldap/lib/Net/LDAP In directory sc8-pr-cvs1:/tmp/cvs-serv29845/lib/Net/LDAP Modified Files: ASN.pm Log Message: Fix VLV response extraction. Patch from Paul Connolly Index: ASN.pm =================================================================== RCS file: /cvsroot/perl-ldap/ldap/lib/Net/LDAP/ASN.pm,v retrieving revision 1.5 retrieving revision 1.6 diff -u -d -r1.5 -r1.6 --- ASN.pm 11 Jun 2001 16:20:32 -0000 1.5 +++ ASN.pm 7 Apr 2003 15:05:12 -0000 1.6 @@ -2,6 +2,8 @@ package Net::LDAP::ASN; +$VERSION = "0.02"; + use Convert::ASN1; my $asn = Convert::ASN1->new; @@ -312,7 +314,8 @@ adminLimitExceeded (11), sortControlMissing (60), indexRangeError (61), - other (80) } } + other (80) } + contextID OCTET STRING OPTIONAL } LDAPEntry ::= COMPONENTS OF AddRequest |
From: Chris R. <chr...@us...> - 2003-03-26 07:50:28
|
Update of /cvsroot/perl-ldap/website In directory sc8-pr-cvs1:/tmp/cvs-serv2999 Modified Files: index.html Log Message: Added new book by Gerald Carter, and corrected some URLs Index: index.html =================================================================== RCS file: /cvsroot/perl-ldap/website/index.html,v retrieving revision 1.32 retrieving revision 1.33 diff -u -d -r1.32 -r1.33 --- index.html 19 Mar 2003 09:47:28 -0000 1.32 +++ index.html 26 Mar 2003 07:50:25 -0000 1.33 @@ -23,7 +23,7 @@ <li><a href= "http://lists.sourceforge.net/mailman/listinfo/perl-ldap-dev"> Mailing List</a></li> - <li><a href="http://cvs.sourceforge.net/cgi-bin/cvsweb.cgi/?cvsroot=perl-ldap">CVS</a></li> + <li><a href="http://sourceforge.net/cvs/?group_id=5050">CVS</a></li> <li><a href= "http://sourceforge.net/project/?group_id=5050">Project Page</a></li> </ul> @@ -54,7 +54,7 @@ <p>The latest release of the library is <a href= "http://prdownloads.sourceforge.net/perl-ldap/perl-ldap-0.2701.tar.gz"> perl-ldap-0.2701</a>. You may also <a href= - "http://cvs.sourceforge.net/cgi-bin/viewcvs.cgi/perl-ldap/ldap/">look + "http://cvs.sourceforge.net/cgi-bin/viewcvs.cgi/perl-ldap/">look at the individual files</a> in the CVS repository and the <a href= "http://search.cpan.org/~gbarr/perl-ldap/ChangeLog">ChangeLog</a> and <a href= "http://search.cpan.org/~gbarr/perl-ldap/RELEASE_NOTES">RELEASE_NOTES</a> files, @@ -181,15 +181,18 @@ "http://www.wrox.com/Store/Details.asp?Code=2211">Implementing LDAP</a> which mentions perl-ldap in Chapter 11. (<i>They also sent me a free copy</i>)</li> <li><a href= - "http://www.oreilly.com/catalog/perlsysadm/">Perl for System Administraton</a> by + "http://www.oreilly.com/catalog/perlsysadm/">Perl for System Administration</a> by David N. Blank-Edelman and published by <a href= - "http://www.oreily.com/">O'Reilly</a> mentions LDAP and perl-ldap + "http://www.oreilly.com/">O'Reilly</a> mentions LDAP and perl-ldap in its chapter on Directory Services.</li> <li><a href= "http://www.awprofessional.com/">Addison-Wesley</a> has published a book by Robbie Allen and Richard Puckett entitled <a href= "http://www.awprofessional.com/catalog/product.asp?product_id={BDE92686-4225-41B6-A818-B477144D8CA1}&session_id={6D4DBC59-6D20-470C-9B9F-207BF1BD4DDD}"> Managing Enterprise Active Directory Services.</a></li> + <li><a href="http://www.oreilly.com/catalog/ldapsa/">LDAP System Administration</a> by + Gerald Carter and published by <a href="http://www.oreilly.com/">O'Reilly</a>, has a chapter on Net::LDAP and + perl.</li> </ul> </div> </div> |
From: Chris R. <chr...@us...> - 2003-03-19 09:54:49
|
Update of /cvsroot/perl-ldap/website In directory sc8-pr-cvs1:/tmp/cvs-serv25794 Modified Files: site.css Log Message: Dreamweaver *insists* on using \r line breaks when writing CSS, darn it. Back to Unix line breaks we go. Index: site.css =================================================================== RCS file: /cvsroot/perl-ldap/website/site.css,v retrieving revision 1.3 retrieving revision 1.4 diff -u -d -r1.3 -r1.4 --- site.css 19 Mar 2003 09:37:21 -0000 1.3 +++ site.css 19 Mar 2003 09:54:05 -0000 1.4 @@ -1 +1,54 @@ - /* CSS for perl-ldap site */ body,html { background-image: url(Knuellpap.jpg); font-family: Helvetica, Arial, sans-serif; margin: 0px; padding: 0px; } h1 { text-align: center; } div#banners { width: 100px; float: left; margin-left: 10px; } div#content { padding-right: 20px; padding-left: 20px; width: auto; margin-left: 120px; } div.section { padding: 8px; margin-top: 0px; } div.section h2 { border-bottom-width: 1px; border-bottom-style: solid; border-bottom-color: black; font-size: 130%; } div#banners ul { padding-left: 1em; } p.revision { font-size: small; font-style: italic; } a:link { color: #005555; } a:visited { color: #AA0000; } a:active { color: #006666; } div.section h3 { font-size: 110%; } img { border: 0px; } \ No newline at end of file + /* CSS for perl-ldap site */ + +body,html { + background-image: url(Knuellpap.jpg); + font-family: Helvetica, Arial, sans-serif; + margin: 0px; + padding: 0px; +} +h1 { + text-align: center; +} +div#banners { + width: 100px; + float: left; + margin-left: 10px; +} +div#content { + padding-right: 20px; + padding-left: 20px; + width: auto; + margin-left: 120px; +} +div.section { + padding: 8px; + margin-top: 0px; +} +div.section h2 { + border-bottom-width: 1px; + border-bottom-style: solid; + border-bottom-color: black; + font-size: 130%; +} +div#banners ul { + padding-left: 1em; +} +p.revision { + font-size: small; + font-style: italic; +} +a:link { + color: #005555; +} +a:visited { + color: #AA0000; +} +a:active { + color: #006666; +} +div.section h3 { + font-size: 110%; +} +img { + border: 0px; +} |
From: Chris R. <chr...@us...> - 2003-03-19 09:47:31
|
Update of /cvsroot/perl-ldap/website In directory sc8-pr-cvs1:/tmp/cvs-serv23244 Modified Files: index.html Log Message: Fixed RCS ID Index: index.html =================================================================== RCS file: /cvsroot/perl-ldap/website/index.html,v retrieving revision 1.31 retrieving revision 1.32 diff -u -d -r1.31 -r1.32 --- index.html 19 Mar 2003 09:38:22 -0000 1.31 +++ index.html 19 Mar 2003 09:47:28 -0000 1.32 @@ -198,8 +198,7 @@ Graham Barr <a href= "mailto:gb...@po..."><gb...@po...></a> </address> - <p class="revision"> $Id: index.html,v 1.29 2003/03/14 11:03:56 chrisridd Exp - $ </p> + <p class="revision">$Id$</p> </div> </body> </html> |
From: Chris R. <chr...@us...> - 2003-03-19 09:38:37
|
Update of /cvsroot/perl-ldap/website In directory sc8-pr-cvs1:/tmp/cvs-serv19663 Modified Files: rfc.html Log Message: Use HTML 4.01 strict Index: rfc.html =================================================================== RCS file: /cvsroot/perl-ldap/website/rfc.html,v retrieving revision 1.2 retrieving revision 1.3 diff -u -d -r1.2 -r1.3 --- rfc.html 13 Mar 2003 16:13:26 -0000 1.2 +++ rfc.html 19 Mar 2003 09:38:34 -0000 1.3 @@ -1,6 +1,9 @@ +<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" + "http://www.w3.org/TR/html4/strict.dtd"> <html> <head> <title>LDAP RFCs</title> +<meta http-equiv="content-type" content="text/html; charset=iso-8859-1"> <meta name="keywords" content="Perl-LDAP, LDAP RFCs, LDAP RFC, LDAP, RFC"> <meta name="description" content="LDAP RFCs"> <link href="site.css" rel="stylesheet" type="text/css"> @@ -13,7 +16,7 @@ <p> This site is hosted by<br> <a href="http://sourceforge.net"><img src= "http://sourceforge.net/sflogo.php?group_id=5050&type=1" - width="88" height="31" border="0" alt= + width="88" height="31" alt= "SourceForge Logo"></a></p> <ul> <li><a href="http://perl-ldap.sourceforge.net/">Home page</a></li> |
From: Chris R. <chr...@us...> - 2003-03-19 09:38:26
|
Update of /cvsroot/perl-ldap/website In directory sc8-pr-cvs1:/tmp/cvs-serv19579 Modified Files: index.html Log Message: Use HTML 4.01 strict Index: index.html =================================================================== RCS file: /cvsroot/perl-ldap/website/index.html,v retrieving revision 1.30 retrieving revision 1.31 diff -u -d -r1.30 -r1.31 --- index.html 14 Mar 2003 13:20:55 -0000 1.30 +++ index.html 19 Mar 2003 09:38:22 -0000 1.31 @@ -1,8 +1,9 @@ -<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" - "http://www.w3.org/TR/html4/loose.dtd"> +<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" + "http://www.w3.org/TR/html4/strict.dtd"> <html> <head> <title>Perl-LDAP Homepage</title> +<meta http-equiv="content-type" content="text/html; charset=iso-8859-1"> <meta name="keywords" content= "Perl-LDAP, Perl-LDAP FAQ, Perl-LDAP Online documentation, LDAP, LDAP WEB Resources,Perl-Ldap Distribution,Open Source, Sourceforge, Graham Barr, CPAN,Net::LDAP,Net::LDAP::FAQ"> <meta name="description" content="Perl-LDAP WEB Home Page."> @@ -16,7 +17,7 @@ <p> This site is hosted by<br> <a href="http://sourceforge.net"><img src= "http://sourceforge.net/sflogo.php?group_id=5050&type=1" - width="88" height="31" border="0" alt= + width="88" height="31" alt= "SourceForge Logo"></a></p> <ul> <li><a href= |
From: Chris R. <chr...@us...> - 2003-03-19 09:37:24
|
Update of /cvsroot/perl-ldap/website In directory sc8-pr-cvs1:/tmp/cvs-serv19177 Modified Files: site.css Log Message: Remove img borders Index: site.css =================================================================== RCS file: /cvsroot/perl-ldap/website/site.css,v retrieving revision 1.2 retrieving revision 1.3 diff -u -d -r1.2 -r1.3 --- site.css 14 Mar 2003 13:19:38 -0000 1.2 +++ site.css 19 Mar 2003 09:37:21 -0000 1.3 @@ -1,51 +1 @@ - /* CSS for perl-ldap site */ - -body,html { - background-image: url(Knuellpap.jpg); - font-family: Helvetica, Arial, sans-serif; - margin: 0px; - padding: 0px; -} -h1 { - text-align: center; -} -div#banners { - width: 100px; - float: left; - margin-left: 10px; -} -div#content { - padding-right: 20px; - padding-left: 20px; - width: auto; - margin-left: 120px; -} -div.section { - padding: 8px; - margin-top: 0px; -} -div.section h2 { - border-bottom-width: 1px; - border-bottom-style: solid; - border-bottom-color: black; - font-size: 130%; -} -div#banners ul { - padding-left: 1em; -} -p.revision { - font-size: small; - font-style: italic; -} -a:link { - color: #005555; -} -a:visited { - color: #AA0000; -} -a:active { - color: #006666; -} -div.section h3 { - font-size: 110%; -} + /* CSS for perl-ldap site */ body,html { background-image: url(Knuellpap.jpg); font-family: Helvetica, Arial, sans-serif; margin: 0px; padding: 0px; } h1 { text-align: center; } div#banners { width: 100px; float: left; margin-left: 10px; } div#content { padding-right: 20px; padding-left: 20px; width: auto; margin-left: 120px; } div.section { padding: 8px; margin-top: 0px; } div.section h2 { border-bottom-width: 1px; border-bottom-style: solid; border-bottom-color: black; font-size: 130%; } div#banners ul { padding-left: 1em; } p.revision { font-size: small; font-style: italic; } a:link { color: #005555; } a:visited { color: #AA0000; } a:active { color: #006666; } div.section h3 { font-size: 110%; } img { border: 0px; } \ No newline at end of file |
From: Chris R. <chr...@us...> - 2003-03-14 13:20:58
|
Update of /cvsroot/perl-ldap/website In directory sc8-pr-cvs1:/tmp/cvs-serv26355 Modified Files: index.html Log Message: Added interim documentation TOC Index: index.html =================================================================== RCS file: /cvsroot/perl-ldap/website/index.html,v retrieving revision 1.29 retrieving revision 1.30 diff -u -d -r1.29 -r1.30 --- index.html 14 Mar 2003 11:03:56 -0000 1.29 +++ index.html 14 Mar 2003 13:20:55 -0000 1.30 @@ -31,9 +31,8 @@ <div class="section"> <h2>Introduction</h2> <p>LDAP is the de-facto Internet directory standard, supported by companies - such as Sun, Microsoft, IBM and Novell. LDAP is an integral part - of Internet platform offerings like Sun ONE, Microsoft Exchange, and many - others.</p> + such as Sun, Microsoft, IBM and Novell. LDAP is an integral part of Internet + platform offerings like Sun ONE, Microsoft Exchange, and many others.</p> <p>The perl-ldap distribution is a collection of perl modules which provide an object orientated interface to LDAP servers.</p> <p>The perl-ldap distribution has several advantages over other LDAP interfaces @@ -62,7 +61,69 @@ </div> <div class="section"> <h2>Documentation</h2> - <p>The POD documentation for the latest release is available <a href="http://search.cpan.org/~gbarr/perl-ldap/">online at CPAN</a>.</p> + <p>The POD documentation for the latest release is available online from + CPAN:</p> + <dl> + <dt><a name="Net::LDAP" href="http://search.cpan.org/~gbarr/perl-ldap/lib/Net/LDAP.pod">Net::LDAP</a></dt> + <dd>Lightweight Directory Access Protocol</dd> + <dt><a name="Net::LDAPS" href="http://search.cpan.org/~gbarr/perl-ldap/lib/Net/LDAPS.pm">Net::LDAPS</a></dt> + <dd>Use LDAP over an SSL connection</dd> + <dt><a name="Net::LDAP::Message" href="http://search.cpan.org/~gbarr/perl-ldap/lib/Net/LDAP/Message.pod">Net::LDAP::Message</a></dt> + <dd>Message response from LDAP server</dd> + <dt><a name="Net::LDAP::Search" href="http://search.cpan.org/~gbarr/perl-ldap/lib/Net/LDAP/Search.pod">Net::LDAP::Search</a></dt> + <dd>Object returned by Net::LDAP search method</dd> + <dt><a name="Net::LDAP::Entry" href="http://search.cpan.org/~gbarr/perl-ldap/lib/Net/LDAP/Entry.pod">Net::LDAP::Entry</a></dt> + <dd>An LDAP entry object</dd> + <dt><a name="Net::LDAP::Reference" href="http://search.cpan.org/~gbarr/perl-ldap/lib/Net/LDAP/Reference.pod">Net::LDAP::Reference</a></dt> + <dd>Search reference</dd> + <dt><a name="Net::LDAP::Filter" href="http://search.cpan.org/~gbarr/perl-ldap/lib/Net/LDAP/Filter.pod">Net::LDAP::Filter</a></dt> + <dd>Representation of LDAP filters</dd> + <dt><a name="Net::LDAP::LDIF" href="http://search.cpan.org/~gbarr/perl-ldap/lib/Net/LDAP/LDIF.pod">Net::LDAP::LDIF</a></dt> + <dd>LDIF reading and writing</dd> + <dt><a name="Net::LDAP::DSML" href="http://search.cpan.org/~gbarr/perl-ldap/lib/Net/LDAP/DSML.pm">Net::LDAP::DSML</a></dt> + <dd>DSML reading and writing</dd> + <dt><a name="Net::LDAP::Schema" href="http://search.cpan.org/~gbarr/perl-ldap/lib/Net/LDAP/Schema.pod">Net::LDAP::Schema</a></dt> + <dd>Load and manipulate an LDAP v3 Schema</dd> + <dt><a name="Net::LDAP::Constant" href="http://search.cpan.org/~gbarr/perl-ldap/lib/Net/LDAP/Constant.pod">Net::LDAP::Constant</a></dt> + <dd>Constants for use with Net::LDAP</dd> + <dt><a name="Net::LDAP::Util" href="http://search.cpan.org/~gbarr/perl-ldap/lib/Net/LDAP/Util.pm">Net::LDAP::Util</a></dt> + <dd>Utility functions</dd> + <dt><a name="Net::LDAP::Extra" href="http://search.cpan.org/~gbarr/perl-ldap/lib/Net/LDAP/Extra.pm">Net::LDAP::Extra</a></dt> + <dd>Load extra Net::LDAP methods</dd> + </dl> + <h3>LDAP v3 Server Controls</h3> + <dl> + <dt><a name="Net::LDAP::Control" href="http://search.cpan.org/~gbarr/perl-ldap/lib/Net/LDAP/Control.pm">Net::LDAP::Control</a></dt> + <dd>LDAPv3 control object base class</dd> + <dt><a name="Net::LDAP::Control::Paged" href="http://search.cpan.org/~gbarr/perl-ldap/lib/Net/LDAP/Control/Paged.pm">Net::LDAP::Control::Paged</a></dt> + <dd>LDAPv3 Paged results control object</dd> + <dt><a name="Net::LDAP::Control::ProxyAuth" href="http://search.cpan.org/~gbarr/perl-ldap/lib/Net/LDAP/Control/ProxyAuth.pm">Net::LDAP::Control::ProxyAuth</a></dt> + <dd>LDAPv3 Proxy Authentication control object</dd> + <dt><a name="Net::LDAP::Control::Sort" href="http://search.cpan.org/~gbarr/perl-ldap/lib/Net/LDAP/Control/Sort.pm">Net::LDAP::Control::Sort</a></dt> + <dd>Server Side Sort (SSS) control object</dd> + <dt><a name="Net::LDAP::Control::SortResult" href="http://search.cpan.org/~gbarr/perl-ldap/lib/Net/LDAP/Control/SortResult.pm">Net::LDAP::Control::SortResult</a></dt> + <dd>Server Side Sort (SSS) result control object</dd> + <dt><a name="Net::LDAP::Control::VLV" href="http://search.cpan.org/~gbarr/perl-ldap/lib/Net/LDAP/Control/VLV.pm">Net::LDAP::Control::VLV</a></dt> + <dd>LDAPv3 Virtual List View control object</dd> + <dt><a name="Net::LDAP::Control::VLVRresponse" href="http://search.cpan.org/~gbarr/perl-ldap/lib/Net/LDAP/Control/VLVResponse.pm">Net::LDAP::Control::VLVResponse</a></dt> + <dd>LDAPv3 Virtual List View server response</dd> + </dl> + <h3>Help</h3> + <dl> + <dt><a name="Net::LDAP::FAQ" href="http://search.cpan.org/~gbarr/perl-ldap/lib/Net/LDAP/FAQ.pod">Net::LDAP::FAQ</a></dt> + <dd>Frequently Asked Questions about Net::LDAP</dd> + <dt><a name="Net::LDAP::Examples" href="http://search.cpan.org/~gbarr/perl-ldap/lib/Net/LDAP/Examples.pod">Net::LDAP::Examples</a></dt> + <dd>PERL LDAP by Example</dd> + <dt><a name="Net::LDAP::RFC" href="http://search.cpan.org/~gbarr/perl-ldap/lib/Net/LDAP/RFC.pod">Net::LDAP::RFC</a></dt> + <dd>List of related RFCs</dd> + <dt><a name="Net::LDAP::Security" href="http://search.cpan.org/~gbarr/perl-ldap/lib/Net/LDAP/Security.pod">Net::LDAP::Security</a></dt> + <dd>Security issues with LDAP connections</dd> + </dl> + <h3>Other</h3> + <dl> + <dt><a name="Bundle::Net::LDAP" href="http://search.cpan.org/~gbarr/perl-ldap/lib/Bundle/Net/LDAP.pm">Bundle::Net::LDAP</a></dt> + <dd>A bundle for Net::LDAP</dd> + </dl> <p>At the 2001 O'Reilly Open Source Conference, Graham Barr presented <a href="perl-ldap-oscon2001.pdf">this</a> tutorial.</p> </div> <div class="section"> @@ -88,11 +149,11 @@ <h2>FAQ-O-MATIC</h2> <p>The <a href="http://perl-ldap.sourceforge.net/faqomatic/cache/1.html">Perl-LDAP Faq-o-matic</a> is back online to a certain extent, although the content - is now static. Sourceforge requires that state information be stored in - a database and the Faq-o-matic does not work that way for a number of reasons. - This means we can not update our Faq-o-matic, but we can view the static - content.</p> - </div> + is now static. Sourceforge requires that state information be stored + in a database and the Faq-o-matic does not work that way for a number + of reasons. This means we can not update our Faq-o-matic, but we can + view the static content.</p> + </div> <div class="section"> <h2>Mailing List</h2> <p>SourceForge also hosts a mailing list for the perl-ldap project. You can @@ -132,13 +193,12 @@ </div> </div> <div id="footer"> -<address> + <address> Graham Barr <a href= "mailto:gb...@po..."><gb...@po...></a> </address> - <p class="revision"> - $Id$ - </p> + <p class="revision"> $Id: index.html,v 1.29 2003/03/14 11:03:56 chrisridd Exp + $ </p> </div> </body> </html> |
From: Chris R. <chr...@us...> - 2003-03-14 13:19:41
|
Update of /cvsroot/perl-ldap/website In directory sc8-pr-cvs1:/tmp/cvs-serv25874 Modified Files: site.css Log Message: Added h3; fixed line-endings Index: site.css =================================================================== RCS file: /cvsroot/perl-ldap/website/site.css,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- site.css 13 Mar 2003 14:48:56 -0000 1.1 +++ site.css 14 Mar 2003 13:19:38 -0000 1.2 @@ -1 +1,51 @@ - /* CSS for perl-ldap site */ body,html { background-image: url(Knuellpap.jpg); font-family: Helvetica, Arial, sans-serif; margin: 0px; padding: 0px; } h1 { text-align: center; } div#banners { width: 100px; float: left; margin-left: 10px; } div#content { padding-right: 20px; padding-left: 20px; width: auto; margin-left: 120px; } div.section { padding: 8px; margin-top: 0px; } div.section h2 { border-bottom-width: 1px; border-bottom-style: solid; border-bottom-color: black; font-size: 130%; } div#banners ul { padding-left: 1em; } p.revision { font-size: small; font-style: italic; } a:link { color: #005555; } a:visited { color: #AA0000; } a:active { color: #006666; } \ No newline at end of file + /* CSS for perl-ldap site */ + +body,html { + background-image: url(Knuellpap.jpg); + font-family: Helvetica, Arial, sans-serif; + margin: 0px; + padding: 0px; +} +h1 { + text-align: center; +} +div#banners { + width: 100px; + float: left; + margin-left: 10px; +} +div#content { + padding-right: 20px; + padding-left: 20px; + width: auto; + margin-left: 120px; +} +div.section { + padding: 8px; + margin-top: 0px; +} +div.section h2 { + border-bottom-width: 1px; + border-bottom-style: solid; + border-bottom-color: black; + font-size: 130%; +} +div#banners ul { + padding-left: 1em; +} +p.revision { + font-size: small; + font-style: italic; +} +a:link { + color: #005555; +} +a:visited { + color: #AA0000; +} +a:active { + color: #006666; +} +div.section h3 { + font-size: 110%; +} |
From: Chris R. <chr...@us...> - 2003-03-14 11:22:34
|
Update of /cvsroot/perl-ldap/website/doc/Net In directory sc8-pr-cvs1:/tmp/cvs-serv15800/Net Removed Files: LDAPS.html Log Message: Removing docs from website --- LDAPS.html DELETED --- |
From: Chris R. <chr...@us...> - 2003-03-14 11:22:19
|
Update of /cvsroot/perl-ldap/website/doc/Net In directory sc8-pr-cvs1:/tmp/cvs-serv15677/Net Removed Files: LDAP.html Log Message: Removing docs from website --- LDAP.html DELETED --- |
From: Chris R. <chr...@us...> - 2003-03-14 11:21:56
|
Update of /cvsroot/perl-ldap/website/doc/Net/LDAP In directory sc8-pr-cvs1:/tmp/cvs-serv15360/Net/LDAP Removed Files: Util.html Log Message: Removing docs from website --- Util.html DELETED --- |
From: Chris R. <chr...@us...> - 2003-03-14 11:21:33
|
Update of /cvsroot/perl-ldap/website/doc/Net/LDAP In directory sc8-pr-cvs1:/tmp/cvs-serv15255/Net/LDAP Removed Files: Search.html Log Message: Removing docs from website --- Search.html DELETED --- |
From: Chris R. <chr...@us...> - 2003-03-14 11:21:19
|
Update of /cvsroot/perl-ldap/website/doc/Net/LDAP In directory sc8-pr-cvs1:/tmp/cvs-serv15150/Net/LDAP Removed Files: Schema.html Log Message: Removing docs from website --- Schema.html DELETED --- |
From: Chris R. <chr...@us...> - 2003-03-14 11:21:05
|
Update of /cvsroot/perl-ldap/website/doc/Net/LDAP In directory sc8-pr-cvs1:/tmp/cvs-serv15063/Net/LDAP Removed Files: RFC.html Log Message: Removing docs from website --- RFC.html DELETED --- |