[XML-DEV Mailing List Archive Home] [By Thread] [By Date] [Recent Entries] [Reply To This Message]

Re: XQuery & XSLT was RE: Verboseness - XML Syntax for XQuery 1.0(XQuery

  • From: Richard Lanyon <rgl@d...>
  • To: xml-dev@l...
  • Date: Wed, 20 Jun 2001 19:45:27 +0100 (BST)

xs if
On Tue, 19 Jun 2001, Jonathan Robie wrote:

> I need more detail on this to understand what you want. Let me ask you a 
> few questions based on one of Evan's examples 
> (http://xmlportfolio.com/xsltuk/slides/Q18b.html).
> 
> In the new XQuery syntax, it looks like this:
> 
> FOR $h IN //holding
> RETURN
>          <holding>
>                  { $h/title }
>                  {
>                          IF ($h/@type = "Journal")
>                          THEN $h/editor
>                          ELSE $h/author
>                  }
>          </holding>
> SORTBY(title)
> 
> Note that the curly braces indicate expressions to be evaluated, as opposed 
> to literal content.

This is actually incredibly similar to the syntax for "interpolations"
in XML Script 2 (see http://www.xmlscript.org/), where the above would
probably be something like:

<xs:output>
  <holding>
    # $h/title #
    <xs:if test="$h/@type = 'journal'">
      <xs:then># $h/@editor #</xs:then>
      <xs:else># $h/@author #</xs:else>
    </xs:if>
  </holding>
</xs:output>

The text between '#' signs is an interpolation (the
interpolation delimiters don't have to be '#' signs, that's just the
default). If you don't like the 'non-XMLness' you can write

<xs:output>
  <holding>
    <xs:eval>$h/title</xs:eval>
    <xs:if test="$h/@type = 'journal'">
      <xs:then><xs:eval>$h/@editor</xs:eval></xs:then>
      <xs:else><xs:eval>$h/@author</xs:eval></xs:else>
    </xs:if>
  </holding>
</xs:output>

though you obviously can't use an <xs:eval> inside attribute values,
whereas you can put interpolations inside attribute values.

-- 
Richard Lanyon, Software Engineer     DecisionSoft Ltd.
Telephone: +44-1865-203192            http://www.decisionsoft.com
       "The medium is the message" -- Marshall McLuhan


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
 

Stylus Studio has published XML-DEV in RSS and ATOM formats, enabling users to easily subcribe to the list from their preferred news reader application.


Stylus Studio Sponsored Links are added links designed to provide related and additional information to the visitors of this website. they were not included by the author in the initial post. To view the content without the Sponsor Links please click here.

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-2013 All Rights Reserved.