Re: [pgadmin-hackers] Missing make files, etc

2006-01-23 Thread Dave Page
 

 -Original Message-
 From: [EMAIL PROTECTED] 
 [mailto:[EMAIL PROTECTED] On Behalf Of Susemail
 Sent: 22 January 2006 21:08
 To: pgadmin-hackers@postgresql.org
 Subject: Re: [pgadmin-hackers] Missing make files, etc
 
 On Sunday 22 January 2006 00:53, Dave Page wrote:
   -Original Message-
   From: [EMAIL PROTECTED]
   [mailto:[EMAIL PROTECTED] On Behalf 
 Of Susemail
   Sent: 22 January 2006 09:49
   To: pgadmin-hackers@postgresql.org
   Subject: [pgadmin-hackers] Missing make files, etc
  
   I'm missing some files I need in make all:
  
 
  
   there was no /pgAdmin3.cpp in pgadmin3-1.4.1 so I downloaded
   the latest
   (Revision: 4257) and added it to the src  directory to see if
   it would work:
 
  Then you have a corrupted download/source tree - I just 
 checked and it's
  definitely there. Did you verify the integrity of the 
 tarball against my
  pgp key?
 
 No, I didn't.  I've spent the last hour looking for an 
 example of how to do 
 this.  No luck.  How do I  verify the integrity of the 
 tarball against your 
 pgp key?

wget http://www.pgadmin.org/pgp/davepage.pgp
gpg --import davepage.pgp
gpg --verify pgadmin3-1.4.1.tar.gz.sig

You want it to say something like:

gpg: Good signature from Dave Page [EMAIL PROTECTED]

Somewhere in the four or five lines of output you'll probably get.

Regards, Dave.

---(end of broadcast)---
TIP 3: Have you checked our extensive FAQ?

   http://www.postgresql.org/docs/faq


[pgadmin-hackers] bugfix: Encoding of config files

2006-01-23 Thread Magnus Hagander
Hi!


Seems the config files are read as ASCII but written as UTF8. I don't
think you'd normally see non-ascii characters in the values, but I
definitly have them in the comments somewhere. And things should at
least be consistent.

Attached patch reads the file as UTF8, and doesn't change the writing.

//Magnus


config_file_encoding.patch
Description: config_file_encoding.patch

---(end of broadcast)---
TIP 9: In versions below 8.0, the planner will ignore your desire to
   choose an index scan if your joining column's datatypes do not
   match


[pgadmin-hackers] Text/HTML files

2006-01-23 Thread Dave Page
Hi Raph,

I finally got round to converting the pgAdmin files like BUGS.txt to plain text 
as you requested some time back. I also renamed them to BUGS, LICENSE, README, 
CHANGELOG etc. for consistency with other packages. Dunno if you need to tweak 
any of the Debian packing to accommodate the changes?

On a related note, have you got anywhere with the man pages your spoke about a 
while ago?

Regards, Dave.


---(end of broadcast)---
TIP 9: In versions below 8.0, the planner will ignore your desire to
   choose an index scan if your joining column's datatypes do not
   match


[pgadmin-hackers] SVN Commit by dpage: r4951 - in branches/REL-1_4_0_PATCHES/pgadmin3: . src/frm

2006-01-23 Thread svn
Author: dpage
Date: 2006-01-23 13:39:29 + (Mon, 23 Jan 2006)
New Revision: 4951

Modified:
   branches/REL-1_4_0_PATCHES/pgadmin3/CHANGELOG.txt
   branches/REL-1_4_0_PATCHES/pgadmin3/src/frm/frmConfig.cpp
Log:
Read config files as uTF-8 [Magnus Hagander]

Modified: branches/REL-1_4_0_PATCHES/pgadmin3/CHANGELOG.txt
===
--- branches/REL-1_4_0_PATCHES/pgadmin3/CHANGELOG.txt   2006-01-22 13:44:30 UTC 
(rev 4950)
+++ branches/REL-1_4_0_PATCHES/pgadmin3/CHANGELOG.txt   2006-01-23 13:39:29 UTC 
(rev 4951)
@@ -8,6 +8,7 @@
 liMP  - Marc Persuy
 liDAP - Darko Prenosil
 liFGP - Florian G. Pflug
+liMH  - Magnus Hagander
 /ul
 bVersions and releases/bbr
 The following list contains all changes to pgAdmin III, as present in svn. 
@@ -18,11 +19,12 @@
 /ul
 br
 ul
+li2006-01-23 MH  1.4.2  Read config files as uTF-8
 li2006-01-17 DP  1.4.2  Display the defintion of set returning 
procedures correctly.
 li2006-01-17 DP  1.4.2  Fix drop procedure by including IN/OUT parameter 
flags in the name.
 li2006-01-13 DP  1.4.2  Fix role SQL - correctly define 
CREATEROLE/NOCREATEROLE per Andrus.
-li2006-01-09 DP  1.4.2  Honour the copy quoting setting properly in the 
SQL results pane [Magnus Hagander]
-li2006-01-09 DP  1.4.2  Set the initial Unicode/Local charset options 
correctly in the Export dialogue [Magnus Hagander]
+li2006-01-09 MH  1.4.2  Honour the copy quoting setting properly in the 
SQL results pane
+li2006-01-09 MH  1.4.2  Set the initial Unicode/Local charset options 
correctly in the Export dialogue
 li2005-12-26 AP  1.4.2  Fix PK detection in EditGrid per Andrus Moor
 li2005-12-26 AP  1.4.2  Fix Bitmap Index explain per Alexander Kirpa
 li2005-12-23 DP  1.4.2  Use ELSIF not ELSEIF in pgagent.sql for 
compatibility with 7.x servers [Glen Sasek]

Modified: branches/REL-1_4_0_PATCHES/pgadmin3/src/frm/frmConfig.cpp
===
--- branches/REL-1_4_0_PATCHES/pgadmin3/src/frm/frmConfig.cpp   2006-01-22 
13:44:30 UTC (rev 4950)
+++ branches/REL-1_4_0_PATCHES/pgadmin3/src/frm/frmConfig.cpp   2006-01-23 
13:39:29 UTC (rev 4951)
@@ -312,7 +312,7 @@
 buffer[cnt] = 0;
 file.Close();
 
-DisplayFile(wxString::FromAscii(buffer));
+DisplayFile(wxString(buffer, wxConvUTF8));
 
 delete buffer;
 statusBar-SetStatusText(wxString::Format(_( Configuration read from 
%s), lastPath.c_str()));


---(end of broadcast)---
TIP 2: Don't 'kill -9' the postmaster


[pgadmin-hackers] SVN Commit by dpage: r4952 - in trunk/pgadmin3: . src/frm

2006-01-23 Thread svn
Author: dpage
Date: 2006-01-23 13:48:10 + (Mon, 23 Jan 2006)
New Revision: 4952

Modified:
   trunk/pgadmin3/CHANGELOG
   trunk/pgadmin3/src/frm/frmConfig.cpp
Log:
Read config files as uTF-8 [Magnus Hagander]
Replace some missing changelog entries that I seem to have lost

Modified: trunk/pgadmin3/CHANGELOG
===
--- trunk/pgadmin3/CHANGELOG2006-01-23 13:39:29 UTC (rev 4951)
+++ trunk/pgadmin3/CHANGELOG2006-01-23 13:48:10 UTC (rev 4952)
@@ -28,24 +28,37 @@
 - MP   Marc Persuy
 - DAP  Darko Prenosil
 - FGP  Florian G. Pflug
+- MH   Magnus Hagander
 
 Changes
 ---
 
 Date   Dev VerChange details
 -- --- -  --
-2006-01-11 DP  1.6.0  Allow result copy quoting configuration to be set 
+2006-01-23 MH  1.4.2  Read config files as UTF-8
+2006-01-22 DP  1.6.0  Rename text docs to match GNUish standards, remove all
+  HTML markup and wrap at col 80.
+2006-01-19 DP  1.6.0  Fix capitalisation of menu items. Add '...' to the end of
+  items that open dialogues [Peter Eisentraut]
+2006-01-19 MH  1.6.0  Display the client start time on the status dialogue with
+  PostgreSQL 8.1+
+2006-01-17 DP  1.6.0  Allow set returning functions to be created.
+2006-01-17 DP  1.4.2  Display the definition of set returning procedures 
+  correctly.
+2006-01-17 DP  1.4.2  Fix drop procedure by including IN/OUT parameter flags 
in 
+  the name.
+2006-01-13 DP  1.4.2  Fix role SQL - correctly define CREATEROLE/NOCREATEROLE 
+  per Andrus.
+2006-01-11 MH  1.6.0  Allow result copy quoting configuration to be set 
   explicitly rather than using the result export settings 
-  [Magnus Hagander]
-2006-01-09 DP  1.6.0  Add -a and -q command line options to auto connect to a 
-  server and open a query window respectively [Magnus 
-  Hagander]
-2006-01-09 DP  1.4.2  Honour the copy quoting setting properly in the SQL 
-  results pane [Magnus Hagander]
-2006-01-09 DP  1.6.0  Use Ctrl-A to select all results in the query results 
-  pane. [Magnus Hagander]
-2006-01-09 DP  1.4.2  Set the initial Unicode/Local charset options correctly 
-  in the Export dialogue [Magnus Hagander]
+2006-01-09 MH  1.6.0  Add -a and -q command line options to auto connect to a 
+  server and open a query window respectively
+2006-01-09 MH  1.4.2  Honour the copy quoting setting properly in the SQL 
+  results pane
+2006-01-09 MH  1.6.0  Use Ctrl-A to select all results in the query results 
+  pane.
+2006-01-09 MH  1.4.2  Set the initial Unicode/Local charset options correctly 
+  in the Export dialogue
 2005-12-26 AP  1.4.2  Fix PK detection in EditGrid per Andrus Moor
 2005-12-26 AP  1.4.2  Fix Bitmap Index explain per Alexander Kirpa
 2005-12-23 DP  1.4.2  Use ELSIF not ELSEIF in pgagent.sql for compatibility 

Modified: trunk/pgadmin3/src/frm/frmConfig.cpp
===
--- trunk/pgadmin3/src/frm/frmConfig.cpp2006-01-23 13:39:29 UTC (rev 
4951)
+++ trunk/pgadmin3/src/frm/frmConfig.cpp2006-01-23 13:48:10 UTC (rev 
4952)
@@ -312,7 +312,7 @@
 buffer[cnt] = 0;
 file.Close();
 
-DisplayFile(wxString::FromAscii(buffer));
+DisplayFile(wxString(buffer, wxConvUTF8));
 
 delete buffer;
 statusBar-SetStatusText(wxString::Format(_( Configuration read from 
%s), lastPath.c_str()));


---(end of broadcast)---
TIP 6: explain analyze is your friend


Re: [pgadmin-hackers] bugfix: Encoding of config files

2006-01-23 Thread Dave Page
Thanks, patch applied to 1.4.x and 1.6. 

 -Original Message-
 From: [EMAIL PROTECTED] 
 [mailto:[EMAIL PROTECTED] On Behalf Of 
 Magnus Hagander
 Sent: 23 January 2006 11:33
 To: pgadmin-hackers@postgresql.org
 Subject: [pgadmin-hackers] bugfix: Encoding of config files
 
 Hi!
 
 
 Seems the config files are read as ASCII but written as UTF8. I don't
 think you'd normally see non-ascii characters in the values, but I
 definitly have them in the comments somewhere. And things should at
 least be consistent.
 
 Attached patch reads the file as UTF8, and doesn't change the writing.
 
 //Magnus
 

---(end of broadcast)---
TIP 1: if posting/reading through Usenet, please send an appropriate
   subscribe-nomail command to [EMAIL PROTECTED] so that your
   message can get through to the mailing list cleanly


Re: [pgadmin-hackers] Patch: Config editors

2006-01-23 Thread Dave Page
Patch discussed with Magnus on IM. To be reposted with fixes for the
following:

- Undo button doesn't undo a delete.
- There is no delete button on the dialogue
- Help button on the main editor window doesn't work. 

Regards, Dave.

 -Original Message-
 From: [EMAIL PROTECTED] 
 [mailto:[EMAIL PROTECTED] On Behalf Of 
 Magnus Hagander
 Sent: 23 January 2006 13:18
 To: pgadmin-hackers@postgresql.org
 Subject: [pgadmin-hackers] Patch: Config editors
 
 Attached patch implements an editor for pgpass.conf/.pgpass modeled on
 the HBA editor. In doing so it also:
 
 * Adds the ability to delete a row to the pg_hba editor
 * Moves the get the name of the password file to pgSettings 
 so it can
 be shared. Sets up a tiny bit of infrastructure for when there may be
 more config files.
 
 Trying a .zip this time so it doesn't get eaten by the list filter.
 
 //Ma Config_editors.zip gnus
 
 
  
 

---(end of broadcast)---
TIP 5: don't forget to increase your free space map settings


Re: [pgadmin-hackers] bugfix: Encoding of config files

2006-01-23 Thread Andreas Pflug

Dave Page wrote:

Thanks, patch applied to 1.4.x and 1.6. 
 



Hm, this certainly should be consistent, but I'd guess most files will 
use a 1-byte system charset, not UTF8, thus wxConvLibc not wxConvUTF8 is 
the right one.


Regards,
Andreas


---(end of broadcast)---
TIP 1: if posting/reading through Usenet, please send an appropriate
  subscribe-nomail command to [EMAIL PROTECTED] so that your
  message can get through to the mailing list cleanly


Re: [pgadmin-hackers] Patch: Config editors

2006-01-23 Thread Magnus Hagander
 Attached patch implements an editor for pgpass.conf/.pgpass 
 modeled on 
 the HBA editor. In doing so it also:
 
 Do we need this? .pgpass is maintained automatically from pgAdmin.

No it's not :-) Not if you want to use wildcards, for example. Or did I
miss some way of doing that?


 * Adds the ability to delete a row to the pg_hba editor
   
 
 Hm, missed that? Probably thought disabling (commenting out) 
 is enough.

Then you can never get rid of the line at all, can you? That sounds like
a bad idea to me... And there is a different way to comment it out
already, so if that's all you need then this patch isn't needed. I think
a real delete is a good thing, though.

//Magnus

---(end of broadcast)---
TIP 3: Have you checked our extensive FAQ?

   http://www.postgresql.org/docs/faq


Re: [pgadmin-hackers] bugfix: Encoding of config files

2006-01-23 Thread Magnus Hagander
 Thanks, patch applied to 1.4.x and 1.6. 
   
 
 
 Hm, this certainly should be consistent, but I'd guess most 
 files will use a 1-byte system charset, not UTF8, thus 
 wxConvLibc not wxConvUTF8 is the right one.

I for one certainly bow to that one. As said before, the encodings
dealings is defintily not my strong side :-)

//Magnus

---(end of broadcast)---
TIP 9: In versions below 8.0, the planner will ignore your desire to
   choose an index scan if your joining column's datatypes do not
   match


Re: [pgadmin-hackers] Patch: Config editors

2006-01-23 Thread Andreas Pflug

Magnus Hagander wrote:

Attached patch implements an editor for pgpass.conf/.pgpass 
 

modeled on 
   


the HBA editor. In doing so it also:
 


Do we need this? .pgpass is maintained automatically from pgAdmin.
   



No it's not :-) Not if you want to use wildcards, for example. Or did I
miss some way of doing that?

 



Ok. Hope users don't get confused that pgAdmin uses two ways to 
(partially :-) maintain the file.


 


* Adds the ability to delete a row to the pg_hba editor


 

Hm, missed that? Probably thought disabling (commenting out) 
is enough.
   



Then you can never get rid of the line at all, can you? That sounds like
a bad idea to me... And there is a different way to comment it out
already, so if that's all you need then this patch isn't needed. I think
a real delete is a good thing, though.
 


Ok.



---(end of broadcast)---
TIP 4: Have you searched our list archives?

  http://archives.postgresql.org


Re: [pgadmin-hackers] bugfix: Encoding of config files

2006-01-23 Thread Andreas Pflug

Magnus Hagander wrote:

Thanks, patch applied to 1.4.x and 1.6. 



 

Hm, this certainly should be consistent, but I'd guess most 
files will use a 1-byte system charset, not UTF8, thus 
wxConvLibc not wxConvUTF8 is the right one.
   



I for one certainly bow to that one. As said before, the encodings
dealings is defintily not my strong side :-)
 



Well, itsapita. Nobody likes to deal with it voluntarily... :-)

Regards,
Andreas


---(end of broadcast)---
TIP 4: Have you searched our list archives?

  http://archives.postgresql.org


Re: [pgadmin-hackers] Patch: Config editors

2006-01-23 Thread Magnus Hagander
 Do we need this? .pgpass is maintained automatically from pgAdmin.
 
 
 
 No it's not :-) Not if you want to use wildcards, for 
 example. Or did I 
 miss some way of doing that?
 
 
 Ok. Hope users don't get confused that pgAdmin uses two ways 
 to (partially :-) maintain the file.

Users are alreayd confused because pgadmin doesn't tell them that the
save your password checkbox affects all non-pgadmin applications as
well :-P
(Yes, I've been bitten myself. And had to explain it to several others
that hav ebeen..)


//Magnus

---(end of broadcast)---
TIP 5: don't forget to increase your free space map settings


Re: [pgadmin-hackers] Missing make files, etc

2006-01-23 Thread Susemail
On Sunday 22 January 2006 23:13, Dave Page wrote:
  -Original Message-
  From: [EMAIL PROTECTED]
  [mailto:[EMAIL PROTECTED] On Behalf Of Susemail
  Sent: 22 January 2006 21:08
  To: pgadmin-hackers@postgresql.org
  Subject: Re: [pgadmin-hackers] Missing make files, etc
 
  On Sunday 22 January 2006 00:53, Dave Page wrote:
-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf
 
  Of Susemail
 
Sent: 22 January 2006 09:49
To: pgadmin-hackers@postgresql.org
Subject: [pgadmin-hackers] Missing make files, etc
   
I'm missing some files I need in make all:
  
   Then you have a corrupted download/source tree - I just
  checked and it's
   definitely there. Did you verify the integrity of the
  tarball against my
   pgp key?
 
  No, I didn't.  I've spent the last hour looking for an
  example of how to do
  this.  No luck.  How do I  verify the integrity of the
  tarball against your
  pgp key?

 wget http://www.pgadmin.org/pgp/davepage.pgp
 gpg --import davepage.pgp
 gpg --verify pgadmin3-1.4.1.tar.gz.sig

 You want it to say something like:

 gpg: Good signature from Dave Page [EMAIL PROTECTED]

 Somewhere in the four or five lines of output you'll probably get.

 Regards, Dave.

 ---(end of broadcast)---
 TIP 3: Have you checked our extensive FAQ?

http://www.postgresql.org/docs/faq

Thank you.  Here is the output:

@linux:~/bin gpg --verify pgadmin3-1.4.1.tar.gz.sig
gpg: Signature made Sat 10 Dec 2005 04:47:04 AM HST using DSA key ID 1A19643B
gpg: Good signature from Dave Page [EMAIL PROTECTED]
gpg: WARNING: This key is not certified with a trusted signature!
gpg:  There is no indication that the signature belongs to the owner.
Primary key fingerprint: 752C 3D8A 5274 C381 9231  7EAA 9602 0E04 1A19 643B

So does this mean the copy of pgadmin3 I have is not corrupted?  Or must I do 
another check with the primary key fingerprint?
Jerome



---(end of broadcast)---
TIP 5: don't forget to increase your free space map settings


Re: [pgadmin-hackers] Patch: Config editors

2006-01-23 Thread Andreas Pflug

Magnus Hagander wrote:



ly :-) maintain the file.
   



Users are alreayd confused because pgadmin doesn't tell them that the
save your password checkbox affects all non-pgadmin applications as
well :-P
(Yes, I've been bitten myself. And had to explain it to several others
that hav ebeen..)
 



You're right. How can we fix this? (not the mechanism, but the user 
confusion)


