blob: aa2703e1d237104921758bf0f49601db9a1ba709 (
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
|
<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet version="1.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
>
<xsl:output method="text"
encoding="UTF-8"
doctype-system="xkb.dtd"
indent="no"/>
<!-- convert the base.xml format's content into a
list of layout(variant):"name" lines, e.g.
af:"Dari"
af(fa-olpc):"Dari (Afghanistan, OLPC)"
af(ps-olpc):"Pashto (Afghanistan, OLPC)"
af(ps):"Pashto"
af(uz-olpc):"Uzbek (Afghanistan, OLPC)"
af(uz):"Uzbek (Afghanistan)"
-->
<xsl:template match="modelList|optionList|name|description|shortDescription|configItem"/>
<xsl:strip-space elements="*"/>
<xsl:template match="layoutList"><xsl:apply-templates select="./layout"/></xsl:template>
<xsl:template match="variantList"><xsl:apply-templates select="./variant"/></xsl:template>
<xsl:template match="layout"><xsl:text>
</xsl:text><xsl:value-of select="./configItem/name"/>:"<xsl:value-of select="./configItem/description"/>"<xsl:apply-templates match="./variantList/variant"/></xsl:template>
<xsl:template match="variant"><xsl:text>
</xsl:text><xsl:value-of select="../../configItem/name"/>(<xsl:value-of select="./configItem/name"/>):"<xsl:value-of select="./configItem/description"/>"</xsl:template>
</xsl:stylesheet>
|