source:
trunk/doc/src/snippets/patternist/embedDataInXHTML2.xq
Last change on this file was 2, checked in by , 16 years ago | |
---|---|
File size: 267 bytes |
Line | |
---|---|
1 | declare namespace x = "http://www.w3.org/1998/xhtml"; |
2 | <x:html> |
3 | <x:body> |
4 | { |
5 | for $i in doc("testResult.xml")/tests/test[@status = "failure"] |
6 | order by $i/@name |
7 | return <x:p>{$i/@name}</x:p> |
8 | } |
9 | </x:body> |
10 | </x:html> |
Note:
See TracBrowser
for help on using the repository browser.