From: Chris R. <chr...@us...> - 2003-05-07 11:49:29
|
Update of /cvsroot/perl-ldap/ldap/lib/Net/LDAP In directory sc8-pr-cvs1:/tmp/cvs-serv31651 Modified Files: Util.pm Log Message: Changed literal < and >s, fixed indentation (missing =back), updated mailing list Index: Util.pm =================================================================== RCS file: /cvsroot/perl-ldap/ldap/lib/Net/LDAP/Util.pm,v retrieving revision 1.15 retrieving revision 1.16 diff -u -d -r1.15 -r1.16 --- Util.pm 3 Jun 2002 15:26:46 -0000 1.15 +++ Util.pm 7 May 2003 11:49:26 -0000 1.16 @@ -246,9 +246,9 @@ =item * -Escapes all RFC 2253 special characters (",", "+", """, "\", "<", ">", -";", "#", "=", " "), slashes ("/"), and any other character where the -ASCII code is <32 as \hexpair. +Escapes all RFC 2253 special characters (",", "+", """, "\", "E<lt>", +"E<gt>", ";", "#", "=", " "), slashes ("/"), and any other character +where the ASCII code is E<lt> 32 as \hexpair. =item * @@ -374,14 +374,14 @@ For example, the DN 'OU=Sales+CN=J. Smith,DC=example,DC=net' is exploded to: [ { - 'OU' => 'Sales', - 'CN' => 'J. Smith' + 'OU' =E<gt> 'Sales', + 'CN' =E<gt> 'J. Smith' }, { - 'DC' => 'example' + 'DC' =E<gt> 'example' }, { - 'DC' => 'net' + 'DC' =E<gt> 'net' } ] @@ -392,13 +392,13 @@ e.g. '1.3.6.1.4.1.1466.0=#04024869,DC=example,DC=com' is exploded to: [ { - '1.3.6.1.4.1.1466.0' => \"\004\002Hi" + '1.3.6.1.4.1.1466.0' =E<gt> \"\004\002Hi" }, { - 'DC' => 'example' + 'DC' =E<gt> 'example' }, { - 'DC' => 'com' + 'DC' =E<gt> 'com' } ]; @@ -408,8 +408,8 @@ =item * -Unescape "\" followed by ",", "+", """, "\", "<", ">", ";", "#", "=", -" ", or a hexpair and and strings beginning with "#". +Unescape "\" followed by ",", "+", """, "\", "E<lt>", "E<gt>", ";", +"#", "=", " ", or a hexpair and and strings beginning with "#". =item * @@ -447,6 +447,8 @@ =back +=back + =cut sub ldap_explode_dn($%) { @@ -518,7 +520,7 @@ =head1 AUTHOR -Graham Barr <gb...@po...> +Graham Barr E<lt>gb...@po...E<gt> =head1 COPYRIGHT |