File: control

package info (click to toggle)
libxml-libxml-debugging-perl 0.103-2
  • links: PTS, VCS
  • area: main
  • in suites: buster, stretch
  • size: 164 kB
  • ctags: 21
  • sloc: perl: 204; makefile: 13
file content (41 lines) | stat: -rw-r--r-- 1,563 bytes parent folder | download | duplicates (2)
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
Source: libxml-libxml-debugging-perl
Section: perl
Priority: optional
Build-Depends: cdbs,
 devscripts,
 perl,
 debhelper,
 dh-buildinfo,
 libhtml-html5-entities-perl,
 libxml-libxml-perl
Maintainer: Debian Perl Group <pkg-perl-maintainers@lists.alioth.debian.org>
Uploaders: Jonas Smedegaard <dr@jones.dk>,
 Florian Schlichting <fsfs@debian.org>
Standards-Version: 3.9.6
Vcs-Git: git://anonscm.debian.org/git/pkg-perl/packages/libxml-libxml-debugging-perl
Vcs-Browser: https://anonscm.debian.org/cgit/pkg-perl/packages/libxml-libxml-debugging-perl.git
Homepage: https://metacpan.org/release/XML-LibXML-Debugging

Package: libxml-libxml-debugging-perl
Architecture: all
Depends: ${perl:Depends}, ${misc:Depends}, ${cdbs:Depends}
Description: get debugging information from XML::LibXML
 XML::LibXML::Debugging is a Perl library which adds a couple of
 additional methods to XML::LibXML::Node objects which are mostly aimed
 at helping figure out what's going on with the DOM's namespaces and
 structure. "toClarkML" produces a string of XML-like markup with
 explicit namespaces. The following XML:
 .
      <foo xmlns="http://example.com/1"
           xmlns:bar="http://example.com/2"
           bar:baz="quux" />
 .
 Might be represented as:
 .
      <{http://example.com/1}foo
           {http://www.w3.org/2000/xmlns/}XMLNS="http://example.com/1"
           {http://www.w3.org/2000/xmlns/}bar="http://example.com/2"
           {http://example.com/2}baz="quux" />
 .
 Another method "toDebuggingHash" returns a hashref suitable for dumping
 using Data::Dumper.