[pgadmin-hackers] Translation to Farsi

2010-09-15 Thread Amir Abdollahi
Hello

I am translating pgAdmin to Farsi and it's almost done 50 percent. I like to 
send it here so everyone can use it.

Thanks




  

[pgadmin-hackers] pgAdmin III commit: Fix a possible crash on Solaris when closing the se

2010-09-15 Thread Dave Page
Fix a possible crash on Solaris when closing the server status window

Branch
--
REL-1_12_0_PATCHES

Details
---
http://git.postgresql.org/gitweb?p=pgadmin3.git;a=commitdiff;h=87d8899dffdc046c526acc7486649661f2cc5dae
Author: Ashesh Vashi ashesh.va...@enterprisedb.com

Modified Files
--
CHANGELOG |6 --
pgadmin/frm/frmStatus.cpp |2 +-
2 files changed, 5 insertions(+), 3 deletions(-)


-- 
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 commit: Fix a possible crash on Solaris when cancelling a d

2010-09-15 Thread Dave Page
Fix a possible crash on Solaris when cancelling a debugging operation

Branch
--
REL-1_12_0_PATCHES

Details
---
http://git.postgresql.org/gitweb?p=pgadmin3.git;a=commitdiff;h=6df656c41f2821ed42cb90cde376a872eb2a4dbd
Author: Ashesh Vashi ashesh.va...@enterprisedb.com

Modified Files
--
CHANGELOG  |2 ++
pgadmin/debugger/ctlCodeWindow.cpp |2 +-
2 files changed, 3 insertions(+), 1 deletions(-)


-- 
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 commit: Fix a possible crash on Solaris when cancelling a d

2010-09-15 Thread Dave Page
Fix a possible crash on Solaris when cancelling a debugging operation

Branch
--
master

Details
---
http://git.postgresql.org/gitweb?p=pgadmin3.git;a=commitdiff;h=c54aefe05ff851e193fd4ff96002e28e8efeaf1f
Author: Ashesh Vashi ashesh.va...@enterprisedb.com

Modified Files
--
CHANGELOG  |2 ++
pgadmin/debugger/ctlCodeWindow.cpp |2 +-
2 files changed, 3 insertions(+), 1 deletions(-)


-- 
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 commit: Fix a possible crash on Solaris when closing the se

2010-09-15 Thread Dave Page
Fix a possible crash on Solaris when closing the server status window

Branch
--
REL-1_10_0_PATCHES

Details
---
http://git.postgresql.org/gitweb?p=pgadmin3.git;a=commitdiff;h=d8a9c395567e94e3c3c89cdf582f2badc57a9c57
Author: Ashesh Vashi ashesh.va...@enterprisedb.com

Modified Files
--
pgadmin/frm/frmStatus.cpp |2 +-
1 files changed, 1 insertions(+), 1 deletions(-)


-- 
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 commit: Fix a possible crash on Solaris when closing the se

2010-09-15 Thread Dave Page
Fix a possible crash on Solaris when closing the server status window

Branch
--
master

Details
---
http://git.postgresql.org/gitweb?p=pgadmin3.git;a=commitdiff;h=5683900a83c8fad1c0940e3c3e967209c18b9a84
Author: Ashesh Vashi ashesh.va...@enterprisedb.com

Modified Files
--
CHANGELOG |2 ++
pgadmin/frm/frmStatus.cpp |2 +-
2 files changed, 3 insertions(+), 1 deletions(-)


-- 
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 commit: Fix a possible crash on Solaris when cancelling a d

2010-09-15 Thread Dave Page
Fix a possible crash on Solaris when cancelling a debugging operation

Branch
--
REL-1_10_0_PATCHES

Details
---
http://git.postgresql.org/gitweb?p=pgadmin3.git;a=commitdiff;h=b345487c051a0706e4bcd145755346ae492a4d76
Author: Ashesh Vashi ashesh.va...@enterprisedb.com

Modified Files
--
pgadmin/debugger/ctlCodeWindow.cpp |2 +-
1 files changed, 1 insertions(+), 1 deletions(-)


-- 
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 commit: Make sure we don't ask to save if there's no change

2010-09-15 Thread Guillaume Lelarge
Make sure we don't ask to save if there's no changes

We need to call the OnCellChanges() method, to check if there is a change in
a cell of the row. The issue this patch fix is when a user enters in edit mode,
changes nothing and hits Enter or Escape. If he quits the edit grid window
immediately after that, pgAdmin used to ask about saving modified datas. This
patch adds the code to check if the message is really useful.

Report from Steffen Kuhn.

Branch
--
master

Details
---
http://git.postgresql.org/gitweb?p=pgadmin3.git;a=commitdiff;h=eef24219729f61a3a96d4b12b5f42b2eb503750c

Modified Files
--
pgadmin/frm/frmEditGrid.cpp |9 +
1 files changed, 9 insertions(+), 0 deletions(-)


-- 
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 commit: Make sure we don't ask to save if there's no change

2010-09-15 Thread Guillaume Lelarge
Make sure we don't ask to save if there's no changes

We need to call the OnCellChanges() method, to check if there is a change in
a cell of the row. The issue this patch fix is when a user enters in edit mode,
changes nothing and hits Enter or Escape. If he quits the edit grid window
immediately after that, pgAdmin used to ask about saving modified datas. This
patch adds the code to check if the message is really useful.

Report from Steffen Kuhn.

Branch
--
REL-1_12_0_PATCHES

Details
---
http://git.postgresql.org/gitweb?p=pgadmin3.git;a=commitdiff;h=b9e7b4e328eab455dd07cf190fbaba85751771c3

