pgAdmin 4 commit: Expect the yum repo metadata to be GPG signed.

2021-05-12 Thread Dave Page
Expect the yum repo metadata to be GPG signed.

Branches

React_Porting
master

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

Modified Files
--
pkg/redhat/repo-rpm.sh | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)



pgAdmin 4 commit: Update require.js library to the latest version.

2021-05-12 Thread Akshay Joshi
Update require.js library to the latest version.

Branches

React_Porting
master

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

Modified Files
--
web/package.json |   1 -
web/pgadmin/static/vendor/require/require.js | 185 +++
web/pgadmin/static/vendor/require/require.min.js |  54 ++-
web/yarn.lock|   5 -
4 files changed, 128 insertions(+), 117 deletions(-)



pgAdmin 4 commit: Fix width of table row.

2021-05-12 Thread Dave Page
Fix width of table row.

Branches

React_Porting
master

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

Modified Files
--
docs/en_US/menu_bar.rst | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)



pgAdmin 4 commit: Ensure that while connecting to the server using SSPI

2021-05-12 Thread Akshay Joshi
Ensure that while connecting to the server using SSPI login, it should not 
prompt for the password. Fixes #5776

Branches

React_Porting
master

Details
---
https://git.postgresql.org/gitweb?p=pgadmin4.git;a=commitdiff;h=b30ec71098b51abd80bf15d49477c2e6f0c9d6f0
Author: Khushboo Vashi 

Modified Files
--
docs/en_US/release_notes_5_3.rst|  1 +
.../browser/server_groups/servers/static/js/server.js   |  9 ++---
.../tools/backup/static/js/backup_dialog_wrapper.js |  2 +-
.../javascript/backup/backup_dialog_wrapper_spec.js |  1 +
.../backup/global_server_backup_dialog_spec.js  |  2 --
web/regression/javascript/fake_constants.js | 17 +
web/regression/javascript/fake_current_user.js  | 15 +++
web/webpack.test.config.js  |  2 ++
8 files changed, 39 insertions(+), 10 deletions(-)



pgAdmin 4 commit: Added 'IF NOT EXISTS' clause while creating tables an

2021-05-12 Thread Akshay Joshi
Added 'IF NOT EXISTS' clause while creating tables and partition tables which 
is convenient while using the ERD tool. Fixes #6397

Branches

React_Porting
master

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

Modified Files
--
docs/en_US/release_notes_5_3.rst| 1 +
.../schemas/tables/templates/partitions/sql/pg/10_plus/create.sql   | 2 +-
.../schemas/tables/templates/partitions/sql/ppas/10_plus/create.sql | 2 +-
.../databases/schemas/tables/templates/tables/sql/10_plus/create.sql| 2 +-
.../databases/schemas/tables/templates/tables/sql/11_plus/create.sql| 2 +-
.../databases/schemas/tables/templates/tables/sql/12_plus/create.sql| 2 +-
.../databases/schemas/tables/templates/tables/sql/9.6_plus/create.sql   | 2 +-
.../databases/schemas/tables/templates/tables/sql/default/create.sql| 2 +-
8 files changed, 8 insertions(+), 7 deletions(-)



pgAdmin 4 commit: Added support for cache bust webpack chunk files. Fix

2021-05-12 Thread Akshay Joshi
Added support for cache bust webpack chunk files. Fixes #5477

Branches

React_Porting
master

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

Modified Files
--
docs/en_US/release_notes_5_3.rst | 1 +
web/webpack.config.js| 2 +-
2 files changed, 2 insertions(+), 1 deletion(-)



pgAdmin 4 commit: Update Kerberos docs for phase 2.

2021-05-12 Thread Dave Page
Update Kerberos docs for phase 2.

Branches

React_Porting
master

Details
---
https://git.postgresql.org/gitweb?p=pgadmin4.git;a=commitdiff;h=89b0028684d6b5055b5cd562eff5be295457657d
Author: Khushboo Vashi 

Modified Files
--
docs/en_US/images/server_connection.png | Bin 50543 -> 81570 bytes
docs/en_US/kerberos.rst |  81 +---
docs/en_US/server_dialog.rst|  11 +++--
3 files changed, 73 insertions(+), 19 deletions(-)



pgAdmin 4 commit: Cleanup the install-node target so it just calls yarn

2021-05-12 Thread Dave Page
Cleanup the install-node target so it just calls yarn.

