Home > Articles

📄 Contents

  1. Stylesheet basics
  2. Communicating with the XSLT processor
This chapter is from the book

This chapter is from the book

5.2 Communicating with the XSLT processor

5.2.1 Serializing the result tree

The <xsl:output> top-level element:

  • is a request to serialize the result tree as a sequence of bytes.

    • The XSLT processor may choose to respect the request, but is not obliged.

All attributes of <xsl:output> are optional.

  • The method="method-indication" attribute may take these values:

    • method="html"

      • uses the HTML vocabulary and SGML markup conventions, namely:

        • empty elements,

        • attribute minimization,

        • built-in character entity referencing (ISO Latin 1),

        • the entire set of HTML conventions (you cannot selectively turn on only a subset of them);

          • all conventions are used according to common practice,

      • is considered the default in certain result tree conditions;

        • the name of the document element node is HTML (case insensitive);

        • the null namespace URI is used for the name (i.e.: there is no namespace prefix);

        • any preceding text nodes contain only whitespace,

    • method="xml"

      • uses arbitrary vocabulary and XML markup conventions, namely:

        • empty elements,

        • built-in character entity referencing,

      • is the default when the default isn't HTML,

    • method="text"

      • uses no vocabulary and no lexical or syntactic conventions,

        • serializes only the text nodes of every element in the result tree,

        • outputs all characters in clear text (no entities of any kind),

      • is never the default,

    • method="prefix:processor-recognized-method-name"

      • uses the prefix defined by xmlns:prefix="processor-recognized-URI-reference";

      • uses lexical and syntactic conventions recognized by the XSLT processor;

        • in particular, serialization can be arbitrary (it is out of the scope of XSLT);

      • is never the default.

  • Attributes related to the method are as follows:

    • version="numeric-version"

      • specifies the version of the output method,

    • omit-xml-declaration="yes" or omit-xml-declaration="no"

      • specifies the absence or presence of the XML declaration (if the result tree represents a document entity) or the text declaration (if the result tree represents an external general parsed entity),

    • standalone="yes" or standalone="no"

      • specifies the presence or absence of a standalone document declaration,

    • doctype-system="system-identifier"

      • specifies the system identifier to use in the DOCTYPE declaration,

    • doctype-public="public-identifier"

      • specifies the public identifier to use in the DOCTYPE declaration,

      • requires doctype-system=to also be specified if the output method is XML.

  • Attributes related to the serialized markup syntax are as follows:

    • indent="yes"

      • asks the XSLT processor (at its discretion) to indent the result "nicely" with additional whitespace when using the xml method;

        • this may have implications for the downstream parsing processes if the whitespace is considered significant,

    • cdata-section-elements="list-of-element-type-names"

      • gives a whitespace separated list of element types possibly used in the result,

      • specifies those result tree elements whose text content is serialized within a CDATA section.

  • Attributes related to the encoding are as follows:

    • encoding="encoding"

      • requests (if supported by the processor) the character set encoding output of the emitted result tree,

      • has the value which should match the encoding=pseudo-attribute described by the XML Recommendation for the XML declaration,

    • media-type="media-type"

      • specifies the MIME content type (without specifying the charsetparameter).

5.2.2 Illustration of output methods

Consider a simple XML file nodein.xml created using the 8-bit ISO character set for Western European languages Latin–1, a.k.a. ISO–8859–1 (note the copyright symbol seen here is encoded in the file using the hexadecimal character 0xA9):

Example 5–5 An XML source file with characters sensitive to processing

Line 1  <?xml version="1.0" encoding="iso-8859-1"?> 
     2  <p>Test with © and &lt; and &amp; in it</p> 

Figure 5–1 illustrates the node tree that is created by the XSL processor.

Figure 5-1Figure 5–1 Illustration of Node Tree Characters

Note how the markup used to represent the sensitive XML characters is lost. The node tree shown would also be created identically by the following markup:

Example 5–6 The same information using a CDATA section

Line 1  <?xml version="1.0" encoding="iso-8859-1"?> 
     2  <p><![CDATA[Test with © and < and & in it]]></p> 

All character values in text nodes are maintained as UCS–2 (Universal Character Set — Two Octet) characters. The UCS character set is a 32-bit (4 octet) repertoire with a 16-bit (2 octet) repertoire subset (equivalent to Unicode) that can be serialized as either 16-bit (2 octet) characters or, using an encoding called UTF–8, as a sequence of 8-bit (1 octet) characters.

Utilizing an extension element defined in XT providing for multiple result trees, one can copy the source node tree to each of three result

