summaryrefslogtreecommitdiff
path: root/navit/xslt/plugin_menu.xslt
blob: 9624043761c37822a7703f52711ae6ac4b0a8e9f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<?xml version="1.0"?>
<xsl:transform version="2.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:xi="http://www.w3.org/2001/XInclude">
        <xsl:output method="xml" doctype-system="navit.dtd" cdata-section-elements="gui"/>
        <xsl:template match="/config/navit/gui[@type='internal']">
		<xsl:copy><xsl:copy-of select="@*"/>
		<xsl:value-of select="substring-before(text(),'&lt;/html&gt;')"/>
		<xsl:text>
		<![CDATA[
			<a name='Main Menu'>
			<a href='#Plugins'>
			<img src='gui_settings'><text>Plugins</text></img>
			</a>
			</a>
			<a name='Plugins'>Plugins</a>
			</html>
		]]>
		</xsl:text>
		</xsl:copy>
        </xsl:template>
	<xsl:template match="@*|node()"><xsl:copy><xsl:apply-templates select="@*|node()"/></xsl:copy></xsl:template>
</xsl:transform>