Re: [pgadmin-hackers] Fixing issues between objects and properties dialogs

2011-08-11 Thread Dave Page
On Wed, Aug 10, 2011 at 11:06 PM, Guillaume Lelarge
guilla...@lelarge.info wrote:
 On Tue, 2011-08-09 at 00:30 +0200, Guillaume Lelarge wrote:
 On Sun, 2011-07-24 at 15:09 +0100, Dave Page wrote:
  On Sun, Jul 24, 2011 at 2:23 PM, Guillaume Lelarge
  guilla...@lelarge.info wrote:
   On Sun, 2011-07-24 at 14:11 +0200, Guillaume Lelarge wrote:
   On Sun, 2011-07-24 at 12:58 +0100, Dave Page wrote:
The former fix seems more appropriate. Operations in frmMain shouldn't
cause dialogues to close.
   
  
   Fine with me. That should be simpler to do.
  
Simple fix seems to be to store a pointer to the dialog in pgObject;
if not null, disallow drop, or if trying to view properties, use the
pointer to raise the existing dialogue. Clear the pointer when the
dialog is closed.
   
  
   I thought of something similar, but this is OK with me.
  
   I expect it to be quite a big patch. Should I work on 1.14 or master?
   this is surely a bug, so 1.14 should be OK. But I'm afraid this is too
   much changes to code it on a beta release. Any strong opinion on this
   matter?
  
  
   And another question. Let's say I open a table properties' dialog, and I
   try to refresh the whole database. Should it refresh everything except
   this table, or nothing and complains about properties' dialogs being
   open, preventing the object to be refreshed?
 
  Nothing. There are properties dialogues open for one or more objects
  that would be refreshed. Please close the properties dialogues and try
  again.
 

 Just a quick update. Still working on it, and I have good results so
 far. I'm now able to prevent refresh and drop (refresh for all objects,
 drop for schemas only) if an object's properties dialog is open.

 Patch attached. Obviously WIP. Not so obvious, it's dirty code (some
 wxLogError, not really efficient code, etc). But comments very welcome.


 Seems it hits final release. See attached patch. Protects against server
 or database disconnection, and browser refresh. If a user tries to open
 many times the same object properties, it will raise the previous window
 rather than opening a new one.

 I think it's pretty neat :) It's been a huge pgAdmin's issue for a long
 time.

 Any comments before I commit it?

It's too late for 1.14 - that's why I said upstream it should be for
1.15 (RC1 may well be next week).

Otherwise, nice work :-)

-- 
Dave Page
Blog: http://pgsnake.blogspot.com
Twitter: @pgsnake

EnterpriseDB UK: http://www.enterprisedb.com
The Enterprise PostgreSQL Company

-- 
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] Refresh objects on Click

2011-08-11 Thread Dave Page
On Thu, Aug 11, 2011 at 4:20 AM, Vinicius Santos
vinicius.santos.li...@gmail.com wrote:
 Em 10/08/2011 07:34, Dave Page escreveu:

 Please see about fixing those issues, and then I can give it a more in
 depth review.

 I fixed the items in question, and performed some more tests.

 Apparently it's OK.

 If any bugs or any suggestions, please let me know.

Looking better :-)

- On frmOptions, the combo box to select the refresh mode should be to
the right of the label, not underneath. The sizing should following
the layout of other tabs.

- In Refresh object on click mode, if I click a table, and then
click the parent database, all nodes below the Schemas node are
collapsed.

- Please use an actual declared enum for the setting, so we can avoid
using magic numbers in execSelChange() - eg. if
(settingRefreshOnClick == REFRESH_OBJECT_ONLY)

-- 
Dave Page
Blog: http://pgsnake.blogspot.com
Twitter: @pgsnake

EnterpriseDB UK: http://www.enterprisedb.com
The Enterprise PostgreSQL Company

-- 
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] pgAgent commit: Add missing includes, needed on Solaris.

2011-08-11 Thread Dave Page
Add missing includes, needed on Solaris.

Branch
--
master

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

Modified Files
--
job.cpp |3 +++
1 files changed, 3 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] Fixing issues between objects and properties dialogs

2011-08-11 Thread Guillaume Lelarge
On Thu, 2011-08-11 at 08:52 +0100, Dave Page wrote:
 On Wed, Aug 10, 2011 at 11:06 PM, Guillaume Lelarge
 guilla...@lelarge.info wrote:
  On Tue, 2011-08-09 at 00:30 +0200, Guillaume Lelarge wrote:
  On Sun, 2011-07-24 at 15:09 +0100, Dave Page wrote:
   On Sun, Jul 24, 2011 at 2:23 PM, Guillaume Lelarge
   guilla...@lelarge.info wrote:
