|
[XSL-LIST Mailing List Archive Home] [By Thread] [By Date] [Recent Entries] [Reply To This Message] Re: FW: Embedding XSL in XML for IE
Hi Gilles,
>> I tried to apply Jeni's solution for embedding XSL in an XML file
>> but IE6 fails to run the stylesheet. I heard that few applications
>> support this. Does anyone know if IE6 supports embedded
>> stylesheets?
IE doesn't support embedded stylesheets. What you can do is instead
embed the *data* within a *stylesheet*. For example:
<?xml-stylesheet type="text/xsl" href="test.xsl"?>
<xsl:stylesheet version="1.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
xmlns:data="http://www.example.com/">
<data:data>
<doc>
Some data here.
</doc>
</data:data>
<xsl:template match="xsl:stylesheet">
<xsl:apply-templates select="data:data/*" />
</xsl:template>
...
</xsl:stylesheet>
IE will use this stylesheet on itself, and thus process the
information within the data:data element.
Cheers,
Jeni
---
Jeni Tennison
http://www.jenitennison.com/
XSL-List info and archive: http://www.mulberrytech.com/xsl/xsl-list
|
PURCHASE STYLUS STUDIO ONLINE TODAY!Purchasing Stylus Studio from our online shop is Easy, Secure and Value Priced! Download The World's Best XML IDE!Accelerate XML development with our award-winning XML IDE - Download a free trial today! Subscribe in XML format
|

Cart








