sessiond: notification: add support for async commands
[lttng-tools.git] / doc / man / README.md
... / ...
CommitLineData
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
26### man
27
28The man macro is used to link to another man page. In troff, the man
29page name is rendered in bold.
30
31Usage example: `man:lttng-enable-channel(1)`.
32
33
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
42### option
43
44The option macro is used to write a command-line option which is
45defined in the same man page.
46
47Usage example: `option:--no-output`, `option:--loglevel=TRACE_WARNING`
48
49
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
66### not
67
68The `:not:` macro is used to emphasize on _not_.
69
70
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
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.).
96 * Use callouts with the `term` role for command-line examples.
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.023655 seconds and 5 git commands to generate.