|
[XQuery Talk Mailing List Archive Home] [By Date] [By Thread] [By Subject] [By Author] [Recent Entries] [Reply To This Message] optional attributes via function?Per Bothner per at bothner.comTue Sep 28 19:57:38 PDT 2004
http://xquery.com/mailman/listinfo/talk wrote:
> 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)">
I assume you mean:
<widgetspecification
validFrom="{myfn:transformDate($spec/VALIDFROM)}"
validTo="{myfn:transformDate($spec/VALIDTO)}">
Notice the curly braces.
--
--Per Bothner
http://xquery.com/mailman/listinfo/talk http://per.bothner.com/
|
PURCHASE STYLUS STUDIO ONLINE TODAY!Purchasing Stylus Studio from our online shop is Easy, Secure and Value Priced! Download The World's Best XML IDE!Accelerate XML development with our award-winning XML IDE - Download a free trial today! Subscribe in XML format
|






