📄 xmlwf.1
字号:
.\" This manpage has been automatically generated by docbook2man .\" from a DocBook document. This tool can be found at:.\" <http://shell.ipoline.com/~elmert/comp/docbook2X/> .\" Please send any bug reports, improvements, comments, patches, .\" etc. to Steve Cheng <steve@ggi-project.org>..TH "XMLWF" "1" "24 January 2003" "" "".SH NAMExmlwf \- Determines if an XML document is well-formed.SH SYNOPSIS\fBxmlwf\fR [ \fB-s\fR] [ \fB-n\fR] [ \fB-p\fR] [ \fB-x\fR] [ \fB-e \fIencoding\fB\fR] [ \fB-w\fR] [ \fB-d \fIoutput-dir\fB\fR] [ \fB-c\fR] [ \fB-m\fR] [ \fB-r\fR] [ \fB-t\fR] [ \fB-v\fR] [ \fBfile ...\fR] .SH "DESCRIPTION".PP\fBxmlwf\fR uses the Expat library todetermine if an XML document is well-formed. It isnon-validating..PPIf you do not specify any files on the command-line, and youhave a recent version of \fBxmlwf\fR, theinput file will be read from standard input..SH "WELL-FORMED DOCUMENTS".PPA well-formed document must adhere to thefollowing rules:.TP 0.2i\(buThe file begins with an XML declaration. For instance,<?xml version="1.0" standalone="yes"?>.\fBNOTE:\fR\fBxmlwf\fR does not currentlycheck for a valid XML declaration..TP 0.2i\(buEvery start tag is either empty (<tag/>)or has a corresponding end tag..TP 0.2i\(buThere is exactly one root element. This element must containall other elements in the document. Only comments, whitespace, and processing instructions may come after the closeof the root element..TP 0.2i\(buAll elements nest properly..TP 0.2i\(buAll attribute values are enclosed in quotes (either singleor double)..PPIf the document has a DTD, and it strictly complies with thatDTD, then the document is also considered \fBvalid\fR.\fBxmlwf\fR is a non-validating parser --it does not check the DTD. However, it does supportexternal entities (see the \fB-x\fR option)..SH "OPTIONS".PPWhen an option includes an argument, you may specify the argument eitherseparately ("\fB-d\fR output") or concatenated with theoption ("\fB-d\fRoutput"). \fBxmlwf\fRsupports both..TP\fB-c\fRIf the input file is well-formed and \fBxmlwf\fRdoesn't encounter any errors, the input file is simply copied tothe output directory unchanged.This implies no namespaces (turns off \fB-n\fR) andrequires \fB-d\fR to specify an output file..TP\fB-d output-dir\fRSpecifies a directory to contain transformedrepresentations of the input files.By default, \fB-d\fR outputs a canonical representation(described below).You can select different output formats using \fB-c\fRand \fB-m\fR.The output filenames willbe exactly the same as the input filenames or "STDIN" if the input iscoming from standard input. Therefore, you must be careful that theoutput file does not go into the same directory as the inputfile. Otherwise, \fBxmlwf\fR will delete theinput file before it generates the output file (just like runningcat < file > file in most shells).Two structurally equivalent XML documents have a byte-for-byteidentical canonical XML representation.Note that ignorable white space is considered significant andis treated equivalently to data.More on canonical XML can be found athttp://www.jclark.com/xml/canonxml.html ..TP\fB-e encoding\fRSpecifies the character encoding for the document, overridingany document encoding declaration. \fBxmlwf\fRsupports four built-in encodings:US-ASCII,UTF-8,UTF-16, andISO-8859-1.Also see the \fB-w\fR option..TP\fB-m\fROutputs some strange sort of XML file that completelydescribes the the input file, including character postitions.Requires \fB-d\fR to specify an output file..TP\fB-n\fRTurns on namespace processing. (describe namespaces)\fB-c\fR disables namespaces..TP\fB-p\fRTells xmlwf to process external DTDs and parameterentities.Normally \fBxmlwf\fR never parses parameterentities. \fB-p\fR tells it to always parse them.\fB-p\fR implies \fB-x\fR..TP\fB-r\fRNormally \fBxmlwf\fR memory-maps the XML filebefore parsing; this can result in faster parsing on manyplatforms.\fB-r\fR turns off memory-mapping and uses normal fileIO calls instead.Of course, memory-mapping is automatically turned offwhen reading from standard input.Use of memory-mapping can cause some platforms to reportsubstantially higher memory usage for\fBxmlwf\fR, but this appears to be a matter ofthe operating system reporting memory in a strange way; there isnot a leak in \fBxmlwf\fR..TP\fB-s\fRPrints an error if the document is not standalone. A document is standalone if it has no external subset and noreferences to parameter entities..TP\fB-t\fRTurns 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 itselfwithout client overhead.\fB-t\fR turns off most of the output options(\fB-d\fR, \fB-m\fR, \fB-c\fR,\&...)..TP\fB-v\fRPrints the version of the Expat library being used, including someinformation on the compile-time configuration of the library, andthen exits..TP\fB-w\fREnables support for Windows code pages.Normally, \fBxmlwf\fR will throw an error if itruns across an encoding that it is not equipped to handle itself. With\fB-w\fR, xmlwf will try to use a Windows codepage. See also \fB-e\fR..TP\fB-x\fRTurns on parsing external entities.Non-validating parsers are not required to resolve externalentities, 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 theirdata from outside the XML file currently being parsed.This is an example of an internal entity:.nf<!ENTITY vers '1.0.2'>.fiAnd here are some examples of external entities:.nf<!ENTITY header SYSTEM "header-&vers;.xml"> (parsed)<!ENTITY logo SYSTEM "logo.png" PNG> (unparsed).fi.TP\fB--\fR(Two hyphens.)Terminates the list of options. This is only needed if a filenamestarts with a hyphen. For example:.nfxmlwf -- -myfile.xml.fiwill run \fBxmlwf\fR on the file\fI-myfile.xml\fR..PPOlder versions of \fBxmlwf\fR do not supportreading from standard input..SH "OUTPUT".PPIf an input file is not well-formed,\fBxmlwf\fR prints a single line describingthe problem to standard output. If a file is well formed,\fBxmlwf\fR outputs nothing.Note that the result code is \fBnot\fR set..SH "BUGS".PPAccording to the W3C standard, an XML file without adeclaration at the beginning is not considered well-formed.However, \fBxmlwf\fR allows this to pass..PP\fBxmlwf\fR returns a 0 - noerr result,even if the file is not well-formed. There is no good way fora program to use \fBxmlwf\fR to quicklycheck a file -- it must parse \fBxmlwf\fR'sstandard output..PPThe errors should go to standard error, not standard output..PPThere should be a way to get \fB-d\fR to send itsoutput to standard output rather than forcing the user to sendit to a file..PPI have no idea why anyone would want to use the\fB-d\fR, \fB-c\fR, and\fB-m\fR options. If someone could explain it tome, I'd like to add this information to this manpage..SH "ALTERNATIVES".PPHere are some XML validators on the web:.nfhttp://www.hcrc.ed.ac.uk/~richard/xml-check.htmlhttp://www.stg.brown.edu/service/xmlvalid/http://www.scripting.com/frontier5/xml/code/xmlValidator.htmlhttp://www.xml.com/pub/a/tools/ruwf/check.html.fi.SH "SEE ALSO".PP.nfThe Expat home page: http://www.libexpat.org/The W3 XML specification: http://www.w3.org/TR/REC-xml.fi.SH "AUTHOR".PPThis manual page was written by Scott Bronson <bronson@rinspin.com> forthe Debian GNU/Linux system (but may be used by others). Permission isgranted to copy, distribute and/or modify this document underthe terms of the GNU Free DocumentationLicense, Version 1.1.
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -