]> matita.cs.unibo.it Git - helm.git/commitdiff
convert comments to ocamldoc comments
authorStefano Zacchiroli <zack@upsilon.cc>
Sat, 8 Sep 2007 09:16:29 +0000 (09:16 +0000)
committerStefano Zacchiroli <zack@upsilon.cc>
Sat, 8 Sep 2007 09:16:29 +0000 (09:16 +0000)
DEVEL/gdome_xslt/ocaml/gdome_xslt/gdome_xslt.mli
DEVEL/gdome_xslt/ocaml/gdome_xslt/gdome_xslt_init.mli

index 8115457f33778299e86c1c2bbcb842284d8a57cc..7571ef3d2e0893d2c4cd61a7a64d9958a8e0cbd6 100644 (file)
 (* processStylesheet stylesheet                               *)
 (* Process a stylesheet so that it can be subsequently used   *)
 (* with applyStylesheet.                                      *)
+
+(** processStylesheet stylesheet
+ *
+ * Process a stylesheet so that it can be subsequently used with
+ * applyStylesheet. *)
 val processStylesheet:
  Gdome.document ->
    I_gdome_xslt.processed_stylesheet
 
-(* applyStylesheet source stylesheet params                   *)
-(* Applies a processed stylesheet to a source document, using *)
-(* the given list of parameters (couples name,value)          *)
+(** applyStylesheet source stylesheet params
+ * Applies a processed stylesheet to a source document, using the given list of
+ * parameters (couples name,value) *)
 val applyStylesheet:
  source: Gdome.document ->
  stylesheet:I_gdome_xslt.processed_stylesheet ->
  params:(string * string) list ->
    Gdome.document
 
-(* output the result of a previous XSLT transformation to an  *)
-(* output channel                                             *)
+(** output the result of a previous XSLT transformation to an output channel *)
 val saveResultToChannel:
   outchan: out_channel ->
   result: Gdome.document ->
@@ -50,10 +54,10 @@ val saveResultToChannel:
     unit
 
 (** set error callback, that is a function invoked each time an error message is
-generated. If None is passed, libxslt default error callback is used *)
+ * generated. If None is passed, libxslt default error callback is used *)
 val setErrorCallback: (string -> unit) option -> unit
 
 (** set debug callback, that is a function invoked each time a debugging message
-is generated. If None is passed, libxslt default error callback is used *)
+ * is generated. If None is passed, libxslt default error callback is used *)
 val setDebugCallback: (string -> unit) option -> unit
 
index d3e6d670e3f3904ee552b76dc95ce41e45e27f63..84b4f5d759ceefadec73f98729d40b87893b60f4 100644 (file)
  * For more information, please send an email to {sacerdot,zack}@cs.unibo.it
  *)
 
-(**************************** WARNING!!! ***********************************)
-(***                                                                     ***)
-(*** This file must always be linked with any code using gdome_xslt and  ***)
-(*** must be linked as the first file. It is responsible of initializing ***)
-(*** the whole binding, registering some ocaml values to the C level.    ***)
-(***                                                                     ***)
-(***************************************************************************)
+(** GDome XSLT initialization module *)
+
+(** WARNING!!! 
+ * This file must always be linked with any code using gdome_xslt
+ * and must be linked as the first file. It is responsible of initializing the
+ * whole binding, registering some ocaml values to the C level. *)
 
 exception ProcessStylesheetException
 exception ApplyStylesheetException
+