Branches

React_Porting
master

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

Modified Files
--
Makefile | 11 +--
1 file changed, 1 insertion(+), 10 deletions(-)



pgAdmin 4 commit: Remove duplicate code and avoid DOM search operation.

2021-05-12 Thread Akshay Joshi
Remove duplicate code and avoid DOM search operation.

refs #6355

Branches

React_Porting
master

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

Modified Files
--
web/pgadmin/browser/static/js/panel.js | 6 +-
web/pgadmin/tools/sqleditor/static/js/sqleditor.js | 6 +-
2 files changed, 2 insertions(+), 10 deletions(-)



pgAdmin 4 commit: Fixed an issue where the current debug line is not vi

2021-05-12 Thread Akshay Joshi
Fixed an issue where the current debug line is not visible in the 'Dark' theme. 
Fixes #6409

Branches

React_Porting
master

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

Modified Files
--
docs/en_US/release_notes_5_3.rst  | 1 +
web/pgadmin/static/scss/_codemirror.overrides.scss| 2 +-
web/pgadmin/static/scss/resources/dark/_theme.variables.scss  | 2 +-
web/pgadmin/static/scss/resources/high_contrast/_theme.variables.scss | 2 +-
web/pgadmin/tools/debugger/static/scss/_debugger.scss | 3 ---
web/pgadmin/tools/sqleditor/static/scss/_sqleditor.scss   | 4 
6 files changed, 4 insertions(+), 10 deletions(-)



pgAdmin 4 commit: Ensure that pgAdmin4 shut down completely on the Quit

2021-05-12 Thread Akshay Joshi
Ensure that pgAdmin4 shut down completely on the Quit command. Fixes #6420

Branches

React_Porting
master

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

Modified Files
--
docs/en_US/release_notes_5_3.rst | 1 +
runtime/src/js/misc.js   | 3 ---
2 files changed, 1 insertion(+), 3 deletions(-)



pgAdmin 4 commit: Added support to set auto width of columns by content

2021-05-12 Thread Akshay Joshi
Added support to set auto width of columns by content size in the data output 
window. Fixes #5954

Branches

React_Porting
master

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

Modified Files
--
docs/en_US/images/preferences_sql_results_grid.png | Bin 91165 -> 116960 bytes
docs/en_US/preferences.rst |   3 ++
docs/en_US/release_notes_5_3.rst   |   1 +
.../js/slickgrid/plugins/slick.autocolumnsize.js   |  13 ---
web/pgadmin/tools/sqleditor/static/js/sqleditor.js |  40 +
.../sqleditor/utils/query_tool_preferences.py  |  10 ++
6 files changed, 57 insertions(+), 10 deletions(-)



pgAdmin 4 commit: Added support for the creation of Nested Table and Va

2021-05-12 Thread Akshay Joshi
Added support for the creation of Nested Table and Varying Array Type for 
Advanced Server. Fixes #6407

Branches

React_Porting
master

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

