Problem in Mozilla for Displaying text from XSL variable

View: New views
3 Messages — Rating Filter:   Alert me  

Problem in Mozilla for Displaying text from XSL variable

by Parag.gupta.iiita :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message

I have one problem regarding displaying text from XML file.
I have a XSL variable named $p = (0 0 0) (0.82 0 0) (1.63 -0.01 0)
(2.63 -0.01 0) (3.63 -0.01 0) (4.63 -0.01 0) (5.63 -0.02 0) (6.63
-0.02 0) (7.63 -0.02 0) (8.6 -0.02 0)
This line contains X,Y,Z coordinates of 10 points.
for displaying each coordinate in a separate line.Like this....
(0 0 0)
(0.82 0 0)
(1.63 -0.01 0)
(2.63 -0.01 0)
(3.63 -0.01 0)
(4.63 -0.01 0)
(5.63 -0.02 0)
(6.63 -0.02 0)
(7.63 -0.02 0)
(8.6 -0.02 0)

i made a template

<xsl:call-template name="break">
<xsl:with-param name="str" select="$p"/>
<xsl:with-param name="breaker" select="'('"/>
</xsl:call-template>
<xsl:template name="break">
<xsl:param name="str"/>
<xsl:param name="breaker"/>
<xsl:choose>
<xsl:when test="substring-after($str, $breaker) = ''"/>
<xsl:value-of select="$str"/>
</xsl:when>
<xsl:otherwise>
<xsl:value-of select="concat(substring-before($str, $breaker),
$breaker)"/>
<br/>
<xsl:call-template name="break">
<xsl:with-param name="str" select="substring-after($str, $breaker)"/>
<xsl:with-param name="breaker" select="$breaker"/>
</xsl:call-template>
</xsl:otherwise
</xsl:template>

for more clearity go to this link
http://bytes.com/forum/thread786674.html

NOW THE PROBLEM is this, that in IE 6.0 its displaying all the points
in different row, but when i open that file in mozilla,it displays all
the points in a single row. can any one hlep me that how can it
display each point in different row in mozilla?
_______________________________________________
dev-tech-xml mailing list
dev-tech-xml@...
https://lists.mozilla.org/listinfo/dev-tech-xml

Re: Problem in Mozilla for Displaying text from XSL variable

by Anthony Jones-10 :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message

<Parag.gupta.iiita@...> wrote in message
news:50a125f2-2d3a-4cb7-99b7-f1adcfef5367@......

> I have one problem regarding displaying text from XML file.
> I have a XSL variable named $p = (0 0 0) (0.82 0 0) (1.63 -0.01 0)
> (2.63 -0.01 0) (3.63 -0.01 0) (4.63 -0.01 0) (5.63 -0.02 0) (6.63
> -0.02 0) (7.63 -0.02 0) (8.6 -0.02 0)
> This line contains X,Y,Z coordinates of 10 points.
> for displaying each coordinate in a separate line.Like this....
> (0 0 0)
> (0.82 0 0)
> (1.63 -0.01 0)
> (2.63 -0.01 0)
> (3.63 -0.01 0)
> (4.63 -0.01 0)
> (5.63 -0.02 0)
> (6.63 -0.02 0)
> (7.63 -0.02 0)
> (8.6 -0.02 0)
>
> i made a template
>
> <xsl:call-template name="break">
> <xsl:with-param name="str" select="$p"/>
> <xsl:with-param name="breaker" select="'('"/>
> </xsl:call-template>
> <xsl:template name="break">
> <xsl:param name="str"/>
> <xsl:param name="breaker"/>
> <xsl:choose>
> <xsl:when test="substring-after($str, $breaker) = ''"/>
> <xsl:value-of select="$str"/>
> </xsl:when>
> <xsl:otherwise>
> <xsl:value-of select="concat(substring-before($str, $breaker),
> $breaker)"/>
> <br/>
> <xsl:call-template name="break">
> <xsl:with-param name="str" select="substring-after($str, $breaker)"/>
> <xsl:with-param name="breaker" select="$breaker"/>
> </xsl:call-template>
> </xsl:otherwise
> </xsl:template>
>
> for more clearity go to this link
> http://bytes.com/forum/thread786674.html
>
> NOW THE PROBLEM is this, that in IE 6.0 its displaying all the points
> in different row, but when i open that file in mozilla,it displays all
> the points in a single row. can any one hlep me that how can it
> display each point in different row in mozilla?

Try changing <br/> to <br />
Note the inserted space.

--
Anthony Jones - MVP ASP/ASP.NET


_______________________________________________
dev-tech-xml mailing list
dev-tech-xml@...
https://lists.mozilla.org/listinfo/dev-tech-xml

Re: Problem in Mozilla for Displaying text from XSL variable

by Jonas Sicking-2 :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message

Are you by any chance trying to output XHTML (rather than HTML), but
failing to apply the XHTML namespace properly?

Note that if you output XHTML you need to put all the elements you are
outputting in the XHTML namespace, even in the stylesheet. This usually
means placing the xmlns attribute on the xml:stylesheet element.

The reason it works in IE is that IE always outputs HTML, even if you
request XHTML.

However I would strongly suggest that you create HTML rather than XHTML.
There are a lot of subtle differences between the two and you are likely
to run into more problems like this unless you know them well.

/ Jonas

Parag.gupta.iiita@... wrote:

> I have one problem regarding displaying text from XML file.
> I have a XSL variable named $p = (0 0 0) (0.82 0 0) (1.63 -0.01 0)
> (2.63 -0.01 0) (3.63 -0.01 0) (4.63 -0.01 0) (5.63 -0.02 0) (6.63
> -0.02 0) (7.63 -0.02 0) (8.6 -0.02 0)
> This line contains X,Y,Z coordinates of 10 points.
> for displaying each coordinate in a separate line.Like this....
> (0 0 0)
> (0.82 0 0)
> (1.63 -0.01 0)
> (2.63 -0.01 0)
> (3.63 -0.01 0)
> (4.63 -0.01 0)
> (5.63 -0.02 0)
> (6.63 -0.02 0)
> (7.63 -0.02 0)
> (8.6 -0.02 0)
>
> i made a template
>
> <xsl:call-template name="break">
> <xsl:with-param name="str" select="$p"/>
> <xsl:with-param name="breaker" select="'('"/>
> </xsl:call-template>
> <xsl:template name="break">
> <xsl:param name="str"/>
> <xsl:param name="breaker"/>
> <xsl:choose>
> <xsl:when test="substring-after($str, $breaker) = ''"/>
> <xsl:value-of select="$str"/>
> </xsl:when>
> <xsl:otherwise>
> <xsl:value-of select="concat(substring-before($str, $breaker),
> $breaker)"/>
> <br/>
> <xsl:call-template name="break">
> <xsl:with-param name="str" select="substring-after($str, $breaker)"/>
> <xsl:with-param name="breaker" select="$breaker"/>
> </xsl:call-template>
> </xsl:otherwise
> </xsl:template>
>
> for more clearity go to this link
> http://bytes.com/forum/thread786674.html
>
> NOW THE PROBLEM is this, that in IE 6.0 its displaying all the points
> in different row, but when i open that file in mozilla,it displays all
> the points in a single row. can any one hlep me that how can it
> display each point in different row in mozilla?
_______________________________________________
dev-tech-xml mailing list
dev-tech-xml@...
https://lists.mozilla.org/listinfo/dev-tech-xml