]> matita.cs.unibo.it Git - helm.git/commitdiff
added html_of_html_msg
authorStefano Zacchiroli <zack@upsilon.cc>
Thu, 5 Feb 2004 15:20:47 +0000 (15:20 +0000)
committerStefano Zacchiroli <zack@upsilon.cc>
Thu, 5 Feb 2004 15:20:47 +0000 (15:20 +0000)
helm/ocaml/logger/ui_logger.ml
helm/ocaml/logger/ui_logger.mli

index 5be084efcae2cda075247f51e514a5f4ffc4f40a..09e50e6273a1071fdc75be1c8a22b2c397c72d03 100644 (file)
@@ -14,13 +14,28 @@ type html_msg = [ `Error of html_tag | `Msg of html_tag ]
 let string_of_html_msg =
   let rec string_of_html_tag = function
     | `T s -> s
-    | `L msgs -> String.concat "" (List.map string_of_html_tag msgs)
+    | `L msgs -> String.concat "\n" (List.map string_of_html_tag msgs)
     | `BR -> "\n"
   in
   function
     | `Error tag -> "Error: " ^ string_of_html_tag tag
     | `Msg tag -> string_of_html_tag tag
 
+let html_of_html_msg =
+  let rec string_of_html_tag = function
+    | `T s -> s
+    | `L msgs ->
+        sprintf "<ul>\n%s\n</ul>"
+          (String.concat "\n"
+            (List.map
+              (fun msg -> sprintf "<li>%s</li>" (string_of_html_tag msg))
+              msgs))
+    | `BR -> "<br />\n"
+  in
+  function
+    | `Error tag -> "<b>Error: " ^ string_of_html_tag tag ^ "</b>"
+    | `Msg tag -> string_of_html_tag tag
+
 class html_logger ?width ?height ?packing ?show () =
  let scrolled_window = GBin.scrolled_window ?packing ?show () in
  let vadj = scrolled_window#vadjustment in
index c66a226357f45fa872735a9146f5eabd1784a94b..d64603a4bf07b14cbaa99a7ef903dd44cf90985c 100644 (file)
@@ -3,6 +3,7 @@ type html_tag = [ `BR | `L of html_tag list | `T of string ]
 type html_msg = [ `Error of html_tag | `Msg of html_tag ]
 
 val string_of_html_msg: html_msg -> string
+val html_of_html_msg: html_msg -> string
 
 class html_logger:
   ?width:int -> ?height:int -> ?packing:(GObj.widget -> unit) -> ?show:bool ->