p:xinclude 017 (AB)

Tests p:xinclude with fixup-xml-lang.

Test ab-xinclude-017.xml is expected to pass.

The pipeline


<p:declare-step xmlns:p="http://www.w3.org/ns/xproc" name="pipeline" version="3.0">
   <p:output port="result"/>
   <p:xinclude fixup-xml-lang="true">
      <p:with-input>
         <document>
            <para>This is an english paragraph.</para>
            <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="../documents/ab-xinclude-lang.xml" xpointer="deutsch"/>
         </document>
      </p:with-input>
   </p:xinclude>
</p:declare-step>
MorganaXProc passing XML Calabash passing

Schematron validation


<s:schema xmlns="http://www.w3.org/1999/xhtml" xmlns:s="http://purl.oclc.org/dsdl/schematron" queryBinding="xslt2">
   <s:pattern>
      <s:rule context="/">
         <s:assert test="document">Root element is not 'document'.</s:assert>
         <s:assert test="count(document/para)=2">Element 'document' does not have two children 'para'.</s:assert>
         <s:assert test="document/para[1]/text()='This is an english paragraph.'">The para[1] element has the wrong text.</s:assert>
         <s:assert test="document/para[2]/text()='Ein deutscher Text.'">The para[2] element has the wrong text.</s:assert>
         <s:assert test="document/para[2]/@xml:lang='de'">The para[2] element does not have an @xml:lang='de'.</s:assert>
         <s:assert test="document/para[2]/@xml:id='deutsch'">The para[2] element does not have @xml:id='deutsch'.</s:assert>
      </s:rule>
   </s:pattern>
</s:schema>

Revision history

01 Jun 2022, Achim Berndzen

Additional tests for p:xinclude.