From cf5fa64bd7f9f7174974e32460d34f5507970083 Mon Sep 17 00:00:00 2001 From: Sarina Canelake Date: Mon, 12 Sep 2022 17:32:31 -0400 Subject: [PATCH] fix: update repo paths that stayed in the edx org Co-authored-by: Kyle McCormick --- .annotation_safe_list.yml | 6 +++--- cms/envs/common.py | 2 +- common/static/common/js/jasmine.common.conf.js | 2 +- .../monitoring/scripts/generate_code_owner_mappings.py | 8 ++++---- lms/envs/common.py | 2 +- lms/static/sass/course/ccx_coach/_dashboard.scss | 2 +- lms/static/sass/shared/_alerts_pattern_library_shim.scss | 2 +- .../docs/decisions/0008-use-asymmetric-jwts.rst | 2 +- openedx/features/name_affirmation_api/README.rst | 2 +- openedx/features/name_affirmation_api/utils.py | 2 +- scripts/provision-demo-course.sh | 2 +- 11 files changed, 16 insertions(+), 16 deletions(-) diff --git a/.annotation_safe_list.yml b/.annotation_safe_list.yml index 4224462df3..a5e997bf2f 100644 --- a/.annotation_safe_list.yml +++ b/.annotation_safe_list.yml @@ -99,7 +99,7 @@ django_notify.Settings: django_notify.Subscription: ".. no_pii:": "No PII" -# Via django-openid-auth https://github.com/openedx/django-openid-auth +# Via django-openid-auth https://github.com/edx/django-openid-auth django_openid_auth.Association: ".. no_pii:": "No PII" django_openid_auth.Nonce: @@ -127,7 +127,7 @@ djcelery.TaskState: djcelery.WorkerState: ".. no_pii:": "No PII" -# Via edx-oauth2-provider https://github.com/openedx/edx-oauth2-provider +# Via edx-oauth2-provider https://github.com/edx/edx-oauth2-provider edx_oauth2_provider.TrustedClient: ".. no_pii:": "No PII" @@ -161,7 +161,7 @@ milestones.MilestoneRelationshipType: milestones.UserMilestone: ".. no_pii:": "No PII" -# Via Django OAuth2 Provider https://github.com/openedx/django-oauth2-provider +# Via Django OAuth2 Provider https://github.com/edx/django-oauth2-provider oauth2.Client: ".. no_pii:": "No PII" oauth2.AccessToken: diff --git a/cms/envs/common.py b/cms/envs/common.py index 918e38680e..bfae118aff 100644 --- a/cms/envs/common.py +++ b/cms/envs/common.py @@ -485,7 +485,7 @@ FEATURES = { # .. toggle_default: False # .. toggle_description: Whether to replace ID verification course/certificate requirement # with an in-course Honor Code agreement - # (https://github.com/openedx/edx-name-affirmation) + # (https://github.com/edx/edx-name-affirmation) # .. toggle_use_cases: open_edx # .. toggle_creation_date: 2022-02-15 # .. toggle_target_removal_date: None diff --git a/common/static/common/js/jasmine.common.conf.js b/common/static/common/js/jasmine.common.conf.js index bf3bfbfa5b..9688e1de86 100644 --- a/common/static/common/js/jasmine.common.conf.js +++ b/common/static/common/js/jasmine.common.conf.js @@ -4,7 +4,7 @@ // By default, fixtures are loaded from spec/javascripts/fixtures but in karma everything gets served from /base jasmine.getFixtures().fixturesPath = '/base/'; -// https://github.com/openedx/js-test-tool/blob/master/js_test_tool/templates/jasmine_test_runner.html#L10 +// https://github.com/edx/js-test-tool/blob/master/js_test_tool/templates/jasmine_test_runner.html#L10 // Stub out modal dialog alerts, which will prevent // us from accessing the test results in the DOM window.confirm = function() { return true; }; diff --git a/lms/djangoapps/monitoring/scripts/generate_code_owner_mappings.py b/lms/djangoapps/monitoring/scripts/generate_code_owner_mappings.py index ed5220a176..fa10dcea18 100644 --- a/lms/djangoapps/monitoring/scripts/generate_code_owner_mappings.py +++ b/lms/djangoapps/monitoring/scripts/generate_code_owner_mappings.py @@ -21,12 +21,12 @@ import click # the app code. Please add in alphabetical order. EDX_REPO_APPS = { 'bulk_grades': 'https://github.com/openedx/edx-bulk-grades', - 'coaching': 'https://github.com/openedx/platform-plugin-coaching', + 'coaching': 'https://github.com/edx/platform-plugin-coaching', 'completion': 'https://github.com/openedx/completion', 'config_models': 'https://github.com/openedx/django-config-models', 'consent': 'https://github.com/openedx/edx-enterprise', 'csrf': 'https://github.com/openedx/edx-drf-extensions', - 'edx_name_affirmation': 'https://github.com/openedx/edx-name-affirmation', + 'edx_name_affirmation': 'https://github.com/edx/edx-name-affirmation', 'edx_proctoring': 'https://github.com/openedx/edx-proctoring', 'edxval': 'https://github.com/openedx/edx-val', 'enterprise': 'https://github.com/openedx/edx-enterprise', @@ -34,9 +34,9 @@ EDX_REPO_APPS = { 'eventtracking': 'https://github.com/openedx/event-tracking', 'help_tokens': 'https://github.com/openedx/help-tokens', 'integrated_channels': 'https://github.com/openedx/edx-enterprise', - 'learner_pathway_progress': 'https://github.com/openedx/learner-pathway-progress', + 'learner_pathway_progress': 'https://github.com/edx/learner-pathway-progress', 'lti_consumer': 'https://github.com/openedx/xblock-lti-consumer', - 'notices': 'https://github.com/openedx/platform-plugin-notices', + 'notices': 'https://github.com/edx/platform-plugin-notices', 'organizations': 'https://github.com/openedx/edx-organizations', 'search': 'https://github.com/openedx/edx-search', 'super_csv': 'https://github.com/openedx/super-csv', diff --git a/lms/envs/common.py b/lms/envs/common.py index d98eef9c1b..555a157049 100644 --- a/lms/envs/common.py +++ b/lms/envs/common.py @@ -965,7 +965,7 @@ FEATURES = { # .. toggle_implementation: DjangoSetting # .. toggle_default: False # .. toggle_description: Whether to display honor code agreement for learners before their first grade assignment - # (https://github.com/openedx/edx-name-affirmation) + # (https://github.com/edx/edx-name-affirmation) # .. toggle_use_cases: open_edx # .. toggle_creation_date: 2022-02-15 # .. toggle_target_removal_date: None diff --git a/lms/static/sass/course/ccx_coach/_dashboard.scss b/lms/static/sass/course/ccx_coach/_dashboard.scss index 446dcf2c2f..729da74acd 100644 --- a/lms/static/sass/course/ccx_coach/_dashboard.scss +++ b/lms/static/sass/course/ccx_coach/_dashboard.scss @@ -63,7 +63,7 @@ table.ccx-schedule { form.ccx-form { line-height: 1.5; - // inspiration was taken from https://github.com/openedx/ux-pattern-library + // inspiration was taken from https://github.com/edx/ux-pattern-library select { @include font-size(16); diff --git a/lms/static/sass/shared/_alerts_pattern_library_shim.scss b/lms/static/sass/shared/_alerts_pattern_library_shim.scss index 8f78b0a66a..e22217d639 100644 --- a/lms/static/sass/shared/_alerts_pattern_library_shim.scss +++ b/lms/static/sass/shared/_alerts_pattern_library_shim.scss @@ -1,7 +1,7 @@ // lms alerts // This file contains "I want alerts that look like the pattern library" sass // and should be replaced when moving to the patter library proper -// https://github.com/openedx/ux-pattern-library/blob/master/pattern-library/sass/patterns/_alerts.scss +// https://github.com/edx/ux-pattern-library/blob/master/pattern-library/sass/patterns/_alerts.scss // ------------------------------ // edX Pattern Library: Utilities - Alerts diff --git a/openedx/core/djangoapps/oauth_dispatch/docs/decisions/0008-use-asymmetric-jwts.rst b/openedx/core/djangoapps/oauth_dispatch/docs/decisions/0008-use-asymmetric-jwts.rst index 198ac45c16..d65aaaf4a9 100644 --- a/openedx/core/djangoapps/oauth_dispatch/docs/decisions/0008-use-asymmetric-jwts.rst +++ b/openedx/core/djangoapps/oauth_dispatch/docs/decisions/0008-use-asymmetric-jwts.rst @@ -30,7 +30,7 @@ client_secret`_ (privately shared with the OAuth Provider). Although this somewh above since each OAuth Client can no longer create tokens verifiable by other Clients, it does not allow a Client to forward a verifiable token to other Clients. -.. _ID Tokens are HMACed with their own client_secret: https://github.com/openedx/edx-oauth2-provider/blob/7e59e30ae0bfd9eac4d05469768d79c50a90aeb7/edx_oauth2_provider/views.py#L155-L163 +.. _ID Tokens are HMACed with their own client_secret: https://github.com/edx/edx-oauth2-provider/blob/7e59e30ae0bfd9eac4d05469768d79c50a90aeb7/edx_oauth2_provider/views.py#L155-L163 Looking forward, we want to support Single Page Apps (a.k.a., Microfronteds), where users can seamlessly traverse from one microfronted to another and access APIs on various backends. This *Single Sign On* diff --git a/openedx/features/name_affirmation_api/README.rst b/openedx/features/name_affirmation_api/README.rst index c1bf573a11..8cb928f47f 100644 --- a/openedx/features/name_affirmation_api/README.rst +++ b/openedx/features/name_affirmation_api/README.rst @@ -3,4 +3,4 @@ Name Affirmation API This directory contains a passthrough for the edx-name-affirmation plugin, in order to enable support in other plugins/packages such as edx-proctoring. -See here: `https://github.com/openedx/edx-name-affirmation`_. +See here: `https://github.com/edx/edx-name-affirmation`_. diff --git a/openedx/features/name_affirmation_api/utils.py b/openedx/features/name_affirmation_api/utils.py index 7bd41f3bde..b9f4ee8d9c 100644 --- a/openedx/features/name_affirmation_api/utils.py +++ b/openedx/features/name_affirmation_api/utils.py @@ -1,6 +1,6 @@ """ Utility functions for integration with Name Affirmation plugin -(https://github.com/openedx/edx-name-affirmation) +(https://github.com/edx/edx-name-affirmation) """ from edx_django_utils.plugins import PluginError, PluginManager diff --git a/scripts/provision-demo-course.sh b/scripts/provision-demo-course.sh index e455c70438..72d2639f1a 100755 --- a/scripts/provision-demo-course.sh +++ b/scripts/provision-demo-course.sh @@ -23,7 +23,7 @@ mkdir -p /edx/app/demo ( cd /edx/app/demo && rm -rf edx-demo-course && - git clone https://github.com/openedx/edx-demo-course.git --depth 1 + git clone https://github.com/openedx/openedx-demo-course.git --depth 1 ) # Import the course.