On Sun, 2011-07-24 at 14:11 +0200, Guillaume Lelarge wrote:
On Sun, 2011-07-24 at 12:58 +0100, Dave Page wrote:
 The former fix seems more appropriate. Operations in frmMain 
 shouldn't
 cause dialogues to close.

   
Fine with me. That should be simpler to do.
   
 Simple fix seems to be to store a pointer to the dialog in pgObject;
 if not null, disallow drop, or if trying to view properties, use the
 pointer to raise the existing dialogue. Clear the pointer when the
 dialog is closed.

   
I thought of something similar, but this is OK with me.
   
I expect it to be quite a big patch. Should I work on 1.14 or master?
this is surely a bug, so 1.14 should be OK. But I'm afraid this is too
much changes to code it on a beta release. Any strong opinion on this
matter?
   
   
And another question. Let's say I open a table properties' dialog, and 
I
try to refresh the whole database. Should it refresh everything except
this table, or nothing and complains about properties' dialogs being
open, preventing the object to be refreshed?
  
   Nothing. There are properties dialogues open for one or more objects
   that would be refreshed. Please close the properties dialogues and try
   again.
  
 
  Just a quick update. Still working on it, and I have good results so
  far. I'm now able to prevent refresh and drop (refresh for all objects,
  drop for schemas only) if an object's properties dialog is open.
 
  Patch attached. Obviously WIP. Not so obvious, it's dirty code (some
  wxLogError, not really efficient code, etc). But comments very welcome.
 
 
  Seems it hits final release. See attached patch. Protects against server
  or database disconnection, and browser refresh. If a user tries to open
  many times the same object properties, it will raise the previous window
  rather than opening a new one.
 
  I think it's pretty neat :) It's been a huge pgAdmin's issue for a long
  time.
 
  Any comments before I commit it?
 
 It's too late for 1.14 - that's why I said upstream it should be for
 1.15 (RC1 may well be next week).
 

Sure, I wasn't gonna commit it on 1.14.

If RC1 may be next week, I really have to send a reminder to our
translators.

 Otherwise, nice work :-)
 

Thanks. Forgot to tell that it also prevents drop when the properties
dialog is open.


-- 
Guillaume
  http://blog.guillaume.lelarge.info
  http://www.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: Support for multimodel diagrams in the database des

2011-08-11 Thread Guillaume Lelarge
Support for multimodel diagrams in the database designer

Branch
--
master

Details
---
http://git.postgresql.org/gitweb?p=pgadmin3.git;a=commitdiff;h=f75720da6efa96b6518a6a3314a3bd3382040c17
Author: Luis Ochoa ziul1...@gmail.com

