Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

xml_spellcheck(1) [centos man page]

XML_SPELLCHECK(1)					User Contributed Perl Documentation					 XML_SPELLCHECK(1)

NAME
xml_spellcheck - spellcheck XML files SYNOPSIS
xml_spellcheck [options] <files> DESCRIPTION
xml_spellcheck lets you spell check the content of an XML file. It extracts the text (the content of elements and optionally of attributes), call a spell checker on it and then recreates the XML document. OPTIONS
Note that all options can be abbreviated to the first letter --conf <configuration_file> Gets the options from a configuration file. NOT IMPLEMENTED YET. --spellchecker <spellchecker> The command to use for spell checking, including any option By default "aspell -c" is used --backup-extension <extension> By default the original file is saved with a ".bak" extension. This option changes the extension --attributes Spell check attribute content. By default attribute values are NOT spell checked. NOT YET IMPLEMENTED --exclude_elements <list_of_excluded_elements> A list of elements that should not be spell checked --include_elements <list_of_included_elements> A list of elements that should be spell checked (by default all elements are spell checked). "--exclude_elements" and "--include_elements" are mutually exclusive --pretty_print <optional_pretty_print_style> A pretty print style for the document, as defined in XML::Twig. If the option is provided without a value then the "indented" style is used --version Dislay the tool version and exit --help Display help message and exit --man Display longer help message and exit EXAMPLES
BUGS
TODO
--conf option --attribute option PRE-REQUISITE XML::Twig, Getopt::Long, Pod::Usage, File::Temp XML::Twig requires XML::Parser. SEE ALSO
XML::Twig COPYRIGHT AND DISCLAIMER
This program is Copyright 2003 by Michel Rodriguez This program is free software; you can redistribute it and/or modify it under the terms of the Perl Artistic License or the GNU General Public License as published by the Free Software Foundation either version 2 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MER- CHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. If you do not have a copy of the GNU General Public License write to the Free Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. AUTHOR
Michel Rodriguez <mirod@xmltwig.com> xml_spellcheck is available at http://www.xmltwig.com/xmltwig/ perl v5.16.3 2012-05-17 XML_SPELLCHECK(1)

Check Out this Related Man Page

XML_PP(1)						User Contributed Perl Documentation						 XML_PP(1)

NAME
xml_pp - xml pretty-printer SYNOPSYS
xml_pp [options] [<files>] DESCRIPTION
XML pretty printer using XML::Twig OPTIONS
-i[<extension>] edits the file(s) in place, if an extension is provided (no space between "-i" and the extension) then the original file is backed-up with that extension The rules for the extension are the same as Perl's (see perldoc perlrun): if the extension includes no "*" then it is appended to the original file name, If the extension does contain one or more "*" characters, then each "*" is replaced with the current filename. -s <style> the style to use for pretty printing: none, nsgmls, nice, indented, record, or record_c (see XML::Twig docs for the exact description of those styles), 'indented' by default -p <tag(s)> preserves white spaces in tags. You can use several "-p" options or quote the tags if you need more than one -e <encoding> use XML::Twig output_encoding (based on Text::Iconv or Unicode::Map8 and Unicode::String) to set the output encoding. By default the original encoding is preserved. If this option is used the XML declaration is updated (and created if there was none). Make sure that the encoding is supported by the parser you use if you want to be able to process the pretty_printed file (XML::Parser does not support 'latin1' for example, you have to use 'iso-8859-1') -l loads the documents in memory instead of outputing them as they are being parsed. This prevents a bug (see BUGS) but uses more memory -f <file> read the list of files to process from <file>, one per line -v verbose (list the current file being processed) -- stop argument processing (to process files that start with -) -h display help EXAMPLES
xml_pp foo.xml > foo_pp.xml # pretty print foo.xml xml_pp < foo.xml > foo_pp.xml # pretty print from standard input xml_pp -v -i.bak *.xml # pretty print .xml files, with backups xml_pp -v -i'orig_*' *.xml # backups are named orig_<filename> xml_pp -i -p pre foo.xhtml # preserve spaces in pre tags xml_pp -i.bak -p 'pre code' foo.xml # preserve spaces in pre and code tags xml_pp -i.bak -p pre -p code foo.xml # same xml_pp -i -s record mydb_export.xml # pretty print using the record style xml_pp -e utf8 -i foo.xml # output will be in utf8 xml_pp -e iso-8859-1 -i foo.xml # output will be in iso-8859-1 xml_pp -v -i.bak -f lof # pretty print in place files from lof xml_pp -- -i.xml # pretty print the -i.xml file xml_pp -l foo.xml # loads the entire file in memory # before pretty printing it xml_pp -h # display help BUGS
Elements with mixed content that start with an embedded element get an extra <elt><b>b</b>toto<b>bold</b></elt> will be output as <elt> <b>b</b>toto<b>bold</b></elt> Using the "-l" option solves this bug (but uses more memory) TODO
update XML::Twig to use Encode with perl 5.8.0 AUTHOR
Michel Rodriguez <mirod@xmltwig.com> perl v5.16.3 2012-11-14 XML_PP(1)
Man Page