You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: .github/PULL_REQUEST_TEMPLATE.md
+1-1
Original file line number
Diff line number
Diff line change
@@ -5,7 +5,7 @@ Describe what this pull request changes, and why. Include implications for peopl
5
5
**Merge checklist:**
6
6
7
7
-[ ] 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).
9
9
-[ ] 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.
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
136
136
137
137
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.
138
138
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
Copy file name to clipboardexpand all lines: docs/decisions/0004-axios-caching-implementation.rst
+2-2
Original file line number
Diff line number
Diff line change
@@ -43,7 +43,7 @@ e.g.
43
43
44
44
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
45
45
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.
47
47
48
48
49
49
Implementation Details
@@ -78,7 +78,7 @@ Having a frontend-platform caching solution be widely available to micro fronten
78
78
Adoption
79
79
--------
80
80
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.
Copy file name to clipboardexpand all lines: docs/how_tos/i18n.rst
+9-9
Original file line number
Diff line number
Diff line change
@@ -15,11 +15,11 @@ This is a step by step guide to making your React app ready to accept translatio
15
15
Internationalize your application with react-intl
16
16
*************************************************
17
17
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.
19
19
20
20
#. 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``.)
21
21
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>`__.)
23
23
24
24
#. 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``.
25
25
@@ -95,9 +95,9 @@ In your repo, create and commit a file named ``.tx/config``::
95
95
Set up the pipeline tools
96
96
*************************
97
97
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.
99
99
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.
101
101
102
102
* Modify the ``transifex_resource`` variable with your own Transifex resource name.
103
103
@@ -166,7 +166,7 @@ The pipeline jobs live in the `ecommerce-scripts <https://github.com/edx/ecommer
166
166
Create empty translation files in your repo
167
167
*******************************************
168
168
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>`__.
170
170
171
171
***********************************
172
172
Create your pipeline job on Jenkins
@@ -194,7 +194,7 @@ Create your pipeline job on Jenkins
194
194
195
195
* Run the script that you try to create the jobs.
196
196
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.
198
198
199
199
* 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.
200
200
@@ -218,7 +218,7 @@ Load up your translation files
218
218
219
219
#. Your pipeline job should have updated several translation files in ``src/i18n/messages/LANG_CODE.json`` .
220
220
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.
222
222
223
223
#. In ``App.jsx``, make the following changes::
224
224
@@ -292,8 +292,8 @@ used ``frontend-platform`` < ``2.0.0`` and you decided to upgrade, here's a list
292
292
For more information
293
293
********************
294
294
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>`_
Copy file name to clipboardexpand all lines: src/auth/interface.js
+1-1
Original file line number
Diff line number
Diff line change
@@ -3,7 +3,7 @@
3
3
*
4
4
* Simplifies the process of making authenticated API requests to backend edX services by providing
5
5
* 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).
7
7
*
8
8
* The `initialize` function performs much of the auth configuration for you. If, however, you're
9
9
* not using the `initialize` function, an authenticated API client can be created via:
0 commit comments