p:text-sort-001 (NW)

Tests p:text-sort with specific namespace bindings

Test nw-text-sort-001.xml is expected to pass.

The pipeline


<p:declare-step xmlns:p="http://www.w3.org/ns/xproc" xmlns:xs="http://example.com/xs" xmlns:xsl="http://example.com/xsl" xmlns:xslt="http://example.com/xslt" version="3.0">
   <p:output port="result"/>
   <p:text-sort>
      <p:with-input>
         <p:inline content-type="text/plain">C
A
D
B</p:inline>
      </p:with-input>
   </p:text-sort>
   <p:wrap-sequence wrapper="wrapper"/>
</p:declare-step>
MorganaXProc 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="wrapper">The root element is not wrapper.</s:assert>
         <s:assert test="wrapper/text()='A&#xA;B&#xA;C&#xA;D&#xA;'">Text is not sorted correctly.</s:assert>
      </s:rule>
   </s:pattern>
</s:schema>

Revision history

25 Mar 2024, Norm Tovey-Walsh

One common implementation strategy for this step is to generate an XSLT stylesheet. Let’s play with the namespaces!