diff options
Diffstat (limited to 'docs/dev/plugins')
| -rw-r--r-- | docs/dev/plugins/builtins.rst | 15 | ||||
| -rw-r--r-- | docs/dev/plugins/calculator.rst | 8 | ||||
| -rw-r--r-- | docs/dev/plugins/development.rst | 7 | ||||
| -rw-r--r-- | docs/dev/plugins/hash_plugin.rst | 8 | ||||
| -rw-r--r-- | docs/dev/plugins/hostnames.rst | 8 | ||||
| -rw-r--r-- | docs/dev/plugins/index.rst | 9 | ||||
| -rw-r--r-- | docs/dev/plugins/self_info.rst | 8 | ||||
| -rw-r--r-- | docs/dev/plugins/tor_check.rst | 8 | ||||
| -rw-r--r-- | docs/dev/plugins/unit_converter.rst | 8 |
9 files changed, 79 insertions, 0 deletions
diff --git a/docs/dev/plugins/builtins.rst b/docs/dev/plugins/builtins.rst new file mode 100644 index 000000000..902092e11 --- /dev/null +++ b/docs/dev/plugins/builtins.rst @@ -0,0 +1,15 @@ +.. _builtin plugins: + +================ +Built-in Plugins +================ + +.. toctree:: + :maxdepth: 1 + + calculator + hash_plugin + hostnames + self_info + tor_check + unit_converter diff --git a/docs/dev/plugins/calculator.rst b/docs/dev/plugins/calculator.rst new file mode 100644 index 000000000..7ca9e32ed --- /dev/null +++ b/docs/dev/plugins/calculator.rst @@ -0,0 +1,8 @@ +.. _plugins.calculator: + +========== +Calculator +========== + +.. automodule:: searx.plugins.calculator + :members: diff --git a/docs/dev/plugins/development.rst b/docs/dev/plugins/development.rst new file mode 100644 index 000000000..6bece72c0 --- /dev/null +++ b/docs/dev/plugins/development.rst @@ -0,0 +1,7 @@ +.. _dev plugin: + +================== +Plugin Development +================== + +.. automodule:: searx.plugins diff --git a/docs/dev/plugins/hash_plugin.rst b/docs/dev/plugins/hash_plugin.rst new file mode 100644 index 000000000..a5ac0728f --- /dev/null +++ b/docs/dev/plugins/hash_plugin.rst @@ -0,0 +1,8 @@ +.. _hash_plugin plugin: + +=========== +Hash Values +=========== + +.. autoclass:: searx.plugins.hash_plugin.SXNGPlugin + :members: diff --git a/docs/dev/plugins/hostnames.rst b/docs/dev/plugins/hostnames.rst new file mode 100644 index 000000000..434f170ea --- /dev/null +++ b/docs/dev/plugins/hostnames.rst @@ -0,0 +1,8 @@ +.. _hostnames plugin: + +========= +Hostnames +========= + +.. automodule:: searx.plugins.hostnames + :members: diff --git a/docs/dev/plugins/index.rst b/docs/dev/plugins/index.rst new file mode 100644 index 000000000..bed8095e2 --- /dev/null +++ b/docs/dev/plugins/index.rst @@ -0,0 +1,9 @@ +======= +Plugins +======= + +.. toctree:: + :maxdepth: 2 + + development + builtins diff --git a/docs/dev/plugins/self_info.rst b/docs/dev/plugins/self_info.rst new file mode 100644 index 000000000..a1dd66b17 --- /dev/null +++ b/docs/dev/plugins/self_info.rst @@ -0,0 +1,8 @@ +.. _self_info plugin: + +========= +Self-Info +========= + +.. autoclass:: searx.plugins.self_info.SXNGPlugin + :members: diff --git a/docs/dev/plugins/tor_check.rst b/docs/dev/plugins/tor_check.rst new file mode 100644 index 000000000..f1a02381e --- /dev/null +++ b/docs/dev/plugins/tor_check.rst @@ -0,0 +1,8 @@ +.. _tor check plugin: + +========= +Tor check +========= + +.. automodule:: searx.plugins.tor_check + :members: diff --git a/docs/dev/plugins/unit_converter.rst b/docs/dev/plugins/unit_converter.rst new file mode 100644 index 000000000..2e19bc38e --- /dev/null +++ b/docs/dev/plugins/unit_converter.rst @@ -0,0 +1,8 @@ +.. _unit converter plugin: + +============== +Unit Converter +============== + +.. automodule:: searx.plugins.unit_converter + :members: |