Jskad/archive/styles/get-list-of-transcripts.xsl

18 lines
434 B
XML
Raw Normal View History

<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet version="1.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
xmlns:java="java" >
2007-05-22 09:06:30 +00:00
2007-05-22 08:58:10 +00:00
<xsl:output method="text"/>
<xsl:template match="/">
<xsl:apply-templates select="//transcript"/>
</xsl:template>
<xsl:template match="transcript">
2007-05-22 08:58:10 +00:00
<xsl:value-of select="java:net.URLEncoder.encode(.,'UTF-8')"/><xsl:text> </xsl:text>
</xsl:template>
</xsl:stylesheet>