Mercurial > urweb
view demo/more/dragList.ur @ 2142:3288e3c9948b
Fix XML indentation in Emacs mode
The return value of MATCH-STRING is a string. At least on Emacs 25,
the comparisons between string and character with EQUAL could never
succeed, and so the cases for matching braces were never triggered.
GET-TEXT-PROPERTY may return a list rather than an atom (for example,
on long lines with whitespace-mode turned on), and this broke the
heuristic of looking for the tag face in previous text.
author | Julian Squires <julian@cipht.net> |
---|---|
date | Mon, 04 May 2015 14:35:07 -0400 |
parents | e6bc6bbd7a32 |
children |
line wrap: on
line source
fun draggableList title items = itemSources <- List.mapM source items; draggingItem <- source None; return <xml> <h2>Great {[title]}</h2> <ul> {List.mapX (fn itemSource => <xml> <li onmousedown={fn _ => set draggingItem (Some itemSource)} onmouseup={fn _ => set draggingItem None} onmouseover={fn _ => di <- get draggingItem; case di of None => return () | Some di => original <- get di; movedOver <- get itemSource; set di movedOver; set itemSource original; set draggingItem (Some itemSource)}> <dyn signal={Monad.mp cdata (signal itemSource)}/> </li></xml>) itemSources} </ul> </xml> fun main () = bears <- draggableList "Bears" ("Pooh" :: "Paddington" :: "Rupert" :: "Edward" :: []); beers <- draggableList "Beers" ("Budvar" :: "Delirium Tremens" :: "Deuchars" :: []); boars <- draggableList "Boars" ("Sus scrofa scrofa" :: "Sus scrofa ussuricus" :: "Sus scrofa cristatus" :: "Sus scrofa taiwanus" :: []); return <xml> <head> <link rel="stylesheet" type="text/css" href="../../dragList.css"/> </head> <body> {bears} {beers} {boars} </body> </xml>