/usr/share/perl5/XML/Compile/Util.pm is in libxml-compile-perl 1.42-1.
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 | # Copyrights 2006-2014 by [Mark Overmeer].
# For other contributors see ChangeLog.
# See the manual pages for details on the licensing terms.
# Pod stripped from pm file by OODoc 2.01.
use warnings;
use strict;
package XML::Compile::Util;
use vars '$VERSION';
$VERSION = '1.42';
use base 'Exporter';
my @constants = qw/XMLNS SCHEMA1999 SCHEMA2000 SCHEMA2001 SCHEMA2001i/;
our @EXPORT = qw/pack_type unpack_type/;
our @EXPORT_OK =
( qw/pack_id unpack_id odd_elements even_elements type_of_node escape/
, @constants
);
our %EXPORT_TAGS = (constants => \@constants);
use constant XMLNS => 'http://www.w3.org/XML/1998/namespace';
use constant SCHEMA1999 => 'http://www.w3.org/1999/XMLSchema';
use constant SCHEMA2000 => 'http://www.w3.org/2000/10/XMLSchema';
use constant SCHEMA2001 => 'http://www.w3.org/2001/XMLSchema';
use constant SCHEMA2001i => 'http://www.w3.org/2001/XMLSchema-instance';
use Log::Report 'xml-compile';
sub pack_type($;$)
{ @_==1 ? $_[0]
: !defined $_[0] || !length $_[0] ? $_[1]
: "{$_[0]}$_[1]"
}
sub unpack_type($) { $_[0] =~ m/^\{(.*?)\}(.*)$/ ? ($1, $2) : ('', $_[0]) }
sub pack_id($$) { "$_[0]#$_[1]" }
sub unpack_id($) { split /\#/, $_[0], 2 }
sub odd_elements(@) { my $i = 0; map {$i++ % 2 ? $_ : ()} @_ }
sub even_elements(@) { my $i = 0; map {$i++ % 2 ? () : $_} @_ }
sub type_of_node($)
{ my $node = shift or return ();
pack_type $node->namespaceURI, $node->localName;
}
1;
|