Re: [pgadmin-hackers] Repost: Patch: view data for tables/views on

2004-09-24 Thread Dave Page
 

 -Original Message-
 From: [EMAIL PROTECTED] 
 [mailto:[EMAIL PROTECTED] On Behalf Of 
 Ivan Nejgebauer
 Sent: 23 September 2004 09:33
 To: [EMAIL PROTECTED]
 Subject: Re: [pgadmin-hackers] Repost: Patch: view data for 
 tables/views on
 
 Dave Page wrote:
  I think this is exactly when it should be enabled - such 
 that you have 
  the choice that double click can do one of the following:
  
  - Nothing
  - Open the data view on a table/view (and nothing on other objects)
  - Open the properties dialogue.
 
 I thought about that, too, but that would be (IMO) better 
 achieved with radio buttons or a combination of a checkbox 
 and radio buttons, and I didn't want to rearrange the dialog 
 too drastically.

I think 3 radio buttons would work the best - sometimes you just have to
bite the bullet and redesign the dialogues :-)

 but a higher limit is there to prevent 
 memory exhaustion and application trashing should you choose 
 to view a hypothetical million-row table.

Of course - I think it's a good idea, it just needs to warn the user
when it limits the recordset. Let's use the same default as the existing
setting, and keep the limits separate - I think that might be useful as
you suggest.

 That's fine by me -- I see pgAdmin as a very nice and useful 
 tool, which is why I want to contribute to its development in 
 the first place, and I realize the need for thoroughly 
 discussing any proposed addition.

:-) I think you just happened to pick one of those topics that was bound
to cause some discussion!

Regards, Dave

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

   http://www.postgresql.org/docs/faqs/FAQ.html


Re: [pgadmin-hackers] Beta-2?

2004-09-24 Thread Andreas Pflug
Dave Page wrote:
 


-Original Message-
From: Andreas Pflug [mailto:[EMAIL PROTECTED] 
Sent: 23 September 2004 20:47
To: Dave Page; pgadmin-hackers
Subject: Beta-2?

As we have now fixed some nasty things in Beta-1, how about rolling
Beta-2 the next days?

Yeah, was just thinking that myself. I might have time tomorrow if
there's nothing else to go in?
Nothing, apparently. Go!
Regards,
Andreas
---(end of broadcast)---
TIP 2: you can get off all lists at once with the unregister command
   (send unregister YourEmailAddressHere to [EMAIL PROTECTED])


[pgadmin-hackers] CVS Commit by dpage: Beta 2 version number bump

2004-09-24 Thread cvs
Log Message:
---
Beta 2 version number bump

Modified Files:
--
pgadmin3:
configure.ac (r1.24 - r1.25)
pgadmin3/pkg/win32:
pgadmin3.wsi (r1.18 - r1.19)
pgadmin3.wsm (r1.3 - r1.4)
pgadmin3/src/include:
version.h (r1.10 - r1.11)

Index: version.h
===
RCS file: /projects/pgadmin3/src/include/version.h,v
retrieving revision 1.10
retrieving revision 1.11
diff -Lsrc/include/version.h -Lsrc/include/version.h -u -w -r1.10 -r1.11
--- src/include/version.h
+++ src/include/version.h
@@ -11,9 +11,9 @@
 
 
 // Application Versions
-#define VERSION_STR wxT(1.2.0 Post Beta 1)
+#define VERSION_STR wxT(1.2.0 Beta 2)
 #define VERSION_NUM 1,2,0,0
-#define VERSION_PACKAGE 1.2.0-post-beta1
+#define VERSION_PACKAGE 1.2.0-beta2
 
 #define PRERELEASE 1
 // #define BUILD ...
---(end of broadcast)---
TIP 3: 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] CVS Commit by dpage: Release build script.

2004-09-24 Thread cvs
Log Message:
---
Release build script. Must sort these out properly one day...

Added Files:
---
pgadmin3/pkg/slackware:
build-release (r1.1)