Modified Files
--
CHANGELOG  |2 +
pgadmin/dd/dditems/figures/ddColumnFigure.cpp  |   79 ++-
pgadmin/dd/dditems/figures/ddColumnKindIcon.cpp|4 +-
pgadmin/dd/dditems/figures/ddColumnOptionIcon.cpp  |2 +-
.../dd/dditems/figures/ddRelationshipFigure.cpp|  134 --
pgadmin/dd/dditems/figures/ddRelationshipItem.cpp  |3 +-
.../dd/dditems/figures/ddRelationshipTerminal.cpp  |2 +-
pgadmin/dd/dditems/figures/ddTableFigure.cpp   |  414 +-
.../dd/dditems/figures/ddTextTableItemFigure.cpp   |   88 +++-
pgadmin/dd/dditems/figures/xml/ddXmlStorage.cpp|  588 +++-
.../dd/dditems/handles/ddAddColButtonHandle.cpp|6 +-
pgadmin/dd/dditems/handles/ddAddFkButtonHandle.cpp |   12 +-
.../dditems/handles/ddMinMaxTableButtonHandle.cpp  |4 +-
.../dditems/handles/ddRemoveTableButtonHandle.cpp  |   41 +-
pgadmin/dd/dditems/handles/ddScrollBarHandle.cpp   |   34 +-
.../dd/dditems/handles/ddSouthTableSizeHandle.cpp  |   20 +-
pgadmin/dd/dditems/locators/ddAddColLocator.cpp|6 +-
pgadmin/dd/dditems/locators/ddAddFkLocator.cpp |6 +-
.../dd/dditems/locators/ddMinMaxTableLocator.cpp   |6 +-
.../dd/dditems/locators/ddRemoveTableLocator.cpp   |6 +-
.../dditems/locators/ddScrollBarTableLocator.cpp   |6 +-
.../dd/dditems/locators/ddTableBottomLocator.cpp   |6 +-
pgadmin/dd/dditems/tools/ddColumnFigureTool.cpp|   24 +-
pgadmin/dd/dditems/tools/ddColumnTextTool.cpp  |   32 +-
.../dd/dditems/utilities/ddSelectKindFksDialog.cpp |   16 +
pgadmin/dd/ddmodel/ddBrowserDataContainer.cpp  |   42 ++
pgadmin/dd/ddmodel/ddDatabaseDesign.cpp|  339 +---
pgadmin/dd/ddmodel/ddDrawingEditor.cpp |  288 +-
pgadmin/dd/ddmodel/ddDrawingView.cpp   |  147 ++---
pgadmin/dd/ddmodel/ddModelBrowser.cpp  |  114 
pgadmin/dd/ddmodel/ddTextEditor.cpp|   66 ---
pgadmin/dd/ddmodel/module.mk   |3 +-
.../wxhotdraw/connectors/wxhdChopBoxConnector.cpp  |   28 +-
pgadmin/dd/wxhotdraw/connectors/wxhdIConnector.cpp |   14 +-
.../wxhotdraw/connectors/wxhdLocatorConnector.cpp  |   20 +-
.../connectors/wxhdStickyRectangleConnector.cpp|   14 +-
.../defaultAttributes/wxhdFontAttribute.cpp|4 +-
.../dd/wxhotdraw/figures/wxhdAbstractFigure.cpp|   40 +-
.../wxhotdraw/figures/wxhdAbstractMenuFigure.cpp   |4 +-
pgadmin/dd/wxhotdraw/figures/wxhdBitmapFigure.cpp  |3 +-
.../dd/wxhotdraw/figures/wxhdCompositeFigure.cpp   |   92 +++-
pgadmin/dd/wxhotdraw/figures/wxhdIFigure.cpp   |   48 +-
.../dd/wxhotdraw/figures/wxhdLineConnection.cpp|   85 ++--
.../dd/wxhotdraw/figures/wxhdPolyLineFigure.cpp|  285 +++
.../dd/wxhotdraw/figures/wxhdRectangleFigure.cpp   |6 +-
.../dd/wxhotdraw/figures/wxhdSimpleTextFigure.cpp  |   17 +-
pgadmin/dd/wxhotdraw/handles/wxhdButtonHandle.cpp  |   10 +-
.../handles/wxhdChangeConnectionEndHandle.cpp  |8 +-
.../handles/wxhdChangeConnectionHandle.cpp |   30 +-
.../handles/wxhdChangeConnectionStartHandle.cpp|8 +-
pgadmin/dd/wxhotdraw/handles/wxhdIHandle.cpp   |8 +-
.../wxhotdraw/handles/wxhdLineConnectionHandle.cpp |9 +-
pgadmin/dd/wxhotdraw/handles/wxhdLocatorHandle.cpp |4 +-
.../dd/wxhotdraw/handles/wxhdPolyLineHandle.cpp|   31 +-
.../dd/wxhotdraw/locators/wxhdPolyLineLocator.cpp  |   18 +-
pgadmin/dd/wxhotdraw/main/wxhdDrawing.cpp  |  120 -
pgadmin/dd/wxhotdraw/main/wxhdDrawingEditor.cpp|  280 --
pgadmin/dd/wxhotdraw/main/wxhdDrawingView.cpp  |  187 ++-
pgadmin/dd/wxhotdraw/tools/wxhdAbstractTool.cpp|8 +-
pgadmin/dd/wxhotdraw/tools/wxhdCanvasMenuTool.cpp  |   23 +-
.../dd/wxhotdraw/tools/wxhdCompositeFigureTool.cpp |   24 +-
.../wxhotdraw/tools/wxhdConnectionCreationTool.cpp |   57 +-
pgadmin/dd/wxhotdraw/tools/wxhdCreationTool.cpp|   26 +-
.../dd/wxhotdraw/tools/wxhdDragCreationTool.cpp|6 +-
pgadmin/dd/wxhotdraw/tools/wxhdDragTrackerTool.cpp |   18 +-
pgadmin/dd/wxhotdraw/tools/wxhdFigureTool.cpp  |4 +-
.../dd/wxhotdraw/tools/wxhdHandleTrackerTool.cpp   |   11 +-
pgadmin/dd/wxhotdraw/tools/wxhdITool.cpp   |4 +-
pgadmin/dd/wxhotdraw/tools/wxhdMenuTool.cpp|   20 +-
.../dd/wxhotdraw/tools/wxhdPolyLineFigureTool.cpp  |   19 +-
pgadmin/dd/wxhotdraw/tools/wxhdSelectAreaTool.cpp  |   33 +-
pgadmin/dd/wxhotdraw/tools/wxhdSelectionTool.cpp   |   31 +-
pgadmin/dd/wxhotdraw/tools/wxhdSimpleTextTool.cpp  |   67 ++--
pgadmin/dd/wxhotdraw/utilities/module.mk   |4 +-
pgadmin/dd/wxhotdraw/utilities/wxhdGeometry.cpp|   12 +-
.../dd/wxhotdraw/utilities/wxhdMultiPosRect.cpp|  215 

