Re: [pgadmin-hackers] hello (and .git folder)

2017-03-10 Thread Dave Page
On Fri, Mar 10, 2017 at 11:00 PM, Catonano wrote: > Dave, > > 2017-03-10 23:25 GMT+01:00 Dave Page : >> >> Hi >> >> That's intentional - the script uses git to ensure we only ship files >> in the pip wheel that are expected to be in the source tree. >> > > thanks for your prompt reply > > I'm not

Re: [pgadmin-hackers] hello (and .git folder)

2017-03-10 Thread Catonano
Dave, 2017-03-10 23:25 GMT+01:00 Dave Page : > Hi > > That's intentional - the script uses git to ensure we only ship files > in the pip wheel that are expected to be in the source tree. > > thanks for your prompt reply I'm not sure I understand your answer Is the tarball the wrong way to try t

Re: [pgadmin-hackers] hello (and .git folder)

2017-03-10 Thread Dave Page
Hi On Fri, Mar 10, 2017 at 10:23 PM, Catonano wrote: > Hello, > > I am trying to build pgadmin4 for GuixSD > > This is an excerpt from pkg/pip/build.sh > > if [ ! -d .git -a ! -f .git/config ]; then > echo This script must be run from a git checkout of the source tree. > exit 1 > fi > > B

[pgadmin-hackers] hello (and .git folder)

2017-03-10 Thread Catonano
Hello, I am trying to build pgadmin4 for GuixSD This is an excerpt from pkg/pip/build.sh if [ ! -d .git -a ! -f .git/config ]; then echo This script must be run from a git checkout of the source tree. exit 1 fi But in the tarball there is no .git folder I can abandon the tarball and mo

[pgadmin-hackers] Introduce Migration system for SQLite database

2017-03-10 Thread Joao Pedro De Almeida Pereira
Hi Hackers, We were looking at the migration pattern created for the SQLite database and tried to look into the possibility of using a library that could handle them for us. - Migrations allow us to have a single path of creating the table instead of creating tables using SQLAlchemy or hand rolled

[pgadmin-hackers] pgAdmin 4 commit: Resolved an issue finding the python interpreter on *

2017-03-10 Thread Ashesh Vashi
Resolved an issue finding the python interpreter on *nix systems, and Windows 2008 R2 (32 bit), while running the pgAdmin 4 as runtime for the PostgreSQL one click installers. - Found a typo in runtime code, we were appending the path using ';' on *nix systems too. We should have used ':', and t

[pgadmin-hackers] "Cancel Query" or "Terminate backend" - Pgadmin4

2017-03-10 Thread Juliano
Hi Is there the tool/option "Cancel Query" or "Terminate backend" in Pgadmin4? Regards Juliano

Re: [pgadmin-hackers] [patch] Refactor: clipboard, translations, jasmine

2017-03-10 Thread Dave Page
On Fri, Mar 10, 2017 at 2:53 PM, Atira Odhner wrote: >> Actually that's not an issue - the package builds will (in most cases >> now) remove the test directories, and will only include files that are >> in GIT anyway. Please move everything under web/regression as right >> now it's cluttering up t

Re: [pgadmin-hackers] PgAdmin4 jobs pgagent "run now" option

2017-03-10 Thread Juliano
Thanks Neel Patel for the patch and thanks Dave Page for includes it in the 1.3 version. Regards Juliano

Re: [pgadmin-hackers] [patch] Refactor: clipboard, translations, jasmine

2017-03-10 Thread Atira Odhner
> > Actually that's not an issue - the package builds will (in most cases > now) remove the test directories, and will only include files that are > in GIT anyway. Please move everything under web/regression as right > now it's cluttering up the root directory which doesn't make sense as > it only

[pgadmin-hackers] [pgAdmin4][Patch]: Fixed 2190 - Move language selection to Preferences.

2017-03-10 Thread Khushboo Vashi
Hi, Please find the attached patch for #2190: Move language selection to Preferences. Moved the user language selection into Preferences. For the desktop mode, if the user has selected the language from the Preferences then that will be reflected otherwise English will be the default language. F

