[XQuery Talk Mailing List Archive Home] [By Date] [By Thread] [By Subject] [By Author] [Recent Entries] [Reply To This Message]

Selecting everything before and after path, but without duplicated leafs

Florent Georges lists at fgeorges.org
Tue Feb 12 17:17:23 PST 2008


  Selecting everything before and after path
"J. Zhang" wrote:

>                <d>
>                <SELECT />
>                <SELECT2> {$e}</SELECT2>
>                </d>

> [...]

>          element {name($e)} {
>          for $c in $e/child::node()
>             return
>                readme:processNode($c)
>          }

> How do I include the attributes?

  I haven't followed this thread so closely, so I am not sure what you
want exactly, but it seems you want one or both of the following
changes:

    <d>
      <SELECT/>
      <SELECT2> {
        $e/@*, $e
      }
      </SELECT2>
    </d>

    element { name($e) } {
      $e/@*,
      for $c in $e/child::node()
        return
          readme:processNode($c)
    }

  If you want to call the function on attributes too, not only copying
them use rather:

    element { name($e) } {
      for $c in $e/(@*,node())
        return
          readme:processNode($c)
    }

  Regards,

--drkm






















      ______________________________________________________________________________ 
Yahoo! Mail : un mail innovant avec Messenger compatible Windows Live + stockage illimité. http://mail.yahoo.fr



Purchase Stylus Studio Online Today!

Purchasing Stylus Studio from our online shop is Easy, Secure and Value Priced!

Buy Stylus Studio Now

Download The World's Best XML IDE!

Accelerate XML development with our award-winning XML IDE - Download a free trial today!

Don't miss another message! Subscribe to this list today.
Email
First Name
Last Name
Company
Subscribe in XML format
RSS 2.0
Atom 0.3
Site Map | Privacy Policy | Terms of Use | Trademarks
Free Stylus Studio XML Training:
W3C Member
Stylus Studio® and DataDirect XQuery™are products from DataDirect Technologies, is a registered trademark of Progress Software Corporation, in the U.S. and other countries. © 2004-2007 All Rights Reserved.