Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

xml::tmx::frompo(3pm) [debian man page]

XML::TMX::FromPO(3pm)					User Contributed Perl Documentation				     XML::TMX::FromPO(3pm)

NAME
XML::TMX::FromPO - Generates a TMX file from a group of PO files SYNOPSIS
use XML::TMX::FromPO; my $conv = new XML::TMX::FromPO(OUTPUT => '%f.tmx'); DESCRIPTION
This module can be used to generate TMX files from a group of PO files. METHODS
The following methods are available: new $tmx = new XML::TMX::FromPO(); Creates a new XML::TMX::FromPO object. Please check the COMMON CONFIGURATION section for details on the options. rec_get_po TODO: Document method parse_dir TODO: Document method create_tmx TODO: Document function clean_tmx TODO: Document method COMMON CONFIGURATION
These configuration options can be passed to all methods in the module: LANG => 'list' A case insensitive list of regular expression separated by whitespaces that matches the code of the languages that are to be processed. Defaults to all. CONVERT => 'iconv -f %t -t utf8 < %f' A string that contains the command to convert a file (%f) from some charset (%t) to Unicode. If none is specified, the module tries to use recode(1), if it fails then the module defaults to iconv(1). OUTPUT => 'x.tmx' The name of the output file. If none is specified it defaults to the standard output. DEBUG => 1 Activate debugging information. Defaults to 0. SEE ALSO
XML::TMX::Writer(3), gettext(1), recode(1), iconv(1) AUTHOR
Paulo Jorge Jesus Silva, <paulojjs@bragatel.pt> COPYRIGHT AND LICENSE
Copyright 2003 by Paulo Jorge Jesus Silva This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself. perl v5.14.2 2012-06-06 XML::TMX::FromPO(3pm)

Check Out this Related Man Page

Template::XML(3pm)					User Contributed Perl Documentation					Template::XML(3pm)

NAME
Template::XML - XML plugins for the Template Toolkit SYNOPSIS
[% USE XML; dom = XML.dom('foo.xml'); xpath = XML.xpath('bar.xml'); simple = XML.simple('baz.xml'); rss = XML.simple('news.rdf'); %] DESCRIPTION
The Template-XML distribution provides a number of Template Toolkit plugin modules for working with XML. The Template::Plugin::XML module is a front-end to the various other XML plugin modules. Through this you can access XML files and direc- tories of XML files via the Template::Plugin::XML::File and Template::Plugin::XML::Directory modules (which subclass from the Tem- plate::Plugin::File and Template::Plugin::Directory modules respectively). You can then create a Document Object Model (DOM) from an XML file (Template::Plugin::XML::DOM), examine it using XPath queries (Template::Plugin::XML::XPath), turn it into a Perl data structure (Tem- plate::Plugin::XML::Simple) or parse it as an RSS (RDF Site Summary) file. The basic XML plugins were distributed as part of the Template Toolkit until version 2.15 released in May 2006. At this time they were extracted into this separate Template-XML distribution and an alpha version of this Template::Plugin::XML front-end module was added. AUTHORS
Andy Wardley wrote the Template Toolkit plugin modules, with assistance from Simon Matthews in the case of the XML::DOM plugin. Matt Sergeant wrote the XML::XPath module. Enno Derksen and Clark Cooper wrote the XML::DOM module. Jonathan Eisenzopf wrote the XML::RSS mod- ule. Grant McLean wrote the XML::Simple module. Clark Cooper and Larry Wall wrote the XML::Parser module. James Clark wrote the expat library. COPYRIGHT
Copyright (C) 1996-2006 Andy Wardley. All Rights Reserved. This module is free software; you can redistribute it and/or modify it under the same terms as Perl itself. SEE ALSO
Template, Template::Plugins, Template::Plugin::XML, Template::Plugin::XML::DOM, Template::Plugin::XML::RSS, Template::Plugin::XML::Simple, Template::Plugin::XML::XPath perl v5.8.8 2008-03-01 Template::XML(3pm)
Man Page