X-Git-Url: http://git.annexia.org/?a=blobdiff_plain;f=scripts%2Fwikilib.ml;h=081385fbf885d2970efafc4d36943c6eea826540;hb=eeb304015c65ccf593a77058d5db5f5a3e3b45d5;hp=251311e01c387f762aae481e064b96d5d52dbde0;hpb=fcabae4a1578d69fb7d6a508a89dff13b0053ddb;p=cocanwiki.git diff --git a/scripts/wikilib.ml b/scripts/wikilib.ml index 251311e..081385f 100644 --- a/scripts/wikilib.ml +++ b/scripts/wikilib.ml @@ -1,7 +1,7 @@ (* COCANWIKI - a wiki written in Objective CAML. * Written by Richard W.M. Jones . * Copyright (C) 2004 Merjis Ltd. - * $Id: wikilib.ml,v 1.5 2004/09/16 18:06:31 rich Exp $ + * $Id: wikilib.ml,v 1.7 2004/09/25 16:05:03 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 @@ -42,8 +42,9 @@ let nontrivial_re = Pcre.regexp ~flags:[`CASELESS] "[a-z0-9]" let generate_url_of_title (dbh : Dbi.connection) hostid title = (* Create a suitable URL from this title. *) - let url = String.map (function '\000' .. ' ' | '<' | '>' | '&' | '"' -> '_' - | c -> Char.lowercase c) title in + let url = + String.map (function '\000' .. ' ' | '<' | '>' | '&' | '"' | '+' -> '_' + | c -> Char.lowercase c) title in (* Check URL is not too trivial. *) if not (Pcre.pmatch ~rex:nontrivial_re url) then @@ -413,6 +414,7 @@ let allowed_elements = let forms = [ "form", [ "method"; "action"; "enctype" ]; "input", [ "name"; "value"; "type"; "size"; "maxlength" ]; + "textarea", [ "name"; "rows"; "cols" ]; ] in let tables = [