I want to display an RSS feed from Feedburner on my website, however I'd like to be able to apply an XSLT to it as well.
Is it possible to fetch a URL in an XSLT rather than add the link to the style in the XML?
I want to display an RSS feed from Feedburner on my website, however I'd like to be able to apply an XSLT to it as well.
Is it possible to fetch a URL in an XSLT rather than add the link to the style in the XML?
You can load an external xml file in your stylesheet using the document function.
(Edited after the comment)
<xsl:template match="/">
<xsl:apply-templates select="document("myurl.xml")/root" mode="extern"/>
</xsl:template>
<xsl:template match="root" mode="extern">
Hello world
</xsl:template>