├── .gitignore ├── LICENSE ├── MANIFEST.in ├── Pipfile ├── README.md ├── bin ├── scibot-bookmarklet ├── scibot-dashboard └── scibot-dbsetup ├── docs ├── architecture.graphml ├── setup.md ├── workflow-paper-id.graphml ├── workflow-rrid.graphml └── workflows.org ├── resources ├── config_files │ └── etc │ │ ├── nginx │ │ ├── nginx.conf │ │ └── scibot.conf │ │ ├── systemd │ │ └── system │ │ │ ├── env.conf │ │ │ ├── scibot-bookmarklet-sync.service │ │ │ ├── scibot-bookmarklet.service │ │ │ ├── scibot-bookmarklet.socket │ │ │ ├── scibot-dashboard.service │ │ │ └── scibot-dashboard.socket │ │ └── tmpfiles.d │ │ └── scibot-bookmarklet.conf ├── rpmbuild │ ├── .gitignore │ ├── SOURCES │ │ ├── env.conf │ │ ├── nginx.conf │ │ ├── scibot-bookmarklet-sync.service │ │ ├── scibot-bookmarklet.conf │ │ ├── scibot-bookmarklet.service │ │ ├── scibot-bookmarklet.socket │ │ └── scibot.conf │ └── SPECS │ │ └── scibot.spec └── scripts │ └── scibot-monkey-button.user.js ├── scibot ├── __init__.py ├── anno.py ├── bookmarklet.py ├── bookmarklet_server.py ├── check.py ├── cli.py ├── config.py ├── dash.py ├── dashboard.py ├── db.py ├── export.py ├── extract.py ├── get_annos.py ├── papers.py ├── release.py ├── release_report.py ├── rridxp.py ├── services.py ├── submit.py ├── sync.py ├── uri.py ├── utils.py └── workflow.py ├── setup.cfg ├── setup.py ├── sql ├── extensions.sql ├── permissions.sql ├── postgres.sql └── schemas.sql ├── templates ├── _formhelpers.html ├── main.html ├── results.html ├── search.html └── table.html └── test ├── __init__.py ├── test_extract.py ├── test_resolver.py ├── test_routes.py ├── test_sync.py └── testing_data.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SciCrunch/scibot/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SciCrunch/scibot/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SciCrunch/scibot/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /Pipfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SciCrunch/scibot/HEAD/Pipfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SciCrunch/scibot/HEAD/README.md -------------------------------------------------------------------------------- /bin/scibot-bookmarklet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SciCrunch/scibot/HEAD/bin/scibot-bookmarklet -------------------------------------------------------------------------------- /bin/scibot-dashboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SciCrunch/scibot/HEAD/bin/scibot-dashboard -------------------------------------------------------------------------------- /bin/scibot-dbsetup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SciCrunch/scibot/HEAD/bin/scibot-dbsetup -------------------------------------------------------------------------------- /docs/architecture.graphml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SciCrunch/scibot/HEAD/docs/architecture.graphml -------------------------------------------------------------------------------- /docs/setup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SciCrunch/scibot/HEAD/docs/setup.md -------------------------------------------------------------------------------- /docs/workflow-paper-id.graphml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SciCrunch/scibot/HEAD/docs/workflow-paper-id.graphml -------------------------------------------------------------------------------- /docs/workflow-rrid.graphml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SciCrunch/scibot/HEAD/docs/workflow-rrid.graphml -------------------------------------------------------------------------------- /docs/workflows.org: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SciCrunch/scibot/HEAD/docs/workflows.org -------------------------------------------------------------------------------- /resources/config_files/etc/nginx/nginx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SciCrunch/scibot/HEAD/resources/config_files/etc/nginx/nginx.conf -------------------------------------------------------------------------------- /resources/config_files/etc/nginx/scibot.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SciCrunch/scibot/HEAD/resources/config_files/etc/nginx/scibot.conf -------------------------------------------------------------------------------- /resources/config_files/etc/systemd/system/env.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SciCrunch/scibot/HEAD/resources/config_files/etc/systemd/system/env.conf -------------------------------------------------------------------------------- /resources/config_files/etc/systemd/system/scibot-bookmarklet-sync.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SciCrunch/scibot/HEAD/resources/config_files/etc/systemd/system/scibot-bookmarklet-sync.service -------------------------------------------------------------------------------- /resources/config_files/etc/systemd/system/scibot-bookmarklet.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SciCrunch/scibot/HEAD/resources/config_files/etc/systemd/system/scibot-bookmarklet.service -------------------------------------------------------------------------------- /resources/config_files/etc/systemd/system/scibot-bookmarklet.socket: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SciCrunch/scibot/HEAD/resources/config_files/etc/systemd/system/scibot-bookmarklet.socket -------------------------------------------------------------------------------- /resources/config_files/etc/systemd/system/scibot-dashboard.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SciCrunch/scibot/HEAD/resources/config_files/etc/systemd/system/scibot-dashboard.service -------------------------------------------------------------------------------- /resources/config_files/etc/systemd/system/scibot-dashboard.socket: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SciCrunch/scibot/HEAD/resources/config_files/etc/systemd/system/scibot-dashboard.socket -------------------------------------------------------------------------------- /resources/config_files/etc/tmpfiles.d/scibot-bookmarklet.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SciCrunch/scibot/HEAD/resources/config_files/etc/tmpfiles.d/scibot-bookmarklet.conf -------------------------------------------------------------------------------- /resources/rpmbuild/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SciCrunch/scibot/HEAD/resources/rpmbuild/.gitignore -------------------------------------------------------------------------------- /resources/rpmbuild/SOURCES/env.conf: -------------------------------------------------------------------------------- 1 | ../../config_files/etc/systemd/system/env.conf -------------------------------------------------------------------------------- /resources/rpmbuild/SOURCES/nginx.conf: -------------------------------------------------------------------------------- 1 | ../../config_files/etc/nginx/nginx.conf -------------------------------------------------------------------------------- /resources/rpmbuild/SOURCES/scibot-bookmarklet-sync.service: -------------------------------------------------------------------------------- 1 | ../../config_files/etc/systemd/system/scibot-bookmarklet-sync.service -------------------------------------------------------------------------------- /resources/rpmbuild/SOURCES/scibot-bookmarklet.conf: -------------------------------------------------------------------------------- 1 | ../../config_files/etc/tmpfiles.d/scibot-bookmarklet.conf -------------------------------------------------------------------------------- /resources/rpmbuild/SOURCES/scibot-bookmarklet.service: -------------------------------------------------------------------------------- 1 | ../../config_files/etc/systemd/system/scibot-bookmarklet.service -------------------------------------------------------------------------------- /resources/rpmbuild/SOURCES/scibot-bookmarklet.socket: -------------------------------------------------------------------------------- 1 | ../../config_files/etc/systemd/system/scibot-bookmarklet.socket -------------------------------------------------------------------------------- /resources/rpmbuild/SOURCES/scibot.conf: -------------------------------------------------------------------------------- 1 | ../../config_files/etc/nginx/scibot.conf -------------------------------------------------------------------------------- /resources/rpmbuild/SPECS/scibot.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SciCrunch/scibot/HEAD/resources/rpmbuild/SPECS/scibot.spec -------------------------------------------------------------------------------- /resources/scripts/scibot-monkey-button.user.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SciCrunch/scibot/HEAD/resources/scripts/scibot-monkey-button.user.js -------------------------------------------------------------------------------- /scibot/__init__.py: -------------------------------------------------------------------------------- 1 | __version__ = '0.0.3' 2 | -------------------------------------------------------------------------------- /scibot/anno.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SciCrunch/scibot/HEAD/scibot/anno.py -------------------------------------------------------------------------------- /scibot/bookmarklet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SciCrunch/scibot/HEAD/scibot/bookmarklet.py -------------------------------------------------------------------------------- /scibot/bookmarklet_server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SciCrunch/scibot/HEAD/scibot/bookmarklet_server.py -------------------------------------------------------------------------------- /scibot/check.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SciCrunch/scibot/HEAD/scibot/check.py -------------------------------------------------------------------------------- /scibot/cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SciCrunch/scibot/HEAD/scibot/cli.py -------------------------------------------------------------------------------- /scibot/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SciCrunch/scibot/HEAD/scibot/config.py -------------------------------------------------------------------------------- /scibot/dash.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SciCrunch/scibot/HEAD/scibot/dash.py -------------------------------------------------------------------------------- /scibot/dashboard.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SciCrunch/scibot/HEAD/scibot/dashboard.py -------------------------------------------------------------------------------- /scibot/db.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SciCrunch/scibot/HEAD/scibot/db.py -------------------------------------------------------------------------------- /scibot/export.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SciCrunch/scibot/HEAD/scibot/export.py -------------------------------------------------------------------------------- /scibot/extract.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SciCrunch/scibot/HEAD/scibot/extract.py -------------------------------------------------------------------------------- /scibot/get_annos.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SciCrunch/scibot/HEAD/scibot/get_annos.py -------------------------------------------------------------------------------- /scibot/papers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SciCrunch/scibot/HEAD/scibot/papers.py -------------------------------------------------------------------------------- /scibot/release.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SciCrunch/scibot/HEAD/scibot/release.py -------------------------------------------------------------------------------- /scibot/release_report.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SciCrunch/scibot/HEAD/scibot/release_report.py -------------------------------------------------------------------------------- /scibot/rridxp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SciCrunch/scibot/HEAD/scibot/rridxp.py -------------------------------------------------------------------------------- /scibot/services.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SciCrunch/scibot/HEAD/scibot/services.py -------------------------------------------------------------------------------- /scibot/submit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SciCrunch/scibot/HEAD/scibot/submit.py -------------------------------------------------------------------------------- /scibot/sync.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SciCrunch/scibot/HEAD/scibot/sync.py -------------------------------------------------------------------------------- /scibot/uri.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SciCrunch/scibot/HEAD/scibot/uri.py -------------------------------------------------------------------------------- /scibot/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SciCrunch/scibot/HEAD/scibot/utils.py -------------------------------------------------------------------------------- /scibot/workflow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SciCrunch/scibot/HEAD/scibot/workflow.py -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SciCrunch/scibot/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SciCrunch/scibot/HEAD/setup.py -------------------------------------------------------------------------------- /sql/extensions.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SciCrunch/scibot/HEAD/sql/extensions.sql -------------------------------------------------------------------------------- /sql/permissions.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SciCrunch/scibot/HEAD/sql/permissions.sql -------------------------------------------------------------------------------- /sql/postgres.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SciCrunch/scibot/HEAD/sql/postgres.sql -------------------------------------------------------------------------------- /sql/schemas.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SciCrunch/scibot/HEAD/sql/schemas.sql -------------------------------------------------------------------------------- /templates/_formhelpers.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SciCrunch/scibot/HEAD/templates/_formhelpers.html -------------------------------------------------------------------------------- /templates/main.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SciCrunch/scibot/HEAD/templates/main.html -------------------------------------------------------------------------------- /templates/results.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SciCrunch/scibot/HEAD/templates/results.html -------------------------------------------------------------------------------- /templates/search.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SciCrunch/scibot/HEAD/templates/search.html -------------------------------------------------------------------------------- /templates/table.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SciCrunch/scibot/HEAD/templates/table.html -------------------------------------------------------------------------------- /test/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/test_extract.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SciCrunch/scibot/HEAD/test/test_extract.py -------------------------------------------------------------------------------- /test/test_resolver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SciCrunch/scibot/HEAD/test/test_resolver.py -------------------------------------------------------------------------------- /test/test_routes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SciCrunch/scibot/HEAD/test/test_routes.py -------------------------------------------------------------------------------- /test/test_sync.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SciCrunch/scibot/HEAD/test/test_sync.py -------------------------------------------------------------------------------- /test/testing_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SciCrunch/scibot/HEAD/test/testing_data.py --------------------------------------------------------------------------------