Skip to content

Commit

Permalink
make PODs podchecker-clean
Browse files Browse the repository at this point in the history
  • Loading branch information
marschap committed Oct 3, 2005
1 parent d6b7568 commit b5e33d1
Show file tree
Hide file tree
Showing 15 changed files with 49 additions and 48 deletions.
16 changes: 8 additions & 8 deletions contrib/jpegDisplay.pl
Expand Up @@ -241,32 +241,32 @@ =head1 Input options.
=head1 REQUIREMENTS
To use this program you will need the following.
At least PERL version 5.004. You can get a stable version of PERL
from the following URL;
http://cpan.org/src/index.html
Perl LDAP module. You can get this from the following URL;
ftp://ftp.duke.edu/pub/CPAN/modules/by-module/Net/
Perl Tk.800.22 module. You can get this from the following URL;
ftp://ftp.duke.edu/pub/CPAN/modules/by-module/Net/
Perl Tk-JPEG-2.014 module. You can get this from the following URL;
ftp://ftp.duke.edu/pub/CPAN/modules/by-module/Net/
Bundled inside each PERL module is instructions on how to install the
module into your PERL system.
-------------------------------------------------------------------
=head1 INSTALLING THE SCRIPT
Install the jpegDisplay.pl script anywhere you wish, I suggest
/usr/local/bin/jpegDisplay.pl.
-------------------------------------------------------------------
Since the script is in PERL, feel free to modify it if it does not
meet your needs. This is one of the main reasons I did it in PERL.
If you make an addition to the code that you feel other individuals
Expand Down
12 changes: 6 additions & 6 deletions contrib/jpegLoad.pl
Expand Up @@ -260,26 +260,26 @@ =head1 Input options.
=head1 REQUIREMENTS
To use this program you will need the following.
At least PERL version 5.004. You can get a stable version of PERL
from the following URL;
http://cpan.org/src/index.html
Perl LDAP module. You can get this from the following URL;
ftp://ftp.duke.edu/pub/CPAN/modules/by-module/Net/
Bundled inside each PERL module is instructions on how to install the
module into your PERL system.
-------------------------------------------------------------------
=head1 INSTALLING THE SCRIPT
Install the jpegLoad.pl script anywhere you wish, I suggest
/usr/local/bin/jpegLoad.pl.
-------------------------------------------------------------------
Since the script is in PERL, feel free to modify it if it does not
meet your needs. This is one of the main reasons I did it in PERL.
If you make an addition to the code that you feel other individuals
Expand Down
2 changes: 0 additions & 2 deletions contrib/ldifdiff.pl
Expand Up @@ -283,8 +283,6 @@ sub updateFromEntry
}


=back
=head1 AUTHOR
Kartik Subbarao E<lt>subbarao@computer.orgE<gt>
Expand Down
1 change: 0 additions & 1 deletion contrib/printMembers.pl
Expand Up @@ -234,7 +234,6 @@ =head1 NAME
printMembers.pl
=head1 DESCRIPTION
Prints out the members of a given group, including members of groups that are also members of the given group.
Expand Down
2 changes: 1 addition & 1 deletion contrib/tklkup
Expand Up @@ -5730,7 +5730,7 @@ SAVE FORMAT frame.
-------------------------------------------------------------------
=head1 SEARCH DISPLAY PANEL
The I<SEARCH DISPLAY> is the panel where data for the
selected DN is displayed. Data is displayed in the read only
Directory Data text box. Associated with the Directory Data
Expand Down
32 changes: 16 additions & 16 deletions lib/Net/LDAP.pod
Expand Up @@ -5,30 +5,30 @@ Net::LDAP - Lightweight Directory Access Protocol
=head1 SYNOPSIS

use Net::LDAP;

$ldap = Net::LDAP->new( 'ldap.bigfoot.com' ) or die "$@";

$mesg = $ldap->bind ; # an anonymous bind

