<?xml version="1.0"?>
<!-- default XSLT style sheet for the uiListing control. -->

<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">
<xsl:output method="xml" omit-xml-declaration="yes" indent="no"/>
<xsl:param name="imageUrl"></xsl:param>
<xsl:param name="hiRowClass">uiAlternatingRow</xsl:param>

  <xsl:template match="/">
    <table cellspacing="0" cellpadding="2" border="1" bordercolorlight="#C0C0C0" bordercolordark="#FFFFFF">
    <xsl:for-each select="//node">
	<xsl:sort data-type="text" order="descending"/>
	     <tr bgcolor="#fffffA"><xsl:attribute name="class"><xsl:if test="position() mod 2 = 0"><xsl:value-of select="$hiRowClass" /></xsl:if></xsl:attribute>		     
		     <td><xsl:value-of select="@title"/></td>
		     <xsl:apply-templates select="info"/>
		 </tr>
	</xsl:for-each>
    </table>  	
  </xsl:template>

  
  <xsl:template match="info">
  	  <td class="uiListItem"><xsl:value-of select="."/></td>
  </xsl:template>
   
</xsl:stylesheet>