--- /dev/null
+++ pkg/slackware/build-release
@@ -0,0 +1,61 @@
+#! /bin/sh
+
+###
+#
+# pgAdmin III - PostgreSQL Tools
+# Copyright (C) 2002 - 2004, The pgAdmin Development Team
+# This software is released under the Artistic Licence
+#
+# build-release - Build a Slackware release
+#
+###
+
+if [ $# -ne 1 ]; then
+   echo Usage: $0 version
+   exit
+fi
+
+# Setup the build environment
+PATH=$PATH:/usr/local/bin
+PGDIR=/usr/local/pgsql
+WXDIR=/usr/local/
+export PATH PGDIR WXDIR
+
+# Configure for the local OS
+./configure --prefix=/usr/local/src/pgadmin3/slackpack/usr \
+   --with-pgsql=$PGDIR --with-wx=$WXDIR --enable-static --enable-release \
+   --datadir=/usr/share
+
+# Now make the binary build
+make all
+/usr/bin/strip src/pgadmin3
+
+# Build a clean distro
+if [ -x src/pgadmin3 ]; then
+
+   # Use the build system
+   make install
+   
+   # And tweak for Slackware
+   mkdir -p ./slackpack/opt/kde/share/applnk/Development
+   mkdir -p ./slackpack/usr/share
+   mkdir -p ./slackpack/install
+   mv /usr/share/pgadmin3 ./slackpack/usr/share/
+   cp ./pkg/pgadmin3.desktop ./slackpack/opt/kde/share/applnk/Development
+   cp ./src/include/images/elephant48.xpm 
./slackpack/usr/share/pgadmin3/pgadmin3.xpm
+   echo pgadmin3-$1: pgAdmin III - PostgreSQL Tools  
./slackpack/install/slack-desc
+   echo pgadmin3-$1:   ./slackpack/install/slack-desc
+   echo pgadmin3-$1: pgAdmin III is the most popular Open Source management tool 
for  ./slackpack/install/slack-desc
+   echo pgadmin3-$1: the PostgreSQL Object Relational Database Management 
System.  ./slackpack/install/slack-desc
+   echo pgadmin3-$1:   ./slackpack/install/slack-desc
+   echo pgadmin3-$1: http://www.pgadmin.org/;  ./slackpack/install/slack-desc
+   echo pgadmin3-$1: http://www.postgresql.org/;  
./slackpack/install/slack-desc
+   echo pgadmin3-$1:   ./slackpack/install/slack-desc
+   echo pgadmin3-$1:   ./slackpack/install/slack-desc
+   echo pgadmin3-$1:   ./slackpack/install/slack-desc
+   echo pgadmin3-$1:   ./slackpack/install/slack-desc
+
+   # Build the snapshot and file it.
+   cd slackpack
+   /sbin/makepkg --chown y pgadmin3-$1.tgz 
+fi
---(end of broadcast)---
TIP 1: subscribe and unsubscribe commands go to [EMAIL PROTECTED]


Re: [pgadmin-hackers] Beta-2?

2004-09-24 Thread Dave Page
 

 -Original Message-
 From: Andreas Pflug [mailto:[EMAIL PROTECTED] 
 Sent: 24 September 2004 10:51
 To: Dave Page
 Cc: pgadmin-hackers
 Subject: Re: [pgadmin-hackers] Beta-2?
 
 Dave Page wrote:
   
  
  
 -Original Message-
 From: Andreas Pflug [mailto:[EMAIL PROTECTED]
 Sent: 23 September 2004 20:47
 To: Dave Page; pgadmin-hackers
 Subject: Beta-2?
 
 As we have now fixed some nasty things in Beta-1, how about rolling
 Beta-2 the next days?
  
  
  Yeah, was just thinking that myself. I might have time tomorrow if 
  there's nothing else to go in?
  
 
 Nothing, apparently. Go!

Going... :-)

/D

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


[pgadmin-hackers] Beta2 rolled and ready for checking

2004-09-24 Thread Dave Page
Having finally beaten OpenSSL/Mingw into submission, I've uploaded beta2
for win32 and slackware, as well as a source tarball to /ftp/beta on
dev. Please could someone check these look OK before we do a release
notice.

Raph - do you have time for the announcements between feeds? :-) The
important thing this time is to include a changelog from b1.

Regards, Dave

---(end of broadcast)---
TIP 3: 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] CVS Commit by dpage: Updated translation from Frank Lupo.