Regards,
Andreas


---(end of broadcast)---
TIP 4: Have you searched our list archives?

  http://archives.postgresql.org


Re: [pgadmin-hackers] Text/HTML files

2006-01-23 Thread Raphaël Enrici
Dave Page wrote:
 Hi Raph,

Night' Dave,

 
 I finally got round to converting the pgAdmin files like BUGS.txt to plain 
 text as you requested some time back. I also renamed them to BUGS, LICENSE, 
 README, CHANGELOG etc. for consistency with other packages. Dunno if you need 
 to tweak any of the Debian packing to accommodate the changes?

That's great. I'll take a look at this as soon as time permits it. For
now, I won't be available until 7th of february. Concerning Debian
packaging stuff, I still need to clean the snapshots and maybe to change
some minor things to take advantage of the new organisation you describe
here.


 On a related note, have you got anywhere with the man pages your spoke about 
 a while ago?

In fact, not. mmmh no, in fact yes :)
I just added them to pgadmin3-1.4.1-1 which was uploaded and accepted
this WE to the official debian/unstable. Peter is also doing some big
cleaning in the debian opened bugs until I get more freetime.
I'll rework on this after the 7th of february.

Hope this does not break any release plan(?).

Regards,
Raphaël

---(end of broadcast)---
TIP 6: explain analyze is your friend


