[pgadmin-hackers] Fix for issue RM1348 [pgadmin4]

2016-06-13 Thread Harshal Dhumal
Hi, PFA patch for issue RM1348. Issue fixed: Not to show multiple 'Reset Layout' options under file menu. Also restructured code related to reset layout functionality. -- *Harshal Dhumal* *Software Engineer* EnterpriseDB India: http://www.enterprisedb.com The Enterprise PostgreSQL Company

Re: [pgadmin-hackers] Fix for RM1318 [pgadmin4]

2016-06-13 Thread Harshal Dhumal
Hi, PFA patch for issue RM1318 with remaining bug fixes. On Mon, Jun 13, 2016 at 8:49 PM, Dave Page wrote: > On Mon, Jun 13, 2016 at 7:25 AM, Harshal Dhumal > wrote: > > Hi, > > > > PFA attached patch for issue RM1318. > > > > > > Issue

[pgadmin-hackers] pgadmin4 slow with large tables compared to pgadmin3

2016-06-13 Thread Colin Beckingham
I have the latest fully patched pgadmin4. Runs fine on openSUSE Leap 42.1 using browser Firefox. When I load a full large table such as the words table (140K records) from wordnet, pgadmin3 takes about 2 seconds to display. On pgadmin4 I wait about 30+ seconds and click through about 5 reminders

[pgadmin-hackers] pgAdmin 4 commit: Fix file type detection for Python 2.6. Fixes #1330

2016-06-13 Thread Dave Page
Fix file type detection for Python 2.6. Fixes #1330 To find out the type of file selected using FileManager in query tool, we use bitwise OR( | ) on two sets which is not working on python-2.6.9 version. Now we took list of elements instead of sets to fix the issue. Branch -- master

Re: [pgadmin-hackers] [pgAdmin4][Patch]: RM#1330 - Syntax error while running pgadmin_beta with python2.6.9

2016-06-13 Thread Dave Page
Thanks, applied. On Mon, Jun 13, 2016 at 8:55 AM, Surinder Kumar wrote: > Hi, > > Please find attached patch for RM#1330. > Issue: To find out the type of file selected using FileManager in query > tool, we use bitwise OR( | ) on two sets which is not working on

[pgadmin-hackers] pgAdmin 4 commit: Fix "global name 'execfile' not defined".

2016-06-13 Thread Dave Page
Fix "global name 'execfile' not defined". execfile was removed in Python 3.0. This uses 'exec(open(filename).read())' as an alternative, which works on all Python versions. Branch -- master Details ---

Re: [pgadmin-hackers] PATCH: To fixed uncomment issue (pgAdmin4)

