2015-11-17 22:13:30 +00:00
|
|
|
# -*- coding: utf-8 -*-
|
2021-04-17 16:20:29 +00:00
|
|
|
# SPDX-License-Identifier: AGPL-3.0-or-later
|
2015-11-17 22:13:30 +00:00
|
|
|
|
2019-12-04 14:27:27 +00:00
|
|
|
import sys, os
|
|
|
|
from pallets_sphinx_themes import ProjectLink
|
2015-11-17 22:13:30 +00:00
|
|
|
|
2021-07-17 17:03:54 +00:00
|
|
|
from searx import get_setting
|
2020-12-20 23:37:45 +00:00
|
|
|
from searx.version import VERSION_STRING
|
2020-09-29 10:30:10 +00:00
|
|
|
|
2019-12-04 14:27:27 +00:00
|
|
|
# Project --------------------------------------------------------------
|
2015-11-17 22:13:30 +00:00
|
|
|
|
|
|
|
project = u'searx'
|
2020-02-20 17:11:34 +00:00
|
|
|
copyright = u'2015-2020, Adam Tauber, Noémi Ványi'
|
2015-11-17 22:13:30 +00:00
|
|
|
author = u'Adam Tauber'
|
2019-12-04 14:27:27 +00:00
|
|
|
release, version = VERSION_STRING, VERSION_STRING
|
2021-06-01 13:09:24 +00:00
|
|
|
|
2021-07-17 17:03:54 +00:00
|
|
|
SEARX_URL = get_setting('server.base_url') or 'https://example.org/searx'
|
|
|
|
GIT_URL = get_setting('brand.git_url')
|
|
|
|
GIT_BRANCH = get_setting('brand.git_branch')
|
|
|
|
ISSUE_URL = get_setting('brand.issue_url')
|
|
|
|
DOCS_URL = get_setting('brand.docs_url')
|
|
|
|
PUBLIC_INSTANCES = get_setting('brand.public_instances')
|
|
|
|
CONTACT_URL = get_setting('general.contact_url')
|
|
|
|
WIKI_URL = get_setting('brand.wiki_url')
|
|
|
|
|
2021-06-01 13:09:24 +00:00
|
|
|
# hint: sphinx.ext.viewcode won't highlight when 'highlight_language' [1] is set
|
|
|
|
# to string 'none' [2]
|
|
|
|
#
|
|
|
|
# [1] https://www.sphinx-doc.org/en/master/usage/extensions/viewcode.html
|
|
|
|
# [2] https://www.sphinx-doc.org/en/master/usage/configuration.html#confval-highlight_language
|
|
|
|
|
|
|
|
highlight_language = 'default'
|
2015-11-17 22:13:30 +00:00
|
|
|
|
2019-12-04 14:27:27 +00:00
|
|
|
# General --------------------------------------------------------------
|
2015-11-17 22:13:30 +00:00
|
|
|
|
2019-12-04 14:27:27 +00:00
|
|
|
master_doc = "index"
|
|
|
|
source_suffix = '.rst'
|
2019-12-19 22:36:53 +00:00
|
|
|
numfig = True
|
2015-11-17 22:13:30 +00:00
|
|
|
|
2020-03-03 15:26:02 +00:00
|
|
|
exclude_patterns = ['build-templates/*.rst']
|
|
|
|
|
2020-12-21 08:53:41 +00:00
|
|
|
import searx.engines
|
|
|
|
import searx.plugins
|
2021-06-04 09:26:37 +00:00
|
|
|
searx.engines.load_engines(searx.settings['engines'])
|
2019-12-21 16:13:38 +00:00
|
|
|
jinja_contexts = {
|
2020-12-21 08:53:41 +00:00
|
|
|
'searx': {
|
|
|
|
'engines': searx.engines.engines,
|
|
|
|
'plugins': searx.plugins.plugins
|
|
|
|
},
|
2019-12-21 16:13:38 +00:00
|
|
|
}
|
|
|
|
|
2019-12-04 15:48:36 +00:00
|
|
|
# usage:: lorem :patch:`f373169` ipsum
|
|
|
|
extlinks = {}
|
2019-12-12 18:20:56 +00:00
|
|
|
|
|
|
|
# upstream links
|
2021-04-25 10:03:54 +00:00
|
|
|
extlinks['wiki'] = ('https://github.com/searxng/searxng/wiki/%s', ' ')
|
|
|
|
extlinks['pull'] = ('https://github.com/searxng/searxng/pull/%s', 'PR ')
|
|
|
|
extlinks['pull-searx'] = ('https://github.com/searx/searx/pull/%s', 'PR ')
|
2019-12-12 18:20:56 +00:00
|
|
|
|
|
|
|
# links to custom brand
|
2021-07-17 17:03:54 +00:00
|
|
|
extlinks['origin'] = (GIT_URL + '/blob/' + GIT_BRANCH + '/%s', 'git://')
|
|
|
|
extlinks['patch'] = (GIT_URL + '/commit/%s', '#')
|
|
|
|
extlinks['search'] = (SEARX_URL + '/%s', '#')
|
|
|
|
extlinks['docs'] = (DOCS_URL + '/%s', 'docs: ')
|
2019-12-18 15:11:05 +00:00
|
|
|
extlinks['pypi'] = ('https://pypi.org/project/%s', 'PyPi: ')
|
2019-12-18 17:32:42 +00:00
|
|
|
extlinks['man'] = ('https://manpages.debian.org/jump?q=%s', '')
|
2019-12-19 22:36:53 +00:00
|
|
|
#extlinks['role'] = (
|
|
|
|
# 'https://www.sphinx-doc.org/en/master/usage/restructuredtext/roles.html#role-%s', '')
|
2019-12-19 16:05:50 +00:00
|
|
|
extlinks['duref'] = (
|
2021-06-03 16:00:09 +00:00
|
|
|
'https://docutils.sourceforge.io/docs/ref/rst/restructuredtext.html#%s', '')
|
2019-12-19 16:05:50 +00:00
|
|
|
extlinks['durole'] = (
|
2021-06-03 16:00:09 +00:00
|
|
|
'https://docutils.sourceforge.io/docs/ref/rst/roles.html#%s', '')
|
2019-12-19 16:05:50 +00:00
|
|
|
extlinks['dudir'] = (
|
2021-06-03 16:00:09 +00:00
|
|
|
'https://docutils.sourceforge.io/docs/ref/rst/directives.html#%s', '')
|
2019-12-28 00:01:11 +00:00
|
|
|
extlinks['ctan'] = (
|
|
|
|
'https://ctan.org/pkg/%s', 'CTAN: ')
|
2019-12-04 15:48:36 +00:00
|
|
|
|
2019-12-04 14:27:27 +00:00
|
|
|
extensions = [
|
2019-12-28 00:25:16 +00:00
|
|
|
'sphinx.ext.imgmath',
|
2019-12-04 15:48:36 +00:00
|
|
|
'sphinx.ext.extlinks',
|
2019-12-04 14:27:27 +00:00
|
|
|
'sphinx.ext.viewcode',
|
|
|
|
"sphinx.ext.autodoc",
|
|
|
|
"sphinx.ext.intersphinx",
|
|
|
|
"pallets_sphinx_themes",
|
|
|
|
"sphinx_issues", # https://github.com/sloria/sphinx-issues/blob/master/README.rst
|
2019-12-21 16:13:38 +00:00
|
|
|
"sphinxcontrib.jinja", # https://github.com/tardyp/sphinx-jinja
|
2020-01-11 11:49:02 +00:00
|
|
|
"sphinxcontrib.programoutput", # https://github.com/NextThought/sphinxcontrib-programoutput
|
2020-06-18 16:51:31 +00:00
|
|
|
'linuxdoc.kernel_include', # Implementation of the 'kernel-include' reST-directive.
|
2019-12-19 22:36:53 +00:00
|
|
|
'linuxdoc.rstFlatTable', # Implementation of the 'flat-table' reST-directive.
|
|
|
|
'linuxdoc.kfigure', # Sphinx extension which implements scalable image handling.
|
2019-12-26 09:26:12 +00:00
|
|
|
"sphinx_tabs.tabs", # https://github.com/djungelorm/sphinx-tabs
|
2019-12-04 14:27:27 +00:00
|
|
|
]
|
2015-11-17 22:13:30 +00:00
|
|
|
|
2019-12-04 14:27:27 +00:00
|
|
|
intersphinx_mapping = {
|
|
|
|
"python": ("https://docs.python.org/3/", None),
|
2019-12-19 16:05:50 +00:00
|
|
|
"flask": ("https://flask.palletsprojects.com/", None),
|
2019-12-04 14:27:27 +00:00
|
|
|
# "werkzeug": ("https://werkzeug.palletsprojects.com/", None),
|
2019-12-19 16:05:50 +00:00
|
|
|
"jinja": ("https://jinja.palletsprojects.com/", None),
|
2019-12-19 22:36:53 +00:00
|
|
|
"linuxdoc" : ("https://return42.github.io/linuxdoc/", None),
|
|
|
|
"sphinx" : ("https://www.sphinx-doc.org/en/master/", None),
|
2019-12-04 14:27:27 +00:00
|
|
|
}
|
2015-11-17 22:13:30 +00:00
|
|
|
|
2021-04-25 10:03:54 +00:00
|
|
|
issues_github_path = "searxng/searxng"
|
2015-11-17 22:13:30 +00:00
|
|
|
|
2019-12-04 14:27:27 +00:00
|
|
|
# HTML -----------------------------------------------------------------
|
2015-11-17 22:13:30 +00:00
|
|
|
|
|
|
|
sys.path.append(os.path.abspath('_themes'))
|
2020-11-04 12:38:54 +00:00
|
|
|
sys.path.insert(0, os.path.abspath("../utils/"))
|
2019-12-04 14:27:27 +00:00
|
|
|
html_theme_path = ['_themes']
|
|
|
|
html_theme = "searx"
|
|
|
|
|
2019-12-28 00:25:16 +00:00
|
|
|
# sphinx.ext.imgmath setup
|
|
|
|
html_math_renderer = 'imgmath'
|
|
|
|
imgmath_image_format = 'svg'
|
|
|
|
imgmath_font_size = 14
|
|
|
|
# sphinx.ext.imgmath setup END
|
|
|
|
|
2019-12-04 14:27:27 +00:00
|
|
|
html_theme_options = {"index_sidebar_logo": True}
|
2020-12-20 23:37:45 +00:00
|
|
|
html_context = {"project_links": [] }
|
2021-07-17 17:03:54 +00:00
|
|
|
html_context["project_links"].append(ProjectLink("Source", GIT_URL + '/tree/' + GIT_BRANCH))
|
|
|
|
|
|
|
|
if WIKI_URL:
|
|
|
|
html_context["project_links"].append(ProjectLink("Wiki", WIKI_URL))
|
|
|
|
if PUBLIC_INSTANCES:
|
|
|
|
html_context["project_links"].append(ProjectLink("Public instances", PUBLIC_INSTANCES))
|
|
|
|
if ISSUE_URL:
|
|
|
|
html_context["project_links"].append(ProjectLink("Issue Tracker", ISSUE_URL))
|
|
|
|
if CONTACT_URL:
|
|
|
|
html_context["project_links"].append(ProjectLink("Contact", CONTACT_URL))
|
2020-12-20 23:37:45 +00:00
|
|
|
|
2019-12-04 14:27:27 +00:00
|
|
|
html_sidebars = {
|
|
|
|
"**": ["project.html", "relations.html", "searchbox.html"],
|
|
|
|
}
|
|
|
|
singlehtml_sidebars = {"index": ["project.html", "localtoc.html"]}
|
|
|
|
html_static_path = ["static"]
|
|
|
|
html_logo = "static/img/searx_logo_small.png"
|
|
|
|
html_title = "Searx Documentation ({})".format("Searx-{}.tex".format(VERSION_STRING))
|
|
|
|
html_show_sourcelink = False
|
2015-11-17 22:13:30 +00:00
|
|
|
|
2019-12-04 14:27:27 +00:00
|
|
|
# LaTeX ----------------------------------------------------------------
|
2015-11-17 22:13:30 +00:00
|
|
|
|
2019-12-04 14:27:27 +00:00
|
|
|
latex_documents = [
|
|
|
|
(master_doc, "searx-{}.tex".format(VERSION_STRING), html_title, author, "manual")
|
2015-11-17 22:13:30 +00:00
|
|
|
]
|