php-xml-parser 1.3.6-1 source package in Ubuntu

Changelog

php-xml-parser (1.3.6-1) unstable; urgency=medium

  * Team upload
  * Document source VCS
  * Drop patches, not needed anymore
  * Adapt test calls
  * Drop php-xml-rss that is going away (#783427)

 -- David Prévot <email address hidden>  Tue, 27 Oct 2015 15:41:16 -0400

Upload details

Uploaded by:
Debian PHP PEAR Maintainers
Uploaded to:
Sid
Original maintainer:
Debian PHP PEAR Maintainers
Architectures:
all
Section:
php
Urgency:
Medium Urgency

See full publishing history Publishing

Series Pocket Published Component Section

Builds

Xenial: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
php-xml-parser_1.3.6-1.dsc 1.6 KiB bfae87236f16acb03ed02d50d41e2202e31dea95e4cb89ca2b2d66203c84610f
php-xml-parser_1.3.6.orig.tar.gz 13.1 KiB 2ce86764f683be152824a1fb2d2fa1799e5858781479b29b9b4dd8f4a0b39101
php-xml-parser_1.3.6-1.debian.tar.xz 3.5 KiB 21a305fc0f0bcfd9e8da94577d2940cc07e105e3fbd0d73905f853a9d1342293

Available diffs

No changes file available.

Binary packages built by this source

php-xml-parser: XML parsing class based on PHP's bundled expat

 This is an XML parser based on PHPs built-in xml extension.
 It supports two basic modes of operation: "func" and "event". In "func" mode,
 it will look for a function named after each element (xmltag_ELEMENT for start
 tags and xmltag_ELEMENT_ for end tags), and in "event" mode it uses a set of
 generic callbacks.
 .
 Since version 1.2.0 there's a new XML_Parser_Simple class that makes parsing
 of most XML documents easier, by automatically providing a stack for the
 elements.
 Furthermore its now possible to split the parser from the handler object, so
 you do not have to extend XML_Parser anymore in order to parse a document with
 it.