added saxon8 to repository to support xslt 2.0 transformations; these are used in transforming THDL's wylie transcripts into unicode transcripts

This commit is contained in:
eg3p 2007-05-17 18:20:12 +00:00
parent 4f553caf54
commit 0440ef5ffb
3 changed files with 54 additions and 44 deletions

View file

@ -1,6 +1,9 @@
<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">
<xsl:stylesheet version="1.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
xmlns:java="java" >
<xsl:output method="text" encoding="utf-8"/>
<xsl:template match="/">
@ -8,6 +11,6 @@
</xsl:template>
<xsl:template match="transcript">
<xsl:value-of select="."/><xsl:text> </xsl:text>
<xsl:value-of select="java:net.URLEncoder.encode(.,'UTF-8')"/><xsl:text> </xsl:text>
</xsl:template>
</xsl:stylesheet>