Welcome to mirror list, hosted at ThFree Co, Russian Federation.

get-stk600-devices.xsl « tools « avrdude « src « xs - github.com/prusa3d/PrusaSlicer.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: efba1628a17cf1ae95ca23d1743eccb44cd82a3b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
<?xml version="1.0" encoding='ISO-8859-1' ?>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<!--
 * Copyright (c) 2008 Joerg Wunsch
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation; either version 2 of the License, or
 * (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program. If not, see <http://www.gnu.org/licenses/>.
 *
 * $Id$
-->
<!--
    * Extract STK600 device support out of
    * targetboards.xml.
    *
    * Run this like:
    *
    * xsltproc \
    *   tools/get-stk600-devices.xsl targetboard.xml
    *
    * and copy&paste the results into the respective table.
-->
<xsl:output method="text"/>
<xsl:template match="/">
    <xsl:text>@multitable @columnfractions .15 .15 .6&#010;</xsl:text>
    <xsl:text>Routing card @tab Socket card @tab Devices&#010;</xsl:text>
    <xsl:for-each select="/STK600/ROUTING/CARD">
	<xsl:text>@item @code{</xsl:text>
	<xsl:value-of select="RC_NAME" />
	<xsl:text>} @tab @code{</xsl:text>
	<xsl:value-of select="SC_NAME" />
	<xsl:text>} @tab</xsl:text>
        <xsl:for-each select="TARGET">
           <xsl:text> </xsl:text>
           <xsl:value-of select="NAME" />
        </xsl:for-each>
        <xsl:text>&#010;</xsl:text>
    </xsl:for-each>  <!-- All cards -->
    <xsl:text>@end multitable&#010;</xsl:text>

</xsl:template>
</xsl:stylesheet>