PHP 7.4.33
Preview: urn.pm Size: 2.15 KB
/home/godevadmin/public_html/upload_images/home/000~ROOT~000/usr/share/perl5/URI/urn.pm

package URI::urn;  # RFC 2141

use strict;
use warnings;

our $VERSION = '1.73';
$VERSION = eval $VERSION;

use parent 'URI';

use Carp qw(carp);

my %implementor;
my %require_attempted;

sub _init {
    my $class = shift;
    my $self = $class->SUPER::_init(@_);
    my $nid = $self->nid;

    my $impclass = $implementor{$nid};
    return $impclass->_urn_init($self, $nid) if $impclass;

    $impclass = "URI::urn";
    if ($nid =~ /^[A-Za-z\d][A-Za-z\d\-]*\z/) {
	my $id = $nid;
	# make it a legal perl identifier
	$id =~ s/-/_/g;
	$id = "_$id" if $id =~ /^\d/;

	$impclass = "URI::urn::$id";
	no strict 'refs';
	unless (@{"${impclass}::ISA"}) {
            if (not exists $require_attempted{$impclass}) {
                # Try to load it
                my $_old_error = $@;
                eval "require $impclass";
                die $@ if $@ && $@ !~ /Can\'t locate.*in \@INC/;
                $@ = $_old_error;
            }
	    $impclass = "URI::urn" unless @{"${impclass}::ISA"};
	}
    }
    else {
	carp("Illegal namespace identifier '$nid' for URN '$self'") if $^W;
    }
    $implementor{$nid} = $impclass;

    return $impclass->_urn_init($self, $nid);
}

sub _urn_init {
    my($class, $self, $nid) = @_;
    bless $self, $class;
}

sub _nid {
    my $self = shift;
    my $opaque = $self->opaque;
    if (@_) {
	my $v = $opaque;
	my $new = shift;
	$v =~ s/[^:]*/$new/;
	$self->opaque($v);
	# XXX possible rebless
    }
    $opaque =~ s/:.*//s;
    return $opaque;
}

sub nid {  # namespace identifier
    my $self = shift;
    my $nid = $self->_nid(@_);
    $nid = lc($nid) if defined($nid);
    return $nid;
}

sub nss {  # namespace specific string
    my $self = shift;
    my $opaque = $self->opaque;
    if (@_) {
	my $v = $opaque;
	my $new = shift;
	if (defined $new) {
	    $v =~ s/(:|\z).*/:$new/;
	}
	else {
	    $v =~ s/:.*//s;
	}
	$self->opaque($v);
    }
    return undef unless $opaque =~ s/^[^:]*://;
    return $opaque;
}

sub canonical {
    my $self = shift;
    my $nid = $self->_nid;
    my $new = $self->SUPER::canonical;
    return $new if $nid !~ /[A-Z]/ || $nid =~ /%/;
    $new = $new->clone if $new == $self;
    $new->nid(lc($nid));
    return $new;
}

1;

Directory Contents

Dirs: 2 × Files: 43

Name Size Perms Modified Actions
file DIR
- drwxr-xr-x 2024-08-07 14:24:37
Edit Download
urn DIR
- drwxr-xr-x 2024-08-07 14:24:37
Edit Download
3.34 KB lrw-r--r-- 2018-01-09 06:42:55
Edit Download
6.90 KB lrw-r--r-- 2018-01-09 06:42:55
Edit Download
9.53 KB lrw-r--r-- 2018-01-09 06:42:55
Edit Download
1.06 KB lrw-r--r-- 2018-01-09 06:42:55
Edit Download
2.40 KB lrw-r--r-- 2018-01-09 06:42:55
Edit Download
6.37 KB lrw-r--r-- 2018-01-09 06:42:55
Edit Download
451 B lrw-r--r-- 2018-01-09 06:42:55
Edit Download
170 B lrw-r--r-- 2018-01-09 06:42:55
Edit Download
820 B lrw-r--r-- 2018-01-09 06:42:55
Edit Download
2.88 KB lrw-r--r-- 2018-01-09 06:42:55
Edit Download
467 B lrw-r--r-- 2018-01-09 06:42:55
Edit Download
170 B lrw-r--r-- 2018-01-09 06:42:55
Edit Download
1.27 KB lrw-r--r-- 2018-01-09 06:42:55
Edit Download
151 B lrw-r--r-- 2018-01-09 06:42:55
Edit Download
1.45 KB lrw-r--r-- 2018-01-09 06:42:55
Edit Download
153 B lrw-r--r-- 2018-01-09 06:42:55
Edit Download
1.20 KB lrw-r--r-- 2018-01-09 06:42:55
Edit Download
4.77 KB lrw-r--r-- 2018-01-09 06:42:55
Edit Download
155 B lrw-r--r-- 2018-01-09 06:42:55
Edit Download
233 B lrw-r--r-- 2018-01-09 06:42:55
Edit Download
151 B lrw-r--r-- 2018-01-09 06:42:55
Edit Download
152 B lrw-r--r-- 2018-01-09 06:42:55
Edit Download
124 B lrw-r--r-- 2018-01-09 06:42:55
Edit Download
1.69 KB lrw-r--r-- 2018-01-09 06:42:55
Edit Download
169 B lrw-r--r-- 2018-01-09 06:42:55
Edit Download
198 B lrw-r--r-- 2018-01-09 06:42:55
Edit Download
2.32 KB lrw-r--r-- 2018-01-09 06:42:55
Edit Download
201 B lrw-r--r-- 2018-01-09 06:42:55
Edit Download
154 B lrw-r--r-- 2018-01-09 06:42:55
Edit Download
154 B lrw-r--r-- 2018-01-09 06:42:55
Edit Download
5.36 KB lrw-r--r-- 2018-01-09 06:42:55
Edit Download
2.15 KB lrw-r--r-- 2018-01-09 06:42:55
Edit Download
3.77 KB lrw-r--r-- 2018-01-09 06:42:55
Edit Download
133 B lrw-r--r-- 2018-01-09 06:42:55
Edit Download
5.71 KB lrw-r--r-- 2018-01-09 06:42:55
Edit Download
2.06 KB lrw-r--r-- 2018-01-09 06:42:55
Edit Download
3.20 KB lrw-r--r-- 2018-01-09 06:42:55
Edit Download
257 B lrw-r--r-- 2018-01-09 06:42:55
Edit Download
5.52 KB lrw-r--r-- 2018-01-09 06:42:55
Edit Download
2.50 KB lrw-r--r-- 2018-01-09 06:42:55
Edit Download
442 B lrw-r--r-- 2018-01-09 06:42:55
Edit Download
3.66 KB lrw-r--r-- 2018-01-09 06:42:55
Edit Download
1.04 KB lrw-r--r-- 2018-01-09 06:42:55
Edit Download

If ZipArchive is unavailable, a .tar will be created (no compression).