Re: [pgadmin-hackers] Patch: Config editors

2006-01-23 Thread Dave Page



On 23/1/06 18:55, Andreas Pflug [EMAIL PROTECTED] wrote:

 
 
 Ok. Hope users don't get confused that pgAdmin uses two ways to
 (partially :-) maintain the file.

It'll also be handy for maintaining files other than your own, such as used
for your pgAgent service account.

/D


---(end of broadcast)---
TIP 3: Have you checked our extensive FAQ?

   http://www.postgresql.org/docs/faq


Re: [pgadmin-hackers] bugfix: Encoding of config files

2006-01-23 Thread Dave Page



On 23/1/06 18:53, Magnus Hagander [EMAIL PROTECTED] wrote:

 Thanks, patch applied to 1.4.x and 1.6.
  
 
 
 Hm, this certainly should be consistent, but I'd guess most
 files will use a 1-byte system charset, not UTF8, thus
 wxConvLibc not wxConvUTF8 is the right one.
 
 I for one certainly bow to that one. As said before, the encodings
 dealings is defintily not my strong side :-)

Ditto. Will commit the change.

/D


---(end of broadcast)---
TIP 4: Have you searched our list archives?

   http://archives.postgresql.org


[pgadmin-hackers] SVN Commit by dpage: r4953 - in trunk/pgadmin3: . src/frm