Modified Files
--
pgadmin/frm/frmEditGrid.cpp |9 +
1 files changed, 9 insertions(+), 0 deletions(-)


-- 
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] Save Query in frmEditGrid

2010-09-15 Thread Guillaume Lelarge
Le 15/09/2010 06:35, Steffen Kuhn a écrit :
 Hi Guillaume,
 
 I tested it a bit. Your patch solves the issue: open editor, bringing a
 cell in editmode, do not change and then close the editor.
 - Really editing some values and then pressing 'ESC' does the same as
 'Undo' with the new behaviour,
 - Really editing a value and the getting editmode from another value or
 the same value in the same row does save without query on close
 (which is the same behaviour as with a row change).
 

So, everything's good.

Commited. Just in time for 1.12 packaging.


-- 
Guillaume
 http://www.postgresql.fr
 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] pgAdmin III commit: Update farsi's translation, per Amir Abdollahi.

2010-09-15 Thread Guillaume Lelarge
Update farsi's translation, per Amir Abdollahi.

Branch
--
master

Details
---
http://git.postgresql.org/gitweb?p=pgadmin3.git;a=commitdiff;h=7330ef71775de8f1f61b82246f6b52e2f5030fd0
Author: Amir Abdollahi amirabd2...@yahoo.com

Modified Files
--
i18n/fa_IR/pgadmin3.mo |  Bin 54858 - 113707 bytes
i18n/fa_IR/pgadmin3.po |31319 
2 files changed, 15980 insertions(+), 15339 deletions(-)


-- 
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 Farsi (fa_IR)

2010-09-15 Thread Guillaume Lelarge
Le 15/09/2010 13:50, Amir Abdollahi a écrit :
 [...]
 This is translation of pgAdmin to Farsi (fa_IR) and it's done up to 46 
 percent!
 

Thanks. I commited your work on the master branch.

I'll add you as the maintainer of this translation.

Keep up the good work :)


-- 
Guillaume
 http://www.postgresql.fr
 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] pgAdmin III commit: Get rid of some translations in the installer

2010-09-15 Thread Guillaume Lelarge
Get rid of some translations in the installer

7 translations are now out of date. Still need to change the website.

Branch
--
master

Details
---
http://git.postgresql.org/gitweb?p=pgadmin3.git;a=commitdiff;h=d633f43268a8895efa649e85012f1312e62c90b9

Modified Files
--
i18n/Makefile.am   |2 +-
pkg/win32/src/i18ndata.wxs |   28 ++--
pkg/win32/src/i18nrefs.wxs |   14 +++---
3 files changed, 22 insertions(+), 22 deletions(-)


-- 
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 commit: Get rid of some translations in the installer

2010-09-15 Thread Guillaume Lelarge
Get rid of some translations in the installer

7 translations are now out of date. Still need to change the website.

Branch
--
REL-1_12_0_PATCHES

Details
---
http://git.postgresql.org/gitweb?p=pgadmin3.git;a=commitdiff;h=af73988bee3b472bbeb57a4f132f50e028b9451c

Modified Files
--
i18n/Makefile.am   |2 +-
pkg/win32/src/i18ndata.wxs |   28 ++--
pkg/win32/src/i18nrefs.wxs |   14 +++---
3 files changed, 22 insertions(+), 22 deletions(-)


-- 
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 website commit: 7 newly outdated translations.

2010-09-15 Thread Guillaume Lelarge
7 newly outdated translations.

Branch
--
master

Details
---
http://git.postgresql.org/gitweb?p=pgadmin-www.git;a=commitdiff;h=167a8e2e0ebcda8920290420af21d90ab70c1757

Modified Files
--
translation/config.php |   14 +++---
1 files changed, 7 insertions(+), 7 deletions(-)


-- 
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 website commit: New maintainer for the farsi language.

2010-09-15 Thread Guillaume Lelarge
New maintainer for the farsi language.

Branch
--
master

Details
---
http://git.postgresql.org/gitweb?p=pgadmin-www.git;a=commitdiff;h=c3d89951169a58cd1e7e04a23aef3305737d74f8

Modified Files
--
translation/config.php |2 +-
1 files changed, 1 insertions(+), 1 deletions(-)


-- 
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 commit: Select old values when connecting to another server

2010-09-15 Thread Guillaume Lelarge
Select old values when connecting to another server

When a user selects another server, the database and user comboboxes are
cleared and filled again with the new values. The last selected item for both
comboboxes should be selected if they are still present.

Implements #232.

Branch
--
master

Details
---
http://git.postgresql.org/gitweb?p=pgadmin3.git;a=commitdiff;h=87ed990d090dc4994a7f15ecd64c0a191d81b86a

Modified Files
--
CHANGELOG   |1 +
pgadmin/dlg/dlgSelectConnection.cpp |   22 --
2 files changed, 21 insertions(+), 2 deletions(-)


-- 
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] #232: Smart defaults for new connection in query tool

2010-09-15 Thread pgAdmin Trac
#232: Smart defaults for new connection in query tool
--+-
  Reporter:  brsa |   Owner:  gleu 
  Type:  feature  |  Status:  closed   
  Priority:  minor|   Milestone:  1.14 
 Component:  pgadmin  | Version:  trunk
Resolution:  fixed|Keywords:  querytool
  Platform:  all  |  
--+-
Changes (by gleu):

  * status:  assigned = closed
  * platform:  = all
  * resolution:  = fixed
  * milestone:  = 1.14


-- 
Ticket URL: http://code.pgadmin.org/trac/ticket/232#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