/usr/share/perl5/XML/GRDDL/External.pm is in libxml-grddl-perl 0.004-2.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 | package XML::GRDDL::External;
use 5.008;
use strict;
use XML::GRDDL;
our $VERSION = '0.004';
sub new
{
my ($class, $profile, $referer, $grddl_object) = @_;
# certain profiles known not to be GRDDLable
my $ignore;
foreach my $ignorant ($class->ignore)
{
if (ref $ignorant eq 'Regexp' && $profile =~ $ignorant)
{ $ignore++ && last; }
elsif (ref $ignorant eq 'CODE' && $ignorant->($profile))
{ $ignore++ && last; }
elsif ((!ref $ignorant) && $ignorant eq $profile)
{ $ignore++ && last; }
}
return __PACKAGE__->_new_ignored($profile, $referer, $grddl_object)
if $ignore; # i.e. do not bless it as a child class.
my $self = bless {
'uri' => $profile,
'referer' => $referer,
'grddl' => $grddl_object,
}, $class;
return $self;
}
sub _new_ignored
{
my ($class, $profile, $referer, $grddl_object) = @_;
my $self = bless {
'uri' => $profile,
'referer' => $referer,
'grddl' => $grddl_object,
}, $class;
return $self;
}
sub ignore
{
return;
}
sub transformations
{
return;
}
1;
__END__
=head1 NAME
XML::GRDDL::External - base class for externally loaded documents
=head1 DESCRIPTION
This is the superclass of L<XML::GRDDL::Transformation>, L<XML::GRDDL::Profile>,
and L<XML::GRDDL::Namespace>. Doesn't do much on its own.
=head1 SEE ALSO
L<XML::GRDDL>,
L<XML::GRDDL::Transformation>, L<XML::GRDDL::Profile>, L<XML::GRDDL::Namespace>.
=head1 AUTHOR
Toby Inkster E<lt>tobyink@cpan.orgE<gt>.
=head1 COPYRIGHT AND LICENCE
Copyright 2008-2012 Toby Inkster
This library is free software; you can redistribute it and/or modify it
under the same terms as Perl itself.
=head1 DISCLAIMER OF WARRANTIES
THIS PACKAGE IS PROVIDED "AS IS" AND WITHOUT ANY EXPRESS OR IMPLIED
WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED WARRANTIES OF
MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE.
|