diff options
author | fishsoupisgood <github@madingley.org> | 2019-04-29 01:17:54 +0100 |
---|---|---|
committer | fishsoupisgood <github@madingley.org> | 2019-05-27 03:43:43 +0100 |
commit | 3f2546b2ef55b661fd8dd69682b38992225e86f6 (patch) | |
tree | 65ca85f13617aee1dce474596800950f266a456c /roms/openbios/config/xml/xinclude.xsl | |
download | qemu-master.tar.gz qemu-master.tar.bz2 qemu-master.zip |
Diffstat (limited to 'roms/openbios/config/xml/xinclude.xsl')
-rw-r--r-- | roms/openbios/config/xml/xinclude.xsl | 43 |
1 files changed, 43 insertions, 0 deletions
diff --git a/roms/openbios/config/xml/xinclude.xsl b/roms/openbios/config/xml/xinclude.xsl new file mode 100644 index 00000000..5bcbf535 --- /dev/null +++ b/roms/openbios/config/xml/xinclude.xsl @@ -0,0 +1,43 @@ +<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform"> + + <!-- + Stefans own xinclude implementation. + We really don't want to bother the users with namespaces + --> + + <xsl:output method="xml" indent="yes"/> + <xsl:strip-space elements="*"/> + + <xsl:template match="node() | @*"> + <xsl:copy> + <xsl:apply-templates select="@* | node()"/> + </xsl:copy> + </xsl:template> + + +<!-- <xsl:template match="xi:include" xmlns:xi="http://www.w3.org/2001/XInclude"> --> + <xsl:template match="include"> + <xsl:variable name="href"><xsl:value-of select="@href"/> + </xsl:variable> + <xsl:for-each select="document(@href)"> + <!-- + <xsl:copy><xsl:copy-of select="@*"/> + <xsl:attribute name="base"> + <xsl:value-of select="$href"/> + </xsl:attribute> + <xsl:apply-templates select="node()" /> + </xsl:copy> + --> + <xsl:element name="{local-name(*)}" namespace="{namespace-uri(..)}"> + <xsl:copy-of select="*/@*"/> + <xsl:attribute name="base"> + <xsl:value-of select="$href"/> + </xsl:attribute> + <xsl:for-each select="*"> + <xsl:apply-templates/> + </xsl:for-each> + </xsl:element> + </xsl:for-each> + </xsl:template> + +</xsl:stylesheet> |