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

Error message when match=$variable

Subject: Error message when match=$variable
From: timw@xxxxxxx
Date: Tue, 4 Sep 2001 12:19:40 +1000
xsl template match variable
Hi,

When I run the following stylesheet with
<xsl:template match="$english/node()">,
which should display all the nodes of the english.xml, I get an error

httpd: expr.cpp:1627: Bool Expression::patternOK(): Assertion `functor ==
EXFO_U
NION || functor == EXF_LOCPATH' failed.

and yet when I change it to
<xsl:template match="node()">
it won't give an error, but neither will it select the nodes of $english
variable!

Can anyone help?

Tim Watts
PS. I'm using Sablotron

XSL:
<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet version="1.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:variable name="english"
select="document(languages/english.xml)/language"></xsl:variable>
<xsl:variable name="german"
select="document(languages/german.xml)/language"></xsl:variable>

<xsl:template match="/">
<html>
<head>
</head>
<body>
	<textarea rows="20" cols="100">
	<xsl:apply-templates select="$english/node()" />
	</textarea>
</body>
</html>
</xsl:template>

<xsl:template match="$english/node()">
<xsl:value-of select="name()" /> = <xsl:value-of select="." />&#10;
</xsl:template>

</xsl:stylesheet>

I get error message...

httpd: expr.cpp:1627: Bool Expression::patternOK(): Assertion `functor ==
EXFO_U
NION || functor == EXF_LOCPATH' failed.

except when I change 

<xsl:template match="$english/node()">
<xsl:value-of select="name()" /> = <xsl:value-of select="." />&#10;
</xsl:template>

to

<xsl:template match="node()">
<xsl:value-of select="name()" /> = <xsl:value-of select="." />&#10;
</xsl:template>

when the text block simply won't find a template to match with!

The XML looks like :

<?xml version="1.0" encoding="UTF-8"?>
<language>
	<ld-hello>Hello</ld-hello>
	<ld-goodbye>Good-Bye</ld-goodbye>
</language>

 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.