├── .art └── settings.toml ├── .gitattributes ├── LICENSE-APACHE ├── LICENSE-MIT ├── README.md ├── annotation_abuse ├── __init__.py ├── asts.py └── notify.py ├── design ├── REQ-asts.md ├── REQ-notify.md ├── REQ-purpose.md ├── SPC-asts.md └── SPC-notify.md ├── pyproject.lock ├── pyproject.toml ├── static ├── ace.min.css ├── artifact-frontend.js ├── artifact-frontend.wasm ├── commonmark.min.js ├── docs │ ├── .nojekyll │ ├── Addendum.html │ ├── ArtifactIntro.html │ ├── BestPractices.html │ ├── CheatSheet.html │ ├── CleaningUp.html │ ├── Design.html │ ├── DetailedDesign.html │ ├── ExampleFile.html │ ├── ExportingHtml.html │ ├── FAQ.html │ ├── Feedback.html │ ├── Finishing.html │ ├── FontAwesome │ │ ├── css │ │ │ └── font-awesome.css │ │ └── fonts │ │ │ ├── FontAwesome.ttf │ │ │ ├── fontawesome-webfont.eot │ │ │ ├── fontawesome-webfont.svg │ │ │ ├── fontawesome-webfont.ttf │ │ │ ├── fontawesome-webfont.woff │ │ │ └── fontawesome-webfont.woff2 │ ├── Implementation.html │ ├── Installation.html │ ├── Introduction.html │ ├── License.html │ ├── Purpose.html │ ├── RunningTests.html │ ├── SPECIFICATION.html │ ├── SimpleQuality.html │ ├── StartingProject.html │ ├── TODO.html │ ├── Tools.html │ ├── Vocabulary.html │ ├── ayu-highlight.css │ ├── book.js │ ├── clipboard.min.js │ ├── css │ │ ├── chrome.css │ │ ├── general.css │ │ ├── print.css │ │ └── variables.css │ ├── data │ │ ├── artifact-thumb.png │ │ ├── attribution │ │ │ └── b0rk-design-documents.jpg-large │ │ ├── example-hello.png │ │ ├── quickstart │ │ │ ├── images.xcf │ │ │ ├── text-REQ-purpose.png │ │ │ ├── text-req-parts.png │ │ │ ├── web-create-btn.png │ │ │ ├── web-create.png │ │ │ ├── web-edit-btn.png │ │ │ ├── web-edit.png │ │ │ ├── web-implemented-link.png │ │ │ ├── web-save-btn.png │ │ │ ├── web-select.png │ │ │ ├── web-source-code.png │ │ │ └── web-spc-world-done.png │ │ └── web-ui.png │ ├── elasticlunr.min.js │ ├── examples │ │ ├── part1 │ │ │ ├── ace.min.css │ │ │ ├── artifact-frontend.js │ │ │ ├── artifact-frontend.wasm │ │ │ ├── commonmark.min.js │ │ │ ├── fontawesome-all.js │ │ │ ├── index.html │ │ │ ├── initial.json │ │ │ ├── styles.css │ │ │ └── viz-lite.js │ │ └── part2 │ │ │ ├── ace.min.css │ │ │ ├── artifact-frontend.js │ │ │ ├── artifact-frontend.wasm │ │ │ ├── commonmark.min.js │ │ │ ├── fontawesome-all.js │ │ │ ├── index.html │ │ │ ├── initial.json │ │ │ ├── styles.css │ │ │ └── viz-lite.js │ ├── favicon.png │ ├── highlight.css │ ├── highlight.js │ ├── index.html │ ├── logo │ │ ├── logo-logo.png │ │ ├── logo-medium.png │ │ ├── logo-small.png │ │ └── logo.png │ ├── mark.min.js │ ├── print.html │ ├── searcher.js │ ├── searchindex.js │ ├── searchindex.json │ └── tomorrow-night.css ├── fontawesome-all.js ├── index.html ├── initial.json ├── styles.css └── viz-lite.js └── tests ├── __init__.py ├── test_asts.py └── test_notify.py /.art/settings.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmitchell/annotation-abuse/HEAD/.art/settings.toml -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmitchell/annotation-abuse/HEAD/.gitattributes -------------------------------------------------------------------------------- /LICENSE-APACHE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmitchell/annotation-abuse/HEAD/LICENSE-APACHE -------------------------------------------------------------------------------- /LICENSE-MIT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmitchell/annotation-abuse/HEAD/LICENSE-MIT -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmitchell/annotation-abuse/HEAD/README.md -------------------------------------------------------------------------------- /annotation_abuse/__init__.py: -------------------------------------------------------------------------------- 1 | __version__ = "0.1.0" 2 | -------------------------------------------------------------------------------- /annotation_abuse/asts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmitchell/annotation-abuse/HEAD/annotation_abuse/asts.py -------------------------------------------------------------------------------- /annotation_abuse/notify.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmitchell/annotation-abuse/HEAD/annotation_abuse/notify.py -------------------------------------------------------------------------------- /design/REQ-asts.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmitchell/annotation-abuse/HEAD/design/REQ-asts.md -------------------------------------------------------------------------------- /design/REQ-notify.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmitchell/annotation-abuse/HEAD/design/REQ-notify.md -------------------------------------------------------------------------------- /design/REQ-purpose.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmitchell/annotation-abuse/HEAD/design/REQ-purpose.md -------------------------------------------------------------------------------- /design/SPC-asts.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmitchell/annotation-abuse/HEAD/design/SPC-asts.md -------------------------------------------------------------------------------- /design/SPC-notify.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmitchell/annotation-abuse/HEAD/design/SPC-notify.md -------------------------------------------------------------------------------- /pyproject.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmitchell/annotation-abuse/HEAD/pyproject.lock -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmitchell/annotation-abuse/HEAD/pyproject.toml -------------------------------------------------------------------------------- /static/ace.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmitchell/annotation-abuse/HEAD/static/ace.min.css -------------------------------------------------------------------------------- /static/artifact-frontend.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmitchell/annotation-abuse/HEAD/static/artifact-frontend.js -------------------------------------------------------------------------------- /static/artifact-frontend.wasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmitchell/annotation-abuse/HEAD/static/artifact-frontend.wasm -------------------------------------------------------------------------------- /static/commonmark.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmitchell/annotation-abuse/HEAD/static/commonmark.min.js -------------------------------------------------------------------------------- /static/docs/.nojekyll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmitchell/annotation-abuse/HEAD/static/docs/.nojekyll -------------------------------------------------------------------------------- /static/docs/Addendum.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmitchell/annotation-abuse/HEAD/static/docs/Addendum.html -------------------------------------------------------------------------------- /static/docs/ArtifactIntro.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmitchell/annotation-abuse/HEAD/static/docs/ArtifactIntro.html -------------------------------------------------------------------------------- /static/docs/BestPractices.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmitchell/annotation-abuse/HEAD/static/docs/BestPractices.html -------------------------------------------------------------------------------- /static/docs/CheatSheet.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmitchell/annotation-abuse/HEAD/static/docs/CheatSheet.html -------------------------------------------------------------------------------- /static/docs/CleaningUp.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmitchell/annotation-abuse/HEAD/static/docs/CleaningUp.html -------------------------------------------------------------------------------- /static/docs/Design.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmitchell/annotation-abuse/HEAD/static/docs/Design.html -------------------------------------------------------------------------------- /static/docs/DetailedDesign.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmitchell/annotation-abuse/HEAD/static/docs/DetailedDesign.html -------------------------------------------------------------------------------- /static/docs/ExampleFile.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmitchell/annotation-abuse/HEAD/static/docs/ExampleFile.html -------------------------------------------------------------------------------- /static/docs/ExportingHtml.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmitchell/annotation-abuse/HEAD/static/docs/ExportingHtml.html -------------------------------------------------------------------------------- /static/docs/FAQ.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmitchell/annotation-abuse/HEAD/static/docs/FAQ.html -------------------------------------------------------------------------------- /static/docs/Feedback.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmitchell/annotation-abuse/HEAD/static/docs/Feedback.html -------------------------------------------------------------------------------- /static/docs/Finishing.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmitchell/annotation-abuse/HEAD/static/docs/Finishing.html -------------------------------------------------------------------------------- /static/docs/FontAwesome/css/font-awesome.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmitchell/annotation-abuse/HEAD/static/docs/FontAwesome/css/font-awesome.css -------------------------------------------------------------------------------- /static/docs/FontAwesome/fonts/FontAwesome.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmitchell/annotation-abuse/HEAD/static/docs/FontAwesome/fonts/FontAwesome.ttf -------------------------------------------------------------------------------- /static/docs/FontAwesome/fonts/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmitchell/annotation-abuse/HEAD/static/docs/FontAwesome/fonts/fontawesome-webfont.eot -------------------------------------------------------------------------------- /static/docs/FontAwesome/fonts/fontawesome-webfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmitchell/annotation-abuse/HEAD/static/docs/FontAwesome/fonts/fontawesome-webfont.svg -------------------------------------------------------------------------------- /static/docs/FontAwesome/fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmitchell/annotation-abuse/HEAD/static/docs/FontAwesome/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /static/docs/FontAwesome/fonts/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmitchell/annotation-abuse/HEAD/static/docs/FontAwesome/fonts/fontawesome-webfont.woff -------------------------------------------------------------------------------- /static/docs/FontAwesome/fonts/fontawesome-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmitchell/annotation-abuse/HEAD/static/docs/FontAwesome/fonts/fontawesome-webfont.woff2 -------------------------------------------------------------------------------- /static/docs/Implementation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmitchell/annotation-abuse/HEAD/static/docs/Implementation.html -------------------------------------------------------------------------------- /static/docs/Installation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmitchell/annotation-abuse/HEAD/static/docs/Installation.html -------------------------------------------------------------------------------- /static/docs/Introduction.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmitchell/annotation-abuse/HEAD/static/docs/Introduction.html -------------------------------------------------------------------------------- /static/docs/License.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmitchell/annotation-abuse/HEAD/static/docs/License.html -------------------------------------------------------------------------------- /static/docs/Purpose.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmitchell/annotation-abuse/HEAD/static/docs/Purpose.html -------------------------------------------------------------------------------- /static/docs/RunningTests.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmitchell/annotation-abuse/HEAD/static/docs/RunningTests.html -------------------------------------------------------------------------------- /static/docs/SPECIFICATION.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmitchell/annotation-abuse/HEAD/static/docs/SPECIFICATION.html -------------------------------------------------------------------------------- /static/docs/SimpleQuality.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmitchell/annotation-abuse/HEAD/static/docs/SimpleQuality.html -------------------------------------------------------------------------------- /static/docs/StartingProject.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmitchell/annotation-abuse/HEAD/static/docs/StartingProject.html -------------------------------------------------------------------------------- /static/docs/TODO.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmitchell/annotation-abuse/HEAD/static/docs/TODO.html -------------------------------------------------------------------------------- /static/docs/Tools.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmitchell/annotation-abuse/HEAD/static/docs/Tools.html -------------------------------------------------------------------------------- /static/docs/Vocabulary.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmitchell/annotation-abuse/HEAD/static/docs/Vocabulary.html -------------------------------------------------------------------------------- /static/docs/ayu-highlight.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmitchell/annotation-abuse/HEAD/static/docs/ayu-highlight.css -------------------------------------------------------------------------------- /static/docs/book.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmitchell/annotation-abuse/HEAD/static/docs/book.js -------------------------------------------------------------------------------- /static/docs/clipboard.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmitchell/annotation-abuse/HEAD/static/docs/clipboard.min.js -------------------------------------------------------------------------------- /static/docs/css/chrome.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmitchell/annotation-abuse/HEAD/static/docs/css/chrome.css -------------------------------------------------------------------------------- /static/docs/css/general.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmitchell/annotation-abuse/HEAD/static/docs/css/general.css -------------------------------------------------------------------------------- /static/docs/css/print.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmitchell/annotation-abuse/HEAD/static/docs/css/print.css -------------------------------------------------------------------------------- /static/docs/css/variables.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmitchell/annotation-abuse/HEAD/static/docs/css/variables.css -------------------------------------------------------------------------------- /static/docs/data/artifact-thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmitchell/annotation-abuse/HEAD/static/docs/data/artifact-thumb.png -------------------------------------------------------------------------------- /static/docs/data/attribution/b0rk-design-documents.jpg-large: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmitchell/annotation-abuse/HEAD/static/docs/data/attribution/b0rk-design-documents.jpg-large -------------------------------------------------------------------------------- /static/docs/data/example-hello.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmitchell/annotation-abuse/HEAD/static/docs/data/example-hello.png -------------------------------------------------------------------------------- /static/docs/data/quickstart/images.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmitchell/annotation-abuse/HEAD/static/docs/data/quickstart/images.xcf -------------------------------------------------------------------------------- /static/docs/data/quickstart/text-REQ-purpose.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmitchell/annotation-abuse/HEAD/static/docs/data/quickstart/text-REQ-purpose.png -------------------------------------------------------------------------------- /static/docs/data/quickstart/text-req-parts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmitchell/annotation-abuse/HEAD/static/docs/data/quickstart/text-req-parts.png -------------------------------------------------------------------------------- /static/docs/data/quickstart/web-create-btn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmitchell/annotation-abuse/HEAD/static/docs/data/quickstart/web-create-btn.png -------------------------------------------------------------------------------- /static/docs/data/quickstart/web-create.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmitchell/annotation-abuse/HEAD/static/docs/data/quickstart/web-create.png -------------------------------------------------------------------------------- /static/docs/data/quickstart/web-edit-btn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmitchell/annotation-abuse/HEAD/static/docs/data/quickstart/web-edit-btn.png -------------------------------------------------------------------------------- /static/docs/data/quickstart/web-edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmitchell/annotation-abuse/HEAD/static/docs/data/quickstart/web-edit.png -------------------------------------------------------------------------------- /static/docs/data/quickstart/web-implemented-link.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmitchell/annotation-abuse/HEAD/static/docs/data/quickstart/web-implemented-link.png -------------------------------------------------------------------------------- /static/docs/data/quickstart/web-save-btn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmitchell/annotation-abuse/HEAD/static/docs/data/quickstart/web-save-btn.png -------------------------------------------------------------------------------- /static/docs/data/quickstart/web-select.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmitchell/annotation-abuse/HEAD/static/docs/data/quickstart/web-select.png -------------------------------------------------------------------------------- /static/docs/data/quickstart/web-source-code.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmitchell/annotation-abuse/HEAD/static/docs/data/quickstart/web-source-code.png -------------------------------------------------------------------------------- /static/docs/data/quickstart/web-spc-world-done.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmitchell/annotation-abuse/HEAD/static/docs/data/quickstart/web-spc-world-done.png -------------------------------------------------------------------------------- /static/docs/data/web-ui.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmitchell/annotation-abuse/HEAD/static/docs/data/web-ui.png -------------------------------------------------------------------------------- /static/docs/elasticlunr.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmitchell/annotation-abuse/HEAD/static/docs/elasticlunr.min.js -------------------------------------------------------------------------------- /static/docs/examples/part1/ace.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmitchell/annotation-abuse/HEAD/static/docs/examples/part1/ace.min.css -------------------------------------------------------------------------------- /static/docs/examples/part1/artifact-frontend.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmitchell/annotation-abuse/HEAD/static/docs/examples/part1/artifact-frontend.js -------------------------------------------------------------------------------- /static/docs/examples/part1/artifact-frontend.wasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmitchell/annotation-abuse/HEAD/static/docs/examples/part1/artifact-frontend.wasm -------------------------------------------------------------------------------- /static/docs/examples/part1/commonmark.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmitchell/annotation-abuse/HEAD/static/docs/examples/part1/commonmark.min.js -------------------------------------------------------------------------------- /static/docs/examples/part1/fontawesome-all.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmitchell/annotation-abuse/HEAD/static/docs/examples/part1/fontawesome-all.js -------------------------------------------------------------------------------- /static/docs/examples/part1/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmitchell/annotation-abuse/HEAD/static/docs/examples/part1/index.html -------------------------------------------------------------------------------- /static/docs/examples/part1/initial.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmitchell/annotation-abuse/HEAD/static/docs/examples/part1/initial.json -------------------------------------------------------------------------------- /static/docs/examples/part1/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmitchell/annotation-abuse/HEAD/static/docs/examples/part1/styles.css -------------------------------------------------------------------------------- /static/docs/examples/part1/viz-lite.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmitchell/annotation-abuse/HEAD/static/docs/examples/part1/viz-lite.js -------------------------------------------------------------------------------- /static/docs/examples/part2/ace.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmitchell/annotation-abuse/HEAD/static/docs/examples/part2/ace.min.css -------------------------------------------------------------------------------- /static/docs/examples/part2/artifact-frontend.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmitchell/annotation-abuse/HEAD/static/docs/examples/part2/artifact-frontend.js -------------------------------------------------------------------------------- /static/docs/examples/part2/artifact-frontend.wasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmitchell/annotation-abuse/HEAD/static/docs/examples/part2/artifact-frontend.wasm -------------------------------------------------------------------------------- /static/docs/examples/part2/commonmark.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmitchell/annotation-abuse/HEAD/static/docs/examples/part2/commonmark.min.js -------------------------------------------------------------------------------- /static/docs/examples/part2/fontawesome-all.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmitchell/annotation-abuse/HEAD/static/docs/examples/part2/fontawesome-all.js -------------------------------------------------------------------------------- /static/docs/examples/part2/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmitchell/annotation-abuse/HEAD/static/docs/examples/part2/index.html -------------------------------------------------------------------------------- /static/docs/examples/part2/initial.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmitchell/annotation-abuse/HEAD/static/docs/examples/part2/initial.json -------------------------------------------------------------------------------- /static/docs/examples/part2/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmitchell/annotation-abuse/HEAD/static/docs/examples/part2/styles.css -------------------------------------------------------------------------------- /static/docs/examples/part2/viz-lite.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmitchell/annotation-abuse/HEAD/static/docs/examples/part2/viz-lite.js -------------------------------------------------------------------------------- /static/docs/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmitchell/annotation-abuse/HEAD/static/docs/favicon.png -------------------------------------------------------------------------------- /static/docs/highlight.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmitchell/annotation-abuse/HEAD/static/docs/highlight.css -------------------------------------------------------------------------------- /static/docs/highlight.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmitchell/annotation-abuse/HEAD/static/docs/highlight.js -------------------------------------------------------------------------------- /static/docs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmitchell/annotation-abuse/HEAD/static/docs/index.html -------------------------------------------------------------------------------- /static/docs/logo/logo-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmitchell/annotation-abuse/HEAD/static/docs/logo/logo-logo.png -------------------------------------------------------------------------------- /static/docs/logo/logo-medium.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmitchell/annotation-abuse/HEAD/static/docs/logo/logo-medium.png -------------------------------------------------------------------------------- /static/docs/logo/logo-small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmitchell/annotation-abuse/HEAD/static/docs/logo/logo-small.png -------------------------------------------------------------------------------- /static/docs/logo/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmitchell/annotation-abuse/HEAD/static/docs/logo/logo.png -------------------------------------------------------------------------------- /static/docs/mark.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmitchell/annotation-abuse/HEAD/static/docs/mark.min.js -------------------------------------------------------------------------------- /static/docs/print.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmitchell/annotation-abuse/HEAD/static/docs/print.html -------------------------------------------------------------------------------- /static/docs/searcher.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmitchell/annotation-abuse/HEAD/static/docs/searcher.js -------------------------------------------------------------------------------- /static/docs/searchindex.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmitchell/annotation-abuse/HEAD/static/docs/searchindex.js -------------------------------------------------------------------------------- /static/docs/searchindex.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmitchell/annotation-abuse/HEAD/static/docs/searchindex.json -------------------------------------------------------------------------------- /static/docs/tomorrow-night.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmitchell/annotation-abuse/HEAD/static/docs/tomorrow-night.css -------------------------------------------------------------------------------- /static/fontawesome-all.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmitchell/annotation-abuse/HEAD/static/fontawesome-all.js -------------------------------------------------------------------------------- /static/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmitchell/annotation-abuse/HEAD/static/index.html -------------------------------------------------------------------------------- /static/initial.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmitchell/annotation-abuse/HEAD/static/initial.json -------------------------------------------------------------------------------- /static/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmitchell/annotation-abuse/HEAD/static/styles.css -------------------------------------------------------------------------------- /static/viz-lite.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmitchell/annotation-abuse/HEAD/static/viz-lite.js -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test_asts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmitchell/annotation-abuse/HEAD/tests/test_asts.py -------------------------------------------------------------------------------- /tests/test_notify.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmitchell/annotation-abuse/HEAD/tests/test_notify.py --------------------------------------------------------------------------------