xsl-list
[Top] [All Lists]

Re: [xsl] normalize-space and sequence

2007-09-26 09:34:53
On 26/09/2007, Michael Kay <mike(_at_)saxonica(_dot_)com> 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/

--~------------------------------------------------------------------
XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list
To unsubscribe, go to: http://lists.mulberrytech.com/xsl-list/
or e-mail: <mailto:xsl-list-unsubscribe(_at_)lists(_dot_)mulberrytech(_dot_)com>
--~--