[pgadmin-hackers] pgAdmin III commit: Prevent refreshing or dropping an object

2011-08-11 Thread Guillaume Lelarge
Prevent refreshing or dropping an object

... when its property window is opened.

Should work with server disconnection, database disconnection, and objects
refresh, and objects drop. If an object's properties window is already opened, 
it'll raise this
window, and not open another one.

Per many requests, last one being from Bogdan Timofte.

Branch
--
master

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

Modified Files
--
CHANGELOG |2 +
pgadmin/dlg/dlgProperty.cpp   |   59 --
pgadmin/frm/events.cpp|7 +++
pgadmin/frm/frmMain.cpp   |  101 +
pgadmin/include/dlg/dlgProperty.h |1 +
pgadmin/include/schema/pgObject.h |9 +++
pgadmin/schema/pgDatabase.cpp |   18 +--
pgadmin/schema/pgObject.cpp   |   33 
pgadmin/schema/pgSchema.cpp   |4 +-
pgadmin/schema/pgServer.cpp   |   20 ++--
10 files changed, 182 insertions(+), 72 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] Weird git messages

2011-08-11 Thread Guillaume Lelarge
Hi,

When pushing my last commit, I got some weird messages:

[master!git.pgadmin3]$ git push
Counting objects: 37, done.
Delta compression using up to 4 threads.
Compressing objects: 100% (19/19), done.
Writing objects: 100% (19/19), 3.58 KiB, done.
Total 19 (delta 18), reused 0 (delta 0)
Auto packing the repository for optimum performance.
fatal: protocol error: bad line length character: Remo
error: error in sideband demultiplexer
To ssh://g...@git.postgresql.org/pgadmin3.git
   f75720d..43693e1  master - master
error: failed to push some refs to
'ssh://g...@git.postgresql.org/pgadmin3.git'

If I try another git push, it seems good:

[master!git.pgadmin3]$ git push
Everything up-to-date

Not sure what happened here. I'm downloading the repo in another
directory to check if everything is fine. Feels weird though. Have
anyone seen these messages before?


-- 
Guillaume
  http://blog.guillaume.lelarge.info
  http://www.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] Weird git messages

2011-08-11 Thread Guillaume Lelarge
On Thu, 2011-08-11 at 22:08 +0200, Guillaume Lelarge wrote:
 Hi,
 
 When pushing my last commit, I got some weird messages:
 
 [master!git.pgadmin3]$ git push
 Counting objects: 37, done.
 Delta compression using up to 4 threads.
 Compressing objects: 100% (19/19), done.
 Writing objects: 100% (19/19), 3.58 KiB, done.
 Total 19 (delta 18), reused 0 (delta 0)
 Auto packing the repository for optimum performance.
 fatal: protocol error: bad line length character: Remo
 error: error in sideband demultiplexer
 To ssh://g...@git.postgresql.org/pgadmin3.git
f75720d..43693e1  master - master
 error: failed to push some refs to
 'ssh://g...@git.postgresql.org/pgadmin3.git'
 
 If I try another git push, it seems good:
 
 [master!git.pgadmin3]$ git push
 Everything up-to-date
 
 Not sure what happened here. I'm downloading the repo in another
 directory to check if everything is fine.

It worked. I can checkout branches, and compile on master works fine.
Guess I didn't break anything? Hope so, at least.


-- 
Guillaume
  http://blog.guillaume.lelarge.info
  http://www.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] Fixing issues between objects and properties dialogs

