Skip to content

Commit 5f447b7

Browse files
committed
fix: fix github url strings (org edx -> openedx)
1 parent 31051ae commit 5f447b7

8 files changed

+22
-22
lines changed

.github/PULL_REQUEST_TEMPLATE.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ Describe what this pull request changes, and why. Include implications for peopl
55
**Merge checklist:**
66

77
- [ ] Consider running your code modifications in the included example app within `frontend-platform`. This can be done by running `npm start` and opening http://localhost:8080.
8-
- [ ] Consider testing your code modifications in another local micro-frontend using local aliases configured via [the `module.config.js` file in `frontend-build`](https://github.com/edx/frontend-build#local-module-configuration-for-webpack).
8+
- [ ] Consider testing your code modifications in another local micro-frontend using local aliases configured via [the `module.config.js` file in `frontend-build`](https://github.com/openedx/frontend-build#local-module-configuration-for-webpack).
99
- [ ] Verify your commit title/body conforms to the conventional commits format (e.g., `fix`, `feat`) and is appropriate for your code change. Consider whether your code is a breaking change, and modify your commit accordingly.
1010

1111
**Post merge:**

README.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
[![Build Status](https://github.com/edx/frontend-platform/actions/workflows/ci.yml/badge.svg)](https://github.com/edx/frontend-platform/actions/workflows/ci.yml)
1+
[![Build Status](https://github.com/openedx/frontend-platform/actions/workflows/ci.yml/badge.svg)](https://github.com/openedx/frontend-platform/actions/workflows/ci.yml)
22
[![Codecov](https://img.shields.io/codecov/c/github/edx/frontend-platform)](https://codecov.io/gh/edx/frontend-platform)
33
[![NPM Version](https://img.shields.io/npm/v/@edx/frontend-platform.svg)](https://www.npmjs.com/package/@edx/frontend-platform)
44
[![npm_downloads](https://img.shields.io/npm/dt/@edx/frontend-platform.svg)](https://www.npmjs.com/package/@edx/frontend-platform)
5-
[![license](https://img.shields.io/npm/l/@edx/frontend-platform.svg)](https://github.com/edx/frontend-platform/blob/master/LICENSE)
5+
[![license](https://img.shields.io/npm/l/@edx/frontend-platform.svg)](https://github.com/openedx/frontend-platform/blob/master/LICENSE)
66
[![semantic release](https://img.shields.io/badge/%20%20%F0%9F%93%A6%F0%9F%9A%80-semantic--release-e10079.svg)](https://github.com/semantic-release/semantic-release)
77

88
# Overview
@@ -27,7 +27,7 @@ In addition, frontend-platform provides an extensible application initialization
2727

2828
### One-time setup if you have not ugpraded node/npm
2929
IMPORTANT: There is now a new node/npm version being used by frontend-platform as of
30-
https://github.com/edx/frontend-platform/pull/259
30+
https://github.com/openedx/frontend-platform/pull/259
3131

3232
#### Install nvm
3333
This is highly recommended in order to be able to leverage different node/npm versions.
@@ -136,4 +136,4 @@ NOTE: As of this writing, i18n is _not_ configurable. The `initialize()` functi
136136

137137
When making changes to frontend-platform, be sure to manually run the included example app located in `./example`. The example app includes 2 routes to test for both unauthenticated and authenticated users. To start the example app, run `npm start` from the root directory.
138138

139-
If you want to test changes to frontend-platform against a micro-frontend locally, follow the directions here: https://github.com/edx/frontend-build#local-module-configuration-for-webpack
139+
If you want to test changes to frontend-platform against a micro-frontend locally, follow the directions here: https://github.com/openedx/frontend-build#local-module-configuration-for-webpack

docs/decisions/0004-axios-caching-implementation.rst

+2-2
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ e.g.
4343

4444
By default the response for a GET request will be stored in IndexedDB for 5 minutes and that cached value will get invalidated on any POST, PUT, PATCH, or DELETE request made to the same url. The caching layer also works with the standard cache-control headers: max-age, no-cache, and no-store
4545

46-
Each request can also override the default cache configurations. `The How To document about caching <https://github.com/edx/frontend-platform/blob/master/docs/how_tos/caching.rst>`_ has more detailed examples about how this caching layer can be used.
46+
Each request can also override the default cache configurations. `The How To document about caching <https://github.com/openedx/frontend-platform/blob/master/docs/how_tos/caching.rst>`_ has more detailed examples about how this caching layer can be used.
4747

4848

4949
Implementation Details
@@ -78,7 +78,7 @@ Having a frontend-platform caching solution be widely available to micro fronten
7878
Adoption
7979
--------
8080

81-
As of this writing, only a few HTTP requests within `frontend-app-learner-portal-enterprise <http://github.com/edx/frontend-app-learner-portal-enterprise>`_ have adopted using the cached clients. Usage of the cache clients is on an opt-in basis where micro frontends determine whether or not using the front end cache clients suits their needs.
81+
As of this writing, only a few HTTP requests within `frontend-app-learner-portal-enterprise <http://github.com/openedx/frontend-app-learner-portal-enterprise>`_ have adopted using the cached clients. Usage of the cache clients is on an opt-in basis where micro frontends determine whether or not using the front end cache clients suits their needs.
8282

8383

8484
Consequences

docs/decisions/0005-token-null-after-successful-refresh.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ Several failed hypotheses have been tested to determine why this is happening:
3939

4040
* Only a small subset of the errors (~0.8%) had a time difference of >5 minutes.
4141

42-
* See https://github.com/edx/frontend-platform/pull/207
42+
* See https://github.com/openedx/frontend-platform/pull/207
4343

4444
Additional Data
4545
---------------

docs/how_tos/i18n.rst

+9-9
Original file line numberDiff line numberDiff line change
@@ -15,11 +15,11 @@ This is a step by step guide to making your React app ready to accept translatio
1515
Internationalize your application with react-intl
1616
*************************************************
1717

18-
These steps will allow your application to accept translation strings. See `frontend-app-account <https://github.com/edx/frontend-app-account/>`_ for an example app to follow.
18+
These steps will allow your application to accept translation strings. See `frontend-app-account <https://github.com/openedx/frontend-app-account/>`_ for an example app to follow.
1919

2020
#. Add ``@edx/frontend-platform`` as a dependency to your ``package.json`` . (If you are actually writing a consumable component, add ``@edx/frontend-platform`` as both a dev dependency and peer dependency instead.) ``@edx/frontend-platform/i18n`` is a wrapper around ``react-intl`` that adds some shims. You should only access the ``react-intl`` functions and elements exposed by ``@edx/frontend-platform/i18n``. (They have the same names as in ``react-intl``.)
2121

22-
#. In ``App.js``, wrap your entire app in an ``IntlProvider`` element. See `Load up your translation files`_ for details. (Consumable components: Don't do this step, except possibly in tests. Your consuming application will do it for you. Instead, update your `README like this example <https://github.com/edx/frontend-component-footer/blame/master/README.rst#L23-L27>`__.)
22+
#. In ``App.js``, wrap your entire app in an ``IntlProvider`` element. See `Load up your translation files`_ for details. (Consumable components: Don't do this step, except possibly in tests. Your consuming application will do it for you. Instead, update your `README like this example <https://github.com/openedx/frontend-component-footer/blame/master/README.rst#L23-L27>`__.)
2323

2424
#. For places in your code where you need a display string, and it's okay if it's a React element (generally, most messages): use a ``FormattedMessage``.
2525

@@ -95,9 +95,9 @@ In your repo, create and commit a file named ``.tx/config``::
9595
Set up the pipeline tools
9696
*************************
9797

98-
The pipeline jobs live in the `ecommerce-scripts <https://github.com/edx/ecommerce-scripts/tree/master/transifex>`__ repo, but you don't have to modify them. They will interact with your repo through ``make`` targets.
98+
The pipeline jobs live in the `ecommerce-scripts <https://github.com/openedx/ecommerce-scripts/tree/master/transifex>`__ repo, but you don't have to modify them. They will interact with your repo through ``make`` targets.
9999

100-
#. Copy the `frontend-app-account Makefile <https://github.com/edx/frontend-app-account/blob/master/Makefile>`__ to your project.
100+
#. Copy the `frontend-app-account Makefile <https://github.com/openedx/frontend-app-account/blob/master/Makefile>`__ to your project.
101101

102102
* Modify the ``transifex_resource`` variable with your own Transifex resource name.
103103

@@ -166,7 +166,7 @@ The pipeline jobs live in the `ecommerce-scripts <https://github.com/edx/ecommer
166166
Create empty translation files in your repo
167167
*******************************************
168168

169-
#. You must commit an empty language file for each language, or the ``pull`` job will fail. Each file is named ``src/i18n/messages/LANG_CODE.json`` and consists of an empty JSON object (``{}``). See this `example code with empty language files <https://github.com/edx/frontend-component-footer/commit/46772ecc0e8de2ce1815607fdf2e8f2867dc83cf>`__.
169+
#. You must commit an empty language file for each language, or the ``pull`` job will fail. Each file is named ``src/i18n/messages/LANG_CODE.json`` and consists of an empty JSON object (``{}``). See this `example code with empty language files <https://github.com/openedx/frontend-component-footer/commit/46772ecc0e8de2ce1815607fdf2e8f2867dc83cf>`__.
170170

171171
***********************************
172172
Create your pipeline job on Jenkins
@@ -194,7 +194,7 @@ Create your pipeline job on Jenkins
194194

195195
* Run the script that you try to create the jobs.
196196

197-
* Examples: ``python transifex/pull.py https://github.com/edx/edx-platform.git edx/sustaining-team``. You might be required to setup environment variable ``GITHUB_ACCESS_TOKEN`` with your personal github account.
197+
* Examples: ``python transifex/pull.py https://github.com/openedx/edx-platform.git edx/sustaining-team``. You might be required to setup environment variable ``GITHUB_ACCESS_TOKEN`` with your personal github account.
198198

199199
* For ``push_translations``, you might also need transifex authentication. If the project hasn't been created on the Transifex, it is necessary to push first. If there are problems with transifex auth or priviledge, you should proceed to the next step and run push job from jenkins instead.
200200

@@ -218,7 +218,7 @@ Load up your translation files
218218

219219
#. Your pipeline job should have updated several translation files in ``src/i18n/messages/LANG_CODE.json`` .
220220

221-
#. Create ``src/i18n/index.js`` using `frontend-app-account's index.js <https://github.com/edx/frontend-app-account/blob/master/src/i18n/index.js>`_ as a model.
221+
#. Create ``src/i18n/index.js`` using `frontend-app-account's index.js <https://github.com/openedx/frontend-app-account/blob/master/src/i18n/index.js>`_ as a model.
222222

223223
#. In ``App.jsx``, make the following changes::
224224

@@ -292,8 +292,8 @@ used ``frontend-platform`` < ``2.0.0`` and you decided to upgrade, here's a list
292292
For more information
293293
********************
294294

295-
* `ADR for react-intl <https://github.com/edx/paragon/blob/master/docs/decisions/0002-react-i18n.rst>`_
295+
* `ADR for react-intl <https://github.com/openedx/paragon/blob/master/docs/decisions/0002-react-i18n.rst>`_
296296

297297
* `Working i18n notes <https://openedx.atlassian.net/wiki/spaces/LOC/pages/946503833/i18n+for+React>`_
298298

299-
* `studio-frontend i18n guide <https://github.com/edx/studio-frontend/tree/master/src/data/i18n>`_
299+
* `studio-frontend i18n guide <https://github.com/openedx/studio-frontend/tree/master/src/data/i18n>`_

package.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -22,14 +22,14 @@
2222
},
2323
"repository": {
2424
"type": "git",
25-
"url": "git+https://github.com/edx/frontend-platform.git"
25+
"url": "git+https://github.com/openedx/frontend-platform.git"
2626
},
2727
"author": "edX",
2828
"license": "AGPL-3.0",
2929
"bugs": {
30-
"url": "https://github.com/edx/frontend-platform/issues"
30+
"url": "https://github.com/openedx/frontend-platform/issues"
3131
},
32-
"homepage": "https://github.com/edx/frontend-platform#readme",
32+
"homepage": "https://github.com/openedx/frontend-platform#readme",
3333
"devDependencies": {
3434
"@edx/browserslist-config": "^1.1.0",
3535
"@edx/brand": "npm:@edx/[email protected]",

src/auth/interface.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
*
44
* Simplifies the process of making authenticated API requests to backend edX services by providing
55
* common authN/authZ client code that enables the login/logout flow and handles ensuring the
6-
* presence of a valid [JWT cookie](https://github.com/edx/edx-platform/blob/master/openedx/core/djangoapps/oauth_dispatch/docs/decisions/0009-jwt-in-session-cookie.rst).
6+
* presence of a valid [JWT cookie](https://github.com/openedx/edx-platform/blob/master/openedx/core/djangoapps/oauth_dispatch/docs/decisions/0009-jwt-in-session-cookie.rst).
77
*
88
* The `initialize` function performs much of the auth configuration for you. If, however, you're
99
* not using the `initialize` function, an authenticated API client can be created via:

src/i18n/index.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
*
1919
*
2020
* @module Internationalization
21-
* @see {@link https://github.com/edx/frontend-platform/blob/master/docs/how_tos/i18n.rst}
21+
* @see {@link https://github.com/openedx/frontend-platform/blob/master/docs/how_tos/i18n.rst}
2222
* @see {@link https://formatjs.io/docs/react-intl/components/ Intl} for components exported from this module.
2323
*
2424
*/

0 commit comments

Comments
 (0)