blob: 1f0a1c60ca2d469ba9415168ca3681f863cabc3f [file] [log] [blame]
Stuart McCulloch26e7a5a2011-10-17 10:31:43 +00001<?xml version="1.0" encoding="UTF-8"?>
2
3<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:beans="http://www.springframework.org/schema/beans" xmlns:aop="http://www.springframework.org/schema/aop" xmlns:context="http://www.springframework.org/schema/context" xmlns:jee="http://www.springframework.org/schema/jee" xmlns:jms="http://www.springframework.org/schema/jms" xmlns:lang="http://www.springframework.org/schema/lang" xmlns:osgi-compendium="http://www.springframework.org/schema/osgi-compendium" xmlns:osgi="http://www.springframework.org/schema/osgi" xmlns:tool="http://www.springframework.org/schema/tool" xmlns:tx="http://www.springframework.org/schema/tx" xmlns:util="http://www.springframework.org/schema/util" xmlns:webflow-config="http://www.springframework.org/schema/webflow-config">
4 <xsl:output method="text" />
5
6 <xsl:template match="/">
7
8 <!-- Match all attributes that holds a class or a comma delimited
9 list of classes and print them -->
10
11 <xsl:for-each select="//provider|//class">
12 <xsl:value-of select="." />
13 <xsl:text>
14 </xsl:text>
15 </xsl:for-each>
16 </xsl:template>
17
18
19</xsl:stylesheet>
20