]> matita.cs.unibo.it Git - helm.git/blob - helm/uwobo/uwobo_engine.mli
ocaml 3.09 transition
[helm.git] / helm / uwobo / uwobo_engine.mli
1 (*
2  * Copyright (C) 2003:
3  *    Stefano Zacchiroli <zack@cs.unibo.it>
4  *    for the HELM Team http://helm.cs.unibo.it/
5  *
6  *  This file is part of HELM, an Hypertextual, Electronic
7  *  Library of Mathematics, developed at the Computer Science
8  *  Department, University of Bologna, Italy.
9  *
10  *  HELM is free software; you can redistribute it and/or
11  *  modify it under the terms of the GNU General Public License
12  *  as published by the Free Software Foundation; either version 2
13  *  of the License, or (at your option) any later version.
14  *
15  *  HELM is distributed in the hope that it will be useful,
16  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
17  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18  *  GNU General Public License for more details.
19  *
20  *  You should have received a copy of the GNU General Public License
21  *  along with HELM; if not, write to the Free Software
22  *  Foundation, Inc., 59 Temple Place - Suite 330, Boston,
23  *  MA  02111-1307, USA.
24  *
25  *  For details, see the HELM World-Wide-Web page,
26  *  http://helm.cs.unibo.it/
27  *)
28
29 open Uwobo_common ;;
30
31   (**
32     @param logger logger for processing messages
33     @param styles stylesheets object
34     @param keys (ordered) list of stylesheet names to be applied
35     @param params function mapping stylesheet names to parameters list
36     @param props xml:output properties
37     @param errormode what to do with LibXSLT's error messages
38     @param debugmode what to do with LibXSLT's debugging messages
39     @param input URI of input document
40     @return a triple: 1st element is a function that takes an out_channel and
41     write the result document on it, 2nd element is a string option representing
42     the desired media-type, 3rd is a string option representing the desired
43     encoding
44   *)
45 val apply:
46   logger: Uwobo_logger.sysLogger ->
47   styles: Uwobo_styles.styles ->
48   keys: string list ->
49   params: (string -> (string * string) list) ->
50   props: (string * string) list ->
51   veillogger: Uwobo_common.libXsltLogger ->
52   ?errormode: xslt_msg_mode -> ?debugmode: xslt_msg_mode ->
53   Gdome.document ->
54     ((out_channel -> unit) * string option * string option)
55