annotate tests/ctextbox.ur @ 1905:cd1cfecc8c72

Remove autogenerated config.h.in from version control Signed-off-by: Anders Kaseorg <andersk@mit.edu> --- .hgignore | 1 + include/urweb/config.h.in | 104 ---------------------------------------------- 2 files changed, 1 insertion(+), 104 deletions(-) delete mode 100644 include/urweb/config.h.in
author Anders Kaseorg <andersk@mit.edu>
date Fri, 22 Nov 2013 09:36:14 -0500
parents 983d9b38abc7
children
rev   line source
adamc@1173 1 style foo
adamc@1173 2
adamc@606 3 fun main () : transaction page =
adamc@606 4 s <- source "Initial";
adamc@1173 5 return <xml>
adamc@1173 6 <head>
adamc@1173 7 <link rel="stylesheet" type="text/css" href="http://localhost/static/style.css"/>
adamc@1173 8 </head>
adamc@1173 9 <body>
adamc@1173 10 <ctextbox source={s} size=5/>
adamc@1173 11 <ctextbox class={foo} source={s}/>
adamc@606 12
adamc@1173 13 <dyn signal={s <- signal s; return (cdata s)}/>
adamc@1173 14 </body>
adamc@1173 15 </xml>