<?xml version="1.0" encoding="us-ascii"?>
<xsl:stylesheet version='1.0' 
                xmlns:xsl='http://www.w3.org/1999/XSL/Transform'
				xmlns:s="http://www.oscom.org/2003/SlideML/1.0/"
				xmlns:dc="http://purl.org/dc/elements/1.1/"
				xmlns:dcterms="http://purl.org/dc/terms/"
				xmlns:xi="http://www.w3.org/2001/XInclude"
				xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xml:lang="en">

<xsl:output method="html" indent="yes" encoding="us-ascii"/>

<xsl:param name="query" select="'abc'"/>

<xsl:template match="/">
<html>
<head>
</head>
<body>

<xsl:apply-templates />

</body>
</html>
</xsl:template>

<xsl:template match="//*[@class='code']" >

<!--<xsl:value-of select="$query" />-->

<p><b>
<xsl:value-of select="@class" />,
<xsl:value-of select="@id" />,
<xsl:value-of select="ancestor::s:slide/s:title" />, 
<xsl:value-of select="ancestor::s:slide/@s:id" />
</b>
<pre>
<xsl:value-of select="."/>
</pre>
</p>

</xsl:template>

<xsl:template match="text()">
</xsl:template>

</xsl:stylesheet>


