Sophie

Sophie

distrib > Mageia > 7 > i586 > by-pkgid > b3bdfe6d859a3d6920ff2c44b38e9a6f > files > 360

saxon-manual-9.4.0.9-2.mga7.noarch.rpm

<?xml version="1.0" encoding="iso-8859-1"?>
<?xml-stylesheet href="../../make-menu.xsl" type="text/xsl"?><html>
   <head>
      <this-is section="extensions" page="instructions" subpage="import-query"/>
      <!--
           Generated at 2011-12-09T20:47:22.916Z--><title>Saxonica: XSLT and XQuery Processing: saxon:import-query</title>
      <meta name="coverage" content="Worldwide"/>
      <meta name="copyright" content="Copyright Saxonica Ltd"/>
      <meta name="title" content="Saxonica: XSLT and XQuery Processing: saxon:import-query"/>
      <meta name="robots" content="noindex,nofollow"/>
      <link rel="stylesheet" href="../../saxondocs.css" type="text/css"/>
   </head>
   <body class="main">
      <h1>saxon:import-query</h1>
      <p>The saxon:import-query element is a top-level declaration that causes an XQuery library module
to be imported into the stylesheet.</p>
      <p>The effect is that the functions defined in the library module become available for calling from
any XPath expression in the stylesheet, as extension functions. 
They are available in all modules of the stylesheet.</p>
      <p>Only the functions actually defined in the given XQuery module are imported. Functions that the
specified module imports from other XQuery modules are not imported. This follows the semantics of 
XQuery's <code>import module</code> declaration. Variables defined in an imported module are not
(currently) imported into the stylesheet.</p>
      <p>The imported functions do not have any specific import precedence. If a stylesheet contains two
<code>saxon:import-query</code> declarations importing the same namespace, then they are assumed to
refer to the same library module, and all but the first are ignored. As with other extension functions,
the <code>override="yes|no"</code> attribute on <code>xsl:function</code> can be used to determine whether
a stylesheet function overrides an imported XQuery function of the same name.</p>
      <p>The <code>saxon:import-xquery</code> declaration has two optional attributes The <code>href</code>
attribute is the (absolute or relative) URI of the XQuery module. The <code>namespace</code> attribute
identifies the module namespace of the imported module. If <code>href</code> alone is specified, then the module is
loaded from the given location. If namespace alone is specified, then the module must already be present
in Saxon's <code>Configuration</code> object (you can share a Configuration between multiple stylesheets,
which means that imported XQuery modules will not need to be recompiled for each one). If both attributes
are specified, then Saxon uses an already-loaded module for the namespace if it can, otherwise it fetches
it from the specified location, and checks that the namespace is correct. I would recommend specifying
both attributes.</p>
      <table width="100%">
         <tr>
            <td>
               <p align="right"><a class="nav" href="iterate.xml">Next</a></p>
            </td>
         </tr>
      </table>
   </body>
</html>