2006-01-23 Thread svn
Author: dpage
Date: 2006-01-23 20:21:03 + (Mon, 23 Jan 2006)
New Revision: 4953

Modified:
   trunk/pgadmin3/CHANGELOG
   trunk/pgadmin3/src/frm/frmConfig.cpp
Log:
Use wxConvLibc not wxConvUtf8, per Andreas


Modified: trunk/pgadmin3/CHANGELOG
===
--- trunk/pgadmin3/CHANGELOG2006-01-23 13:48:10 UTC (rev 4952)
+++ trunk/pgadmin3/CHANGELOG2006-01-23 20:21:03 UTC (rev 4953)
@@ -35,7 +35,7 @@
 
 Date   Dev VerChange details
 -- --- -  --
-2006-01-23 MH  1.4.2  Read config files as UTF-8
+2006-01-23 MH  1.4.2  Read config files in the local encoding scheme
 2006-01-22 DP  1.6.0  Rename text docs to match GNUish standards, remove all
   HTML markup and wrap at col 80.
 2006-01-19 DP  1.6.0  Fix capitalisation of menu items. Add '...' to the end of

Modified: trunk/pgadmin3/src/frm/frmConfig.cpp
===
--- trunk/pgadmin3/src/frm/frmConfig.cpp2006-01-23 13:48:10 UTC (rev 
4952)
+++ trunk/pgadmin3/src/frm/frmConfig.cpp2006-01-23 20:21:03 UTC (rev 
4953)
@@ -312,7 +312,7 @@
 buffer[cnt] = 0;
 file.Close();
 
