log
graph
tags
bookmarks
branches
changeset
browse
file
latest
diff
comparison
annotate
file log
raw
help
Mercurial
>
urweb
annotate tests/echoBlob.ur @ 741:f7e2026dd5ae
Find changesets by keywords (author, files, the commit message), revision number or hash, or
revset expression
.
Returning a blob as page result
author
Adam Chlipala <adamc@hcoop.net>
date
Sun, 26 Apr 2009 09:02:17 -0400
parents
children
rev
line source
adamc@741
1
fun echo r = returnBlob (fileData r.Data) (blessMime (fileMimeType r.Data))
adamc@741
2
adamc@741
3
fun main () = return <xml><body>
adamc@741
4
<form>
adamc@741
5
<upload{#Data}/>
adamc@741
6
<submit action={echo}/>
adamc@741
7
</form>
adamc@741
8
</body></xml>