Skip to content

Instantly share code, notes, and snippets.

View grtjn's full-sized avatar

Geert grtjn

View GitHub Profile
@grtjn
grtjn / compare-xsl.xqy
Created October 20, 2011 13:06
A brief comparison between XQuery and XSLT code
(: A brief comparison between XQuery and XSLT code :)
(: For-each in XQuery.. :)
for $b in $books
order by $b/title
return
$b/title
(: For-each in XSLT.. :)
@grtjn
grtjn / xqy-sample.xqy
Created October 20, 2011 06:45
A small example of XQuery code that searches for books with the string ‘XQuery’ in its title..
xquery version '1.0';
(: A small example of XQuery code that searches for books with the string ‘XQuery’ in its title.. :)
<html>
<body>
<ul>{
(: Search all books :)
for $b in collection('books')/book