Re: [pgadmin-hackers] Translation to czech

2009-04-24 Thread Guillaume Lelarge
Le vendredi 24 avril 2009 à 07:00:08, Zdenek Kotala a écrit :
 Dne 18.04.09 23:13, Guillaume Lelarge napsal(a):
  Hi,
 
  Le samedi 18 avril 2009 à 22:26:14, Marek Černocký a écrit :
  [...]
  I would like to translate pgAdmin to Czech / Čeština / cs
 
  That's a great news. There's already a (unfortunately outdated) cs_CZ
  translation. If you wish to update it, you can grab it on
  http://www.pgadmin.org/svnrepo/pgadmin3/i18n/cs_CZ/pgadmin3.po .

 I is really outdated and fuzzy matching finished a job :(. I have
 somewhere cleaned and partially updated version for 1.6. Which could be
 used as a start point.


You can already send it to me, I will merge it with the new .pot file.


-- 
Guillaume.
 http://www.postgresqlfr.org
 http://dalibo.com

-- 
Sent via pgadmin-hackers mailing list (pgadmin-hackers@postgresql.org)
To make changes to your subscription:
http://www.postgresql.org/mailpref/pgadmin-hackers


[pgadmin-hackers] SVN Commit by dpage: r7817 - trunk/pgadmin3/pgadmin/debugger

2009-04-24 Thread svn
Author: dpage

Date: 2009-04-24 08:44:08 +0100 (Fri, 24 Apr 2009)

New Revision: 7817

Revision summary: http://svn.pgadmin.org/cgi-bin/viewcvs.cgi/?rev=7817view=rev

Log:
Debugger related fixes:
* SSL Verify support introduced PG 8.4 and later.
  We were not taking care about it.
* We were not catching an exception - thrown from Init
  function of dlgPgConn (debugger/dbgPgConn.cpp:228)
* Also include one change related to set isGreenplum in
  debugger/dbgPgConn. isGreenplum variable is getting set in
  the block whose condition is (isEdb  ...). So, value for
  isGreenplum will be a garbage value when we have
  postgresql/greenplum server, otherwise it will be false
  (for edb).
[Ashesh Vashi]



Modified:
   trunk/pgadmin3/pgadmin/debugger/dbgPgConn.cpp
   trunk/pgadmin3/pgadmin/debugger/debugger.cpp
   trunk/pgadmin3/pgadmin/debugger/frmDebugger.cpp

-- 
Sent via pgadmin-hackers mailing list (pgadmin-hackers@postgresql.org)
To make changes to your subscription:
http://www.postgresql.org/mailpref/pgadmin-hackers


[pgadmin-hackers] Feedback from recent training

2009-04-24 Thread Simon Riggs
* Want option to *never* put double-quotes around object names, even
when I use an uppercase character in a name.

* Why is Primary Key on different dialog than columns? Want a check box
to say that a column is the PK.

* Name of a Constraint should default to what Postgres will call it, so
that it's clear that a constraint *will* be assigned a name even if we
leave it blank (which is best practice to do so).

* PKs and Unique constraints should show as Indexes in addition to
showing as a Constraint. Unique indexes should show as Constraints. Yes,
they're different, slightly, but they're so close it's annoying to have
to guess.

* When you perform an action, why doesn't it refresh that aspect?

* Why are Schema Privs not shown on Grant Wizard for a specific Schema?
When we click on a schema it shows only table privs for that schema.
Schema privs must be accessed via Properties..Privileges tab, which is
non-intuitive.

* Want Copy/Paste objects between schemas.

* Want Clone object, which copies object but prompts for new name.

* Want option to make Login Roles appear on priv dialogs, not just Group
Roles.

* Want to be able to use SERIAL and BIGSERIAL types for columns

* Only show Object Type if there is at least one object of that type in
that Schema. De-clutters display. We can have a right-click dialog to
create a new object, with sub-menu to select object type.

* Disabling Rule object type visibility doesn't appear to work!?!

* Want to be able to specify ConnectionLimit for users via dialog

* If there are 20 (N?) objects, then show that using a breakdown. e.g.
A-C, D-G, H-M, N-S, T-V, W-Z. So when we have 100s of objects we can
still retain sanity.

-- 
 Simon Riggs   www.2ndQuadrant.com
 PostgreSQL Training, Services and Support


-- 
Sent via pgadmin-hackers mailing list (pgadmin-hackers@postgresql.org)
To make changes to your subscription:
http://www.postgresql.org/mailpref/pgadmin-hackers


[pgadmin-hackers] SVN Commit by dpage: r7818 - in trunk/pgadmin3/pgadmin: frm utils

2009-04-24 Thread svn
Author: dpage

Date: 2009-04-24 09:45:42 +0100 (Fri, 24 Apr 2009)

New Revision: 7818

Revision summary: http://svn.pgadmin.org/cgi-bin/viewcvs.cgi/?rev=7818view=rev

Log:
Remove useless rule view option.



Modified:
   trunk/pgadmin3/pgadmin/frm/frmOptions.cpp
   trunk/pgadmin3/pgadmin/utils/sysSettings.cpp

-- 
Sent via pgadmin-hackers mailing list (pgadmin-hackers@postgresql.org)
To make changes to your subscription:
http://www.postgresql.org/mailpref/pgadmin-hackers


Re: [pgadmin-hackers] Feedback from recent training

2009-04-24 Thread Dave Page
Thanks Simon - I've added these to the first page on our new project
Wiki at http://code.pgadmin.org/trac/wiki/FeedbackItems.

Some notes below as well.

On Fri, Apr 24, 2009 at 8:59 AM, Simon Riggs si...@2ndquadrant.com wrote:

 * Why is Primary Key on different dialog than columns? Want a check box
 to say that a column is the PK.

There is a planned redesign of the table dialogue that will achieve
this. Just need to find the time.

 * When you perform an action, why doesn't it refresh that aspect?

It should generally. When does it not?

 * Why are Schema Privs not shown on Grant Wizard for a specific Schema?
 When we click on a schema it shows only table privs for that schema.
 Schema privs must be accessed via Properties..Privileges tab, which is
 non-intuitive.

The wizard is designed to overcome lack of support for GRANT ... ON
ALL TO ALL etc. which some other DBMSs have. I think the schema was
excluded from the Wizard because it's a single object so doesn't
really need the wizard like 20 tables might. I can't say I'm wed to
that behaviour though - feel free to submit a patch!

 * Want option to make Login Roles appear on priv dialogs, not just Group
 Roles.

File - Options - Preferences - Show users for privileges

 * Want to be able to use SERIAL and BIGSERIAL types for columns

You can, though I see they're at the end of the list (probably because
it lists types, array types and then the pseudo-types are added).

 * Disabling Rule object type visibility doesn't appear to work!?!

