<?xml version="1.0" encoding='ISO-8859-1'?>

<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">

<xsl:template match='raiz'>
<xsl:processing-instruction name="cocoon-format">type="text/html"</xsl:processing-instruction>
<html>
<head><title>Ordenando</title></head>
<body>
<ol>
	<xsl:apply-templates select='cosa'>
	<xsl:sort select='.' data-type='text'/>
	</xsl:apply-templates><br />
</ol>
</body>
</html>
</xsl:template>

<xsl:template match='cosa'>
<li><xsl:value-of select='.'/></li>
</xsl:template>
</xsl:stylesheet>