/usr/lib/ocaml/pxp-engine/pxp_yacc.mli is in libpxp-ocaml-dev 1.2.7-1build2.
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 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 | (* $Id: pxp_yacc.mli 747 2009-02-03 04:03:46Z gerd $
* ----------------------------------------------------------------------
* PXP: The polymorphic XML parser for Objective Caml.
* Copyright by Gerd Stolpmann. See LICENSE for details.
*)
(** Calling the parser (deprecated) *)
(*$ markup-yacc.mli *)
(**********************************************************************)
(* THE WHOLE MODULE PXP_YACC IS DEPRECATED.
*
* The functionality has been distributed over several smaller modules:
* - Pxp_types: has most type definitions
* - Pxp_dtd_parser: DTD parsing
* - Pxp_tree_parser: Parsers that represent the XML tree as object tree
* (with classes from Pxp_document)
* - Pxp_ev_parser: Event-based parsing
*
* There are no plans to delete the module completely, however. It just
* remains as old-style interface.
*)
(**********************************************************************)
open Pxp_types
open Pxp_dtd
open Pxp_document
type config = Pxp_types.config =
{ warner : collect_warnings;
swarner : symbolic_warnings option;
enable_pinstr_nodes : bool;
enable_comment_nodes : bool;
enable_super_root_node : bool;
drop_ignorable_whitespace : bool;
encoding : rep_encoding;
recognize_standalone_declaration : bool;
store_element_positions : bool;
idref_pass : bool;
validate_by_dfa : bool;
accept_only_deterministic_models : bool;
disable_content_validation : bool;
name_pool : Pxp_core_types.I.pool;
enable_name_pool_for_element_types : bool;
enable_name_pool_for_attribute_names : bool;
enable_name_pool_for_attribute_values : bool;
enable_name_pool_for_pinstr_targets : bool;
enable_namespace_processing : Pxp_dtd.namespace_manager option;
escape_contents :
(Pxp_lexer_types.token -> Pxp_entity_manager.entity_manager ->
string) option;
escape_attributes :
(Pxp_lexer_types.token -> int -> Pxp_entity_manager.entity_manager ->
string) option;
debugging_mode : bool;
}
(** Same as {!Pxp_types.config} *)
val default_config : config
(** Same as {!Pxp_types.default_config} *)
val default_namespace_config : config
(** Same as {!Pxp_types.default_namespace_config} *)
type source = Pxp_types.source =
Entity of ((dtd -> Pxp_entity.entity) * Pxp_reader.resolver)
| ExtID of (ext_id * Pxp_reader.resolver)
| XExtID of (ext_id * string option * Pxp_reader.resolver) (** *)
(** Same as {!Pxp_types.source} *)
val from_channel :
?alt:Pxp_reader.resolver list ->
?system_id:string ->
?fixenc:encoding ->
?id:ext_id ->
?system_encoding:encoding ->
in_channel ->
source
(** Same as {!Pxp_types.from_channel} *)
val from_string :
?alt:Pxp_reader.resolver list ->
?system_id:string ->
?fixenc:encoding ->
string ->
source
(** Same as {!Pxp_types.from_string} *)
val from_obj_channel :
?alt:Pxp_reader.resolver list ->
?system_id:string ->
?fixenc:encoding ->
?id:ext_id ->
?system_encoding:encoding ->
Netchannels.in_obj_channel ->
source
(** Same as {!Pxp_types.from_obj_channel} *)
val from_file :
?alt:Pxp_reader.resolver list ->
?system_encoding:encoding -> ?enc:encoding -> string -> source
(** Same as {!Pxp_types.from_file} *)
exception ID_not_unique
(** Same as {!Pxp_tree_parser.ID_not_unique} *)
class type [ 'ext ] index = [ 'ext ] Pxp_tree_parser.index
(** Same as {!Pxp_tree_parser.index} *)
class [ 'ext ] hash_index : [ 'ext ] Pxp_tree_parser.hash_index
(** Same as {!classtype:Pxp_tree_parser.hash_index} *)
val default_extension : ('a node extension) as 'a
(** Same as {!Pxp_tree_parser.default_extension} *)
val default_spec : ('a node extension as 'a) spec
(** Same as {!Pxp_tree_parser.default_spec} *)
val default_namespace_spec : ('a node extension as 'a) spec
(** Same as {!Pxp_tree_parser.default_namespace_spec} *)
val parse_document_entity :
?transform_dtd:(dtd -> dtd) ->
?id_index:('ext index) ->
config -> source -> 'ext spec -> 'ext document
(** Same as {!Pxp_tree_parser.parse_document_entity} *)
val parse_wfdocument_entity :
?transform_dtd:(dtd -> dtd) ->
config -> source -> 'ext spec -> 'ext document
(** Same as {!Pxp_tree_parser.parse_wfdocument_entity} *)
val parse_content_entity :
?id_index:('ext index) ->
config -> source -> dtd -> 'ext spec -> 'ext node
(** Same as {!Pxp_tree_parser.parse_content_entity} *)
val parse_wfcontent_entity :
config -> source -> 'ext spec -> 'ext node
(** Same as {!Pxp_tree_parser.parse_wfcontent_entity} *)
val parse_dtd_entity : config -> source -> dtd
(** Same as {!Pxp_dtd_parser.parse_dtd_entity} *)
val extract_dtd_from_document_entity : config -> source -> dtd
(** Same as {!Pxp_dtd_parser.extract_dtd_from_document_entity} *)
(* Event-based stuff now only in Pxp_ev_parser! *)
(*$-*)
|