pgAdmin 4 commit: Fixed an issue where Import/Export Servers did not wo

2022-04-29 Thread Akshay Joshi
Fixed an issue where Import/Export Servers did not work in languages other than English. Branch -- master Details --- https://git.postgresql.org/gitweb?p=pgadmin4.git;a=commitdiff;h=7b66777600e0585300452e3c0ea5c2e16eb8da76 Modified Files -- .../tools/import_export_servers

pgAdmin 4 commit: Fixed import/export servers issue reported during tes

2022-01-10 Thread Akshay Joshi
Fixed import/export servers issue reported during testing. Branch -- master Details --- https://git.postgresql.org/gitweb?p=pgadmin4.git;a=commitdiff;h=7fe1d898911e3e92f4f3c0ffc3e5123d0c4057fd Modified Files -- web/pgadmin/utils/__init__.py | 23 ++- web

pgAdmin 4 commit: Fixed API test case for Import/Export Servers.

2022-01-09 Thread Akshay Joshi
Fixed API test case for Import/Export Servers. Branch -- master Details --- https://git.postgresql.org/gitweb?p=pgadmin4.git;a=commitdiff;h=55dc06de15129a4d4f8c74915e0fe1868bd9ed57 Modified Files -- web/pgadmin/utils/paths.py | 3 +-- 1 file changed, 1 insertion(+), 2

pgAdmin 4 commit: 1) Fixed import/export servers issue in server mode.

2022-01-07 Thread Akshay Joshi
1) Fixed import/export servers issue in server mode. 2) Fixed an issue where files are not showing as per the selected format in the file dialog when opened the first time. Branch -- master Details --- https://git.postgresql.org/gitweb?p=pgadmin4.git;a=commitdiff;h

pgAdmin 4 commit: Fixed review comments for Import/Export Servers.

2022-01-05 Thread Akshay Joshi
Fixed review comments for Import/Export Servers. refs #4803 Branch -- master Details --- https://git.postgresql.org/gitweb?p=pgadmin4.git;a=commitdiff;h=8b13f158ababee3d860414e39381cfced2e0ecd5 Modified Files -- .../images/import_export_servers_refresh_tree.png | Bin 42683

Re: Import/export servers

2018-11-21 Thread Dave Page
On Wed, Nov 21, 2018 at 9:27 AM Akshay Joshi wrote: > Hi Dave > > On Tue, Nov 20, 2018 at 8:23 PM Dave Page wrote: > >> Hi >> >> On Tue, Nov 20, 2018 at 6:01 AM Akshay Joshi < >> akshay.jo...@enterprisedb.com> wrote: >> >>> Hi Dave >>> On Mon, Nov 19, 2018 at 8:09 PM Dave Page wrote: >>> A

Re: Import/export servers

2018-11-21 Thread Akshay Joshi
Hi Dave On Tue, Nov 20, 2018 at 8:23 PM Dave Page wrote: > Hi > > On Tue, Nov 20, 2018 at 6:01 AM Akshay Joshi < > akshay.jo...@enterprisedb.com> wrote: > >> Hi Dave >> On Mon, Nov 19, 2018 at 8:09 PM Dave Page wrote: >> >>> A number of people have asked for the ability to import and export >>>

Re: Import/export servers

2018-11-20 Thread Dave Page
Hi On Tue, Nov 20, 2018 at 6:01 AM Akshay Joshi wrote: > Hi Dave > On Mon, Nov 19, 2018 at 8:09 PM Dave Page wrote: > >> A number of people have asked for the ability to import and export server >> definitions. It's also convenient to have such a feature in the container >> world, where new ins

Re: Import/export servers

2018-11-20 Thread Dave Page
Done - thanks! On Tue, Nov 20, 2018 at 5:34 AM navnath gadakh < navnath.gad...@enterprisedb.com> wrote: > ignore previous, use self.assertEqual(a,b) instead of self.assertTrue(a == > b) > > On Tue, Nov 20, 2018 at 10:46 AM navnath gadakh < > navnath.gad...@enterprisedb.com> wrote: > >> small feed

Re: Import/export servers

2018-11-19 Thread Akshay Joshi
Hi Dave On Mon, Nov 19, 2018 at 8:09 PM Dave Page wrote: > A number of people have asked for the ability to import and export server > definitions. It's also convenient to have such a feature in the container > world, where new instances of pgAdmin containers may be created on the fly. > > Here's

Re: Import/export servers

2018-11-19 Thread navnath gadakh
ignore previous, use self.assertEqual(a,b) instead of self.assertTrue(a == b) On Tue, Nov 20, 2018 at 10:46 AM navnath gadakh < navnath.gad...@enterprisedb.com> wrote: > small feedback, > In the tests, instead of self.assertTrue(a == b) use self.assertEqual(a == > b) which will give more info if

Re: Import/export servers

2018-11-19 Thread navnath gadakh
small feedback, In the tests, instead of self.assertTrue(a == b) use self.assertEqual(a == b) which will give more info if test case fails. On Mon, Nov 19, 2018 at 8:09 PM Dave Page wrote: > A number of people have asked for the ability to import and export server > definitions. It's also conven

Import/export servers

2018-11-19 Thread Dave Page
A number of people have asked for the ability to import and export server definitions. It's also convenient to have such a feature in the container world, where new instances of pgAdmin containers may be created on the fly. Here's a draft patch to allow that, including docs and a basic test. Revi