aboutsummaryrefslogtreecommitdiffstats
path: root/LUFA/StudioIntegration/XSLT
diff options
context:
space:
mode:
authorDean Camera <dean@fourwalledcubicle.com>2013-01-07 16:27:17 +0000
committerDean Camera <dean@fourwalledcubicle.com>2013-01-07 16:27:17 +0000
commit30545fdec79763ff3671958d4ba0da76fd16f60d (patch)
treec34129373f901041d22f9b849c5d38798b79e08d /LUFA/StudioIntegration/XSLT
parent3edd686a053a13dd89b4aea29ad28a427e120af6 (diff)
downloadlufa-30545fdec79763ff3671958d4ba0da76fd16f60d.tar.gz
lufa-30545fdec79763ff3671958d4ba0da76fd16f60d.tar.bz2
lufa-30545fdec79763ff3671958d4ba0da76fd16f60d.zip
Fix up broken Studio pseudo-board configuration module, add missing USB driver files.
Diffstat (limited to 'LUFA/StudioIntegration/XSLT')
-rw-r--r--LUFA/StudioIntegration/XSLT/lufa_extension_transform.xslt10
1 files changed, 9 insertions, 1 deletions
diff --git a/LUFA/StudioIntegration/XSLT/lufa_extension_transform.xslt b/LUFA/StudioIntegration/XSLT/lufa_extension_transform.xslt
index 0d57efaab..8cb4ea9a8 100644
--- a/LUFA/StudioIntegration/XSLT/lufa_extension_transform.xslt
+++ b/LUFA/StudioIntegration/XSLT/lufa_extension_transform.xslt
@@ -49,7 +49,7 @@
<!-- Update the extension online help URLs to the version of LUFA being
used -->
- <xsl:template match="online-help/*/@baseurl | online-help/index-page/@url">
+ <xsl:template match="online-help/*/@baseurl">
<xsl:attribute name="baseurl">
<xsl:value-of select="current()"/>
<xsl:value-of select="$lufa-version"/>
@@ -57,4 +57,12 @@
</xsl:attribute>
</xsl:template>
+ <xsl:template match="online-help/index-page/@url">
+ <xsl:attribute name="url">
+ <xsl:value-of select="current()"/>
+ <xsl:value-of select="$lufa-version"/>
+ <xsl:text>/html/</xsl:text>
+ </xsl:attribute>
+ </xsl:template>
+
</xsl:stylesheet>