Skip to content

Commit 0c5dc15

Browse files
authored
Merge pull request #355 from openedx/tcril/fix-gh-org-url2
Fix github url strings (org edx -> openedx)
2 parents aef1971 + 7b48eb3 commit 0c5dc15

File tree

8 files changed

+38
-38
lines changed

8 files changed

+38
-38
lines changed

.github/workflows/commitlint.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,4 +7,4 @@ on:
77

88
jobs:
99
commitlint:
10-
uses: edx/.github/.github/workflows/commitlint.yml@master
10+
uses: openedx/.github/.github/workflows/commitlint.yml@master

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ transifex_temp = ./temp/babel-plugin-react-intl
88

99
export TRANSIFEX_RESOURCE = studio-frontend
1010

11-
# Help message borrowed from https://github.com/edx/devstack, which borrowed it from https://github.com/pydanny/cookiecutter-djangopackage.
11+
# Help message borrowed from https://github.com/openedx/devstack, which borrowed it from https://github.com/pydanny/cookiecutter-djangopackage.
1212
help: ## display a help message
1313
@echo $(MAKEFILE_LIST)
1414
@echo "Please use \`make <target>' where <target> is one of"

README.md

Lines changed: 16 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ Platform](https://engineering.edx.org/studio-frontend-developing-frontend-separa
1515

1616
Requirements:
1717
* [Docker 17.06 CE+](https://docs.docker.com/engine/installation/), which should come with [docker-compose](https://docs.docker.com/compose/install/) built in.
18-
* A working, running [edX devstack](https://github.com/edx/devstack)
18+
* A working, running [edX devstack](https://github.com/openedx/devstack)
1919

2020
To install and run locally:
2121
```
@@ -61,7 +61,7 @@ The development server will run regardless of whether devstack is running along
6161
## Development Inside Devstack Studio
6262

6363
To load studio-frontend components from the webpack-dev-server inside your
64-
studio instance running in [Devstack](https://github.com/edx/devstack):
64+
studio instance running in [Devstack](https://github.com/openedx/devstack):
6565

6666
1. In your devstack edx-platform folder, create `cms/envs/private.py` if it
6767
does not exist already.
@@ -164,7 +164,7 @@ This all happens automagically on merges to master, hooray! There are just a few
164164

165165
### What is the latest version?
166166

167-
Check [github](https://github.com/edx/studio-frontend/releases), [npm](https://www.npmjs.com/package/@edx/studio-frontend), or the npm badge at [the top of this README](https://github.com/edx/studio-frontend#studio-frontend). `package.json` no longer contains the correct version (on Github), as it creates an odd loop of "something merged to master, run `semantic-release`" -> "`semantic-release` modified `package.json`, better check that in and make a PR" -> "a PR merged to master, run `semantic-release`", etc. This is the [default behavior for `semantic-release`](https://github.com/semantic-release/semantic-release/blob/caribou/docs/support/FAQ.md#why-is-the-packagejsons-version-not-updated-in-my-repository).
167+
Check [github](https://github.com/openedx/studio-frontend/releases), [npm](https://www.npmjs.com/package/@edx/studio-frontend), or the npm badge at [the top of this README](https://github.com/openedx/studio-frontend#studio-frontend). `package.json` no longer contains the correct version (on Github), as it creates an odd loop of "something merged to master, run `semantic-release`" -> "`semantic-release` modified `package.json`, better check that in and make a PR" -> "a PR merged to master, run `semantic-release`", etc. This is the [default behavior for `semantic-release`](https://github.com/semantic-release/semantic-release/blob/caribou/docs/support/FAQ.md#why-is-the-packagejsons-version-not-updated-in-my-repository).
168168

169169
### Commit message linting
170170

@@ -188,39 +188,39 @@ If you are making changes to the Dockerfile or docker-compose.yml you may want t
188188
There's a bunch of boilerplate that needs to be created to set up a new
189189
studio-frontend app that can be independently embedded into a page in Studio.
190190
See the
191-
[openedx-workshop](https://github.com/edx/studio-frontend/compare/openedx-workshop)
191+
[openedx-workshop](https://github.com/openedx/studio-frontend/compare/openedx-workshop)
192192
branch, which demonstrates setting up a very basic HelloWorld app.
193193

194194
* Create a [new webpack
195-
entry](https://github.com/edx/studio-frontend/compare/openedx-workshop#diff-56ee2db4e3db0c7354bb996b003e70beR12)
195+
entry](https://github.com/openedx/studio-frontend/compare/openedx-workshop#diff-56ee2db4e3db0c7354bb996b003e70beR12)
196196
* Add a [new
197-
HtmlWebpackPlugin](https://github.com/edx/studio-frontend/compare/openedx-workshop#diff-d5d0cff71a84339db815178b7a3c23fcR95)
197+
HtmlWebpackPlugin](https://github.com/openedx/studio-frontend/compare/openedx-workshop#diff-d5d0cff71a84339db815178b7a3c23fcR95)
198198
to create a new page in the development server to display the component.
199199
* Create a [new app root index
200-
file](https://github.com/edx/studio-frontend/compare/openedx-workshop#diff-78a72e926d58cefa762dc661a8745f68R1)
200+
file](https://github.com/openedx/studio-frontend/compare/openedx-workshop#diff-78a72e926d58cefa762dc661a8745f68R1)
201201
which will initialize the app.
202202
* For any new components that the app will use, create a new folder under
203203
`src/components/` with an upper camel case name.
204204
* For each component, create [an
205-
index.jsx](https://github.com/edx/studio-frontend/compare/openedx-workshop#diff-7fea6fccbbbbf8e8648b63713da96714R1)
205+
index.jsx](https://github.com/openedx/studio-frontend/compare/openedx-workshop#diff-7fea6fccbbbbf8e8648b63713da96714R1)
206206
to render the component.
207207
* A [test
208-
file](https://github.com/edx/studio-frontend/compare/openedx-workshop#diff-4cd7210c4c2b6f2c3b6b2a0c1b67b2e5R1)
208+
file](https://github.com/openedx/studio-frontend/compare/openedx-workshop#diff-4cd7210c4c2b6f2c3b6b2a0c1b67b2e5R1)
209209
named with a `.test.jsx` extension that uses Jest and Enzyme to unit test
210210
the component.
211211
* If the component contains any display strings, a
212-
[displayMessages.jsx](https://github.com/edx/studio-frontend/compare/openedx-workshop#diff-e214e9bb31c5529b699ebb2e86be2cbfR1)
212+
[displayMessages.jsx](https://github.com/openedx/studio-frontend/compare/openedx-workshop#diff-e214e9bb31c5529b699ebb2e86be2cbfR1)
213213
file.
214214
* If the component needs any styling, a
215-
[`.scss`](https://github.com/edx/studio-frontend/compare/openedx-workshop#diff-5ce63f6d51132465b6b5d8980cc3dfc8R1)
215+
[`.scss`](https://github.com/openedx/studio-frontend/compare/openedx-workshop#diff-5ce63f6d51132465b6b5d8980cc3dfc8R1)
216216
file.
217217
* To embed the app inside Studio:
218218
* Update the [version of
219-
studio-frontend](https://github.com/edx/edx-platform/blob/master/package.json)
219+
studio-frontend](https://github.com/openedx/edx-platform/blob/master/package.json)
220220
in edx-platform.
221221
* Include the component's built CSS and JS in a template using the
222222
[`studiofrontend` Mako template
223-
tag](https://github.com/edx/edx-platform/compare/openedx-workshop-sfe).
223+
tag](https://github.com/openedx/edx-platform/compare/openedx-workshop-sfe).
224224

225225
## CSS
226226

@@ -277,16 +277,16 @@ legacy Studio styles and would not need to apply any resets.
277277

278278
## Getting Help
279279

280-
If you need assistance with this repository please see our documentation for [Getting Help](https://github.com/edx/edx-platform#getting-help) for more information.
280+
If you need assistance with this repository please see our documentation for [Getting Help](https://github.com/openedx/edx-platform#getting-help) for more information.
281281

282282

283283
## Issue Tracker
284284

285-
We use JIRA for our issue tracker, not GitHub Issues. Please see our documentation for [tracking issues](https://github.com/edx/edx-platform#issue-tracker) for more information on how to track issues that we will be able to respond to and track accurately. Thanks!
285+
We use JIRA for our issue tracker, not GitHub Issues. Please see our documentation for [tracking issues](https://github.com/openedx/edx-platform#issue-tracker) for more information on how to track issues that we will be able to respond to and track accurately. Thanks!
286286

287287
## How to Contribute
288288

289-
Contributions are very welcome, but for legal reasons, you must submit a signed [individual contributor's agreement](https://github.com/edx/edx-platform/blob/master/CONTRIBUTING.rst#step-1-sign-a-contribution-agreement) before we can accept your contribution. See our [CONTRIBUTING](https://github.com/edx/edx-platform/blob/master/CONTRIBUTING.rst) file for more information -- it also contains guidelines for how to maintain high code quality, which will make your contribution more likely to be accepted.
289+
Contributions are very welcome, but for legal reasons, you must submit a signed [individual contributor's agreement](https://github.com/openedx/edx-platform/blob/master/CONTRIBUTING.rst#step-1-sign-a-contribution-agreement) before we can accept your contribution. See our [CONTRIBUTING](https://github.com/openedx/edx-platform/blob/master/CONTRIBUTING.rst) file for more information -- it also contains guidelines for how to maintain high code quality, which will make your contribution more likely to be accepted.
290290

291291

292292
## Reporting Security Issues

src/SFE.scss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ input[type="search"] {
7171
}
7272

7373
// Paragon-specific styling copied here from:
74-
// https://github.com/edx/paragon/blob/efd86c59fe6266b569939a2d5f526fce5f2ecafc/src/asInput/asInput.scss#L5-L7
74+
// https://github.com/openedx/paragon/blob/efd86c59fe6266b569939a2d5f526fce5f2ecafc/src/asInput/asInput.scss#L5-L7
7575
.fa-icon-spacing {
7676
padding: 0px 5px 0px 0px;
7777
}

src/components/EditImageModal/EditImageModal.scss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
max-width: $modal-lg;
1010
}
1111

12-
// --- Copied from: https://github.com/edx/paragon/blob/master/src/Fieldset/Fieldset.scss
12+
// --- Copied from: https://github.com/openedx/paragon/blob/master/src/Fieldset/Fieldset.scss
1313
.paragon-fieldset {
1414
@extend .mb-4;
1515

0 commit comments

Comments
 (0)