2004-09-24 Thread cvs
Log Message:
---
Updated translation from Frank Lupo.

Modified Files:
--
pgadmin3/src/ui/it_IT:
pgadmin3.mo (r1.20 - r1.21)
pgadmin3.po (r1.19 - r1.20)

Index: pgadmin3.po
===
RCS file: /projects/pgadmin3/src/ui/it_IT/pgadmin3.po,v
retrieving revision 1.19
retrieving revision 1.20
diff -Lsrc/ui/it_IT/pgadmin3.po -Lsrc/ui/it_IT/pgadmin3.po -u -w -r1.19 -r1.20
--- src/ui/it_IT/pgadmin3.po
+++ src/ui/it_IT/pgadmin3.po
@@ -7,8 +7,8 @@
 msgstr 
 Project-Id-Version: pgAdmin3\n
 POT-Creation-Date: 2004-09-05 23:02+0200\n
-PO-Revision-Date: 2004-09-15 11:39+0100\n
-Last-Translator:  \n
+PO-Revision-Date: 2004-09-24 13:05+0100\n
+Last-Translator: frank_lupo [EMAIL PROTECTED]\n
 Language-Team: pgAdmin Developers [EMAIL PROTECTED]\n
 MIME-Version: 1.0\n
 Content-Type: text/plain; charset=utf-8\n
@@ -84,11 +84,11 @@
 
 #: src/schema/pgTablespace.cpp:40
 msgid  Retrieving tablespace usage
-msgstr 
+msgstr  Calcolo uso tablespace
 
 #: src/schema/pgUser.cpp:89
 msgid  Retrieving user owned objects
-msgstr 
+msgstr  Calcolo permessi utente sugli oggetti
 
 #: src/ui/frmStatus.cpp:682
 msgid  current
@@ -589,7 +589,7 @@
 
 #: src/ui/frmStatus.cpp:774
 msgid A cancel signal was sent to the selected server process(es).
-msgstr 
+msgstr Il segnale di annulamento è stato inviato al/i processo/i del server.
 
 #: src/utils/sysLogger.cpp:77
 msgid 
@@ -601,7 +601,7 @@
 
 #: src/ui/frmStatus.cpp:811
 msgid A terminate signal was sent to the selected server process(es).
-msgstr 
+msgstr Il segnale di terminazione è stato inviato al/i processo/i del server.
 
 #: src/schema/pgDatabase.cpp:337
 #: src/schema/pgFunction.cpp:117
@@ -856,9 +856,8 @@
 msgstr Sei sicuro di voler riutilizzare i file di log?
 
 #: src/ui/events.cpp:249
-#, fuzzy
 msgid Are you sure you wish shutdown this server?
-msgstr Si è certi di voler fare il drop %s %s?
+msgstr Sei sicuro di voler spegenre questo server?
 
 #: src/ui/frmStatus.cpp:757
 msgid Are you sure you wish to cancel the selected query(s)?
@@ -870,9 +869,8 @@
 msgstr Si è certi di voler fare il drop %s %s?
 
 #: src/ui/events.cpp:1162
-#, fuzzy
 msgid Are you sure you wish to drop multiple objects?
-msgstr Si è certi di voler fare il drop %s %s?
+msgstr Sei sicuro di voler cancellare questi oggetti?
 
 #: src/ui/frmStatus.cpp:793
 msgid Are you sure you wish to terminate the selected server process(es)?
@@ -910,7 +908,7 @@
 # standard
 #: input:121
 msgid Auto FK index
-msgstr 
+msgstr Auto FK indice
 
 # standard input:7
 # standard input:7
@@ -928,7 +926,7 @@
 
 #: src/schema/pgColumn.cpp:243
 msgid Average Width
