├── .gitignore ├── .travis.yml ├── Makefile ├── chrome.manifest ├── chrome ├── content │ └── zotfile │ │ ├── ProgressWindow.js │ │ ├── include.js │ │ ├── notifier.js │ │ ├── options-projects.xul │ │ ├── options.js │ │ ├── options.xul │ │ ├── optionsFolderEditor.xul │ │ ├── overlay.xul │ │ ├── pdfAnnotations.js │ │ ├── pdfOutline.js │ │ ├── pdfextract │ │ ├── extract.html │ │ ├── extract.js │ │ ├── pdfjs │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ └── src │ │ │ │ ├── core │ │ │ │ ├── annotation.js │ │ │ │ ├── arithmetic_decoder.js │ │ │ │ ├── bidi.js │ │ │ │ ├── charsets.js │ │ │ │ ├── chunked_stream.js │ │ │ │ ├── cmap.js │ │ │ │ ├── colorspace.js │ │ │ │ ├── core.js │ │ │ │ ├── crypto.js │ │ │ │ ├── evaluator.js │ │ │ │ ├── font_renderer.js │ │ │ │ ├── fonts.js │ │ │ │ ├── function.js │ │ │ │ ├── glyphlist.js │ │ │ │ ├── image.js │ │ │ │ ├── jbig2.js │ │ │ │ ├── jpg.js │ │ │ │ ├── jpx.js │ │ │ │ ├── metrics.js │ │ │ │ ├── murmurhash3.js │ │ │ │ ├── network.js │ │ │ │ ├── obj.js │ │ │ │ ├── parser.js │ │ │ │ ├── pattern.js │ │ │ │ ├── pdf_manager.js │ │ │ │ ├── ps_parser.js │ │ │ │ ├── stream.js │ │ │ │ └── worker.js │ │ │ │ ├── display │ │ │ │ ├── annotation_helper.js │ │ │ │ ├── api.js │ │ │ │ ├── canvas.js │ │ │ │ ├── font_loader.js │ │ │ │ ├── metadata.js │ │ │ │ ├── pattern_helper.js │ │ │ │ ├── svg.js │ │ │ │ └── webgl.js │ │ │ │ ├── doc_helper.js │ │ │ │ ├── getPDFAnnotations.js │ │ │ │ ├── images │ │ │ │ └── logo.svg │ │ │ │ ├── pdf.js │ │ │ │ ├── shared │ │ │ │ ├── cffStandardStrings.js │ │ │ │ ├── fonts_utils.js │ │ │ │ └── util.js │ │ │ │ └── worker_loader.js │ │ ├── toc.html │ │ └── toc.js │ │ ├── progressWindow.xul │ │ ├── tablet.js │ │ ├── ui.js │ │ ├── utils.js │ │ ├── wildcards.js │ │ └── zotfile.js ├── locale │ ├── de-DE │ │ ├── options-projects.dtd │ │ ├── options.dtd │ │ ├── options.properties │ │ ├── optionsFolderEditor.dtd │ │ ├── overlay.dtd │ │ └── zotfile.properties │ ├── en-US │ │ ├── options-projects.dtd │ │ ├── options.dtd │ │ ├── options.properties │ │ ├── optionsFolderEditor.dtd │ │ ├── overlay.dtd │ │ └── zotfile.properties │ ├── fr-FR │ │ ├── options-projects.dtd │ │ ├── options.dtd │ │ ├── options.properties │ │ ├── optionsFolderEditor.dtd │ │ ├── overlay.dtd │ │ └── zotfile.properties │ └── it-IT │ │ ├── options-projects.dtd │ │ ├── options.dtd │ │ ├── options.properties │ │ ├── optionsFolderEditor.dtd │ │ ├── overlay.dtd │ │ └── zotfile.properties └── skin │ └── default │ └── zotfile │ ├── accept.png │ ├── exclamation.png │ └── information.png ├── defaults └── preferences │ └── defaults.js ├── docs ├── CNAME ├── _config.yml ├── _layouts │ └── default.html ├── assets │ └── css │ │ └── style.scss ├── index.md ├── javascripts │ ├── highlight.js │ └── scale.fix.js ├── pics │ ├── CollegeWhiz.png │ ├── Socie.png │ ├── gear.png │ ├── pdf-annotation-full.png │ └── zotfile-reader-rename.jpg ├── readme.md ├── stylesheets │ ├── pygment_trac.css │ └── styles.css ├── wildcards-default-min.json ├── wildcards-default.json └── zotfile-update.rdf ├── install.rdf ├── readme.md └── zotfile-update.rdf /.gitignore: -------------------------------------------------------------------------------- 1 | /Makefile.in 2 | .DS_Store 3 | *.xpi 4 | *.icloud 5 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlegewie/zotfile/HEAD/.travis.yml -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlegewie/zotfile/HEAD/Makefile -------------------------------------------------------------------------------- /chrome.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlegewie/zotfile/HEAD/chrome.manifest -------------------------------------------------------------------------------- /chrome/content/zotfile/ProgressWindow.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlegewie/zotfile/HEAD/chrome/content/zotfile/ProgressWindow.js -------------------------------------------------------------------------------- /chrome/content/zotfile/include.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlegewie/zotfile/HEAD/chrome/content/zotfile/include.js -------------------------------------------------------------------------------- /chrome/content/zotfile/notifier.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlegewie/zotfile/HEAD/chrome/content/zotfile/notifier.js -------------------------------------------------------------------------------- /chrome/content/zotfile/options-projects.xul: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlegewie/zotfile/HEAD/chrome/content/zotfile/options-projects.xul -------------------------------------------------------------------------------- /chrome/content/zotfile/options.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlegewie/zotfile/HEAD/chrome/content/zotfile/options.js -------------------------------------------------------------------------------- /chrome/content/zotfile/options.xul: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlegewie/zotfile/HEAD/chrome/content/zotfile/options.xul -------------------------------------------------------------------------------- /chrome/content/zotfile/optionsFolderEditor.xul: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlegewie/zotfile/HEAD/chrome/content/zotfile/optionsFolderEditor.xul -------------------------------------------------------------------------------- /chrome/content/zotfile/overlay.xul: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlegewie/zotfile/HEAD/chrome/content/zotfile/overlay.xul -------------------------------------------------------------------------------- /chrome/content/zotfile/pdfAnnotations.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlegewie/zotfile/HEAD/chrome/content/zotfile/pdfAnnotations.js -------------------------------------------------------------------------------- /chrome/content/zotfile/pdfOutline.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlegewie/zotfile/HEAD/chrome/content/zotfile/pdfOutline.js -------------------------------------------------------------------------------- /chrome/content/zotfile/pdfextract/extract.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlegewie/zotfile/HEAD/chrome/content/zotfile/pdfextract/extract.html -------------------------------------------------------------------------------- /chrome/content/zotfile/pdfextract/extract.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlegewie/zotfile/HEAD/chrome/content/zotfile/pdfextract/extract.js -------------------------------------------------------------------------------- /chrome/content/zotfile/pdfextract/pdfjs/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlegewie/zotfile/HEAD/chrome/content/zotfile/pdfextract/pdfjs/LICENSE -------------------------------------------------------------------------------- /chrome/content/zotfile/pdfextract/pdfjs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlegewie/zotfile/HEAD/chrome/content/zotfile/pdfextract/pdfjs/README.md -------------------------------------------------------------------------------- /chrome/content/zotfile/pdfextract/pdfjs/src/core/annotation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlegewie/zotfile/HEAD/chrome/content/zotfile/pdfextract/pdfjs/src/core/annotation.js -------------------------------------------------------------------------------- /chrome/content/zotfile/pdfextract/pdfjs/src/core/arithmetic_decoder.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlegewie/zotfile/HEAD/chrome/content/zotfile/pdfextract/pdfjs/src/core/arithmetic_decoder.js -------------------------------------------------------------------------------- /chrome/content/zotfile/pdfextract/pdfjs/src/core/bidi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlegewie/zotfile/HEAD/chrome/content/zotfile/pdfextract/pdfjs/src/core/bidi.js -------------------------------------------------------------------------------- /chrome/content/zotfile/pdfextract/pdfjs/src/core/charsets.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlegewie/zotfile/HEAD/chrome/content/zotfile/pdfextract/pdfjs/src/core/charsets.js -------------------------------------------------------------------------------- /chrome/content/zotfile/pdfextract/pdfjs/src/core/chunked_stream.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlegewie/zotfile/HEAD/chrome/content/zotfile/pdfextract/pdfjs/src/core/chunked_stream.js -------------------------------------------------------------------------------- /chrome/content/zotfile/pdfextract/pdfjs/src/core/cmap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlegewie/zotfile/HEAD/chrome/content/zotfile/pdfextract/pdfjs/src/core/cmap.js -------------------------------------------------------------------------------- /chrome/content/zotfile/pdfextract/pdfjs/src/core/colorspace.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlegewie/zotfile/HEAD/chrome/content/zotfile/pdfextract/pdfjs/src/core/colorspace.js -------------------------------------------------------------------------------- /chrome/content/zotfile/pdfextract/pdfjs/src/core/core.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlegewie/zotfile/HEAD/chrome/content/zotfile/pdfextract/pdfjs/src/core/core.js -------------------------------------------------------------------------------- /chrome/content/zotfile/pdfextract/pdfjs/src/core/crypto.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlegewie/zotfile/HEAD/chrome/content/zotfile/pdfextract/pdfjs/src/core/crypto.js -------------------------------------------------------------------------------- /chrome/content/zotfile/pdfextract/pdfjs/src/core/evaluator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlegewie/zotfile/HEAD/chrome/content/zotfile/pdfextract/pdfjs/src/core/evaluator.js -------------------------------------------------------------------------------- /chrome/content/zotfile/pdfextract/pdfjs/src/core/font_renderer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlegewie/zotfile/HEAD/chrome/content/zotfile/pdfextract/pdfjs/src/core/font_renderer.js -------------------------------------------------------------------------------- /chrome/content/zotfile/pdfextract/pdfjs/src/core/fonts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlegewie/zotfile/HEAD/chrome/content/zotfile/pdfextract/pdfjs/src/core/fonts.js -------------------------------------------------------------------------------- /chrome/content/zotfile/pdfextract/pdfjs/src/core/function.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlegewie/zotfile/HEAD/chrome/content/zotfile/pdfextract/pdfjs/src/core/function.js -------------------------------------------------------------------------------- /chrome/content/zotfile/pdfextract/pdfjs/src/core/glyphlist.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlegewie/zotfile/HEAD/chrome/content/zotfile/pdfextract/pdfjs/src/core/glyphlist.js -------------------------------------------------------------------------------- /chrome/content/zotfile/pdfextract/pdfjs/src/core/image.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlegewie/zotfile/HEAD/chrome/content/zotfile/pdfextract/pdfjs/src/core/image.js -------------------------------------------------------------------------------- /chrome/content/zotfile/pdfextract/pdfjs/src/core/jbig2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlegewie/zotfile/HEAD/chrome/content/zotfile/pdfextract/pdfjs/src/core/jbig2.js -------------------------------------------------------------------------------- /chrome/content/zotfile/pdfextract/pdfjs/src/core/jpg.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlegewie/zotfile/HEAD/chrome/content/zotfile/pdfextract/pdfjs/src/core/jpg.js -------------------------------------------------------------------------------- /chrome/content/zotfile/pdfextract/pdfjs/src/core/jpx.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlegewie/zotfile/HEAD/chrome/content/zotfile/pdfextract/pdfjs/src/core/jpx.js -------------------------------------------------------------------------------- /chrome/content/zotfile/pdfextract/pdfjs/src/core/metrics.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlegewie/zotfile/HEAD/chrome/content/zotfile/pdfextract/pdfjs/src/core/metrics.js -------------------------------------------------------------------------------- /chrome/content/zotfile/pdfextract/pdfjs/src/core/murmurhash3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlegewie/zotfile/HEAD/chrome/content/zotfile/pdfextract/pdfjs/src/core/murmurhash3.js -------------------------------------------------------------------------------- /chrome/content/zotfile/pdfextract/pdfjs/src/core/network.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlegewie/zotfile/HEAD/chrome/content/zotfile/pdfextract/pdfjs/src/core/network.js -------------------------------------------------------------------------------- /chrome/content/zotfile/pdfextract/pdfjs/src/core/obj.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlegewie/zotfile/HEAD/chrome/content/zotfile/pdfextract/pdfjs/src/core/obj.js -------------------------------------------------------------------------------- /chrome/content/zotfile/pdfextract/pdfjs/src/core/parser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlegewie/zotfile/HEAD/chrome/content/zotfile/pdfextract/pdfjs/src/core/parser.js -------------------------------------------------------------------------------- /chrome/content/zotfile/pdfextract/pdfjs/src/core/pattern.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlegewie/zotfile/HEAD/chrome/content/zotfile/pdfextract/pdfjs/src/core/pattern.js -------------------------------------------------------------------------------- /chrome/content/zotfile/pdfextract/pdfjs/src/core/pdf_manager.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlegewie/zotfile/HEAD/chrome/content/zotfile/pdfextract/pdfjs/src/core/pdf_manager.js -------------------------------------------------------------------------------- /chrome/content/zotfile/pdfextract/pdfjs/src/core/ps_parser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlegewie/zotfile/HEAD/chrome/content/zotfile/pdfextract/pdfjs/src/core/ps_parser.js -------------------------------------------------------------------------------- /chrome/content/zotfile/pdfextract/pdfjs/src/core/stream.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlegewie/zotfile/HEAD/chrome/content/zotfile/pdfextract/pdfjs/src/core/stream.js -------------------------------------------------------------------------------- /chrome/content/zotfile/pdfextract/pdfjs/src/core/worker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlegewie/zotfile/HEAD/chrome/content/zotfile/pdfextract/pdfjs/src/core/worker.js -------------------------------------------------------------------------------- /chrome/content/zotfile/pdfextract/pdfjs/src/display/annotation_helper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlegewie/zotfile/HEAD/chrome/content/zotfile/pdfextract/pdfjs/src/display/annotation_helper.js -------------------------------------------------------------------------------- /chrome/content/zotfile/pdfextract/pdfjs/src/display/api.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlegewie/zotfile/HEAD/chrome/content/zotfile/pdfextract/pdfjs/src/display/api.js -------------------------------------------------------------------------------- /chrome/content/zotfile/pdfextract/pdfjs/src/display/canvas.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlegewie/zotfile/HEAD/chrome/content/zotfile/pdfextract/pdfjs/src/display/canvas.js -------------------------------------------------------------------------------- /chrome/content/zotfile/pdfextract/pdfjs/src/display/font_loader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlegewie/zotfile/HEAD/chrome/content/zotfile/pdfextract/pdfjs/src/display/font_loader.js -------------------------------------------------------------------------------- /chrome/content/zotfile/pdfextract/pdfjs/src/display/metadata.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlegewie/zotfile/HEAD/chrome/content/zotfile/pdfextract/pdfjs/src/display/metadata.js -------------------------------------------------------------------------------- /chrome/content/zotfile/pdfextract/pdfjs/src/display/pattern_helper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlegewie/zotfile/HEAD/chrome/content/zotfile/pdfextract/pdfjs/src/display/pattern_helper.js -------------------------------------------------------------------------------- /chrome/content/zotfile/pdfextract/pdfjs/src/display/svg.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlegewie/zotfile/HEAD/chrome/content/zotfile/pdfextract/pdfjs/src/display/svg.js -------------------------------------------------------------------------------- /chrome/content/zotfile/pdfextract/pdfjs/src/display/webgl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlegewie/zotfile/HEAD/chrome/content/zotfile/pdfextract/pdfjs/src/display/webgl.js -------------------------------------------------------------------------------- /chrome/content/zotfile/pdfextract/pdfjs/src/doc_helper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlegewie/zotfile/HEAD/chrome/content/zotfile/pdfextract/pdfjs/src/doc_helper.js -------------------------------------------------------------------------------- /chrome/content/zotfile/pdfextract/pdfjs/src/getPDFAnnotations.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlegewie/zotfile/HEAD/chrome/content/zotfile/pdfextract/pdfjs/src/getPDFAnnotations.js -------------------------------------------------------------------------------- /chrome/content/zotfile/pdfextract/pdfjs/src/images/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlegewie/zotfile/HEAD/chrome/content/zotfile/pdfextract/pdfjs/src/images/logo.svg -------------------------------------------------------------------------------- /chrome/content/zotfile/pdfextract/pdfjs/src/pdf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlegewie/zotfile/HEAD/chrome/content/zotfile/pdfextract/pdfjs/src/pdf.js -------------------------------------------------------------------------------- /chrome/content/zotfile/pdfextract/pdfjs/src/shared/cffStandardStrings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlegewie/zotfile/HEAD/chrome/content/zotfile/pdfextract/pdfjs/src/shared/cffStandardStrings.js -------------------------------------------------------------------------------- /chrome/content/zotfile/pdfextract/pdfjs/src/shared/fonts_utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlegewie/zotfile/HEAD/chrome/content/zotfile/pdfextract/pdfjs/src/shared/fonts_utils.js -------------------------------------------------------------------------------- /chrome/content/zotfile/pdfextract/pdfjs/src/shared/util.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlegewie/zotfile/HEAD/chrome/content/zotfile/pdfextract/pdfjs/src/shared/util.js -------------------------------------------------------------------------------- /chrome/content/zotfile/pdfextract/pdfjs/src/worker_loader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlegewie/zotfile/HEAD/chrome/content/zotfile/pdfextract/pdfjs/src/worker_loader.js -------------------------------------------------------------------------------- /chrome/content/zotfile/pdfextract/toc.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlegewie/zotfile/HEAD/chrome/content/zotfile/pdfextract/toc.html -------------------------------------------------------------------------------- /chrome/content/zotfile/pdfextract/toc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlegewie/zotfile/HEAD/chrome/content/zotfile/pdfextract/toc.js -------------------------------------------------------------------------------- /chrome/content/zotfile/progressWindow.xul: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlegewie/zotfile/HEAD/chrome/content/zotfile/progressWindow.xul -------------------------------------------------------------------------------- /chrome/content/zotfile/tablet.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlegewie/zotfile/HEAD/chrome/content/zotfile/tablet.js -------------------------------------------------------------------------------- /chrome/content/zotfile/ui.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlegewie/zotfile/HEAD/chrome/content/zotfile/ui.js -------------------------------------------------------------------------------- /chrome/content/zotfile/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlegewie/zotfile/HEAD/chrome/content/zotfile/utils.js -------------------------------------------------------------------------------- /chrome/content/zotfile/wildcards.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlegewie/zotfile/HEAD/chrome/content/zotfile/wildcards.js -------------------------------------------------------------------------------- /chrome/content/zotfile/zotfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlegewie/zotfile/HEAD/chrome/content/zotfile/zotfile.js -------------------------------------------------------------------------------- /chrome/locale/de-DE/options-projects.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlegewie/zotfile/HEAD/chrome/locale/de-DE/options-projects.dtd -------------------------------------------------------------------------------- /chrome/locale/de-DE/options.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlegewie/zotfile/HEAD/chrome/locale/de-DE/options.dtd -------------------------------------------------------------------------------- /chrome/locale/de-DE/options.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlegewie/zotfile/HEAD/chrome/locale/de-DE/options.properties -------------------------------------------------------------------------------- /chrome/locale/de-DE/optionsFolderEditor.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlegewie/zotfile/HEAD/chrome/locale/de-DE/optionsFolderEditor.dtd -------------------------------------------------------------------------------- /chrome/locale/de-DE/overlay.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlegewie/zotfile/HEAD/chrome/locale/de-DE/overlay.dtd -------------------------------------------------------------------------------- /chrome/locale/de-DE/zotfile.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlegewie/zotfile/HEAD/chrome/locale/de-DE/zotfile.properties -------------------------------------------------------------------------------- /chrome/locale/en-US/options-projects.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlegewie/zotfile/HEAD/chrome/locale/en-US/options-projects.dtd -------------------------------------------------------------------------------- /chrome/locale/en-US/options.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlegewie/zotfile/HEAD/chrome/locale/en-US/options.dtd -------------------------------------------------------------------------------- /chrome/locale/en-US/options.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlegewie/zotfile/HEAD/chrome/locale/en-US/options.properties -------------------------------------------------------------------------------- /chrome/locale/en-US/optionsFolderEditor.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlegewie/zotfile/HEAD/chrome/locale/en-US/optionsFolderEditor.dtd -------------------------------------------------------------------------------- /chrome/locale/en-US/overlay.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlegewie/zotfile/HEAD/chrome/locale/en-US/overlay.dtd -------------------------------------------------------------------------------- /chrome/locale/en-US/zotfile.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlegewie/zotfile/HEAD/chrome/locale/en-US/zotfile.properties -------------------------------------------------------------------------------- /chrome/locale/fr-FR/options-projects.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlegewie/zotfile/HEAD/chrome/locale/fr-FR/options-projects.dtd -------------------------------------------------------------------------------- /chrome/locale/fr-FR/options.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlegewie/zotfile/HEAD/chrome/locale/fr-FR/options.dtd -------------------------------------------------------------------------------- /chrome/locale/fr-FR/options.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlegewie/zotfile/HEAD/chrome/locale/fr-FR/options.properties -------------------------------------------------------------------------------- /chrome/locale/fr-FR/optionsFolderEditor.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlegewie/zotfile/HEAD/chrome/locale/fr-FR/optionsFolderEditor.dtd -------------------------------------------------------------------------------- /chrome/locale/fr-FR/overlay.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlegewie/zotfile/HEAD/chrome/locale/fr-FR/overlay.dtd -------------------------------------------------------------------------------- /chrome/locale/fr-FR/zotfile.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlegewie/zotfile/HEAD/chrome/locale/fr-FR/zotfile.properties -------------------------------------------------------------------------------- /chrome/locale/it-IT/options-projects.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlegewie/zotfile/HEAD/chrome/locale/it-IT/options-projects.dtd -------------------------------------------------------------------------------- /chrome/locale/it-IT/options.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlegewie/zotfile/HEAD/chrome/locale/it-IT/options.dtd -------------------------------------------------------------------------------- /chrome/locale/it-IT/options.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlegewie/zotfile/HEAD/chrome/locale/it-IT/options.properties -------------------------------------------------------------------------------- /chrome/locale/it-IT/optionsFolderEditor.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlegewie/zotfile/HEAD/chrome/locale/it-IT/optionsFolderEditor.dtd -------------------------------------------------------------------------------- /chrome/locale/it-IT/overlay.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlegewie/zotfile/HEAD/chrome/locale/it-IT/overlay.dtd -------------------------------------------------------------------------------- /chrome/locale/it-IT/zotfile.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlegewie/zotfile/HEAD/chrome/locale/it-IT/zotfile.properties -------------------------------------------------------------------------------- /chrome/skin/default/zotfile/accept.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlegewie/zotfile/HEAD/chrome/skin/default/zotfile/accept.png -------------------------------------------------------------------------------- /chrome/skin/default/zotfile/exclamation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlegewie/zotfile/HEAD/chrome/skin/default/zotfile/exclamation.png -------------------------------------------------------------------------------- /chrome/skin/default/zotfile/information.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlegewie/zotfile/HEAD/chrome/skin/default/zotfile/information.png -------------------------------------------------------------------------------- /defaults/preferences/defaults.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlegewie/zotfile/HEAD/defaults/preferences/defaults.js -------------------------------------------------------------------------------- /docs/CNAME: -------------------------------------------------------------------------------- 1 | zotfile.com -------------------------------------------------------------------------------- /docs/_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlegewie/zotfile/HEAD/docs/_config.yml -------------------------------------------------------------------------------- /docs/_layouts/default.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlegewie/zotfile/HEAD/docs/_layouts/default.html -------------------------------------------------------------------------------- /docs/assets/css/style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlegewie/zotfile/HEAD/docs/assets/css/style.scss -------------------------------------------------------------------------------- /docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlegewie/zotfile/HEAD/docs/index.md -------------------------------------------------------------------------------- /docs/javascripts/highlight.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlegewie/zotfile/HEAD/docs/javascripts/highlight.js -------------------------------------------------------------------------------- /docs/javascripts/scale.fix.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlegewie/zotfile/HEAD/docs/javascripts/scale.fix.js -------------------------------------------------------------------------------- /docs/pics/CollegeWhiz.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlegewie/zotfile/HEAD/docs/pics/CollegeWhiz.png -------------------------------------------------------------------------------- /docs/pics/Socie.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlegewie/zotfile/HEAD/docs/pics/Socie.png -------------------------------------------------------------------------------- /docs/pics/gear.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlegewie/zotfile/HEAD/docs/pics/gear.png -------------------------------------------------------------------------------- /docs/pics/pdf-annotation-full.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlegewie/zotfile/HEAD/docs/pics/pdf-annotation-full.png -------------------------------------------------------------------------------- /docs/pics/zotfile-reader-rename.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlegewie/zotfile/HEAD/docs/pics/zotfile-reader-rename.jpg -------------------------------------------------------------------------------- /docs/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlegewie/zotfile/HEAD/docs/readme.md -------------------------------------------------------------------------------- /docs/stylesheets/pygment_trac.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlegewie/zotfile/HEAD/docs/stylesheets/pygment_trac.css -------------------------------------------------------------------------------- /docs/stylesheets/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlegewie/zotfile/HEAD/docs/stylesheets/styles.css -------------------------------------------------------------------------------- /docs/wildcards-default-min.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlegewie/zotfile/HEAD/docs/wildcards-default-min.json -------------------------------------------------------------------------------- /docs/wildcards-default.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlegewie/zotfile/HEAD/docs/wildcards-default.json -------------------------------------------------------------------------------- /docs/zotfile-update.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlegewie/zotfile/HEAD/docs/zotfile-update.rdf -------------------------------------------------------------------------------- /install.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlegewie/zotfile/HEAD/install.rdf -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlegewie/zotfile/HEAD/readme.md -------------------------------------------------------------------------------- /zotfile-update.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlegewie/zotfile/HEAD/zotfile-update.rdf --------------------------------------------------------------------------------