Subject: RE: problem with IE5
From: David Schach <davidsch@xxxxxxxxxxxxx>
Date: Tue, 9 Feb 1999 09:45:01 -0800
|
IE5 doesn't support rendering fo flow objects nor does it support
xsl:process-children. Try outputing HTML and use xsl:apply-templates in
place of process-children. Documentation for IE5 is at
http://www.microsoft.com/xml.
> -----Original Message-----
> From: paolo de lazzaro [SMTP:p.delazzaro@xxxxxxxxx]
> Sent: Tuesday, February 09, 1999 3:21 AM
> To: xsl-list@xxxxxxxxxxxxxxxx
> Subject: problem with IE5
>
> hi
>
> I have a problem with IE5 and XSL. I have the Italian version of the
> browser
> and I cannot browse XML files with XSL stylesheet. the screen it's
> white.
> I tried also with a very simple demo that I have found but I had the
> same problem
> and now I think that maybe it's a bug of the italian version of IE5.
>
> this is the XML file
>
> <?xml version="1.0"?>
> <?xml:stylesheet type="text/xsl" href="style.xsl"?>
> <xdoc>
> <greeting>Hello Dolly!</greeting>
> <question>Can you clone me?</question>
> <sheepobject>Dolly</sheepobject>
> </xdoc>
>
> and this the XSL file:
>
> <xsl:stylesheet
> xmlns:xsl="http//www.w3.org/TR/WD-xsl"
> xmlns:fo="http//www.w3.org/TR/WD-xsl/FO"
> result-ns="fo">
>
> <xsl:template match="/">
> <fo:page-sequence
> font-family="times new roman,serif"
> font-size="12pt">
> <xsl:process-children/>
> </fo:page-sequence>
> </xsl:template>
>
> <xsl:template match="*">
> <fo:block
> font-family="times new roman,serif"
> font-size="12pt">
> <xsl:process-children/>
> </fo:block>
> </xsl:template>
>
> <xsl:template match="sheepobject">
> <fo:block
> font-size="16pt">
> <xsl:text>YES I CAN!</xsl:text>
> <xsl:process-children/>
> <xsl:process-children/>
> <xsl:process-children/>
> <xsl:process-children/>
> </fo:block>
> </xsl:template>
> </xsl:stylesheet>
>
> someone can help me
>
> paolo de lazzaro << File: Card for paolo de lazzaro >>
XSL-List info and archive: http://www.mulberrytech.com/xsl/xsl-list
|