我需要一个样式表来转换我的docbook xml文件,以便它们现在在我的section标签中包含一个xml:base元素。我该怎么做呢(因为xml:base需要系统和节点信息???)
输入:
<section xmlns="http://docbook.org/ns/docbook" xml:id="voidVisit" version="5">
<title>Void</title>
<section>
<title>Screenshot</title>
<mediaobject>
<imageobject>
<imagedata fileref="screenshots/Dialog.png" />
</imageobject>
</mediaobject>
</section>
</section>
输出:
...
<section xml:id="void" version="5"
xml:base="file:/C:/Projects/my/proj/trunk/spec/module/components/void.xml">
<title>Void</title>
<section>
<title>Screenshot</title>
<mediaobject>
<imageobject>
<imagedata fileref="screenshots/Dialog.png"/>
</imageobject>
</mediaobject>
</section>
...
答案 0 :(得分:4)
在XSLT 2.0(XPath 2.0)中,函数static-base-uri()
和base-uri()
可用于此目的。
这是一个有效的例子:
<xsl:stylesheet version="2.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:output omit-xml-declaration="yes"/>
<xsl:template match="/">
<doc xml:base="{base-uri()}"/>
</xsl:template>
</xsl:stylesheet>
应用此转换后,生成所需结果:
<doc xml:base="file:/C:/CVS-DDN/fxsl-xslt2/data/marrowtr.xml"/>
因此,您案例中的完整转换是:
<xsl:stylesheet version="2.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
xmlns:d="http://docbook.org/ns/docbook">
<xsl:output omit-xml-declaration="yes"/>
<xsl:template match="node()|@*">
<xsl:copy>
<xsl:apply-templates select="node()|@*"/>
</xsl:copy>
</xsl:template>
<xsl:template match="/d:section">
<xsl:copy>
<xsl:attribute name="xml:base" select="base-uri(/)"/>
<xsl:apply-templates select="node()|@*"/>
</xsl:copy>
</xsl:template>
</xsl:stylesheet>
在XSLT 1.0中,解决方案将base-uri作为外部参数(全局xsl:param>
)传递给转换。