X-Git-Url: http://git.annexia.org/?a=blobdiff_plain;f=scripts%2Frestore.ml;h=a3ed7c2b00fae73f750757953f30b16d59f9995e;hb=dcf54b5cf11ab056433c122d54d677de4edc2e51;hp=0e74693c8f6dad2b0e081bc9a2f55429c519ca05;hpb=c5f822d1ca81042a8c0be2955668b0abebf1b11c;p=cocanwiki.git diff --git a/scripts/restore.ml b/scripts/restore.ml index 0e74693..a3ed7c2 100644 --- a/scripts/restore.ml +++ b/scripts/restore.ml @@ -1,7 +1,7 @@ (* COCANWIKI - a wiki written in Objective CAML. * Written by Richard W.M. Jones . * Copyright (C) 2004 Merjis Ltd. - * $Id: restore.ml,v 1.15 2004/10/30 10:16:10 rich Exp $ + * $Id: restore.ml,v 1.18 2005/11/19 10:36:42 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 @@ -33,7 +33,7 @@ let run r (q : cgi) (dbh : Dbi.connection) hostid {hostname = hostname} user = let version = int_of_string (q#param "version") in let page = q#param "page" in - if q#param_true "yes" then ( + if not (q#param_true "no") then ( (* Get the IP address of the user, if available. *) let logged_ip = try `String (Connection.remote_ip (Request.connection r)) @@ -77,7 +77,7 @@ let run r (q : cgi) (dbh : Dbi.connection) hostid {hostname = hostname} user = sth#execute [`Int hostid; `String page; title; description; creation_date; logged_ip; logged_user; redirect; css ]; - let pageid = sth#serial "pages_id_seq" in + let pageid = Int64.to_int (sth#serial "pages_id_seq") in let sth = dbh#prepare_cached "insert into contents (pageid, ordering, sectionname, content, divname) @@ -96,7 +96,7 @@ let run r (q : cgi) (dbh : Dbi.connection) hostid {hostname = hostname} user = let subject = "Page " ^ page ^ " has been restored." in let body = fun () -> (* Prepare the diff between this version and the previous version. *) - let diff, _ = get_diff dbh hostid ~user page ~version:pageid () in + let diff, _ = get_diff dbh hostid page ~version:pageid () in "Page: http://" ^ hostname ^ "/" ^ page ^ "\n\n" ^ diff in