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