我在xml文档(称为result.xml)中有一个搜索结果,作为对容器文档(mycore.xml)的引用列表,它引用了" real"另一个文档中的内容文件(mets.xml)。当不仅格式化第三级文档而是基于mets.xml文档中第三级文档(发布dataIssued的年份)上的元素对整个结果进行排序时,问题就出现了。这是一幅粗略的图片:
/result/doc/@href --> document('mycore_1.xml')/mycore/file/@href -> document('mets_1.xml')/mets/dmdSec
/doc/@href --> document('mycore_2.xml')/mycore/file/@href -> document('mets_2.xml')/mets/dmdSec
我有一个使用XSLT 2.0功能的解决方案,但在XSLT 1.0中没有使用调用或应用模板。不幸的是,在选择的CMS中,typo3,我只能使用XSLT 1.0处理器。
为result.xml
<result>
<doc href="mycore_1.xml"/>
<doc href="mycore_2"/>
...
</result>
mycore_1.xml
<mycore>
<file href="mets_1.xml">
</mycore>
mets_1.xml
<mets>
<dmdSec>
<mods>
<dataIssued>1980
</dateIssued>
<namePart>Jones
</namePart>
...
</mods>
</dmdSec>
</mets>
XSLT 2.0是一个适合我的函数定义。
<!-- returns a node-set of all dmdSec -->
<xsl:function name="mets:fetchFiles">
<xsl:param name="docs"/>
<xsl:for-each select="$docs">
<xsl:for-each select="document(@href)/mycore/file">
<xsl:for-each select="document(@href)/mets/dmdSec">
<xsl:copy-of select="."/>
</xsl:for-each>
</xsl:for-each>
</xsl:for-each>
</xsl:function>
这里是电话和排序:
<xsl:for-each select="fetchFiles(result/doc)">
<xsl:sort select="mods/dateIssued"/>
<xsl:call-template name="theFormatting">
... <!-- format and output the dmdSec/mods -->
</xsl:call-template>
</xsl:for-each>
我的困难似乎是,函数中的副本返回一个 修改后的输入,但使用调用模板我只生成副本输出。 有没有办法替换输入以允许排序和格式化 dmdSec元素和子元素?
任何回复都将不胜感激!
霍尔格
答案 0 :(得分:1)
如果您想在XSLT 1.0中实现XSLT 2.0函数,您可以将其作为模板执行,然后返回结果树片段,您可以将其转换为节点集(带exsl:node-set($rtf)
)进行排序。
但坦率地说,我不明白为什么你采取所有这些步骤,document
功能足够强大,可以处理多个节点并返回多个文档,因此你应该可以使用
<xsl:for-each select="document(document(result/doc/@href)/mycore/file/@href)/mets/dmdSec">
<xsl:sort select="mods/dateIssued"/>
...
</xsl:for-each>
分别我更愿意并建议使用apply-templates,例如
<xsl:apply-templates select="document(document(result/doc/@href)/mycore/file/@href)/mets/dmdSec">
<xsl:sort select="mods/dateIssued"/>
</xsl:apply-templates>
并且
<xsl:template match="mets/dmdSec">
...
</xsl:template>