Skip to content

Commit

Permalink
Meta: Update SerenityOS repository links to point to the Ladybird repo
Browse files Browse the repository at this point in the history
  • Loading branch information
tcl3 authored and awesomekling committed May 31, 2024
1 parent 8a932c2 commit 84a0342
Show file tree
Hide file tree
Showing 8 changed files with 11 additions and 11 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/libjs-test262.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand All @@ -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
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/wasm.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
2 changes: 1 addition & 1 deletion Documentation/Browser/LibWebFromLoadingToPainting.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.)

Expand Down
2 changes: 1 addition & 1 deletion Documentation/SelfHostedRunners.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
4 changes: 2 additions & 2 deletions Meta/Lagom/Fuzzers/FuzzilliJs.dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
2 changes: 1 addition & 1 deletion Meta/Lagom/ReadMe.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.

Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -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")
Expand Down Expand Up @@ -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).

Expand Down

0 comments on commit 84a0342

Please sign in to comment.