\\$2 \(la\\$1\(ra\\$3 ..
If you do not specify any files on the command-line, and you have a recent version of xmlwf, the input file will be read from standard input.
0.2i The file begins with an XML declaration. For instance, \*(T<<?xml version="1.0" standalone="yes"?>\*(T>. NOTE: xmlwf does not currently check for a valid XML declaration.
0.2i Every start tag is either empty (<tag/>) or has a corresponding end tag.
0.2i 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.
0.2i All elements nest properly.
0.2i All attribute values are enclosed in quotes (either single or double).
If the document has a DTD, and it strictly complies with that DTD, then the document is also considered valid. xmlwf is a non-validating parser -- it does not check the DTD. However, it does support external entities (see the \*(T<-x\*(T> option).
\*(T<-c\*(T> 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 \*(T<-n\*(T>) and requires \*(T<-d\*(T> to specify an output directory.
\*(T<-d output-dir\*(T> Specifies a directory to contain transformed representations of the input files. By default, \*(T<-d\*(T> outputs a canonical representation (described below). You can select different output formats using \*(T<-c\*(T>, \*(T<-m\*(T> and \*(T<-N\*(T>. The output filenames will be exactly the same as the input filenames or "STDIN" if the input is coming from standard input. Therefore, you must be careful that the output file does not go into the same directory as the input file. Otherwise, xmlwf will delete the input file before it generates the output file (just like running \*(T<cat < file > file\*(T> in most shells). Two structurally equivalent XML documents have a byte-for-byte identical canonical XML representation. Note that ignorable white space is considered significant and is treated equivalently to data. More on canonical XML can be found at http://www.jclark.com/xml/canonxml.html .
\*(T<-e encoding\*(T> Specifies the character encoding for the document, overriding any document encoding declaration. xmlwf supports four built-in encodings: \*(T<US-ASCII\*(T>, \*(T<UTF-8\*(T>, \*(T<UTF-16\*(T>, and \*(T<ISO-8859-1\*(T>. Also see the \*(T<-w\*(T> option.
\*(T<-m\*(T> Outputs some strange sort of XML file that completely describes the input file, including character positions. Requires \*(T<-d\*(T> to specify an output file.
\*(T<-n\*(T> Turns on namespace processing. (describe namespaces) \*(T<-c\*(T> disables namespaces.
\*(T<-N\*(T> Adds a doctype and notation declarations to canonical XML output. This matches the example output used by the formal XML test cases. Requires \*(T<-d\*(T> to specify an output file.
\*(T<-p\*(T> Tells xmlwf to process external DTDs and parameter entities. Normally xmlwf never parses parameter entities. \*(T<-p\*(T> tells it to always parse them. \*(T<-p\*(T> implies \*(T<-x\*(T>.
\*(T<-r\*(T> Normally xmlwf memory-maps the XML file before parsing; this can result in faster parsing on many platforms. \*(T<-r\*(T> turns off memory-mapping and uses normal file IO calls instead. Of course, memory-mapping is automatically turned off when reading from standard input. Use of memory-mapping can cause some platforms to report substantially higher memory usage for xmlwf, but this appears to be a matter of the operating system reporting memory in a strange way; there is not a leak in xmlwf.
\*(T<-s\*(T> 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<-t\*(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<-t\*(T> turns off most of the output options (\*(T<-d\*(T>, \*(T<-m\*(T>, \*(T<-c\*(T>, ...).
\*(T<-k\*(T> When processing multiple files, Expat by default halts after the the first file with an error. This tells Expat to report the error but to keep processing. This can be useful, for example, when testing a filter that converts many files to XML and you want to quickly find out which conversions failed.
\*(T<-v\*(T> Prints the version of the Expat library being used, including some information on the compile-time configuration of the library, and then exits.
\*(T<-w\*(T> 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 \*(T<-w\*(T>, xmlwf will try to use a Windows code page. See also \*(T<-e\*(T>.
\*(T<-x\*(T> Turns on parsing external entities. Non-validating parsers are not required to resolve external entities, or even expand entities at all. Expat always expands internal entities (?), but external entity parsing must be enabled explicitly. External entities are simply entities that obtain their data from outside the XML file currently being parsed. This is an example of an internal entity:
<!ENTITY vers '1.0.2'>And here are some examples of external entities:
<!ENTITY header SYSTEM "header-&vers;.xml"> (parsed) <!ENTITY logo SYSTEM "logo.png" PNG> (unparsed)
\*(T<--\*(T> (Two hyphens.) Terminates the list of options. This is only needed if a filename starts with a hyphen. For example:
xmlwf -- -myfile.xmlwill run xmlwf on the file \*(T<-myfile.xml\*(T>.
Older versions of xmlwf do not support reading from standard input.
If the \*(T<-k\*(T> option is not provided, xmlwf halts upon encountering a well-formedness or output-file error. If \*(T<-k\*(T> is provided, xmlwf continues processing the remaining input files, describing problems found with any of them.
\*(T<0\*(T> The input files are well-formed and the output (if requested) was written successfully.
\*(T<1\*(T> An internal error occurred.
\*(T<2\*(T> One or more input files were not well-formed or could not be parsed.
\*(T<3\*(T> If using the \*(T<-d\*(T> option, an error occurred opening an output file.
\*(T<4\*(T> There was a command-line argument error in how xmlwf was invoked.
There should be a way to get \*(T<-d\*(T> to send its output to standard output rather than forcing the user to send it to a file.
I have no idea why anyone would want to use the \*(T<-d\*(T>, \*(T<-c\*(T>, and \*(T<-m\*(T> options. If someone could explain it to me, I'd like to add this information to this manpage.
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
The Expat home page: http://www.libexpat.org/ The W3 XML specification: http://www.w3.org/TR/REC-xml