That option shouldn't be there, as we don't support hiding objects
down at that level. Removed.

 * Want to be able to specify ConnectionLimit for users via dialog

You can, though that may be new in 1.10 iirc.

-- 
Dave Page
EnterpriseDB UK:   http://www.enterprisedb.com

-- 
Sent via pgadmin-hackers mailing list (pgadmin-hackers@postgresql.org)
To make changes to your subscription:
http://www.postgresql.org/mailpref/pgadmin-hackers


Re: [pgadmin-hackers] Translation to czech

2009-04-24 Thread Zdenek Kotala

Dne 24.04.09 09:25, Guillaume Lelarge napsal(a):

Le vendredi 24 avril 2009 à 07:00:08, Zdenek Kotala a écrit :

Dne 18.04.09 23:13, Guillaume Lelarge napsal(a):

Hi,

Le samedi 18 avril 2009 à 22:26:14, Marek Černocký a écrit :

[...]
I would like to translate pgAdmin to Czech / Čeština / cs

That's a great news. There's already a (unfortunately outdated) cs_CZ
translation. If you wish to update it, you can grab it on
http://www.pgadmin.org/svnrepo/pgadmin3/i18n/cs_CZ/pgadmin3.po .

I is really outdated and fuzzy matching finished a job :(. I have
somewhere cleaned and partially updated version for 1.6. Which could be
used as a start point.



You can already send it to me, I will merge it with the new .pot file.



I discussed it with Marek offlist and he has half of messages already 
translated. I'm not sure if it is good idea to mix it now. I guess It 
could generate more problems.


Zdenek



--
Sent via pgadmin-hackers mailing list (pgadmin-hackers@postgresql.org)
To make changes to your subscription:
http://www.postgresql.org/mailpref/pgadmin-hackers


[pgadmin-hackers] SVN Commit by dpage: r7820 - trunk/pgadmin3/pgadmin/dlg

2009-04-24 Thread svn
Author: dpage

Date: 2009-04-24 13:23:26 +0100 (Fri, 24 Apr 2009)

New Revision: 7820

Revision summary: http://svn.pgadmin.org/cgi-bin/viewcvs.cgi/?rev=7820view=rev

Log:
Ensure the user enters a trigger body if creating an edb-spl trigger.


Modified:
   trunk/pgadmin3/pgadmin/dlg/dlgTrigger.cpp

-- 
Sent via pgadmin-hackers mailing list (pgadmin-hackers@postgresql.org)
To make changes to your subscription:
http://www.postgresql.org/mailpref/pgadmin-hackers


Re: [pgadmin-hackers] Translation to czech

2009-04-24 Thread Guillaume Lelarge
Le vendredi 24 avril 2009 à 12:47:10, Zdenek Kotala a écrit :
 Dne 24.04.09 09:25, Guillaume Lelarge napsal(a):
  Le vendredi 24 avril 2009 à 07:00:08, Zdenek Kotala a écrit :
  Dne 18.04.09 23:13, Guillaume Lelarge napsal(a):
  Hi,
 
  Le samedi 18 avril 2009 à 22:26:14, Marek Černocký a écrit :
  [...]
  I would like to translate pgAdmin to Czech / Čeština / cs
 
  That's a great news. There's already a (unfortunately outdated) cs_CZ
  translation. If you wish to update it, you can grab it on
  http://www.pgadmin.org/svnrepo/pgadmin3/i18n/cs_CZ/pgadmin3.po .
 
  I is really outdated and fuzzy matching finished a job :(. I have
  somewhere cleaned and partially updated version for 1.6. Which could be
  used as a start point.
 
  You can already send it to me, I will merge it with the new .pot file.

 I discussed it with Marek offlist and he has half of messages already
 translated. I'm not sure if it is good idea to mix it now. I guess It
 could generate more problems.


OK, that's fine by me.


-- 
Guillaume.
 http://www.postgresqlfr.org
 http://dalibo.com

-- 
Sent via pgadmin-hackers mailing list (pgadmin-hackers@postgresql.org)
To make changes to your subscription:
http://www.postgresql.org/mailpref/pgadmin-hackers


[pgadmin-hackers] SVN Commit by mha: r7819 - in trunk/pgadmin3/pgadmin: . db debugger dlg frm include/db include/debugger include/dlg include/schema include/utils schema ui

2009-04-24 Thread svn
Author: mha

Date: 2009-04-24 12:49:06 +0100 (Fri, 24 Apr 2009)

New Revision: 7819

Revision summary: http://svn.pgadmin.org/cgi-bin/viewcvs.cgi/?rev=7819view=rev

Log:
Remove sslverify again, since it's been removed from libpq after 8.4beta1



Modified:
   trunk/pgadmin3/pgadmin/db/pgConn.cpp
   trunk/pgadmin3/pgadmin/debugger/dbgPgConn.cpp
   trunk/pgadmin3/pgadmin/debugger/debugger.cpp
   trunk/pgadmin3/pgadmin/dlg/dlgSelectConnection.cpp
   trunk/pgadmin3/pgadmin/dlg/dlgServer.cpp
   trunk/pgadmin3/pgadmin/frm/frmBackup.cpp
   trunk/pgadmin3/pgadmin/frm/frmBackupGlobals.cpp
   trunk/pgadmin3/pgadmin/frm/frmBackupServer.cpp
   trunk/pgadmin3/pgadmin/frm/frmMain.cpp
   trunk/pgadmin3/pgadmin/frm/frmRestore.cpp
   trunk/pgadmin3/pgadmin/frm/plugins.cpp
   trunk/pgadmin3/pgadmin/include/db/pgConn.h
   trunk/pgadmin3/pgadmin/include/debugger/dbgConnProp.h
   trunk/pgadmin3/pgadmin/include/debugger/dbgPgConn.h
   trunk/pgadmin3/pgadmin/include/dlg/dlgSelectConnection.h
   trunk/pgadmin3/pgadmin/include/schema/pgServer.h
   trunk/pgadmin3/pgadmin/include/utils/sysSettings.h
   trunk/pgadmin3/pgadmin/pgAdmin3.cpp
   trunk/pgadmin3/pgadmin/plugins.ini
   trunk/pgadmin3/pgadmin/schema/pgServer.cpp
   trunk/pgadmin3/pgadmin/ui/dlgServer.xrc
   trunk/pgadmin3/pgadmin/ui/xrcDialogs.cpp

-- 
Sent via pgadmin-hackers mailing list (pgadmin-hackers@postgresql.org)
To make changes to your subscription:
http://www.postgresql.org/mailpref/pgadmin-hackers


[pgadmin-hackers] SVN Commit by mha: r7821 - in trunk/pgadmin3/pgadmin: . db debugger dlg schema

2009-04-24 Thread svn
Author: mha

Date: 2009-04-24 13:38:54 +0100 (Fri, 24 Apr 2009)

New Revision: 7821

Revision summary: http://svn.pgadmin.org/cgi-bin/viewcvs.cgi/?rev=7821view=rev

Log:
Support verify-ca and verify-full as sslmode values, new in 8.4



Modified:
   trunk/pgadmin3/pgadmin/db/pgConn.cpp
   trunk/pgadmin3/pgadmin/debugger/dbgPgConn.cpp
   trunk/pgadmin3/pgadmin/dlg/dlgServer.cpp
   trunk/pgadmin3/pgadmin/pgAdmin3.cpp
   trunk/pgadmin3/pgadmin/schema/pgServer.cpp

-- 
Sent via pgadmin-hackers mailing list (pgadmin-hackers@postgresql.org)
To make changes to your subscription:
http://www.postgresql.org/mailpref/pgadmin-hackers


Re: [pgadmin-hackers] Feedback from recent training

2009-04-24 Thread Guillaume Lelarge
Le vendredi 24 avril 2009 à 10:47:41, Dave Page a écrit :
 [...]
  * Want to be able to use SERIAL and BIGSERIAL types for columns

 You can, though I see they're at the end of the list (probably because
 it lists types, array types and then the pseudo-types are added).


Perhaps we should put them on top of the list. Really needed in GTK because 
you can't type the beginning of the type in the combobox. That's something 
that would be great to have.

  * Want to be able to specify ConnectionLimit for users via dialog

 You can, though that may be new in 1.10 iirc.


That's right, it's one of the 1.10 new functionalities.


-- 
Guillaume.
 http://www.postgresqlfr.org
 http://dalibo.com

-- 
Sent via pgadmin-hackers mailing list (pgadmin-hackers@postgresql.org)
To make changes to your subscription:
http://www.postgresql.org/mailpref/pgadmin-hackers


Re: [pgadmin-hackers] Feedback from recent training

2009-04-24 Thread Guillaume Lelarge
Le vendredi 24 avril 2009 à 09:59:30, Simon Riggs a écrit :
 * Want option to *never* put double-quotes around object names, even
 when I use an uppercase character in a name.


Seems interesting to me.

 [...]
 * Want Copy/Paste objects between schemas.


That's something already in my mind. I was also thinking about doing drag and 
drop between schemas.

 * Want Clone object, which copies object but prompts for new name.


Could also work with drag and drop, as in an explorer window.

 [...]
 * If there are 20 (N?) objects, then show that using a breakdown. e.g.
 A-C, D-G, H-M, N-S, T-V, W-Z. So when we have 100s of objects we can
 still retain sanity.


Interesting too.


-- 
Guillaume.
 http://www.postgresqlfr.org
 http://dalibo.com

-- 
Sent via pgadmin-hackers mailing list (pgadmin-hackers@postgresql.org)
To make changes to your subscription:
http://www.postgresql.org/mailpref/pgadmin-hackers


Re: [pgadmin-hackers] Feedback from recent training

2009-04-24 Thread Dave Page
On Fri, Apr 24, 2009 at 2:01 PM, Guillaume Lelarge
guilla...@lelarge.info wrote:
 Le vendredi 24 avril 2009 à 10:47:41, Dave Page a écrit :
 [...]
  * Want to be able to use SERIAL and BIGSERIAL types for columns

 You can, though I see they're at the end of the list (probably because
 it lists types, array types and then the pseudo-types are added).


 Perhaps we should put them on top of the list. Really needed in GTK because
 you can't type the beginning of the type in the combobox. That's something
 that would be great to have.

