↧
Answer by Dimitre Novatchev for Converting RSSTV XML with XSLT
Just write:<rss xmlns:tv="http://www.rss-tv.org/rss/tv1.0" version="2.0"><channel/></rss>xmlns:tv="http://www.rss-tv.org/rss/tv1.0" isn't an attribute -- it is a namespace definition...
View ArticleAnswer by FailedDev for Converting RSSTV XML with XSLT
I don't really understand what your problem is : Here are two ways to do it.1) Assuming namespace is hardcoded in your xslt. <xsl:template match="/"><rss...
View ArticleConverting RSSTV XML with XSLT
I am trying to transform RSSTV XML using XSLT.The problem I am having is that I need the XML to look like this:<?xml version="1.0"?><rss xmlns:tv="http://www.rss-tv.org/rss/tv1.0"...
View Article