X-Git-Url: http://matita.cs.unibo.it/gitweb/?a=blobdiff_plain;f=helm%2Fsoftware%2FDEVEL%2Fgdome_xslt%2Focaml%2Fgdome_xslt%2Fgdome_xslt.mli;h=ff3467235921175958b2dbe58a2a6fc273f7ff04;hb=ac97468f5422efc770316286cb807e3d3245a474;hp=8115457f33778299e86c1c2bbcb842284d8a57cc;hpb=d43522a6d38fcb9081a3f0352088377bc0555231;p=helm.git diff --git a/helm/software/DEVEL/gdome_xslt/ocaml/gdome_xslt/gdome_xslt.mli b/helm/software/DEVEL/gdome_xslt/ocaml/gdome_xslt/gdome_xslt.mli index 8115457f3..ff3467235 100644 --- a/helm/software/DEVEL/gdome_xslt/ocaml/gdome_xslt/gdome_xslt.mli +++ b/helm/software/DEVEL/gdome_xslt/ocaml/gdome_xslt/gdome_xslt.mli @@ -25,24 +25,26 @@ * For more information, please send an email to {sacerdot,zack}@cs.unibo.it *) -(* processStylesheet stylesheet *) -(* Process a stylesheet so that it can be subsequently used *) -(* with applyStylesheet. *) +(** Main interface to GDome XSLT functionalities *) + +(** 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 +52,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