pgAdmin 4 commit: 1) Fixed an issue where a warning message was shown a

2022-01-31 Thread Akshay Joshi
1) Fixed an issue where a warning message was shown after database 
creation/modification. Fixes #7142.
2) Added error boundary to schema view which will improve the exception stack 
trace details.
3) Fixed Jasmine test cases.

Branch
--
master

Details
---
https://git.postgresql.org/gitweb?p=pgadmin4.git;a=commitdiff;h=bc0b25d995243969ed789d5873c88b5ce18b00ec
Author: Aditya Toshniwal 

Modified Files
--
docs/en_US/release_notes_6_5.rst   |  1 +
.../servers/databases/static/js/database.ui.js |  3 +-
web/pgadmin/static/js/SchemaView/index.jsx |  9 +++--
.../static/js/components/FormComponents.jsx|  3 +-
web/pgadmin/static/js/helpers/ErrorBoundary.jsx| 38 ++
5 files changed, 50 insertions(+), 4 deletions(-)



Re: [pgAdmin][RM7142] Warning msg shown after database creation/modification

2022-01-31 Thread Akshay Joshi
Thanks, the patch applied.

On Mon, Jan 31, 2022 at 12:59 PM Aditya Toshniwal <
aditya.toshni...@enterprisedb.com> wrote:

> Hi Hackers,
>
> The patch fixes:
> 1. Warning msg shown after database creation/modification. Fixes #7142.
> 2. Failing jasmine test cases.
> 3. Added error boundary to schema view which will improve the exception
> stack trace details.
>
> Please review.
>
> --
> Thanks,
> Aditya Toshniwal
> pgAdmin Hacker | Software Architect | *edbpostgres.com*
> 
> "Don't Complain about Heat, Plant a TREE"
>


-- 
*Thanks & Regards*
*Akshay Joshi*
*pgAdmin Hacker | Principal Software Architect*
*EDB Postgres *

*Mobile: +91 976-788-8246*


[pgAdmin][Patch] - Bug #7086 - wal_level settings reflect pre-postgresql version 9.6 values in restore point documentation

2022-01-31 Thread Yogesh Mahajan
Hi,

Please find the attached patch which fixes documentation related to 'Add
Named Point'.

Thanks,
Yogesh Mahajan
EnterpriseDB


RM_7086_v1.patch
Description: Binary data


Re: Translators: web platform for translations?

2022-01-31 Thread Dave Page
Hi

On Sat, 29 Jan 2022 at 06:36,  wrote:

> Hello Dave
> I think it could be an useful solution, perhaps more reactive
> and I think that some users do not contribute because they are note
> comfortable with tools like poedit
> so, a good solution in my opinion, especially if it does not interfere
> with the current worklfow
>

Thanks for the feedback. That's roughly in line with my thinking.


> PS : I am also interested as I will have less time available. I am
> starting a new life as a farmer :-)
>

Wow, that sounds like a challenge. Good luck!


>
>
> 21 janvier 2022 14:33 "Dave Page"  > a
> écrit:
>
> Translators,
> A ticket was logged in the issue tracker suggesting we use a translation
> management application such as Weblate (https://weblate.org/en-gb/) to
> allow online translation.
> Would you find this useful? Is it worth spending time standing up an
> instance for the project?
> FYI, I don't think it would need to affect the current workflow, for users
> that prefer their existing tooling.
> --
> Dave Page
> Blog: https://pgsnake.blogspot.com
> Twitter: @pgsnake
>
> EDB: https://www.enterprisedb.com
>
>
>
>

-- 
Dave Page
Blog: https://pgsnake.blogspot.com
Twitter: @pgsnake

EDB: https://www.enterprisedb.com


pgAdmin 4 commit: Correct documentation for 'Add named restore point'.

2022-01-31 Thread Akshay Joshi
Correct documentation for 'Add named restore point'. Fixes #7086

Branch
--
master

Details
---
https://git.postgresql.org/gitweb?p=pgadmin4.git;a=commitdiff;h=c38bf04f51fb3a2144d7c2185779249e293af8fb
Author: Yogesh Mahajan 

Modified Files
--
docs/en_US/add_restore_point_dialog.rst | 4 ++--
docs/en_US/release_notes_6_5.rst| 1 +
2 files changed, 3 insertions(+), 2 deletions(-)



pgAdmin 4 commit: Upgrade the Pillow module to the latest.

2022-01-31 Thread Akshay Joshi
Upgrade the Pillow module to the latest.

Branch
--
master

Details
---
https://git.postgresql.org/gitweb?p=pgadmin4.git;a=commitdiff;h=00e13b0811eaa16051498859728569d217f4d4e0
Author: Murtuza Zabuawala 

Modified Files
--
requirements.txt | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)



