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
|
Source: ocaml-markup
Priority: optional
Maintainer: Debian OCaml Maintainers <debian-ocaml-maint@lists.debian.org>
Uploaders:
Stéphane Glondu <glondu@debian.org>
Build-Depends:
debhelper-compat (= 13),
ocaml,
ocaml-dune,
libuchar-ocaml-dev,
libuutf-ocaml-dev,
liblwt-ocaml-dev,
libbisect-ppx-ocaml-dev <!nocheck>,
libounit-ocaml-dev <!nocheck>,
dh-ocaml (>= 1.2)
Standards-Version: 4.7.0
Rules-Requires-Root: no
Section: ocaml
Homepage: https://github.com/aantron/markup.ml
Vcs-Git: https://salsa.debian.org/ocaml-team/ocaml-markup.git
Vcs-Browser: https://salsa.debian.org/ocaml-team/ocaml-markup
Package: libmarkup-ocaml-dev
Architecture: any
Depends:
${ocaml:Depends},
${shlibs:Depends},
${misc:Depends}
Provides: ${ocaml:Provides}
Recommends: ocaml-findlib
Description: error-recovering functional HTML5 and XML parsers and writers (dev files)
Markup.ml provides an HTML parser and an XML parser. The parsers are
wrapped in a simple interface: they are functions that transform byte
streams to parsing signal streams. Streams can be manipulated in
various ways, such as processing by fold, filter, and map, assembly
into DOM tree structures, or serialization back to HTML or XML.
.
Both parsers are based on their respective standards. The HTML
parser, in particular, is based on the state machines defined in
HTML5.
.
The parsers are error-recovering by default, and accept
fragments. This makes it very easy to get a best-effort parse of some
input. The parsers can, however, be easily configured to be strict,
and to accept only full documents.
.
Apart from this, the parsers are streaming (do not build up a
document in memory), non-blocking (can be used with threading
libraries), lazy (do not consume input unless the signal stream is
being read), and process the input in a single pass. They
automatically detect the character encoding of the input stream, and
convert everything to UTF-8.
.
This package contains development files.
Package: libmarkup-ocaml
Architecture: any
Depends:
${ocaml:Depends},
${shlibs:Depends},
${misc:Depends}
Provides: ${ocaml:Provides}
Description: error-recovering functional HTML5 and XML parsers and writers (runtime)
Markup.ml provides an HTML parser and an XML parser. The parsers are
wrapped in a simple interface: they are functions that transform byte
streams to parsing signal streams. Streams can be manipulated in
various ways, such as processing by fold, filter, and map, assembly
into DOM tree structures, or serialization back to HTML or XML.
.
Both parsers are based on their respective standards. The HTML
parser, in particular, is based on the state machines defined in
HTML5.
.
The parsers are error-recovering by default, and accept
fragments. This makes it very easy to get a best-effort parse of some
input. The parsers can, however, be easily configured to be strict,
and to accept only full documents.
.
Apart from this, the parsers are streaming (do not build up a
document in memory), non-blocking (can be used with threading
libraries), lazy (do not consume input unless the signal stream is
being read), and process the input in a single pass. They
automatically detect the character encoding of the input stream, and
convert everything to UTF-8.
.
This package contains runtime files.
Package: libmarkup-lwt-ocaml-dev
Architecture: any
Depends:
${ocaml:Depends},
${shlibs:Depends},
${misc:Depends}
Provides: ${ocaml:Provides}
Recommends: ocaml-findlib
Description: adapter between Markup.ml and Lwt (dev files)
Markup.ml provides an HTML parser and an XML parser. The parsers are
wrapped in a simple interface: they are functions that transform byte
streams to parsing signal streams. Streams can be manipulated in
various ways, such as processing by fold, filter, and map, assembly
into DOM tree structures, or serialization back to HTML or XML.
.
Both parsers are based on their respective standards. The HTML
parser, in particular, is based on the state machines defined in
HTML5.
.
The parsers are error-recovering by default, and accept
fragments. This makes it very easy to get a best-effort parse of some
input. The parsers can, however, be easily configured to be strict,
and to accept only full documents.
.
Apart from this, the parsers are streaming (do not build up a
document in memory), non-blocking (can be used with threading
libraries), lazy (do not consume input unless the signal stream is
being read), and process the input in a single pass. They
automatically detect the character encoding of the input stream, and
convert everything to UTF-8.
.
This package contains the adapter between Markup.ml and Lwt.
.
This package contains development files.
Package: libmarkup-lwt-ocaml
Architecture: any
Depends:
${ocaml:Depends},
${shlibs:Depends},
${misc:Depends}
Provides: ${ocaml:Provides}
Description: adapter between Markup.ml and Lwt (runtime)
Markup.ml provides an HTML parser and an XML parser. The parsers are
wrapped in a simple interface: they are functions that transform byte
streams to parsing signal streams. Streams can be manipulated in
various ways, such as processing by fold, filter, and map, assembly
into DOM tree structures, or serialization back to HTML or XML.
.
Both parsers are based on their respective standards. The HTML
parser, in particular, is based on the state machines defined in
HTML5.
.
The parsers are error-recovering by default, and accept
fragments. This makes it very easy to get a best-effort parse of some
input. The parsers can, however, be easily configured to be strict,
and to accept only full documents.
.
Apart from this, the parsers are streaming (do not build up a
document in memory), non-blocking (can be used with threading
libraries), lazy (do not consume input unless the signal stream is
being read), and process the input in a single pass. They
automatically detect the character encoding of the input stream, and
convert everything to UTF-8.
.
This package contains the adapter between Markup.ml and Lwt.
.
This package contains runtime files.
|