2011-08-11 Thread Guillaume Lelarge
On Thu, 2011-08-11 at 21:16 +0200, Guillaume Lelarge wrote:
 On Thu, 2011-08-11 at 08:52 +0100, Dave Page wrote:
  On Wed, Aug 10, 2011 at 11:06 PM, Guillaume Lelarge
  guilla...@lelarge.info wrote:
   On Tue, 2011-08-09 at 00:30 +0200, Guillaume Lelarge wrote:
   On Sun, 2011-07-24 at 15:09 +0100, Dave Page wrote:
On Sun, Jul 24, 2011 at 2:23 PM, Guillaume Lelarge
guilla...@lelarge.info wrote:
 On Sun, 2011-07-24 at 14:11 +0200, Guillaume Lelarge wrote:
 On Sun, 2011-07-24 at 12:58 +0100, Dave Page wrote:
  The former fix seems more appropriate. Operations in frmMain 
  shouldn't
  cause dialogues to close.
 

 Fine with me. That should be simpler to do.

  Simple fix seems to be to store a pointer to the dialog in 
  pgObject;
  if not null, disallow drop, or if trying to view properties, use 
  the
  pointer to raise the existing dialogue. Clear the pointer when the
  dialog is closed.
 

 I thought of something similar, but this is OK with me.

 I expect it to be quite a big patch. Should I work on 1.14 or 
 master?
 this is surely a bug, so 1.14 should be OK. But I'm afraid this is 
 too
 much changes to code it on a beta release. Any strong opinion on 
 this
 matter?


 And another question. Let's say I open a table properties' dialog, 
 and I
 try to refresh the whole database. Should it refresh everything 
 except
 this table, or nothing and complains about properties' dialogs being
 open, preventing the object to be refreshed?
   
Nothing. There are properties dialogues open for one or more objects
that would be refreshed. Please close the properties dialogues and try
again.
   
  
   Just a quick update. Still working on it, and I have good results so
   far. I'm now able to prevent refresh and drop (refresh for all objects,
   drop for schemas only) if an object's properties dialog is open.
  
   Patch attached. Obviously WIP. Not so obvious, it's dirty code (some
   wxLogError, not really efficient code, etc). But comments very welcome.
  
  
   Seems it hits final release. See attached patch. Protects against server
   or database disconnection, and browser refresh. If a user tries to open
   many times the same object properties, it will raise the previous window
   rather than opening a new one.
  
   I think it's pretty neat :) It's been a huge pgAdmin's issue for a long
   time.
  
   Any comments before I commit it?
  
  It's too late for 1.14 - that's why I said upstream it should be for
  1.15 (RC1 may well be next week).
  
 
 Sure, I wasn't gonna commit it on 1.14.
 
 If RC1 may be next week, I really have to send a reminder to our
 translators.
 
  Otherwise, nice work :-)
  
 
 Thanks. Forgot to tell that it also prevents drop when the properties
 dialog is open.
 

Commited.


-- 
Guillaume
  http://blog.guillaume.lelarge.info
  http://www.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 website commit: We're in beta3 since a few weeks.

2011-08-11 Thread Guillaume Lelarge
We're in beta3 since a few weeks.

Branch
--
master

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

Modified Files
--
download/macosx.php  |2 +-
download/source.php  |2 +-
download/windows.php |2 +-
index.php|4 ++--
4 files changed, 5 insertions(+), 5 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: Automatic stringmerge using merge script.

2011-08-11 Thread Guillaume Lelarge
Automatic stringmerge using merge script.

Branch
--
master

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

Modified Files
--
locale/cs_CZ/LC_MESSAGES/pgadmin3_website.mo |  Bin 139967 - 138854 bytes
locale/cs_CZ/LC_MESSAGES/pgadmin3_website.po |   96 +---
locale/es_SV/LC_MESSAGES/pgadmin3_website.mo |  Bin 137927 - 136873 bytes
locale/es_SV/LC_MESSAGES/pgadmin3_website.po |  104 +-
locale/fr_FR/LC_MESSAGES/pgadmin3_website.mo |  Bin 150120 - 148913 bytes
locale/fr_FR/LC_MESSAGES/pgadmin3_website.po |   96 +---
locale/zh_CN/LC_MESSAGES/pgadmin3_website.mo |  Bin 126664 - 125643 bytes
locale/zh_CN/LC_MESSAGES/pgadmin3_website.po |   94 ---
8 files changed, 205 insertions(+), 185 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: Update .pot file.

