如何将xpath与当前节点进行比较



我正在使用saxon将xml转换为xsl-fo。每个文件都有一个配套文件,其中包含已更改元素的xpath。我需要将配套文件中的xpath与当前节点进行比较。例如,如果当前正在处理的节点是item8,那么根据配套文件,它应该得到一个更改条:

xml文件

<body>
<unlist bulltype="NDASH" code="00019292.0001001.007" layer="1" lid="N.00019292.0001001.014">
<item layer="1">
<para layer="1" lid="N.00019292.0001001.015">item1</para>
</item>
<item layer="1">
<para layer="1" lid="N.00019292.0001001.018">item2</para>
</item>
<item layer="1">
<para layer="1" lid="N.00019292.0001001.019">item3</para>
</item>
<item layer="1">
<para layer="1" lid="N.00019292.0001001.020">item4</para>
</item>
<item layer="1">
<para layer="1" lid="N.00019292.0001001.021">item5</para>
</item>
<item layer="1">
<para layer="1" lid="N.00019292.0001001.022">item6</para>
</item>
<item layer="1">
<para layer="1" lid="N.00019292.0001001.023">item7</para>
</item>
<item layer="1">
<para layer="1" lid="N.00019292.0001001.024">item8</para>
</item>
<item layer="1">
<para layer="1" lid="N.00019292.0001001.025">item9</para>
</item>
<item layer="1">
<para layer="1" lid="N.00019292.0001001.026">item10</para>
</item>
</unlist>
</body>

配套文件

<rev-marks>
<rev anchor="false" chg="R" origin="airbus"
path="//*[@lid='N.00019292.0001001.014']/item[9]/para[1]"/>
<rev anchor="false" chg="R" origin="airbus"
path="//*[@lid='N.00019292.0001001.014']/item[8]/para[1]">
<hl-ref ref="hl_1"/>
</rev>
<rev anchor="true" chg="R" origin="airbus" path="//*[@lid='N.00019292.0001001.014']"/>
</rev-marks>

本质上,如果当前节点的路径与配套文件中的rev/@路径匹配,我需要放置一个fo更改栏。如有任何帮助,我们将不胜感激。

编辑以显示我迄今为止拥有的东西

<xsl:template match="para">
<!-- path of the current node -->
<xsl:variable name="curPath" select="saxon:path()"/> 
<!-- path of the companion file --> 
<xsl:variable name="mdata">../MU/<xsl:value-of select="ancestor::description/@code"/>_mdata.xml</xsl:variable>

<xsl:for-each select="document($mdata,.)//rev">
<!-- value of //rev/@path in the companion file -->
<xsl:variable name="revPath" select="@path"/>

<xsl:if test="$revPath = $curPath">
<fo:change-bar-begin change-bar-class="cbpara" change-bar-color="black" change-bar-style="solid" change-bar-offset="15pt"/>
</xsl:if>

</xsl:for-each>
<fo:block>
<xsl:apply-templates/>
</fo:block>
<!-- add fo:change-bar-end here -->
</xsl:template>

正是这句话,我无法获得2个xpath表达式<xsl:if-test="revPath=$curPath">

希望这能澄清

对此有两种通用方法。

一种是使用xsl:evaluate来评估配套文件中的XPath表达式。确切的解决方案取决于需求的细节:例如,我不确定是否所有的<rev>元素都以相同的方式处理,或者@anchor@rev@origin属性的意义是什么

第二种方法是编写一个转换,将配套文件转换为XSLT样式表,该样式表可以完成实际工作(通常,每个<rev>元素都会转换为具有匹配模式的xsl:template(。这听起来有点令人生畏,但这可能是一种更优雅的方法。

使用xsl:evaluate(在Saxon 9.8及更高版本的PE和EE、Saxon 10所有版本和Saxon JS 2中都支持(的示例是:

<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
xmlns:xs="http://www.w3.org/2001/XMLSchema"
xmlns:mf="http://example.com/mf"
exclude-result-prefixes="#all"
version="3.0">

<xsl:param name="rev-doc-uri" as="xs:string">evaluate-key-ref-marks.xml</xsl:param>

<xsl:param name="rev-doc" select="doc($rev-doc-uri)"/>

<xsl:function name="mf:select-node" as="node()*">
<xsl:param name="path" as="xs:string"/>
<xsl:param name="context-doc" as="node()"/>
<xsl:evaluate context-item="$context-doc" xpath="$path"/>
</xsl:function>

<xsl:mode on-no-match="shallow-copy"/>

<xsl:template match="*[some $rev in $rev-doc//rev[@path] satisfies (. is mf:select-node($rev/@path, /))]">
<xsl:comment>marked</xsl:comment>
<xsl:next-match/>
</xsl:template>

</xsl:stylesheet>

在浏览器中使用SaxonJS2的在线示例(为了示例的自完整性,第二个XML被内联在那里(。

相关内容

  • 没有找到相关文章

最新更新