├── .config ├── .gitignore ├── .secrets ├── .vscode ├── extensions.json └── settings.json ├── CHANGELOG.md ├── CONTRIBUTING.md ├── LICENSE ├── Makefile ├── README.md ├── azure-pipelines.yml ├── broker ├── Dockerfile ├── Makefile └── README.md ├── cache ├── Dockerfile └── Makefile ├── clients ├── .gitignore ├── Makefile ├── python │ ├── .gitignore │ ├── .openapi-generator-config.yaml │ ├── .openapi-generator-ignore │ ├── README.md │ ├── requirements-dev.txt │ ├── requirements.txt │ ├── setup.cfg │ ├── templates │ │ └── api_doc_example.mustache │ ├── test │ │ ├── __init__.py │ │ ├── test_account_create.py │ │ ├── test_account_list.py │ │ ├── test_account_retrieve.py │ │ ├── test_account_team.py │ │ ├── test_account_update.py │ │ ├── test_account_user.py │ │ ├── test_accounts_api.py │ │ ├── test_file.py │ │ ├── test_file_list.py │ │ ├── test_inline_object.py │ │ ├── test_inline_object1.py │ │ ├── test_inline_object2.py │ │ ├── test_inline_object3.py │ │ ├── test_inline_object4.py │ │ ├── test_inline_object5.py │ │ ├── test_inline_response200.py │ │ ├── test_inline_response2001.py │ │ ├── test_inline_response20010.py │ │ ├── test_inline_response20011.py │ │ ├── test_inline_response20011_results.py │ │ ├── test_inline_response20012.py │ │ ├── test_inline_response20013.py │ │ ├── test_inline_response20014.py │ │ ├── test_inline_response20015.py │ │ ├── test_inline_response2002.py │ │ ├── test_inline_response2003.py │ │ ├── test_inline_response2004.py │ │ ├── test_inline_response2005.py │ │ ├── test_inline_response2006.py │ │ ├── test_inline_response2007.py │ │ ├── test_inline_response2008.py │ │ ├── test_inline_response2009.py │ │ ├── test_inline_response201.py │ │ ├── test_invite.py │ │ ├── test_invites_api.py │ │ ├── test_job.py │ │ ├── test_jobs_api.py │ │ ├── test_me.py │ │ ├── test_project.py │ │ ├── test_project_agent.py │ │ ├── test_project_agent_update.py │ │ ├── test_project_create.py │ │ ├── test_project_list.py │ │ ├── test_project_update.py │ │ ├── test_projects_api.py │ │ ├── test_queue.py │ │ ├── test_snapshot.py │ │ ├── test_source.py │ │ ├── test_status_api.py │ │ ├── test_status_response.py │ │ ├── test_token.py │ │ ├── test_tokens_api.py │ │ ├── test_user.py │ │ ├── test_users_api.py │ │ ├── test_worker.py │ │ ├── test_worker_heartbeat.py │ │ ├── test_workers_api.py │ │ └── test_zone.py │ └── tox.ini └── typescript │ ├── .gitignore │ ├── .openapi-generator-config.yaml │ ├── .openapi-generator-ignore │ ├── README.md │ ├── __tests__ │ ├── accounts.test.ts │ ├── config.ts │ ├── projects.test.ts │ ├── setup.ts │ └── tokens.test.ts │ ├── package-lock.json │ ├── package.json │ ├── templates │ └── licenseInfo.mustache │ ├── tsconfig.json │ └── tsconfig.prod.json ├── database ├── Dockerfile └── Makefile ├── docker-compose.yaml ├── manager ├── .babelrc ├── .coveragerc ├── .dockerignore ├── .flake8 ├── .gitignore ├── .isort.cfg ├── .nvmrc ├── .pydocstyle.ini ├── Dockerfile ├── Makefile ├── README.md ├── accounts │ ├── __init__.py │ ├── admin.py │ ├── api │ │ ├── serializers.py │ │ ├── serializers_account_image.py │ │ ├── urls.py │ │ └── views.py │ ├── apps.py │ ├── migrations │ │ ├── 0001_initial.py │ │ ├── 0002_models.py │ │ ├── 0003_auto_20200720_2208.py │ │ ├── 0004_auto_20200721_0252.py │ │ ├── 0005_accounttier_file_downloads_month.py │ │ ├── 0006_auto_20200827_2212.py │ │ ├── 0007_accounttier_dois_created_month.py │ │ ├── 0008_auto_20201202_0349.py │ │ ├── 0009_auto_20210131_2250.py │ │ ├── 0010_auto_20210203_2054.py │ │ ├── 0011_auto_20210210_2340.py │ │ ├── 0012_auto_20210329_0606.py │ │ └── __init__.py │ ├── models.py │ ├── paths.py │ ├── quotas.py │ ├── tasks.py │ ├── templates │ │ └── accounts │ │ │ ├── _admin_form.html │ │ │ ├── _create_form.html │ │ │ ├── _list_orgs_result.html │ │ │ ├── _plans_faq.html │ │ │ ├── _plans_table.html │ │ │ ├── _plans_table_item.html │ │ │ ├── _profile_fields.html │ │ │ ├── _profile_form.html │ │ │ ├── _project_search.html │ │ │ ├── _publishing_extras.html │ │ │ ├── _publishing_form.html │ │ │ ├── _sidebar_settings.html │ │ │ ├── _sidebar_start.html │ │ │ ├── admin │ │ │ └── accounts_downgrade_confirm.html │ │ │ ├── base.html │ │ │ ├── content │ │ │ ├── 404_invalid_account.html │ │ │ ├── 404_invalid_file.html │ │ │ ├── 404_invalid_snapshot.html │ │ │ ├── 404_no_snapshots.html │ │ │ ├── 404_unavailable_project.html │ │ │ └── base.html │ │ │ ├── create.html │ │ │ ├── list_orgs.html │ │ │ ├── list_users.html │ │ │ ├── plan.html │ │ │ ├── plans.html │ │ │ ├── profile.html │ │ │ ├── publishing.html │ │ │ ├── quota_exceeded.html │ │ │ ├── retrieve.html │ │ │ ├── teams │ │ │ ├── _create_details.html │ │ │ ├── _destroy.html │ │ │ ├── _members.html │ │ │ ├── _update_details.html │ │ │ ├── create.html │ │ │ ├── list.html │ │ │ ├── retrieve.html │ │ │ └── update.html │ │ │ └── users │ │ │ ├── _account_role_help_tip.html │ │ │ ├── _list.html │ │ │ └── update.html │ ├── ui │ │ ├── forms.py │ │ ├── urls.py │ │ └── views │ │ │ ├── accounts.py │ │ │ ├── content.py │ │ │ ├── content_tests.py │ │ │ ├── teams.py │ │ │ └── users.py │ └── webhooks.py ├── assistant.Dockerfile ├── dois │ ├── __init__.py │ ├── admin.py │ ├── api │ │ ├── __init__.py │ │ ├── serializers.py │ │ ├── urls.py │ │ ├── views.py │ │ └── views_tests.py │ ├── apps.py │ ├── migrations │ │ ├── 0001_initial.py │ │ └── __init__.py │ ├── models.py │ ├── models_tests.py │ └── urls.py ├── generate.js ├── jobs │ ├── __init__.py │ ├── admin.py │ ├── api │ │ ├── __init__.py │ │ ├── helpers.py │ │ ├── serializers.py │ │ ├── urls.py │ │ ├── views.py │ │ └── views_tests.py │ ├── apps.py │ ├── jobs.py │ ├── jobs_tests.py │ ├── migrations │ │ ├── 0001_initial.py │ │ ├── 0002_auto_20200708_2203.py │ │ ├── 0003_auto_20200723_0219.py │ │ ├── 0004_job_key.py │ │ ├── 0005_auto_20200804_0354.py │ │ ├── 0006_auto_20200806_0605.py │ │ ├── 0007_auto_20200903_0611.py │ │ ├── 0008_auto_20201007_0337.py │ │ ├── 0009_auto_20201030_0132.py │ │ ├── 0010_auto_20201112_2256.py │ │ ├── 0011_auto_20201127_0625.py │ │ ├── 0012_auto_20210209_2225.py │ │ ├── 0013_auto_20210214_2131.py │ │ ├── 0014_job_secrets.py │ │ └── __init__.py │ ├── models.py │ ├── models_tests.py │ └── templates │ │ ├── job_detail.html │ │ ├── job_list_job.html │ │ └── jobs │ │ └── admin │ │ └── jobs_cancel_confirm.html ├── manage.py ├── manager │ ├── __init__.py │ ├── admin.py │ ├── api │ │ ├── authentication.py │ │ ├── exceptions.py │ │ ├── handlers.py │ │ ├── helpers.py │ │ ├── negotiation.py │ │ ├── routers.py │ │ ├── urls.py │ │ ├── validators.py │ │ └── views │ │ │ ├── docs.md │ │ │ ├── docs.py │ │ │ ├── emails.py │ │ │ ├── status.py │ │ │ └── status_tests.py │ ├── asgi.py │ ├── assistant.py │ ├── components.py │ ├── context_processors.py │ ├── helpers.py │ ├── middleware.py │ ├── nodes.py │ ├── paths.py │ ├── settings.py │ ├── settings_tests.py │ ├── signals.py │ ├── static │ │ ├── img │ │ │ ├── close-circle-line.svg │ │ │ ├── dead-document.svg │ │ │ ├── elife-full-color-horizontal-2020.svg │ │ │ ├── elife-icon.png │ │ │ ├── favicon.png │ │ │ ├── github-logo.png │ │ │ ├── google-docs-logo.png │ │ │ ├── google-drive-logo.png │ │ │ ├── google-sheets-logo.png │ │ │ ├── illustrations │ │ │ │ ├── project.svg │ │ │ │ └── wonder.svg │ │ │ ├── plos-logo-color-blue.svg │ │ │ ├── stencilaIcon.svg │ │ │ └── stencilaLogo.svg │ │ ├── js │ │ │ └── src │ │ │ │ ├── buttons.js │ │ │ │ ├── dropdowns.js │ │ │ │ ├── errorHandler.js │ │ │ │ ├── htmx-extensions.js │ │ │ │ ├── index.js │ │ │ │ ├── libs.js │ │ │ │ ├── modals.js │ │ │ │ └── readMore.js │ │ └── sass │ │ │ ├── accounts │ │ │ ├── index.scss │ │ │ └── teams │ │ │ │ └── index.scss │ │ │ ├── projects │ │ │ ├── index.scss │ │ │ ├── reviews.scss │ │ │ └── sources │ │ │ │ └── index.scss │ │ │ └── styles.scss │ ├── storage.py │ ├── templates │ │ ├── 403.html │ │ ├── 404.html │ │ ├── 500.html │ │ ├── _help_tip.html │ │ ├── _page_action_bar.html │ │ ├── _pagination.html │ │ ├── admin │ │ │ ├── base_site.html │ │ │ └── input_filter.html │ │ ├── api │ │ │ ├── _create_redirect.html │ │ │ └── _default.html │ │ ├── base.html │ │ ├── base_centered.html │ │ ├── base_full.html │ │ ├── forms │ │ │ ├── _submit.html │ │ │ ├── errors.html │ │ │ ├── field.html │ │ │ └── form.html │ │ ├── nodes │ │ │ ├── CodeBlock.html │ │ │ ├── Delete.html │ │ │ ├── Emphasis.html │ │ │ ├── Heading.html │ │ │ ├── Link.html │ │ │ ├── List.html │ │ │ ├── ListItem.html │ │ │ ├── Paragraph.html │ │ │ ├── Quote.html │ │ │ ├── QuoteBlock.html │ │ │ ├── Strong.html │ │ │ ├── Subscript.html │ │ │ ├── Superscript.html │ │ │ └── content.html │ │ ├── serializers │ │ │ ├── _dump_errors.html │ │ │ ├── _field.html │ │ │ ├── _field_control.html │ │ │ ├── _field_label.html │ │ │ └── _serializer.html │ │ └── swagger.html │ ├── templatetags │ │ ├── __init__.py │ │ └── stencila.py │ ├── testing.py │ ├── themes.py │ ├── ui │ │ └── views.py │ ├── urls.py │ ├── urls_tests.py │ ├── version.py │ └── wsgi.py ├── mypy.ini ├── package-lock.json ├── package.json ├── postcss.config.js ├── projects │ ├── __init__.py │ ├── admin.py │ ├── api │ │ ├── serializers.py │ │ ├── urls.py │ │ └── views │ │ │ ├── __init__.py │ │ │ ├── files.py │ │ │ ├── nodes.py │ │ │ ├── nodes_tests.py │ │ │ ├── projects.py │ │ │ ├── projects_tests.py │ │ │ ├── providers.py │ │ │ ├── reviews.py │ │ │ ├── snapshots.py │ │ │ └── sources.py │ ├── apps.py │ ├── migrations │ │ ├── 0001_initial.py │ │ ├── 0002_auto_20200710_0310.py │ │ ├── 0003_auto_20200712_2322.py │ │ ├── 0004_add_project_temporary.py │ │ ├── 0005_auto_20200720_0116.py │ │ ├── 0006_auto_20200722_0510.py │ │ ├── 0007_auto_20200722_2249.py │ │ ├── 0008_auto_20200727_0732.py │ │ ├── 0009_auto_20200727_2346.py │ │ ├── 0010_auto_20200804_0354.py │ │ ├── 0011_auto_20200806_0605.py │ │ ├── 0012_auto_20200807_1934.py │ │ ├── 0013_auto_20200827_2212.py │ │ ├── 0014_node.py │ │ ├── 0015_auto_20201007_0337.py │ │ ├── 0016_auto_20201016_0326.py │ │ ├── 0017_auto_20201019_2343.py │ │ ├── 0018_auto_20201023_0530.py │ │ ├── 0019_googlesheetssource.py │ │ ├── 0020_auto_20201116_1450.py │ │ ├── 0021_auto_20201119_0526.py │ │ ├── 0022_review.py │ │ ├── 0023_auto_20201202_0349.py │ │ ├── 0024_auto_20201206_0819.py │ │ ├── 0025_auto_20201211_2319.py │ │ ├── 0026_project_featured.py │ │ ├── 0027_auto_20210203_2054.py │ │ ├── 0028_auto_20210210_0230.py │ │ ├── 0029_auto_20210210_2340.py │ │ ├── 0030_auto_20210315_2230.py │ │ ├── 0031_auto_20210328_2341.py │ │ └── __init__.py │ ├── models │ │ ├── files.py │ │ ├── nodes.py │ │ ├── projects.py │ │ ├── projects_tests.py │ │ ├── providers.py │ │ ├── reviews.py │ │ ├── snapshots.py │ │ ├── sources.py │ │ └── sources_tests.py │ ├── paths.py │ ├── tasks.py │ ├── templates │ │ └── projects │ │ │ ├── _agents_list.html │ │ │ ├── _assets_empty_state.html │ │ │ ├── _collaborator_role_help_tip.html │ │ │ ├── _create_form.html │ │ │ ├── _destroy_form.html │ │ │ ├── _image_current.html │ │ │ ├── _image_list.html │ │ │ ├── _project_description.html │ │ │ ├── _project_hero.html │ │ │ ├── _project_list.html │ │ │ ├── _project_list_item.html │ │ │ ├── _save_form.html │ │ │ ├── _sharing_public_form.html │ │ │ ├── _update_content_form.html │ │ │ ├── _update_execution_form.html │ │ │ ├── _update_profile_form.html │ │ │ ├── base.html │ │ │ ├── create.html │ │ │ ├── files │ │ │ ├── _actions_menu.html │ │ │ ├── _convert.html │ │ │ ├── _convert_dropdown_menu.html │ │ │ ├── _format_icon.html │ │ │ ├── _list.html │ │ │ ├── convert.html │ │ │ ├── destroy.html │ │ │ ├── list.html │ │ │ ├── retrieve.html │ │ │ └── upload.html │ │ │ ├── image.html │ │ │ ├── jobs │ │ │ ├── _job_filter.html │ │ │ ├── _job_item.html │ │ │ ├── _job_list.html │ │ │ ├── _job_method_tag.html │ │ │ ├── _job_status_tag.html │ │ │ ├── _progress_buttons.html │ │ │ ├── _retrieve.html │ │ │ ├── list.html │ │ │ ├── retrieve.html │ │ │ └── summary │ │ │ │ ├── _job_summary.html │ │ │ │ └── _pull_summary.html │ │ │ ├── list.html │ │ │ ├── messages │ │ │ └── temporary_project.html │ │ │ ├── nodes │ │ │ └── retrieve.html │ │ │ ├── open.html │ │ │ ├── providers │ │ │ └── github │ │ │ │ ├── _repo_search.html │ │ │ │ └── _repo_search_results.html │ │ │ ├── reviews │ │ │ ├── _comment.html │ │ │ ├── _overview.html │ │ │ ├── _retrieve.html │ │ │ ├── _retrieve_accepted.html │ │ │ ├── _retrieve_cancelled.html │ │ │ ├── _retrieve_declined.html │ │ │ ├── _retrieve_extract_form.html │ │ │ ├── _retrieve_extract_github.html │ │ │ ├── _retrieve_extract_google.html │ │ │ ├── _retrieve_extracted.html │ │ │ ├── _retrieve_pending.html │ │ │ ├── _retrieve_requested.html │ │ │ ├── create.html │ │ │ ├── list.html │ │ │ └── retrieve.html │ │ │ ├── save.html │ │ │ ├── sharing.html │ │ │ ├── snapshots │ │ │ ├── _list.html │ │ │ ├── _retrieve.html │ │ │ ├── list.html │ │ │ └── retrieve.html │ │ │ ├── sources │ │ │ ├── _cancel_modal.html │ │ │ ├── _create_common_fields.html │ │ │ ├── _create_elife_fields.html │ │ │ ├── _create_fields.html │ │ │ ├── _create_file_modal.html │ │ │ ├── _create_github_fields.html │ │ │ ├── _create_googledocs_fields.html │ │ │ ├── _create_googledrive_fields.html │ │ │ ├── _create_googledrive_picker.html │ │ │ ├── _create_googlesheets_fields.html │ │ │ ├── _create_menu.html │ │ │ ├── _create_plos_fields.html │ │ │ ├── _create_url_fields.html │ │ │ ├── _destroy_modal.html │ │ │ ├── _list.html │ │ │ ├── _rename_fields.html │ │ │ ├── _retrieve.html │ │ │ ├── _source_actions_menu.html │ │ │ ├── _source_type_icon.html │ │ │ ├── create.html │ │ │ ├── destroy.html │ │ │ ├── list.html │ │ │ ├── rename.html │ │ │ ├── retrieve.html │ │ │ └── upload.html │ │ │ └── update.html │ └── ui │ │ ├── urls.py │ │ └── views │ │ ├── files.py │ │ ├── jobs.py │ │ ├── messages.py │ │ ├── projects.py │ │ ├── reviews.py │ │ ├── snapshots.py │ │ └── sources.py ├── pytest.ini ├── requirements-dev.txt ├── requirements.txt ├── rollup.config.js ├── scripts │ ├── create_dev_db.py │ ├── create_page_snaps.py │ ├── data │ │ ├── amitabh.png │ │ ├── an-org.png │ │ ├── anna.png │ │ ├── biotech-corp.png │ │ ├── daniel.png │ │ ├── hapuku-university.png │ │ ├── main.md │ │ ├── pewsey-publishing.png │ │ └── zahra.png │ └── get_api_schema.py └── users │ ├── __init__.py │ ├── admin.py │ ├── api │ ├── serializers.py │ ├── serializers_test.py │ ├── urls.py │ └── views │ │ ├── features.py │ │ ├── features_tests.py │ │ ├── invites.py │ │ ├── tokens.py │ │ ├── tokens_tests.py │ │ ├── users.py │ │ └── users_tests.py │ ├── apps.py │ ├── auth_backends.py │ ├── management │ └── commands │ │ └── merge_users.py │ ├── migrations │ ├── 0001_initial.py │ ├── 0002_anonuser.py │ ├── 0003_auto_20201005_1924.py │ ├── 0004_features.py │ └── __init__.py │ ├── models.py │ ├── signals.py │ ├── socialaccount │ ├── __init__.py │ ├── adapter.py │ ├── adapter_tests.py │ ├── providers │ │ ├── __init__.py │ │ └── gas │ │ │ ├── __init__.py │ │ │ └── provider.py │ ├── tokens.py │ └── tokens_tests.py │ ├── tasks.py │ ├── tasks_tests.py │ ├── templates │ ├── account │ │ ├── README.md │ │ ├── account_inactive.html │ │ ├── email.html │ │ ├── email │ │ │ ├── email_confirmation_message.txt │ │ │ ├── email_confirmation_signup_message.txt │ │ │ ├── email_confirmation_signup_subject.txt │ │ │ ├── email_confirmation_subject.txt │ │ │ ├── password_reset_key_message.txt │ │ │ └── password_reset_key_subject.txt │ │ ├── email_confirm.html │ │ ├── messages │ │ │ ├── cannot_delete_primary_email.txt │ │ │ ├── email_confirmation_sent.txt │ │ │ ├── email_confirmed.txt │ │ │ ├── email_deleted.txt │ │ │ ├── logged_in.txt │ │ │ ├── logged_out.txt │ │ │ ├── password_changed.txt │ │ │ ├── password_set.txt │ │ │ ├── primary_email_set.txt │ │ │ └── unverified_primary_email.txt │ │ ├── password_change.html │ │ ├── password_reset.html │ │ ├── password_reset_done.html │ │ ├── password_reset_from_key.html │ │ ├── password_reset_from_key_done.html │ │ ├── password_set.html │ │ ├── signup_closed.html │ │ ├── snippets │ │ │ └── already_logged_in.html │ │ ├── verification_sent.html │ │ └── verified_email_required.html │ ├── invitations │ │ ├── _create.html │ │ ├── _list.html │ │ ├── create.html │ │ ├── email │ │ │ ├── email_invite_message.txt │ │ │ └── email_invite_subject.txt │ │ ├── list.html │ │ └── messages │ │ │ ├── invite_accepted.txt │ │ │ ├── invite_already_accepted.txt │ │ │ ├── invite_expired.txt │ │ │ └── invite_invalid.txt │ ├── socialaccount │ │ ├── _provider_buttons.html │ │ ├── connections.html │ │ └── signup.html │ └── users │ │ ├── _search.html │ │ ├── _search_results.html │ │ ├── features.html │ │ ├── signin.html │ │ ├── signout.html │ │ ├── signup.html │ │ ├── token_missing.html │ │ └── username_change.html │ └── ui │ ├── __init__.py │ ├── urls.py │ ├── views.py │ └── views_tests.py ├── monitor ├── Dockerfile ├── Makefile ├── README.md └── prometheus.yml ├── overseer ├── .flake8 ├── .gitignore ├── .pydocstyle.ini ├── Dockerfile ├── Makefile ├── overseer.py ├── pyproject.toml ├── requirements-dev.txt └── requirements.txt ├── package.json ├── prepare-release.sh ├── publish-release.sh ├── router ├── 413.html ├── 50x.html ├── Dockerfile ├── Makefile ├── entrypoint.sh └── nginx.conf ├── scheduler ├── .dockerignore ├── .gitignore ├── Dockerfile ├── Makefile ├── requirements.txt ├── scheduler.py └── settings.py ├── steward ├── Dockerfile ├── Makefile ├── README.md ├── cmd.sh └── delcache.sh ├── storage └── .gitignore ├── tsconfig.json └── worker ├── .coveragerc ├── .dockerignore ├── .flake8 ├── .gitignore ├── .isort.cfg ├── .pydocstyle.ini ├── Dockerfile ├── Makefile ├── README.md ├── config.py ├── conftest.py ├── jobs ├── __init__.py ├── archive.py ├── base │ ├── __init__.py │ ├── job.py │ ├── job_test.py │ ├── subprocess_job.py │ └── subprocess_job_test.py ├── cassettes │ ├── convert_test │ │ └── test_to_gdoc.yaml │ ├── pin_test │ │ └── test_run.yaml │ └── register_test │ │ ├── test_bad_credentials.yaml │ │ ├── test_register_article.yaml │ │ ├── test_register_review.yaml │ │ └── test_register_utf8.yaml ├── clean.py ├── clean_test.py ├── convert.py ├── convert_test.py ├── extract │ ├── __init__.py │ ├── __init__test.py │ ├── cassettes │ │ ├── gdrive_test │ │ │ └── test_fixture_2.yaml │ │ └── github_test │ │ │ └── test_get_review.yaml │ ├── gdrive.py │ ├── gdrive_test.py │ ├── github.py │ └── github_test.py ├── pin.py ├── pin_test.py ├── pull │ ├── __init__.py │ ├── __init__test.py │ ├── cassettes │ │ ├── elife_test │ │ │ └── test_ok.yaml │ │ ├── gdoc_test │ │ │ └── test_ok.yaml │ │ ├── gdrive_test │ │ │ └── test_folder.yaml │ │ ├── github_test │ │ │ ├── stencila-test-archive.zip │ │ │ ├── test_public_repo.yaml │ │ │ ├── test_single_file.yaml │ │ │ └── test_subdirectory.yaml │ │ ├── gsheet_test │ │ │ └── test_ok.yaml │ │ ├── http_test │ │ │ └── test_extension_from_mimetype.yaml │ │ └── plos_test │ │ │ └── test_ok.yaml │ ├── elife.py │ ├── elife_test.py │ ├── fixtures │ │ ├── .gitignore │ │ ├── 1000-maniacs.zip │ │ └── make.py │ ├── gdoc.py │ ├── gdoc_test.py │ ├── gdrive.py │ ├── gdrive_test.py │ ├── github.py │ ├── github_test.py │ ├── gsheet.py │ ├── gsheet_test.py │ ├── http.py │ ├── http_test.py │ ├── plos.py │ ├── plos_test.py │ ├── upload.py │ └── upload_test.py ├── push │ ├── __init__.py │ ├── cassettes │ │ └── gdoc_test │ │ │ └── test_ok.yaml │ ├── gdoc.py │ └── gdoc_test.py ├── register.py ├── register_test.py ├── session │ ├── __init__.py │ ├── groundsman.Dockerfile │ ├── groundsman.sh │ ├── kubernetes_session.py │ ├── kubernetes_session_test.py │ ├── session.py │ └── subprocess_session.py ├── sleep.py └── sleep_test.py ├── package-lock.json ├── package.json ├── pyproject.toml ├── requirements-dev.txt ├── requirements.txt ├── util ├── __init__.py ├── cache.py ├── files.py ├── files_test.py ├── gapis.py ├── github_api.py ├── http.py ├── http_test.py ├── network.py ├── serialize.py ├── serialize_test.py └── working_directory.py └── worker.py /.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/.config -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/.gitignore -------------------------------------------------------------------------------- /.secrets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/.secrets -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/README.md -------------------------------------------------------------------------------- /azure-pipelines.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/azure-pipelines.yml -------------------------------------------------------------------------------- /broker/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/broker/Dockerfile -------------------------------------------------------------------------------- /broker/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/broker/Makefile -------------------------------------------------------------------------------- /broker/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/broker/README.md -------------------------------------------------------------------------------- /cache/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/cache/Dockerfile -------------------------------------------------------------------------------- /cache/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/cache/Makefile -------------------------------------------------------------------------------- /clients/.gitignore: -------------------------------------------------------------------------------- 1 | api.yaml 2 | -------------------------------------------------------------------------------- /clients/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/clients/Makefile -------------------------------------------------------------------------------- /clients/python/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/clients/python/.gitignore -------------------------------------------------------------------------------- /clients/python/.openapi-generator-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/clients/python/.openapi-generator-config.yaml -------------------------------------------------------------------------------- /clients/python/.openapi-generator-ignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/clients/python/.openapi-generator-ignore -------------------------------------------------------------------------------- /clients/python/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/clients/python/README.md -------------------------------------------------------------------------------- /clients/python/requirements-dev.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/clients/python/requirements-dev.txt -------------------------------------------------------------------------------- /clients/python/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/clients/python/requirements.txt -------------------------------------------------------------------------------- /clients/python/setup.cfg: -------------------------------------------------------------------------------- 1 | [flake8] 2 | max-line-length=99 3 | -------------------------------------------------------------------------------- /clients/python/templates/api_doc_example.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/clients/python/templates/api_doc_example.mustache -------------------------------------------------------------------------------- /clients/python/test/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /clients/python/test/test_account_create.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/clients/python/test/test_account_create.py -------------------------------------------------------------------------------- /clients/python/test/test_account_list.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/clients/python/test/test_account_list.py -------------------------------------------------------------------------------- /clients/python/test/test_account_retrieve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/clients/python/test/test_account_retrieve.py -------------------------------------------------------------------------------- /clients/python/test/test_account_team.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/clients/python/test/test_account_team.py -------------------------------------------------------------------------------- /clients/python/test/test_account_update.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/clients/python/test/test_account_update.py -------------------------------------------------------------------------------- /clients/python/test/test_account_user.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/clients/python/test/test_account_user.py -------------------------------------------------------------------------------- /clients/python/test/test_accounts_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/clients/python/test/test_accounts_api.py -------------------------------------------------------------------------------- /clients/python/test/test_file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/clients/python/test/test_file.py -------------------------------------------------------------------------------- /clients/python/test/test_file_list.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/clients/python/test/test_file_list.py -------------------------------------------------------------------------------- /clients/python/test/test_inline_object.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/clients/python/test/test_inline_object.py -------------------------------------------------------------------------------- /clients/python/test/test_inline_object1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/clients/python/test/test_inline_object1.py -------------------------------------------------------------------------------- /clients/python/test/test_inline_object2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/clients/python/test/test_inline_object2.py -------------------------------------------------------------------------------- /clients/python/test/test_inline_object3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/clients/python/test/test_inline_object3.py -------------------------------------------------------------------------------- /clients/python/test/test_inline_object4.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/clients/python/test/test_inline_object4.py -------------------------------------------------------------------------------- /clients/python/test/test_inline_object5.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/clients/python/test/test_inline_object5.py -------------------------------------------------------------------------------- /clients/python/test/test_inline_response200.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/clients/python/test/test_inline_response200.py -------------------------------------------------------------------------------- /clients/python/test/test_inline_response2001.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/clients/python/test/test_inline_response2001.py -------------------------------------------------------------------------------- /clients/python/test/test_inline_response20010.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/clients/python/test/test_inline_response20010.py -------------------------------------------------------------------------------- /clients/python/test/test_inline_response20011.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/clients/python/test/test_inline_response20011.py -------------------------------------------------------------------------------- /clients/python/test/test_inline_response20011_results.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/clients/python/test/test_inline_response20011_results.py -------------------------------------------------------------------------------- /clients/python/test/test_inline_response20012.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/clients/python/test/test_inline_response20012.py -------------------------------------------------------------------------------- /clients/python/test/test_inline_response20013.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/clients/python/test/test_inline_response20013.py -------------------------------------------------------------------------------- /clients/python/test/test_inline_response20014.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/clients/python/test/test_inline_response20014.py -------------------------------------------------------------------------------- /clients/python/test/test_inline_response20015.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/clients/python/test/test_inline_response20015.py -------------------------------------------------------------------------------- /clients/python/test/test_inline_response2002.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/clients/python/test/test_inline_response2002.py -------------------------------------------------------------------------------- /clients/python/test/test_inline_response2003.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/clients/python/test/test_inline_response2003.py -------------------------------------------------------------------------------- /clients/python/test/test_inline_response2004.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/clients/python/test/test_inline_response2004.py -------------------------------------------------------------------------------- /clients/python/test/test_inline_response2005.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/clients/python/test/test_inline_response2005.py -------------------------------------------------------------------------------- /clients/python/test/test_inline_response2006.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/clients/python/test/test_inline_response2006.py -------------------------------------------------------------------------------- /clients/python/test/test_inline_response2007.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/clients/python/test/test_inline_response2007.py -------------------------------------------------------------------------------- /clients/python/test/test_inline_response2008.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/clients/python/test/test_inline_response2008.py -------------------------------------------------------------------------------- /clients/python/test/test_inline_response2009.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/clients/python/test/test_inline_response2009.py -------------------------------------------------------------------------------- /clients/python/test/test_inline_response201.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/clients/python/test/test_inline_response201.py -------------------------------------------------------------------------------- /clients/python/test/test_invite.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/clients/python/test/test_invite.py -------------------------------------------------------------------------------- /clients/python/test/test_invites_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/clients/python/test/test_invites_api.py -------------------------------------------------------------------------------- /clients/python/test/test_job.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/clients/python/test/test_job.py -------------------------------------------------------------------------------- /clients/python/test/test_jobs_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/clients/python/test/test_jobs_api.py -------------------------------------------------------------------------------- /clients/python/test/test_me.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/clients/python/test/test_me.py -------------------------------------------------------------------------------- /clients/python/test/test_project.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/clients/python/test/test_project.py -------------------------------------------------------------------------------- /clients/python/test/test_project_agent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/clients/python/test/test_project_agent.py -------------------------------------------------------------------------------- /clients/python/test/test_project_agent_update.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/clients/python/test/test_project_agent_update.py -------------------------------------------------------------------------------- /clients/python/test/test_project_create.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/clients/python/test/test_project_create.py -------------------------------------------------------------------------------- /clients/python/test/test_project_list.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/clients/python/test/test_project_list.py -------------------------------------------------------------------------------- /clients/python/test/test_project_update.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/clients/python/test/test_project_update.py -------------------------------------------------------------------------------- /clients/python/test/test_projects_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/clients/python/test/test_projects_api.py -------------------------------------------------------------------------------- /clients/python/test/test_queue.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/clients/python/test/test_queue.py -------------------------------------------------------------------------------- /clients/python/test/test_snapshot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/clients/python/test/test_snapshot.py -------------------------------------------------------------------------------- /clients/python/test/test_source.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/clients/python/test/test_source.py -------------------------------------------------------------------------------- /clients/python/test/test_status_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/clients/python/test/test_status_api.py -------------------------------------------------------------------------------- /clients/python/test/test_status_response.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/clients/python/test/test_status_response.py -------------------------------------------------------------------------------- /clients/python/test/test_token.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/clients/python/test/test_token.py -------------------------------------------------------------------------------- /clients/python/test/test_tokens_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/clients/python/test/test_tokens_api.py -------------------------------------------------------------------------------- /clients/python/test/test_user.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/clients/python/test/test_user.py -------------------------------------------------------------------------------- /clients/python/test/test_users_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/clients/python/test/test_users_api.py -------------------------------------------------------------------------------- /clients/python/test/test_worker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/clients/python/test/test_worker.py -------------------------------------------------------------------------------- /clients/python/test/test_worker_heartbeat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/clients/python/test/test_worker_heartbeat.py -------------------------------------------------------------------------------- /clients/python/test/test_workers_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/clients/python/test/test_workers_api.py -------------------------------------------------------------------------------- /clients/python/test/test_zone.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/clients/python/test/test_zone.py -------------------------------------------------------------------------------- /clients/python/tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/clients/python/tox.ini -------------------------------------------------------------------------------- /clients/typescript/.gitignore: -------------------------------------------------------------------------------- 1 | .npmrc 2 | .openapi-generator 3 | dist 4 | node_modules 5 | src 6 | -------------------------------------------------------------------------------- /clients/typescript/.openapi-generator-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/clients/typescript/.openapi-generator-config.yaml -------------------------------------------------------------------------------- /clients/typescript/.openapi-generator-ignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/clients/typescript/.openapi-generator-ignore -------------------------------------------------------------------------------- /clients/typescript/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/clients/typescript/README.md -------------------------------------------------------------------------------- /clients/typescript/__tests__/accounts.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/clients/typescript/__tests__/accounts.test.ts -------------------------------------------------------------------------------- /clients/typescript/__tests__/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/clients/typescript/__tests__/config.ts -------------------------------------------------------------------------------- /clients/typescript/__tests__/projects.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/clients/typescript/__tests__/projects.test.ts -------------------------------------------------------------------------------- /clients/typescript/__tests__/setup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/clients/typescript/__tests__/setup.ts -------------------------------------------------------------------------------- /clients/typescript/__tests__/tokens.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/clients/typescript/__tests__/tokens.test.ts -------------------------------------------------------------------------------- /clients/typescript/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/clients/typescript/package-lock.json -------------------------------------------------------------------------------- /clients/typescript/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/clients/typescript/package.json -------------------------------------------------------------------------------- /clients/typescript/templates/licenseInfo.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/clients/typescript/templates/licenseInfo.mustache -------------------------------------------------------------------------------- /clients/typescript/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/clients/typescript/tsconfig.json -------------------------------------------------------------------------------- /clients/typescript/tsconfig.prod.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/clients/typescript/tsconfig.prod.json -------------------------------------------------------------------------------- /database/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/database/Dockerfile -------------------------------------------------------------------------------- /database/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/database/Makefile -------------------------------------------------------------------------------- /docker-compose.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/docker-compose.yaml -------------------------------------------------------------------------------- /manager/.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/manager/.babelrc -------------------------------------------------------------------------------- /manager/.coveragerc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/manager/.coveragerc -------------------------------------------------------------------------------- /manager/.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/manager/.dockerignore -------------------------------------------------------------------------------- /manager/.flake8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/manager/.flake8 -------------------------------------------------------------------------------- /manager/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/manager/.gitignore -------------------------------------------------------------------------------- /manager/.isort.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/manager/.isort.cfg -------------------------------------------------------------------------------- /manager/.nvmrc: -------------------------------------------------------------------------------- 1 | v14 2 | -------------------------------------------------------------------------------- /manager/.pydocstyle.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/manager/.pydocstyle.ini -------------------------------------------------------------------------------- /manager/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/manager/Dockerfile -------------------------------------------------------------------------------- /manager/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/manager/Makefile -------------------------------------------------------------------------------- /manager/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/manager/README.md -------------------------------------------------------------------------------- /manager/accounts/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /manager/accounts/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/manager/accounts/admin.py -------------------------------------------------------------------------------- /manager/accounts/api/serializers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/manager/accounts/api/serializers.py -------------------------------------------------------------------------------- /manager/accounts/api/serializers_account_image.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/manager/accounts/api/serializers_account_image.py -------------------------------------------------------------------------------- /manager/accounts/api/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/manager/accounts/api/urls.py -------------------------------------------------------------------------------- /manager/accounts/api/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/manager/accounts/api/views.py -------------------------------------------------------------------------------- /manager/accounts/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/manager/accounts/apps.py -------------------------------------------------------------------------------- /manager/accounts/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/manager/accounts/migrations/0001_initial.py -------------------------------------------------------------------------------- /manager/accounts/migrations/0002_models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/manager/accounts/migrations/0002_models.py -------------------------------------------------------------------------------- /manager/accounts/migrations/0003_auto_20200720_2208.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/manager/accounts/migrations/0003_auto_20200720_2208.py -------------------------------------------------------------------------------- /manager/accounts/migrations/0004_auto_20200721_0252.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/manager/accounts/migrations/0004_auto_20200721_0252.py -------------------------------------------------------------------------------- /manager/accounts/migrations/0005_accounttier_file_downloads_month.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/manager/accounts/migrations/0005_accounttier_file_downloads_month.py -------------------------------------------------------------------------------- /manager/accounts/migrations/0006_auto_20200827_2212.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/manager/accounts/migrations/0006_auto_20200827_2212.py -------------------------------------------------------------------------------- /manager/accounts/migrations/0007_accounttier_dois_created_month.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/manager/accounts/migrations/0007_accounttier_dois_created_month.py -------------------------------------------------------------------------------- /manager/accounts/migrations/0008_auto_20201202_0349.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/manager/accounts/migrations/0008_auto_20201202_0349.py -------------------------------------------------------------------------------- /manager/accounts/migrations/0009_auto_20210131_2250.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/manager/accounts/migrations/0009_auto_20210131_2250.py -------------------------------------------------------------------------------- /manager/accounts/migrations/0010_auto_20210203_2054.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/manager/accounts/migrations/0010_auto_20210203_2054.py -------------------------------------------------------------------------------- /manager/accounts/migrations/0011_auto_20210210_2340.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/manager/accounts/migrations/0011_auto_20210210_2340.py -------------------------------------------------------------------------------- /manager/accounts/migrations/0012_auto_20210329_0606.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/manager/accounts/migrations/0012_auto_20210329_0606.py -------------------------------------------------------------------------------- /manager/accounts/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /manager/accounts/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/manager/accounts/models.py -------------------------------------------------------------------------------- /manager/accounts/paths.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/manager/accounts/paths.py -------------------------------------------------------------------------------- /manager/accounts/quotas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/manager/accounts/quotas.py -------------------------------------------------------------------------------- /manager/accounts/tasks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/manager/accounts/tasks.py -------------------------------------------------------------------------------- /manager/accounts/templates/accounts/_admin_form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/manager/accounts/templates/accounts/_admin_form.html -------------------------------------------------------------------------------- /manager/accounts/templates/accounts/_create_form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/manager/accounts/templates/accounts/_create_form.html -------------------------------------------------------------------------------- /manager/accounts/templates/accounts/_list_orgs_result.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/manager/accounts/templates/accounts/_list_orgs_result.html -------------------------------------------------------------------------------- /manager/accounts/templates/accounts/_plans_faq.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/manager/accounts/templates/accounts/_plans_faq.html -------------------------------------------------------------------------------- /manager/accounts/templates/accounts/_plans_table.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/manager/accounts/templates/accounts/_plans_table.html -------------------------------------------------------------------------------- /manager/accounts/templates/accounts/_plans_table_item.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/manager/accounts/templates/accounts/_plans_table_item.html -------------------------------------------------------------------------------- /manager/accounts/templates/accounts/_profile_fields.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/manager/accounts/templates/accounts/_profile_fields.html -------------------------------------------------------------------------------- /manager/accounts/templates/accounts/_profile_form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/manager/accounts/templates/accounts/_profile_form.html -------------------------------------------------------------------------------- /manager/accounts/templates/accounts/_project_search.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/manager/accounts/templates/accounts/_project_search.html -------------------------------------------------------------------------------- /manager/accounts/templates/accounts/_publishing_extras.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/manager/accounts/templates/accounts/_publishing_extras.html -------------------------------------------------------------------------------- /manager/accounts/templates/accounts/_publishing_form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/manager/accounts/templates/accounts/_publishing_form.html -------------------------------------------------------------------------------- /manager/accounts/templates/accounts/_sidebar_settings.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/manager/accounts/templates/accounts/_sidebar_settings.html -------------------------------------------------------------------------------- /manager/accounts/templates/accounts/_sidebar_start.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/manager/accounts/templates/accounts/_sidebar_start.html -------------------------------------------------------------------------------- /manager/accounts/templates/accounts/admin/accounts_downgrade_confirm.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/manager/accounts/templates/accounts/admin/accounts_downgrade_confirm.html -------------------------------------------------------------------------------- /manager/accounts/templates/accounts/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/manager/accounts/templates/accounts/base.html -------------------------------------------------------------------------------- /manager/accounts/templates/accounts/content/404_invalid_account.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/manager/accounts/templates/accounts/content/404_invalid_account.html -------------------------------------------------------------------------------- /manager/accounts/templates/accounts/content/404_invalid_file.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/manager/accounts/templates/accounts/content/404_invalid_file.html -------------------------------------------------------------------------------- /manager/accounts/templates/accounts/content/404_invalid_snapshot.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/manager/accounts/templates/accounts/content/404_invalid_snapshot.html -------------------------------------------------------------------------------- /manager/accounts/templates/accounts/content/404_no_snapshots.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/manager/accounts/templates/accounts/content/404_no_snapshots.html -------------------------------------------------------------------------------- /manager/accounts/templates/accounts/content/404_unavailable_project.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/manager/accounts/templates/accounts/content/404_unavailable_project.html -------------------------------------------------------------------------------- /manager/accounts/templates/accounts/content/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/manager/accounts/templates/accounts/content/base.html -------------------------------------------------------------------------------- /manager/accounts/templates/accounts/create.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/manager/accounts/templates/accounts/create.html -------------------------------------------------------------------------------- /manager/accounts/templates/accounts/list_orgs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/manager/accounts/templates/accounts/list_orgs.html -------------------------------------------------------------------------------- /manager/accounts/templates/accounts/list_users.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/manager/accounts/templates/accounts/list_users.html -------------------------------------------------------------------------------- /manager/accounts/templates/accounts/plan.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/manager/accounts/templates/accounts/plan.html -------------------------------------------------------------------------------- /manager/accounts/templates/accounts/plans.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/manager/accounts/templates/accounts/plans.html -------------------------------------------------------------------------------- /manager/accounts/templates/accounts/profile.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/manager/accounts/templates/accounts/profile.html -------------------------------------------------------------------------------- /manager/accounts/templates/accounts/publishing.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/manager/accounts/templates/accounts/publishing.html -------------------------------------------------------------------------------- /manager/accounts/templates/accounts/quota_exceeded.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/manager/accounts/templates/accounts/quota_exceeded.html -------------------------------------------------------------------------------- /manager/accounts/templates/accounts/retrieve.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/manager/accounts/templates/accounts/retrieve.html -------------------------------------------------------------------------------- /manager/accounts/templates/accounts/teams/_create_details.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/manager/accounts/templates/accounts/teams/_create_details.html -------------------------------------------------------------------------------- /manager/accounts/templates/accounts/teams/_destroy.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/manager/accounts/templates/accounts/teams/_destroy.html -------------------------------------------------------------------------------- /manager/accounts/templates/accounts/teams/_members.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/manager/accounts/templates/accounts/teams/_members.html -------------------------------------------------------------------------------- /manager/accounts/templates/accounts/teams/_update_details.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/manager/accounts/templates/accounts/teams/_update_details.html -------------------------------------------------------------------------------- /manager/accounts/templates/accounts/teams/create.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/manager/accounts/templates/accounts/teams/create.html -------------------------------------------------------------------------------- /manager/accounts/templates/accounts/teams/list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/manager/accounts/templates/accounts/teams/list.html -------------------------------------------------------------------------------- /manager/accounts/templates/accounts/teams/retrieve.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/manager/accounts/templates/accounts/teams/retrieve.html -------------------------------------------------------------------------------- /manager/accounts/templates/accounts/teams/update.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/manager/accounts/templates/accounts/teams/update.html -------------------------------------------------------------------------------- /manager/accounts/templates/accounts/users/_account_role_help_tip.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/manager/accounts/templates/accounts/users/_account_role_help_tip.html -------------------------------------------------------------------------------- /manager/accounts/templates/accounts/users/_list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/manager/accounts/templates/accounts/users/_list.html -------------------------------------------------------------------------------- /manager/accounts/templates/accounts/users/update.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/manager/accounts/templates/accounts/users/update.html -------------------------------------------------------------------------------- /manager/accounts/ui/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/manager/accounts/ui/forms.py -------------------------------------------------------------------------------- /manager/accounts/ui/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/manager/accounts/ui/urls.py -------------------------------------------------------------------------------- /manager/accounts/ui/views/accounts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/manager/accounts/ui/views/accounts.py -------------------------------------------------------------------------------- /manager/accounts/ui/views/content.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/manager/accounts/ui/views/content.py -------------------------------------------------------------------------------- /manager/accounts/ui/views/content_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/manager/accounts/ui/views/content_tests.py -------------------------------------------------------------------------------- /manager/accounts/ui/views/teams.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/manager/accounts/ui/views/teams.py -------------------------------------------------------------------------------- /manager/accounts/ui/views/users.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/manager/accounts/ui/views/users.py -------------------------------------------------------------------------------- /manager/accounts/webhooks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/manager/accounts/webhooks.py -------------------------------------------------------------------------------- /manager/assistant.Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/manager/assistant.Dockerfile -------------------------------------------------------------------------------- /manager/dois/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /manager/dois/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/manager/dois/admin.py -------------------------------------------------------------------------------- /manager/dois/api/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /manager/dois/api/serializers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/manager/dois/api/serializers.py -------------------------------------------------------------------------------- /manager/dois/api/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/manager/dois/api/urls.py -------------------------------------------------------------------------------- /manager/dois/api/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/manager/dois/api/views.py -------------------------------------------------------------------------------- /manager/dois/api/views_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/manager/dois/api/views_tests.py -------------------------------------------------------------------------------- /manager/dois/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/manager/dois/apps.py -------------------------------------------------------------------------------- /manager/dois/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/manager/dois/migrations/0001_initial.py -------------------------------------------------------------------------------- /manager/dois/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /manager/dois/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/manager/dois/models.py -------------------------------------------------------------------------------- /manager/dois/models_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/manager/dois/models_tests.py -------------------------------------------------------------------------------- /manager/dois/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/manager/dois/urls.py -------------------------------------------------------------------------------- /manager/generate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/manager/generate.js -------------------------------------------------------------------------------- /manager/jobs/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /manager/jobs/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/manager/jobs/admin.py -------------------------------------------------------------------------------- /manager/jobs/api/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /manager/jobs/api/helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/manager/jobs/api/helpers.py -------------------------------------------------------------------------------- /manager/jobs/api/serializers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/manager/jobs/api/serializers.py -------------------------------------------------------------------------------- /manager/jobs/api/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/manager/jobs/api/urls.py -------------------------------------------------------------------------------- /manager/jobs/api/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/manager/jobs/api/views.py -------------------------------------------------------------------------------- /manager/jobs/api/views_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/manager/jobs/api/views_tests.py -------------------------------------------------------------------------------- /manager/jobs/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/manager/jobs/apps.py -------------------------------------------------------------------------------- /manager/jobs/jobs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/manager/jobs/jobs.py -------------------------------------------------------------------------------- /manager/jobs/jobs_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/manager/jobs/jobs_tests.py -------------------------------------------------------------------------------- /manager/jobs/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/manager/jobs/migrations/0001_initial.py -------------------------------------------------------------------------------- /manager/jobs/migrations/0002_auto_20200708_2203.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/manager/jobs/migrations/0002_auto_20200708_2203.py -------------------------------------------------------------------------------- /manager/jobs/migrations/0003_auto_20200723_0219.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/manager/jobs/migrations/0003_auto_20200723_0219.py -------------------------------------------------------------------------------- /manager/jobs/migrations/0004_job_key.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/manager/jobs/migrations/0004_job_key.py -------------------------------------------------------------------------------- /manager/jobs/migrations/0005_auto_20200804_0354.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/manager/jobs/migrations/0005_auto_20200804_0354.py -------------------------------------------------------------------------------- /manager/jobs/migrations/0006_auto_20200806_0605.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/manager/jobs/migrations/0006_auto_20200806_0605.py -------------------------------------------------------------------------------- /manager/jobs/migrations/0007_auto_20200903_0611.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/manager/jobs/migrations/0007_auto_20200903_0611.py -------------------------------------------------------------------------------- /manager/jobs/migrations/0008_auto_20201007_0337.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/manager/jobs/migrations/0008_auto_20201007_0337.py -------------------------------------------------------------------------------- /manager/jobs/migrations/0009_auto_20201030_0132.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/manager/jobs/migrations/0009_auto_20201030_0132.py -------------------------------------------------------------------------------- /manager/jobs/migrations/0010_auto_20201112_2256.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/manager/jobs/migrations/0010_auto_20201112_2256.py -------------------------------------------------------------------------------- /manager/jobs/migrations/0011_auto_20201127_0625.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/manager/jobs/migrations/0011_auto_20201127_0625.py -------------------------------------------------------------------------------- /manager/jobs/migrations/0012_auto_20210209_2225.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/manager/jobs/migrations/0012_auto_20210209_2225.py -------------------------------------------------------------------------------- /manager/jobs/migrations/0013_auto_20210214_2131.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/manager/jobs/migrations/0013_auto_20210214_2131.py -------------------------------------------------------------------------------- /manager/jobs/migrations/0014_job_secrets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/manager/jobs/migrations/0014_job_secrets.py -------------------------------------------------------------------------------- /manager/jobs/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /manager/jobs/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/manager/jobs/models.py -------------------------------------------------------------------------------- /manager/jobs/models_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/manager/jobs/models_tests.py -------------------------------------------------------------------------------- /manager/jobs/templates/job_detail.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/manager/jobs/templates/job_detail.html -------------------------------------------------------------------------------- /manager/jobs/templates/job_list_job.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/manager/jobs/templates/job_list_job.html -------------------------------------------------------------------------------- /manager/jobs/templates/jobs/admin/jobs_cancel_confirm.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/manager/jobs/templates/jobs/admin/jobs_cancel_confirm.html -------------------------------------------------------------------------------- /manager/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/manager/manage.py -------------------------------------------------------------------------------- /manager/manager/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/manager/manager/__init__.py -------------------------------------------------------------------------------- /manager/manager/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/manager/manager/admin.py -------------------------------------------------------------------------------- /manager/manager/api/authentication.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/manager/manager/api/authentication.py -------------------------------------------------------------------------------- /manager/manager/api/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/manager/manager/api/exceptions.py -------------------------------------------------------------------------------- /manager/manager/api/handlers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/manager/manager/api/handlers.py -------------------------------------------------------------------------------- /manager/manager/api/helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/manager/manager/api/helpers.py -------------------------------------------------------------------------------- /manager/manager/api/negotiation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/manager/manager/api/negotiation.py -------------------------------------------------------------------------------- /manager/manager/api/routers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/manager/manager/api/routers.py -------------------------------------------------------------------------------- /manager/manager/api/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/manager/manager/api/urls.py -------------------------------------------------------------------------------- /manager/manager/api/validators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/manager/manager/api/validators.py -------------------------------------------------------------------------------- /manager/manager/api/views/docs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/manager/manager/api/views/docs.md -------------------------------------------------------------------------------- /manager/manager/api/views/docs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/manager/manager/api/views/docs.py -------------------------------------------------------------------------------- /manager/manager/api/views/emails.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/manager/manager/api/views/emails.py -------------------------------------------------------------------------------- /manager/manager/api/views/status.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/manager/manager/api/views/status.py -------------------------------------------------------------------------------- /manager/manager/api/views/status_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/manager/manager/api/views/status_tests.py -------------------------------------------------------------------------------- /manager/manager/asgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/manager/manager/asgi.py -------------------------------------------------------------------------------- /manager/manager/assistant.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/manager/manager/assistant.py -------------------------------------------------------------------------------- /manager/manager/components.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/manager/manager/components.py -------------------------------------------------------------------------------- /manager/manager/context_processors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/manager/manager/context_processors.py -------------------------------------------------------------------------------- /manager/manager/helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/manager/manager/helpers.py -------------------------------------------------------------------------------- /manager/manager/middleware.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/manager/manager/middleware.py -------------------------------------------------------------------------------- /manager/manager/nodes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/manager/manager/nodes.py -------------------------------------------------------------------------------- /manager/manager/paths.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/manager/manager/paths.py -------------------------------------------------------------------------------- /manager/manager/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/manager/manager/settings.py -------------------------------------------------------------------------------- /manager/manager/settings_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/manager/manager/settings_tests.py -------------------------------------------------------------------------------- /manager/manager/signals.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/manager/manager/signals.py -------------------------------------------------------------------------------- /manager/manager/static/img/close-circle-line.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/manager/manager/static/img/close-circle-line.svg -------------------------------------------------------------------------------- /manager/manager/static/img/dead-document.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/manager/manager/static/img/dead-document.svg -------------------------------------------------------------------------------- /manager/manager/static/img/elife-full-color-horizontal-2020.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/manager/manager/static/img/elife-full-color-horizontal-2020.svg -------------------------------------------------------------------------------- /manager/manager/static/img/elife-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/manager/manager/static/img/elife-icon.png -------------------------------------------------------------------------------- /manager/manager/static/img/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/manager/manager/static/img/favicon.png -------------------------------------------------------------------------------- /manager/manager/static/img/github-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/manager/manager/static/img/github-logo.png -------------------------------------------------------------------------------- /manager/manager/static/img/google-docs-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/manager/manager/static/img/google-docs-logo.png -------------------------------------------------------------------------------- /manager/manager/static/img/google-drive-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/manager/manager/static/img/google-drive-logo.png -------------------------------------------------------------------------------- /manager/manager/static/img/google-sheets-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/manager/manager/static/img/google-sheets-logo.png -------------------------------------------------------------------------------- /manager/manager/static/img/illustrations/project.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/manager/manager/static/img/illustrations/project.svg -------------------------------------------------------------------------------- /manager/manager/static/img/illustrations/wonder.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/manager/manager/static/img/illustrations/wonder.svg -------------------------------------------------------------------------------- /manager/manager/static/img/plos-logo-color-blue.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/manager/manager/static/img/plos-logo-color-blue.svg -------------------------------------------------------------------------------- /manager/manager/static/img/stencilaIcon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/manager/manager/static/img/stencilaIcon.svg -------------------------------------------------------------------------------- /manager/manager/static/img/stencilaLogo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/manager/manager/static/img/stencilaLogo.svg -------------------------------------------------------------------------------- /manager/manager/static/js/src/buttons.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/manager/manager/static/js/src/buttons.js -------------------------------------------------------------------------------- /manager/manager/static/js/src/dropdowns.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/manager/manager/static/js/src/dropdowns.js -------------------------------------------------------------------------------- /manager/manager/static/js/src/errorHandler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/manager/manager/static/js/src/errorHandler.js -------------------------------------------------------------------------------- /manager/manager/static/js/src/htmx-extensions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/manager/manager/static/js/src/htmx-extensions.js -------------------------------------------------------------------------------- /manager/manager/static/js/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/manager/manager/static/js/src/index.js -------------------------------------------------------------------------------- /manager/manager/static/js/src/libs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/manager/manager/static/js/src/libs.js -------------------------------------------------------------------------------- /manager/manager/static/js/src/modals.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/manager/manager/static/js/src/modals.js -------------------------------------------------------------------------------- /manager/manager/static/js/src/readMore.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/manager/manager/static/js/src/readMore.js -------------------------------------------------------------------------------- /manager/manager/static/sass/accounts/index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/manager/manager/static/sass/accounts/index.scss -------------------------------------------------------------------------------- /manager/manager/static/sass/accounts/teams/index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/manager/manager/static/sass/accounts/teams/index.scss -------------------------------------------------------------------------------- /manager/manager/static/sass/projects/index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/manager/manager/static/sass/projects/index.scss -------------------------------------------------------------------------------- /manager/manager/static/sass/projects/reviews.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/manager/manager/static/sass/projects/reviews.scss -------------------------------------------------------------------------------- /manager/manager/static/sass/projects/sources/index.scss: -------------------------------------------------------------------------------- 1 | .source-table--file-type { 2 | width: 1em; 3 | } 4 | -------------------------------------------------------------------------------- /manager/manager/static/sass/styles.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/manager/manager/static/sass/styles.scss -------------------------------------------------------------------------------- /manager/manager/storage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/manager/manager/storage.py -------------------------------------------------------------------------------- /manager/manager/templates/403.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/manager/manager/templates/403.html -------------------------------------------------------------------------------- /manager/manager/templates/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/manager/manager/templates/404.html -------------------------------------------------------------------------------- /manager/manager/templates/500.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/manager/manager/templates/500.html -------------------------------------------------------------------------------- /manager/manager/templates/_help_tip.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/manager/manager/templates/_help_tip.html -------------------------------------------------------------------------------- /manager/manager/templates/_page_action_bar.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/manager/manager/templates/_page_action_bar.html -------------------------------------------------------------------------------- /manager/manager/templates/_pagination.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/manager/manager/templates/_pagination.html -------------------------------------------------------------------------------- /manager/manager/templates/admin/base_site.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/manager/manager/templates/admin/base_site.html -------------------------------------------------------------------------------- /manager/manager/templates/admin/input_filter.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/manager/manager/templates/admin/input_filter.html -------------------------------------------------------------------------------- /manager/manager/templates/api/_create_redirect.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/manager/manager/templates/api/_create_redirect.html -------------------------------------------------------------------------------- /manager/manager/templates/api/_default.html: -------------------------------------------------------------------------------- 1 | {# Default template for API HTML responses. #} 2 | 3 | -------------------------------------------------------------------------------- /manager/manager/templates/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/manager/manager/templates/base.html -------------------------------------------------------------------------------- /manager/manager/templates/base_centered.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/manager/manager/templates/base_centered.html -------------------------------------------------------------------------------- /manager/manager/templates/base_full.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/manager/manager/templates/base_full.html -------------------------------------------------------------------------------- /manager/manager/templates/forms/_submit.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/manager/manager/templates/forms/_submit.html -------------------------------------------------------------------------------- /manager/manager/templates/forms/errors.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/manager/manager/templates/forms/errors.html -------------------------------------------------------------------------------- /manager/manager/templates/forms/field.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/manager/manager/templates/forms/field.html -------------------------------------------------------------------------------- /manager/manager/templates/forms/form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/manager/manager/templates/forms/form.html -------------------------------------------------------------------------------- /manager/manager/templates/nodes/CodeBlock.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/manager/manager/templates/nodes/CodeBlock.html -------------------------------------------------------------------------------- /manager/manager/templates/nodes/Delete.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/manager/manager/templates/nodes/Delete.html -------------------------------------------------------------------------------- /manager/manager/templates/nodes/Emphasis.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/manager/manager/templates/nodes/Emphasis.html -------------------------------------------------------------------------------- /manager/manager/templates/nodes/Heading.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/manager/manager/templates/nodes/Heading.html -------------------------------------------------------------------------------- /manager/manager/templates/nodes/Link.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/manager/manager/templates/nodes/Link.html -------------------------------------------------------------------------------- /manager/manager/templates/nodes/List.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/manager/manager/templates/nodes/List.html -------------------------------------------------------------------------------- /manager/manager/templates/nodes/ListItem.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/manager/manager/templates/nodes/ListItem.html -------------------------------------------------------------------------------- /manager/manager/templates/nodes/Paragraph.html: -------------------------------------------------------------------------------- 1 | {% load stencila %} 2 |
{% include './content.html' %}
3 | -------------------------------------------------------------------------------- /manager/manager/templates/nodes/Quote.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/manager/manager/templates/nodes/Quote.html -------------------------------------------------------------------------------- /manager/manager/templates/nodes/QuoteBlock.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/manager/manager/templates/nodes/QuoteBlock.html -------------------------------------------------------------------------------- /manager/manager/templates/nodes/Strong.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/manager/manager/templates/nodes/Strong.html -------------------------------------------------------------------------------- /manager/manager/templates/nodes/Subscript.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/manager/manager/templates/nodes/Subscript.html -------------------------------------------------------------------------------- /manager/manager/templates/nodes/Superscript.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/manager/manager/templates/nodes/Superscript.html -------------------------------------------------------------------------------- /manager/manager/templates/nodes/content.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/manager/manager/templates/nodes/content.html -------------------------------------------------------------------------------- /manager/manager/templates/serializers/_dump_errors.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/manager/manager/templates/serializers/_dump_errors.html -------------------------------------------------------------------------------- /manager/manager/templates/serializers/_field.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/manager/manager/templates/serializers/_field.html -------------------------------------------------------------------------------- /manager/manager/templates/serializers/_field_control.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/manager/manager/templates/serializers/_field_control.html -------------------------------------------------------------------------------- /manager/manager/templates/serializers/_field_label.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/manager/manager/templates/serializers/_field_label.html -------------------------------------------------------------------------------- /manager/manager/templates/serializers/_serializer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/manager/manager/templates/serializers/_serializer.html -------------------------------------------------------------------------------- /manager/manager/templates/swagger.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/manager/manager/templates/swagger.html -------------------------------------------------------------------------------- /manager/manager/templatetags/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /manager/manager/templatetags/stencila.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/manager/manager/templatetags/stencila.py -------------------------------------------------------------------------------- /manager/manager/testing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/manager/manager/testing.py -------------------------------------------------------------------------------- /manager/manager/themes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/manager/manager/themes.py -------------------------------------------------------------------------------- /manager/manager/ui/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/manager/manager/ui/views.py -------------------------------------------------------------------------------- /manager/manager/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/manager/manager/urls.py -------------------------------------------------------------------------------- /manager/manager/urls_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/manager/manager/urls_tests.py -------------------------------------------------------------------------------- /manager/manager/version.py: -------------------------------------------------------------------------------- 1 | __version__ = "4.47.19" 2 | -------------------------------------------------------------------------------- /manager/manager/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/manager/manager/wsgi.py -------------------------------------------------------------------------------- /manager/mypy.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/manager/mypy.ini -------------------------------------------------------------------------------- /manager/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/manager/package-lock.json -------------------------------------------------------------------------------- /manager/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/manager/package.json -------------------------------------------------------------------------------- /manager/postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/manager/postcss.config.js -------------------------------------------------------------------------------- /manager/projects/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /manager/projects/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/manager/projects/admin.py -------------------------------------------------------------------------------- /manager/projects/api/serializers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/manager/projects/api/serializers.py -------------------------------------------------------------------------------- /manager/projects/api/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/manager/projects/api/urls.py -------------------------------------------------------------------------------- /manager/projects/api/views/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /manager/projects/api/views/files.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/manager/projects/api/views/files.py -------------------------------------------------------------------------------- /manager/projects/api/views/nodes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/manager/projects/api/views/nodes.py -------------------------------------------------------------------------------- /manager/projects/api/views/nodes_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/manager/projects/api/views/nodes_tests.py -------------------------------------------------------------------------------- /manager/projects/api/views/projects.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/manager/projects/api/views/projects.py -------------------------------------------------------------------------------- /manager/projects/api/views/projects_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/manager/projects/api/views/projects_tests.py -------------------------------------------------------------------------------- /manager/projects/api/views/providers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/manager/projects/api/views/providers.py -------------------------------------------------------------------------------- /manager/projects/api/views/reviews.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/manager/projects/api/views/reviews.py -------------------------------------------------------------------------------- /manager/projects/api/views/snapshots.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/manager/projects/api/views/snapshots.py -------------------------------------------------------------------------------- /manager/projects/api/views/sources.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/manager/projects/api/views/sources.py -------------------------------------------------------------------------------- /manager/projects/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/manager/projects/apps.py -------------------------------------------------------------------------------- /manager/projects/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/manager/projects/migrations/0001_initial.py -------------------------------------------------------------------------------- /manager/projects/migrations/0002_auto_20200710_0310.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/manager/projects/migrations/0002_auto_20200710_0310.py -------------------------------------------------------------------------------- /manager/projects/migrations/0003_auto_20200712_2322.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/manager/projects/migrations/0003_auto_20200712_2322.py -------------------------------------------------------------------------------- /manager/projects/migrations/0004_add_project_temporary.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/manager/projects/migrations/0004_add_project_temporary.py -------------------------------------------------------------------------------- /manager/projects/migrations/0005_auto_20200720_0116.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/manager/projects/migrations/0005_auto_20200720_0116.py -------------------------------------------------------------------------------- /manager/projects/migrations/0006_auto_20200722_0510.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/manager/projects/migrations/0006_auto_20200722_0510.py -------------------------------------------------------------------------------- /manager/projects/migrations/0007_auto_20200722_2249.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/manager/projects/migrations/0007_auto_20200722_2249.py -------------------------------------------------------------------------------- /manager/projects/migrations/0008_auto_20200727_0732.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/manager/projects/migrations/0008_auto_20200727_0732.py -------------------------------------------------------------------------------- /manager/projects/migrations/0009_auto_20200727_2346.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/manager/projects/migrations/0009_auto_20200727_2346.py -------------------------------------------------------------------------------- /manager/projects/migrations/0010_auto_20200804_0354.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/manager/projects/migrations/0010_auto_20200804_0354.py -------------------------------------------------------------------------------- /manager/projects/migrations/0011_auto_20200806_0605.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/manager/projects/migrations/0011_auto_20200806_0605.py -------------------------------------------------------------------------------- /manager/projects/migrations/0012_auto_20200807_1934.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/manager/projects/migrations/0012_auto_20200807_1934.py -------------------------------------------------------------------------------- /manager/projects/migrations/0013_auto_20200827_2212.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/manager/projects/migrations/0013_auto_20200827_2212.py -------------------------------------------------------------------------------- /manager/projects/migrations/0014_node.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/manager/projects/migrations/0014_node.py -------------------------------------------------------------------------------- /manager/projects/migrations/0015_auto_20201007_0337.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/manager/projects/migrations/0015_auto_20201007_0337.py -------------------------------------------------------------------------------- /manager/projects/migrations/0016_auto_20201016_0326.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/manager/projects/migrations/0016_auto_20201016_0326.py -------------------------------------------------------------------------------- /manager/projects/migrations/0017_auto_20201019_2343.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/manager/projects/migrations/0017_auto_20201019_2343.py -------------------------------------------------------------------------------- /manager/projects/migrations/0018_auto_20201023_0530.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/manager/projects/migrations/0018_auto_20201023_0530.py -------------------------------------------------------------------------------- /manager/projects/migrations/0019_googlesheetssource.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/manager/projects/migrations/0019_googlesheetssource.py -------------------------------------------------------------------------------- /manager/projects/migrations/0020_auto_20201116_1450.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/manager/projects/migrations/0020_auto_20201116_1450.py -------------------------------------------------------------------------------- /manager/projects/migrations/0021_auto_20201119_0526.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/manager/projects/migrations/0021_auto_20201119_0526.py -------------------------------------------------------------------------------- /manager/projects/migrations/0022_review.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/manager/projects/migrations/0022_review.py -------------------------------------------------------------------------------- /manager/projects/migrations/0023_auto_20201202_0349.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/manager/projects/migrations/0023_auto_20201202_0349.py -------------------------------------------------------------------------------- /manager/projects/migrations/0024_auto_20201206_0819.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/manager/projects/migrations/0024_auto_20201206_0819.py -------------------------------------------------------------------------------- /manager/projects/migrations/0025_auto_20201211_2319.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/manager/projects/migrations/0025_auto_20201211_2319.py -------------------------------------------------------------------------------- /manager/projects/migrations/0026_project_featured.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/manager/projects/migrations/0026_project_featured.py -------------------------------------------------------------------------------- /manager/projects/migrations/0027_auto_20210203_2054.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/manager/projects/migrations/0027_auto_20210203_2054.py -------------------------------------------------------------------------------- /manager/projects/migrations/0028_auto_20210210_0230.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/manager/projects/migrations/0028_auto_20210210_0230.py -------------------------------------------------------------------------------- /manager/projects/migrations/0029_auto_20210210_2340.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/manager/projects/migrations/0029_auto_20210210_2340.py -------------------------------------------------------------------------------- /manager/projects/migrations/0030_auto_20210315_2230.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/manager/projects/migrations/0030_auto_20210315_2230.py -------------------------------------------------------------------------------- /manager/projects/migrations/0031_auto_20210328_2341.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/manager/projects/migrations/0031_auto_20210328_2341.py -------------------------------------------------------------------------------- /manager/projects/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /manager/projects/models/files.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/manager/projects/models/files.py -------------------------------------------------------------------------------- /manager/projects/models/nodes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/manager/projects/models/nodes.py -------------------------------------------------------------------------------- /manager/projects/models/projects.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/manager/projects/models/projects.py -------------------------------------------------------------------------------- /manager/projects/models/projects_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/manager/projects/models/projects_tests.py -------------------------------------------------------------------------------- /manager/projects/models/providers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/manager/projects/models/providers.py -------------------------------------------------------------------------------- /manager/projects/models/reviews.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/manager/projects/models/reviews.py -------------------------------------------------------------------------------- /manager/projects/models/snapshots.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/manager/projects/models/snapshots.py -------------------------------------------------------------------------------- /manager/projects/models/sources.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/manager/projects/models/sources.py -------------------------------------------------------------------------------- /manager/projects/models/sources_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/manager/projects/models/sources_tests.py -------------------------------------------------------------------------------- /manager/projects/paths.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/manager/projects/paths.py -------------------------------------------------------------------------------- /manager/projects/tasks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/manager/projects/tasks.py -------------------------------------------------------------------------------- /manager/projects/templates/projects/_agents_list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/manager/projects/templates/projects/_agents_list.html -------------------------------------------------------------------------------- /manager/projects/templates/projects/_assets_empty_state.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/manager/projects/templates/projects/_assets_empty_state.html -------------------------------------------------------------------------------- /manager/projects/templates/projects/_collaborator_role_help_tip.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/manager/projects/templates/projects/_collaborator_role_help_tip.html -------------------------------------------------------------------------------- /manager/projects/templates/projects/_create_form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/manager/projects/templates/projects/_create_form.html -------------------------------------------------------------------------------- /manager/projects/templates/projects/_destroy_form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/manager/projects/templates/projects/_destroy_form.html -------------------------------------------------------------------------------- /manager/projects/templates/projects/_image_current.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/manager/projects/templates/projects/_image_current.html -------------------------------------------------------------------------------- /manager/projects/templates/projects/_image_list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/manager/projects/templates/projects/_image_list.html -------------------------------------------------------------------------------- /manager/projects/templates/projects/_project_description.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/manager/projects/templates/projects/_project_description.html -------------------------------------------------------------------------------- /manager/projects/templates/projects/_project_hero.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/manager/projects/templates/projects/_project_hero.html -------------------------------------------------------------------------------- /manager/projects/templates/projects/_project_list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/manager/projects/templates/projects/_project_list.html -------------------------------------------------------------------------------- /manager/projects/templates/projects/_project_list_item.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/manager/projects/templates/projects/_project_list_item.html -------------------------------------------------------------------------------- /manager/projects/templates/projects/_save_form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/manager/projects/templates/projects/_save_form.html -------------------------------------------------------------------------------- /manager/projects/templates/projects/_sharing_public_form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/manager/projects/templates/projects/_sharing_public_form.html -------------------------------------------------------------------------------- /manager/projects/templates/projects/_update_content_form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/manager/projects/templates/projects/_update_content_form.html -------------------------------------------------------------------------------- /manager/projects/templates/projects/_update_execution_form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/manager/projects/templates/projects/_update_execution_form.html -------------------------------------------------------------------------------- /manager/projects/templates/projects/_update_profile_form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/manager/projects/templates/projects/_update_profile_form.html -------------------------------------------------------------------------------- /manager/projects/templates/projects/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/manager/projects/templates/projects/base.html -------------------------------------------------------------------------------- /manager/projects/templates/projects/create.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/manager/projects/templates/projects/create.html -------------------------------------------------------------------------------- /manager/projects/templates/projects/files/_actions_menu.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/manager/projects/templates/projects/files/_actions_menu.html -------------------------------------------------------------------------------- /manager/projects/templates/projects/files/_convert.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/manager/projects/templates/projects/files/_convert.html -------------------------------------------------------------------------------- /manager/projects/templates/projects/files/_convert_dropdown_menu.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/manager/projects/templates/projects/files/_convert_dropdown_menu.html -------------------------------------------------------------------------------- /manager/projects/templates/projects/files/_format_icon.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/manager/projects/templates/projects/files/_format_icon.html -------------------------------------------------------------------------------- /manager/projects/templates/projects/files/_list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/manager/projects/templates/projects/files/_list.html -------------------------------------------------------------------------------- /manager/projects/templates/projects/files/convert.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/manager/projects/templates/projects/files/convert.html -------------------------------------------------------------------------------- /manager/projects/templates/projects/files/destroy.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/manager/projects/templates/projects/files/destroy.html -------------------------------------------------------------------------------- /manager/projects/templates/projects/files/list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/manager/projects/templates/projects/files/list.html -------------------------------------------------------------------------------- /manager/projects/templates/projects/files/retrieve.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/manager/projects/templates/projects/files/retrieve.html -------------------------------------------------------------------------------- /manager/projects/templates/projects/files/upload.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/manager/projects/templates/projects/files/upload.html -------------------------------------------------------------------------------- /manager/projects/templates/projects/image.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/manager/projects/templates/projects/image.html -------------------------------------------------------------------------------- /manager/projects/templates/projects/jobs/_job_filter.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/manager/projects/templates/projects/jobs/_job_filter.html -------------------------------------------------------------------------------- /manager/projects/templates/projects/jobs/_job_item.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/manager/projects/templates/projects/jobs/_job_item.html -------------------------------------------------------------------------------- /manager/projects/templates/projects/jobs/_job_list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/manager/projects/templates/projects/jobs/_job_list.html -------------------------------------------------------------------------------- /manager/projects/templates/projects/jobs/_job_method_tag.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/manager/projects/templates/projects/jobs/_job_method_tag.html -------------------------------------------------------------------------------- /manager/projects/templates/projects/jobs/_job_status_tag.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/manager/projects/templates/projects/jobs/_job_status_tag.html -------------------------------------------------------------------------------- /manager/projects/templates/projects/jobs/_progress_buttons.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/manager/projects/templates/projects/jobs/_progress_buttons.html -------------------------------------------------------------------------------- /manager/projects/templates/projects/jobs/_retrieve.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/manager/projects/templates/projects/jobs/_retrieve.html -------------------------------------------------------------------------------- /manager/projects/templates/projects/jobs/list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/manager/projects/templates/projects/jobs/list.html -------------------------------------------------------------------------------- /manager/projects/templates/projects/jobs/retrieve.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/manager/projects/templates/projects/jobs/retrieve.html -------------------------------------------------------------------------------- /manager/projects/templates/projects/jobs/summary/_job_summary.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/manager/projects/templates/projects/jobs/summary/_job_summary.html -------------------------------------------------------------------------------- /manager/projects/templates/projects/jobs/summary/_pull_summary.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/manager/projects/templates/projects/jobs/summary/_pull_summary.html -------------------------------------------------------------------------------- /manager/projects/templates/projects/list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/manager/projects/templates/projects/list.html -------------------------------------------------------------------------------- /manager/projects/templates/projects/messages/temporary_project.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/manager/projects/templates/projects/messages/temporary_project.html -------------------------------------------------------------------------------- /manager/projects/templates/projects/nodes/retrieve.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/manager/projects/templates/projects/nodes/retrieve.html -------------------------------------------------------------------------------- /manager/projects/templates/projects/open.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/manager/projects/templates/projects/open.html -------------------------------------------------------------------------------- /manager/projects/templates/projects/providers/github/_repo_search.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/manager/projects/templates/projects/providers/github/_repo_search.html -------------------------------------------------------------------------------- /manager/projects/templates/projects/providers/github/_repo_search_results.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/manager/projects/templates/projects/providers/github/_repo_search_results.html -------------------------------------------------------------------------------- /manager/projects/templates/projects/reviews/_comment.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/manager/projects/templates/projects/reviews/_comment.html -------------------------------------------------------------------------------- /manager/projects/templates/projects/reviews/_overview.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/manager/projects/templates/projects/reviews/_overview.html -------------------------------------------------------------------------------- /manager/projects/templates/projects/reviews/_retrieve.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/manager/projects/templates/projects/reviews/_retrieve.html -------------------------------------------------------------------------------- /manager/projects/templates/projects/reviews/_retrieve_accepted.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/manager/projects/templates/projects/reviews/_retrieve_accepted.html -------------------------------------------------------------------------------- /manager/projects/templates/projects/reviews/_retrieve_cancelled.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/manager/projects/templates/projects/reviews/_retrieve_cancelled.html -------------------------------------------------------------------------------- /manager/projects/templates/projects/reviews/_retrieve_declined.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/manager/projects/templates/projects/reviews/_retrieve_declined.html -------------------------------------------------------------------------------- /manager/projects/templates/projects/reviews/_retrieve_extract_form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/manager/projects/templates/projects/reviews/_retrieve_extract_form.html -------------------------------------------------------------------------------- /manager/projects/templates/projects/reviews/_retrieve_extract_github.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/manager/projects/templates/projects/reviews/_retrieve_extract_github.html -------------------------------------------------------------------------------- /manager/projects/templates/projects/reviews/_retrieve_extract_google.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/manager/projects/templates/projects/reviews/_retrieve_extract_google.html -------------------------------------------------------------------------------- /manager/projects/templates/projects/reviews/_retrieve_extracted.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/manager/projects/templates/projects/reviews/_retrieve_extracted.html -------------------------------------------------------------------------------- /manager/projects/templates/projects/reviews/_retrieve_pending.html: -------------------------------------------------------------------------------- 1 | {% include "./_retrieve_extract_form.html" %} 2 | -------------------------------------------------------------------------------- /manager/projects/templates/projects/reviews/_retrieve_requested.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/manager/projects/templates/projects/reviews/_retrieve_requested.html -------------------------------------------------------------------------------- /manager/projects/templates/projects/reviews/create.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/manager/projects/templates/projects/reviews/create.html -------------------------------------------------------------------------------- /manager/projects/templates/projects/reviews/list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/manager/projects/templates/projects/reviews/list.html -------------------------------------------------------------------------------- /manager/projects/templates/projects/reviews/retrieve.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/manager/projects/templates/projects/reviews/retrieve.html -------------------------------------------------------------------------------- /manager/projects/templates/projects/save.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/manager/projects/templates/projects/save.html -------------------------------------------------------------------------------- /manager/projects/templates/projects/sharing.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/manager/projects/templates/projects/sharing.html -------------------------------------------------------------------------------- /manager/projects/templates/projects/snapshots/_list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/manager/projects/templates/projects/snapshots/_list.html -------------------------------------------------------------------------------- /manager/projects/templates/projects/snapshots/_retrieve.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/manager/projects/templates/projects/snapshots/_retrieve.html -------------------------------------------------------------------------------- /manager/projects/templates/projects/snapshots/list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/manager/projects/templates/projects/snapshots/list.html -------------------------------------------------------------------------------- /manager/projects/templates/projects/snapshots/retrieve.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/manager/projects/templates/projects/snapshots/retrieve.html -------------------------------------------------------------------------------- /manager/projects/templates/projects/sources/_cancel_modal.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/manager/projects/templates/projects/sources/_cancel_modal.html -------------------------------------------------------------------------------- /manager/projects/templates/projects/sources/_create_common_fields.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/manager/projects/templates/projects/sources/_create_common_fields.html -------------------------------------------------------------------------------- /manager/projects/templates/projects/sources/_create_elife_fields.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/manager/projects/templates/projects/sources/_create_elife_fields.html -------------------------------------------------------------------------------- /manager/projects/templates/projects/sources/_create_fields.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/manager/projects/templates/projects/sources/_create_fields.html -------------------------------------------------------------------------------- /manager/projects/templates/projects/sources/_create_file_modal.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/manager/projects/templates/projects/sources/_create_file_modal.html -------------------------------------------------------------------------------- /manager/projects/templates/projects/sources/_create_github_fields.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/manager/projects/templates/projects/sources/_create_github_fields.html -------------------------------------------------------------------------------- /manager/projects/templates/projects/sources/_create_googledocs_fields.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/manager/projects/templates/projects/sources/_create_googledocs_fields.html -------------------------------------------------------------------------------- /manager/projects/templates/projects/sources/_create_googledrive_fields.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/manager/projects/templates/projects/sources/_create_googledrive_fields.html -------------------------------------------------------------------------------- /manager/projects/templates/projects/sources/_create_googledrive_picker.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/manager/projects/templates/projects/sources/_create_googledrive_picker.html -------------------------------------------------------------------------------- /manager/projects/templates/projects/sources/_create_googlesheets_fields.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/manager/projects/templates/projects/sources/_create_googlesheets_fields.html -------------------------------------------------------------------------------- /manager/projects/templates/projects/sources/_create_menu.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/manager/projects/templates/projects/sources/_create_menu.html -------------------------------------------------------------------------------- /manager/projects/templates/projects/sources/_create_plos_fields.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/manager/projects/templates/projects/sources/_create_plos_fields.html -------------------------------------------------------------------------------- /manager/projects/templates/projects/sources/_create_url_fields.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/manager/projects/templates/projects/sources/_create_url_fields.html -------------------------------------------------------------------------------- /manager/projects/templates/projects/sources/_destroy_modal.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/manager/projects/templates/projects/sources/_destroy_modal.html -------------------------------------------------------------------------------- /manager/projects/templates/projects/sources/_list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/manager/projects/templates/projects/sources/_list.html -------------------------------------------------------------------------------- /manager/projects/templates/projects/sources/_rename_fields.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/manager/projects/templates/projects/sources/_rename_fields.html -------------------------------------------------------------------------------- /manager/projects/templates/projects/sources/_retrieve.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/manager/projects/templates/projects/sources/_retrieve.html -------------------------------------------------------------------------------- /manager/projects/templates/projects/sources/_source_actions_menu.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/manager/projects/templates/projects/sources/_source_actions_menu.html -------------------------------------------------------------------------------- /manager/projects/templates/projects/sources/_source_type_icon.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/manager/projects/templates/projects/sources/_source_type_icon.html -------------------------------------------------------------------------------- /manager/projects/templates/projects/sources/create.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/manager/projects/templates/projects/sources/create.html -------------------------------------------------------------------------------- /manager/projects/templates/projects/sources/destroy.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/manager/projects/templates/projects/sources/destroy.html -------------------------------------------------------------------------------- /manager/projects/templates/projects/sources/list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/manager/projects/templates/projects/sources/list.html -------------------------------------------------------------------------------- /manager/projects/templates/projects/sources/rename.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/manager/projects/templates/projects/sources/rename.html -------------------------------------------------------------------------------- /manager/projects/templates/projects/sources/retrieve.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/manager/projects/templates/projects/sources/retrieve.html -------------------------------------------------------------------------------- /manager/projects/templates/projects/sources/upload.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/manager/projects/templates/projects/sources/upload.html -------------------------------------------------------------------------------- /manager/projects/templates/projects/update.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/manager/projects/templates/projects/update.html -------------------------------------------------------------------------------- /manager/projects/ui/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/manager/projects/ui/urls.py -------------------------------------------------------------------------------- /manager/projects/ui/views/files.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/manager/projects/ui/views/files.py -------------------------------------------------------------------------------- /manager/projects/ui/views/jobs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/manager/projects/ui/views/jobs.py -------------------------------------------------------------------------------- /manager/projects/ui/views/messages.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/manager/projects/ui/views/messages.py -------------------------------------------------------------------------------- /manager/projects/ui/views/projects.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/manager/projects/ui/views/projects.py -------------------------------------------------------------------------------- /manager/projects/ui/views/reviews.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/manager/projects/ui/views/reviews.py -------------------------------------------------------------------------------- /manager/projects/ui/views/snapshots.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/manager/projects/ui/views/snapshots.py -------------------------------------------------------------------------------- /manager/projects/ui/views/sources.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/manager/projects/ui/views/sources.py -------------------------------------------------------------------------------- /manager/pytest.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/manager/pytest.ini -------------------------------------------------------------------------------- /manager/requirements-dev.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/manager/requirements-dev.txt -------------------------------------------------------------------------------- /manager/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/manager/requirements.txt -------------------------------------------------------------------------------- /manager/rollup.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/manager/rollup.config.js -------------------------------------------------------------------------------- /manager/scripts/create_dev_db.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/manager/scripts/create_dev_db.py -------------------------------------------------------------------------------- /manager/scripts/create_page_snaps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/manager/scripts/create_page_snaps.py -------------------------------------------------------------------------------- /manager/scripts/data/amitabh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/manager/scripts/data/amitabh.png -------------------------------------------------------------------------------- /manager/scripts/data/an-org.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/manager/scripts/data/an-org.png -------------------------------------------------------------------------------- /manager/scripts/data/anna.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/manager/scripts/data/anna.png -------------------------------------------------------------------------------- /manager/scripts/data/biotech-corp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/manager/scripts/data/biotech-corp.png -------------------------------------------------------------------------------- /manager/scripts/data/daniel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/manager/scripts/data/daniel.png -------------------------------------------------------------------------------- /manager/scripts/data/hapuku-university.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/manager/scripts/data/hapuku-university.png -------------------------------------------------------------------------------- /manager/scripts/data/main.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/manager/scripts/data/main.md -------------------------------------------------------------------------------- /manager/scripts/data/pewsey-publishing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/manager/scripts/data/pewsey-publishing.png -------------------------------------------------------------------------------- /manager/scripts/data/zahra.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/manager/scripts/data/zahra.png -------------------------------------------------------------------------------- /manager/scripts/get_api_schema.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/manager/scripts/get_api_schema.py -------------------------------------------------------------------------------- /manager/users/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /manager/users/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/manager/users/admin.py -------------------------------------------------------------------------------- /manager/users/api/serializers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/manager/users/api/serializers.py -------------------------------------------------------------------------------- /manager/users/api/serializers_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/manager/users/api/serializers_test.py -------------------------------------------------------------------------------- /manager/users/api/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/manager/users/api/urls.py -------------------------------------------------------------------------------- /manager/users/api/views/features.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/manager/users/api/views/features.py -------------------------------------------------------------------------------- /manager/users/api/views/features_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/manager/users/api/views/features_tests.py -------------------------------------------------------------------------------- /manager/users/api/views/invites.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/manager/users/api/views/invites.py -------------------------------------------------------------------------------- /manager/users/api/views/tokens.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/manager/users/api/views/tokens.py -------------------------------------------------------------------------------- /manager/users/api/views/tokens_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/manager/users/api/views/tokens_tests.py -------------------------------------------------------------------------------- /manager/users/api/views/users.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/manager/users/api/views/users.py -------------------------------------------------------------------------------- /manager/users/api/views/users_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/manager/users/api/views/users_tests.py -------------------------------------------------------------------------------- /manager/users/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/manager/users/apps.py -------------------------------------------------------------------------------- /manager/users/auth_backends.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/manager/users/auth_backends.py -------------------------------------------------------------------------------- /manager/users/management/commands/merge_users.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/manager/users/management/commands/merge_users.py -------------------------------------------------------------------------------- /manager/users/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/manager/users/migrations/0001_initial.py -------------------------------------------------------------------------------- /manager/users/migrations/0002_anonuser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/manager/users/migrations/0002_anonuser.py -------------------------------------------------------------------------------- /manager/users/migrations/0003_auto_20201005_1924.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/manager/users/migrations/0003_auto_20201005_1924.py -------------------------------------------------------------------------------- /manager/users/migrations/0004_features.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/manager/users/migrations/0004_features.py -------------------------------------------------------------------------------- /manager/users/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /manager/users/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/manager/users/models.py -------------------------------------------------------------------------------- /manager/users/signals.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/manager/users/signals.py -------------------------------------------------------------------------------- /manager/users/socialaccount/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /manager/users/socialaccount/adapter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/manager/users/socialaccount/adapter.py -------------------------------------------------------------------------------- /manager/users/socialaccount/adapter_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/manager/users/socialaccount/adapter_tests.py -------------------------------------------------------------------------------- /manager/users/socialaccount/providers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /manager/users/socialaccount/providers/gas/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /manager/users/socialaccount/providers/gas/provider.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/manager/users/socialaccount/providers/gas/provider.py -------------------------------------------------------------------------------- /manager/users/socialaccount/tokens.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/manager/users/socialaccount/tokens.py -------------------------------------------------------------------------------- /manager/users/socialaccount/tokens_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/manager/users/socialaccount/tokens_tests.py -------------------------------------------------------------------------------- /manager/users/tasks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/manager/users/tasks.py -------------------------------------------------------------------------------- /manager/users/tasks_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/manager/users/tasks_tests.py -------------------------------------------------------------------------------- /manager/users/templates/account/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/manager/users/templates/account/README.md -------------------------------------------------------------------------------- /manager/users/templates/account/account_inactive.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/manager/users/templates/account/account_inactive.html -------------------------------------------------------------------------------- /manager/users/templates/account/email.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/manager/users/templates/account/email.html -------------------------------------------------------------------------------- /manager/users/templates/account/email/email_confirmation_message.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/manager/users/templates/account/email/email_confirmation_message.txt -------------------------------------------------------------------------------- /manager/users/templates/account/email/email_confirmation_signup_message.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/manager/users/templates/account/email/email_confirmation_signup_message.txt -------------------------------------------------------------------------------- /manager/users/templates/account/email/email_confirmation_signup_subject.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/manager/users/templates/account/email/email_confirmation_signup_subject.txt -------------------------------------------------------------------------------- /manager/users/templates/account/email/email_confirmation_subject.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/manager/users/templates/account/email/email_confirmation_subject.txt -------------------------------------------------------------------------------- /manager/users/templates/account/email/password_reset_key_message.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/manager/users/templates/account/email/password_reset_key_message.txt -------------------------------------------------------------------------------- /manager/users/templates/account/email/password_reset_key_subject.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/manager/users/templates/account/email/password_reset_key_subject.txt -------------------------------------------------------------------------------- /manager/users/templates/account/email_confirm.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/manager/users/templates/account/email_confirm.html -------------------------------------------------------------------------------- /manager/users/templates/account/messages/cannot_delete_primary_email.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/manager/users/templates/account/messages/cannot_delete_primary_email.txt -------------------------------------------------------------------------------- /manager/users/templates/account/messages/email_confirmation_sent.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/manager/users/templates/account/messages/email_confirmation_sent.txt -------------------------------------------------------------------------------- /manager/users/templates/account/messages/email_confirmed.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/manager/users/templates/account/messages/email_confirmed.txt -------------------------------------------------------------------------------- /manager/users/templates/account/messages/email_deleted.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/manager/users/templates/account/messages/email_deleted.txt -------------------------------------------------------------------------------- /manager/users/templates/account/messages/logged_in.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/manager/users/templates/account/messages/logged_in.txt -------------------------------------------------------------------------------- /manager/users/templates/account/messages/logged_out.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/manager/users/templates/account/messages/logged_out.txt -------------------------------------------------------------------------------- /manager/users/templates/account/messages/password_changed.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/manager/users/templates/account/messages/password_changed.txt -------------------------------------------------------------------------------- /manager/users/templates/account/messages/password_set.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/manager/users/templates/account/messages/password_set.txt -------------------------------------------------------------------------------- /manager/users/templates/account/messages/primary_email_set.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/manager/users/templates/account/messages/primary_email_set.txt -------------------------------------------------------------------------------- /manager/users/templates/account/messages/unverified_primary_email.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/manager/users/templates/account/messages/unverified_primary_email.txt -------------------------------------------------------------------------------- /manager/users/templates/account/password_change.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/manager/users/templates/account/password_change.html -------------------------------------------------------------------------------- /manager/users/templates/account/password_reset.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/manager/users/templates/account/password_reset.html -------------------------------------------------------------------------------- /manager/users/templates/account/password_reset_done.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/manager/users/templates/account/password_reset_done.html -------------------------------------------------------------------------------- /manager/users/templates/account/password_reset_from_key.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/manager/users/templates/account/password_reset_from_key.html -------------------------------------------------------------------------------- /manager/users/templates/account/password_reset_from_key_done.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/manager/users/templates/account/password_reset_from_key_done.html -------------------------------------------------------------------------------- /manager/users/templates/account/password_set.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/manager/users/templates/account/password_set.html -------------------------------------------------------------------------------- /manager/users/templates/account/signup_closed.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/manager/users/templates/account/signup_closed.html -------------------------------------------------------------------------------- /manager/users/templates/account/snippets/already_logged_in.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/manager/users/templates/account/snippets/already_logged_in.html -------------------------------------------------------------------------------- /manager/users/templates/account/verification_sent.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/manager/users/templates/account/verification_sent.html -------------------------------------------------------------------------------- /manager/users/templates/account/verified_email_required.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/manager/users/templates/account/verified_email_required.html -------------------------------------------------------------------------------- /manager/users/templates/invitations/_create.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/manager/users/templates/invitations/_create.html -------------------------------------------------------------------------------- /manager/users/templates/invitations/_list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/manager/users/templates/invitations/_list.html -------------------------------------------------------------------------------- /manager/users/templates/invitations/create.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/manager/users/templates/invitations/create.html -------------------------------------------------------------------------------- /manager/users/templates/invitations/email/email_invite_message.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/manager/users/templates/invitations/email/email_invite_message.txt -------------------------------------------------------------------------------- /manager/users/templates/invitations/email/email_invite_subject.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/manager/users/templates/invitations/email/email_invite_subject.txt -------------------------------------------------------------------------------- /manager/users/templates/invitations/list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/manager/users/templates/invitations/list.html -------------------------------------------------------------------------------- /manager/users/templates/invitations/messages/invite_accepted.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/manager/users/templates/invitations/messages/invite_accepted.txt -------------------------------------------------------------------------------- /manager/users/templates/invitations/messages/invite_already_accepted.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/manager/users/templates/invitations/messages/invite_already_accepted.txt -------------------------------------------------------------------------------- /manager/users/templates/invitations/messages/invite_expired.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/manager/users/templates/invitations/messages/invite_expired.txt -------------------------------------------------------------------------------- /manager/users/templates/invitations/messages/invite_invalid.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/manager/users/templates/invitations/messages/invite_invalid.txt -------------------------------------------------------------------------------- /manager/users/templates/socialaccount/_provider_buttons.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/manager/users/templates/socialaccount/_provider_buttons.html -------------------------------------------------------------------------------- /manager/users/templates/socialaccount/connections.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/manager/users/templates/socialaccount/connections.html -------------------------------------------------------------------------------- /manager/users/templates/socialaccount/signup.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/manager/users/templates/socialaccount/signup.html -------------------------------------------------------------------------------- /manager/users/templates/users/_search.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/manager/users/templates/users/_search.html -------------------------------------------------------------------------------- /manager/users/templates/users/_search_results.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/manager/users/templates/users/_search_results.html -------------------------------------------------------------------------------- /manager/users/templates/users/features.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/manager/users/templates/users/features.html -------------------------------------------------------------------------------- /manager/users/templates/users/signin.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/manager/users/templates/users/signin.html -------------------------------------------------------------------------------- /manager/users/templates/users/signout.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/manager/users/templates/users/signout.html -------------------------------------------------------------------------------- /manager/users/templates/users/signup.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/manager/users/templates/users/signup.html -------------------------------------------------------------------------------- /manager/users/templates/users/token_missing.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/manager/users/templates/users/token_missing.html -------------------------------------------------------------------------------- /manager/users/templates/users/username_change.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/manager/users/templates/users/username_change.html -------------------------------------------------------------------------------- /manager/users/ui/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /manager/users/ui/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/manager/users/ui/urls.py -------------------------------------------------------------------------------- /manager/users/ui/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/manager/users/ui/views.py -------------------------------------------------------------------------------- /manager/users/ui/views_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/manager/users/ui/views_tests.py -------------------------------------------------------------------------------- /monitor/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/monitor/Dockerfile -------------------------------------------------------------------------------- /monitor/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/monitor/Makefile -------------------------------------------------------------------------------- /monitor/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/monitor/README.md -------------------------------------------------------------------------------- /monitor/prometheus.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/monitor/prometheus.yml -------------------------------------------------------------------------------- /overseer/.flake8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/overseer/.flake8 -------------------------------------------------------------------------------- /overseer/.gitignore: -------------------------------------------------------------------------------- 1 | venv 2 | -------------------------------------------------------------------------------- /overseer/.pydocstyle.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/overseer/.pydocstyle.ini -------------------------------------------------------------------------------- /overseer/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/overseer/Dockerfile -------------------------------------------------------------------------------- /overseer/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/overseer/Makefile -------------------------------------------------------------------------------- /overseer/overseer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/overseer/overseer.py -------------------------------------------------------------------------------- /overseer/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/overseer/pyproject.toml -------------------------------------------------------------------------------- /overseer/requirements-dev.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/overseer/requirements-dev.txt -------------------------------------------------------------------------------- /overseer/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/overseer/requirements.txt -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/package.json -------------------------------------------------------------------------------- /prepare-release.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/prepare-release.sh -------------------------------------------------------------------------------- /publish-release.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/publish-release.sh -------------------------------------------------------------------------------- /router/413.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/router/413.html -------------------------------------------------------------------------------- /router/50x.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/router/50x.html -------------------------------------------------------------------------------- /router/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/router/Dockerfile -------------------------------------------------------------------------------- /router/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/router/Makefile -------------------------------------------------------------------------------- /router/entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/router/entrypoint.sh -------------------------------------------------------------------------------- /router/nginx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/router/nginx.conf -------------------------------------------------------------------------------- /scheduler/.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/scheduler/.dockerignore -------------------------------------------------------------------------------- /scheduler/.gitignore: -------------------------------------------------------------------------------- 1 | venv 2 | -------------------------------------------------------------------------------- /scheduler/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/scheduler/Dockerfile -------------------------------------------------------------------------------- /scheduler/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/scheduler/Makefile -------------------------------------------------------------------------------- /scheduler/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/scheduler/requirements.txt -------------------------------------------------------------------------------- /scheduler/scheduler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/scheduler/scheduler.py -------------------------------------------------------------------------------- /scheduler/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/scheduler/settings.py -------------------------------------------------------------------------------- /steward/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/steward/Dockerfile -------------------------------------------------------------------------------- /steward/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/steward/Makefile -------------------------------------------------------------------------------- /steward/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/steward/README.md -------------------------------------------------------------------------------- /steward/cmd.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/steward/cmd.sh -------------------------------------------------------------------------------- /steward/delcache.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/steward/delcache.sh -------------------------------------------------------------------------------- /storage/.gitignore: -------------------------------------------------------------------------------- 1 | /data 2 | -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/tsconfig.json -------------------------------------------------------------------------------- /worker/.coveragerc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/worker/.coveragerc -------------------------------------------------------------------------------- /worker/.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/worker/.dockerignore -------------------------------------------------------------------------------- /worker/.flake8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/worker/.flake8 -------------------------------------------------------------------------------- /worker/.gitignore: -------------------------------------------------------------------------------- 1 | snapshots 2 | working 3 | -------------------------------------------------------------------------------- /worker/.isort.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/worker/.isort.cfg -------------------------------------------------------------------------------- /worker/.pydocstyle.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/worker/.pydocstyle.ini -------------------------------------------------------------------------------- /worker/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/worker/Dockerfile -------------------------------------------------------------------------------- /worker/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/worker/Makefile -------------------------------------------------------------------------------- /worker/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/worker/README.md -------------------------------------------------------------------------------- /worker/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/worker/config.py -------------------------------------------------------------------------------- /worker/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/worker/conftest.py -------------------------------------------------------------------------------- /worker/jobs/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /worker/jobs/archive.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/worker/jobs/archive.py -------------------------------------------------------------------------------- /worker/jobs/base/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /worker/jobs/base/job.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/worker/jobs/base/job.py -------------------------------------------------------------------------------- /worker/jobs/base/job_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/worker/jobs/base/job_test.py -------------------------------------------------------------------------------- /worker/jobs/base/subprocess_job.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/worker/jobs/base/subprocess_job.py -------------------------------------------------------------------------------- /worker/jobs/base/subprocess_job_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/worker/jobs/base/subprocess_job_test.py -------------------------------------------------------------------------------- /worker/jobs/cassettes/convert_test/test_to_gdoc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/worker/jobs/cassettes/convert_test/test_to_gdoc.yaml -------------------------------------------------------------------------------- /worker/jobs/cassettes/pin_test/test_run.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/worker/jobs/cassettes/pin_test/test_run.yaml -------------------------------------------------------------------------------- /worker/jobs/cassettes/register_test/test_bad_credentials.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/worker/jobs/cassettes/register_test/test_bad_credentials.yaml -------------------------------------------------------------------------------- /worker/jobs/cassettes/register_test/test_register_article.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/worker/jobs/cassettes/register_test/test_register_article.yaml -------------------------------------------------------------------------------- /worker/jobs/cassettes/register_test/test_register_review.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/worker/jobs/cassettes/register_test/test_register_review.yaml -------------------------------------------------------------------------------- /worker/jobs/cassettes/register_test/test_register_utf8.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/worker/jobs/cassettes/register_test/test_register_utf8.yaml -------------------------------------------------------------------------------- /worker/jobs/clean.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/worker/jobs/clean.py -------------------------------------------------------------------------------- /worker/jobs/clean_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/worker/jobs/clean_test.py -------------------------------------------------------------------------------- /worker/jobs/convert.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/worker/jobs/convert.py -------------------------------------------------------------------------------- /worker/jobs/convert_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/worker/jobs/convert_test.py -------------------------------------------------------------------------------- /worker/jobs/extract/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/worker/jobs/extract/__init__.py -------------------------------------------------------------------------------- /worker/jobs/extract/__init__test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/worker/jobs/extract/__init__test.py -------------------------------------------------------------------------------- /worker/jobs/extract/cassettes/gdrive_test/test_fixture_2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/worker/jobs/extract/cassettes/gdrive_test/test_fixture_2.yaml -------------------------------------------------------------------------------- /worker/jobs/extract/cassettes/github_test/test_get_review.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/worker/jobs/extract/cassettes/github_test/test_get_review.yaml -------------------------------------------------------------------------------- /worker/jobs/extract/gdrive.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/worker/jobs/extract/gdrive.py -------------------------------------------------------------------------------- /worker/jobs/extract/gdrive_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/worker/jobs/extract/gdrive_test.py -------------------------------------------------------------------------------- /worker/jobs/extract/github.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/worker/jobs/extract/github.py -------------------------------------------------------------------------------- /worker/jobs/extract/github_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/worker/jobs/extract/github_test.py -------------------------------------------------------------------------------- /worker/jobs/pin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/worker/jobs/pin.py -------------------------------------------------------------------------------- /worker/jobs/pin_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/worker/jobs/pin_test.py -------------------------------------------------------------------------------- /worker/jobs/pull/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/worker/jobs/pull/__init__.py -------------------------------------------------------------------------------- /worker/jobs/pull/__init__test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/worker/jobs/pull/__init__test.py -------------------------------------------------------------------------------- /worker/jobs/pull/cassettes/elife_test/test_ok.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/worker/jobs/pull/cassettes/elife_test/test_ok.yaml -------------------------------------------------------------------------------- /worker/jobs/pull/cassettes/gdoc_test/test_ok.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/worker/jobs/pull/cassettes/gdoc_test/test_ok.yaml -------------------------------------------------------------------------------- /worker/jobs/pull/cassettes/gdrive_test/test_folder.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/worker/jobs/pull/cassettes/gdrive_test/test_folder.yaml -------------------------------------------------------------------------------- /worker/jobs/pull/cassettes/github_test/stencila-test-archive.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/worker/jobs/pull/cassettes/github_test/stencila-test-archive.zip -------------------------------------------------------------------------------- /worker/jobs/pull/cassettes/github_test/test_public_repo.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/worker/jobs/pull/cassettes/github_test/test_public_repo.yaml -------------------------------------------------------------------------------- /worker/jobs/pull/cassettes/github_test/test_single_file.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/worker/jobs/pull/cassettes/github_test/test_single_file.yaml -------------------------------------------------------------------------------- /worker/jobs/pull/cassettes/github_test/test_subdirectory.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/worker/jobs/pull/cassettes/github_test/test_subdirectory.yaml -------------------------------------------------------------------------------- /worker/jobs/pull/cassettes/gsheet_test/test_ok.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/worker/jobs/pull/cassettes/gsheet_test/test_ok.yaml -------------------------------------------------------------------------------- /worker/jobs/pull/cassettes/http_test/test_extension_from_mimetype.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/worker/jobs/pull/cassettes/http_test/test_extension_from_mimetype.yaml -------------------------------------------------------------------------------- /worker/jobs/pull/cassettes/plos_test/test_ok.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/worker/jobs/pull/cassettes/plos_test/test_ok.yaml -------------------------------------------------------------------------------- /worker/jobs/pull/elife.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/worker/jobs/pull/elife.py -------------------------------------------------------------------------------- /worker/jobs/pull/elife_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/worker/jobs/pull/elife_test.py -------------------------------------------------------------------------------- /worker/jobs/pull/fixtures/.gitignore: -------------------------------------------------------------------------------- 1 | logistic_models-master.zip 2 | -------------------------------------------------------------------------------- /worker/jobs/pull/fixtures/1000-maniacs.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/worker/jobs/pull/fixtures/1000-maniacs.zip -------------------------------------------------------------------------------- /worker/jobs/pull/fixtures/make.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/worker/jobs/pull/fixtures/make.py -------------------------------------------------------------------------------- /worker/jobs/pull/gdoc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/worker/jobs/pull/gdoc.py -------------------------------------------------------------------------------- /worker/jobs/pull/gdoc_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/worker/jobs/pull/gdoc_test.py -------------------------------------------------------------------------------- /worker/jobs/pull/gdrive.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/worker/jobs/pull/gdrive.py -------------------------------------------------------------------------------- /worker/jobs/pull/gdrive_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/worker/jobs/pull/gdrive_test.py -------------------------------------------------------------------------------- /worker/jobs/pull/github.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/worker/jobs/pull/github.py -------------------------------------------------------------------------------- /worker/jobs/pull/github_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/worker/jobs/pull/github_test.py -------------------------------------------------------------------------------- /worker/jobs/pull/gsheet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/worker/jobs/pull/gsheet.py -------------------------------------------------------------------------------- /worker/jobs/pull/gsheet_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/worker/jobs/pull/gsheet_test.py -------------------------------------------------------------------------------- /worker/jobs/pull/http.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/worker/jobs/pull/http.py -------------------------------------------------------------------------------- /worker/jobs/pull/http_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/worker/jobs/pull/http_test.py -------------------------------------------------------------------------------- /worker/jobs/pull/plos.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/worker/jobs/pull/plos.py -------------------------------------------------------------------------------- /worker/jobs/pull/plos_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/worker/jobs/pull/plos_test.py -------------------------------------------------------------------------------- /worker/jobs/pull/upload.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/worker/jobs/pull/upload.py -------------------------------------------------------------------------------- /worker/jobs/pull/upload_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/worker/jobs/pull/upload_test.py -------------------------------------------------------------------------------- /worker/jobs/push/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/worker/jobs/push/__init__.py -------------------------------------------------------------------------------- /worker/jobs/push/cassettes/gdoc_test/test_ok.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/worker/jobs/push/cassettes/gdoc_test/test_ok.yaml -------------------------------------------------------------------------------- /worker/jobs/push/gdoc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/worker/jobs/push/gdoc.py -------------------------------------------------------------------------------- /worker/jobs/push/gdoc_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/worker/jobs/push/gdoc_test.py -------------------------------------------------------------------------------- /worker/jobs/register.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/worker/jobs/register.py -------------------------------------------------------------------------------- /worker/jobs/register_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/worker/jobs/register_test.py -------------------------------------------------------------------------------- /worker/jobs/session/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /worker/jobs/session/groundsman.Dockerfile: -------------------------------------------------------------------------------- 1 | FROM alpine 2 | RUN apk add --no-cache curl unzip 3 | COPY groundsman.sh . 4 | 5 | -------------------------------------------------------------------------------- /worker/jobs/session/groundsman.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/worker/jobs/session/groundsman.sh -------------------------------------------------------------------------------- /worker/jobs/session/kubernetes_session.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/worker/jobs/session/kubernetes_session.py -------------------------------------------------------------------------------- /worker/jobs/session/kubernetes_session_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/worker/jobs/session/kubernetes_session_test.py -------------------------------------------------------------------------------- /worker/jobs/session/session.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/worker/jobs/session/session.py -------------------------------------------------------------------------------- /worker/jobs/session/subprocess_session.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/worker/jobs/session/subprocess_session.py -------------------------------------------------------------------------------- /worker/jobs/sleep.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/worker/jobs/sleep.py -------------------------------------------------------------------------------- /worker/jobs/sleep_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/worker/jobs/sleep_test.py -------------------------------------------------------------------------------- /worker/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/worker/package-lock.json -------------------------------------------------------------------------------- /worker/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/worker/package.json -------------------------------------------------------------------------------- /worker/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/worker/pyproject.toml -------------------------------------------------------------------------------- /worker/requirements-dev.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/worker/requirements-dev.txt -------------------------------------------------------------------------------- /worker/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/worker/requirements.txt -------------------------------------------------------------------------------- /worker/util/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /worker/util/cache.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/worker/util/cache.py -------------------------------------------------------------------------------- /worker/util/files.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/worker/util/files.py -------------------------------------------------------------------------------- /worker/util/files_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/worker/util/files_test.py -------------------------------------------------------------------------------- /worker/util/gapis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/worker/util/gapis.py -------------------------------------------------------------------------------- /worker/util/github_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/worker/util/github_api.py -------------------------------------------------------------------------------- /worker/util/http.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/worker/util/http.py -------------------------------------------------------------------------------- /worker/util/http_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/worker/util/http_test.py -------------------------------------------------------------------------------- /worker/util/network.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/worker/util/network.py -------------------------------------------------------------------------------- /worker/util/serialize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/worker/util/serialize.py -------------------------------------------------------------------------------- /worker/util/serialize_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/worker/util/serialize_test.py -------------------------------------------------------------------------------- /worker/util/working_directory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/worker/util/working_directory.py -------------------------------------------------------------------------------- /worker/worker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencila/hub/HEAD/worker/worker.py --------------------------------------------------------------------------------