-msgstr 
+msgstr Largezza Media
 
 # standard input:8
 # standard input:8
@@ -1213,9 +1211,9 @@
 msgstr Annullamento.
 
 #: src/ui/events.cpp:1153
-#, fuzzy, c-format
+#, c-format
 msgid Cannot drop system %s
-msgstr Non si può effettuare il drop %s %s.
+msgstr Non è possibile cancellare l'oggetto di sistema %s
 
 #: src/ui/events.cpp:1204
 #, c-format
@@ -1232,11 +1230,11 @@
 
 #: src/schema/pgObject.cpp:47
 msgid Cast
-msgstr 
+msgstr Cast
 
 #: src/schema/pgObject.cpp:46
 msgid Casts
-msgstr 
+msgstr Casts
 
 # standard input:8
 # standard input:8
@@ -1299,7 +1297,7 @@
 #: src/ui/frmIndexcheck.cpp:49
 #, c-format
 msgid Check Foreign Key indexes on %s %s
-msgstr 
+msgstr Verifica Chiave esterna indici %s %s
 
 # standard
 #: input:528
@@ -1358,11 +1356,11 @@
 
 #: src/ui/frmMain.cpp:561
 msgid Close database browser? If you abort, the object browser will not show 
accurate data.
-msgstr 
+msgstr Chiudere il database browser? Se si annulla, gli oggetti visualizzati non 
saranno corretti.
 
 #: src/ui/frmMain.cpp:591
 msgid Close server browser? If you abort, the object browser will not show accurate 
data.
-msgstr 
+msgstr Chiudere il server browser? Se si annulla, gli oggetti visualizzati non 
saranno corretti.
 
 msgid Close this Window.
 msgstr Chiudi questa finestra
@@ -1632,7 +1630,7 @@
 #: src/schema/pgIndexConstraint.cpp:107
 #: src/ui/frmRestore.cpp:421
 msgid Constraint
-msgstr vincolo
+msgstr Vincolo
 
 #: src/ui/dlgTable.cpp:88
 msgid Constraint name
@@ -1761,27 +1759,27 @@
 
 #: src/schema/pgObject.cpp:47
 msgid Create a new Cast.
-msgstr Creare un nuovo cast.
+msgstr Creare un nuovo Cast.
 
 #: src/schema/pgObject.cpp:49
 msgid Create a new Conversion.
-msgstr Creare una nuova conversione.
+msgstr Creare una nuova Conversione.
 
 #: src/schema/pgObject.cpp:33
 msgid Create a new Database.
-msgstr Creare un nuovo database.
+msgstr Creare un nuovo Database.
 
 #: src/schema/pgObject.cpp:51
 msgid Create a new Domain.
-msgstr Creare un nuovo dominio.
+msgstr Creare un nuovo Dominio.
 
 #: src/schema/pgObject.cpp:53
 msgid Create a new Function.
-msgstr Creare una nuova funzione.
+msgstr Creare una nuova Funzione.
 
 #: src/schema/pgObject.cpp:35
 msgid Create a new Group.
-msgstr Creare un nuovo gruppo.
+msgstr Creare un nuovo Gruppo.
 
 #: src/schema/pgObject.cpp:82

Re: [pgadmin-hackers] Beta2 rolled and ready for checking

2004-09-24 Thread Devrim GUNDUZ
Hi,
On Fri, 24 Sep 2004, Dave Page wrote:
Having finally beaten OpenSSL/Mingw into submission, I've uploaded beta2
for win32 and slackware, as well as a source tarball to /ftp/beta on
dev. Please could someone check these look OK before we do a release
notice.
I'll wait until tomorrow for FC2 rpms, to be sure that there's no problem 
with the package.

PS: Dave, I'll send your script, I didn't forget it. Just *extremely* busy 
nowadays...
--
Devrim GUNDUZ 
devrim~gunduz.orgdevrim.gunduz~linux.org.tr
			http://www.tdmsoft.com
			http://www.gunduz.org

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


