File: control

package info (click to toggle)
libxml-tokeparser-perl 0.05-6
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 136 kB
  • sloc: perl: 279; xml: 252; makefile: 2
file content (34 lines) | stat: -rw-r--r-- 1,527 bytes parent folder | download
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
Source: libxml-tokeparser-perl
Maintainer: Debian Perl Group <pkg-perl-maintainers@lists.alioth.debian.org>
Uploaders: Nathan Scott <nathans@debian.org>
Section: perl
Priority: optional
Testsuite: autopkgtest-pkg-perl
Build-Depends: debhelper-compat (= 13)
Build-Depends-Indep: perl,
                     libxml-parser-perl
Standards-Version: 4.7.0
Vcs-Browser: https://salsa.debian.org/perl-team/modules/packages/libxml-tokeparser-perl
Vcs-Git: https://salsa.debian.org/perl-team/modules/packages/libxml-tokeparser-perl.git
Homepage: https://metacpan.org/release/XML-TokeParser
Rules-Requires-Root: no

Package: libxml-tokeparser-perl
Architecture: all
Depends: libxml-parser-perl,
         ${perl:Depends},
         ${misc:Depends}
Description: Simplified interface to XML::Parser
 XML::TokeParser provides a procedural ("pull mode") interface to XML::Parser
 in much the same way that Gisle Aas' HTML::TokeParser provides a procedural
 interface to HTML::Parser. XML::TokeParser splits its XML input up into
 "tokens", each corresponding to an XML::Parser event.
 .
 A token is a bless'd reference to an array whose first element is an
 event-type string and whose last element is the literal text of the XML
 input that generated the event, with intermediate elements varying according
 to the event type.
 .
 Each token is an object of type XML::TokeParser::Token. Read
 XML::TokeParser::Token in the XML::TokeParser(3pm) manpage to learn what
 methods are available for inspecting the token, and retrieving data from it.