Add folder icon issue

2020-12-07 Thread Rahul Shirsat
Hi Hacker,

Please find a minor fix for the add-folder icon issue on select / create
file manager.

-- 
*Rahul Shirsat*
Senior Software Engineer | EnterpriseDB Corporation.


add-folder-icon-issue.patch
Description: Binary data


pgAdmin 4 commit: 1. Resolved the issues related to the database connec

2020-12-07 Thread Akshay Joshi
1. Resolved the issues related to the database connection.
2. Updated the create "pldbgapi" extension for the debugger.

refs #5343

Branch
--
master

Details
---
https://git.postgresql.org/gitweb?p=pgadmin4.git;a=commitdiff;h=94500658501c5c72263c6bf2072ad75eafe77084
Author: Nikhil Mohite 

Modified Files
--
.../tools/debugger/tests/debugger_test_data.json   |  2 +-
.../debugger/tests/test_start_listener_debugger.py |  4 ++--
web/pgadmin/tools/debugger/tests/utils.py  | 18 ++
3 files changed, 17 insertions(+), 7 deletions(-)



pgAdmin 4 commit: Update version for release.

2020-12-07 Thread Akshay Joshi
Update version for release.

Branch
--
master

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

Modified Files
--
runtime/Info.plist   | 4 ++--
runtime/pgAdmin4.pro | 2 +-
web/config.py| 4 ++--
3 files changed, 5 insertions(+), 5 deletions(-)



pgAdmin 4 commit: Fixed minor issue of the add-folder icon in the file

2020-12-07 Thread Akshay Joshi
Fixed minor issue of the add-folder icon in the file manager.

Branch
--
master

Details
---
https://git.postgresql.org/gitweb?p=pgadmin4.git;a=commitdiff;h=375e2e0d13901f7c9c8557ef1d99f53bbb6cc229
Author: Rahul Shirsat 

Modified Files
--
web/pgadmin/misc/file_manager/static/scss/_file_manager.scss | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)



pgAdmin 4 commit: Update version for release.

2020-12-07 Thread Akshay Joshi
Update version for release.

Branches

ERDTool
master

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

Modified Files
--
runtime/Info.plist   | 4 ++--
runtime/pgAdmin4.pro | 2 +-
web/config.py| 4 ++--
3 files changed, 5 insertions(+), 5 deletions(-)



pgAdmin 4 commit: Fixed minor issue of the add-folder icon in the file

2020-12-07 Thread Akshay Joshi
Fixed minor issue of the add-folder icon in the file manager.

Branches

ERDTool
master

Details
---
https://git.postgresql.org/gitweb?p=pgadmin4.git;a=commitdiff;h=375e2e0d13901f7c9c8557ef1d99f53bbb6cc229
Author: Rahul Shirsat 

Modified Files
--
web/pgadmin/misc/file_manager/static/scss/_file_manager.scss | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)



pgAdmin 4 commit: 1. Resolved the issues related to the database connec

2020-12-07 Thread Akshay Joshi
1. Resolved the issues related to the database connection.
2. Updated the create "pldbgapi" extension for the debugger.

refs #5343

Branches

ERDTool
master

Details
---
https://git.postgresql.org/gitweb?p=pgadmin4.git;a=commitdiff;h=94500658501c5c72263c6bf2072ad75eafe77084
Author: Nikhil Mohite 

Modified Files
--
.../tools/debugger/tests/debugger_test_data.json   |  2 +-
.../debugger/tests/test_start_listener_debugger.py |  4 ++--
web/pgadmin/tools/debugger/tests/utils.py  | 18 ++
3 files changed, 17 insertions(+), 7 deletions(-)



pgAdmin 4 commit: Initial WIP ERD Tool implementation.

2020-12-07 Thread Akshay Joshi
Initial WIP ERD Tool implementation.

Branch
--
ERDTool

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