trees, such that each result tree is identical to the source tree, and interpret each result tree differently:

Example 5–7 Emission of the source tree using three different output methods

Line 1  <?xml version="1.0"?>    <!--nodeout.xsl-->
     2  <!--XSLT 1.0 - http://www.CraneSoftwrights.com/training -->
     3  <!--XT (see http://www.jclark.com/xml/xt.html)-->
     4  <xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
     5  version="1.0"
     6  xmlns:xt="http://www.jclark.com/xt"
     7  extension-element-prefixes="xt">
     8
     9  <xsl:template match="/">
    10  <xt:document method="xml" href="nodeout.xml"
    11  omit-xml-declaration="yes">
    12  <xsl:copy-of select="."/>
    13  </xt:document>
    14  <xt:document method="html" href="nodeout.htm">
    15  <xsl:copy-of select="."/>
    16  </xt:document>
    17  <xt:document method="text" href="nodeout.txt">
    18  <xsl:copy-of select="."/>
    19  </xt:document>
    20  </xsl:template>
    21
    22  </xsl:stylesheet>

There is a nuance here regarding the use of the extension element: the <xt:document> element creates a separate result tree, and is not a result tree element itself that resides in a single "master" result tree as might be evident.

The use of method="xml" emits the same nodes using the UCS characters of the text nodes while using the built-in XML entities where necessary:

Example 5–8 XML output method emission of sample instance

<p>Test with © and &lt; and &amp; in it</p>
  • Note the two-character UTF–8 hexadecimal representation of the copyright symbol is 0xC2 0xA9 which would both be revealed in a non-UTF–8 presentation environment such as an ISO–8859–1 Latin–1 environment as follows:

         <p>Test with © and &lt; and &amp; in it</p> 

The use of method="html" recognizes known built-in HTML entities and uses the entity references where necessary:

Example 5–9 HTML output method emission of sample instance

<p>Test with &copy; and &lt; and &amp; in it</p> 

The use of method="text" ignores all element start and end tags and puts out the UCS characters of all the text nodes while not using any built-in entities:

Example 5–10 Text output method emission of sample instance

Test with © and < and & in it 
  • Note again in a non-UTF–8 environment this text file would appear as two characters as in the ISO–8859–1 Latin–1 environment:

         Test with © and < and & in it 

5.2.3 Communicating with the outside environment

These instructions are used for communication between the stylesheet and the XSLT processor and the operator:

  • stylesheet to operator: <xsl:message>

    • it contains an arbitrary message such as —

      • status of progress,

      • content violation;

    • the specific mechanism of communication is not standardized;

    • the processor may choose to not support relating the message,

    • the content is any template (static or calculated),

    • this instruction can contain the terminate="yes" attribute —

      • which gives an instruction to stop any further processing of the stylesheet and source files,

    • this instruction allows the stylesheet to report on semantic validation;

      • when content has been detected as being incorrect, messages can report problems to the operator;

      • structural well-formedness correctness has already been determined by the XML processor inside the XSLT processor;

      • stylesheet could also use XPath to determine structural validity if the XSLT processor does not use a validating XML processor;

    • this instruction allows the stylesheet to report progress when manipulating large data sets,

  • operator to stylesheet: <xsl:param>

    • it provides an invocation-time parameterized value for a globally scoped bound variable;

    • the specific mechanism of communication is not standardized;

    • the processor may choose to not support value specification;

    • a default value can be specified should no value be supplied at invocation,

  • processor to stylesheet:

    • to obtain the value of a system property, use:

    • system-property('prefix:property-name')
    • use XSLT namespace to indicate reserved system properties:

      • xsl:version

        • returns a decimal number (not a string) of the XSLT processor's implementation level in order to test the level of functionality for a given stylesheet;

      • xsl:vendor and xsl:vendor-url

        • each returns a string indicating, respectively, the name and URL (Uniform Resource Locator — RFC–1738/RFC–1808/RFC–2396) of the vendor of the executing XSL processor;

    • use other namespaces to indicate extension system properties:

      • xmlns:prefix="processor-recognized-URI-reference"
        system-property('prefix:property-name')

      • the processor returns the empty string for an unrecognized property.

The following example illustrates how to tell the operator the stylesheet uses features not supported by the processor.

Example 5–11 An example of utilizing available system properties

Line 1  <xsl:choose> 
     2  <xsl:when test="system-property('xsl:version') >= 2.0"> 
     3  <xsl:feature-of-2.0/> 
     4  </xsl:when> 
     5  <xsl:otherwise> 
     6  <xsl:message terminate="yes"> 
     7  Sorry, this stylesheet requires XSLT 2.0 
     8  Complain to: '<xsl:value-of 
     9  select="system-property('xsl:vendor')"/>' 
    10  at '<xsl:value-of select="system-property('xsl:vendor-url')"/>'. 
    11  </xsl:message> 
    12
    13  </xsl:otherwise> </xsl:choose> 

5.2.4 Uncontrolled processes

There is no recommendation-based user or stylesheet control over or communication available regarding the following processes implemented by the XSLT processor.

  • Result tree attribute order:

    • the XSLT processor may choose to serialize attribute nodes found in the result tree in any order.

  • Result tree serialization instance markup:

    • the XSLT processor may choose any way it desires to serialize the content of text nodes when the stylesheet does not instruct a given element to be emitted as a CDATA section —

      • using XML built-in character entities for markup-sensitive characters,

      • using numeric character entities for markup-sensitive characters or characters not present in the encoding character set,

      • using piecemeal CDATA sections;

    • any original markup syntax from the source file is lost when the source file is abstracted into the source node tree;

    • other than an entire element emitted as a CDATA section, there is no control available in the stylesheet over which serialization methods are used for text content.

  • Result tree construction:

    • the stylesheet writer is responsible for dictating the final content of the result tree;

    • the XSLT processor can use any means to effect the final result as described in the Recommendation without necessarily implementing the prose description found therein;

    • the side-effect free nature of the XSLT design (including the inability to change the value of bound variables) allows an XSLT processor to process portions of the input in parallel and combine the intermediate results into the single final result tree;

    • the of XSLT allows the processor to choose to not preserve the result node tree when serializing the transformed information to an output instance, thus the result may never actually exist as a complete tree within the processor.

InformIT Promotional Mailings & Special Offers

I would like to receive exclusive offers and hear about products from InformIT and its family of brands. I can unsubscribe at any time.

Overview


Pearson Education, Inc., 221 River Street, Hoboken, New Jersey 07030, (Pearson) presents this site to provide information about products and services that can be purchased through this site.

This privacy notice provides an overview of our commitment to privacy and describes how we collect, protect, use and share personal information collected through this site. Please note that other Pearson websites and online products and services have their own separate privacy policies.

Collection and Use of Information


To conduct business and deliver products and services, Pearson collects and uses personal information in several ways in connection with this site, including:

Questions and Inquiries

For inquiries and questions, we collect the inquiry or question, together with name, contact details (email address, phone number and mailing address) and any other additional information voluntarily submitted to us through a Contact Us form or an email. We use this information to address the inquiry and respond to the question.

Online Store

For orders and purchases placed through our online store on this site, we collect order details, name, institution name and address (if applicable), email address, phone number, shipping and billing addresses, credit/debit card information, shipping options and any instructions. We use this information to complete transactions, fulfill orders, communicate with individuals placing orders or visiting the online store, and for related purposes.

Surveys

Pearson may offer opportunities to provide feedback or participate in surveys, including surveys evaluating Pearson products, services or sites. Participation is voluntary. Pearson collects information requested in the survey questions and uses the information to evaluate, support, maintain and improve products, services or sites, develop new products and services, conduct educational research and for other purposes specified in the survey.

Contests and Drawings

Occasionally, we may sponsor a contest or drawing. Participation is optional. Pearson collects name, contact information and other information specified on the entry form for the contest or drawing to conduct the contest or drawing. Pearson may collect additional personal information from the winners of a contest or drawing in order to award the prize and for tax reporting purposes, as required by law.

Newsletters

If you have elected to receive email newsletters or promotional mailings and special offers but want to unsubscribe, simply email information@informit.com.

Service Announcements

On rare occasions it is necessary to send out a strictly service related announcement. For instance, if our service is temporarily suspended for maintenance we might send users an email. Generally, users may not opt-out of these communications, though they can deactivate their account information. However, these communications are not promotional in nature.

Customer Service

We communicate with users on a regular basis to provide requested services and in regard to issues relating to their account we reply via email or phone in accordance with the users' wishes when a user submits their information through our Contact Us form.

Other Collection and Use of Information


Application and System Logs

Pearson automatically collects log data to help ensure the delivery, availability and security of this site. Log data may include technical information about how a user or visitor connected to this site, such as browser type, type of computer/device, operating system, internet service provider and IP address. We use this information for support purposes and to monitor the health of the site, identify problems, improve service, detect unauthorized access and fraudulent activity, prevent and respond to security incidents and appropriately scale computing resources.

Web Analytics

Pearson may use third party web trend analytical services, including Google Analytics, to collect visitor information, such as IP addresses, browser types, referring pages, pages visited and time spent on a particular site. While these analytical services collect and report information on an anonymous basis, they may use cookies to gather web trend information. The information gathered may enable Pearson (but not the third party web trend services) to link information with application and system log data. Pearson uses this information for system administration and to identify problems, improve service, detect unauthorized access and fraudulent activity, prevent and respond to security incidents, appropriately scale computing resources and otherwise support and deliver this site and its services.

Cookies and Related Technologies

This site uses cookies and similar technologies to personalize content, measure traffic patterns, control security, track use and access of information on this site, and provide interest-based messages and advertising. Users can manage and block the use of cookies through their browser. Disabling or blocking certain cookies may limit the functionality of this site.

Do Not Track

This site currently does not respond to Do Not Track signals.

Security


Pearson uses appropriate physical, administrative and technical security measures to protect personal information from unauthorized access, use and disclosure.

Children


This site is not directed to children under the age of 13.

Marketing


Pearson may send or direct marketing communications to users, provided that

  • Pearson will not use personal information collected or processed as a K-12 school service provider for the purpose of directed or targeted advertising.
  • Such marketing is consistent with applicable law and Pearson's legal obligations.
  • Pearson will not knowingly direct or send marketing communications to an individual who has expressed a preference not to receive marketing.
  • Where required by applicable law, express or implied consent to marketing exists and has not been withdrawn.

Pearson may provide personal information to a third party service provider on a restricted basis to provide marketing solely on behalf of Pearson or an affiliate or customer for whom Pearson is a service provider. Marketing preferences may be changed at any time.

Correcting/Updating Personal Information


If a user's personally identifiable information changes (such as your postal address or email address), we provide a way to correct or update that user's personal data provided to us. This can be done on the Account page. If a user no longer desires our service and desires to delete his or her account, please contact us at customer-service@informit.com and we will process the deletion of a user's account.

Choice/Opt-out


Users can always make an informed choice as to whether they should proceed with certain services offered by InformIT. If you choose to remove yourself from our mailing list(s) simply visit the following page and uncheck any communication you no longer want to receive: www.informit.com/u.aspx.

Sale of Personal Information


Pearson does not rent or sell personal information in exchange for any payment of money.

While Pearson does not sell personal information, as defined in Nevada law, Nevada residents may email a request for no sale of their personal information to NevadaDesignatedRequest@pearson.com.

Supplemental Privacy Statement for California Residents


California residents should read our Supplemental privacy statement for California residents in conjunction with this Privacy Notice. The Supplemental privacy statement for California residents explains Pearson's commitment to comply with California law and applies to personal information of California residents collected in connection with this site and the Services.

Sharing and Disclosure


Pearson may disclose personal information, as follows:

  • As required by law.
  • With the consent of the individual (or their parent, if the individual is a minor)
  • In response to a subpoena, court order or legal process, to the extent permitted or required by law
  • To protect the security and safety of individuals, data, assets and systems, consistent with applicable law
  • In connection the sale, joint venture or other transfer of some or all of its company or assets, subject to the provisions of this Privacy Notice
  • To investigate or address actual or suspected fraud or other illegal activities
  • To exercise its legal rights, including enforcement of the Terms of Use for this site or another contract
  • To affiliated Pearson companies and other companies and organizations who perform work for Pearson and are obligated to protect the privacy of personal information consistent with this Privacy Notice
  • To a school, organization, company or government agency, where Pearson collects or processes the personal information in a school setting or on behalf of such organization, company or government agency.

Links


This web site contains links to other sites. Please be aware that we are not responsible for the privacy practices of such other sites. We encourage our users to be aware when they leave our site and to read the privacy statements of each and every web site that collects Personal Information. This privacy statement applies solely to information collected by this web site.

Requests and Contact


Please contact us about this Privacy Notice or if you have any requests or questions relating to the privacy of your personal information.

Changes to this Privacy Notice


We may revise this Privacy Notice through an updated posting. We will identify the effective date of the revision in the posting. Often, updates are made to provide greater clarity or to comply with changes in regulatory requirements. If the updates involve material changes to the collection, protection, use or disclosure of Personal Information, Pearson will provide notice of the change through a conspicuous notice on this site or other appropriate way. Continued use of the site after the effective date of a posted revision evidences acceptance. Please contact us if you have questions or concerns about the Privacy Notice or any objection to any revisions.

Last Update: November 17, 2020