Mercurial > urweb
annotate tests/concat.ur @ 2062:795b5b75453c
Add 'role' data attribute.
Note, that 'role' attribute is a part of reach ARIA API described here:
http://www.w3.org/TR/wai-aria/
Among 'role', it defines lots of aria-* attributes
author | Sergey Mironov <grrwlf@gmail.com> |
---|---|
date | Mon, 07 Jul 2014 10:05:04 +0400 |
parents | c7b9a33c26c8 |
children |
rev | line source |
---|---|
adam@1303 | 1 functor Make(M : sig |
adam@1303 | 2 con ts :: {(Type * Type)} |
adam@1303 | 3 val tab : sql_table (map fst ts) [] |
adam@1303 | 4 val cols : $(map (fn p => p.2 -> string) ts) |
adam@1303 | 5 end) = struct |
adam@1303 | 6 end |
adam@1303 | 7 |
adam@1303 | 8 table t : {A : string} |
adam@1303 | 9 |
adam@1303 | 10 open Make(struct |
adam@1303 | 11 val tab = t |
adam@1303 | 12 val cols = {A = fn p : {B : string, C : string} => p.B ^ p.C} |
adam@1303 | 13 end) |