Apple XML to HTML using XSL

kessix

New Member
I have to format Apple RSS feeds to show the top iphone apps in a website. I downloaded XML files and thought it'd be simple to apply an stylesheet but its turning a heck of a job...Here is the XSL iam trying to apply: pretty simple\[code\]<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:im="http://itunes.apple.com/rss"><xsl:template match="/"><tr> <th>ID</th> <th>Title</th></tr><xsl:for-each select="entry"><tr> <td><xsl:value-of select="id"/></td> <td><xsl:value-of select="title"/></td> <td><xsl:value-of select="category"/></td></tr></xsl:for-each></xsl:template></xsl:stylesheet>\[/code\]XML feeds I am trying to format can be downloaded from http://itunes.apple.com/rss/generator/ (Choose iOS Apps and click generate).Please help on this.. the XML file does not change whatever changes I make to the XSL file, it always displays the whole contents of the XML file..I could find only one topic on this on the Internet and it also does not has a working solution. It should be quite familiar issue if people are showing websites with i-tunes apps these days.
 
Back
Top