├── .gitignore ├── .travis.yml ├── CHANGES.md ├── LICENSE.md ├── Makefile ├── README.md ├── dune-project ├── irmin-indexeddb.opam ├── lib ├── branch_store.ml ├── config.ml ├── content_store.ml ├── dune ├── html_storage.ml ├── html_storage.mli ├── irmin_indexeddb.ml ├── irmin_indexeddb.mli ├── js_api.ml ├── raw.ml ├── raw.mli ├── utf8_codec.ml ├── utf8_codec.mli └── utils.ml ├── test.html └── test ├── dune ├── helpers.js ├── test.ml └── v3_db.ml /.gitignore: -------------------------------------------------------------------------------- 1 | _build 2 | .merlin 3 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/talex5/irmin-indexeddb/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/talex5/irmin-indexeddb/HEAD/CHANGES.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/talex5/irmin-indexeddb/HEAD/LICENSE.md -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/talex5/irmin-indexeddb/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/talex5/irmin-indexeddb/HEAD/README.md -------------------------------------------------------------------------------- /dune-project: -------------------------------------------------------------------------------- 1 | (lang dune 1.11) 2 | (name irmin-indexeddb) 3 | -------------------------------------------------------------------------------- /irmin-indexeddb.opam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/talex5/irmin-indexeddb/HEAD/irmin-indexeddb.opam -------------------------------------------------------------------------------- /lib/branch_store.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/talex5/irmin-indexeddb/HEAD/lib/branch_store.ml -------------------------------------------------------------------------------- /lib/config.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/talex5/irmin-indexeddb/HEAD/lib/config.ml -------------------------------------------------------------------------------- /lib/content_store.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/talex5/irmin-indexeddb/HEAD/lib/content_store.ml -------------------------------------------------------------------------------- /lib/dune: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/talex5/irmin-indexeddb/HEAD/lib/dune -------------------------------------------------------------------------------- /lib/html_storage.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/talex5/irmin-indexeddb/HEAD/lib/html_storage.ml -------------------------------------------------------------------------------- /lib/html_storage.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/talex5/irmin-indexeddb/HEAD/lib/html_storage.mli -------------------------------------------------------------------------------- /lib/irmin_indexeddb.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/talex5/irmin-indexeddb/HEAD/lib/irmin_indexeddb.ml -------------------------------------------------------------------------------- /lib/irmin_indexeddb.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/talex5/irmin-indexeddb/HEAD/lib/irmin_indexeddb.mli -------------------------------------------------------------------------------- /lib/js_api.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/talex5/irmin-indexeddb/HEAD/lib/js_api.ml -------------------------------------------------------------------------------- /lib/raw.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/talex5/irmin-indexeddb/HEAD/lib/raw.ml -------------------------------------------------------------------------------- /lib/raw.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/talex5/irmin-indexeddb/HEAD/lib/raw.mli -------------------------------------------------------------------------------- /lib/utf8_codec.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/talex5/irmin-indexeddb/HEAD/lib/utf8_codec.ml -------------------------------------------------------------------------------- /lib/utf8_codec.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/talex5/irmin-indexeddb/HEAD/lib/utf8_codec.mli -------------------------------------------------------------------------------- /lib/utils.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/talex5/irmin-indexeddb/HEAD/lib/utils.ml -------------------------------------------------------------------------------- /test.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/talex5/irmin-indexeddb/HEAD/test.html -------------------------------------------------------------------------------- /test/dune: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/talex5/irmin-indexeddb/HEAD/test/dune -------------------------------------------------------------------------------- /test/helpers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/talex5/irmin-indexeddb/HEAD/test/helpers.js -------------------------------------------------------------------------------- /test/test.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/talex5/irmin-indexeddb/HEAD/test/test.ml -------------------------------------------------------------------------------- /test/v3_db.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/talex5/irmin-indexeddb/HEAD/test/v3_db.ml --------------------------------------------------------------------------------