package ldp

  1. Overview
  2. Docs
Library to build LDP applications

Install

dune-project
 Dependency

Authors

Maintainers

Sources

ocaml-ldp-0.2.0.tar.gz
md5=7f82ccbdcb07a75f6d2bb7ca226d02df
sha512=42f8e53d6634de4b19ac5249fcd8e3d2bde13de7a3963e6821eae9e7b46ff914458d3bfde201352fd18b6de14bb276705561d8fd09a09ddd16f001d0f25cf209

doc/ldp/Ldp/Containers/index.html

Module Ldp.ContainersSource

Handling containers.

Sourcetype tree =
  1. | NRDF of Iri.t * Ct.t
    (*

    A non-RDF resource with its IRI and content-type

    *)
  2. | RDF of Iri.t
    (*

    A RDF resource with its IRI

    *)
  3. | CONT of Iri.t * tree list
    (*

    A container with its IRI and children.

    *)

A tree of containers.

Sourceval node_text : tree -> string

Returns a string representation for the give tree node (not recursive).

Sourcemodule type S = sig ... end

Result of the Make functor.

Sourcemodule Make (P : Http.Http) : S

Make(Http) returns a S using the given Http implementation to perform operations.