├── .github └── workflows │ ├── publish_wps.yaml │ └── requirements.txt ├── .gitignore ├── CONTRIBUTING.md ├── LICENSE ├── Makefile ├── README.md ├── env.yml ├── make.bat ├── pyproject.toml └── source ├── Development ├── Diagnostics │ ├── lfric_diagnostics.rst │ └── um_stashmaster.rst ├── TestSuites │ ├── jules.rst │ ├── lfric_apps.rst │ ├── lfric_core.rst │ ├── multi-repo_testing.rst │ ├── ukca.rst │ └── um.rst ├── developing_change.rst ├── diagnostics.rst ├── documentation.rst ├── inputs.rst ├── jules_docs.rst ├── kgo.rst ├── macros.rst ├── metadata_guidance.rst ├── planning_your_change.rst ├── rose_stem.rst ├── sphinx_docs.rst ├── temp_logicals.rst ├── testing.rst └── um_docs.rst ├── FurtherDetails ├── ai.rst ├── change_notes.rst ├── code_of_conduct.rst ├── coding_style.rst ├── contributing.rst ├── dos_donts.rst ├── glossary.rst ├── index.rst ├── support.rst └── who.rst ├── Reviewers ├── codereview.rst ├── committinglinkedtickets.rst ├── curaterelease.rst ├── howtocommit.rst ├── images │ ├── commit_process.png │ └── gh_screenshots │ │ ├── merge_dark.png │ │ ├── merge_light.png │ │ ├── prevent_updates_disabled_dark.png │ │ ├── prevent_updates_disabled_light.png │ │ ├── revert_dark.png │ │ ├── revert_light.png │ │ ├── rulesets_dark.png │ │ └── rulesets_light.png ├── index.rst ├── nightlytesting.rst ├── releases │ ├── jules_release.rst │ ├── lfric_apps_release.rst │ ├── mule_release.rst │ ├── partner_testing.rst │ ├── release_notes.rst │ ├── shared_accounts.rst │ ├── shumlib_release.rst │ ├── software_stack.rst │ ├── standard_suites.rst │ ├── stash_browser.rst │ ├── um_main_release.rst │ ├── um_test_release.rst │ ├── umdp_release.rst │ ├── updating_prebuilds.rst │ └── wiki_pages.rst └── scitechreview.rst ├── WorkingPractices ├── approvals.rst ├── branch_migration.rst ├── final_steps.rst ├── forking.rst ├── gh_authorisation.rst ├── gh_dev_init.rst ├── images │ ├── UMDWP_no_links.jpg │ ├── development_cycle.png │ ├── development_cycle_dark.png │ ├── gh_screenshots │ │ ├── all_branches_dark.png │ │ ├── all_branches_light.png │ │ ├── branch_pr_dark.png │ │ ├── branch_pr_light.png │ │ ├── ci_dark.png │ │ ├── ci_light.png │ │ ├── clone_button_dark.png │ │ ├── clone_button_light.png │ │ ├── collaborators_dark.png │ │ ├── collaborators_light.png │ │ ├── contribute_dark.png │ │ ├── contribute_light.png │ │ ├── disable_actions_dark.png │ │ ├── disable_actions_light.png │ │ ├── fork_button_dark.png │ │ ├── fork_button_light.png │ │ ├── fork_page_dark.png │ │ ├── fork_page_light.png │ │ ├── issues_dark.png │ │ ├── issues_light.png │ │ ├── maintainer_edit_dark.png │ │ ├── maintainer_edit_light.png │ │ ├── mo_bot_dark.png │ │ ├── mo_bot_light.png │ │ ├── new_branch_dark.png │ │ ├── new_branch_light.png │ │ ├── project_scitech_dark.png │ │ ├── project_scitech_light.png │ │ ├── rerequest_dark.png │ │ ├── rerequest_light.png │ │ ├── review_cog_dark.png │ │ ├── review_cog_light.png │ │ ├── sync_fork_dark.png │ │ ├── sync_fork_light.png │ │ ├── update_branch_dark.png │ │ └── update_branch_light.png │ ├── new_ticket.png │ ├── repo_circles.png │ ├── repo_circles.svg │ ├── repos.png │ └── repos_dark.png ├── maintaining_forks.rst ├── multi_repository.rst ├── pull_requests.rst ├── reviews.rst └── working_practices.rst ├── _static ├── MO_MASTER_black_mono_for_light_backg_RBG.png ├── MO_MASTER_for_dark_backg_RBG.png ├── MO_SQUARE_black_mono_for_light_backg_RBG.png ├── MO_SQUARE_for_dark_backg_RBG.png └── custom.css ├── _templates ├── crown-copyright.html └── show-accessibility.html ├── accessibility.rst ├── conf.py └── index.rst /.github/workflows/publish_wps.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetOffice/simulation-systems/HEAD/.github/workflows/publish_wps.yaml -------------------------------------------------------------------------------- /.github/workflows/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetOffice/simulation-systems/HEAD/.github/workflows/requirements.txt -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetOffice/simulation-systems/HEAD/.gitignore -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetOffice/simulation-systems/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetOffice/simulation-systems/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetOffice/simulation-systems/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetOffice/simulation-systems/HEAD/README.md -------------------------------------------------------------------------------- /env.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetOffice/simulation-systems/HEAD/env.yml -------------------------------------------------------------------------------- /make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetOffice/simulation-systems/HEAD/make.bat -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetOffice/simulation-systems/HEAD/pyproject.toml -------------------------------------------------------------------------------- /source/Development/Diagnostics/lfric_diagnostics.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetOffice/simulation-systems/HEAD/source/Development/Diagnostics/lfric_diagnostics.rst -------------------------------------------------------------------------------- /source/Development/Diagnostics/um_stashmaster.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetOffice/simulation-systems/HEAD/source/Development/Diagnostics/um_stashmaster.rst -------------------------------------------------------------------------------- /source/Development/TestSuites/jules.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetOffice/simulation-systems/HEAD/source/Development/TestSuites/jules.rst -------------------------------------------------------------------------------- /source/Development/TestSuites/lfric_apps.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetOffice/simulation-systems/HEAD/source/Development/TestSuites/lfric_apps.rst -------------------------------------------------------------------------------- /source/Development/TestSuites/lfric_core.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetOffice/simulation-systems/HEAD/source/Development/TestSuites/lfric_core.rst -------------------------------------------------------------------------------- /source/Development/TestSuites/multi-repo_testing.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetOffice/simulation-systems/HEAD/source/Development/TestSuites/multi-repo_testing.rst -------------------------------------------------------------------------------- /source/Development/TestSuites/ukca.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetOffice/simulation-systems/HEAD/source/Development/TestSuites/ukca.rst -------------------------------------------------------------------------------- /source/Development/TestSuites/um.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetOffice/simulation-systems/HEAD/source/Development/TestSuites/um.rst -------------------------------------------------------------------------------- /source/Development/developing_change.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetOffice/simulation-systems/HEAD/source/Development/developing_change.rst -------------------------------------------------------------------------------- /source/Development/diagnostics.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetOffice/simulation-systems/HEAD/source/Development/diagnostics.rst -------------------------------------------------------------------------------- /source/Development/documentation.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetOffice/simulation-systems/HEAD/source/Development/documentation.rst -------------------------------------------------------------------------------- /source/Development/inputs.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetOffice/simulation-systems/HEAD/source/Development/inputs.rst -------------------------------------------------------------------------------- /source/Development/jules_docs.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetOffice/simulation-systems/HEAD/source/Development/jules_docs.rst -------------------------------------------------------------------------------- /source/Development/kgo.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetOffice/simulation-systems/HEAD/source/Development/kgo.rst -------------------------------------------------------------------------------- /source/Development/macros.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetOffice/simulation-systems/HEAD/source/Development/macros.rst -------------------------------------------------------------------------------- /source/Development/metadata_guidance.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetOffice/simulation-systems/HEAD/source/Development/metadata_guidance.rst -------------------------------------------------------------------------------- /source/Development/planning_your_change.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetOffice/simulation-systems/HEAD/source/Development/planning_your_change.rst -------------------------------------------------------------------------------- /source/Development/rose_stem.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetOffice/simulation-systems/HEAD/source/Development/rose_stem.rst -------------------------------------------------------------------------------- /source/Development/sphinx_docs.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetOffice/simulation-systems/HEAD/source/Development/sphinx_docs.rst -------------------------------------------------------------------------------- /source/Development/temp_logicals.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetOffice/simulation-systems/HEAD/source/Development/temp_logicals.rst -------------------------------------------------------------------------------- /source/Development/testing.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetOffice/simulation-systems/HEAD/source/Development/testing.rst -------------------------------------------------------------------------------- /source/Development/um_docs.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetOffice/simulation-systems/HEAD/source/Development/um_docs.rst -------------------------------------------------------------------------------- /source/FurtherDetails/ai.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetOffice/simulation-systems/HEAD/source/FurtherDetails/ai.rst -------------------------------------------------------------------------------- /source/FurtherDetails/change_notes.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetOffice/simulation-systems/HEAD/source/FurtherDetails/change_notes.rst -------------------------------------------------------------------------------- /source/FurtherDetails/code_of_conduct.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetOffice/simulation-systems/HEAD/source/FurtherDetails/code_of_conduct.rst -------------------------------------------------------------------------------- /source/FurtherDetails/coding_style.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetOffice/simulation-systems/HEAD/source/FurtherDetails/coding_style.rst -------------------------------------------------------------------------------- /source/FurtherDetails/contributing.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetOffice/simulation-systems/HEAD/source/FurtherDetails/contributing.rst -------------------------------------------------------------------------------- /source/FurtherDetails/dos_donts.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetOffice/simulation-systems/HEAD/source/FurtherDetails/dos_donts.rst -------------------------------------------------------------------------------- /source/FurtherDetails/glossary.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetOffice/simulation-systems/HEAD/source/FurtherDetails/glossary.rst -------------------------------------------------------------------------------- /source/FurtherDetails/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetOffice/simulation-systems/HEAD/source/FurtherDetails/index.rst -------------------------------------------------------------------------------- /source/FurtherDetails/support.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetOffice/simulation-systems/HEAD/source/FurtherDetails/support.rst -------------------------------------------------------------------------------- /source/FurtherDetails/who.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetOffice/simulation-systems/HEAD/source/FurtherDetails/who.rst -------------------------------------------------------------------------------- /source/Reviewers/codereview.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetOffice/simulation-systems/HEAD/source/Reviewers/codereview.rst -------------------------------------------------------------------------------- /source/Reviewers/committinglinkedtickets.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetOffice/simulation-systems/HEAD/source/Reviewers/committinglinkedtickets.rst -------------------------------------------------------------------------------- /source/Reviewers/curaterelease.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetOffice/simulation-systems/HEAD/source/Reviewers/curaterelease.rst -------------------------------------------------------------------------------- /source/Reviewers/howtocommit.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetOffice/simulation-systems/HEAD/source/Reviewers/howtocommit.rst -------------------------------------------------------------------------------- /source/Reviewers/images/commit_process.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetOffice/simulation-systems/HEAD/source/Reviewers/images/commit_process.png -------------------------------------------------------------------------------- /source/Reviewers/images/gh_screenshots/merge_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetOffice/simulation-systems/HEAD/source/Reviewers/images/gh_screenshots/merge_dark.png -------------------------------------------------------------------------------- /source/Reviewers/images/gh_screenshots/merge_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetOffice/simulation-systems/HEAD/source/Reviewers/images/gh_screenshots/merge_light.png -------------------------------------------------------------------------------- /source/Reviewers/images/gh_screenshots/prevent_updates_disabled_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetOffice/simulation-systems/HEAD/source/Reviewers/images/gh_screenshots/prevent_updates_disabled_dark.png -------------------------------------------------------------------------------- /source/Reviewers/images/gh_screenshots/prevent_updates_disabled_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetOffice/simulation-systems/HEAD/source/Reviewers/images/gh_screenshots/prevent_updates_disabled_light.png -------------------------------------------------------------------------------- /source/Reviewers/images/gh_screenshots/revert_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetOffice/simulation-systems/HEAD/source/Reviewers/images/gh_screenshots/revert_dark.png -------------------------------------------------------------------------------- /source/Reviewers/images/gh_screenshots/revert_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetOffice/simulation-systems/HEAD/source/Reviewers/images/gh_screenshots/revert_light.png -------------------------------------------------------------------------------- /source/Reviewers/images/gh_screenshots/rulesets_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetOffice/simulation-systems/HEAD/source/Reviewers/images/gh_screenshots/rulesets_dark.png -------------------------------------------------------------------------------- /source/Reviewers/images/gh_screenshots/rulesets_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetOffice/simulation-systems/HEAD/source/Reviewers/images/gh_screenshots/rulesets_light.png -------------------------------------------------------------------------------- /source/Reviewers/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetOffice/simulation-systems/HEAD/source/Reviewers/index.rst -------------------------------------------------------------------------------- /source/Reviewers/nightlytesting.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetOffice/simulation-systems/HEAD/source/Reviewers/nightlytesting.rst -------------------------------------------------------------------------------- /source/Reviewers/releases/jules_release.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetOffice/simulation-systems/HEAD/source/Reviewers/releases/jules_release.rst -------------------------------------------------------------------------------- /source/Reviewers/releases/lfric_apps_release.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetOffice/simulation-systems/HEAD/source/Reviewers/releases/lfric_apps_release.rst -------------------------------------------------------------------------------- /source/Reviewers/releases/mule_release.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetOffice/simulation-systems/HEAD/source/Reviewers/releases/mule_release.rst -------------------------------------------------------------------------------- /source/Reviewers/releases/partner_testing.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetOffice/simulation-systems/HEAD/source/Reviewers/releases/partner_testing.rst -------------------------------------------------------------------------------- /source/Reviewers/releases/release_notes.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetOffice/simulation-systems/HEAD/source/Reviewers/releases/release_notes.rst -------------------------------------------------------------------------------- /source/Reviewers/releases/shared_accounts.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetOffice/simulation-systems/HEAD/source/Reviewers/releases/shared_accounts.rst -------------------------------------------------------------------------------- /source/Reviewers/releases/shumlib_release.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetOffice/simulation-systems/HEAD/source/Reviewers/releases/shumlib_release.rst -------------------------------------------------------------------------------- /source/Reviewers/releases/software_stack.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetOffice/simulation-systems/HEAD/source/Reviewers/releases/software_stack.rst -------------------------------------------------------------------------------- /source/Reviewers/releases/standard_suites.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetOffice/simulation-systems/HEAD/source/Reviewers/releases/standard_suites.rst -------------------------------------------------------------------------------- /source/Reviewers/releases/stash_browser.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetOffice/simulation-systems/HEAD/source/Reviewers/releases/stash_browser.rst -------------------------------------------------------------------------------- /source/Reviewers/releases/um_main_release.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetOffice/simulation-systems/HEAD/source/Reviewers/releases/um_main_release.rst -------------------------------------------------------------------------------- /source/Reviewers/releases/um_test_release.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetOffice/simulation-systems/HEAD/source/Reviewers/releases/um_test_release.rst -------------------------------------------------------------------------------- /source/Reviewers/releases/umdp_release.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetOffice/simulation-systems/HEAD/source/Reviewers/releases/umdp_release.rst -------------------------------------------------------------------------------- /source/Reviewers/releases/updating_prebuilds.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetOffice/simulation-systems/HEAD/source/Reviewers/releases/updating_prebuilds.rst -------------------------------------------------------------------------------- /source/Reviewers/releases/wiki_pages.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetOffice/simulation-systems/HEAD/source/Reviewers/releases/wiki_pages.rst -------------------------------------------------------------------------------- /source/Reviewers/scitechreview.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetOffice/simulation-systems/HEAD/source/Reviewers/scitechreview.rst -------------------------------------------------------------------------------- /source/WorkingPractices/approvals.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetOffice/simulation-systems/HEAD/source/WorkingPractices/approvals.rst -------------------------------------------------------------------------------- /source/WorkingPractices/branch_migration.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetOffice/simulation-systems/HEAD/source/WorkingPractices/branch_migration.rst -------------------------------------------------------------------------------- /source/WorkingPractices/final_steps.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetOffice/simulation-systems/HEAD/source/WorkingPractices/final_steps.rst -------------------------------------------------------------------------------- /source/WorkingPractices/forking.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetOffice/simulation-systems/HEAD/source/WorkingPractices/forking.rst -------------------------------------------------------------------------------- /source/WorkingPractices/gh_authorisation.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetOffice/simulation-systems/HEAD/source/WorkingPractices/gh_authorisation.rst -------------------------------------------------------------------------------- /source/WorkingPractices/gh_dev_init.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetOffice/simulation-systems/HEAD/source/WorkingPractices/gh_dev_init.rst -------------------------------------------------------------------------------- /source/WorkingPractices/images/UMDWP_no_links.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetOffice/simulation-systems/HEAD/source/WorkingPractices/images/UMDWP_no_links.jpg -------------------------------------------------------------------------------- /source/WorkingPractices/images/development_cycle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetOffice/simulation-systems/HEAD/source/WorkingPractices/images/development_cycle.png -------------------------------------------------------------------------------- /source/WorkingPractices/images/development_cycle_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetOffice/simulation-systems/HEAD/source/WorkingPractices/images/development_cycle_dark.png -------------------------------------------------------------------------------- /source/WorkingPractices/images/gh_screenshots/all_branches_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetOffice/simulation-systems/HEAD/source/WorkingPractices/images/gh_screenshots/all_branches_dark.png -------------------------------------------------------------------------------- /source/WorkingPractices/images/gh_screenshots/all_branches_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetOffice/simulation-systems/HEAD/source/WorkingPractices/images/gh_screenshots/all_branches_light.png -------------------------------------------------------------------------------- /source/WorkingPractices/images/gh_screenshots/branch_pr_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetOffice/simulation-systems/HEAD/source/WorkingPractices/images/gh_screenshots/branch_pr_dark.png -------------------------------------------------------------------------------- /source/WorkingPractices/images/gh_screenshots/branch_pr_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetOffice/simulation-systems/HEAD/source/WorkingPractices/images/gh_screenshots/branch_pr_light.png -------------------------------------------------------------------------------- /source/WorkingPractices/images/gh_screenshots/ci_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetOffice/simulation-systems/HEAD/source/WorkingPractices/images/gh_screenshots/ci_dark.png -------------------------------------------------------------------------------- /source/WorkingPractices/images/gh_screenshots/ci_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetOffice/simulation-systems/HEAD/source/WorkingPractices/images/gh_screenshots/ci_light.png -------------------------------------------------------------------------------- /source/WorkingPractices/images/gh_screenshots/clone_button_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetOffice/simulation-systems/HEAD/source/WorkingPractices/images/gh_screenshots/clone_button_dark.png -------------------------------------------------------------------------------- /source/WorkingPractices/images/gh_screenshots/clone_button_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetOffice/simulation-systems/HEAD/source/WorkingPractices/images/gh_screenshots/clone_button_light.png -------------------------------------------------------------------------------- /source/WorkingPractices/images/gh_screenshots/collaborators_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetOffice/simulation-systems/HEAD/source/WorkingPractices/images/gh_screenshots/collaborators_dark.png -------------------------------------------------------------------------------- /source/WorkingPractices/images/gh_screenshots/collaborators_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetOffice/simulation-systems/HEAD/source/WorkingPractices/images/gh_screenshots/collaborators_light.png -------------------------------------------------------------------------------- /source/WorkingPractices/images/gh_screenshots/contribute_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetOffice/simulation-systems/HEAD/source/WorkingPractices/images/gh_screenshots/contribute_dark.png -------------------------------------------------------------------------------- /source/WorkingPractices/images/gh_screenshots/contribute_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetOffice/simulation-systems/HEAD/source/WorkingPractices/images/gh_screenshots/contribute_light.png -------------------------------------------------------------------------------- /source/WorkingPractices/images/gh_screenshots/disable_actions_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetOffice/simulation-systems/HEAD/source/WorkingPractices/images/gh_screenshots/disable_actions_dark.png -------------------------------------------------------------------------------- /source/WorkingPractices/images/gh_screenshots/disable_actions_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetOffice/simulation-systems/HEAD/source/WorkingPractices/images/gh_screenshots/disable_actions_light.png -------------------------------------------------------------------------------- /source/WorkingPractices/images/gh_screenshots/fork_button_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetOffice/simulation-systems/HEAD/source/WorkingPractices/images/gh_screenshots/fork_button_dark.png -------------------------------------------------------------------------------- /source/WorkingPractices/images/gh_screenshots/fork_button_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetOffice/simulation-systems/HEAD/source/WorkingPractices/images/gh_screenshots/fork_button_light.png -------------------------------------------------------------------------------- /source/WorkingPractices/images/gh_screenshots/fork_page_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetOffice/simulation-systems/HEAD/source/WorkingPractices/images/gh_screenshots/fork_page_dark.png -------------------------------------------------------------------------------- /source/WorkingPractices/images/gh_screenshots/fork_page_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetOffice/simulation-systems/HEAD/source/WorkingPractices/images/gh_screenshots/fork_page_light.png -------------------------------------------------------------------------------- /source/WorkingPractices/images/gh_screenshots/issues_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetOffice/simulation-systems/HEAD/source/WorkingPractices/images/gh_screenshots/issues_dark.png -------------------------------------------------------------------------------- /source/WorkingPractices/images/gh_screenshots/issues_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetOffice/simulation-systems/HEAD/source/WorkingPractices/images/gh_screenshots/issues_light.png -------------------------------------------------------------------------------- /source/WorkingPractices/images/gh_screenshots/maintainer_edit_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetOffice/simulation-systems/HEAD/source/WorkingPractices/images/gh_screenshots/maintainer_edit_dark.png -------------------------------------------------------------------------------- /source/WorkingPractices/images/gh_screenshots/maintainer_edit_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetOffice/simulation-systems/HEAD/source/WorkingPractices/images/gh_screenshots/maintainer_edit_light.png -------------------------------------------------------------------------------- /source/WorkingPractices/images/gh_screenshots/mo_bot_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetOffice/simulation-systems/HEAD/source/WorkingPractices/images/gh_screenshots/mo_bot_dark.png -------------------------------------------------------------------------------- /source/WorkingPractices/images/gh_screenshots/mo_bot_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetOffice/simulation-systems/HEAD/source/WorkingPractices/images/gh_screenshots/mo_bot_light.png -------------------------------------------------------------------------------- /source/WorkingPractices/images/gh_screenshots/new_branch_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetOffice/simulation-systems/HEAD/source/WorkingPractices/images/gh_screenshots/new_branch_dark.png -------------------------------------------------------------------------------- /source/WorkingPractices/images/gh_screenshots/new_branch_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetOffice/simulation-systems/HEAD/source/WorkingPractices/images/gh_screenshots/new_branch_light.png -------------------------------------------------------------------------------- /source/WorkingPractices/images/gh_screenshots/project_scitech_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetOffice/simulation-systems/HEAD/source/WorkingPractices/images/gh_screenshots/project_scitech_dark.png -------------------------------------------------------------------------------- /source/WorkingPractices/images/gh_screenshots/project_scitech_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetOffice/simulation-systems/HEAD/source/WorkingPractices/images/gh_screenshots/project_scitech_light.png -------------------------------------------------------------------------------- /source/WorkingPractices/images/gh_screenshots/rerequest_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetOffice/simulation-systems/HEAD/source/WorkingPractices/images/gh_screenshots/rerequest_dark.png -------------------------------------------------------------------------------- /source/WorkingPractices/images/gh_screenshots/rerequest_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetOffice/simulation-systems/HEAD/source/WorkingPractices/images/gh_screenshots/rerequest_light.png -------------------------------------------------------------------------------- /source/WorkingPractices/images/gh_screenshots/review_cog_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetOffice/simulation-systems/HEAD/source/WorkingPractices/images/gh_screenshots/review_cog_dark.png -------------------------------------------------------------------------------- /source/WorkingPractices/images/gh_screenshots/review_cog_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetOffice/simulation-systems/HEAD/source/WorkingPractices/images/gh_screenshots/review_cog_light.png -------------------------------------------------------------------------------- /source/WorkingPractices/images/gh_screenshots/sync_fork_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetOffice/simulation-systems/HEAD/source/WorkingPractices/images/gh_screenshots/sync_fork_dark.png -------------------------------------------------------------------------------- /source/WorkingPractices/images/gh_screenshots/sync_fork_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetOffice/simulation-systems/HEAD/source/WorkingPractices/images/gh_screenshots/sync_fork_light.png -------------------------------------------------------------------------------- /source/WorkingPractices/images/gh_screenshots/update_branch_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetOffice/simulation-systems/HEAD/source/WorkingPractices/images/gh_screenshots/update_branch_dark.png -------------------------------------------------------------------------------- /source/WorkingPractices/images/gh_screenshots/update_branch_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetOffice/simulation-systems/HEAD/source/WorkingPractices/images/gh_screenshots/update_branch_light.png -------------------------------------------------------------------------------- /source/WorkingPractices/images/new_ticket.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetOffice/simulation-systems/HEAD/source/WorkingPractices/images/new_ticket.png -------------------------------------------------------------------------------- /source/WorkingPractices/images/repo_circles.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetOffice/simulation-systems/HEAD/source/WorkingPractices/images/repo_circles.png -------------------------------------------------------------------------------- /source/WorkingPractices/images/repo_circles.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetOffice/simulation-systems/HEAD/source/WorkingPractices/images/repo_circles.svg -------------------------------------------------------------------------------- /source/WorkingPractices/images/repos.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetOffice/simulation-systems/HEAD/source/WorkingPractices/images/repos.png -------------------------------------------------------------------------------- /source/WorkingPractices/images/repos_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetOffice/simulation-systems/HEAD/source/WorkingPractices/images/repos_dark.png -------------------------------------------------------------------------------- /source/WorkingPractices/maintaining_forks.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetOffice/simulation-systems/HEAD/source/WorkingPractices/maintaining_forks.rst -------------------------------------------------------------------------------- /source/WorkingPractices/multi_repository.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetOffice/simulation-systems/HEAD/source/WorkingPractices/multi_repository.rst -------------------------------------------------------------------------------- /source/WorkingPractices/pull_requests.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetOffice/simulation-systems/HEAD/source/WorkingPractices/pull_requests.rst -------------------------------------------------------------------------------- /source/WorkingPractices/reviews.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetOffice/simulation-systems/HEAD/source/WorkingPractices/reviews.rst -------------------------------------------------------------------------------- /source/WorkingPractices/working_practices.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetOffice/simulation-systems/HEAD/source/WorkingPractices/working_practices.rst -------------------------------------------------------------------------------- /source/_static/MO_MASTER_black_mono_for_light_backg_RBG.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetOffice/simulation-systems/HEAD/source/_static/MO_MASTER_black_mono_for_light_backg_RBG.png -------------------------------------------------------------------------------- /source/_static/MO_MASTER_for_dark_backg_RBG.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetOffice/simulation-systems/HEAD/source/_static/MO_MASTER_for_dark_backg_RBG.png -------------------------------------------------------------------------------- /source/_static/MO_SQUARE_black_mono_for_light_backg_RBG.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetOffice/simulation-systems/HEAD/source/_static/MO_SQUARE_black_mono_for_light_backg_RBG.png -------------------------------------------------------------------------------- /source/_static/MO_SQUARE_for_dark_backg_RBG.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetOffice/simulation-systems/HEAD/source/_static/MO_SQUARE_for_dark_backg_RBG.png -------------------------------------------------------------------------------- /source/_static/custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetOffice/simulation-systems/HEAD/source/_static/custom.css -------------------------------------------------------------------------------- /source/_templates/crown-copyright.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetOffice/simulation-systems/HEAD/source/_templates/crown-copyright.html -------------------------------------------------------------------------------- /source/_templates/show-accessibility.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetOffice/simulation-systems/HEAD/source/_templates/show-accessibility.html -------------------------------------------------------------------------------- /source/accessibility.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetOffice/simulation-systems/HEAD/source/accessibility.rst -------------------------------------------------------------------------------- /source/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetOffice/simulation-systems/HEAD/source/conf.py -------------------------------------------------------------------------------- /source/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetOffice/simulation-systems/HEAD/source/index.rst --------------------------------------------------------------------------------