Modified Files
--
web/.eslintrc.js   |1 +
web/package.json   |   31 +-
.../servers/databases/schemas/tables/__init__.py   |  155 +-
.../tables/constraints/foreign_key/utils.py|   17 +-
.../schemas/tables/partitions/__init__.py  |3 +-
.../templates/foreign_key/sql/default/create.sql   |6 +-
.../servers/databases/schemas/tables/utils.py  |  167 ++-
.../servers/databases/schemas/utils.py |   30 +-
.../servers/databases/static/js/database.js|   13 +
web/pgadmin/static/bundle/browser.js   |1 +
web/pgadmin/static/js/backform.pgadmin.js  |4 +
web/pgadmin/static/js/backgrid.pgadmin.js  |   10 +-
web/pgadmin/static/scss/_bootstrap.overrides.scss  |   14 +
web/pgadmin/static/scss/_pgadmin.style.scss|6 +
web/pgadmin/static/scss/_tippy.overrides.scss  |   15 +
web/pgadmin/static/scss/pgadmin.scss   |2 +-
.../static/scss/resources/_default.variables.scss  |   16 +-
.../scss/resources/dark/_theme.variables.scss  |8 +
.../datagrid/static/js/datagrid_panel_title.js |   13 +-
.../tools/datagrid/static/js/show_query_tool.js|   25 +-
web/pgadmin/tools/erd/__init__.py  |  587 
web/pgadmin/tools/erd/static/js/erd_module.js  |  216 +++
.../tools/erd/static/js/erd_tool/ERDCore.js|  354 +
.../tools/erd/static/js/erd_tool/ERDModel.js   |   12 +
.../static/js/erd_tool/dialogs/DialogWrapper.js|  140 ++
.../erd/static/js/erd_tool/dialogs/EntityDialog.js |  671 +
.../static/js/erd_tool/dialogs/ManyToManyDialog.js |  116 ++
.../static/js/erd_tool/dialogs/OneToManyDialog.js  |  116 ++
.../tools/erd/static/js/erd_tool/dialogs/index.js  |   14 +
web/pgadmin/tools/erd/static/js/erd_tool/index.js  |   20 +
.../erd/static/js/erd_tool/links/OneToManyLink.jsx |  291 
.../erd/static/js/erd_tool/nodes/TableNode.jsx |  193 +++
.../erd/static/js/erd_tool/ports/OneToManyPort.js  |   34 +
.../js/erd_tool/ui_components/BodyWidget.jsx   |  674 +
.../js/erd_tool/ui_components/ConnectionBar.jsx|   34 +
.../js/erd_tool/ui_components/FloatingNote.jsx |   48 +
.../static/js/erd_tool/ui_components/Loader.jsx|   18 +
.../static/js/erd_tool/ui_components/ToolBar.jsx   |   73 +
web/pgadmin/tools/erd/static/js/erd_tool_hook.js   |   35 +
web/pgadmin/tools/erd/static/js/index.js   |   23 +
web/pgadmin/tools/erd/static/scss/_erd.scss|  189 +++
web/pgadmin/tools/erd/templates/erd/index.html |   55 +
web/pgadmin/tools/erd/tests/__init__.py|   15 +
web/pgadmin/tools/erd/tests/test_close.py  |   55 +
web/pgadmin/tools/erd/tests/test_initialize.py |   54 +
web/pgadmin/tools/erd/tests/test_panel.py  |   44 +
web/pgadmin/tools/erd/tests/test_prequisite.py |   52 +
web/pgadmin/tools/erd/tests/test_sql.py|   67 +
.../tools/erd/tests/test_sql_input_data.json   |  106 ++
web/pgadmin/tools/erd/tests/test_sql_output.sql|   25 +
web/pgadmin/tools/erd/tests/test_tables.py |   79 +
web/pgadmin/tools/erd/utils.py |   71 +
web/pgadmin/tools/sqleditor/static/js/sqleditor.js |7 +-
web/pgadmin/utils/csrf.py  |3 +-
web/pgadmin/utils/driver/psycopg2/connection.py|2 +-
web/regression/javascript/erd/erd_core_spec.js |  382 +
web/regression/javascript/erd/erd_model_spec.js|   34 +
.../erd/keyboard_shortcut_action_spec.js   |   61 +
.../javascript/erd/onetomany_link_spec.js  |  133 ++
.../javascript/erd/onetomany_port_spec.js  |   21 +
web/regression/javascript/erd/table_node_spec.js   |  305 
web/regression/javascript/erd/test_tables.js   |  651 +
.../erd/ui_components/body_widget_spec.js  |  494 +++
.../erd/ui_components/connection_bar_spec.js   |   25 +
.../erd/ui_components/erd_preferences.js   |  147 ++
.../erd/ui_components/floating_note_spec.js|   39 +
.../javascript/erd/ui_components/loader_spec.js|   23 +
.../javascript/erd/ui_components/toolbar_spec.js   |   76 +
web/regression/javascript/fake_endpoints.js|6 +
web/webpack.config.js  |4 +-
web/webpack.shim.js|6 +
web/webpack.test.config.js |1 +
web/yarn.lock  | 1539 
73 files changed, 8208 insertions(+), 769 deletions(-)



pgAdmin4 v4.29 candidate builds

2020-12-07 Thread Akshay Joshi
Hi All,

pgAdmin4 v4.29 candidate builds and source can be found at
https://developer.pgadmin.org/builds/2020-12-07-1/

Fahar, can you please verify it for release on Thursday.

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

*Mobile: +91 976-788-8246*


pgAdmin 4 commit: Branch ERDTool was created

2020-12-07 Thread git
Branch ERDTool was created.

View: 
https://git.postgresql.org/gitweb?p=pgadmin4.git;a=shortlog;h=refs/heads/ERDTool

Re: pgAdmin4 v4.29 candidate builds

2020-12-07 Thread Fahar Abbas
@Akshay Joshi 

Here is the showstopper issue found on Windows platform:
https://redmine.postgresql.org/issues/6072

Kind Regards,

On Mon, Dec 7, 2020 at 6:29 PM Akshay Joshi 
wrote:

> Hi All,
>
> pgAdmin4 v4.29 candidate builds and source can be found at
> https://developer.pgadmin.org/builds/2020-12-07-1/
>
> Fahar, can you please verify it for release on Thursday.
>
> --
> *Thanks & Regards*
> *Akshay Joshi*
> *pgAdmin Hacker | Principal Software Architect*
> *EDB Postgres *
>
> *Mobile: +91 976-788-8246*
>


-- 
Fahar Abbas
EnterpriseDB Corporation
Phone Office: +92-51-835-8874
Phone Direct: +92-51-8466803
Mobile: +92-333-5409707
Skype ID: *live:fahar.abbas*
Website: www.enterprisedb.com