Mercurial > urweb
annotate tests/dynlines.ur @ 1909:659d1f4e95bf
make dist: Use fewer wildcards
The remaining ones only work by accident:
http://www.gnu.org/software/automake/manual/html_node/Wildcards.html
and they have some practical problems too (we don?t really want to
distribute include/urweb/config.h or src/config.sml), but this is
enough for now to pass ?make distcheck? as long as we don?t run it
from a separate build directory.
Signed-off-by: Anders Kaseorg <andersk@mit.edu>
---
Makefile.am | 6 +++---
src/c/Makefile.am | 2 +-
2 files changed, 4 insertions(+), 4 deletions(-)
author | Anders Kaseorg <andersk@mit.edu> |
---|---|
date | Fri, 22 Nov 2013 09:36:14 -0500 |
parents | 38297294cf98 |
children |
rev | line source |
---|---|
adam@1800 | 1 datatype lines = End | Line of source lines |
adam@1800 | 2 |
adam@1800 | 3 type t = { Head : source lines, Tail : source (source lines) } |
adam@1800 | 4 |
adam@1800 | 5 val create = |
adam@1800 | 6 head <- source End; |
adam@1800 | 7 tail <- source head; |
adam@1800 | 8 return {Head = head, Tail = tail} |
adam@1800 | 9 |
adam@1800 | 10 fun renderL lines = |
adam@1800 | 11 case lines of |
adam@1800 | 12 End => <xml/> |
adam@1800 | 13 | Line linesS => <xml>X<br/><dyn signal={renderS linesS}/></xml> |
adam@1800 | 14 |
adam@1800 | 15 and renderS linesS = |
adam@1800 | 16 lines <- signal linesS; |
adam@1800 | 17 return (renderL lines) |
adam@1800 | 18 |
adam@1800 | 19 fun render t = renderS t.Head |
adam@1800 | 20 |
adam@1800 | 21 fun write t = |
adam@1800 | 22 oldTail <- get t.Tail; |
adam@1800 | 23 newTail <- source End; |
adam@1800 | 24 set oldTail (Line newTail); |
adam@1800 | 25 set t.Tail newTail |
adam@1800 | 26 |
adam@1800 | 27 fun main () : transaction page = |
adam@1800 | 28 b <- create; |
adam@1800 | 29 |
adam@1800 | 30 return <xml><body> |
adam@1800 | 31 <button onclick={fn _ => write b}/> |
adam@1800 | 32 <dyn signal={render b}/> |
adam@1800 | 33 </body></xml> |