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

optional attributes via function?

Dmitri.Colebatch at toyota.com.au Dmitri.Colebatch at toyota.com.au
Wed Sep 29 12:49:35 PDT 2004


  optional attributes via function?
hey all,

I'm thinking this isn't possible, but I'll ask anyway, and there might be
another option that I haven't considered.

I have an input document that looks roughly like:

  <SPECS>
    <SPEC>
      <VALIDFROM>20020801</VALIDFROM>
      <VALIDTO>20020815</VALIDTO>
       ...
    </SPEC>
    <SPEC>
      <VALIDFROM>20020816</VALIDFROM>
      <VALIDTO>99991231</VALIDTO>
       ...
    </SPEC>
  </SPECS>

my output needs to look like:

  <widgetspecifications>
    <widgetspecification validFrom="2002-08-01" validTo="2002-08-15">
       ...
    </widgetspecification>    
    <widgetspecification validFrom="2002-08-16">
       ...
    </widgetspecification>    
  </widgetspecifications>

my query (which is really just xslt in xquery's clothing) currently looks
something like:

  <widgetspecifications>
  {
    for $spec in $this//SPEC
    return
    <widgetspecification 
      validFrom="myfn:transformDate($spec/VALIDFROM)" 
      validTo="myfn:transformDate($spec/VALIDTO)">
       ...
    </widgetspecification>          
  }
  </widgetspecifications>

now my problem is that I don't want to include 9999-31-12 as a date
because that date is really saying "this spec is always valid".  my first
attempt (that I didn't expect to work) was to make another custom function
and do something like:

  <widgetspecifications>
  {
    for $spec in $this//SPEC
    return
    <widgetspecification 
      validFrom="myfn:transformDate($spec/VALIDFROM)" 
      myfn:outputValidToIfRequired($spec/VALIDTO)>
       ...
    </widgetspecification>          
  }
  </widgetspecifications>

but of course this failed.... I don't want to put two different cases in
for the 9999 case and the other case because the "..." above is very
large.  Anyone have any suggesitons?

cheers
dim

######################################################################
DISCLAIMER: 
This email and any attachment may contain confidential information.
If you are not the intended recipient you are not authorized to copy
or disclose all or any part of it without the prior written consent
of Toyota.

Opinions expressed in this email and any attachment are those of the
sender and not necessarily the opinions of Toyota.
Please scan this email and any attachment for viruses.
Toyota does not accept any responsibility for problems
caused by viruses, whether it is Toyota's fault or not.
######################################################################


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.