[pgadmin-hackers] [question]

2017-04-11 Thread Sarah McAlear
Hello Hackers, We are working with the tree and are looking into the paths that are used to get tree data from the Python backend. We noticed that the path has a component that has to be numeric, but it appears that what this number is, is irrelevant. Here's an example: /browser/server/children/1

[pgadmin-hackers] [pgAdmin4][PATCH] To fix the issue in browser tree

2017-04-11 Thread Murtuza Zabuawala
Hi, PFA minor patch to fix the issue where we were not updating inode information on refresh. RM#2336 -- Regards, Murtuza Zabuawala EnterpriseDB: http://www.enterprisedb.com The Enterprise PostgreSQL Company diff --git a/web/pgadmin/browser/templates/browser/js/browser.js b/web/pgadmin/browser/t

Re: [pgadmin-hackers] [pgAdmin4][Patch]: RM#2333 - Server Activity data is not updating when server is disconnected in Dashboards

2017-04-11 Thread Surinder Kumar
Hi Dave, On Tue, Apr 11, 2017 at 4:28 PM, Dave Page wrote: > On Tue, Apr 11, 2017 at 10:51 AM, Surinder Kumar > wrote: > > Hi > > > > When a server is disconnected, listen to 'pgadmin:server:disconnect' > event > > and trigger refresh button of Server Activity data. > > I don't see any reason t

Re: [pgadmin-hackers] [pgAdmin4][Patch]: RM#2333 - Server Activity data is not updating when server is disconnected in Dashboards

2017-04-11 Thread Dave Page
On Tue, Apr 11, 2017 at 10:51 AM, Surinder Kumar wrote: > Hi > > When a server is disconnected, listen to 'pgadmin:server:disconnect'event > and trigger refresh button of Server Activity data. I don't see any reason to do that - it's not auto-refreshed data, so why clear it? > Also, on server di

[pgadmin-hackers] [pgAdmin4][Patch]: RM#2333 - Server Activity data is not updating when server is disconnected in Dashboards

2017-04-11 Thread Surinder Kumar
Hi When a server is disconnected, listen to 'pgadmin:server:disconnect'event and trigger refresh button of Server Activity data. Also, on server disconnect, an unused event 'server-disconnected' is being triggered. instead it should trigger ''pgadmin:server:disconnect'event. Please find attached