annotate tests/nest2.ur @ 1931:1a04b1edded2

Fix regression in http.c for long-polling connections; add lazy initialization of database connections, to avoid the overhead in handlers that don't use SQL
author Adam Chlipala <adam@chlipala.net>
date Wed, 11 Dec 2013 14:57:54 -0500
parents 787d4931fb07
children
rev   line source
adamc@453 1 fun wooho (wrap : xbody -> transaction page) =
adamc@453 2 let
adamc@453 3 fun subPage n =
adamc@453 4 let
adamc@453 5 fun subberPage () = wrap <xml>{[n]}</xml>
adamc@453 6 in
adamc@453 7 wrap <xml><a link={subberPage ()}>Go</a></xml>
adamc@453 8 end
adamc@453 9 in
adamc@453 10 subPage 0
adamc@453 11 end
adamc@453 12
adamc@453 13 fun wrap x = return <xml><body>{x}</body></xml>
adamc@453 14
adamc@453 15 fun main () = wooho wrap