Welcome, guest [ Login ]

CompanyNewsSearchXSLT

WikiHome » Lib » Ext » CompanyNewsSearchXSLT
 
   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="//OL//LI/FONT">
        <item>
          <xsl:for-each select="A[1]">
            <href>
              <xsl:value-of select="@href" />
            </href>
            <title>
              <xsl:apply-templates />
            </title>
          </xsl:for-each>
          <xsl:for-each select="B">
            <source>
              <xsl:value-of select="." />
            </source>
          </xsl:for-each>
        </item>
      </xsl:for-each>
    </items>
  </xsl:template>
</xsl:stylesheet>