/usr/share/perl5/Catmandu/XML.pm is in libcatmandu-xml-perl 0.16-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 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 | package Catmandu::XML;
our $VERSION = '0.16';
__END__
=head1 NAME
Catmandu::XML - modules for handling XML data within the Catmandu framework
=begin markdown
# Status
[![Build Status](https://travis-ci.org/LibreCat/Catmandu-XML.png)](https://travis-ci.org/LibreCat/Catmandu-XML)
[![Coverage Status](https://coveralls.io/repos/LibreCat/Catmandu-XML/badge.png)](https://coveralls.io/r/LibreCat/Catmandu-XML)
[![Kwalitee Score](http://cpants.cpanauthors.org/dist/Catmandu-XML.png)](http://cpants.cpanauthors.org/dist/Catmandu-XML)
=end markdown
=head1 DESCRIPTION
L<Catmandu::XML> contains modules for handling XML data within the L<Catmandu>
framework. Parsing and serializing is based on L<XML::LibXML> with
L<XML::Struct>. XSLT transormation is based on L<XML::LibXSLT>.
=head1 MODULES
=over 4
=item L<Catmandu::Importer::XML>
Import serialized XML documents as data structures.
=item L<Catmandu::Exporter::XML>
Serialize data structures as XML documents.
=item L<Catmandu::XML::Transformer>
Utility module for XML/XSLT processing.
=item L<Catmandu::Fix::xml_read>
Fix function to parse XML to MicroXML as implemented by L<XML::Struct>.
=item L<Catmandu::Fix::xml_write>
Fix function to seralize XML.
=item L<Catmandu::Fix::xml_simple>
Fix function to parse XML or convert MicroXML to simple form as known from
L<XML::Simple>.
=item L<Catmandu::Fix::xml_transform>
Fix function to transform XML using XSLT stylesheets.
=back
=head1 SEE ALSO
This module requires the libraries C<libxml2> and C<libxslt>. For instance on
Ubuntu Linux call C<sudo apt-get install libxslt-dev libxml2-dev> before
installation of Catmandu::XML.
=encoding utf8
=head1 COPYRIGHT AND LICENSE
Copyright Jakob Voss, 2014-
This is free software; you can redistribute it and/or modify it under the same
terms as the Perl 5 programming language system itself.
=cut
|