home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 2010 April / PCWorld0410.iso / WindowsServerTrial / server.iso / sources / w32uires.dll / HTML / APPCOMPAT_XSL < prev   
Extensible Markup Language  |  2008-01-19  |  2KB  |  80 lines

  1. <?xml version="1.0"?>
  2.  
  3. <xsl:stylesheet
  4.   xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
  5.   xmlns="http://www.w3.org/TR/REC-html40"
  6.   version="1.0"><xsl:output method="html"/>
  7.  
  8. <xsl:template match="/">
  9. <html>
  10.   <head>
  11.     <title></title>
  12.   </head>
  13.   <body>
  14.   <xsl:for-each select="CompatReport/HardBlocks">
  15.              <h2><font color="black"><xsl:value-of select="Message"/></font></h2>
  16.   </xsl:for-each>
  17.   <xsl:for-each select="CompatReport/HardBlocks">
  18.              <h3><font color="blue"><xsl:value-of select="AppHead"/></font></h3>
  19.   </xsl:for-each>
  20.  
  21.   <xsl:for-each select="CompatReport/HardBlocks/AppNames/AppName">
  22.               <font color="green"> <li><xsl:value-of select="Name"/></li></font>
  23.   </xsl:for-each>
  24.  
  25.   <xsl:for-each select="CompatReport/HardBlocks/AppNames">
  26.       <p><a href="#{generate-id(.)}">
  27.     <font color="blue"><b><xsl:value-of select="./Help"/></b></font>
  28.          </a>
  29.       </p>
  30.   </xsl:for-each>
  31.   <br/><br/>
  32.  
  33.  
  34.  
  35.   <xsl:for-each select="CompatReport/SoftBlocks">
  36.              <h2><font color="black"><xsl:value-of select="Message"/></font></h2>
  37.   </xsl:for-each>
  38.   <xsl:for-each select="CompatReport/SoftBlocks">
  39.              <h3><font color="blue"><xsl:value-of select="AppHead"/></font></h3>
  40.   </xsl:for-each>
  41.  
  42.   <xsl:for-each select="CompatReport/SoftBlocks/AppNames/AppName">
  43.               <font color="green"> <li><xsl:value-of select="Name"/></li></font>
  44.     </xsl:for-each>
  45.  
  46.     <xsl:for-each select="CompatReport/SoftBlocks/AppNames">
  47.       <p><a href="#{generate-id(.)}">
  48.         <font color="blue"><b><xsl:value-of select="./Help"/></b></font>
  49.          </a>
  50.       </p>
  51.   </xsl:for-each>
  52.   <br/><br/>
  53.  
  54.  
  55.   <h2></h2>
  56.   <xsl:for-each select="CompatReport/HardBlocks/AppNames">
  57.     <h3><a name="{generate-id(.)}"><xsl:value-of select="CompatReport/HardBlocks/AppNames"/></a></h3>
  58.          <p><xsl:value-of select="./About"/></p>
  59.          <a href="#toc"><small>Back to issue list</small></a>
  60.          <br/><br/><br/>
  61.   </xsl:for-each>
  62.  
  63.   <h2></h2>
  64.   <xsl:for-each select="CompatReport/SoftBlocks/AppNames">
  65.     <h3><a name="{generate-id(.)}"><xsl:value-of select="CompatReport/SoftBlocks/AppNames"/></a></h3>
  66.         
  67.            
  68.      <p><xsl:value-of select="./About"/></p>
  69.          <a href="#toc"><small>Back to issue list</small></a>
  70.          <br/><br/><br/>
  71.   </xsl:for-each>
  72.  
  73.  
  74.  
  75.   </body>
  76. </html>
  77. </xsl:template>
  78.  
  79. </xsl:stylesheet>
  80.