From 84a03425f94239157701a9467741e8f5d6e58de5 Mon Sep 17 00:00:00 2001 From: Tim Ledbetter Date: Fri, 31 May 2024 14:38:17 +0100 Subject: [PATCH] Meta: Update SerenityOS repository links to point to the Ladybird repo --- .github/workflows/libjs-test262.yml | 4 ++-- .github/workflows/wasm.yml | 2 +- CONTRIBUTING.md | 2 +- Documentation/Browser/LibWebFromLoadingToPainting.md | 2 +- Documentation/SelfHostedRunners.md | 2 +- Meta/Lagom/Fuzzers/FuzzilliJs.dockerfile | 4 ++-- Meta/Lagom/ReadMe.md | 2 +- README.md | 4 ++-- 8 files changed, 11 insertions(+), 11 deletions(-) diff --git a/.github/workflows/libjs-test262.yml b/.github/workflows/libjs-test262.yml index 792f0d0b4591..d4eee1e58814 100644 --- a/.github/workflows/libjs-test262.yml +++ b/.github/workflows/libjs-test262.yml @@ -9,7 +9,7 @@ jobs: run_and_update_results: runs-on: self-hosted if: false - #if: always() && github.repository == 'SerenityOS/serenity' && github.ref == 'refs/heads/master' + #if: always() && github.repository == 'LadybirdWebBrowser/ladybird' && github.ref == 'refs/heads/master' concurrency: libjs-test262 @@ -19,7 +19,7 @@ jobs: echo "Cleaning up previous run" rm -rf "${{ github.workspace }}/*" - - name: Checkout SerenityOS/serenity + - name: Checkout LadybirdWebBrowser/ladybird uses: actions/checkout@v4 - name: Checkout SerenityOS/libjs-test262 diff --git a/.github/workflows/wasm.yml b/.github/workflows/wasm.yml index 856db433ad8c..b2396b233617 100644 --- a/.github/workflows/wasm.yml +++ b/.github/workflows/wasm.yml @@ -14,7 +14,7 @@ jobs: strategy: fail-fast: false steps: - - name: Checkout SerenityOS/serenity + - name: Checkout LadybirdWebBrowser/ladybird uses: actions/checkout@v4 - name: Checkout SerenityOS/libjs-data libjs-wasm diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 329b37c36072..db01f7efccf3 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -41,7 +41,7 @@ Nobody is perfect, and sometimes we mess things up. That said, here are some goo **Do:** * Write in idiomatic SerenityOS-style C++23, using the `AK` containers in all code. -* Conform to the project coding style found in [CodingStyle.md](https://github.com/SerenityOS/serenity/blob/master/Documentation/CodingStyle.md). Use `clang-format` (version 18 or later) to automatically format C++ files. See [AdvancedBuildInstructions.md](https://github.com/SerenityOS/serenity/blob/master/Documentation/AdvancedBuildInstructions.md#clang-format-updates) for instructions on how to get an up-to-date version if your OS distribution does not ship clang-format-18. +* Conform to the project coding style found in [CodingStyle.md](https://github.com/LadybirdWebBrowser/ladybird/blob/master/Documentation/CodingStyle.md). Use `clang-format` (version 18 or later) to automatically format C++ files. See [AdvancedBuildInstructions.md](https://github.com/LadybirdWebBrowser/ladybird/blob/master/Documentation/AdvancedBuildInstructions.md#clang-format-updates) for instructions on how to get an up-to-date version if your OS distribution does not ship clang-format-18. * Choose expressive variable, function and class names. Make it as obvious as possible what the code is doing. * Split your changes into separate, atomic commits (i.e. A commit per feature or fix, where the build, tests and the system are all functioning). * Make sure your commits are rebased on the master branch. diff --git a/Documentation/Browser/LibWebFromLoadingToPainting.md b/Documentation/Browser/LibWebFromLoadingToPainting.md index 1ee80832d243..31a60d236e0d 100644 --- a/Documentation/Browser/LibWebFromLoadingToPainting.md +++ b/Documentation/Browser/LibWebFromLoadingToPainting.md @@ -78,7 +78,7 @@ We separate CSS rules by their cascade origin. The two origins we're concerned w The cascade origin determines the processing order for rules. The "user-agent" style is the least important, so it gets processed first. Then author style is added on top of that. -Note: the user-agent style is a built-in CSS style sheet that lives in the LibWeb source code [here](https://github.com/SerenityOS/serenity/blob/master/Userland/Libraries/LibWeb/CSS/Default.css). +Note: the user-agent style is a built-in CSS style sheet that lives in the LibWeb source code [here](https://github.com/LadybirdWebBrowser/ladybird/blob/master/Userland/Libraries/LibWeb/CSS/Default.css). The end product of style computation is a fully populated StyleProperties object. It has a StyleValue for each CSS::PropertyID. In spec parlance, these are the *computed* values. (Note that these are not the same as you get from `getComputedStyle()`, that API returns the *resolved* values.) diff --git a/Documentation/SelfHostedRunners.md b/Documentation/SelfHostedRunners.md index 98b4bd5701cd..333a5918e5cf 100644 --- a/Documentation/SelfHostedRunners.md +++ b/Documentation/SelfHostedRunners.md @@ -54,7 +54,7 @@ tar xzf ./actions-runner-linux-x64-X.X.X.tar.gz ``` ### Link the runner to the repository ```shell -./config.sh --url https://github.com/SerenityOS/serenity --token INSERT_SECRET_TOKEN_HERE +./config.sh --url https://github.com/LadybirdWebBrowser/ladybird --token INSERT_SECRET_TOKEN_HERE ``` ### Configure the runner to protect against malicious PRs by adding the following line to .env: ```shell diff --git a/Meta/Lagom/Fuzzers/FuzzilliJs.dockerfile b/Meta/Lagom/Fuzzers/FuzzilliJs.dockerfile index 70c61d556014..007cc55ef159 100644 --- a/Meta/Lagom/Fuzzers/FuzzilliJs.dockerfile +++ b/Meta/Lagom/Fuzzers/FuzzilliJs.dockerfile @@ -22,9 +22,9 @@ FROM fedora:39 AS serenity-build WORKDIR /home RUN dnf install -y clang cmake git-core ninja-build -RUN git clone --depth=1 https://github.com/SerenityOS/serenity +RUN git clone --depth=1 https://github.com/LadybirdWebBrowser/ladybird -RUN cd serenity/Meta/Lagom && ./BuildFuzzers.sh +RUN cd ladybird/Meta/Lagom && ./BuildFuzzers.sh FROM fedora:39 AS fuzzilli-build diff --git a/Meta/Lagom/ReadMe.md b/Meta/Lagom/ReadMe.md index 0c2da9dbc41a..c447299e11e1 100644 --- a/Meta/Lagom/ReadMe.md +++ b/Meta/Lagom/ReadMe.md @@ -91,7 +91,7 @@ on the second stage of the CMake build, or in your environment. There are many quirky files that exercise a lot of interesting edge cases. We should probably keep track of them, somewhere. -We have a [bmp suite and a jpg suite and several others](https://github.com/SerenityOS/serenity/tree/master/Base/res/html/misc). +We have a [bmp suite and a jpg suite and several others](https://github.com/LadybirdWebBrowser/ladybird/tree/master/Base/res/html/misc). They are GPL'ed, and therefore not quite as compatible with the rest of Serenity. That's probably not a problem, but keeping "our" testcases separate from those GPL'ed suits sounds like a good idea. diff --git a/README.md b/README.md index 9331c036bbbd..2d3a9aaccba4 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ # Ladybird -Ladybird is a cross-platform web browser built on the [LibWeb](https://github.com/SerenityOS/serenity/tree/master/Userland/Libraries/LibWeb) and [LibJS](https://github.com/SerenityOS/serenity/tree/master/Userland/Libraries/LibJS) engines from [SerenityOS](https://github.com/SerenityOS/serenity). +[Ladybird](https://github.com/LadybirdWebBrowser/ladybird) is a cross-platform web browser built on the [LibWeb](https://github.com/LadybirdWebBrowser/ladybird/tree/master/Userland/Libraries/LibWeb) and [LibJS](https://github.com/LadybirdWebBrowser/ladybird/tree/master/Userland/Libraries/LibJS) engines. The Browser UI has a cross-platform GUI in Qt6 and a macOS-specific GUI in AppKit. [![GitHub Actions Status](https://github.com/LadybirdWebBrowser/ladybird/workflows/Build,%20lint,%20and%20test/badge.svg)](https://github.com/LadybirdWebBrowser/ladybird/actions?query=workflow%3A"Build%2C%20lint%2C%20and%20test") @@ -54,7 +54,7 @@ Code-related documentation can be found in the [documentation](Documentation/) f Join our Slack server: !!FIXME: Add slack link !! -Before opening an issue, please see the [issue policy](https://github.com/SerenityOS/serenity/blob/master/CONTRIBUTING.md#issue-policy). +Before opening an issue, please see the [issue policy](https://github.com/LadybirdWebBrowser/ladybird/blob/master/CONTRIBUTING.md#issue-policy). A general guide for contributing can be found in [`CONTRIBUTING.md`](CONTRIBUTING.md).