XMLWF(1) | XMLWF(1) |
NAME
xmlwf - Determines if an XML document is well-formedSYNOPSIS
xmlwf [ -s] [ -n] [ -p] [ -x] [ -e encoding] [ -w] [ -d output-dir] [ -c] [ -m] [ -r] [ -t] [ -v] [ file ...]DESCRIPTION
xmlwf uses the Expat library to determine if an XML document is well-formed. It is non-validating.WELL-FORMED DOCUMENTS
A well-formed document must adhere to the following rules:- •
- The file begins with an XML declaration. For instance, <?xml version="1.0" standalone="yes"?>. NOTE: xmlwf does not currently check for a valid XML declaration.
- •
- Every start tag is either empty (<tag/>) or has a corresponding end tag.
- •
- There is exactly one root element. This element must contain all other elements in the document. Only comments, white space, and processing instructions may come after the close of the root element.
- •
- All elements nest properly.
- •
- All attribute values are enclosed in quotes (either single or double).
OPTIONS
When an option includes an argument, you may specify the argument either separately (" -d output") or concatenated with the option (" -doutput"). xmlwf supports both.- -c
- If the input file is well-formed and xmlwf doesn't encounter any errors, the input file is simply copied to the output directory unchanged. This implies no namespaces (turns off -n) and requires -d to specify an output file.
- -d output-dir
-
Specifies a directory to contain transformed representations of the input files. By default, -d outputs a canonical representation (described below). You can select different output formats using -c and -m.
- -e encoding
- Specifies the character encoding for the document, overriding any document encoding declaration. xmlwf supports four built-in encodings: US-ASCII, UTF-8, UTF-16, and ISO-8859-1. Also see the -w option.
- -m
- Outputs some strange sort of XML file that completely describes the input file, including character positions. Requires -d to specify an output file.
- -n
- Turns on namespace processing. (describe namespaces) -c disables namespaces.
- -p
-
Tells xmlwf to process external DTDs and parameter entities.
- -r
-
Normally xmlwf memory-maps the XML file before parsing; this can result in faster parsing on many platforms. -r turns off memory-mapping and uses normal file IO calls instead. Of course, memory-mapping is automatically turned off when reading from standard input.
- -s
- Prints an error if the document is not standalone. A document is standalone if it has no external subset and no references to parameter entities.
- -t
- Turns on timings. This tells Expat to parse the entire file, but not perform any processing. This gives a fairly accurate idea of the raw speed of Expat itself without client overhead. -t turns off most of the output options ( -d, -m, -c, ...).
- -v
- Prints the version of the Expat library being used, including some information on the compile-time configuration of the library, and then exits.
- -w
- Enables support for Windows code pages. Normally, xmlwf will throw an error if it runs across an encoding that it is not equipped to handle itself. With -w, xmlwf will try to use a Windows code page. See also -e.
- -x
-
Turns on parsing external entities.
<!ENTITY vers '1.0.2'>
<!ENTITY header SYSTEM "header-&vers;.xml"> (parsed)
<!ENTITY logo SYSTEM "logo.png" PNG> (unparsed)
- --
-
(Two hyphens.) Terminates the list of options. This is only needed if a filename starts with a hyphen. For example:
xmlwf -- -myfile.xml
OUTPUT
If an input file is not well-formed, xmlwf prints a single line describing the problem to standard output. If a file is well formed, xmlwf outputs nothing. Note that the result code is not set.BUGS
According to the W3C standard, an XML file without a declaration at the beginning is not considered well-formed. However, xmlwf allows this to pass.ALTERNATIVES
Here are some XML validators on the web:http://www.hcrc.ed.ac.uk/~richard/xml-check.html
http://www.stg.brown.edu/service/xmlvalid/
http://www.scripting.com/frontier5/xml/code/xmlValidator.html
http://www.xml.com/pub/a/tools/ruwf/check.html
SEE ALSO
The Expat home page: http://www.libexpat.org/
The W3 XML specification: http://www.w3.org/TR/REC-xml
AUTHOR
This manual page was written by Scott Bronson <bronson@rinspin.com> for the Debian GNU/Linux system (but may be used by others). Permission is granted to copy, distribute and/or modify this document under the terms of the GNU Free Documentation License, Version 1.1.24 January 2003 |