home *** CD-ROM | disk | FTP | other *** search
/ com!online 2002 June / comonline0602.iso / software / cogitum / CoTracker.exe / tree.___ < prev    next >
Encoding:
Extensible Markup Language  |  2000-06-28  |  1.3 KB  |  32 lines

  1. <?xml version="1.0"?>
  2. <xsl:stylesheet xmlns:xsl="http://www.w3.org/TR/WD-xsl">
  3.  
  4. <xsl:template match="/">    
  5.     <xsl:apply-templates select="root"/>
  6. </xsl:template>
  7.  
  8. <xsl:template match="root">
  9. <xsl:for-each select="CTLIST/CATEGORY">
  10.  
  11. <LI class="linormal" value="1">   
  12.  <xsl:attribute name="onmouseup">ClearDrag('<xsl:value-of select="@CID" />')</xsl:attribute>
  13.  <xsl:attribute name="onmouseover">MoveOverLi('<xsl:value-of select="@CID" />', 1)</xsl:attribute>
  14.  <xsl:attribute name="onmouseout">MoveOverLi('<xsl:value-of select="@CID" />', 0)</xsl:attribute>
  15.  <xsl:attribute name="onmousemove">fnDragCheck()</xsl:attribute>
  16.  <xsl:attribute name="CIDVal"><xsl:value-of select="@CID" /></xsl:attribute>
  17.  <IMG src="point.gif">
  18.  </IMG>
  19.  <SPAN class="NormTxt" ID="SpanId" style="font-size:9pt">  
  20.   <xsl:attribute name="onmousedown">ClickPoint('<xsl:value-of select="@CID" />')</xsl:attribute>
  21.   <xsl:attribute name="onmouseover">HltLE('<xsl:value-of select="@CID" />', 1)</xsl:attribute>
  22.   <xsl:attribute name="onmouseout">HltLE('<xsl:value-of select="@CID" />', 0)</xsl:attribute>
  23.   <xsl:attribute name="onmousemove">fnMoveItem('<xsl:value-of select="@CID" />')</xsl:attribute>
  24.   <xsl:value-of select="@Name" />
  25.  </SPAN>  
  26.  <SPAN ID="DragDiv"  style="cursor:default;font-size:9pt">  
  27.  </SPAN>  
  28. </LI>
  29. </xsl:for-each>
  30. </xsl:template>
  31.  
  32. </xsl:stylesheet>