Add support for reset saved password. Fixes #3074

This commit is contained in:
Akshay Joshi
2018-07-27 14:36:42 +05:30
parent 00139f7750
commit 0138dee989
8 changed files with 126 additions and 13 deletions

Binary file not shown.

Before

Width:  |  Height:  |  Size: 36 KiB

After

Width:  |  Height:  |  Size: 70 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 139 KiB

View File

@@ -13,15 +13,17 @@ The pgAdmin menu bar provides drop-down menus for access to options, commands, a
Use the *File* menu to access the following options:
+----------------------+---------------------------------------------------------------------------------------------------------+
| Option | Action |
+======================+=========================================================================================================+
| *Change Password...* | Click to open the :ref:`Change Password... <change_password_dialog>` dialog to change your password. |
+----------------------+---------------------------------------------------------------------------------------------------------+
| *Preferences* | Click to open the :ref:`Preferences <preferences>` dialog to to customize your pgAdmin settings. |
+----------------------+---------------------------------------------------------------------------------------------------------+
| *Reset Layout* | If you have modified the workspace, click to restore the default layout. |
+----------------------+---------------------------------------------------------------------------------------------------------+
+-------------------------+---------------------------------------------------------------------------------------------------------+
| Option | Action |
+=========================+=========================================================================================================+
| *Change Password...* | Click to open the :ref:`Change Password... <change_password_dialog>` dialog to change your password. |
+-------------------------+---------------------------------------------------------------------------------------------------------+
| *Preferences* | Click to open the :ref:`Preferences <preferences>` dialog to to customize your pgAdmin settings. |
+-------------------------+---------------------------------------------------------------------------------------------------------+
| *Reset Layout* | If you have modified the workspace, click to restore the default layout. |
+-------------------------+---------------------------------------------------------------------------------------------------------+
| *Reset server password* | If you have saved the database server password, click to reset the saved password. |
+-------------------------+---------------------------------------------------------------------------------------------------------+
**The Object Menu**

View File

@@ -11,6 +11,7 @@ Features
********
| `Feature #2214 <https://redmine.postgresql.org/issues/2214>`_ - Add support for SCRAM password changes (requires psycopg2 >= 2.8).
| `Feature #3074 <https://redmine.postgresql.org/issues/3074>`_ - Add support for reset saved password.
| `Feature #3397 <https://redmine.postgresql.org/issues/3397>`_ - Add support for Trigger and JIT stats in the graphical query plan viewer.
| `Feature #3506 <https://redmine.postgresql.org/issues/3506>`_ - Allow the user to specify a fixed port number in the runtime to aid cookie whitelisting etc.
| `Feature #3510 <https://redmine.postgresql.org/issues/3510>`_ - Add a menu option to the runtime to copy the appserver URL to the clipboard.

View File

@@ -0,0 +1,13 @@
.. _reset_passwords:
************************
`Reset Passwords`:index:
************************
Use *Reset server password* functionality to reset the saved password for the database server.
.. image:: images/reset_server_password.png
*Reset server password* shows in the context menu for the selected server as well as under the *File* menu on the top menu bar.
**Note:** It will be enabled/visible when the password for the selected database server is already saved.

View File

@@ -92,3 +92,7 @@ Use the fields in the *Advanced* tab to configure a connection:
* Click the *Save* button to save your work.
* Click the *Cancel* button to exit without saving your work.
* Click the *Reset* button to return the values specified on the Server dialog to their original condition.
.. toctree::
reset_passwords