diff options
author | yvesf <yvesf-git@xapek.org> | 2011-06-25 18:55:25 +0200 |
---|---|---|
committer | yvesf <yvesf-git@xapek.org> | 2011-06-25 18:55:25 +0200 |
commit | 7ea94ce94ea0af7df56e2d7aab6158a3edd5bb4b (patch) | |
tree | c7fb07555f43e54b81ad7089eebd200b00db4a5d /ebus-xml/transform/ebus.txt.xslt | |
parent | 1ccc6292abd33742cd615f1094e23dfdbe6a37f4 (diff) | |
download | ebus-alt-7ea94ce94ea0af7df56e2d7aab6158a3edd5bb4b.tar.gz ebus-alt-7ea94ce94ea0af7df56e2d7aab6158a3edd5bb4b.zip |
ebus xml doku
Diffstat (limited to 'ebus-xml/transform/ebus.txt.xslt')
-rw-r--r-- | ebus-xml/transform/ebus.txt.xslt | 49 |
1 files changed, 0 insertions, 49 deletions
diff --git a/ebus-xml/transform/ebus.txt.xslt b/ebus-xml/transform/ebus.txt.xslt deleted file mode 100644 index dda1e33..0000000 --- a/ebus-xml/transform/ebus.txt.xslt +++ /dev/null @@ -1,49 +0,0 @@ -<?xml version="1.0" encoding="utf8"?> -<xsl:stylesheet version="1.0" -xmlns:xsl="http://www.w3.org/1999/XSL/Transform"> -<!-- TODO: padding --> - <xsl:output method="text" /> - <xsl:template match="/"> -=== Ebus Geräte - -Adresse | Gerät | Typ - - <xsl:for-each select="ebus/devices/device"> - <xsl:value-of select="@address"/> - <xsl:text>|</xsl:text> - <xsl:value-of select="text()"/> - <xsl:text>|</xsl:text> - <xsl:value-of select="@type"/> - <xsl:text> -</xsl:text> - </xsl:for-each> - -=== Ebus Pakete - -Primary Command | Secondary Command | Name | Description - ---- offset | typ | name | description - <xsl:for-each select="ebus/packets/packet"> - <xsl:value-of select="@primary"/> - <xsl:text>|</xsl:text> - <xsl:value-of select="@secondary"/> - <xsl:text>|</xsl:text> - <xsl:value-of select="@name"/> - <xsl:text>|</xsl:text> - <xsl:value-of select="@description"/> - - <xsl:for-each select="fields/*"> - <xsl:value-of select="@offset"/> - <xsl:text>|</xsl:text> - <xsl:value-of select="name()"/> - <xsl:text>|</xsl:text> - <xsl:value-of select="@name"/> - <xsl:text>|</xsl:text> - <xsl:value-of select="text()"/> - <xsl:text> - </xsl:text> - </xsl:for-each> - <xsl:text> - </xsl:text> - </xsl:for-each> - </xsl:template> -</xsl:stylesheet> |