Re: [pgadmin-hackers] Re: PATCH: The linker complains about the '-bundle_loader "../../src/backend/postgres"' against PostgreSQL 8.4 on OSX

2012-05-08 Thread Dave Page
On Mon, May 7, 2012 at 12:32 PM, Heikki Linnakangas
 wrote:
> On 07.05.2012 13:54, Dave Page wrote:
>>
>> On Mon, May 7, 2012 at 11:46 AM, Heikki Linnakangas
>>   wrote:
>>>
>>> On 07.05.2012 13:39, Dave Page wrote:

 Can you create a "PRE-9_2" branch for the current architecture, and
 apply Ashesh's patch to that if you think it's a reasonable fix
 please? We can then move the older builds to that branch. Then the 9.2
 changes can go on master.
>>>
>>>
>>> By current architecture, do you mean what we had in the CVS, or as the
>>> code
>>> stands in the current tip of the git repository? I agree we should create
>>> a
>>> branch like that, but I want to make sure we agree on where it should be
>>> branched off. I've rearranged and cleaned up the code quite extensively
>>> in
>>> git master already, and I'm not sure if we want to include all that in
>>> back-branches. On one hand, I've fixed a lot of bugs with the changes, so
>>> it
>>> would be nice to include those fixes, but OTOH, perhaps we shouldn't risk
>>> destabilizing back-branches.
>>
>>
>> What's at the current tip. I'm happy with those changes in the back
>> branches - they're really mostly just bug fixes and relatively minor
>> architectural tweaks as I understood them. It's the move to a single
>> library that I don't want in the back branches.
>
>
> Ok. I created branch PRE_9_2, and committed Ashesh's patch there. In master,
> I committed a patch to merge pldbgapi.so and plugin_debugger.so.

Thanks Heikki.

Ashesh; can you please update the back branch builds to use that
branch of the debugger code? Feel free to ask Dhiraj/Akshay/Dharam to
do it as I know you and Sachin are pretty busy right now.

Thanks.

-- 
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] Re: PATCH: The linker complains about the '-bundle_loader "../../src/backend/postgres"' against PostgreSQL 8.4 on OSX

2012-05-08 Thread Sachin Srivastava
> Thanks Heikki.
>
> Ashesh; can you please update the back branch builds to use that
> branch of the debugger code? Feel free to ask Dhiraj/Akshay/Dharam to
> do it as I know you and Sachin are pretty busy right now.
>

Done.


>
> Thanks.
>
> --
> 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
>



-- 
Regards,
Sachin Srivastava
EnterpriseDB, India


[pgadmin-hackers] pgAdmin III commit: Filling the cbOwner combobox happens in dlgSecurity

2012-05-08 Thread Guillaume Lelarge
Filling the cbOwner combobox happens in dlgSecurityProperty now

... instead of all dialogs inheriting from dlgSecurityProperty. It's simpler
this way, and more maintainable.

It was already working this way with dlgProperty.

Branch
--
master

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

Modified Files
--
pgadmin/dlg/dlgDatabase.cpp   |6 --
pgadmin/dlg/dlgExtTable.cpp   |3 ---
pgadmin/dlg/dlgForeignDataWrapper.cpp |6 --
pgadmin/dlg/dlgForeignServer.cpp  |6 --
pgadmin/dlg/dlgFunction.cpp   |5 -
pgadmin/dlg/dlgLanguage.cpp   |4 
pgadmin/dlg/dlgPackage.cpp|3 ---
pgadmin/dlg/dlgProperty.cpp   |8 
pgadmin/dlg/dlgSchema.cpp |5 -
pgadmin/dlg/dlgSequence.cpp   |5 -
pgadmin/dlg/dlgTable.cpp  |4 
pgadmin/dlg/dlgTablespace.cpp |5 -
pgadmin/dlg/dlgType.cpp   |1 -
pgadmin/dlg/dlgView.cpp   |5 -
14 files changed, 8 insertions(+), 58 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] Fixed building of Docs project on Windows

2012-05-08 Thread Akshay Joshi
Hi Dave

When we try to build Docs on Windows it gives an error for conf.py file. To
fix this issue I have created an vb script which will do the following
things

   - Read the version from pgadmin/include/version.h
   - Copy the en_US/conf.py.in file as en_US/conf.py
   - Replace the Long and Short version in conf.py file

Along with that I have also added a prebuild rule to the docs VC++ project.
Attached is the patch file.
Please review it and if it sounds good to you than commit it.

-- 
*Akshay Joshi
Senior Software Engineer
EnterpriseDB Corporation
The Enterprise PostgreSQL Company
Phone: +91 20-3058-9522
Mobile: +91 976-788-8246*


Fixed_builddocs_windows.patch
Description: Binary data

