summaryrefslogtreecommitdiff
path: root/tests/jsuni.ur
diff options
context:
space:
mode:
authorGravatar Adam Chlipala <adamc@hcoop.net>2009-12-24 10:44:53 -0500
committerGravatar Adam Chlipala <adamc@hcoop.net>2009-12-24 10:44:53 -0500
commitc440dfc99e1292cf71c96f32e3030a39101eac29 (patch)
treecf76b77aad3472dffdc66f3b00386d2fbe0b84b9 /tests/jsuni.ur
parent07d56b08d87a7453fcd5b192532fcceac86c27cc (diff)
Proper JavaScript-side URI escaping/de-escaping; fix C-side URL encoding of big characters
Diffstat (limited to 'tests/jsuni.ur')
-rw-r--r--tests/jsuni.ur17
1 files changed, 17 insertions, 0 deletions
diff --git a/tests/jsuni.ur b/tests/jsuni.ur
new file mode 100644
index 00000000..9a1e3e90
--- /dev/null
+++ b/tests/jsuni.ur
@@ -0,0 +1,17 @@
+fun main () =
+ s1 <- source "";
+ s2 <- source "";
+
+ let
+ fun echo s = return s
+
+ fun echoer () =
+ v1 <- get s1;
+ v1' <- rpc (echo v1);
+ set s2 v1'
+ in
+ return <xml><body>
+ <dyn signal={v <- signal s2; return (cdata v)}/><hr/>
+ <ctextbox source={s1}/> <button onclick={echoer ()}/>
+ </body></xml>
+ end