Check-in [6a4153d11f]
Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
| Comment: | Updated man pages for logfmt1 |
|---|---|
| Downloads: | Tarball | ZIP archive | SQL archive |
| Timelines: | family | ancestors | descendants | both | trunk |
| Files: | files | file ages | folders |
| SHA3-256: |
6a4153d11fab7c2ccd1c7d4c90b8f614 |
| User & Date: | mario 2021-01-12 22:50:29 |
Context
|
2021-01-12
| ||
| 22:51 | Man pages (in data_files=) are now handled by pluginconf.setup check-in: d9a54476b3 user: mario tags: trunk | |
| 22:50 | Updated man pages for logfmt1 check-in: 6a4153d11f user: mario tags: trunk | |
| 22:48 | html2mallard 0.2 with material theme recognition, slightly more structured regex rules check-in: 1aa3926f1f user: mario tags: trunk | |
Changes
Changes to logfmt1/manpage/logex.1.
| ︙ | ︙ | |||
120 121 122 123 124 125 126 |
name
T}@T{
whatever
T}
.TE
.SH SEE ALSO
.PP
| | | 120 121 122 123 124 125 126 127 |
name
T}@T{
whatever
T}
.TE
.SH SEE ALSO
.PP
\f[B]python\f[R](1), \f[B]update\-logfmt\f[R](1), \f[B]logfmt\f[R](5)
|
Changes to logfmt1/manpage/logfmt.md.
1 2 3 4 5 6 7 8 | % log.fmt(5) logfmt1 tools | Version 0.3 .LOG.FMT ======== ## A .log.fmt for each log file Instead logfmt1 aims to have descriptors for each log file, in order to | > | 1 2 3 4 5 6 7 8 9 | % log.fmt(5) logfmt1 tools | Version 0.3 .LOG.FMT ======== ## A .log.fmt for each log file Instead logfmt1 aims to have descriptors for each log file, in order to |
| ︙ | ︙ |
Changes to logfmt1/manpage/update-logfmt.1.
| ︙ | ︙ | |||
29 30 31 32 33 34 35 | .IP \[bu] 2 Nginx (only accesss logs) .PP More static system logs (klog/syslog) might be supported in the next version. .SH SEE ALSO .PP | | > | 29 30 31 32 33 34 35 36 37 | .IP \[bu] 2 Nginx (only accesss logs) .PP More static system logs (klog/syslog) might be supported in the next version. .SH SEE ALSO .PP \f[B]python\f[R](1), \f[B]logex\f[R](1), \f[B]modseccfg\f[R](1), \f[B]logfmt\f[R](5) |
Changes to logfmt1/setup.py.
| ︙ | ︙ | |||
14 15 16 17 18 19 20 |
from glob import glob
setup(
fn="./logfmt1.py",
long_description="@README.rst",
package_dir={"logfmt1": "./"},
packages=["logfmt1"],
| | | 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 |
from glob import glob
setup(
fn="./logfmt1.py",
long_description="@README.rst",
package_dir={"logfmt1": "./"},
packages=["logfmt1"],
# data_files=[("man/man1", glob("manpage/*.1")), ("man/man5", glob("manpage/*.5"))], # in pluginconf.setup now
package_data={
"logfmt1": [
"./share/*",
"./share/update/*"
],
},
#data_files=[],
|
| ︙ | ︙ |