X-Git-Url: http://git.annexia.org/?a=blobdiff_plain;f=scripts%2Fcocanwiki.ml;h=b504d5754c814dc2ce144f7ad1b53eb3d2903788;hb=3e686452bc8b27781edb06b68749f7c34bf5fab4;hp=9df94a7b8d4f25dd8262839e3b60d7176623c2d5;hpb=a9168cad656af034b671c9dea53057845e2196c9;p=cocanwiki.git diff --git a/scripts/cocanwiki.ml b/scripts/cocanwiki.ml index 9df94a7..b504d57 100644 --- a/scripts/cocanwiki.ml +++ b/scripts/cocanwiki.ml @@ -1,7 +1,22 @@ -(* COCANWIKI scripts. +(* COCANWIKI - a wiki written in Objective CAML. * Written by Richard W.M. Jones . * Copyright (C) 2004 Merjis Ltd. - * $Id: cocanwiki.ml,v 1.4 2004/09/07 16:19:43 rich Exp $ + * $Id: cocanwiki.ml,v 1.6 2004/09/09 12:21:22 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 + * the Free Software Foundation; either version 2 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program; see the file COPYING. If not, write to + * the Free Software Foundation, Inc., 59 Temple Place - Suite 330, + * Boston, MA 02111-1307, USA. *) open Apache @@ -46,6 +61,10 @@ let test_permission edit_anon perm user = let can_edit edit_anon = test_permission edit_anon CanEdit let can_manage_users = test_permission false CanManageUsers +(* The "host object". *) +type host_t = { hostname : string; + edit_anon : bool; } + (* Our wrapper around the standard [register_script] function. * * The optional ~restrict and ~anonymous parameters work as follows: @@ -96,6 +115,9 @@ let register_script ?(restrict = []) ?(anonymous = true) run = failwith ("Hostname ``" ^ hostname ^ "'' not found in " ^ "the hosts/hostnames tables in the database.") in + (* Create the host object. *) + let host = { hostname = hostname; edit_anon = edit_anon; } in + (* Look for the user's cookie, and determine from this the user * object. *) @@ -153,7 +175,7 @@ let register_script ?(restrict = []) ?(anonymous = true) run = if permitted then ( (* Call the actual CGI script. *) try - run r q dbh (hostid, hostname, edit_anon) user + run r q dbh hostid host user with CgiExit -> () ) else