$mesg = $ldap->search( # perform a search
base => "c=US",
filter => "(&(sn=Barr) (o=Texas Instruments))"
);

$mesg->code && die $mesg->error;

foreach $entry ($mesg->entries) { $entry->dump; }

$mesg = $ldap->unbind; # take down session


$ldap = Net::LDAP->new( 'ldap.umich.edu' );

# bind to a directory with dn and password
$mesg = $ldap->bind( 'cn=root, o=University of Michigan, c=us',
password => 'secret'
);

$result = $ldap->add( 'cn=Barbara Jensen, o=University of Michigan, c=US',
attr => [
'cn' => ['Barbara Jensen', 'Barbs Jensen'],
Expand All @@ -39,7 +39,7 @@ Net::LDAP - Lightweight Directory Access Protocol
'inetOrgPerson' ],
]
);

$result->code && warn "failed to add entry: ", $result->error ;
$mesg = $ldap->unbind; # take down session

Expand Down Expand Up @@ -434,13 +434,13 @@ See L</CALLBACKS> below.
B<Example>

$mesg = $ldap->modify( $dn, add => { sn => 'Barr' } );

$mesg = $ldap->modify( $dn, delete => [qw(faxNumber)] );

$mesg = $ldap->modify( $dn, delete => { 'telephoneNumber' => '911' } );

$mesg = $ldap->modify( $dn, replace => { 'mail' => 'gbarr@pobox.com' } );

$mesg = $ldap->modify( $dn,
changes => [
# add sn=Barr
Expand Down Expand Up @@ -596,7 +596,7 @@ B<Example>
scope => 'sub',
filter => '(|(objectclass=rfc822mailgroup)(sn=jones))'
);

Net::LDAP::LDIF->new( \*STDOUT,"w" )->write( $mesg->entries );

=item start_tls ( OPTIONS )
Expand Down
4 changes: 4 additions & 0 deletions lib/Net/LDAP/Constant.pm
Expand Up @@ -441,6 +441,8 @@ The referral hop limit has been exceeded.
=head2 Control OIDs
=over 4
=item LDAP_CONTROL_SORTREQUEST (1.2.840.113556.1.4.473)
=item LDAP_CONTROL_SORTRESULT (1.2.840.113556.1.4.474)
Expand Down Expand Up @@ -469,6 +471,8 @@ The referral hop limit has been exceeded.
=item LDAP_CONTROL_REFERRALS (1.2.840.113556.1.4.616)
=back
=head2 Extension OIDs
B<Net::LDAP::Constant> exports constant subroutines for the following LDAP
Expand Down
2 changes: 1 addition & 1 deletion lib/Net/LDAP/Control/VLV.pm
Expand Up @@ -265,7 +265,7 @@ Net::LDAP::Control::VLV - LDAPv3 Virtual List View control object
$vlv->before(9); # Change page to show 9 before
$vlv->after(10); # Change page to show 10 after
$vlv->assert("B"); # assert "B"
$mesg = $ldap->search( @args );
=head1 DESCRIPTION
Expand Down
4 changes: 2 additions & 2 deletions lib/Net/LDAP/DSML.pm
Expand Up @@ -703,7 +703,7 @@ NET::LDAP::DSML -- A DSML Writer for Net::LDAP
my $server = "localhost";
my $file = "testdsml.xml";
my $ldap = Net::LDAP->new($server);
$ldap->bind();
Expand Down Expand Up @@ -759,7 +759,7 @@ NET::LDAP::DSML -- A DSML Writer for Net::LDAP
my @data = ();
my $dsml = Net::LDAP::DSML->new(output => \@data, pretty_print => 1 )
or die ("DSML object creation problem using an output array.\n");
$dsml->write_schema($schema);
print "Finished printing DSML\n";
Expand Down
2 changes: 1 addition & 1 deletion lib/Net/LDAP/Extension/SetPassword.pm
Expand Up @@ -60,7 +60,7 @@ Net::LDAP::Extension::SetPassword - LDAPv3 Modify Password extension object
$mesg = $ldap->set_password( oldpasswd => 'oldPassword' );
die "error: ", $mesg->code(), ": ", $mesg->error() if ($mesg->code());
print "changed your password to", $mesg->gen_password() , "\n";
Expand Down
2 changes: 1 addition & 1 deletion lib/Net/LDAP/Extension/WhoAmI.pm
Expand Up @@ -35,7 +35,7 @@ Net::LDAP::Extension::WhoAmI - LDAP "Who am I?" Operation
$mesg = $ldap->who_am_i();
die "error: ", $mesg->code(), ": ", $mesg->error() if ($mesg->code());
print "you are bound with authzId ", $mesg->response(), "\n";
Expand Down
8 changes: 4 additions & 4 deletions lib/Net/LDAP/FAQ.pod
Expand Up @@ -62,7 +62,7 @@ Archives with messages before we switched to using perl.org can be
found at

http://marc.theaimsgroup.com/?l=perl-ldap-dev

There is also an archive of the perl-ldap mailing list at

http://www.xray.mpe.mpg.de/mailing-lists/perl-ldap/
Expand Down Expand Up @@ -997,7 +997,7 @@ that is supplied with the PERL-LDAP distribution. This is an
excellent source of information on how to use the PERL-LDAP module.

=head2 Are there any performance issues with perl-ldap ?

In the vast majority of use cases (one user has suggested 9 out of 10)
there are no performance issues with perl-ldap.

Expand Down Expand Up @@ -1222,7 +1222,7 @@ replace the placeholders.

=head2 Ho do I reset a user's password ...

=head2 Z<>... in most LDAP servers ?
=head3 Z<>... in most LDAP servers ?

Most LDAP servers use the standard userPassword attribute as the
attribute to set when you want to change a user's password.
Expand Down Expand Up @@ -1298,7 +1298,7 @@ sake error checking is left out):

