diff options
author | Robert Jonsson <spamatica@gmail.com> | 2011-09-15 12:14:55 +0000 |
---|---|---|
committer | Robert Jonsson <spamatica@gmail.com> | 2011-09-15 12:14:55 +0000 |
commit | b0546e5e7f7044019892543c6c82029db8d564a7 (patch) | |
tree | 1b96a6260900f3fbf3513fb48a5a72aa89052dc8 /attic/muse2-oom/muse2/oomfiles/rgd2muse.xsl | |
parent | 583c73d1a07154d3d2672d65d8cce6495f490454 (diff) |
moved attic to a branch of it's own
Diffstat (limited to 'attic/muse2-oom/muse2/oomfiles/rgd2muse.xsl')
-rw-r--r-- | attic/muse2-oom/muse2/oomfiles/rgd2muse.xsl | 33 |
1 files changed, 0 insertions, 33 deletions
diff --git a/attic/muse2-oom/muse2/oomfiles/rgd2muse.xsl b/attic/muse2-oom/muse2/oomfiles/rgd2muse.xsl deleted file mode 100644 index 6502435b..00000000 --- a/attic/muse2-oom/muse2/oomfiles/rgd2muse.xsl +++ /dev/null @@ -1,33 +0,0 @@ -<?xml version="1.0" ?> -<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0"> - -<xsl:output method="xml" indent="yes"/> - -<xsl:template match="/"> -<muse version="1.0"> - <xsl:apply-templates/> -</muse> -</xsl:template> - -<xsl:template match="device"> - <MidiInstrument name="{@name}"> - <xsl:apply-templates/> - <Controller name="Modulation" l="1" /> - <Controller name="reverb" l="3" /> - <Controller name="MainVolume" l="7" /> - <Controller name="Pan" l="10" /> - <Controller name="Expression" l="11" /> - <Controller name="Program" type="Program" init="0x0" /> - </MidiInstrument> -</xsl:template> - -<xsl:template match="bank"> - <PatchGroup name="{@name}" > - <xsl:apply-templates/> - </PatchGroup> -</xsl:template> - -<xsl:template match="program"> - <Patch name="{@name}" hbank="{../@msb}" lbank="{../@lsb}" prog="{./@id}" /> -</xsl:template> -</xsl:stylesheet> |