This is the mail archive of the xsl-list@mulberrytech.com mailing list .


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]

RE: XSLT 2.0 Grouping Use Cases



Steve Muench 
> http://www.w3.org/TR/2001/WD-xslt20req-20010214
> 
> See the section "4. Must Simplify Grouping"
>                  ~~~~~~~~~~~~~~~~~~~~~~~~~~
> 
> After scrutinizing the use cases, if any of your common
> grouping challenges are *NOT* reflected by one or more
> of these cases, please pipe up and let xsl-editors@w3.org
> know about your additional ones.
> 

Not sure how to phrase it, but my need seems to have centred on
flat to structure issues.

<mark>
 <elA>
 <elB>
 <elC>
<mark>

The plain english requirement is 'give me all the elements up to but
excluding' the next <mark>

<template match="mark">
  <wrapper>
    for-each select all up to but excluding next mark
       do something with the element
  </wrapper>
</template>

Jeni Tennisons techniques work, but I don't find it straightforward.

Any assistance for the user would help here.

Regards DaveP

 XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]