$ldap->unbind();

=head2 Z<>... in MS Active Directory ?
=head3 Z<>... in MS Active Directory ?

With Active Directory a user's password is stored in the unicodePwd
attribute and changed using the regular modify operation.
Expand Down
4 changes: 2 additions & 2 deletions lib/Net/LDAP/Filter.pod
Expand Up @@ -71,8 +71,8 @@ RFC-2254 http://www.ietf.org/rfc/rfc2254.txt
attr = AttributeDescription from Section 4.1.5 of RFC-2251
matchingrule = MatchingRuleId from Section 4.1.9 of RFC-2251
value = AttributeValue from Section 4.1.6 of RFC-2251


Special Character encodings
---------------------------
* \2a, \*
Expand Down
2 changes: 1 addition & 1 deletion lib/Net/LDAP/Search.pod
Expand Up @@ -70,7 +70,7 @@ list of L<Net::LDAP::Reference> objects.

=item sorted ( )

Return a list L<Net::LDAP:Entry> objects, sorted by their DNs.
Return a list L<Net::LDAP::Entry> objects, sorted by their DNs.

The sorting is done on the client side using Perl's alphanumerical
sort operator C<cmp>.
Expand Down
4 changes: 2 additions & 2 deletions lib/Net/LDAP/Util.pm
Expand Up @@ -238,7 +238,7 @@ B<OPTIONS> is a list of name/value pairs, valid options are:
Controls case folding of attribute type names. Attribute values are not
affected by this option. The default is to uppercase. Valid values are:
=over 4
=item lower
Expand Down Expand Up @@ -395,7 +395,7 @@ B<OPTIONS> is a list of name/value pairs, valid options are:
Controls case folding of attribute types names. Attribute values are not
affected by this option. The default is to uppercase. Valid values are:
=over 4
=item lower
Expand Down

0 comments on commit b5e33d1

Please sign in to comment.