This document is also available in these non-normative formats: XML.
Copyright © 2010 W3C® (MIT, ERCIM, Keio), All Rights Reserved. W3C liability, trademark and document use rules apply.
This specification defines several XML processor profiles, each of which fully determines a data model for any given XML document. It is intended as a resource for other specifications, which can by a single normative reference establish precisely what input processing they require.
This section describes the status of this document at the time of its publication. Other documents may supersede this document. A list of current W3C publications and the latest revision of this technical report can be found in the W3C technical reports index at http://www.w3.org/TR/.
This is a first public Working Draft for review by W3C members and other interested parties. This document is a product of the XML Processing Model Working Group which is part of the W3C XML Activity. The English version of this specification is the only normative version. However, for translations of this document, see http://www.w3.org/2003/03/Translations/byTechnology?technology=xproc.
The Working Group invites review of this draft, which is likely to be the only draft before publication as a Last Call Working Draft. Please send comments on this draft to the public mailing list public-xml-processing-model-comments@w3.org (public archives are available). Please include the string "[xml-proc-profiles]" in your email subject line.
As this specification is intended for use by other specifications which themselves define one or more XML languages, the Working Group particularly welcomes input for other Working Groups who are responsible for such specifications.
Publication as a Working Draft does not imply endorsement by the W3C Membership. This is a draft document and may be updated, replaced or obsoleted by other documents at any time. It is inappropriate to cite this document as other than work in progress.
This document was produced by a group operating under the 5 February 2004 W3C Patent Policy. W3C maintains a public list of any patent disclosures made in connection with the deliverables of the group; that page also includes instructions for disclosing a patent. An individual who has actual knowledge of a patent which the individual believes contains Essential Claim(s) must disclose the information in accordance with section 6 of the W3C Patent Policy.
1 Background
2 The minimum XML processor profile
3 The basic XML processor profile
4 Other profiles (non-normative)
5 Conformance
A References
A.1 Normative References
A.2 Non-normative References
The XML specification [Extensible Markup Language (XML) 1.0 (Fifth Edition)] defines an XML processor as "a software module. . .used to read XML documents and provide access to their content and structure. . .on behalf of another module, called the application." XML applications are often defined by building on top of the [XML Information Set (Second Edition)] or other similar XML data models such as [XML Path Language (XPath) Version 1.0] or [XQuery 1.0 and XPath 2.0 Data Model (XDM)], understood as the output of an XML processor. Such definitions have suffered to some extent from an uncertainty inherent in using that kind of foundation, in that the mappingXML processors perform from XML documents to data model is not rigid. Some of this stems from the XML specification itself, which leaves open the possiblity of reading and interpreting external entities, or not. Some stems from the growth of the XML family of specifications: if the input document includes uses of XInclude, for instance.
This specification addresses this issue by defining several XML processor profiles, each of which fully determines a data model for any given XML document. It is intended as a resource for other specifications, which can by a single normative reference establish precisely what input processing they require.
The profiles defined here are appropriate for processing both XML 1.0 [Extensible Markup Language (XML) 1.0 (Fifth Edition)] and XML 1.1 [Extensible Markup Language (XML) 1.1 (Second Edition)] documents. References to XML or XML Namespaces below should be understood as references to 1.0 or 1.1 as required by the relevant document or application.
The minimum approach to the construction of a data model from a well-formed and namespace well-formed XML document requires the following:
Processing of the document as required of conformant non-validating XML processors while reading all external markup declarations;
Maintenance of the base URI property of each element in conformance with [XML Base];
The basic recommended approach to the construction of a data model from a well-formed and namespace well-formed XML document requires the following:
Processing of the document as required of conformant non-validating XML processors while reading all external markup declarations;
Maintenance of the base URI property of each element in conformance with [XML Base];
Identification of all xml:id
attributes as IDs as
required by [xml:id Version 1.0]
Replacement of all include
elements in the XInclude
namespace, and namespace, xml:base and xml:lang fixup of the result, as required for
conformance to [XML Inclusions (XInclude) Version 1.0 (Second Edition)].
The following [XProc: An XML Pipeline Language] pipeline, when implemented by a conformant processor which processes its input as required by point (1) above, implements the default process:
The profiles defined here, particularly the 3 The basic XML processor profile, can be used as a starting point for the definition of further profiles. For example, the media type registrations for stylesheet languages applicable to XML such as text/xsl
or text/css
might define a profile specifying appropriate <?xml-stylesheet type="[their media type]" . . .?>
processing in addition to the processing required by 3 The basic XML processor profile.
Conformance is a matter for any specification which references this one to mandate, expressed in terms such as "Conforming implementations must construct input data models from XML documents as required by the basic XML processor profile."