Update of /cvsroot/perl-ldap/ldap/lib/Net/LDAP
In directory sc8-pr-cvs1:/tmp/cvs-serv12111
Modified Files:
Entry.pod
Log Message:
Updated mailing list, changed literal < and >s
Index: Entry.pod
===================================================================
RCS file: /cvsroot/perl-ldap/ldap/lib/Net/LDAP/Entry.pod,v
retrieving revision 1.10
retrieving revision 1.11
diff -u -d -r1.10 -r1.11
--- Entry.pod 22 Feb 2003 18:26:39 -0000 1.10
+++ Entry.pod 7 May 2003 10:57:16 -0000 1.11
@@ -20,16 +20,16 @@
# or
use Net::LDAP::Entry;
-
+
$entry = Net::LDAP::Entry->new;
$entry->add(
attr1 => 'value1',
attr2 => [qw(value1 value2)]
);
-
+
$entry->delete( 'unwanted' );
-
+
$entry->replace(
attr1 => 'newvalue'
attr2 => [qw(new values)]
@@ -73,7 +73,7 @@
-=item add ( ATTR => VALUE [, ATTR2 => VALUE2 ... ] )
+=item add ( ATTR =E<gt> VALUE [, ATTR2 =E<gt> VALUE2 ... ] )
Add one or more new attributes to the entry. Each value
must be a scalar variable or a reference to an array. The
@@ -160,7 +160,7 @@
-=item delete ( ATTR [ => VALUE [, ATTR2 => VALUE2... ]] )
+=item delete ( ATTR [ =E<gt> VALUE [, ATTR2 =E<gt> VALUE2... ]] )
Delete the values of given attributes from the entry. Values are
references to arrays; passing a reference to an empty array is the
@@ -202,8 +202,8 @@
not exist. In a scalar context returns the first value for the attribute
or undef if the attribute does not exist.
-The return value may be changed by OPTIONS, which is a list of name => value
-pairs, valid options are :-
+The return value may be changed by OPTIONS, which is a list of name
+=E<gt> value pairs, valid options are :-
=over 4
@@ -233,7 +233,7 @@
values for the attribute, or undef if the attribute does not exist.
$scalar = $entry->get_value('name');
-
+
$scalar will be the first value for the C<name> attribute, or C<undef> if the
entry does not contain a C<name> attribute.
@@ -251,7 +251,7 @@
-=item replace ( ATTR => VALUE [, ATTR2 => VALUE2 ... ] )
+=item replace ( ATTR =E<gt> VALUE [, ATTR2 =E<gt> VALUE2 ... ] )
Similar to add, except that the values given will replace
any values that already exist for the given attributes.
@@ -288,10 +288,10 @@
=head1 AUTHOR
-Graham Barr <gb...@po...>.
+Graham Barr E<lt>gb...@po...E<gt>.
Please report any bugs, or post any suggestions, to the perl-ldap mailing list
-<per...@li...>.
+E<lt>per...@pe...E<gt>.
=head1 COPYRIGHT
|