xsl-list
[Top] [All Lists]

Re: [xsl] XTTE1100: A sequence of more than one item is not allowed as the @group-adjacent attribute

2013-05-12 22:09:52
At 2013-05-12 20:00 -0700, Dimitre Novatchev wrote:
     select="*" group-adjacent="string-join(descendent::*/local-name(),' ')"

this treats the following two fragments as belonging to the same
group, and I believe Ihe doesn't want this:

 <B>
     <C/>
     <D/>
  </B>

and

 <B>
     <C>
       <D>
    </C>
  </B>

Well spotted, Dmitre.

How about something like the following to make the distinction, using a simple non-name character to attach the depth to the name?

  group-adjacent="string-join(descendent::*/
                             concat(local-name(),'$',count(ancestor::*)))"

(untested)

. . . . . . . . Ken

--
Contact us for world-wide XML consulting and instructor-led training |
Free 5-hour lecture: http://www.CraneSoftwrights.com/links/udemy.htm |
Crane Softwrights Ltd.            http://www.CraneSoftwrights.com/s/ |
G. Ken Holman                   mailto:gkholman(_at_)CraneSoftwrights(_dot_)com 
|
Google+ profile: https://plus.google.com/116832879756988317389/about |
Legal business disclaimers:    http://www.CraneSoftwrights.com/legal |


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