-- 
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 style

2012-05-08 Thread Guillaume Lelarge
make style

Branch
--
master

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

Modified Files
--
pgadmin/ctl/explainCanvas.cpp |8 
pgadmin/dlg/dlgIndex.cpp  |6 +++---
2 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 III commit: Review of aggregate object

2012-05-08 Thread Guillaume Lelarge
Review of aggregate object

and adding priviledge support.

Branch
--
master

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

Modified Files
--
CHANGELOG|1 +
pgadmin/dlg/dlgAggregate.cpp |  193 ++
pgadmin/dlg/dlgLanguage.cpp  |6 +-
pgadmin/include/dlg/dlgAggregate.h   |   21 +++-
pgadmin/include/schema/pgAggregate.h |   50 +-
pgadmin/schema/pgAggregate.cpp   |  104 +--
6 files changed, 245 insertions(+), 130 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: Create the Sphinx conf.py file when building the do

2012-05-08 Thread Dave Page
Create the Sphinx conf.py file when building the docs on Windows.

Branch
--
master

Details
---
http://git.postgresql.org/gitweb?p=pgadmin3.git;a=commitdiff;h=a006a21473fa9d19a1e50e9e00520118583ab003
Author: Akshay Joshi 

Modified Files
--
Makefile.am |1 +
docs/Docs.vcproj|4 ++--
docs/createConf.vbs |   29 +
3 files changed, 32 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


Re: [pgadmin-hackers] Fixed building of Docs project on Windows

2012-05-08 Thread Dave Page
Thanks - patch applied.

On Tue, May 8, 2012 at 2:35 PM, Akshay Joshi
 wrote:
> Hi Dave
>
> When we try to build Docs on Windows it gives an error for conf.py file. To
> fix this issue I have created an vb script which will do the following
> things
>
> Read the version from pgadmin/include/version.h
> Copy the en_US/conf.py.in file as en_US/conf.py
> Replace the Long and Short version in conf.py file
>
> Along with that I have also added a prebuild rule to the docs VC++ project.
> Attached is the patch file.
> Please review it and if it sounds good to you than commit it.
>
> --
> Akshay Joshi
> Senior Software Engineer
> EnterpriseDB Corporation
> The Enterprise PostgreSQL Company
> Phone: +91 20-3058-9522
> Mobile: +91 976-788-8246
>
>
>
> --
> Sent via pgadmin-hackers mailing list (pgadmin-hackers@postgresql.org)
> To make changes to your subscription:
> http://www.postgresql.org/mailpref/pgadmin-hackers
>



-- 
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] French & Czech docs & translations

2012-05-08 Thread Dave Page
Hi Guillaume,

The French and Czech docs for pgAdmin haven't been converted to RST
format. Should we drop them, as they're obviously not that maintained
at the moment?

Also, do you want to trim/expand the included translation list before
I build the beta on Thursday?

-- 
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] French & Czech docs & translations

2012-05-08 Thread Guillaume Lelarge
Hi Dave,

On Tue, 2012-05-08 at 19:27 +0100, Dave Page wrote:
> Hi Guillaume,
> 
> The French and Czech docs for pgAdmin haven't been converted to RST
> format. Should we drop them, as they're obviously not that maintained
> at the moment?
> 

Well, I won't lose time to work on that right now. I'll translate the
new documentation once it'll be available, but I'm not going to convert
my old translation to the new format.

> Also, do you want to trim/expand the included translation list before
> I build the beta on Thursday?
> 

Nope. I'll mail our translators sometime later.


-- 
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 - access through proxy

2012-05-08 Thread Ciro Martins


Hello,

I am a teacher at a Portuguese university, and we are using pgadmin to 
manage our Postgre databases.
We would like to access the Postgre Server through a proxy. However, we 
could not find any option in the pgadmin to configure a proxy address in 
version 1.14. Since version 1.4 had that option, we would like to know 
if there exists any way to do this in the last 1.14 version of pgadmin.


Thanks in advance for your help and support.

Best regards,
Ciro Martins


Re: [pgadmin-hackers] PGAdmin - access through proxy

2012-05-08 Thread Guillaume Lelarge
On Tue, 2012-05-08 at 22:16 +0100, Ciro Martins wrote:
> Hello,
> 
> I am a teacher at a Portuguese university, and we are using pgadmin to 
> manage our Postgre databases.
> We would like to access the Postgre Server through a proxy. However, we 
> could not find any option in the pgadmin to configure a proxy address in 
> version 1.14. Since version 1.4 had that option, we would like to know 
> if there exists any way to do this in the last 1.14 version of pgadmin.
> 

Not sure which option you're talking about, but we try not to remove
option. So I would be surprised if that was the case.


-- 
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