From 36c6032679f488a8c868a4c575bc85ce86f198ed Mon Sep 17 00:00:00 2001 From: Sarina Canelake Date: Sat, 10 Sep 2022 15:54:17 -0400 Subject: [PATCH] fix: fix github url strings (org edx -> openedx) --- README.rst | 6 +++--- bok_choy/a11y/axe_core_ruleset.py | 2 +- docs/conf.py | 2 +- docs/intro.rst | 2 +- docs/testing.rst | 2 +- setup.py | 2 +- 6 files changed, 8 insertions(+), 8 deletions(-) diff --git a/README.rst b/README.rst index 6009ad58..fea12188 100644 --- a/README.rst +++ b/README.rst @@ -5,8 +5,8 @@ bok-choy :target: https://pypi.python.org/pypi/bok_choy/ :alt: PyPI -.. image:: https://github.com/edx/bok-choy/workflows/Python%20CI/badge.svg?branch=master - :target: https://github.com/edx/bok-choy/actions?query=workflow%3A%22Python+CI%22 +.. image:: https://github.com/openedx/bok-choy/workflows/Python%20CI/badge.svg?branch=master + :target: https://github.com/openedx/bok-choy/actions?query=workflow%3A%22Python+CI%22 :alt: Github CI .. image:: http://codecov.io/github/edx/bok-choy/coverage.svg?branch=master @@ -22,7 +22,7 @@ bok-choy :alt: Supported Python versions .. image:: https://img.shields.io/github/license/edx/bok-choy.svg - :target: https://github.com/edx/bok-choy/blob/master/LICENSE.txt + :target: https://github.com/openedx/bok-choy/blob/master/LICENSE.txt :alt: License UI-level acceptance test framework. `Full documentation available on ReadTheDocs`__. diff --git a/bok_choy/a11y/axe_core_ruleset.py b/bok_choy/a11y/axe_core_ruleset.py index 1c82c44d..3ec1dad1 100644 --- a/bok_choy/a11y/axe_core_ruleset.py +++ b/bok_choy/a11y/axe_core_ruleset.py @@ -185,7 +185,7 @@ def customize_ruleset(self, custom_ruleset_file=None): https://github.com/dequelabs/axe-core/blob/master/doc/developer-guide.md An example of a custom rules file can be found at - https://github.com/edx/bok-choy/tree/master/tests/a11y_custom_rules.js + https://github.com/openedx/bok-choy/tree/master/tests/a11y_custom_rules.js """ custom_file = custom_ruleset_file or os.environ.get( "BOKCHOY_A11Y_CUSTOM_RULES_FILE" diff --git a/docs/conf.py b/docs/conf.py index 04e3073c..c1c85600 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -22,7 +22,7 @@ # Substitutions for all pages rst_epilog = """ -.. _Bok Choy: https://github.com/edx/bok-choy +.. _Bok Choy: https://github.com/openedx/bok-choy .. _Selenium: http://www.seleniumhq.org .. _Python: http://python.org """ diff --git a/docs/intro.rst b/docs/intro.rst index 128816eb..ad9ebc41 100644 --- a/docs/intro.rst +++ b/docs/intro.rst @@ -1,7 +1,7 @@ Introduction ============ -`Bok Choy `__ is a UI-level acceptance test framework for writing robust +`Bok Choy `__ is a UI-level acceptance test framework for writing robust `Selenium `__ tests in `Python `__. diff --git a/docs/testing.rst b/docs/testing.rst index 385a404b..e3ea0734 100644 --- a/docs/testing.rst +++ b/docs/testing.rst @@ -27,7 +27,7 @@ To use xvfb, you'll start it up via a ``before_script`` section in your ``.travi For more details, see this code example_ and the Travis_ docs. -.. _example: https://github.com/edx/xblock-sdk/blob/c7ec2327c0847dc35f57686945490e97e5cd66a5/.travis.yml#L28-L31 +.. _example: https://github.com/openedx/xblock-sdk/blob/c7ec2327c0847dc35f57686945490e97e5cd66a5/.travis.yml#L28-L31 .. _Travis: https://docs.travis-ci.com/user/gui-and-headless-browsers/ Testing via tox diff --git a/setup.py b/setup.py index f71d0918..c9393c1a 100644 --- a/setup.py +++ b/setup.py @@ -110,7 +110,7 @@ def get_version(*file_paths): version=VERSION, author='edX', author_email='oscm@edx.org', - url='http://github.com/edx/bok-choy', + url='http://github.com/openedx/bok-choy', description=DESCRIPTION, long_description=LONG_DESCRIPTION, license='Apache 2.0',