Go ahead :-)

-- 
Dave Page
EnterpriseDB UK:   http://www.enterprisedb.com

-- 
Sent via pgadmin-hackers mailing list (pgadmin-hackers@postgresql.org)
To make changes to your subscription:
http://www.postgresql.org/mailpref/pgadmin-hackers


[pgadmin-hackers] [pgAdmin III] #2: Centralize connection parameter parsing/generation

2009-04-24 Thread pgAdmin Trac
#2: Centralize connection parameter parsing/generation
-+--
Reporter:  mha   |   Owner:  dpage  
Type:  feature   |  Status:  new
Priority:  critical  |   Component:  pgadmin
 Version:  trunk |Keywords: 
Platform:  all   |  
-+--
 The code for parsing and generating connection parameters is duplicated in
 several places (both in just pgadmin and between pgadmin and the
 debugger).

 I noticed this in the number of places I had to touch to do the
 sslverify/sslmode work.

 This seems like a good candidate for refactoring to avoid making such
 mistakes again :-)

-- 
Ticket URL: http://code.pgadmin.org/trac/ticket/2
pgAdmin III http://code.pgadmin.org/trac/
pgAdmin III

-- 
Sent via pgadmin-hackers mailing list (pgadmin-hackers@postgresql.org)
To make changes to your subscription:
http://www.postgresql.org/mailpref/pgadmin-hackers


