home *** CD-ROM | disk | FTP | other *** search
/ Computer Shopper 201 / DPCS1104.ISO / Full / QuickBooks / QBooks / data1.cab / Pages_Questions / activities.xsl < prev    next >
Encoding:
Extensible Markup Language  |  2004-05-21  |  1.0 KB  |  38 lines

  1. <?xml version='1.0'?>
  2. <!--Copyright 1999-2000 Intuit Inc. All rights reserved. Unauthorized duplication is a violation of applicable law.-->
  3.  
  4. <xsl:stylesheet xmlns:xsl="http://www.w3.org/TR/WD-xsl">
  5.  
  6. <xsl:template><xsl:apply-templates/></xsl:template>
  7.  
  8. <xsl:template match="table/rows/row/links">
  9. <TABLE cellspacing="8">
  10.  
  11. <xsl:apply-templates/>
  12.  
  13. </TABLE>
  14. </xsl:template>
  15.  
  16. <xsl:template match="link">
  17.   <tr>
  18.       <td class="data">    
  19.         <xsl:if test="./icon">
  20.         <a><xsl:attribute name="href"><xsl:value-of select="command"/></xsl:attribute>
  21.         <img border="0"><xsl:attribute name="src"><xsl:value-of select="icon"/></xsl:attribute></img></a>
  22.         </xsl:if>
  23.     </td>
  24.     <td class="data">
  25.         <a><xsl:attribute name="href"><xsl:value-of select="command"/></xsl:attribute>
  26.         <xsl:value-of select="linktext"/></a>
  27.       </td>
  28.       <td><img src="images/blank.gif" width="1" height="1"/></td>
  29.  </tr>
  30. </xsl:template>
  31.  
  32. <xsl:template match="separator">
  33. <tr><td colspan="2"><hr color = "#99CC99" style="ridge"/></td></tr>
  34. </xsl:template>
  35.  
  36. </xsl:stylesheet>
  37.  
  38.