aboutsummaryrefslogtreecommitdiffstats
path: root/LUFA/StudioIntegration/XSLT
diff options
context:
space:
mode:
authorDean Camera <dean@fourwalledcubicle.com>2013-01-07 20:39:25 +0000
committerDean Camera <dean@fourwalledcubicle.com>2013-01-07 20:39:25 +0000
commit841bb33e362cfbeee8fb3d267072a3e64f5fbd87 (patch)
tree06a85af26abb264efaf63ac411c27a7aa8481c86 /LUFA/StudioIntegration/XSLT
parent48e87c8e8f4395a107bd63c3be8c57a636c25cf1 (diff)
downloadlufa-841bb33e362cfbeee8fb3d267072a3e64f5fbd87.tar.gz
lufa-841bb33e362cfbeee8fb3d267072a3e64f5fbd87.tar.bz2
lufa-841bb33e362cfbeee8fb3d267072a3e64f5fbd87.zip
Add ASF provider manifest file and adjust VSIX packing to compress the library contents.
Diffstat (limited to 'LUFA/StudioIntegration/XSLT')
-rw-r--r--LUFA/StudioIntegration/XSLT/lufa_asfmanifest_transform.xslt35
1 files changed, 35 insertions, 0 deletions
diff --git a/LUFA/StudioIntegration/XSLT/lufa_asfmanifest_transform.xslt b/LUFA/StudioIntegration/XSLT/lufa_asfmanifest_transform.xslt
new file mode 100644
index 000000000..8cbb8afb8
--- /dev/null
+++ b/LUFA/StudioIntegration/XSLT/lufa_asfmanifest_transform.xslt
@@ -0,0 +1,35 @@
+<!--
+ LUFA Library
+ Copyright (C) Dean Camera, 2013.
+
+ dean [at] fourwalledcubicle [dot] com
+ www.lufa-lib.org
+-->
+
+<!-- Atmel Studio framework VSIX XML transform file -->
+
+
+<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">
+ <xsl:output method="xml" omit-xml-declaration="yes"/>
+
+ <!-- Need to input the LUFA version for later use -->
+ <xsl:param name="lufa-version"/>
+
+ <!-- Recursively match and copy/process all nodes/attributes -->
+ <xsl:template match="@*|node()">
+ <xsl:copy>
+ <xsl:apply-templates select="@*|node()"/>
+ </xsl:copy>
+ </xsl:template>
+
+ <!-- Update the LUFA version to the version passed as a parameter -->
+ <xsl:template match="Version">
+ <xsl:copy>
+ <xsl:value-of select="substring($lufa-version, 1, 2)"/>
+ <xsl:text>.</xsl:text>
+ <xsl:value-of select="substring($lufa-version, 3, 2)"/>
+ <xsl:text>.</xsl:text>
+ <xsl:value-of select="substring($lufa-version, 5, 2)"/>
+ </xsl:copy>
+ </xsl:template>
+</xsl:stylesheet>