pgAdmin 4 commit: Fixed audit issues.

2022-01-31 Thread Akshay Joshi
Fixed audit issues.

Branch
--
master

Details
---
https://git.postgresql.org/gitweb?p=pgadmin4.git;a=commitdiff;h=5f9ea229413827a38ed8b795944f2eb5990f15b3

Modified Files
--
web/yarn.lock | 125 +-
1 file changed, 62 insertions(+), 63 deletions(-)



pgAdmin 4 commit: Fixed code smell 'Update this function so that its im

2022-01-31 Thread Akshay Joshi
Fixed code smell 'Update this function so that its implementation is not 
identical' reported by SonarQube.

Branch
--
master

Details
---
https://git.postgresql.org/gitweb?p=pgadmin4.git;a=commitdiff;h=b9e533e31a27d48a7d6fc35cfa33dfc91286e92b

Modified Files
--
.../javascript/file_manager/file_manager_specs.js  |  198 +--
.../javascript/history/query_history_spec.js   |4 +-
.../misc/explain/explain_statistics_spec.js|   26 +-
.../javascript/nodes/schema/child_menu_spec.js |  118 +-
.../schema_ui_files/functions.ui.spec.js   |   20 +-
.../search_objects_dialog_wrapper_spec.js  |   14 +-
.../javascript/selection/column_selector_spec.js   |   16 +-
.../handle_query_output_keyboard_event_spec.js |  104 +-
.../sqleditor/call_render_after_poll_spec.js   |  181 +--
.../javascript/sqleditor/execute_query_spec.js | 1374 ++--
.../sqleditor/keyboard_shortcuts_spec.js   |   96 +-
.../sqleditor/query_tool_actions_spec.js   |  150 +--
.../table/enable_disable_triggers_spec.js  |   23 +-
13 files changed, 745 insertions(+), 1579 deletions(-)



Re: [pgAdmin][Patch] - Bug #7086 - wal_level settings reflect pre-postgresql version 9.6 values in restore point documentation

2022-01-31 Thread Akshay Joshi
Thanks, the patch applied.

On Mon, Jan 31, 2022 at 2:42 PM Yogesh Mahajan <
yogesh.maha...@enterprisedb.com> wrote:

> Hi,
>
> Please find the attached patch which fixes documentation related to 'Add
> Named Point'.
>
> Thanks,
> Yogesh Mahajan
> EnterpriseDB
>


-- 
*Thanks & Regards*
*Akshay Joshi*
*pgAdmin Hacker | Principal Software Architect*
*EDB Postgres *

*Mobile: +91 976-788-8246*


pgAdmin 4 commit: Reverting patch for the upgrade of Pillow module.

2022-01-31 Thread Akshay Joshi
Reverting patch for the upgrade of Pillow module.

Branch
--
master

Details
---
https://git.postgresql.org/gitweb?p=pgadmin4.git;a=commitdiff;h=21359c6c7452ce79caa633f2cb59b5ba4ccd27b7

Modified Files
--
requirements.txt | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)