comparison docs/conf.py @ 283:1fc3b04b39fa

Build and package manual pages for fzfs, fzfs-mount and fzfs-umount. Also put some stub info into the manual page for local-bsdtools.
author Franz Glasner <fzglas.hg@dom66.de>
date Sun, 18 Sep 2022 01:31:47 +0200
parents d9f0c8e00019
children 106cd5d9da7e
comparison
equal deleted inserted replaced
282:7811505d68d4 283:1fc3b04b39fa
51 51
52 # Add any paths that contain custom static files (such as style sheets) here, 52 # Add any paths that contain custom static files (such as style sheets) here,
53 # relative to this directory. They are copied after the builtin static files, 53 # relative to this directory. They are copied after the builtin static files,
54 # so a file named "default.css" will overwrite the builtin "default.css". 54 # so a file named "default.css" will overwrite the builtin "default.css".
55 html_static_path = ['_static'] 55 html_static_path = ['_static']
56
57
58 # -- Options for manual page output ------------------------------------------
59
60 # One entry per manual page. List of tuples
61 # (source start file, name, description, authors, manual section).
62 man_pages = [
63 ("index", "local-bsdtools", 'FreeBSD specific administration helper tools', [author], 1),
64 ("man/fzfs", "fzfs", "A ZFS management helper tool", [author], 1),
65 ("man/fzfs-mount", "fzfs-mount", "Mount ZFS datasets recursively", [author], 1),
66 ("man/fzfs-umount", "fzfs-umount", "Unmount ZFS datasets recursively", [author], 1),
67 ]
68
69
70 # -- Link to manual pages ----------------------------------------------------
71
72 manpages_url = "https://www.freebsd.org/cgi/man.cgi?query={page}&sektion={section}"
73