diff options
Diffstat (limited to 'docs')
-rw-r--r-- | docs/admin/arch_public.dot | 8 | ||||
-rw-r--r-- | docs/admin/installation-docker.rst | 2 | ||||
-rw-r--r-- | docs/admin/installation.rst | 2 | ||||
-rw-r--r-- | docs/blog/lxcdev-202006.rst | 2 | ||||
-rw-r--r-- | docs/blog/python3.rst | 2 | ||||
-rw-r--r-- | docs/build-templates/searx.rst | 2 | ||||
-rw-r--r-- | docs/conf.py | 8 | ||||
-rw-r--r-- | docs/dev/contribution_guide.rst | 2 | ||||
-rw-r--r-- | docs/dev/quickstart.rst | 2 |
9 files changed, 15 insertions, 15 deletions
diff --git a/docs/admin/arch_public.dot b/docs/admin/arch_public.dot index 5018225c3..0d826078d 100644 --- a/docs/admin/arch_public.dot +++ b/docs/admin/arch_public.dot @@ -4,11 +4,11 @@ digraph G { edge [fontname="Sans"]; browser [label="Browser", shape=Mdiamond]; - rp [label="Reverse Proxy", href="https://asciimoo.github.io/searx/utils/filtron.sh.html#public-reverse-proxy"]; - filtron [label="Filtron", href="https://asciimoo.github.io/searx/utils/filtron.sh.html"]; - morty [label="Morty", href="https://asciimoo.github.io/searx/utils/morty.sh.html"]; + rp [label="Reverse Proxy", href="https://searx.github.io/searx/utils/filtron.sh.html#public-reverse-proxy"]; + filtron [label="Filtron", href="https://searx.github.io/searx/utils/filtron.sh.html"]; + morty [label="Morty", href="https://searx.github.io/searx/utils/morty.sh.html"]; static [label="Static files", href="url to configure static files"]; - uwsgi [label="uwsgi", href="https://asciimoo.github.io/searx/utils/searx.sh.html"] + uwsgi [label="uwsgi", href="https://searx.github.io/searx/utils/searx.sh.html"] searx1 [label="Searx #1"]; searx2 [label="Searx #2"]; searx3 [label="Searx #3"]; diff --git a/docs/admin/installation-docker.rst b/docs/admin/installation-docker.rst index b30cdcbd0..c5f54b490 100644 --- a/docs/admin/installation-docker.rst +++ b/docs/admin/installation-docker.rst @@ -49,7 +49,7 @@ It's also possible to build searx from the embedded Dockerfile. .. code:: sh - git clone https://github.com/asciimoo/searx.git + git clone https://github.com/searx/searx.git cd searx make docker diff --git a/docs/admin/installation.rst b/docs/admin/installation.rst index 167c300fe..2e5e4821b 100644 --- a/docs/admin/installation.rst +++ b/docs/admin/installation.rst @@ -36,7 +36,7 @@ and some maintenance tasks (alternatively you can create your own fork). .. code:: bash $ cd ~/Downloads - $ git clone https://github.com/asciimoo/searx searx + $ git clone https://github.com/searx/searx searx $ cd searx **Install** :ref:`searx service <searx.sh>` diff --git a/docs/blog/lxcdev-202006.rst b/docs/blog/lxcdev-202006.rst index f9ca3c2cc..b8d470d4e 100644 --- a/docs/blog/lxcdev-202006.rst +++ b/docs/blog/lxcdev-202006.rst @@ -81,7 +81,7 @@ fork: .. code:: sh $ cd ~/Downloads - $ git clone https://github.com/asciimoo/searx.git + $ git clone https://github.com/searx/searx.git $ cd searx The :ref:`lxc-searx.env` consists of several images, see ``export diff --git a/docs/blog/python3.rst b/docs/blog/python3.rst index 5bb7f1c80..1d2cfc813 100644 --- a/docs/blog/python3.rst +++ b/docs/blog/python3.rst @@ -54,7 +54,7 @@ If you found bugs Please open an issue on `GitHub`_. Make sure that you mention your Python version in your issue, so we can investigate it properly. -.. _GitHub: https://github.com/asciimoo/searx/issues +.. _GitHub: https://github.com/searx/searx/issues Acknowledgment ============== diff --git a/docs/build-templates/searx.rst b/docs/build-templates/searx.rst index 27ebf8d01..f3004ed06 100644 --- a/docs/build-templates/searx.rst +++ b/docs/build-templates/searx.rst @@ -81,7 +81,7 @@ ${fedora_build} .. code-block:: sh $ sudo -H -u ${SERVICE_USER} -i - (${SERVICE_USER})$ git clone "https://github.com/asciimoo/searx.git" "$SEARX_SRC" + (${SERVICE_USER})$ git clone "https://github.com/searx/searx.git" "$SEARX_SRC" .. END clone searx diff --git a/docs/conf.py b/docs/conf.py index 1f79e4c14..6cbcdfa6c 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -35,8 +35,8 @@ jinja_contexts = { extlinks = {} # upstream links -extlinks['wiki'] = ('https://github.com/asciimoo/searx/wiki/%s', ' ') -extlinks['pull'] = ('https://github.com/asciimoo/searx/pull/%s', 'PR ') +extlinks['wiki'] = ('https://github.com/searx/searx/wiki/%s', ' ') +extlinks['pull'] = ('https://github.com/searx/searx/pull/%s', 'PR ') # links to custom brand extlinks['origin'] = (GIT_URL + '/blob/' + GIT_BRANCH + '/%s', 'git://') @@ -81,7 +81,7 @@ intersphinx_mapping = { "sphinx" : ("https://www.sphinx-doc.org/en/master/", None), } -issues_github_path = "asciimoo/searx" +issues_github_path = "searx/searx" # HTML ----------------------------------------------------------------- @@ -99,7 +99,7 @@ html_theme_options = {"index_sidebar_logo": True} html_context = { "project_links": [ ProjectLink("Source", GIT_URL), - ProjectLink("Wiki", "https://github.com/asciimoo/searx/wiki"), + ProjectLink("Wiki", "https://github.com/searx/searx/wiki"), ProjectLink("Public instances", "https://searx.space/"), ProjectLink("Twitter", "https://twitter.com/Searx_engine"), ] diff --git a/docs/dev/contribution_guide.rst b/docs/dev/contribution_guide.rst index f9e9569f9..5012dea21 100644 --- a/docs/dev/contribution_guide.rst +++ b/docs/dev/contribution_guide.rst @@ -182,4 +182,4 @@ needed git add, commit and push: cd gh-pages; git checkout gh-pages >/dev/null Switched to a new branch 'gh-pages' ... - doc available at --> https://asciimoo.github.io/searx + doc available at --> https://searx.github.io/searx diff --git a/docs/dev/quickstart.rst b/docs/dev/quickstart.rst index a4fc897c4..3e1a5e344 100644 --- a/docs/dev/quickstart.rst +++ b/docs/dev/quickstart.rst @@ -25,7 +25,7 @@ searx-ve virtualenv and install the required packages using ``manage.sh``. .. code:: sh cd ~/myprojects - git clone https://github.com/asciimoo/searx.git + git clone https://github.com/searx/searx.git cd searx python3 -m venv searx-ve . ./searx-ve/bin/activate |