/usr/lib/ocaml/galax/streaming_util.mli is in libgalax-ocaml-dev 1.1-12.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 | (***********************************************************************)
(* *)
(* GALAX *)
(* XQuery Engine *)
(* *)
(* Copyright 2001-2007. *)
(* Distributed only by permission. *)
(* *)
(***********************************************************************)
(* $Id: streaming_util.mli,v 1.4 2007/02/01 22:08:54 simeon Exp $ *)
(* Module: Streaming_util
Description:
Some utilities over streaming types.
*)
open Streaming_types
(**********************)
(* Event constructors *)
(**********************)
val fmkse_event : sax_event_desc -> Finfo.finfo -> sax_event
val fmkrse_event : resolved_sax_event_desc -> Finfo.finfo -> resolved_sax_event
val fmktse_event : typed_sax_event_desc -> Finfo.finfo -> typed_annotated_sax_event
val fmkatse_event : typed_sax_event_desc -> Sax_annot.sax_annot -> Finfo.finfo -> typed_annotated_sax_event
val fmkotse_event : ordered_typed_sax_event_desc -> Sax_annot.sax_annot -> Finfo.finfo -> ordered_typed_annotated_sax_event
val mktse_event : typed_sax_event_desc -> typed_annotated_sax_event
(********************)
(* Events accessors *)
(********************)
(* Extracts special attributes *)
val extract_special_attributes :
sax_xml_attribute_forest ->
(Whitespace.mode * (Namespace_names.prefix * Namespace_names.uri) list * Dm_atomic.atomicAnyURI option * sax_xml_attribute_forest)
(* Checks for duplicates in attributes -- Returns the original sequence of attributes or raises and error *)
val check_duplicate_attributes :
resolved_sax_xml_attribute_forest -> resolved_sax_xml_attribute_forest
val string_of_resolved_sax_event_desc : resolved_sax_event_desc -> string
|