view tests/event.ur @ 2139:8c81cd351c1a

Allow URIs specified in file directives implicitly It seems to me that, by specifying that one wants to serve a given file at a specified URI, one is implying that this URI should be allowed.
author Julian Squires <julian@cipht.net>
date Fri, 24 Apr 2015 16:21:55 -0400
parents ae9e22822ec5
children
line wrap: on
line source
fun main () =
    s <- source "";
    return <xml><body onresize={set s "Resize"}>
      <button onblur={set s "Blur 1"} onfocus={set s "Focus 1"} onclick={set s "Click 1"}/>
      <button onblur={set s "Blur 2"} onfocus={set s "Focus 2"} onclick={set s "Click 2"}/>
      <span onclick={set s "Click"} ondblclick={set s "Double-click"}>SPAN</span>
      <span onmousedown={set s "Mouse down"} onmouseup={set s "Mouse up"}>SPAN</span>
      <span onmouseout={set s "Mouse out"} onmouseover={set s "Mouse over"}>SPAN</span>
      <span onmousemove={set s "Mouse move"}>SPAN</span>
      <button onkeydown={fn k => set s ("Key down: " ^ show k)} onkeyup={fn _ => set s "Key up"}/>
      <button onkeypress={fn _ => set s "Key press"}/>
      <br/>
      <br/>

      <dyn signal={s <- signal s; return <xml>{[s]}</xml>}/>
    </body></xml>