XML.orgXML.org
FOCUS AREAS |XML-DEV |XML.org DAILY NEWSLINK |REGISTRY |RESOURCES |ABOUT
OASIS Mailing List ArchivesView the OASIS mailing list archive below
or browse/search using MarkMail.

 


Help: OASIS Mailing Lists Help | MarkMail Help

[Date Prev] | [Thread Prev] | [Thread Next] | [Date Next] -- [Date Index] | [Thread Index]
RE: [xml-dev] A bad idea to use the XML Schema list type?

> 
> There are, however, significant differences with regard to 
> processing. For example, consider the task of summing all the 
> values in the list. With appproach #2 it is easily 
> accomplished using this XSLT:
> 
>     sum(li)
> 
> With approach #1 it is not easily accomplished. With XSLT 1.0 
> it requires creating a named template that splits the string 
> "89 12 41 66 2 26" and then sums the individual tokens. Not 
> an easy task. XSLT 2.0 makes the job a bit easier, but it's 
> still not as easy as with approach #2.

It's just as easy. In a schema-aware stylesheet, given the input <list>1 2
3</list>, sum(list) returns 6.

Of course, using child elements is better from a purist point of view. But
if you look at how SVG or GML represent polygons, doing it with child
elements would give a horrendous explosion of document size and parsing
time.

(However, the micro-syntax that SVG and GML use isn't XSD list syntax,
because they are dealing with a sequence of pairs of numbers. So you can't
take advantage of schema-awareness in XSLT in quite the same way; to process
these vocabularies you do have to parse the data at application level. But
that can be done very easily, you only have to write the function library to
handle the syntax once.)

Michael Kay
http://www.saxonica.com/



[Date Prev] | [Thread Prev] | [Thread Next] | [Date Next] -- [Date Index] | [Thread Index]


News | XML in Industry | Calendar | XML Registry
Marketplace | Resources | MyXML.org | Sponsors | Privacy Statement

Copyright 1993-2007 XML.org. This site is hosted by OASIS