[pgadmin-hackers] pgAdmin 4 v1.3 Released!

2017-03-10 Thread Dave Page
I'm pleased to announce the release of pgAdmin 4 v1.3. Users are advised to upgrade as soon as possible. This release contains nearly 40 bug fixes, largely focussed in the following areas: - Query Tool efficiency. The JSON formatting used by the query tool has been changed to dramatically decreas

[pgadmin-hackers] pgAdmin 4 commit: Tag REL-1_3 has been created.

2017-03-10 Thread Dave Page
Tag REL-1_3 has been created. View: http://git.postgresql.org/gitweb?p=pgadmin4.git;a=tag;h=refs/tags/REL-1_3 Log Message --- Tag 1.3 -- Sent via pgadmin-hackers mailing list (pgadmin-hackers@postgresql.org) To make changes to your subscription: http://www.postgresql.org/mailpref/pgadmin-

[pgadmin-hackers] pgAdmin website commit: Remove news about older point releases.

2017-03-10 Thread Dave Page
Remove news about older point releases. Branch -- master Details --- http://git.postgresql.org/gitweb?p=pgadmin-www.git;a=commitdiff;h=d34945e325e85fcfc959c8c86fa5a749826763d2 Modified Files -- index.php | 8 1 file changed, 8 deletions(-) -- Sent via pgadmin-hacke

[pgadmin-hackers] pgAdmin website commit: Release 1.3.

2017-03-10 Thread Dave Page
Release 1.3. Branch -- master Details --- http://git.postgresql.org/gitweb?p=pgadmin-www.git;a=commitdiff;h=524d9f011c9e31f48de0a7b906bf363c9142ba9a Modified Files -- download/macos4.php | 1 + download/pip4.php | 3 ++- download/source4.php | 2 ++ download/windows4.p

Re: [pgadmin-hackers] [patch] Refactor: clipboard, translations, jasmine

2017-03-10 Thread Dave Page
Hi On Thu, Mar 9, 2017 at 9:56 PM, Atira Odhner wrote: > Hi Dave, > > We've split these changes up into separate patches, added docs, pulled > jasmine out of the packaged app, and enabled running from the commandline: > > Add jasmine > - it runs with karma from the commandline > - it

[pgadmin-hackers] pgAdmin 4 commit: Remove some dead code.

2017-03-10 Thread Dave Page
Remove some dead code. Branch -- master Details --- http://git.postgresql.org/gitweb?p=pgadmin4.git;a=commitdiff;h=28deb342832d2b88fb9cfd3ad821c416fa71c218 Author: Atira Odhner Modified Files -- .../sqleditor/templates/sqleditor/js/sqleditor.js | 68 -- 1

Re: [pgadmin-hackers][patch] Shows titles for disabled buttons on hover

2017-03-10 Thread Dave Page
Hi On Thu, Mar 9, 2017 at 7:05 PM, Joao Pedro De Almeida Pereira wrote: > Hello Dave, > > We were looking into this request and we found at least one location where > the Hover does not make sense when it is disabled (the stylized "i' in the > lower left of dialogs, which has the alt-text "SQL he

Re: [pgadmin-hackers] Polish translaction of pgadmin4

2017-03-10 Thread Dave Page
:-) Thanks, committed. On Thu, Mar 9, 2017 at 5:16 PM, Begina Felicysym wrote: > Hi! > > And that is my turn :) > > I fixed the updated phrases. > > Begina > > > > Dnia Czwartek, 9 Marca 2017 10:25 Dave Page napisaƂ(a) > > > > On Wed, Mar 8, 2017 at 9:29 PM, Begina Felicysym > wrote: > >> Hi t

[pgadmin-hackers] pgAdmin 4 commit: Update Polish translation

2017-03-10 Thread Dave Page
Update Polish translation Branch -- master Details --- http://git.postgresql.org/gitweb?p=pgadmin4.git;a=commitdiff;h=5e6c29d5db2484bba0290f54a46e028437204f09 Author: Begina Felicysym Modified Files -- .../translations/pl/LC_MESSAGES/messages.mo| Bin 113413 -> 114198