├── .editorconfig ├── .gitignore ├── .gitmodules ├── .hgignore ├── .jshintrc ├── .nvmrc ├── LICENSE ├── Makefile ├── README.md ├── extension ├── bootstrap.js ├── chrome.manifest ├── core.js ├── manifest.json └── resource │ └── translators │ └── EasyKeyExporter.js ├── misc └── parser.pegjs ├── package.json ├── scripts └── extractcites.py ├── test ├── Gemfile ├── Gemfile.lock ├── test-data │ ├── files │ │ └── 7438 │ │ │ └── doe │ └── zotxt test.rdf ├── test.js └── test.rb └── update.json /.editorconfig: -------------------------------------------------------------------------------- 1 | root = true 2 | 3 | [*.js] 4 | indent_size = 4 5 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egh/zotxt/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egh/zotxt/HEAD/.gitmodules -------------------------------------------------------------------------------- /.hgignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egh/zotxt/HEAD/.hgignore -------------------------------------------------------------------------------- /.jshintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egh/zotxt/HEAD/.jshintrc -------------------------------------------------------------------------------- /.nvmrc: -------------------------------------------------------------------------------- 1 | v20 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egh/zotxt/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egh/zotxt/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egh/zotxt/HEAD/README.md -------------------------------------------------------------------------------- /extension/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egh/zotxt/HEAD/extension/bootstrap.js -------------------------------------------------------------------------------- /extension/chrome.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egh/zotxt/HEAD/extension/chrome.manifest -------------------------------------------------------------------------------- /extension/core.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egh/zotxt/HEAD/extension/core.js -------------------------------------------------------------------------------- /extension/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egh/zotxt/HEAD/extension/manifest.json -------------------------------------------------------------------------------- /extension/resource/translators/EasyKeyExporter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egh/zotxt/HEAD/extension/resource/translators/EasyKeyExporter.js -------------------------------------------------------------------------------- /misc/parser.pegjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egh/zotxt/HEAD/misc/parser.pegjs -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egh/zotxt/HEAD/package.json -------------------------------------------------------------------------------- /scripts/extractcites.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egh/zotxt/HEAD/scripts/extractcites.py -------------------------------------------------------------------------------- /test/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egh/zotxt/HEAD/test/Gemfile -------------------------------------------------------------------------------- /test/Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egh/zotxt/HEAD/test/Gemfile.lock -------------------------------------------------------------------------------- /test/test-data/files/7438/doe: -------------------------------------------------------------------------------- 1 | hello world 2 | -------------------------------------------------------------------------------- /test/test-data/zotxt test.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egh/zotxt/HEAD/test/test-data/zotxt test.rdf -------------------------------------------------------------------------------- /test/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egh/zotxt/HEAD/test/test.js -------------------------------------------------------------------------------- /test/test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egh/zotxt/HEAD/test/test.rb -------------------------------------------------------------------------------- /update.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egh/zotxt/HEAD/update.json --------------------------------------------------------------------------------