package yurt
Legend:
Page
Library
Module
Module type
Parameter
Class
Class type
Source
Page
Library
Module
Module type
Parameter
Class
Class type
Source
Source file yurt_html.ml
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397module Tag = struct type t = [ | `A | `ADDR | `ADDRESS | `AREA | `ARTICLE | `ASIDE | `AUDIO | `B | `BASE | `BLOCKQUOTE | `BODY | `BR | `BUTTON | `CANVAS | `CAPTION | `CODE | `COL | `COLGROUP | `DATALIST | `DD | `DETAILS | `DIV | `DL | `DT | `EM | `EMBED | `FIELDSET | `FIGCAPTION | `FIGURE | `FOOTER | `FORM | `H1 | `H2 | `H3 | `H4 | `H5 | `H6 | `HEAD | `HEADER | `HGROUP | `HR | `HTML | `I | `IFRAME | `IMG | `INPUT | `KEYGEN | `LABEL | `LEGEND | `LI | `LINK | `META | `MAIN | `NAV | `NOSCRIPT | `OBJECT | `OL | `OPTGROUP | `OPTION | `P | `PRE | `PROGRESS | `Q | `SCRIPT | `SECTION | `SELECT | `SOURCE | `SPAN | `STRONG | `STYLE | `SUB | `SUP | `TABLE | `TBODY | `TD | `TEXTAREA | `TFOOT | `TH | `THEAD | `TIME | `TITLE | `TR | `TRACK | `U | `UL | `VIDEO | `WBR | `RAW | `NAME of string | `VAR of string ] let to_string (tag : t) : string = match tag with | `A -> "a" | `ADDR -> "addr" | `ADDRESS -> "address" | `AREA -> "area" | `ARTICLE -> "article" | `ASIDE -> "aside" | `AUDIO -> "audio" | `B -> "b" | `BASE -> "base" | `BLOCKQUOTE -> "blockquote" | `BODY -> "body" | `BR -> "br" | `BUTTON -> "button" | `CANVAS -> "canvas" | `CAPTION -> "caption" | `CODE -> "code" | `COL -> "col" | `COLGROUP -> "colgroup" | `DATALIST -> "datalist" | `DD -> "dd" | `DETAILS -> "details" | `DIV -> "div" | `DL -> "dl" | `DT -> "dt" | `EM -> "em" | `EMBED -> "embed" | `FIELDSET -> "fieldset" | `FIGCAPTION -> "figcaption" | `FIGURE -> "figure" | `FOOTER -> "footer" | `FORM -> "form" | `H1 -> "h1" | `H2 -> "h2" | `H3 -> "h3" | `H4 -> "h4" | `H5 -> "h5" | `H6 -> "h6" | `HEAD -> "head" | `HEADER -> "header" | `HGROUP -> "hgroup" | `HR -> "hr" | `HTML -> "html" | `I -> "i" | `IFRAME -> "iframe" | `IMG -> "img" | `INPUT -> "input" | `KEYGEN -> "keygen" | `LABEL -> "label" | `LEGEND -> "legend" | `LI -> "li" | `LINK -> "link" | `MAIN -> "main" | `META -> "meta" | `NAV -> "nav" | `NOSCRIPT -> "noscript" | `OBJECT -> "object" | `OL -> "ol" | `OPTGROUP -> "optgroup" | `OPTION -> "option" | `P -> "p" | `PRE -> "pre" | `PROGRESS -> "progress" | `Q -> "q" | `SCRIPT -> "script" | `SECTION -> "section" | `SELECT -> "select" | `SOURCE -> "source" | `SPAN -> "span" | `STRONG -> "strong" | `STYLE -> "style" | `SUB -> "sub" | `SUP -> "sup" | `TABLE -> "table" | `TBODY -> "tbody" | `TD -> "td" | `TEXTAREA -> "textarea" | `TFOOT -> "tfoot" | `TH -> "th" | `THEAD -> "thead" | `TIME -> "time" | `TITLE -> "title" | `TR -> "tr" | `TRACK -> "track" | `U -> "u" | `UL -> "ul" | `VIDEO -> "video" | `WBR -> "wbr" | `RAW -> "raw" | `NAME s -> s | `VAR _ -> failwith "Cannot convert var to string" let nonclosing = [ `IMG; `INPUT; `HR; `META; `BR; `WBR; `LINK ] end (** HTML node type *) type t = { tag : Tag.t; mutable attrs : (string * string) list; mutable content : string option; mutable children : t list; } let rec replace (a : t) (name : string) (b : t) : t = match a.tag with | `VAR s when s = name -> b | _ -> { tag = a.tag; attrs = a.attrs; content = a.content; children = List.map (fun i -> replace i name b) a.children; } let tag ?attr:(attr=[]) ?content:(content=None) ?children:(children=[]) (tag : Tag.t) : t = { tag = tag; attrs = attr; content = content; children = children; } let var name = tag (`VAR name) let import name = let ic = open_in name in let n = in_channel_length ic in let s = Bytes.create n in really_input ic s 0 n; close_in ic; tag ~content:(Some (Bytes.to_string s)) (`RAW) let html ?attr:(attr=[]) ?content children = tag ~attr:attr ~content:content ~children:children `HTML let body ?attr:(attr=[]) ?content children = tag ~attr:attr ~content:content ~children:children `BODY let head ?attr:(attr=[]) ?content children = tag ~attr:attr ~content:content ~children:children `HEAD let meta attr = tag ~attr:attr `META let script ?attr:(attr=[]) content = tag ~attr:attr ~content:(Some content) `SCRIPT let canvas ?content attr = tag ~attr:attr ~content:content `CANVAS let style ?attr:(attr=[]) content = tag ~attr:attr ~content:(Some content) `STYLE let iframe attr = tag ~attr:attr `IFRAME let div ?attr:(attr=[]) ?content children = tag ~attr:attr ~content:content ~children:children `DIV let p ?attr:(attr=[]) ?children:(children=[]) content = tag ~attr:attr ~content:(Some content) ~children:children `P let span ?attr:(attr=[]) ?content children = tag ~attr:attr ~content:content ~children:children `SPAN let h1 ?attr:(attr=[]) ?children:(children=[]) content = tag ~attr:attr ~content:(Some content) ~children:children `H1 let h2 ?attr:(attr=[]) ?children:(children=[]) content = tag ~attr:attr ~content:(Some content) ~children:children `H2 let h3 ?attr:(attr=[]) ?children:(children=[]) content = tag ~attr:attr ~content:(Some content) ~children:children `H3 let h4 ?attr:(attr=[]) ?children:(children=[]) content = tag ~attr:attr ~content:(Some content) ~children:children `H4 let h5 ?attr:(attr=[]) ?children:(children=[]) content = tag ~attr:attr ~content:(Some content) ~children:children `H5 let h6 ?attr:(attr=[]) ?children:(children=[]) content = tag ~attr:attr ~content:(Some content) ~children:children `H6 let header ?attr:(attr=[]) ?content children = tag ~attr:attr ~content:content ~children:children `HEADER let main ?attr:(attr=[]) ?content children = tag ~attr:attr ~content:content ~children:children `MAIN let ?attr:(attr=[]) ?content children = tag ~attr:attr ~content:content ~children:children `NAV let article ?attr:(attr=[]) ?content children = tag ~attr:attr ~content:content ~children:children `ARTICLE let section ?attr:(attr=[]) ?content children = tag ~attr:attr ~content:content ~children:children `SECTION let aside ?attr:(attr=[]) ?content children = tag ~attr:attr ~content:content ~children:children `ASIDE let ?attr:(attr=[]) ?content children = tag ~attr:attr ~content:content ~children:children `FOOTER let ul ?attr:(attr=[]) ?content children = tag ~attr:attr ~content:content ~children:children `UL let ol ?attr:(attr=[]) ?content children = tag ~attr:attr ~content:content ~children:children `OL let li ?attr:(attr=[]) ?content children = tag ~attr:attr ~content:content ~children:children `LI let text ?attr:(attr=[]) (s : string) = tag ~attr:attr ~content:(Some s) `SPAN let label ?attr:(attr=[]) (s : string) = tag ~attr:attr ~content:(Some s) `LABEL let link ?children:(children=[]) ?content attr = tag ~attr:attr ~content:content ~children:children `LINK let a ?children:(children=[]) attr content = tag ~attr:attr ~content:(Some content) ~children:children `A let img attr = tag ~attr:attr `IMG let textarea ?attr:(attr=[]) (s : string) = tag ~attr:attr ~content:(Some s) `TEXTAREA let input attr = tag ~attr:attr `INPUT let select ?attr:(attr=[]) children = tag ~attr:attr ~children:children `SELECT let opt ?attr:(attr=[]) (s : string) = tag ~attr:attr ~content:(Some s) `OPTION let form ?attr:(attr=[]) children = tag ~attr:attr ~children:children `FORM let mk_form ?attr attrs submit_text = form ?attr ((List.map (fun a -> input a) attrs) @ [input ["type", "submit"; "value", submit_text]]) let audio ?attr:(attr=[]) ?content children = tag ~attr:attr ~content:content ~children:children `AUDIO let video ?attr:(attr=[]) ?content children = tag ~attr:attr ~content:content ~children:children `VIDEO let source attr = tag ~attr:attr `SOURCE let title content = tag ~content:(Some content) `TITLE let inline (s : string) = tag ~content:(Some s) `RAW let rec string_of_attrs (node : t) : string = (if List.length node.attrs > 0 then " " else "") ^ String.concat " " (List.map (fun (k, v) -> k ^ "=\"" ^ v ^ "\"") node.attrs) and string_of_content (node : t) : string = match node.content with | Some s -> s | None -> "" and string_of_children (node : t) : string = String.concat "\n" (List.map to_string node.children) and to_string (node : t) : string = let tag = Tag.to_string node.tag in match node with | _ when tag = "raw" -> (match node.content with | Some s -> s | None -> "") | _ when List.mem node.tag Tag.nonclosing -> "<" ^ tag ^ string_of_attrs node ^ " />" | _ -> "<" ^ tag ^ string_of_attrs node ^ ">" ^ string_of_content node ^ string_of_children node ^ "</" ^ tag ^ ">" let templates : (string, t) Hashtbl.t = Hashtbl.create 16 let template_exists name = Hashtbl.mem templates name let get_template name = Hashtbl.find templates name let set_template name tmpl = Hashtbl.replace templates name tmpl (** Loading compiled templates *) let loadfile filename = Dynlink.loadfile filename