summaryrefslogtreecommitdiffstats
path: root/docs/HACKING.md
diff options
context:
space:
mode:
authorFrantisek Sumsal <frantisek@sumsal.cz>2024-04-17 20:54:45 +0200
committerFrantisek Sumsal <frantisek@sumsal.cz>2024-04-17 21:21:23 +0200
commit0d592a5e17d473d301b921fbd43b8ef2c3b518ec (patch)
treee6a72e51047a8f575bfc155596e8f8744651fdeb /docs/HACKING.md
parentRevert "docs: don't suffix page permalink with a slash" (diff)
downloadsystemd-0d592a5e17d473d301b921fbd43b8ef2c3b518ec.tar.xz
systemd-0d592a5e17d473d301b921fbd43b8ef2c3b518ec.zip
docs: use absolute links for our pages
Since 56b2970 has proven to be a no-go for us, as it breaks existing links, let's embrace the trailing slash and use absolute links everywhere for our pages. This way we'll get around browser cleverly appending the relative link to the current location (since it ends with a slash), and given our docs/ layout is flat it's not much of a hassle either. Converted using this beauty: $ sed -ri 's/(\[.+\]\()([A-Z_]+\))/\1\/\2/g' *.md Resolves: #32088 (again) and #32310
Diffstat (limited to 'docs/HACKING.md')
-rw-r--r--docs/HACKING.md8
1 files changed, 4 insertions, 4 deletions
diff --git a/docs/HACKING.md b/docs/HACKING.md
index 82b6434984..de67c703f5 100644
--- a/docs/HACKING.md
+++ b/docs/HACKING.md
@@ -11,8 +11,8 @@ We welcome all contributions to systemd.
If you notice a bug or a missing feature, please feel invited to fix it, and submit your work as a
[GitHub Pull Request (PR)](https://github.com/systemd/systemd/pull/new).
-Please make sure to follow our [Coding Style](CODING_STYLE) when submitting patches.
-Also have a look at our [Contribution Guidelines](CONTRIBUTING).
+Please make sure to follow our [Coding Style](/CODING_STYLE) when submitting patches.
+Also have a look at our [Contribution Guidelines](/CONTRIBUTING).
When adding new functionality, tests should be added.
For shared functionality (in `src/basic/` and `src/shared/`) unit tests should be sufficient.
@@ -155,7 +155,7 @@ Those are not useful when compiling for distribution and can be disabled by sett
## Sanitizers in mkosi
-See [Testing systemd using sanitizers](TESTING_WITH_SANITIZERS) for more information on how to build with sanitizers enabled in mkosi.
+See [Testing systemd using sanitizers](/TESTING_WITH_SANITIZERS) for more information on how to build with sanitizers enabled in mkosi.
## Fuzzers
@@ -211,7 +211,7 @@ done
```
If you find a bug that impacts the security of systemd,
-please follow the guidance in [CONTRIBUTING.md](CONTRIBUTING) on how to report a security vulnerability.
+please follow the guidance in [CONTRIBUTING.md](/CONTRIBUTING) on how to report a security vulnerability.
For more details on building fuzzers and integrating with OSS-Fuzz, visit: