libxml-parser-easytree-perl 0.01-2 source package in Ubuntu

Changelog

libxml-parser-easytree-perl (0.01-2) unstable; urgency=medium

  [ Salvatore Bonaccorso ]
  * debian/control: Use HTTPS transport protocol for Vcs-Git URI
  * Update Vcs-* headers for switch to salsa.debian.org

  [ gregor herrmann ]
  * debian/copyright: change Copyright-Format 1.0 URL to HTTPS.
  * debian/watch: use uscan version 4.

  [ Debian Janitor ]
  * Bump debhelper from old 12 to 13.

  [ Doug Torrance ]
  * debian/control
    - Update my email address; now a Debian Developer.
    - Set Rules-Requires-Root to no.
    - Bump Standards-Version to 4.6.0.
  * debian/copyright
    - Update my copyright years and email address.

 -- Doug Torrance <email address hidden>  Wed, 22 Dec 2021 23:48:31 -0500

Upload details

Uploaded by:
Debian Perl Group
Uploaded to:
Sid
Original maintainer:
Debian Perl Group
Architectures:
all
Section:
misc
Urgency:
Medium Urgency

See full publishing history Publishing

Series Pocket Published Component Section
Oracular release universe misc
Noble release universe misc
Mantic release universe misc
Lunar release universe misc
Jammy release universe misc

Builds

Jammy: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
libxml-parser-easytree-perl_0.01-2.dsc 2.2 KiB d6317321e481ceb021ccedce3350d2f382ed3042d17c29ae6e59fcf4c01b862b
libxml-parser-easytree-perl_0.01.orig.tar.gz 3.2 KiB 022a5747520c8dad3e9b1f28e1f7f201996ebcc6573e780eb47df61c10dd5bb6
libxml-parser-easytree-perl_0.01-2.debian.tar.xz 2.1 KiB eb0e995ed28a80977e8f4bad226695c6a594ade3fea2f8ccd93dfab623609070

Available diffs

No changes file available.

Binary packages built by this source

libxml-parser-easytree-perl: easier tree style for XML::Parser

 XML::Parser::EasyTree adds a new "built-in" style called "EasyTree" to
 XML::Parser. Like XML::Parser's "Tree" style, setting this style causes the
 parser to build a lightweight tree structure representing the XML document.
 This structure is, at least in this author's opinion, easier to work with
 than the one created by the built-in style.
 .
 When the parser is invoked with the EasyTree style, it returns a reference to
 an array of tree nodes, each of which is a hash reference. All nodes have a
 'type' key whose value is the type of the node: 'e' for element nodes, 't'
 for text nodes, and 'p' for processing instruction nodes. All nodes also have
 a 'content' key whose value is a reference to an array holding the element's
 child nodes for element nodes, the string value for text nodes, and the data
 value for processing instruction nodes. Element nodes also have an 'attrib'
 key whose value is a reference to a hash of attribute names and values.
 Processing instructions also have a 'target' key whose value is the PI's
 target.