Mercurial > urweb
annotate tests/jsparse.ur @ 1726:4df4521fbd3b
Removed excess zero byte from empty pages.
Zero byte sometimes breaks http tunneling in Safari. Empty page is a "Not Modified" response for app.js
author | Vladimir Shabanov <vshabanoff@gmail.com> |
---|---|
date | Wed, 25 Apr 2012 03:07:07 +0400 |
parents | c270fb847dc2 |
children |
rev | line source |
---|---|
adamc@906 | 1 fun main () = |
adamc@906 | 2 s <- source "13"; |
adamc@906 | 3 return <xml><body> |
adamc@906 | 4 <ctextbox source={s}/> |
adamc@906 | 5 <dyn signal={v <- signal s; return (case read v : option int of |
adamc@906 | 6 None => <xml>None</xml> |
adamc@906 | 7 | Some n => <xml>Some {[n]}</xml>)}/> |
adamc@906 | 8 </body></xml> |