summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFilipe Brandenburger <filbranden@google.com>2018-09-07 01:02:42 -0700
committerFilipe Brandenburger <filbranden@google.com>2018-09-08 13:39:03 -0700
commit9e825ebf4f5029ae6cb072ac568d7838e0762a9e (patch)
tree4950d3f39fa29f8513a797d313ca6b48fd04c131
parent9d0798a2edf05438499c7cb5def592d52358f397 (diff)
downloadsystemd-9e825ebf4f5029ae6cb072ac568d7838e0762a9e.tar.gz
systemd-9e825ebf4f5029ae6cb072ac568d7838e0762a9e.tar.bz2
systemd-9e825ebf4f5029ae6cb072ac568d7838e0762a9e.zip
docs: move doc/ to docs/
The docs/ directory is special in GitHub, since it can be used to serve GitHub Pages from, so there's a benefit to switching to it in order to expose it directly as a website. Updated references to it from the documentations themselves, from the CONTRIBUTING.md file and from Meson build files.
-rw-r--r--.github/CONTRIBUTING.md4
-rw-r--r--docs/BOOT_LOADER_SPECIFICATION.md (renamed from doc/BOOT_LOADER_SPECIFICATION.md)0
-rw-r--r--docs/CGROUP_DELEGATION.md (renamed from doc/CGROUP_DELEGATION.md)0
-rw-r--r--docs/CODE_QUALITY.md (renamed from doc/CODE_QUALITY.md)0
-rw-r--r--docs/CODING_STYLE (renamed from doc/CODING_STYLE)0
-rw-r--r--docs/DISTRO_PORTING (renamed from doc/DISTRO_PORTING)0
-rw-r--r--docs/ENVIRONMENT.md (renamed from doc/ENVIRONMENT.md)0
-rw-r--r--docs/HACKING (renamed from doc/HACKING)4
-rw-r--r--docs/PORTABLE_SERVICES.md (renamed from doc/PORTABLE_SERVICES.md)0
-rw-r--r--docs/TRANSIENT-SETTINGS.md (renamed from doc/TRANSIENT-SETTINGS.md)0
-rw-r--r--docs/TRANSLATORS (renamed from doc/TRANSLATORS)0
-rw-r--r--docs/UIDS-GIDS.md (renamed from doc/UIDS-GIDS.md)0
-rw-r--r--docs/sysvinit/README.in (renamed from doc/sysvinit/README.in)0
-rw-r--r--docs/sysvinit/meson.build (renamed from doc/sysvinit/meson.build)0
-rw-r--r--docs/var-log/README.in (renamed from doc/var-log/README.in)0
-rw-r--r--docs/var-log/meson.build (renamed from doc/var-log/meson.build)0
-rw-r--r--meson.build18
17 files changed, 13 insertions, 13 deletions
diff --git a/.github/CONTRIBUTING.md b/.github/CONTRIBUTING.md
index 2f266f2934..ea15325fe9 100644
--- a/.github/CONTRIBUTING.md
+++ b/.github/CONTRIBUTING.md
@@ -24,8 +24,8 @@ If you discover a security vulnerability, we'd appreciate a non-public disclosur
## Posting Pull Requests
* Make sure to post PRs only relative to a very recent git master.
-* Follow our [Coding Style](https://raw.githubusercontent.com/systemd/systemd/master/doc/CODING_STYLE) when contributing code. This is a requirement for all code we merge.
-* Please make sure to test your change before submitting the PR. See [HACKING](https://raw.githubusercontent.com/systemd/systemd/master/doc/HACKING) for details how to do this.
+* Follow our [Coding Style](https://raw.githubusercontent.com/systemd/systemd/master/docs/CODING_STYLE) when contributing code. This is a requirement for all code we merge.
+* Please make sure to test your change before submitting the PR. See [HACKING](https://raw.githubusercontent.com/systemd/systemd/master/docs/HACKING) for details how to do this.
* Make sure to run the test suite locally, before posting your PR. We use a CI system, meaning we don't even look at your PR, if the build and tests don't pass.
* If you need to update the code in an existing PR, force-push into the same branch, overriding old commits with new versions.
* After you have pushed a new version, add a comment about the new version (no notification is sent just for the commits, so it's easy to miss the update without an explicit comment). If you are a member of the systemd project on GitHub, remove the `reviewed/needs-rework` label.
diff --git a/doc/BOOT_LOADER_SPECIFICATION.md b/docs/BOOT_LOADER_SPECIFICATION.md
index bea380de8c..bea380de8c 100644
--- a/doc/BOOT_LOADER_SPECIFICATION.md
+++ b/docs/BOOT_LOADER_SPECIFICATION.md
diff --git a/doc/CGROUP_DELEGATION.md b/docs/CGROUP_DELEGATION.md
index 63d9d41b10..63d9d41b10 100644
--- a/doc/CGROUP_DELEGATION.md
+++ b/docs/CGROUP_DELEGATION.md
diff --git a/doc/CODE_QUALITY.md b/docs/CODE_QUALITY.md
index e673ad58ad..e673ad58ad 100644
--- a/doc/CODE_QUALITY.md
+++ b/docs/CODE_QUALITY.md
diff --git a/doc/CODING_STYLE b/docs/CODING_STYLE
index 26928d2e2d..26928d2e2d 100644
--- a/doc/CODING_STYLE
+++ b/docs/CODING_STYLE
diff --git a/doc/DISTRO_PORTING b/docs/DISTRO_PORTING
index d1a187aa41..d1a187aa41 100644
--- a/doc/DISTRO_PORTING
+++ b/docs/DISTRO_PORTING
diff --git a/doc/ENVIRONMENT.md b/docs/ENVIRONMENT.md
index 9d598a6693..9d598a6693 100644
--- a/doc/ENVIRONMENT.md
+++ b/docs/ENVIRONMENT.md
diff --git a/doc/HACKING b/docs/HACKING
index 182b0bac8c..c7b700e6a7 100644
--- a/doc/HACKING
+++ b/docs/HACKING
@@ -7,7 +7,7 @@ Request (PR):
https://github.com/systemd/systemd/pull/new
Please make sure to follow our Coding Style when submitting patches. See
-doc/CODING_STYLE for details. Also have a look at our Contribution Guidelines:
+docs/CODING_STYLE for details. Also have a look at our Contribution Guidelines:
https://github.com/systemd/systemd/blob/master/.github/CONTRIBUTING.md
@@ -23,7 +23,7 @@ encouraged.
Please also have a look at our list of code quality tools we have setup for systemd,
to ensure our codebase stays in good shape:
- https://github.com/systemd/systemd/blob/master/doc/CODE_QUALITY.md
+ https://github.com/systemd/systemd/blob/master/docs/CODE_QUALITY.md
Please always test your work before submitting a PR. For many of the components
of systemd testing is straight-forward as you can simply compile systemd and
diff --git a/doc/PORTABLE_SERVICES.md b/docs/PORTABLE_SERVICES.md
index 1833244447..1833244447 100644
--- a/doc/PORTABLE_SERVICES.md
+++ b/docs/PORTABLE_SERVICES.md
diff --git a/doc/TRANSIENT-SETTINGS.md b/docs/TRANSIENT-SETTINGS.md
index bb13cfdbfe..bb13cfdbfe 100644
--- a/doc/TRANSIENT-SETTINGS.md
+++ b/docs/TRANSIENT-SETTINGS.md
diff --git a/doc/TRANSLATORS b/docs/TRANSLATORS
index 873ec7b01c..873ec7b01c 100644
--- a/doc/TRANSLATORS
+++ b/docs/TRANSLATORS
diff --git a/doc/UIDS-GIDS.md b/docs/UIDS-GIDS.md
index 7755491319..7755491319 100644
--- a/doc/UIDS-GIDS.md
+++ b/docs/UIDS-GIDS.md
diff --git a/doc/sysvinit/README.in b/docs/sysvinit/README.in
index de5d80d902..de5d80d902 100644
--- a/doc/sysvinit/README.in
+++ b/docs/sysvinit/README.in
diff --git a/doc/sysvinit/meson.build b/docs/sysvinit/meson.build
index fbac59ae49..fbac59ae49 100644
--- a/doc/sysvinit/meson.build
+++ b/docs/sysvinit/meson.build
diff --git a/doc/var-log/README.in b/docs/var-log/README.in
index 2e64fb196a..2e64fb196a 100644
--- a/doc/var-log/README.in
+++ b/docs/var-log/README.in
diff --git a/doc/var-log/meson.build b/docs/var-log/meson.build
index 0ddff20ce5..0ddff20ce5 100644
--- a/doc/var-log/meson.build
+++ b/docs/var-log/meson.build
diff --git a/meson.build b/meson.build
index 48a47f8103..2b64bcb333 100644
--- a/meson.build
+++ b/meson.build
@@ -2749,8 +2749,8 @@ subdir('network')
subdir('man')
subdir('shell-completion/bash')
subdir('shell-completion/zsh')
-subdir('doc/sysvinit')
-subdir('doc/var-log')
+subdir('docs/sysvinit')
+subdir('docs/var-log')
# FIXME: figure out if the warning is true:
# https://github.com/mesonbuild/meson/wiki/Reference-manual#install_subdir
@@ -2766,13 +2766,13 @@ install_data('LICENSE.GPL2',
'LICENSE.LGPL2.1',
'NEWS',
'README',
- 'doc/CODING_STYLE',
- 'doc/DISTRO_PORTING',
- 'doc/ENVIRONMENT.md',
- 'doc/HACKING',
- 'doc/TRANSIENT-SETTINGS.md',
- 'doc/TRANSLATORS',
- 'doc/UIDS-GIDS.md',
+ 'docs/CODING_STYLE',
+ 'docs/DISTRO_PORTING',
+ 'docs/ENVIRONMENT.md',
+ 'docs/HACKING',
+ 'docs/TRANSIENT-SETTINGS.md',
+ 'docs/TRANSLATORS',
+ 'docs/UIDS-GIDS.md',
'src/libsystemd/sd-bus/GVARIANT-SERIALIZATION',
install_dir : docdir)