[XSL-LIST Mailing List Archive Home] [By Thread] [By Date] [Recent Entries] [Reply To This Message]

Re: FW: Embedding XSL in XML for IE

Subject: Re: FW: Embedding XSL in XML for IE
From: Jeni Tennison <jeni@xxxxxxxxxxxxxxxx>
Date: Thu, 2 May 2002 18:48:25 +0100
embedding xsl in xml
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


Current Thread

PURCHASE STYLUS STUDIO ONLINE TODAY!

Purchasing Stylus Studio from our online shop is Easy, Secure and Value Priced!

Buy Stylus Studio Now

Download The World's Best XML IDE!

Accelerate XML development with our award-winning XML IDE - Download a free trial today!

Don't miss another message! Subscribe to this list today.
Email
First Name
Last Name
Company
Subscribe in XML format
RSS 2.0
Atom 0.3
Site Map | Privacy Policy | Terms of Use | Trademarks
Free Stylus Studio XML Training:
W3C Member
Stylus Studio® and DataDirect XQuery ™are products from DataDirect Technologies, is a registered trademark of Progress Software Corporation, in the U.S. and other countries. © 2004-2013 All Rights Reserved.