Skip to content

Instantly share code, notes, and snippets.

@litlfred
Created February 6, 2014 17:26
Show Gist options
  • Save litlfred/8848736 to your computer and use it in GitHub Desktop.
Save litlfred/8848736 to your computer and use it in GitHub Desktop.
module namespace page = 'http://basex.org/modules/web-page';
declare
%rest:path("/simple_post")
%rest:consumes("application/xml", "text/xml")
%rest:POST("{$posted}")
function page:csr($posted)
{
<html>
<body>
<h2>Posted Document</h2>
<pre>{$posted}</pre>
</body>
</html>
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment