diff --git a/docs/en_US/desktop_deployment.rst b/docs/en_US/desktop_deployment.rst index 44ca2e08c..d9ebe1c16 100644 --- a/docs/en_US/desktop_deployment.rst +++ b/docs/en_US/desktop_deployment.rst @@ -19,7 +19,7 @@ pgAdmin server and opens a window to render the user interface. .. seealso:: For detailed instructions on building and configuring pgAdmin from scratch, please see the README file in the top level directory of the source code. For convenience, you can find the latest version of the file - `here `_, + `here `_, but be aware that this may differ from the version included with the source code for a specific version of pgAdmin. diff --git a/docs/en_US/preferences.rst b/docs/en_US/preferences.rst index f3e08cf4a..88b20cdfa 100644 --- a/docs/en_US/preferences.rst +++ b/docs/en_US/preferences.rst @@ -224,7 +224,7 @@ Expand the *Miscellaneous* node to specify miscellaneous display preferences. * Use the *Themes* drop-down listbox to select the theme for pgAdmin. You'll also get a preview just below the drop down. Note that, to apply the theme you need to refresh the pgAdmin page. You can also submit your - own themes, check `here `_ how. + own themes, check `here `_ how. Currently we support Standard, Dark and High Contrast theme. The Paths Node diff --git a/docs/en_US/server_deployment.rst b/docs/en_US/server_deployment.rst index 81ffae484..a268b4234 100644 --- a/docs/en_US/server_deployment.rst +++ b/docs/en_US/server_deployment.rst @@ -25,7 +25,7 @@ or ``Gunicorn``, or under ``NGINX`` using using ``uWSGI`` or ``Gunicorn``. .. seealso:: For detailed instructions on building and configuring pgAdmin from scratch, please see the README file in the top level directory of the source code. For convenience, you can find the latest version of the file - `here `_, + `here `_, but be aware that this may differ from the version included with the source code for a specific version of pgAdmin. diff --git a/docs/en_US/submitting_patches.rst b/docs/en_US/submitting_patches.rst index ac0e9a5f6..337fa1aaa 100644 --- a/docs/en_US/submitting_patches.rst +++ b/docs/en_US/submitting_patches.rst @@ -18,7 +18,7 @@ patches correctly. You can checkout the source code with a command like: .. code-block:: bash - $ git clone git://git.postgresql.org/git/pgadmin4.git + $ git clone https://github.com/pgadmin-org/pgadmin4.git Once you've made the changes you wish to make, commit them to a private development branch in your local repository. Then create a patch containing the diff --git a/pkg/win32/README.md b/pkg/win32/README.md index e868a1f2d..c1ecc048f 100644 --- a/pkg/win32/README.md +++ b/pkg/win32/README.md @@ -141,7 +141,7 @@ want to build an installer. 1. Check out the source code: - git clone https://git.postgresql.org/git/pgadmin4.git + git clone https://github.com/pgadmin-org/pgadmin4.git 2. Install and build the JS dependencies: diff --git a/tools/sql_keywords.py b/tools/sql_keywords.py index 9b5cf8c75..8410d4959 100644 --- a/tools/sql_keywords.py +++ b/tools/sql_keywords.py @@ -18,8 +18,8 @@ import requests import argparse PG_CODES_URLS = [ - "https://git.postgresql.org/gitweb/?p=postgresql.git;a=blob_plain;" - "f=src/pl/plpgsql/src/pl_scanner.c", + "https://raw.githubusercontent.com/postgres/postgres/master/src/pl/" + "plpgsql/src/pl_scanner.c", ] PG_CODES_REGEX = "PG_KEYWORD\(\"([a-z]*)\"[A-Z_, ]*\)"