[pgadmin-hackers] Re: [pgAdmin III] #2: Centralize connection parameter parsing/generation

2009-04-24 Thread pgAdmin Trac
#2: Centralize connection parameter parsing/generation
-+--
Reporter:  mha   |   Owner:  mha 
Type:  feature   |  Status:  assigned
Priority:  critical  |   Component:  pgadmin 
 Version:  trunk |Keywords:  
Platform:  all   |  
-+--
Changes (by dpage):

  * owner:  dpage = mha
  * status:  new = assigned


-- 
Ticket URL: http://code.pgadmin.org/trac/ticket/2#comment:1
pgAdmin III http://code.pgadmin.org/trac/
pgAdmin III

-- 
Sent via pgadmin-hackers mailing list (pgadmin-hackers@postgresql.org)
To make changes to your subscription:
http://www.postgresql.org/mailpref/pgadmin-hackers


[pgadmin-hackers] Re: [pgAdmin III] #2: Centralize connection parameter parsing/generation

2009-04-24 Thread pgAdmin Trac
#2: Centralize connection parameter parsing/generation
--+-
 Reporter:  mha   |   Owner:  mha 
 Type:  feature   |  Status:  assigned
 Priority:  critical  |   Milestone:  1.12
Component:  pgadmin   | Version:  trunk   
 Keywords:|Platform:  all 
