Welcome, guest [ Login ]

BoxOfficeXSLT

WikiHome » Lib » Ext » BoxOfficeXSLT
 
   Feeds  |   Revision 5
Toolbar Edit  

+ Help Quick Links

+ Installed Applications


<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:html="http://www.w3.org/1999/xhtml" version="1.0">
  <xsl:template match="/">
    <items>
      <xsl:for-each select=".//TABLE[@cellpadding='3']">
        <xsl:for-each select="TR">
          <movie>
            <xsl:for-each select="TD">
              <data>
                <xsl:value-of select="." />
              </data>
            </xsl:for-each>
          </movie>
        </xsl:for-each>
      </xsl:for-each>
    </items>
  </xsl:template>
</xsl:stylesheet>