OSDN Git Service

2013.10.24
[uclinux-h8/uClinux-dist.git] / user / mobile-broadband-provider-info / serviceproviders.xsl
1 <xsl:stylesheet
2 xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
3 version="1.0">
4
5 <xsl:strip-space elements="*"/>
6 <xsl:output method="text"/>
7
8 <xsl:template match="/">
9 <xsl:apply-templates select="serviceproviders/country/provider/gsm/apn"/>
10 </xsl:template>
11
12 <xsl:template match="apn">
13 <xsl:value-of select="../../../@code"/>
14 <xsl:text>,</xsl:text>
15 <xsl:value-of select="../../name"/>
16 <xsl:text>,</xsl:text>
17 <xsl:value-of select="@value"/> 
18 <xsl:text>,</xsl:text>
19 <xsl:value-of select="usage/@type"/> 
20 <xsl:text>,dns='</xsl:text>
21 <xsl:for-each select="dns">
22 <xsl:value-of select="."/>
23 <xsl:text> </xsl:text>
24 </xsl:for-each>
25 <xsl:text>' </xsl:text>
26 <xsl:text>&#xA;</xsl:text>
27 </xsl:template>
28 </xsl:stylesheet>