-DisplayFile(wxString(buffer, wxConvUTF8));
+DisplayFile(wxString(buffer, wxConvLibc));
 
 delete buffer;
 statusBar-SetStatusText(wxString::Format(_( Configuration read from 
%s), lastPath.c_str()));


---(end of broadcast)---
TIP 6: explain analyze is your friend


Re: [pgadmin-hackers] Missing make files, etc

2006-01-23 Thread Dave Page



On 23/1/06 19:02, Susemail [EMAIL PROTECTED] wrote:

 So does this mean the copy of pgadmin3 I have is not corrupted?

Yes. Which means that pgAdmin3.cpp must be in there somewhere!

Regards, Dave.


---(end of broadcast)---
TIP 1: if posting/reading through Usenet, please send an appropriate
   subscribe-nomail command to [EMAIL PROTECTED] so that your
   message can get through to the mailing list cleanly


[pgadmin-hackers] SVN Commit by dpage: r4954 - in branches/REL-1_4_0_PATCHES/pgadmin3: . src/frm

2006-01-23 Thread svn
Author: dpage
Date: 2006-01-23 20:25:32 + (Mon, 23 Jan 2006)
New Revision: 4954

Modified:
   branches/REL-1_4_0_PATCHES/pgadmin3/CHANGELOG.txt
   branches/REL-1_4_0_PATCHES/pgadmin3/src/frm/frmConfig.cpp
