event-rule: introduce event rule syscall
[lttng-tools.git] / doc / man / README.md
CommitLineData
f8cdcb88
PP
1LTTng-tools man pages
2=====================
3
4This directory contains the sources of the LTTng-tools man pages.
5
6LTTng-tools man pages are written in
7[AsciiDoc](http://www.methods.co.nz/asciidoc/), and then converted to
8DocBook (XML) using the `asciidoc` command, and finally to troff using
9the appropriate DocBook XSL stylesheet (using the `xmlto` command).
10
11
12Custom XSL stylesheets
13----------------------
14
15There are a few custom XSL stylesheets applied for customizing the
16generated man pages in the `xsl` directory.
17
18
19Macros
20------
21
22AsciiDoc is configured with `asciidoc.conf` which contains a few
23macro definitions used everywhere in the man page sources.
24
25
7c1a4458 26### man
f8cdcb88 27
7c1a4458
PP
28The man macro is used to link to another man page. In troff, the man
29page name is rendered in bold.
f8cdcb88 30
7c1a4458 31Usage example: `man:lttng-enable-channel(1)`.
f8cdcb88
PP
32
33
8cfee8a5
PP
34### linkgenoptions
35
36The linkgenoptions macro is used to link to the general options
37section of the `lttng(1)` command.
38
39Usage example: `See the linkgenoptions:(general options).`.
40
41
f8cdcb88
PP
42### option
43
b5217c86
PP
44The option macro is used to write a command-line option which is
45defined in the same man page.
f8cdcb88
PP
46
47Usage example: `option:--no-output`, `option:--loglevel=TRACE_WARNING`
48
49
b5217c86
PP
50### nloption
51
52Command-line option generating no link. This is used when talking
53about a generic option which is defined in many man pages.
54
55Usage example: `nloption:--jul`
56
57
58### genoption
59
60General (`lttng(1)`) command-line option, for generating the appropriate
61cross-man-page link.
62
63Usage example: `genoption:--group`, `genoption:--sessiond-path`
64
65
f8cdcb88
PP
66### not
67
68The `:not:` macro is used to emphasize on _not_.
69
70
bca82bfe
PP
71### escwc
72
73The `:escwc:` macro is used to output `\*` literally in the man page,
74which is not so easy to do otherwise.
75
76
f8cdcb88
PP
77Includes
78--------
79
80 * `common-cmd-footer.txt`: common `lttng` command footer.
81 * `common-cmd-help-options.txt`: common program information section
82 of `lttng` command options.
83 * `common-cmd-options-head.txt`: common `lttng` command head of
84 options section.
85 * `common-footer.txt`: common footer for all commands.
86
87
88Convention
89----------
90
91Please follow those rules when updating the current man pages or
92writing new ones:
93
94 * Always use macros when possible (link to other LTTng man page,
95 command-line option, NOT, etc.).
d4f093aa 96 * Use callouts with the `term` role for command-line examples.
f8cdcb88
PP
97 * Always refer to _long_ options in the text.
98 * Use the `option:--option=parameter` format (with `=`) when providing
99 a parameter to long options.
100 * Write _user space_, not _userspace_ nor _user-space_.
101 (neither _user land_).
102 * Write _file system_, not _filesystem_.
103 * Write _use case_, not _use-case_ nor _usecase_.
104 * Write _log level_, not _loglevel_.
105 * Write complete LTTng project names: _LTTng-modules_, _LTTng-UST_ and
106 _LTTng-tools_, not _modules_, _UST_ and _tools_.
107 * Prefer simple emphasis to strong emphasis for emphasizing text.
108 * Try to stay behind the 72th column mark if possible, and behind
109 the 80th column otherwise.
110 * Do not end directory paths with a forward slash
111 (good: `include/trace/events`, bad: `include/trace/events/`).
112 * Minimize the use of the future tense (_will_).
113 * Do not use Latin abbreviations (_e.g._, _i.e._, _etc._).
This page took 0.051564 seconds and 5 git commands to generate.