aboutsummaryrefslogtreecommitdiffstats
path: root/LUFA/StudioIntegration/lufa_indent_transform.xslt
diff options
context:
space:
mode:
authorDean Camera <dean@fourwalledcubicle.com>2013-01-03 16:16:45 +0000
committerDean Camera <dean@fourwalledcubicle.com>2013-01-03 16:16:45 +0000
commit56f03a793c8f6d63b3ce70bfdb1f4c4f05e1934a (patch)
tree023f9b967991af7269befde633ce254eddc86ca2 /LUFA/StudioIntegration/lufa_indent_transform.xslt
parent5386a5a7ffd4a2b739ce6f41d918378a6f70da15 (diff)
downloadlufa-56f03a793c8f6d63b3ce70bfdb1f4c4f05e1934a.tar.gz
lufa-56f03a793c8f6d63b3ce70bfdb1f4c4f05e1934a.tar.bz2
lufa-56f03a793c8f6d63b3ce70bfdb1f4c4f05e1934a.zip
Move out Studio Integration XML transform files to their own directory for neatness.
Diffstat (limited to 'LUFA/StudioIntegration/lufa_indent_transform.xslt')
-rw-r--r--LUFA/StudioIntegration/lufa_indent_transform.xslt23
1 files changed, 0 insertions, 23 deletions
diff --git a/LUFA/StudioIntegration/lufa_indent_transform.xslt b/LUFA/StudioIntegration/lufa_indent_transform.xslt
deleted file mode 100644
index a05a82427..000000000
--- a/LUFA/StudioIntegration/lufa_indent_transform.xslt
+++ /dev/null
@@ -1,23 +0,0 @@
-<!--
- LUFA Library
- Copyright (C) Dean Camera, 2013.
-
- dean [at] fourwalledcubicle [dot] com
- www.lufa-lib.org
--->
-
-<!-- Atmel Studio framework Module XML transform file -->
-
-<!-- Indents a given XML document to match the node hierarchy. -->
-<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
- <xsl:output method="xml" omit-xml-declaration="yes" indent="yes"/>
-
- <!-- Remove all white-space on all elements so that they can be indented -->
- <xsl:strip-space elements="*"/>
-
- <!-- Match the root node and copy, so that the output will be a correctly
- indented version of the input document -->
- <xsl:template match="/">
- <xsl:copy-of select="."/>
- </xsl:template>
-</xsl:stylesheet> \ No newline at end of file