Modified Files
--
docs/en_US/release_notes_5_3.rst   |   1 +
.../servers/databases/schemas/types/__init__.py|  71 +++--
.../databases/schemas/types/static/js/type.js  | 175 -
.../templates/types/{ => pg}/sql/default/acl.sql   |   0
.../{ => pg}/sql/default/additional_properties.sql |   6 +-
.../types/{ => pg}/sql/default/create.sql  |   0
.../types/{ => pg}/sql/default/delete.sql  |   0
.../types/{ => pg}/sql/default/get_collations.sql  |   0
.../sql/default/get_external_functions.sql |   0
.../types/{ => pg}/sql/default/get_oid.sql |   0
.../types/{ => pg}/sql/default/get_scid.sql|   0
.../types/{ => pg}/sql/default/get_subtypes.sql|   0
.../types/{ => pg}/sql/default/get_types.sql   |   0
.../templates/types/{ => pg}/sql/default/nodes.sql |   0
.../types/{ => pg}/sql/default/properties.sql  |   0
.../{ => pg}/sql/default/type_schema_diff.sql  |   0
.../types/{ => pg}/sql/default/update.sql  |   0
.../types/{ => pg}/sql/gpdb_5.0_plus/acl.sql   |   0
.../sql/gpdb_5.0_plus/additional_properties.sql|   0
.../{ => pg}/sql/gpdb_5.0_plus/get_collations.sql  |   0
.../{ => pg}/sql/gpdb_5.0_plus/properties.sql  |   0
.../types/templates/types/ppas/sql/default/acl.sql |  27 
.../ppas/sql/default/additional_properties.sql |  58 +++
.../templates/types/ppas/sql/default/create.sql|  94 +++
.../templates/types/ppas/sql/default/delete.sql|   1 +
.../types/ppas/sql/default/get_collations.sql  |   7 +
.../ppas/sql/default/get_external_functions.sql|  42 +
.../templates/types/ppas/sql/default/get_oid.sql   |  11 ++
.../templates/types/ppas/sql/default/get_scid.sql  |  15 ++
.../types/ppas/sql/default/get_subtypes.sql|  56 +++
.../templates/types/ppas/sql/default/get_types.sql |  11 ++
.../templates/types/ppas/sql/default/nodes.sql |  13 ++
.../types/ppas/sql/default/properties.sql  |  24 +++
.../templates/types/ppas/sql/default/update.sql| 161 +++
.../templates/types/sql/postgres_inbuit_types.txt  |  53 ---
.../ppas/default/create_nested_table_type.sql  |   9 ++
.../tests/ppas/default/create_varray_type.sql  |   9 ++
.../schemas/types/tests/ppas/default/tests.json|  40 -
.../schemas/types/tests/test_types_add.py  |  24 ++-
.../schemas/types/tests/types_test_data.json   | 100 +++-
40 files changed, 932 insertions(+), 76 deletions(-)



pgAdmin 4 commit: Fix a number of typos.

2021-05-12 Thread Dave Page
Fix a number of typos.

Branches

React_Porting
master

Details
---
https://git.postgresql.org/gitweb?p=pgadmin4.git;a=commitdiff;h=fe6f9aae61528c5d14a2c2f53dc387d880e033ec
Author: huangj.f...@fujitsu.com 

Modified Files
--
docs/en_US/column_dialog.rst  | 2 +-
docs/en_US/foreign_table_dialog.rst   | 2 +-
docs/en_US/menu_bar.rst   | 2 +-
docs/en_US/move_objects.rst   | 2 +-
docs/en_US/package_dialog.rst | 2 +-
docs/en_US/table_dialog.rst   | 2 +-
docs/en_US/trigger_function_dialog.rst| 2 +-
web/pgadmin/browser/server_groups/servers/databases/casts/__init__.py | 2 +-
.../browser/server_groups/servers/databases/schemas/__init__.py   | 2 +-
.../server_groups/servers/databases/schemas/collations/__init__.py| 4 ++--
.../server_groups/servers/databases/schemas/domains/__init__.py   | 2 +-
.../server_groups/servers/databases/schemas/fts_parsers/__init__.py   | 2 +-
.../server_groups/servers/databases/schemas/fts_templates/__init__.py | 2 +-
.../server_groups/servers/databases/schemas/tables/__init__.py| 2 +-
.../servers/databases/schemas/tables/columns/__init__.py  | 2 +-
.../servers/databases/schemas/tables/compound_triggers/__init__.py| 2 +-
.../servers/databases/schemas/tables/indexes/__init__.py  | 2 +-
.../databases/schemas/tables/row_security_policies/__init__.py| 2 +-
.../servers/databases/schemas/tables/triggers/__init__.py | 2 +-
.../browser/server_groups/servers/databases/schemas/types/__init__.py | 2 +-
web/pgadmin/static/js/tree/tree.js| 2 +-
21 files changed, 22 insertions(+), 22 deletions(-)



pgAdmin 4 commit: Make the error messages on exit show something useful

2021-05-12 Thread Dave Page
Make the error messages on exit show something useful.

Branches

React_Porting
master

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

Modified Files
--
pkg/debian/build.sh | 3 +--
pkg/mac/build.sh| 3 +--
pkg/redhat/build.sh | 3 +--
3 files changed, 3 insertions(+), 6 deletions(-)



pgAdmin 4 commit: Fixed API test cases

2021-05-12 Thread Akshay Joshi
Fixed API test cases

Branches

React_Porting
master

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

