xsl-list
[Top] [All Lists]

RE: [xsl] Integrated sort using different elements

2009-02-19 10:48:12
In XSLT 2.0, choose the first item in a sequence of many 
items, priority indicated by the order of your sequence:

<xsl:sort select="
  ( monogr/author, analytic/author, monogr/editor, 
monogr/title )[1]"/>

In XSLT 1.0 you might do something along the lines of:

<xsl:sort select="
   monogr/author |
   self::*[not(monogr/author)]/analytic/author |
   self::*[not(monogr/author | analytic/author)]/monogr/editor |
   self::*[not(monogr/author | analytic/author | 
monogr/editor)]/monogr/title"/>


Would it work to sort on the concatenation? -

<xsl:sort select="concat(monogr/author, analytic/author, monogr/editor,
monogr/title"/>

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


--~------------------------------------------------------------------
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>
--~--

<Prev in Thread] Current Thread [Next in Thread>