Log:
Use wxConvLibc, not wxConvUTF8, per Andreas


Modified: branches/REL-1_4_0_PATCHES/pgadmin3/CHANGELOG.txt
===
--- branches/REL-1_4_0_PATCHES/pgadmin3/CHANGELOG.txt   2006-01-23 20:21:03 UTC 
(rev 4953)
+++ branches/REL-1_4_0_PATCHES/pgadmin3/CHANGELOG.txt   2006-01-23 20:25:32 UTC 
(rev 4954)
@@ -19,7 +19,7 @@
 /ul
 br
 ul
-li2006-01-23 MH  1.4.2  Read config files as uTF-8
+li2006-01-23 MH  1.4.2  Read config files in the local encoding scheme
 li2006-01-17 DP  1.4.2  Display the defintion of set returning 
procedures correctly.
 li2006-01-17 DP  1.4.2  Fix drop procedure by including IN/OUT parameter 
flags in the name.
 li2006-01-13 DP  1.4.2  Fix role SQL - correctly define 
CREATEROLE/NOCREATEROLE per Andrus.

Modified: branches/REL-1_4_0_PATCHES/pgadmin3/src/frm/frmConfig.cpp
===
--- branches/REL-1_4_0_PATCHES/pgadmin3/src/frm/frmConfig.cpp   2006-01-23 
20:21:03 UTC (rev 4953)
+++ branches/REL-1_4_0_PATCHES/pgadmin3/src/frm/frmConfig.cpp   2006-01-23 
20:25:32 UTC (rev 4954)
@@ -312,7 +312,7 @@
 buffer[cnt] = 0;
 file.Close();
 
