使用 xsl:result-document 时的 XProc p:store href 变量

XProc p:store href variable when using xsl:result-document

我正在使用 XProc 来 运行 一个 XSLT,它吐出大量结果文档(使用 xsl:result-文档)。我不确定如何在步骤中为 @href 添加变量。我有以下 XProc:

<p:declare-step xmlns:p="http://www.w3.org/ns/xproc"
xmlns:c="http://www.w3.org/ns/xproc-step" version="1.0">
<p:input port="source">
    <p:empty/>
</p:input>

<p:xslt name="pagelist">
    <p:input port="stylesheet">
        <p:document href="file:/C:/page-list.xsl"/>
    </p:input>
    <p:input port="source">
        <p:document href="file:/C:/toc.xml"/>
    </p:input>
    <p:input port="parameters">
        <p:empty/>
    </p:input>
</p:xslt>
<p:store name="pagelist" indent="true">
    <p:with-option name="method" select="'xml'" />
    <p:with-option name="href" select="" />
</p:store>

如何在 XProc 中添加一个与 xsl:result-文档中的输出文件名相匹配的变量?

XSLT 片段,如果需要:

<xsl:result-document href="{xhtml:a[@class='ref-uri']/@id}_pagelist.xml" method="xml" include-content-type="no" indent="no">

从命令行使用 Calabash 1.1.30 我能够使以下工作正常进行:

<?xml version="1.0" encoding="UTF-8"?>
<p:declare-step xmlns:p="http://www.w3.org/ns/xproc" xpath-version="2.0"
    xmlns:c="http://www.w3.org/ns/xproc-step" version="1.0">
    <p:input port="source">
        <p:empty/>
    </p:input>

    <p:output port="result" primary="true" sequence="true">
        <p:pipe port="result" step="secondary-storage"/>
    </p:output>

    <p:xslt name="xslt-pagelist" version="2.0">
        <p:input port="stylesheet">
            <p:document href="page-list.xsl"/>
        </p:input>
        <p:input port="source">
            <p:document href="toc.xml"/>
        </p:input>
        <p:input port="parameters">
            <p:empty/>
        </p:input>
    </p:xslt>

    <p:store href="toc-list.html"/>

    <p:for-each name="secondary-storage">
        <p:iteration-source select=".">
            <p:pipe port="secondary" step="xslt-pagelist"/>
        </p:iteration-source>
        <p:output port="result">
            <p:pipe port="result" step="store"/>
        </p:output>
        <p:store name="store">
            <p:with-option name="href" select="document-uri(.)"/>
        </p:store>
    </p:for-each>

</p:declare-step>

所以基本上 p:for-eachp:iteration-source 上,它使用 p:xslt 步骤的 secondary 结果输出端口,然后在内部简单地使用 document-uri(.) 来有结果 URI。这一切都需要xpath-version="2.0".

oXygen 22 不知为何没有 运行 代码,但给了我一个访问被拒绝的错误,它似乎被设置为将辅助文档写入具有正常 Windows 安全性的 oXygen 安装目录settings 是不允许的,无论如何也不是你想要结果文件的地方;为了解决这个问题,我调整了 XProc 以将 XML 输入作为整个 XProc 脚本的输入源,然后在 p:xslt 步骤中我可以使用函数 p:base-uri 来设置output-base-uri 对于 XSLT:

<?xml version="1.0" encoding="UTF-8"?>
<p:declare-step xmlns:p="http://www.w3.org/ns/xproc" xpath-version="2.0"
    xmlns:c="http://www.w3.org/ns/xproc-step" version="1.0">
    <p:input port="source">
        <p:document href="toc.xml"/>
    </p:input>

    <p:output port="result" primary="true" sequence="true">
        <p:pipe port="result" step="secondary-storage"/>
    </p:output>

    <p:xslt name="xslt-pagelist" version="2.0">
        <p:with-option name="output-base-uri" select="p:base-uri()"/>
        <p:input port="stylesheet">
            <p:document href="page-list.xsl"/>
        </p:input>
        <p:input port="parameters">
            <p:empty/>
        </p:input>
    </p:xslt>

    <p:store href="toc-list.html"/>

    <p:for-each name="secondary-storage">
        <p:iteration-source select=".">
            <p:pipe port="secondary" step="xslt-pagelist"/>
        </p:iteration-source>
        <p:output port="result">
            <p:pipe port="result" step="store"/>
        </p:output>
        <p:store name="store">
            <p:with-option name="href" select="document-uri(.)"/>
        </p:store>
    </p:for-each>

</p:declare-step>

这样,命令行中的 Calabash 和 oXygen 中的行为相同,将结果写入与输入源相同的目录。