]> matita.cs.unibo.it Git - helm.git/blob - helm/www/lambdadelta/bin/xhtbl/xmlUnparser.ml
- we begin the new site based on ld_web
[helm.git] / helm / www / lambdadelta / bin / xhtbl / xmlUnparser.ml
1 module A = Array
2 module F = Filename
3 module L = List
4 module P = Printf
5 module S = String
6
7 module O = Options
8 module T = Table
9 module M = Matrix
10
11 let i = 0
12
13 let myself = F.basename (Sys.argv.(0))
14
15 let msg = P.sprintf "This file was generated by %s, do not edit" myself
16
17 let border cell =
18    let str = S.make 4 'n' in
19    if cell.M.cb.T.n then str.[0] <- 's';   
20    if cell.M.cb.T.e then str.[1] <- 's';
21    if cell.M.cb.T.s then str.[2] <- 's';
22    if cell.M.cb.T.w then str.[3] <- 's';
23    str :: cell.M.cc
24
25 let text = function
26    | T.Plain s       -> s
27    | T.Link (uri, s) -> P.sprintf "<a href=\"%s\">%s</a>" uri s
28
29 let key cell =
30    if cell.M.ck = [] then "<br/>" else S.concat " " (L.map text cell.M.ck)
31
32 let ind i = S.make (2 * i) ' '
33
34 let out_cell och cell =
35    let cc = border cell in
36    P.fprintf och "%s<td class=\"%s\">%s</td>\n"
37       (ind (i+4)) (S.concat " " cc) (key cell)
38
39 let out_row och row =
40    P.fprintf och "%s<tr>\n" (ind (i+3));
41    A.iter (out_cell och) row;
42    P.fprintf och "%s</tr>\n" (ind (i+3))
43
44 let out_space och (name, uri) =
45    let name = if name = "" then name else ":" ^ name in
46    P.fprintf och "                xmlns%s=\"%s\"\n" name uri
47
48 (****************************************************************************)
49
50 let open_out name spaces =
51    let fname = F.concat !O.output_dir (P.sprintf "%s.xsl" name) in
52    let spaces = ("xsl", "http://www.w3.org/1999/XSL/Transform") :: spaces in
53    let och = open_out fname in
54    P.fprintf och "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n\n";
55    P.fprintf och "<!-- %s -->\n\n" msg;   
56    P.fprintf och "<xsl:stylesheet version=\"1.0\"\n";
57    L.iter (out_space och) spaces;
58    P.fprintf och ">\n\n";
59    och
60
61 let output och name matrix =
62    P.fprintf och "<xsl:template name=\"%s\">\n" name;
63    P.fprintf och "%s<table cellpadding=\"4\" cellspacing=\"0\">\n" (ind (i+1));
64    P.fprintf och "%s<tbody>\n" (ind (i+2));
65    A.iter (out_row och) matrix.M.m; 
66    P.fprintf och "%s</tbody>\n" (ind (i+2));
67    P.fprintf och "%s</table>\n" (ind (i+1));
68    P.fprintf och "</xsl:template>\n\n"
69
70 let close_out och =
71    P.fprintf och "</xsl:stylesheet>\n";
72    close_out och
73
74 let map_incs och name =
75    P.fprintf och "<xsl:include href=\"%s.xsl\"/>\n" name
76
77 let map_tbls och name =
78    P.fprintf och "%s<xsl:when test=\"@name='%s'\">\n" (ind (i+2)) name;
79    P.fprintf och "%s<xsl:call-template name=\"%s\"/>\n" (ind (i+3)) name;
80    P.fprintf och "%s</xsl:when>\n" (ind (i+2))
81
82 let write_hook name incs tbls =
83    let och = open_out name [] in
84    L.iter (map_incs och) incs;
85    P.fprintf och "\n<xsl:template name=\"%s\">\n" name;
86    P.fprintf och "%s<xsl:choose>\n" (ind (i+1));
87    L.iter (map_tbls och) tbls;   
88    P.fprintf och "%s</xsl:choose>\n" (ind (i+1));
89    P.fprintf och "</xsl:template>\n\n";
90    close_out och