diff options
Diffstat (limited to 'lib/URI/ldapi.pm')
| -rw-r--r-- | lib/URI/ldapi.pm | 30 |
1 files changed, 0 insertions, 30 deletions
diff --git a/lib/URI/ldapi.pm b/lib/URI/ldapi.pm deleted file mode 100644 index d92b13f..0000000 --- a/lib/URI/ldapi.pm +++ /dev/null @@ -1,30 +0,0 @@ -package URI::ldapi; - -use strict; - -use vars qw(@ISA); - -require URI::_generic; -require URI::_ldap; -@ISA=qw(URI::_ldap URI::_generic); - -require URI::Escape; - -sub un_path { - my $self = shift; - my $old = URI::Escape::uri_unescape($self->authority); - if (@_) { - my $p = shift; - $p =~ s/:/%3A/g; - $p =~ s/\@/%40/g; - $self->authority($p); - } - return $old; -} - -sub _nonldap_canonical { - my $self = shift; - $self->URI::_generic::canonical(@_); -} - -1; |
