XML::DT 0.45 review

Download
by rbytes.net on

XML::DT is a package for down translation of XML files. SYNOPSIS use XML::DT; %xml=( 'music' => sub{"Music from: $cn"},

License: Perl Artistic License
File size: 28K
Developer: Jose Joao Almeida and Alberto Manuel Simoes
0 stars award from rbytes.net

XML::DT is a package for down translation of XML files.

SYNOPSIS

use XML::DT;

%xml=( 'music' => sub{"Music from: $cn"},
'lyrics' => sub{"Lyrics from: $v{name}n"},
'title' => sub{ uc($c) },
'-default' => sub{"$q:$c"} );

print dt($filename,%xml);

ABSTRACT

This module is a XML down processor. It maps tag (element) names to functions to process that element and respective contents.

This module processes XML files with an approach similar to OMNIMARK. As XML parser it uses XML::Parser or XML::LibXML module in an independent way. At configure stage, you should choose one of the back-ends.

Requirements:
Perl

XML::DT 0.45 keywords