Modified Files
--
.../partitions/tests/pg/10_plus/alter_table_add_partition.sql   | 4 ++--
.../partitions/tests/pg/10_plus/alter_table_add_partition_msql.sql  | 2 +-
.../partitions/tests/pg/10_plus/create_table_with_partition.sql | 2 +-
.../tests/pg/10_plus/create_table_with_partition_msql.sql   | 2 +-
.../partitions/tests/pg/12_plus/alter_table_add_partition.sql   | 4 ++--
.../partitions/tests/pg/12_plus/alter_table_add_partition_msql.sql  | 2 +-
.../partitions/tests/pg/12_plus/create_table_with_partition.sql | 2 +-
.../tests/pg/12_plus/create_table_with_partition_msql.sql   | 2 +-
.../partitions/tests/ppas/10_plus/alter_table_add_partition.sql | 4 ++--
.../tests/ppas/10_plus/alter_table_add_partition_msql.sql   | 2 +-
.../partitions/tests/ppas/10_plus/create_table_with_partition.sql   | 2 +-
.../tests/ppas/10_plus/create_table_with_partition_msql.sql | 2 +-
.../partitions/tests/ppas/12_plus/alter_table_add_partition.sql | 4 ++--
.../tests/ppas/12_plus/alter_table_add_partition_msql.sql   | 2 +-
.../partitions/tests/ppas/12_plus/create_table_with_partition.sql   | 2 +-
.../tests/ppas/12_plus/create_table_with_partition_msql.sql | 2 +-
web/pgadmin/tools/erd/tests/sql/12_plus/test_sql_output.sql | 6 +++---
web/pgadmin/tools/erd/tests/sql/default/test_sql_output.sql | 6 +++---
18 files changed, 26 insertions(+), 26 deletions(-)



pgAdmin 4 commit: Improve some strings.

2021-05-12 Thread Dave Page
Improve some strings.

Branches

React_Porting
master

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

Modified Files
--
web/pgadmin/tools/sqleditor/utils/query_tool_preferences.py | 8 +---
1 file changed, 5 insertions(+), 3 deletions(-)



pgAdmin 4 commit: Added missing validation for data type. Fixes #6407

2021-05-12 Thread Akshay Joshi
Added missing validation for data type. Fixes #6407

Branches

React_Porting
master

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

Modified Files
--
.../servers/databases/schemas/types/static/js/type.js  | 10 ++
1 file changed, 10 insertions(+)



pgAdmin 4 commit: Update document and screenshot for 'Resize by data?'

2021-05-12 Thread Akshay Joshi
Update document and screenshot for 'Resize by data?' option.

Branches

React_Porting
master

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

Modified Files
--
docs/en_US/images/preferences_sql_results_grid.png | Bin 116960 -> 127901 bytes
docs/en_US/preferences.rst |   7 ---
2 files changed, 4 insertions(+), 3 deletions(-)



pgAdmin 4 commit: Fixed an issue where the filter 'Include/Exclude By S

2021-05-12 Thread Akshay Joshi
Fixed an issue where the filter 'Include/Exclude By Selection' not working for 
null values. Fixes #6392

Branches

React_Porting
master

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

Modified Files
--
docs/en_US/release_notes_5_3.rst   | 1 +
web/pgadmin/tools/sqleditor/static/js/sqleditor.js | 4 ++--
2 files changed, 3 insertions(+), 2 deletions(-)



pgAdmin 4 commit: Ensure that the user should not be able to add duplic

2021-05-12 Thread Akshay Joshi
Ensure that the user should not be able to add duplicate panels. Fixes #6399

Branch
--
master

Details
---
https://git.postgresql.org/gitweb?p=pgadmin4.git;a=commitdiff;h=0bb40de1c42a1c392d1302a0617a21a8ee261414
Author: Pradip Parkale 

Modified Files
--
docs/en_US/release_notes_5_3.rst | 1 +
web/pgadmin/browser/static/js/browser.js | 7 +++
2 files changed, 8 insertions(+)



Re: [pgAdmin][RM6399]: Add panel option allows to add duplicate tabs.

2021-05-12 Thread Akshay Joshi
Thanks, patch applied.

On Tue, May 11, 2021 at 11:06 PM Pradip Parkale <
pradip.park...@enterprisedb.com> wrote:

> Hi Hackers,
>
> Please find the attached patch for #6399. I have partially fixed the
> issue. I have set the limit of 1 so that user won't be able to add any
> duplicate panel.
>
> --
> Thanks & Regards,
> Pradip Parkale
> Software Engineer | EnterpriseDB Corporation
>


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

*Mobile: +91 976-788-8246*