summaryrefslogtreecommitdiff
path: root/man/systemd.syntax.xml
Commit message (Collapse)AuthorAgeFilesLines
* man: create a new section for nspawn files in systemd.syntax man page (#25807)Steve Ramage2022-12-211-2/+5
| | | Closes #25806.
* Use https for freedesktop.orgMichael Biebl2022-06-281-1/+1
| | | | grep -l -r http:// | xargs sed -E -i s'#http://(.*).freedesktop.org#https://\1.freedesktop.org#'
* man: document \u and \U, say that utf-8 is allowedZbigniew Jędrzejewski-Szmek2021-03-011-6/+14
|
* man: move quoting description to systemd.syntaxZbigniew Jędrzejewski-Szmek2021-03-011-4/+86
| | | | | We use very similar quoting rules in many places. Let's move this lengthy text out of systemd.service page.
* license: LGPL-2.1+ -> LGPL-2.1-or-laterYu Watanabe2020-11-091-1/+1
|
* tree-wide: fixes for assorted grammar and spelling issuesZbigniew Jędrzejewski-Szmek2020-07-061-2/+2
| | | | Fixes #16363. Also includes some changes where I generalized the pattern.
* man: document that .link/.network/.netdev files have the usual ini syntaxZbigniew Jędrzejewski-Szmek2020-03-031-0/+9
| | | | Fixes #1266.
* man: refer to systemd.syntax(7) from systemd.nspawn(5)Zbigniew Jędrzejewski-Szmek2019-11-251-1/+3
| | | | | | | | systemd.nspawn(5) contained a partial repeat of the stuff that is now in the dedicated man page. Let's just refer to that. While at it, do s/searched/searched for/ where appropriate and reword some sentences for brevity.
* man: use same header for all filesZbigniew Jędrzejewski-Szmek2019-03-141-1/+1
| | | | | | | The "include" files had type "book" for some raeason. I don't think this is meaningful. Let's just use the same everywhere. $ perl -i -0pe 's^..DOCTYPE (book|refentry) PUBLIC "-//OASIS//DTD DocBook XML V4.[25]//EN"\s+"http^<!DOCTYPE refentry PUBLIC "-//OASIS//DTD DocBook XML V4.5//EN"\n "http^gms' man/*.xml
* man: standarize on one-line license headerZbigniew Jędrzejewski-Szmek2019-03-141-1/+0
| | | | | | No need to waste space, and uniformity is good. $ perl -i -0pe 's|\n+<!--\s*SPDX-License-Identifier: LGPL-2.1..\s*-->|\n<!-- SPDX-License-Identifier: LGPL-2.1+ -->|gms' man/*.xml
* man: clarify whitespace handling in systemd.syntaxDavide Cavalca2019-02-271-1/+1
|
* man: document the details of continuations and commentsZbigniew Jędrzejewski-Szmek2018-11-081-1/+8
|
* man: move explanations about boolean and time-span value from systemd.unit ↵Yu Watanabe2018-07-301-0/+24
| | | | | | to systemd.syntax Fixes #9735.
* man: drop mode line in file headersZbigniew Jędrzejewski-Szmek2018-07-031-1/+1
| | | | | This is already included in .dir-locals, so we don't need it in the files themselves.
* man: drop unused <authorgroup> tags from man sourcesZbigniew Jędrzejewski-Szmek2018-06-141-9/+0
| | | | | | | | | | | | Docbook styles required those to be present, even though the templates that we use did not show those names anywhere. But something changed semi-recently (I would suspect docbook templates, but there was only a minor version bump in recent years, and the changelog does not suggest anything related), and builds now work without those entries. Let's drop this dead weight. Tested with F26-F29, debian unstable. $ perl -i -0pe 's/\s*<authorgroup>.*<.authorgroup>//gms' man/*xml
* man: add a new page with a general description of common syntaxZbigniew Jędrzejewski-Szmek2018-04-181-0/+107
We have a common parser, but for the user it might be completely unobvious that the same general rules apply to all those files. Let's add a page about the basic syntax so that the more specific pages don't have to repeat those details.