Join GitHub today
GitHub is home to over 50 million developers working together to host and review code, manage projects, and build software together.
Sign upUpdate MPL license to https #22198
Merged
Update MPL license to https #22198
Conversation
highfive
commented
Nov 14, 2018
|
Heads up! This PR modifies the following files:
|
|
|
|
@bors-servo r+ |
|
|
bors-servo
added a commit
that referenced
this pull request
Nov 19, 2018
Update MPL license to https Current MPL license (https://www.mozilla.org/en-US/MPL/2.0/) contains an https link: > This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0. If a copy of the MPL was not distributed with this file, You can obtain one at https://mozilla.org/MPL/2.0/. This change would not remove the summary above the LICENSE file. Tested [here](https://github.com/Darkspirit/darkspirit.github.io/blob/master/LICENSE). I didn't update the `tests` folder with this change because I haven't yet looked into what needs to be considered with regards to WPT. Let's do that with a separate PR. This change is splitted into multiple parts to prevent any "Load diff" button instead of a preview and was made with following commands: ``` git checkout -b mpl_https kate python/tidy/servo_tidy/tidy.py kate python/tidy/servo_tidy/licenseck.py git add * git commit -m "servo-tidy: Allow to use MPL with http and https" find etc LICENSE mach ports python support -type f -not -path "python/tidy/servo_tidy/licenseck.py" -print0 | xargs -0 sed -i 's,http://mozilla.org/MPL/2.0/,https://mozilla.org/MPL/2.0/,g' git add * git commit -m "Update MPL license to https (part 1)" find components/script/dom/webidls -type f -print0 | xargs -0 sed -i 's,http://mozilla.org/MPL/2.0/,https://mozilla.org/MPL/2.0/,g' git add * git commit -m "Update MPL license to https (part 2)" find components/script -type f -print0 | xargs -0 sed -i 's,http://mozilla.org/MPL/2.0/,https://mozilla.org/MPL/2.0/,g' git add * git commit -m "Update MPL license to https (part 3)" find components -type f -print0 | xargs -0 sed -i 's,http://mozilla.org/MPL/2.0/,https://mozilla.org/MPL/2.0/,g' git add * git commit -m "Update MPL license to https (part 4)" ./mach test-tidy --all git push origin HEAD ``` --- - [x] `./mach test-tidy` does not report any errors <!-- Reviewable:start --> --- This change is [<img src="https://reviewable.io/review_button.svg" height="34" align="absmiddle" alt="Reviewable"/>](https://reviewable.io/reviews/servo/servo/22198) <!-- Reviewable:end -->
|
|
|
@jdm Could you publish a new version of servo_tidy on PyPI for webrender? Thanks |
moz-v2v-gh
pushed a commit
to mozilla/gecko-dev
that referenced
this pull request
Dec 3, 2018
Cherry-picks servo/servo#22198
moz-v2v-gh
pushed a commit
to mozilla/gecko-dev
that referenced
this pull request
Dec 3, 2018
Cherry-picks servo/servo#22198
mykmelez
pushed a commit
to mykmelez/gecko
that referenced
this pull request
Dec 4, 2018
Cherry-picks servo/servo#22198
mykmelez
pushed a commit
to mykmelez/gecko
that referenced
this pull request
Dec 4, 2018
Cherry-picks servo/servo#22198
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Darkspirit commentedNov 14, 2018
•
edited
Current MPL license (https://www.mozilla.org/en-US/MPL/2.0/) contains an https link:
This change would not remove the summary above the LICENSE file. Tested here.
I didn't update the
testsfolder with this change because I haven't yet looked into what needs to be considered with regards to WPT. Let's do that with a separate PR.This change is splitted into multiple parts to prevent any "Load diff" button instead of a preview and was made with following commands:
./mach test-tidydoes not report any errorsThis change is