Subject: Re: XSLT browser support
From: "Steve Muench" <Steve.Muench@xxxxxxxxxx>
Date: Fri, 7 Sep 2001 16:06:10 +0200
|
| > That is not true. It is true that the old Netscape 4.x line
| > of browsers don't support XSLT. However, any browser built
| > upon the open sourced code base, for instance NS 6.x and
| > Mozilla 5.x, will have XSLT built in.
| i think the operative term is 'will' here
|
| cheers, jim
I just tried firing up Netscape 6.1 and fetching a document from
my web server like this:
<?xml version="1.0"?>
<?xml-stylesheet type="text/xsl" href="x.xsl"?>
<!-- This is the x.xml document -->
<x>
<y/>
<y/>
<y/>
<y/>
<y/>
<y/>
<y/>
<y/>
<y/>
</x>
with an "x.xsl" stylesheet in the same directory on the web server:
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:template match="/">
<html><body><ul>
<xsl:for-each select="x/y">
<li><xsl:value-of select="position()"/></li>
</xsl:for-each></ul>
</body></html>
</xsl:template>
</xsl:stylesheet>
And when I fetch http://mymachine/x.xml
I see the XSLT-rendered bullet list, so Netscape 6.1 does appear
to already have the XSLT support built-in.
_____________________________________________________________________
Steve Muench - Developer, Product Manager, XML Evangelist, Author
"Building Oracle XML Applications" - www.oreilly.com/catalog/orxmlapp
XSL-List info and archive: http://www.mulberrytech.com/xsl/xsl-list
| Current Thread |
- Re: XSLT browser support, (continued)
- Mike Brown - Thu, 6 Sep 2001 22:21:50 -0400 (EDT)
- Rafael 'Dido' Sevilla - Thu, 6 Sep 2001 22:56:06 -0400 (EDT)
- Mitch C. Amiano - Fri, 7 Sep 2001 09:22:10 -0400 (EDT)
- cutlass - Fri, 7 Sep 2001 09:32:34 -0400 (EDT)
- Steve Muench - Fri, 7 Sep 2001 10:16:17 -0400 (EDT) <=
- cutlass - Fri, 7 Sep 2001 10:23:35 -0400 (EDT)
- Pranav - Fri, 7 Sep 2001 13:54:01 -0400 (EDT)
- Kurt Cagle - Fri, 7 Sep 2001 14:14:19 -0400 (EDT)
- Ilya Khandamirov - Fri, 7 Sep 2001 11:16:15 -0400 (EDT)
|
|