annotate demo/listFun.ur @ 1739:c414850f206f

Add support for -boot flag, which allows in-tree execution of Ur/Web The boot flag rewrites most hardcoded paths to point to the build directory, and also forces static compilation. This is convenient for developing Ur/Web, or if you cannot 'sudo make install' Ur/Web. The following changes were made: * Header files were moved to include/urweb instead of include; this lets FFI users point their C_INCLUDE_PATH at this directory at write <urweb/urweb.h>. For internal Ur/Web executables, we simply pass -I$PATH/include/urweb as normal. * Differentiate between LIB and SRCLIB; SRCLIB is Ur and JavaScript source files, while LIB is compiled products from libtool. For in-tree compilation these live in different places. * No longer reference Config for paths; instead use Settings; these settings can be changed dynamically by Compiler.enableBoot () (TODO: add a disableBoot function.) * config.h is now generated directly in include/urweb/config.h, for consistency's sake (especially since it gets installed along with the rest of the headers!) * All of the autotools build products got updated. * The linkStatic field in protocols now only contains the name of the build product, and not the absolute path. Future users have to be careful not to reference the Settings files to early, lest they get an old version (this was the source of two bugs during development of this patch.)
author Edward Z. Yang <ezyang@mit.edu>
date Wed, 02 May 2012 17:17:57 -0400
parents 7ef4b2911b09
children
rev   line source
adamc@398 1 open List
adamc@398 2
adamc@386 3 functor Make(M : sig
adamc@386 4 type t
adamc@398 5 val toString : t -> string
adamc@398 6 val fromString : string -> option t
adamc@386 7 end) = struct
adamc@398 8 fun toXml (ls : list M.t) =
adamc@398 9 case ls of
adamc@398 10 Nil => <xml>[]</xml>
adamc@398 11 | Cons (x, ls') => <xml>{[M.toString x]} :: {toXml ls'}</xml>
adamc@398 12
adamc@501 13 fun console (ls : list M.t) =
adamc@501 14 let
adamc@501 15 fun cons (r : {X : string}) =
adamc@501 16 case M.fromString r.X of
adamc@501 17 None => return <xml><body>Invalid string!</body></xml>
adamc@501 18 | Some v => console (Cons (v, ls))
adamc@501 19 in
adamc@501 20 return <xml><body>
adamc@501 21 Current list: {toXml ls}<br/>
adamc@501 22 Reversed list: {toXml (rev ls)}<br/>
adamc@501 23 Length: {[length ls]}<br/>
adamc@501 24 <br/>
adamc@398 25
adamc@501 26 <form>
adamc@501 27 Add element: <textbox{#X}/> <submit action={cons}/>
adamc@501 28 </form>
adamc@501 29 </body></xml>
adamc@501 30 end
adamc@398 31
adamc@398 32 fun main () = console Nil
adamc@386 33 end