X-Git-Url: http://git.annexia.org/?a=blobdiff_plain;f=scripts%2Flib%2Fwikilib.ml;h=7916201c1158851cdec54e068a4c9b06b8caa457;hb=ec0b2fe822bac60e194044fdb7092156705e4595;hp=0ba0425b672dac781c1d5e3855750a604c4b0416;hpb=20923b33c08fccfca617b21935c4a4f6201593f8;p=cocanwiki.git diff --git a/scripts/lib/wikilib.ml b/scripts/lib/wikilib.ml index 0ba0425..7916201 100644 --- a/scripts/lib/wikilib.ml +++ b/scripts/lib/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.1 2004/10/21 11:42:05 rich Exp $ + * $Id: wikilib.ml,v 1.2 2004/10/24 17:32:55 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 @@ -55,6 +55,9 @@ let generate_url_of_title (dbh : Dbi.connection) hostid title = (* URL cannot begin with '_'. *) else if url.[0] = '_' then GenURL_BadURL + (* Titles which begin or end with spaces are probably mistakes. *) + else if isspace title.[0] || isspace title.[String.length title - 1] then + GenURL_BadURL else ( (* Check that the URL doesn't already exist in the database. If it does * then it probably means that another page exists with similar enough