libxml-parser-perl 2.41-3 source package in Ubuntu

Changelog

libxml-parser-perl (2.41-3) unstable; urgency=medium


  [ Salvatore Bonaccorso ]
  * Update Vcs-Browser URL to cgit web frontend

  [ Niko Tyni ]
  * Add autopkgtest support.
  * Fix outdated vendorarch directory in doc-base file lists. (Closes: #758294)

 -- Niko Tyni <email address hidden>  Sat, 06 Sep 2014 18:28:21 +0300

Upload details

Uploaded by:
Debian Perl Group
Uploaded to:
Sid
Original maintainer:
Debian Perl Group
Architectures:
any
Section:
perl
Urgency:
Medium Urgency

See full publishing history Publishing

Series Pocket Published Component Section

Downloads

File Size SHA-256 Checksum
libxml-parser-perl_2.41-3.dsc 2.1 KiB 077b357b7a2a8fc7da1f8653b57be198a304cc10591c74e1cb4a68d27d04820b
libxml-parser-perl_2.41.orig.tar.gz 232.9 KiB b48197cd2265a26c5f016489f11a7b450d8833cb8b3d6a46ee15975740894de9
libxml-parser-perl_2.41-3.debian.tar.xz 50.6 KiB c056a055bda1ecf9b64cc2004cd2addbc349a21bed6128d2bd73794f8c619752

No changes file available.

Binary packages built by this source

libxml-parser-perl: Perl module for parsing XML files

 The XML::Parser module provides ways to parse XML documents. It is built on
 top of XML::Parser::Expat, which is a lower level interface to James Clark's
 expat library. Each call to one of the parsing methods creates a new instance
 of XML::Parser::Expat which is then used to parse the document. Expat options
 may be provided when the XML::Parser object is created. These options are
 then passed on to the Expat object on each parse call. They can also be given
 as extra arguments to the parse methods, in which case they override options
 given at XML::Parser creation time.
 .
 The behavior of the parser is controlled either by Style and/or Handlers
 options, or by setHandlers method. These all provide mechanisms for
 XML::Parser to set the handlers needed by XML::Parser::Expat. If neither
 Style nor Handlers are specified, then parsing just checks the document for
 being well-formed.
 .
 When underlying handlers get called, they receive as their first parameter
 the Expat object, not the Parser object.