2011-08-11 Thread Guillaume Lelarge
Update .pot file.

Branch
--
master

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

Modified Files
--
locale/pgadmin3_website.pot |   72 +-
1 files changed, 29 insertions(+), 43 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: Two roadmap items done.

2011-08-11 Thread Guillaume Lelarge
Two roadmap items done.

Branch
--
master

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

Modified Files
--
development/roadmap.php |4 ++--
1 files changed, 2 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] pgAdmin III commit: Update .pot file.

2011-08-11 Thread Guillaume Lelarge
Update .pot file.

Branch
--
REL-1_14_0_PATCHES

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

Modified Files
--
pgadmin3.pot | 1048 +-
1 files changed, 526 insertions(+), 522 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: Automatic merge using stringmerge script.

2011-08-11 Thread Guillaume Lelarge
Automatic merge using stringmerge script.

Branch
--
REL-1_14_0_PATCHES

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

Modified Files
--
i18n/af_ZA/pgadmin3.po | 1049 ++--
i18n/ar_SA/pgadmin3.po | 1049 ++--
i18n/bg_BG/pgadmin3.po | 1049 ++--
i18n/ca_ES/pgadmin3.po | 1049 ++--
i18n/cs_CZ/pgadmin3.po | 1049 ++--
i18n/da_DK/pgadmin3.po | 1049 ++--
i18n/de_CH/pgadmin3.po | 1049 ++--
i18n/de_DE/pgadmin3.po |23009 
i18n/el_GR/pgadmin3.po | 1049 ++--
i18n/es_ES/pgadmin3.po | 1049 ++--
i18n/fa_IR/pgadmin3.po | 1049 ++--
i18n/fi_FI/pgadmin3.po | 1049 ++--
i18n/fr_FR/pgadmin3.po | 1049 ++--
i18n/gl_ES/pgadmin3.po | 1049 ++--
i18n/gu_IN/pgadmin3.po | 1048 ++--
i18n/hi_IN/pgadmin3.po | 1049 ++--
i18n/hr_HR/pgadmin3.po | 1049 ++--
i18n/hu_HU/pgadmin3.po | 1049 ++--
i18n/id_ID/pgadmin3.po | 1049 ++--
i18n/is_IS/pgadmin3.po | 1048 ++--
i18n/it_IT/pgadmin3.po | 1049 ++--
i18n/ja_JP/pgadmin3.po | 1049 ++--
i18n/ko_KR/pgadmin3.po | 1049 ++--
i18n/lt_LT/pgadmin3.po | 1050 ++--
i18n/lv_LV/pgadmin3.po | 1049 ++--
i18n/mk_MK/pgadmin3.po | 1048 ++--
i18n/nb_NO/pgadmin3.po | 1049 ++--
i18n/nl_NL/pgadmin3.po | 1049 ++--
i18n/pl_PL/pgadmin3.po | 1049 ++--
i18n/pt_BR/pgadmin3.po | 1049 ++--
i18n/pt_PT/pgadmin3.po | 1049 ++--
i18n/ro_RO/pgadmin3.po | 1049 ++--
i18n/ru_RU/pgadmin3.po |23062 
i18n/sk_SK/pgadmin3.po | 1049 ++--
i18n/sl_SI/pgadmin3.po | 1049 ++--
i18n/sr_RS/pgadmin3.po | 1049 ++--
i18n/sv_SE/pgadmin3.po | 1049 ++--
i18n/te_IN/pgadmin3.po | 1048 ++--
i18n/tl_PH/pgadmin3.po | 1050 ++--
i18n/tr_TR/pgadmin3.po | 1049 ++--
i18n/uk_UA/pgadmin3.po | 1048 ++--
i18n/ur_PK/pgadmin3.po | 1049 ++--
i18n/vi_VN/pgadmin3.po | 1048 ++--
i18n/zh_CN/pgadmin3.po | 1050 ++--
i18n/zh_TW/pgadmin3.po | 1050 ++--
45 files changed, 37995 insertions(+), 53181 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: Update french translation.

2011-08-11 Thread Guillaume Lelarge
Update french translation.

Branch
--
REL-1_14_0_PATCHES

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

Modified Files
--
i18n/fr_FR/pgadmin3.mo |  Bin 317918 - 317929 bytes
i18n/fr_FR/pgadmin3.po |22941 
2 files changed, 15250 insertions(+), 7691 deletions(-)


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