doc/src/snippets/patternist/introNavigateFS.xq
changeset 7 f7bc934e204c
parent 0 1918ee327afb
equal deleted inserted replaced
3:41300fa6a67c 7:f7bc934e204c
       
     1 declare variable $myRoot := <e/>; (: This line is a dummy and shouldn't appear in the documentation. :)
       
     2 <html>
       
     3     <body>
       
     4         {
       
     5             $myRoot//file[@mimetype = 'text/xml' or @mimetype = 'application/xml']
       
     6             /
       
     7             (if(doc-available(@uri))
       
     8              then ()
       
     9              else <p>Failed to parse file {@uri}.</p>)
       
    10         }
       
    11     </body>
       
    12 </html>