--+-
Changes (by mha):

  * milestone:  = 1.12


-- 
Ticket URL: http://code.pgadmin.org/trac/ticket/2#comment:2
pgAdmin III http://code.pgadmin.org/trac/
pgAdmin III

-- 
Sent via pgadmin-hackers mailing list (pgadmin-hackers@postgresql.org)
To make changes to your subscription:
http://www.postgresql.org/mailpref/pgadmin-hackers


[pgadmin-hackers] Re: [pgAdmin III] #2: Centralize connection parameter parsing/generation

2009-04-24 Thread pgAdmin Trac
#2: Centralize connection parameter parsing/generation
-+--
 Reporter:  mha  |   Owner:  mha 
 Type:  feature  |  Status:  assigned
 Priority:  minor|   Milestone:  1.12
Component:  pgadmin  | Version:  trunk   
 Keywords:   |Platform:  all 
-+--
Changes (by mha):

  * priority:  critical = minor


-- 
Ticket URL: http://code.pgadmin.org/trac/ticket/2#comment:3
pgAdmin III http://code.pgadmin.org/trac/
pgAdmin III

-- 
Sent via pgadmin-hackers mailing list (pgadmin-hackers@postgresql.org)
To make changes to your subscription:
http://www.postgresql.org/mailpref/pgadmin-hackers


Re: [pgadmin-hackers] [pgAdmin III] #1: Minor patch for more GP options.

2009-04-24 Thread Magnus Hagander
Dickson S. Guedes wrote:
 Em Ter, 2009-04-07 às 13:24 +, pgAdmin Trac escreveu:
 Ticket URL: http://code.pgadmin.org/trac/ticket/1#comment:4
 pgAdmin III http://code.pgadmin.org/trac/
 
 Wow! Is there a trac system now? Nice! :)

Yeah.

We're still figuring out exactly how to use it, as you can see from the
lack of contents in the ticket list :-)

Let us know if you want access so you can create some tickets - we'll
just need your community login id...

//Magnus


-- 
Sent via pgadmin-hackers mailing list (pgadmin-hackers@postgresql.org)
To make changes to your subscription:
http://www.postgresql.org/mailpref/pgadmin-hackers


[pgadmin-hackers] SVN Commit by hiroshi: r7822 - trunk/pgadmin3/i18n/ja_JP

2009-04-24 Thread svn
Author: hiroshi

Date: 2009-04-24 17:03:33 +0100 (Fri, 24 Apr 2009)

New Revision: 7822

Revision summary: http://svn.pgadmin.org/cgi-bin/viewcvs.cgi/?rev=7822view=rev

Log:
some adjustments(ja_JP).



Modified:
   trunk/pgadmin3/i18n/ja_JP/pgadmin3.mo
   trunk/pgadmin3/i18n/ja_JP/pgadmin3.po

-- 
Sent via pgadmin-hackers mailing list (pgadmin-hackers@postgresql.org)
To make changes to your subscription:
http://www.postgresql.org/mailpref/pgadmin-hackers