|
[XQuery Talk Mailing List Archive Home] [By Date] [By Thread] [By Subject] [By Author] [Recent Entries] [Reply To This Message] How can I retrive namespace defined in xmlDavid Carlisle davidc at nag.co.ukMon Jan 30 05:47:00 PST 2012
On 30/01/2012 13:34, Markus Pilman wrote:
> Hi,
>
> declare function functx:namespaces-in-use
> ( $root as node()? ) as xs:anyURI* {
>
> distinct-values(
> $root/descendant-or-self::*/(.|@*)/namespace-uri(.))
> } ;
>
> You can look it up here:
> http://www.xqueryfunctions.com/xq/functx_namespaces-in-use.html
>
> Hope this helps
>
> Markus
>
That would only return the namespaces of elements and attribute, not
namespaces declared but not used or declared but only used in content
(such as for types in XSD schema, or namespaces declared in XSLT but
only used in variable and function names).
To find all declared namespaces you want to use the namespace axis in
those products that support it or the fn:in-scope-prefixes and
fn:namespace-uri-for-prefix functions otherwise.
David
--
google plus: https:/profiles.google.com/d.p.carlisle
________________________________________________________________________
The Numerical Algorithms Group Ltd is a company registered in England
and Wales with company number 1249803. The registered office is:
Wilkinson House, Jordan Hill Road, Oxford OX2 8DR, United Kingdom.
This e-mail has been scanned for all viruses by Star. The service is
powered by MessageLabs.
________________________________________________________________________
|
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
|






