Skip to content

Commit

Permalink
Change: Convert docs to use markdown formatting
Browse files Browse the repository at this point in the history
Add myst-parser for using markdown instead of restructuredtext in the
docs.
  • Loading branch information
bjoernricks committed Sep 1, 2023
1 parent 4564afe commit 0abbbef
Show file tree
Hide file tree
Showing 17 changed files with 1,109 additions and 1,031 deletions.
48 changes: 24 additions & 24 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,15 +17,15 @@
import os
import sys

sys.path.insert(0, os.path.abspath('..'))
sys.path.insert(0, os.path.abspath(".."))

import gvmtools

# -- Project information -----------------------------------------------------

project = 'gvm-tools'
copyright = '2018-2020, Greenbone AG'
author = 'Greenbone AG'
project = "gvm-tools"
copyright = "2018-2023, Greenbone AG"
author = "Greenbone AG"

version = gvmtools.get_version()
release = version
Expand All @@ -41,22 +41,22 @@
# extensions coming with Sphinx (named 'sphinx.ext.*') or your custom
# ones.
extensions = [
'sphinx.ext.autodoc',
'sphinx.ext.githubpages',
'sphinx.ext.napoleon',
"sphinx.ext.autodoc",
"sphinx.ext.githubpages",
"sphinx.ext.napoleon",
"myst_parser",
]

# Add any paths that contain templates here, relative to this directory.
templates_path = ['_templates']
templates_path = ["_templates"]

# The suffix(es) of source filenames.
# You can specify multiple suffix as a list of string:
#
# source_suffix = ['.rst', '.md']
source_suffix = '.rst'
source_suffix = [".md", ".rst"]

# The master toctree document.
master_doc = 'index'
master_doc = "index"

# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
Expand All @@ -83,7 +83,7 @@
html_css_files = ["custom.css"]
html_logo = "_static/logo.svg"

html_static_path = ['_static']
html_static_path = ["_static"]

repo_url = "https://github.com/greenbone/gvm-tools/"

Expand Down Expand Up @@ -139,7 +139,7 @@
# -- Options for HTMLHelp output ---------------------------------------------

# Output file base name for HTML help builder.
htmlhelp_basename = 'gvm-toolsdoc'
htmlhelp_basename = "gvm-toolsdoc"

# -- Options for LaTeX output ------------------------------------------------
latex_elements = {
Expand All @@ -162,10 +162,10 @@
latex_documents = [
(
master_doc,
'gvm-tools.tex',
'gvm-tools Documentation',
'Greenbone AG',
'manual',
"gvm-tools.tex",
"gvm-tools Documentation",
"Greenbone AG",
"manual",
)
]

Expand All @@ -174,7 +174,7 @@

# One entry per manual page. List of tuples
# (source start file, name, description, authors, manual section).
man_pages = [(master_doc, 'gvm-tools', 'gvm-tools Documentation', [author], 1)]
man_pages = [(master_doc, "gvm-tools", "gvm-tools Documentation", [author], 1)]


# -- Options for Texinfo output ----------------------------------------------
Expand All @@ -185,12 +185,12 @@
texinfo_documents = [
(
master_doc,
'gvm-tools',
'gvm-tools Documentation',
"gvm-tools",
"gvm-tools Documentation",
author,
'gvm-tools',
'One line description of project.',
'Miscellaneous',
"gvm-tools",
"One line description of project.",
"Miscellaneous",
)
]

Expand All @@ -210,7 +210,7 @@
# epub_uid = ''

# A list of files that should not be packed into the epub file.
epub_exclude_files = ['search.html']
epub_exclude_files = ["search.html"]


# -- Extension configuration -------------------------------------------------
172 changes: 172 additions & 0 deletions docs/config.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,172 @@
(config)=

# Configuration

```{versionchanged} 2.0
```

By default, {program}`gvm-tools` {ref}`programs <tools>` are evaluating the
{file}`~/.config/gvm-tools.conf`
[ini style](https://docs.python.org/3/library/configparser.html#supported-ini-file-structure)
config file since version 2.0. The name of the used config file can be set using the
{command}`-c/--config` command line switch.

## Settings

The configuration file consists of sections, each led by a {code}`[section]`
header, followed by key/value entries separated by a {code}`=` character.
Whitespaces between key and value are ignored, i.e., {code}`key = value` is the
same as {code}`key=value`.

Currently five sections are evaluated:

- {ref}`Main section <main-section>`
- {ref}`GMP section <gmp-section>`
- {ref}`Socket section <socket-config-section>`
- {ref}`TLS section <tls-config-section>`
- {ref}`SSH section <ssh-config-section>`

(main-section)=

```{rubric} Main Section
```

The main section allows changing the default connection timeout besides
defining variables for {ref}`interpolation`.

```ini
[main]
timeout = 60
```

(gmp-section)=

```{rubric} GMP Section
```

The GMP section allows setting the default user name and password for
[Greenbone Management Protocol (GMP)](https://community.greenbone.net/t/about-the-greenbone-management-protocol-gmp-category/83)
based communication.

```ini
[gmp]
username=gmpuser
password=gmppassword
```

(socket-config-section)=

```{rubric} Socket Section
```

This section is only relevant if the {ref}`socket connection type
<socket-connection-type>` is used.

The socket section allows setting the default path to the Unix Domain socket of
{term}`gvmd`. It must not be confused with the socket path to the redis server
used by {term}`openvas`.

```ini
[unixsocket]
socketpath=/run/gvmd/gvmd.sock
```

(tls-config-section)=

```{rubric} TLS Section
```

This section is only relevant if the {ref}`TLS connection type
<tls-connection-type>` is used.

The TLS section allows setting the default port, TLS certificate file, TLS key
file and TLS certificate authority file.

```ini
[tls]
port=1234
certfile=/path/to/tls.cert
keyfile=/path/to/tls.key
cafile=/path/to/tls.ca
```

(ssh-config-section)=

```{rubric} SSH Section
```

This section is only relevant if the {ref}`SSH connection type <ssh-connection-type>`
is used.

The SSH section allows setting the default SSH port, SSH user name and SSH
password.

```ini
[ssh]
username=sshuser
password=sshpassword
port=2222
```

```{rubric} Comments
```

Configuration files may also contain comments by using the special character
{code}`#`. A comment should be placed on a separate line above or below the
setting.

```ini
[main]
# connection timeout of 120 seconds
timeout=120
```

(interpolation)=

```{rubric} Interpolation
```

The configuration file also supports the [interpolation of values](https://docs.python.org/3/library/configparser.html#interpolation-of-values).
It is possible to define values in the {code}`[main]` section and reference
them via a {code}`%(<variablename>)s` syntax. Additionally, values of the
same section can be referenced.

```ini
[main]
my_first_name=John

[gmp]
my_last_name=Smith
username=%(my_first_name)s%(my_last_name)s
```

Using this syntax will set the gmp user name setting to `JohnSmith`.

## Example

Full example configuration:

```ini
[main]
# increased timeout to 5 minutes
timeout = 300
tls_path=/data/tls
default_user=johnsmith

[gmp]
username=%(default_user)s
password=choo4Gahdi2e

[unixsocket]
socketpath=/run/gvmd/gvmd.sock

[tls]
port=1234
certfile=%(tls_path)s/tls.cert
keyfile=%(tls_path)s/tls.key
cafile=%(tls_path)s/tls.ca

[ssh]
username=%(default_user)s
password=Poa8Ies1iJee
```

0 comments on commit 0abbbef

Please sign in to comment.