Re: [pgadmin-hackers] Beta2 rolled and ready for checking

2004-09-24 Thread Dave Page
 

 -Original Message-
 From: Devrim GUNDUZ [mailto:[EMAIL PROTECTED] 
 Sent: 24 September 2004 12:53
 To: Dave Page
 Cc: pgadmin-hackers
 Subject: Re: [pgadmin-hackers] Beta2 rolled and ready for checking
 
 
 Hi,
 
 On Fri, 24 Sep 2004, Dave Page wrote:
 
  Having finally beaten OpenSSL/Mingw into submission, I've uploaded 
  beta2 for win32 and slackware, as well as a source tarball to 
  /ftp/beta on dev. Please could someone check these look OK 
 before we 
  do a release notice.
 
 I'll wait until tomorrow for FC2 rpms, to be sure that 
 there's no problem with the package.
 
 PS: Dave, I'll send your script, I didn't forget it. Just 
 *extremely* busy nowadays...

No problem :-)

Regards, Dave.

---(end of broadcast)---
TIP 1: subscribe and unsubscribe commands go to [EMAIL PROTECTED]


Re: [pgadmin-hackers] Beta2 rolled and ready for checking

2004-09-24 Thread Raphaël Enrici
Dave Page wrote:
Raph - do you have time for the announcements between feeds? :-) The
important thing this time is to include a changelog from b1.
oui :p
I can take a look at it but I didn't follow the recent threads... Maybe 
Andreas would be the best for this job now he knows the are english 
specifications ;)

Is there any plan for a beta 3 or not?
Cheers,
Raphaël
---(end of broadcast)---
TIP 5: Have you checked our extensive FAQ?
  http://www.postgresql.org/docs/faqs/FAQ.html


Re: [pgadmin-hackers] Mac Language and _()

2004-09-24 Thread Adam H . Pendleton
On Sep 21, 2004, at 1:30 PM, Andreas Pflug wrote:
Maybe your mac detects the missing the slant eyes :-)
First you can remove language files, in that case it should fall back 
to english.

Still, in any case a wrong/missing translation may not result in an 
invalid string, apparently that's what's happening.

It might be quite hard to locate this with pgadmin sources. AFAIR 
there's a locale sample in wx, can you try that?
Sorry it's taken so long to get back to you on this.  The internat 
wxWidgets sample works correctly on my Mac.  When I run it, I get the 
language selection dialog, then I get French, English, German, etc. 
menus depending on which language I select.  Looks like I'm probably 
doing something wrong when I build pgAdmin3.

ahp
---(end of broadcast)---
TIP 5: Have you checked our extensive FAQ?
  http://www.postgresql.org/docs/faqs/FAQ.html


Re: [pgadmin-hackers] Beta2 rolled and ready for checking

2004-09-24 Thread Dave Page
 

 -Original Message-
 From: Raphaël Enrici [mailto:[EMAIL PROTECTED] 
 Sent: 24 September 2004 13:57
 To: Dave Page
 Cc: pgadmin-hackers; Andreas Pflug
 Subject: Re: [pgadmin-hackers] Beta2 rolled and ready for checking
 
 Dave Page wrote:
 
  Raph - do you have time for the announcements between 
 feeds? :-) The 
  important thing this time is to include a changelog from b1.
 oui :p
 I can take a look at it but I didn't follow the recent 
 threads... 

It's all in the changelog:

http://cvs.pgadmin.org/cgi-bin/viewcvs.cgi/pgadmin3/CHANGELOG.txt?rev=HEADcontent-type=text/vnd.viewcvs-markup

 Maybe Andreas would be the best for this job now 
 he knows the are english specifications ;)

Bah - he was just showing off :-) Besides, you know it as well now.

 Is there any plan for a beta 3 or not?

Depends on what bugs get uncovered in b2... If there aren't any worth a new release, 
we can get 1.2.0 out the door, branch, and then start on the 1.3 dev series.

Regards, Dave

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

   http://www.postgresql.org/docs/faqs/FAQ.html