Re: [xsl] normalize-space and sequence

Subject: Re: [xsl] normalize-space and sequence
From: "Andrew Welch" <andrew.j.welch@xxxxxxxxx>
Date: Wed, 26 Sep 2007 17:34:28 +0100
On 26/09/2007, Michael Kay <mike@xxxxxxxxxxxx> wrote:
>
> > Any chance of an example?
>
> Source test.xml:
>
> <foo>
>         Hello
>         World
> </foo>
>
> Stylesheet test.xsl:
>
> <?xml version='1.0' encoding='utf-8' ?>
> <xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform";
> version="2.0"
>    xmlns:xs="http://www.w3.org/2001/XMLSchema";
>    exclude-result-prefixes="xs">
>
> <xsl:import-schema>
>   <xs:schema>
>     <xs:element name="foo" type="xs:token"/>
>   </xs:schema>
> </xsl:import-schema>
>
> <xsl:template match="/">
>   <a><xsl:value-of select="foo"/></a>
> </xsl:template>
>
> </xsl:stylesheet>
>
> saxon -sa -val test.xml test.xsl
>
> <?xml version="1.0" encoding="UTF-8"?><a>Hello World</a>

Pah... that's what I did and it didn't work... going over it again I
get that result.

I think I may have been using copy-of to start with, then switched to
value-of but by that time had altered the schema...


-- 
Andrew Welch
http://andrewjwelch.com
Kernow: http://kernowforsaxon.sf.net/

Current Thread