+csv dep for PG'OCaml.
[cocanwiki.git] / scripts / lib / cocanwiki_extensions.ml
1 (* COCANWIKI - a wiki written in Objective CAML.
2  * Written by Richard W.M. Jones <rich@merjis.com>.
3  * Copyright (C) 2004-2006 Merjis Ltd.
4  * $Id: cocanwiki_extensions.ml,v 1.1 2006/07/27 16:46:55 rich Exp $
5  *
6  * This program is free software; you can redistribute it and/or modify
7  * it under the terms of the GNU General Public License as published by
8  * the Free Software Foundation; either version 2 of the License, or
9  * (at your option) any later version.
10  *
11  * This program is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14  * GNU General Public License for more details.
15  *
16  * You should have received a copy of the GNU General Public License
17  * along with this program; see the file COPYING.  If not, write to
18  * the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
19  * Boston, MA 02111-1307, USA.
20  *)
21
22 open Apache
23 open Cgi
24
25 (* List of extensions currently registered.  These are special template
26  * pages.  See for example Cocanwiki_ext_calendar.
27  *)
28 type extension_t =
29     Request.t -> PGOCaml.pa_pg_data PGOCaml.t -> int32 -> string -> string
30 let extensions : (string * extension_t) list ref = ref []
31
32 (* List of external functions currently registered.  These are used
33  * within wiki markup as {{function}} or {{function:arg}}.
34  *)
35 type external_function_t =
36     Request.t -> PGOCaml.pa_pg_data PGOCaml.t -> int32 ->
37       string option -> string
38 let external_functions : (string * external_function_t) list ref = ref []
39
40 (* List of external pre-page handlers.  These are called before
41  * each content page is displayed.  See page.ml for more details.
42  *)
43 type pre_page_handler_t =
44     Request.t -> cgi -> PGOCaml.pa_pg_data PGOCaml.t -> int32 -> string -> unit
45 let pre_page_handlers : pre_page_handler_t list ref = ref []