home *** CD-ROM | disk | FTP | other *** search
/ Computer Shopper 201 / DPCS1104.ISO / Full / QuickBooks / QBooks / data1.cab / Pages_Questions / solutions.xsl < prev    next >
Encoding:
Extensible Markup Language  |  2004-05-21  |  1.1 KB  |  36 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.  
  10. <TABLE cellspacing="8">
  11. <UL>
  12. <xsl:for-each select="link">
  13.   <tr><td class="data"><li></li></td>
  14.   <td>
  15.     <xsl:if test=".[@online='true']">
  16.         <img src="images/com_bolt.gif" alt="Online Content Icon" width="8" height="12"/>
  17.     </xsl:if>
  18.  </td><td class="data">
  19.     <a><xsl:attribute name="href"><xsl:value-of select="command"/></xsl:attribute>
  20.     <xsl:value-of select="linktext"/></a>
  21.     <xsl:if test="./icon">
  22.         <img>
  23.         <xsl:attribute name="src"><xsl:value-of select="icon"/></xsl:attribute></img>
  24.     </xsl:if>
  25.   </td>
  26.   <td><img src="images/blank.gif" alt="Nothing" width="1" height="1"/></td>
  27.  </tr> 
  28. </xsl:for-each>
  29. </UL>
  30. </TABLE><BR/>
  31. <TABLE><TR><TD align="center"><a href="qbks://qbw:Navigator?featurearea=businessservices">Business Services Navigator</a></TD></TR></TABLE>
  32. </xsl:template>
  33.  
  34. </xsl:stylesheet>
  35.  
  36.