(* COCANWIKI - a wiki written in Objective CAML.
* Written by Richard W.M. Jones <rich@merjis.com>.
* Copyright (C) 2004 Merjis Ltd.
- * $Id: wikilib.ml,v 1.3 2004/11/01 16:24:50 rich Exp $
+ * $Id: wikilib.ml,v 1.4 2005/11/11 09:39:21 rich Exp $
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
let images = [ "img", ["src"; "alt"; "width"; "height"; "longdesc"] ] in
let forms = [
- "form", [ "method"; "action"; "enctype" ];
- "input", [ "name"; "value"; "type"; "size"; "maxlength"; "src"; "alt" ];
- "textarea", [ "name"; "rows"; "cols" ];
+ "form", [ "method"; "action"; "enctype"; "tabindex" ];
+ "input", [ "name"; "value"; "type"; "size"; "maxlength"; "src"; "alt";
+ "tabindex" ];
+ "textarea", [ "name"; "rows"; "cols"; "tabindex" ];
+ "select", [ "name"; "size"; "multiple"; "disabled"; "tabindex" ];
+ "optgroup", [ "disabled"; "label" ];
+ "option", [ "selected"; "disabled"; "label"; "value" ];
] in
let tables = [