Stuart McCulloch | bb01437 | 2012-06-07 21:57:32 +0000 | [diff] [blame] | 1 | <?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 | |