[Home] [By Thread] [By Date] [Recent Entries]
Hi,
On 4/15/2011 2:22 PM, Chris wrote: -----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 Keep in mind, however, that what we have in XPath 1.0 "|" is a union operation, not an "or". So, //text[@id='color' and lang('en-us')] |
//text[@id='color' and lang('en')] |
//text[@id='color']will get us all the nodes in //text that have @id='color', irrespective of their lang() value, because the third term in the union collects them. To do a cascading conditional like this in XPath 1.0 alone generally requires building conditionals into the predicates, as in //text[@id='color'][ @xml:lang='en-us' or (@xml:lang='en' and not(../@xml:lang='en-us') or not(../@xml:lang='en-us' or../@xml:lang='en')] ] where the fallback cases (the second and third operands of the boolean 'or' here) are excluded by filtering themselves out when the preferred cases are available. Here the attribute values are tested directly since the lang() function works only on the context node, and we have to test the siblings. (So we have to do without the case-insensitive test built into lang().) This is easier in XPath 2.0, where we can do something like //text[@id='color]/(.[lang('en-us')],.[lang('en')],.)[1] Cheers, Wendell ====================================================================== Wendell Piez mailto:wapiez@xxxxxxxxxxxxxxxx Mulberry Technologies, Inc. http://www.mulberrytech.com 17 West Jefferson Street Direct Phone: 301/315-9635 Suite 207 Phone: 301/315-9631 Rockville, MD 20850 Fax: 301/315-8285 ---------------------------------------------------------------------- Mulberry Technologies: A Consultancy Specializing in SGML and XML ======================================================================
|

Cart