-DisplayFile(wxString(buffer, wxConvUTF8));
+DisplayFile(wxString(buffer, wxConvLibc));
 
 delete buffer;
 statusBar-SetStatusText(wxString::Format(_( Configuration read from 
%s), lastPath.c_str()));


---(end of broadcast)---
TIP 9: In versions below 8.0, the planner will ignore your desire to
   choose an index scan if your joining column's datatypes do not
   match


Re: [pgadmin-hackers] Text/HTML files

2006-01-23 Thread Dave Page



On 23/1/06 20:02, Raphaël Enrici [EMAIL PROTECTED] wrote:

 Dave Page wrote:
 Hi Raph,
 
 Night' Dave,
 
 
 I finally got round to converting the pgAdmin files like BUGS.txt to plain
 text as you requested some time back. I also renamed them to BUGS, LICENSE,
 README, CHANGELOG etc. for consistency with other packages. Dunno if you need
 to tweak any of the Debian packing to accommodate the changes?
 
 That's great. I'll take a look at this as soon as time permits it. For
 now, I won't be available until 7th of february. Concerning Debian
 packaging stuff, I still need to clean the snapshots and maybe to change
 some minor things to take advantage of the new organisation you describe
 here.

OK.
 
 
 On a related note, have you got anywhere with the man pages your spoke about
 a while ago?
 
 In fact, not. mmmh no, in fact yes :)
 I just added them to pgadmin3-1.4.1-1 which was uploaded and accepted
 this WE to the official debian/unstable. Peter is also doing some big
 cleaning in the debian opened bugs until I get more freetime.
 I'll rework on this after the 7th of february.

OK.
 
 Hope this does not break any release plan(?).

No, not at all. I'm just on a tidying spree ATM.

Regards, Dave.


---(end of broadcast)---
TIP 5: don't forget to increase your free space map settings