source:
trunk/examples/xmlpatterns/recipes/files/preparationLessThan30.xq
Last change on this file was 2, checked in by , 16 years ago | |
---|---|
File size: 271 bytes |
Line | |
---|---|
1 | (: All recipes taking 10 minutes or less to prepare. :) |
2 | declare variable $inputDocument external; |
3 | |
4 | doc($inputDocument)/cookbook/recipe/time[@unit = "minutes" and xs:integer(@quantity) <= 10]/ |
5 | <p> |
6 | { |
7 | concat(../title, ' (', @quantity, ' ', @unit, ')') |
8 | } |
9 | </p> |
Note:
See TracBrowser
for help on using the repository browser.