Fixed this template to use new-style database API.
[cocanwiki.git] / scripts / source.ml
index 39f6227..9bf5476 100644 (file)
@@ -1,7 +1,7 @@
 (* COCANWIKI - a wiki written in Objective CAML.
  * Written by Richard W.M. Jones <rich@merjis.com>.
  * Copyright (C) 2004 Merjis Ltd.
- * $Id: source.ml,v 1.5 2006/03/28 16:24:08 rich Exp $
+ * $Id: source.ml,v 1.6 2006/07/26 13:41:37 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
@@ -84,12 +84,14 @@ let run r (q : cgi) dbh hostid _ _ =
   (* Now write out the sections. *)
   if model.redirect = None then
     List.iteri
-      (fun i (sectionname, divname, content) ->
+      (fun i (sectionname, divname, jsgo, content) ->
         write "Section-Id" (string_of_int i);
         (match sectionname with None -> () | Some sectionname ->
            write "Section-Header" sectionname);
         (match divname with None -> () | Some divname ->
            write "Css-Id" divname);
+        (match jsgo with None -> () | Some jsgo ->
+           write "Javascript-Onclick" jsgo);
         write "Content" content;
         ignore (print_newline r)) model.contents_