2016-06-13 Thread Dave Page
Thanks, applied. On Mon, Jun 13, 2016 at 7:40 AM, Murtuza Zabuawala wrote: > Hi, > > PFA patch to fix the uncommenting issue with various nodes, due to this user > was not able to remove comments from objects. > > Please review. > (RM#1331) > > > Regards, >

[pgadmin-hackers] pgAdmin 4 commit: Fix comment removal for various nodes. Fixes #1331

2016-06-13 Thread Dave Page
Fix comment removal for various nodes. Fixes #1331 Branch -- master Details --- http://git.postgresql.org/gitweb?p=pgadmin4.git;a=commitdiff;h=1f9d0ffc54187e3e326827222a4a028c01b33c90 Author: Murtuza Zabuawala Modified Files --

Re: [pgadmin-hackers] Fix for RM1318 [pgadmin4]

2016-06-13 Thread Dave Page
On Mon, Jun 13, 2016 at 7:25 AM, Harshal Dhumal wrote: > Hi, > > PFA attached patch for issue RM1318. > > > Issue fixed: Added help buttons on backup, restore, maintenance, user > management dialogs. Thanks - I've committed this as-is, however the following

[pgadmin-hackers] pgAdmin 4 commit: Help buttons for various dialogues.

2016-06-13 Thread Dave Page
Help buttons for various dialogues. Branch -- master Details --- http://git.postgresql.org/gitweb?p=pgadmin4.git;a=commitdiff;h=970d3aafbf38e4a9fee52a85f96529076fafb1e4 Modified Files -- web/pgadmin/browser/__init__.py| 11 +

Re: [pgadmin-hackers] PATCH: Added Statistics functionality for many nodes (pgAdmin4)

2016-06-13 Thread Dave Page
On Mon, Jun 13, 2016 at 12:29 PM, Murtuza Zabuawala wrote: > The strange effects that leads to. > > >> On 13-Jun-2016, at 4:55 pm, Dave Page wrote: >> >> Hi >> >> On Mon, Jun 13, 2016 at 12:18 PM, Murtuza Zabuawala >>

Re: [pgadmin-hackers] PATCH: Added Statistics functionality for many nodes (pgAdmin4)

2016-06-13 Thread Murtuza Zabuawala
Hi Dave, I tried with fresh install of 9.4 version but still not able to re-produce the issue, I also tried switching python version 2.7/3.5 but still no luck. I also checked with Neel & Surinder on their system but still not able to re-produce the issue. Regards, Murtuza > On 10-Jun-2016,

[pgadmin-hackers] PATCH: To fixed the issue in server node (pgAdmin4)

2016-06-13 Thread Murtuza Zabuawala
Hi, PFA minor patch to fix the issue for RM#1144. -- Regards, Murtuza Zabuawala EnterpriseDB: http://www.enterprisedb.com The Enterprise PostgreSQL Company RM_1144.patch Description: Binary data -- Sent via pgadmin-hackers mailing list (pgadmin-hackers@postgresql.org) To make changes to

[pgadmin-hackers] pgAdmin website commit: Link to the tracker from the support index page

2016-06-13 Thread Dave Page
Link to the tracker from the support index page. Branch -- master Details --- http://git.postgresql.org/gitweb?p=pgadmin-www.git;a=commitdiff;h=0bf7d88ef2fe8aa3696c17f827357c3d3c00ce30 Modified Files -- support/index.php | 2 ++ 1 file changed, 2 insertions(+) -- Sent via

[pgadmin-hackers] PATCH: To add "Move objects..” functionality in tablespace (pgAdmin4)

2016-06-13 Thread Murtuza Zabuawala
Hi, PFA patch to add "Move objects..” functionality in tablespace node. (RM#1286) Additionally I have removed pre_9.1 sql's & align SQL line indentation as well. Please review. Regards, Murtuza RM_1286.patch Description: Binary data -- Sent via pgadmin-hackers mailing list

Re: [pgadmin-hackers] Ordering of results in query templates involving UNION

2016-06-13 Thread Dave Page
Hi, On Sun, Jun 12, 2016 at 11:18 PM, Edmund Horner wrote: > Hi, > > I was trying out the beta download and noticed that the SQL definition for > some of my constraints had the columns in the wrong order. I traced this to >

[pgadmin-hackers] pgAdmin III commit: Include the Negator when reverse engineering SQL fo

2016-06-13 Thread Dave Page
Include the Negator when reverse engineering SQL for Operators Branch -- REL-1_22_0_PATCHES Details --- http://git.postgresql.org/gitweb?p=pgadmin3.git;a=commitdiff;h=14a327400c42333466aa7246dd94ca9fc865c076 Author: Julien Rouhaud Modified Files

[pgadmin-hackers] pgAdmin III commit: Include the Negator when reverse engineering SQL fo

2016-06-13 Thread Dave Page
Include the Negator when reverse engineering SQL for Operators Branch -- master Details --- http://git.postgresql.org/gitweb?p=pgadmin3.git;a=commitdiff;h=794527d97e2e3b01399954f3b79c8e2585b908dd Author: Julien Rouhaud Modified Files -- CHANGELOG

[pgadmin-hackers] [pgAdmin4][Patch]: RM#1330 - Syntax error while running pgadmin_beta with python2.6.9

2016-06-13 Thread Surinder Kumar
Hi, Please find attached patch for RM#1330. *Issue: *To find out the type of file selected using FileManager in query tool, we use bitwise OR( | ) on two sets which is not working on python-2.6.9 version. Now we took list of elements instead of sets to fix the issue. This fix is tested on

[pgadmin-hackers] [PATCH] fix "global name 'execfile' not defined"

2016-06-13 Thread Sebastiaan van Stijn
execfile was removed in Python 3.0. This uses 'exec(open(filename).read())' as an alternative, which works on all Python versions. Signed-off-by: Sebastiaan van Stijn 0001-fix-global-name-execfile-not-defined.patch Description: Binary data -- Sent via pgadmin-hackers

[pgadmin-hackers] PATCH: To fixed uncomment issue (pgAdmin4)

2016-06-13 Thread Murtuza Zabuawala
Hi, PFA patch to fix the uncommenting issue with various nodes, due to this user was not able to remove comments from objects. Please review. (RM#1331) Regards, Murtuza fixed_uncommenting_issue.patch Description: Binary data -- Sent via pgadmin-hackers mailing list

[pgadmin-hackers] Fix for RM1318 [pgadmin4]

2016-06-13 Thread Harshal Dhumal
Hi, PFA attached patch for issue RM1318. Issue fixed: Added help buttons on backup, restore, maintenance, user management dialogs. -- *Harshal Dhumal* *Software Engineer* EnterpriseDB India: http://www.enterprisedb.com The Enterprise PostgreSQL Company diff --git