log
graph
tags
bookmarks
branches
changeset
browse
file
latest
diff
comparison
annotate
file log
raw
help
Mercurial
>
urweb
annotate tests/crypt.ur @ 1397:a5bfed32d4f7
Find changesets by keywords (author, files, the commit message), revision number or hash, or
revset expression
.
Patch from Vladimir Shabanov to support crypt under OS X
author
Adam Chlipala <adam@chlipala.net>
date
Sun, 16 Jan 2011 10:38:03 -0500
parents
children
rev
line source
adam@1397
1
fun cryptIt r = return <xml><body>
adam@1397
2
{[crypt r.Pass "AB"]}
adam@1397
3
</body></xml>
adam@1397
4
adam@1397
5
fun main () = return <xml><body>
adam@1397
6
<form><textbox{#Pass}/> <submit action={cryptIt}/></form>
adam@1397
7
</body></xml>