[PATCHES] Adding a --quiet option to initdb

2006-01-25 Thread Devrim GUNDUZ

Hi,

Attached is a patch which adds --quiet and --q option to initdb. I
personally needed this option while writing a document and taking
screenshot :) It only shows the error and warning messages, as well as
the last lines.

I've updated the docs. Regression tests pass.

This is my first patch to PostgreSQL source, so please guide me if I
have done something wrong.

Regards,
-- 
The PostgreSQL Company - Command Prompt, Inc. 1.503.667.4564
PostgreSQL Replication, Consulting, Custom Development, 24x7 support
Managed Services, Shared and Dedicated Hosting
Co-Authors: plPHP, plPerlNG - http://www.commandprompt.com/

Index: doc/src/sgml/ref/initdb.sgml
===
RCS file: /projects/cvsroot/pgsql/doc/src/sgml/ref/initdb.sgml,v
retrieving revision 1.35
diff -c -r1.35 initdb.sgml
*** doc/src/sgml/ref/initdb.sgml	21 Jun 2005 04:02:31 -	1.35
--- doc/src/sgml/ref/initdb.sgml	25 Jan 2006 13:47:19 -
***
*** 235,240 
--- 235,252 
/listitem
   /varlistentry
  
+ variablelist
+  varlistentry
+   termoption--q/option/term
+   termoption--quiet/option/term
+   listitem
+para
+ 	Supresses the messages generated by commandinitdb/command. Only warning
+ 	and error messages are displayed.
+/para
+   /listitem
+  /varlistentry
+ 
   varlistentry
termoption-L replaceable class=parameterdirectory/replaceable/option/term
listitem
Index: src/bin/initdb/initdb.c
===
RCS file: /projects/cvsroot/pgsql/src/bin/initdb/initdb.c,v
retrieving revision 1.106
diff -c -r1.106 initdb.c
*** src/bin/initdb/initdb.c	5 Jan 2006 10:07:46 -	1.106
--- src/bin/initdb/initdb.c	25 Jan 2006 13:47:36 -
***
*** 95,100 
--- 95,101 
  static bool debug = false;
  static bool noclean = false;
  static bool show_setting = false;
+ static bool quiet;
  
  
  /* internal vars */
***
*** 1120,1128 
  		test_max_fsm,
  		ok_buffers = 0;
  	  
! 
! 	printf(_(selecting default max_connections ... ));
! 	fflush(stdout);
  
  	for (i = 0; i  connslen; i++)
  	{
--- 1121,1131 
  		test_max_fsm,
  		ok_buffers = 0;
  	  
! 	if (!quiet)
! 	{
! 		printf(_(selecting default max_connections ... ));
! 		fflush(stdout);
! 	}
  
  	for (i = 0; i  connslen; i++)
  	{
***
*** 1150,1159 
  		i = connslen - 1;
  	n_connections = trial_conns[i];
  
! 	printf(%d\n, n_connections);
  
! 	printf(_(selecting default shared_buffers/max_fsm_pages ... ));
! 	fflush(stdout);
  
  	for (i = 0; i  bufslen; i++)
  	{
--- 1153,1168 
  		i = connslen - 1;
  	n_connections = trial_conns[i];
  
! 	if (!quiet)
! 	{
! 		printf(%d\n, n_connections);
! 	}
  
! 	if (!quiet)
! 	{
! 		printf(_(selecting default shared_buffers/max_fsm_pages ... ));
! 		fflush(stdout);
! 	}
  
  	for (i = 0; i  bufslen; i++)
  	{
***
*** 1181,1187 
  	n_buffers = test_buffs;
  	n_fsm_pages = FSM_FOR_BUFS(n_buffers);
  
! 	printf(%d/%d\n, n_buffers, n_fsm_pages);
  }
  
  /*
--- 1190,1199 
  	n_buffers = test_buffs;
  	n_fsm_pages = FSM_FOR_BUFS(n_buffers);
  
! 	if (!quiet)
! 	{
! 		printf(%d/%d\n, n_buffers, n_fsm_pages);
! 	}
  }
  
  /*
***
*** 1194,1202 
  	char		repltok[100];
  	char		path[MAXPGPATH];
  
! 	fputs(_(creating configuration files ... ), stdout);
! 	fflush(stdout);
! 
  	/* postgresql.conf */
  
  	conflines = readfile(conf_file);
--- 1206,1216 
  	char		repltok[100];
  	char		path[MAXPGPATH];
  
! 	if (!quiet)
! 	{
! 		fputs(_(creating configuration files ... ), stdout);
! 		fflush(stdout);
! 	}
  	/* postgresql.conf */
  
  	conflines = readfile(conf_file);
***
*** 1350,1359 
  	char	  **bki_lines;
  	char		headerline[MAXPGPATH];
  
! 	printf(_(creating template1 database in %s/base/1 ... ), pg_data);
! 	fflush(stdout);
  
! 	if (debug)
  		talkargs = -d 5;
  
  	bki_lines = readfile(bki_file);
--- 1364,1376 
  	char	  **bki_lines;
  	char		headerline[MAXPGPATH];
  
! 	if (!quiet)
! 	{
! 		printf(_(creating template1 database in %s/base/1 ... ), pg_data);
! 		fflush(stdout);
! 	}
  
! 		if (debug)
  		talkargs = -d 5;
  
  	bki_lines = readfile(bki_file);
***
*** 1444,1451 
  		NULL
  	};
  
! 	fputs(_(initializing pg_authid ... ), stdout);
! 	fflush(stdout);
  
  	snprintf(cmd, sizeof(cmd),
  			 \%s\ %s template1 %s,
--- 1461,1471 
  		NULL
  	};
  
! 	if (!quiet)
! 	{
! 		fputs(_(initializing pg_authid ... ), stdout);
! 		fflush(stdout);
! 	}
  
  	snprintf(cmd, sizeof(cmd),
  			 \%s\ %s template1 %s,
***
*** 1572,1579 
  		NULL
  	};
  
! 	fputs(_(enabling unlimited row size for system tables ... ), stdout);
! 	fflush(stdout);
  
  	snprintf(cmd, sizeof(cmd),
  			 \%s\ %s template1 %s,
--- 1592,1602 
  		NULL
  	};
  
! 	if (!quiet)
! 	{
! 		fputs(_(enabling unlimited row size 

Re: [HACKERS] [PATCHES] Adding a --quiet option to initdb

2006-01-25 Thread Devrim GUNDUZ
Hi Andrew,

On Wed, 2006-01-25 at 09:28 -0500, Andrew Dunstan wrote:
 What's wrong with just sending stdout to /dev/null? If that eats error
 messages too then we should probably fix initdb to send those to
 stderr.

We have the same options with reindexdb, for example. I think a command
line option 

 But if we are going to do this, then I also noticed a couple of
 things:
 
 . you should explicitly initialize the quiet variable, in keeping with
 the style of the others nearby.

Oh, I've missed it. Patch updated.

 . the idiom
 
if (! quiet) 
{
   fputs(_(some message),stdout);
   fflush(stdout);
}
 
 should not be endlessly repeated. Make it a macro or a function.

I'm looking at it now.

Thanks for your comments. I'll provide a new patch soon, which will also
include Alvaro's suggestion about surpression both header and footer 
(--make-initdb-really-quiet-mode :) )

Regards,
-- 
The PostgreSQL Company - Command Prompt, Inc. 1.503.667.4564
PostgreSQL Replication, Consulting, Custom Development, 24x7 support
Managed Services, Shared and Dedicated Hosting
Co-Authors: plPHP, plPerlNG - http://www.commandprompt.com/



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

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


Re: [HACKERS] [PATCHES] Adding a --quiet option to initdb

2006-01-25 Thread Devrim GUNDUZ
Hi,

On Wed, 2006-01-25 at 17:22 +0200, Devrim GUNDUZ wrote:
 On Wed, 2006-01-25 at 09:28 -0500, Andrew Dunstan wrote:
  What's wrong with just sending stdout to /dev/null? If that eats
 error
  messages too then we should probably fix initdb to send those to
  stderr.
 
 We have the same options with reindexdb, for example. I think a
 command
 line option 

(Opps...) We have the same options with reindexdb, for example. I think
a command line options is better and required.

Regards,
-- 
The PostgreSQL Company - Command Prompt, Inc. 1.503.667.4564
PostgreSQL Replication, Consulting, Custom Development, 24x7 support
Managed Services, Shared and Dedicated Hosting
Co-Authors: plPHP, plPerlNG - http://www.commandprompt.com/



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


Re: [PATCHES] [HACKERS] Adding a --quiet option to initdb

2006-01-25 Thread Devrim GUNDUZ
Hi,

On Wed, 2006-01-25 at 11:28 -0500, Tom Lane wrote:
 Devrim GUNDUZ [EMAIL PROTECTED] writes:
  Attached is a patch which adds --quiet and --q option to initdb.
 
 Why is this a good idea?

I was playing with 8.2 RPM init script and thought that instead of
directing the output to /dev/null, it would be better to use a command
line option for that. Also, we are designing a new installer project and
--quiet might help us.

I would rise this idea in -hackers before providing a patch, but since
this is my first patch, I thought it would be a good exercise for me.

Regards,
-- 
The PostgreSQL Company - Command Prompt, Inc. 1.503.667.4564
PostgreSQL Replication, Consulting, Custom Development, 24x7 support
Managed Services, Shared and Dedicated Hosting
Co-Authors: plPHP, plPerlNG - http://www.commandprompt.com/



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


Re: [HACKERS] [PATCHES] Adding a --quiet option to initdb

2006-01-25 Thread Devrim GUNDUZ
Hi,

On Wed, 2006-01-25 at 16:32 +0100, Peter Eisentraut wrote:

  I think a command line options is better and required.
 
 I think we need more proof of that than a use case involving taking 
 screen shots.

I've just explained my points as a reply to Tom's mail.

Regards,
-- 
The PostgreSQL Company - Command Prompt, Inc. 1.503.667.4564
PostgreSQL Replication, Consulting, Custom Development, 24x7 support
Managed Services, Shared and Dedicated Hosting
Co-Authors: plPHP, plPerlNG - http://www.commandprompt.com/



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

   http://archives.postgresql.org


Re: [PATCHES] bugfix: character-code conversion of MIC - EUC_JP.

2005-06-10 Thread Devrim GUNDUZ


Hi Tatsuo,

On Sat, 11 Jun 2005, Tatsuo Ishii wrote:


If you agree that it's wrong, please do back-patch (at least 8.0,
and personally I'd fix it back to 7.3).


I will do it later (now is 2:00 AM and I need to go to bed...)


This was an easy one:

http://postgresql.gunduz.org/patches/

have the related patches for 8.0,7.4 and 7.3...

--
Devrim GUNDUZ
devrim~gunduz.org, devrim~PostgreSQL.org, devrim.gunduz~linux.org.tr
http://www.tdmsoft.com.tr  http://www.gunduz.org

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


[PATCHES] Updated Turkish Translations for 8.0.2

2005-04-02 Thread Devrim GUNDUZ
Hi,
We've updated Turkish Translations for PostgreSQL 8.0.2:
http://postgresql.gunduz.org/translation/PostgreSQL-8.0/PgSQL-DilDosyalari/pg_config-tr.po
http://postgresql.gunduz.org/translation/PostgreSQL-8.0/PgSQL-DilDosyalari/pg_controldata-tr.po
http://postgresql.gunduz.org/translation/PostgreSQL-8.0/PgSQL-DilDosyalari/pgscripts-tr.po
http://postgresql.gunduz.org/translation/PostgreSQL-8.0/PgSQL-DilDosyalari/postgres-tr.po
Could you please apply them?
Regards,
--
Devrim GUNDUZ 
devrim~gunduz.org, devrim~PostgreSQL.org, devrim.gunduz~linux.org.tr
http://www.tdmsoft.com http://www.gunduz.org

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


[PATCHES] (Continued) Updated Turkish translations

2005-04-02 Thread Devrim GUNDUZ
Hi,
http://postgresql.gunduz.org/translation/PostgreSQL-8.0/PgSQL-DilDosyalari/initdb-tr.po
http://postgresql.gunduz.org/translation/PostgreSQL-8.0/PgSQL-DilDosyalari/libpq-tr.po
http://postgresql.gunduz.org/translation/PostgreSQL-8.0/PgSQL-DilDosyalari/pg_resetxlog-tr.po
http://postgresql.gunduz.org/translation/PostgreSQL-8.0/PgSQL-DilDosyalari/pg_dump-tr.po
are the updated files, could you please apply these ones, too?
Regards,
--
Devrim GUNDUZ 
devrim~gunduz.org, devrim~PostgreSQL.org, devrim.gunduz~linux.org.tr
http://www.tdmsoft.com http://www.gunduz.org

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


[PATCHES] Turkish translation updates for 8.0.1

2005-01-30 Thread Devrim GUNDUZ
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1
Hi,
http://postgresql.gunduz.org/translation/PostgreSQL-8.0/PgSQL-DilDosyalari/psql-tr.po
http://postgresql.gunduz.org/translation/PostgreSQL-8.0/PgSQL-DilDosyalari/postgres-tr.po
are latest translations for Turkish. Could you please update them?
Regards,
- --
Devrim GUNDUZ 
devrim~gunduz.org, devrim~PostgreSQL.org, devrim.gunduz~linux.org.tr
http://www.tdmsoft.com http://www.gunduz.org
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.2.1 (GNU/Linux)

iD8DBQFB/MKxtl86P3SPfQ4RAn3jAJ4zR2QHMS3OqXZnoQ9KVrvHq54N5wCgqNC4
9Wa2jY7BxoX2WvO3P6ohPSc=
=l8tI
-END PGP SIGNATURE-
---(end of broadcast)---
TIP 6: Have you searched our list archives?
  http://archives.postgresql.org


[PATCHES] Latest Turkish translation updates

2005-01-15 Thread Devrim GUNDUZ
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1
Hi,
These are the latest updates:
http://postgresql.gunduz.org/translation/PostgreSQL-8.0/PgSQL-DilDosyalari/initdb-tr.po
http://postgresql.gunduz.org/translation/PostgreSQL-8.0/PgSQL-DilDosyalari/pg_config-tr.po
http://postgresql.gunduz.org/translation/PostgreSQL-8.0/PgSQL-DilDosyalari/pg_ctl-tr.po
http://postgresql.gunduz.org/translation/PostgreSQL-8.0/PgSQL-DilDosyalari/pg_dump-tr.po
http://postgresql.gunduz.org/translation/PostgreSQL-8.0/PgSQL-DilDosyalari/postgres-tr.po
http://postgresql.gunduz.org/translation/PostgreSQL-8.0/PgSQL-DilDosyalari/psql-tr.po
BTW... Peter, we see some errors on postgres-tr.po file, on nlsstatus 
page 
(http://developer.postgresql.org/~petere/nlsstatus/po-current/postgres-tr.po.err)
po/postgres-tr.po:9383: number of format specifiers in msgid and msgstr 
does not match

We can't reproduce it with msgfmt -v. How do you get those errors?
Regards,
- --
Devrim GUNDUZ 
devrim~gunduz.org, devrim~PostgreSQL.org, devrim.gunduz~linux.org.tr
http://www.tdmsoft.com http://www.gunduz.org
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.2.1 (GNU/Linux)

iD8DBQFB6R/ltl86P3SPfQ4RAlB9AKCeg25NvhQlnYeT8YG/ZuDI16o1JACgxTRK
A+52hU+WAZ0KQTK8U4q9wTc=
=uvlT
-END PGP SIGNATURE-
---(end of broadcast)---
TIP 4: Don't 'kill -9' the postmaster


[PATCHES] Turkish translation update

2005-01-09 Thread Devrim GUNDUZ
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1
Hi,
http://postgresql.gunduz.org/translation/PostgreSQL-8.0/PgSQL-DilDosyalari/postgres-tr.po
is the latest update for postgres (we hope :) )
Could you please apply it to -HEAD?
Regards,
- --
Devrim GUNDUZ 
devrim~gunduz.orgdevrim.gunduz~linux.org.tr
			http://www.tdmsoft.com
			http://www.gunduz.org
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.2.1 (GNU/Linux)

iD8DBQFB4Wvrtl86P3SPfQ4RAodDAJ4vwDP3MhndTcLivLcbBSj64snjvwCfRzF0
cyxzj363tmglI8EMlRZ/bYo=
=tJE0
-END PGP SIGNATURE-
---(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


Re: [PATCHES] [HACKERS] Final call for translation updates

2005-01-04 Thread Devrim GUNDUZ
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1
Hi,
On Tue, 4 Jan 2005, Peter Eisentraut wrote:
With the 8.0 release around the corner, this is as good a time as ever
to send in the last translation updates.  If your files are not in CVS
right now, I don't have them, so please send them again in this case.
Turkish updates:
http://postgresql.gunduz.org/translation/PostgreSQL-8.0/PgSQL-DilDosyalari/pg_ctl-tr.po
http://postgresql.gunduz.org/translation/PostgreSQL-8.0/PgSQL-DilDosyalari/pg_resetxlog-tr.po
http://postgresql.gunduz.org/translation/PostgreSQL-8.0/PgSQL-DilDosyalari/postgres-tr.po
Regards,
- --
Devrim GUNDUZ 
devrim~gunduz.orgdevrim.gunduz~linux.org.tr
			http://www.tdmsoft.com
			http://www.gunduz.org
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.2.1 (GNU/Linux)

iD8DBQFB2vajtl86P3SPfQ4RAvToAKDW8Fpm8P+YIPM28oyWoD6byjF0ZQCfQjDw
3O8nLbcFkjPziO6GHwoJHqE=
=aLNK
-END PGP SIGNATURE-
---(end of broadcast)---
TIP 6: Have you searched our list archives?
  http://archives.postgresql.org


[PATCHES] Updated Turkish translations for 8.0.0

2004-12-14 Thread Devrim GUNDUZ
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1
Hi,
http://postgresql.gunduz.org/translation/PostgreSQL-8.0/PgSQL-DilDosyalari/postgres-tr.po
fixes the error, per 
http://developer.postgresql.org/~petere/nlsstatus/po-current/postgres-tr.po.err

http://postgresql.gunduz.org/translation/PostgreSQL-8.0/PgSQL-DilDosyalari/pg_resetxlog-tr.po
http://postgresql.gunduz.org/translation/PostgreSQL-8.0/PgSQL-DilDosyalari/pgscripts-tr.po
are the latest updates...
Could you please apply them?
Regards,
- --
Devrim GUNDUZ 
devrim~gunduz.orgdevrim.gunduz~linux.org.tr
 			http://www.tdmsoft.com
 			http://www.gunduz.org
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.2.1 (GNU/Linux)

iD8DBQFBv4tltl86P3SPfQ4RAuJkAJsF85L8EpdliCAiN6fhrAXIwbLUcQCgx/Np
1UK89XQkSDyZFsdYSm1VsXE=
=nsJA
-END PGP SIGNATURE-
---(end of broadcast)---
TIP 6: Have you searched our list archives?
  http://archives.postgresql.org


[PATCHES] Updated Turkish translations for PostgreSQL 8.0

2004-12-11 Thread Devrim GUNDUZ
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1
Hi,
We've updated the Turkish translations:
http://postgresql.gunduz.org/translation/PostgreSQL-8.0/PgSQL-DilDosyalari/initdb-tr.po
http://postgresql.gunduz.org/translation/PostgreSQL-8.0/PgSQL-DilDosyalari/pg_config-tr.po
http://postgresql.gunduz.org/translation/PostgreSQL-8.0/PgSQL-DilDosyalari/pg_ctl-tr.po
http://postgresql.gunduz.org/translation/PostgreSQL-8.0/PgSQL-DilDosyalari/pg_dump-tr.po
http://postgresql.gunduz.org/translation/PostgreSQL-8.0/PgSQL-DilDosyalari/postgres-tr.po
http://postgresql.gunduz.org/translation/PostgreSQL-8.0/PgSQL-DilDosyalari/psql-tr.po
Could you please commit them?
Regards,
- --
Devrim GUNDUZ 
devrim~gunduz.orgdevrim.gunduz~linux.org.tr
			http://www.tdmsoft.com
			http://www.gunduz.org
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.2.1 (GNU/Linux)

iD8DBQFBuvMBtl86P3SPfQ4RAhmKAKDlIyu9euRtjPlfjqPZVr2T7N+eZQCg0YLZ
omNH7GJWQ/5I5MHUMkZPa+0=
=IgmP
-END PGP SIGNATURE-
---(end of broadcast)---
TIP 4: Don't 'kill -9' the postmaster


[PATCHES] Updated Turkish Translations for PostgreSQL 8.0

2004-11-30 Thread Devrim GUNDUZ
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1
Hi,
We've updated Turkish translations:
http://postgresql.gunduz.org/translation/PostgreSQL-8.0/PgSQL-DilDosyalari/initdb-tr.po
http://postgresql.gunduz.org/translation/PostgreSQL-8.0/PgSQL-DilDosyalari/pg_config-tr.po
http://postgresql.gunduz.org/translation/PostgreSQL-8.0/PgSQL-DilDosyalari/pg_ctl-tr.po
http://postgresql.gunduz.org/translation/PostgreSQL-8.0/PgSQL-DilDosyalari/pg_dump-tr.po
http://postgresql.gunduz.org/translation/PostgreSQL-8.0/PgSQL-DilDosyalari/postgres-tr.po
http://postgresql.gunduz.org/translation/PostgreSQL-8.0/PgSQL-DilDosyalari/psql-tr.po
Could you please apply them?
Regards,
- --
Devrim GUNDUZ 
devrim~gunduz.orgdevrim.gunduz~linux.org.tr
			http://www.tdmsoft.com
			http://www.gunduz.org
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.2.1 (GNU/Linux)

iD8DBQFBrQjDtl86P3SPfQ4RAhLFAKC73RnKwfJTao/32+Txu1CsA1dzOACdG2wm
s1ihOmIfRZSIbsrHc8452LY=
=9c5U
-END PGP SIGNATURE-
---(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


[PATCHES] Updated Turkish translations for 8.0

2004-11-15 Thread Devrim GUNDUZ
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1
Hi,
We've updated Turkish translations for 8.0:
http://postgresql.gunduz.org/translation/PostgreSQL-8.0/PgSQL-DilDosyalari/initdb-tr.po
http://postgresql.gunduz.org/translation/PostgreSQL-8.0/PgSQL-DilDosyalari/pg_dump-tr.po
http://postgresql.gunduz.org/translation/PostgreSQL-8.0/PgSQL-DilDosyalari/pgscripts-tr.po
http://postgresql.gunduz.org/translation/PostgreSQL-8.0/PgSQL-DilDosyalari/postgres-tr.po
http://postgresql.gunduz.org/translation/PostgreSQL-8.0/PgSQL-DilDosyalari/psql-tr.po
Coukd you please apply it?
Regards,
- --
Devrim GUNDUZ 
devrim~gunduz.orgdevrim.gunduz~linux.org.tr
			http://www.tdmsoft.com
			http://www.gunduz.org
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.2.1 (GNU/Linux)

iD8DBQFBmLaStl86P3SPfQ4RAkYvAJ9IiGWUczCLmHHbISWxs2C+V2J0CgCfeMeE
PcngZtcC9cXqpfbmTOwLu18=
=2GPU
-END PGP SIGNATURE-
---(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


[PATCHES] Updated Turkish Translations for PostgreSQL 8.0

2004-11-09 Thread Devrim GUNDUZ
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1
Hi,
Below are the updated translations for PostgreSQL 8.0:
http://postgresql.gunduz.org/translation/PostgreSQL-8.0/PgSQL-DilDosyalari/initdb-tr.po
http://postgresql.gunduz.org/translation/PostgreSQL-8.0/PgSQL-DilDosyalari/libpq-tr.po
http://postgresql.gunduz.org/translation/PostgreSQL-8.0/PgSQL-DilDosyalari/pg_config-tr.po
http://postgresql.gunduz.org/translation/PostgreSQL-8.0/PgSQL-DilDosyalari/pg_controldata-tr.po
http://postgresql.gunduz.org/translation/PostgreSQL-8.0/PgSQL-DilDosyalari/pg_ctl-tr.po
http://postgresql.gunduz.org/translation/PostgreSQL-8.0/PgSQL-DilDosyalari/pg_dump-tr.po
http://postgresql.gunduz.org/translation/PostgreSQL-8.0/PgSQL-DilDosyalari/pg_resetxlog-tr.po
http://postgresql.gunduz.org/translation/PostgreSQL-8.0/PgSQL-DilDosyalari/pgscripts-tr.po
http://postgresql.gunduz.org/translation/PostgreSQL-8.0/PgSQL-DilDosyalari/postgres-tr.po
http://postgresql.gunduz.org/translation/PostgreSQL-8.0/PgSQL-DilDosyalari/psql-tr.po
Could you please apply them before 8.0.0beta5 so that we can test it more?
7.4 updates and 7.3 backports are on the way.
Regards,
- --
Devrim GUNDUZ 
devrim~gunduz.orgdevrim.gunduz~linux.org.tr
			http://www.tdmsoft.com
			http://www.gunduz.org
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.2.1 (GNU/Linux)

iD8DBQFBkKKstl86P3SPfQ4RAq+iAKCMGwLYfk44+hyJV1DSSST2bay+RwCfZpjf
0njOGAXmnYC57jvy1Xte6KA=
=Q3a9
-END PGP SIGNATURE-
---(end of broadcast)---
TIP 5: Have you checked our extensive FAQ?
  http://www.postgresql.org/docs/faqs/FAQ.html


Re: [PATCHES] Updated Turkish Translations for PostgreSQL 8.0

2004-11-09 Thread Devrim GUNDUZ
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1
Hi,
On Tue, 9 Nov 2004, Peter Eisentraut wrote:
Below are the updated translations for PostgreSQL 8.0:
Installed, except jdbc-tr.po.  Please send that one to the jdbc list.
Thanks.
(jdbc wasn't included in the mail anyway :) )
- --
Devrim GUNDUZ 
devrim~gunduz.orgdevrim.gunduz~linux.org.tr
			http://www.tdmsoft.com
			http://www.gunduz.org
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.2.1 (GNU/Linux)

iD8DBQFBkOZ/tl86P3SPfQ4RAvmNAJ9jlo3/mWKM0UyjheXuqLKbQLTl3wCfYujZ
cVZ/+uKrkGFPb+3bZSd0wKw=
=IHXl
-END PGP SIGNATURE-
---(end of broadcast)---
TIP 4: Don't 'kill -9' the postmaster


[PATCHES] Updated Turkish translation: postgres

2004-10-28 Thread Devrim GUNDUZ
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1
Hi,
Nicolai Tufar has began updating Turkish translation of postgres:
http://postgresql.gunduz.org/translation/PostgreSQL-8.0/PgSQL-DilDosyalari/postgres-tr.po
Could you please apply it for 8.0?
Regards,
- --
Devrim GUNDUZ 
devrim~gunduz.orgdevrim.gunduz~linux.org.tr
			http://www.tdmsoft.com
			http://www.gunduz.org
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.2.1 (GNU/Linux)

iD8DBQFBgLTqtl86P3SPfQ4RAlcoAJ4oUbORN/7fby9y/8bFJutwTxX0EwCePzY2
0O8DR47j6tb4LHlGyEeF3Kc=
=F3G0
-END PGP SIGNATURE-
---(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


[PATCHES] New Turkish translations for 7.4 branch + an update for 8.0

2004-10-28 Thread Devrim GUNDUZ
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1
Hi,
Below are new Turkish translations for 7.4 branch:
http://postgresql.gunduz.org/translation/PostgreSQL-7.4/PgSQL-DilDosyalari/libpq-tr.po
http://postgresql.gunduz.org/translation/PostgreSQL-7.4/PgSQL-DilDosyalari/pg_controldata-tr.po
http://postgresql.gunduz.org/translation/PostgreSQL-7.4/PgSQL-DilDosyalari/pg_resetxlog-tr.po
http://postgresql.gunduz.org/translation/PostgreSQL-7.4/PgSQL-DilDosyalari/pgscripts-tr.po
http://postgresql.gunduz.org/translation/PostgreSQL-7.4/PgSQL-DilDosyalari/psql-tr.po
Also, an update for 8.0
http://postgresql.gunduz.org/translation/PostgreSQL-8.0/PgSQL-DilDosyalari/libpq-tr.po
Could you please apply them?
Regards,
- --
Devrim GUNDUZ 
devrim~gunduz.orgdevrim.gunduz~linux.org.tr
			http://www.tdmsoft.com
			http://www.gunduz.org
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.2.1 (GNU/Linux)

iD8DBQFBgRo/tl86P3SPfQ4RAnTmAKC/tz2pAwCdRLx4Bi9g0WZBz3KU2wCgkRam
+qiexsXBDI6nsmKuRi/bjRQ=
=B2KU
-END PGP SIGNATURE-
---(end of broadcast)---
TIP 4: Don't 'kill -9' the postmaster


[PATCHES] Updated Turkish translations

2004-10-27 Thread Devrim GUNDUZ
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1
Hi,
http://postgresql.gunduz.org/translation/PostgreSQL-8.0/PgSQL-DilDosyalari/libpq-tr.po
http://postgresql.gunduz.org/translation/PostgreSQL-8.0/PgSQL-DilDosyalari/pg_ctl-tr.po
http://postgresql.gunduz.org/translation/PostgreSQL-8.0/PgSQL-DilDosyalari/psql-tr.po
These are %100 against current strings.
Could you please apply them for 8.0?
Regards,
- --
Devrim GUNDUZ 
devrim~gunduz.orgdevrim.gunduz~linux.org.tr
			http://www.tdmsoft.com
			http://www.gunduz.org
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.2.1 (GNU/Linux)

iD8DBQFBf8VPtl86P3SPfQ4RAvkWAJ9eJtgDLNWSbze8I7OIYtJeY4zIUwCeJVGM
SSPvEYbw+QlQJFjI/xmMs/M=
=8OO/
-END PGP SIGNATURE-
---(end of broadcast)---
TIP 7: don't forget to increase your free space map settings


[PATCHES] Updated pg_ctl Turkish translation

2004-10-20 Thread Devrim GUNDUZ
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1
Hi,
After the latest changes, I've updated pg_ctl Turkish translation:
http://www.gunduz.org/postgresql/translation/PostgreSQL-8.0/PgSQL-DilDosyalari/pg_ctl-tr.po
Could you please apply it for 8.0 ?
Regards,
- --
Devrim GUNDUZ 
devrim~gunduz.orgdevrim.gunduz~linux.org.tr
			http://www.tdmsoft.com
			http://www.gunduz.org
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.2.1 (GNU/Linux)

iD8DBQFBdppktl86P3SPfQ4RAgMTAKDbuweXeeBXTywbxNMH94+4rh6uIwCeKvWm
bt9muk7DgXt1x6LYmKmyK1Q=
=Lodd
-END PGP SIGNATURE-
---(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


[PATCHES] Updated Turkish translations

2004-10-19 Thread Devrim GUNDUZ
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1
Hi,
http://www.gunduz.org/postgresql/translation/PostgreSQL-8.0/PgSQL-DilDosyalari/pg_config-tr.po
is the updated pg_config translation.
Also, the following are initial translations for libpq and pg_dump:
http://www.gunduz.org/postgresql/translation/PostgreSQL-8.0/PgSQL-DilDosyalari/pg_dump-tr.po
http://www.gunduz.org/postgresql/translation/PostgreSQL-8.0/PgSQL-DilDosyalari/libpq-tr.po
Could you please apply them?
Regards,
- --
Devrim GUNDUZ 
devrim~gunduz.orgdevrim.gunduz~linux.org.tr
			http://www.tdmsoft.com
			http://www.gunduz.org
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.2.1 (GNU/Linux)

iD8DBQFBdRsdtl86P3SPfQ4RAqDEAJ9UbaZGMXjA2TxYaX/58ecBcYBrKwCgyudc
le4sbNsgMEpwrnA9AOGtD+U=
=C5J2
-END PGP SIGNATURE-
---(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


[PATCHES] Updated Turkish translations

2004-10-18 Thread Devrim GUNDUZ
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1
Hi,
I've updated pg_ctl, initdb and pg_controldata translations:
http://www.gunduz.org/postgresql/translation/PostgreSQL-8.0/PgSQL-DilDosyalari/initdb-tr.po
http://www.gunduz.org/postgresql/translation/PostgreSQL-8.0/PgSQL-DilDosyalari/pg_controldata-tr.po
http://www.gunduz.org/postgresql/translation/PostgreSQL-8.0/PgSQL-DilDosyalari/pg_ctl-tr.po
Could you please apply them for 8.0?
Regards,
- --
Devrim GUNDUZ 
devrim~gunduz.orgdevrim.gunduz~linux.org.tr
			http://www.tdmsoft.com
			http://www.gunduz.org
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.2.1 (GNU/Linux)

iD8DBQFBc3Eztl86P3SPfQ4RAj5FAJ902ORHGVykMLMcwLhet4KYqe3wjQCdFZpo
W9w5r72oZ+ASKZH1n062368=
=JqyA
-END PGP SIGNATURE-
---(end of broadcast)---
TIP 5: Have you checked our extensive FAQ?
  http://www.postgresql.org/docs/faqs/FAQ.html


[PATCHES] (Turkish) New Translation: pgscripts

2004-10-18 Thread Devrim GUNDUZ
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1
Hi,
I've translated pgscripts into Turkish:
http://www.gunduz.org/postgresql/translation/PostgreSQL-8.0/PgSQL-DilDosyalari/pgscripts-tr.po
Could you please apply it?
Regards,
- --
Devrim GUNDUZ 
devrim~gunduz.orgdevrim.gunduz~linux.org.tr
 			http://www.tdmsoft.com
 			http://www.gunduz.org
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.2.1 (GNU/Linux)

iD8DBQFBc9aqtl86P3SPfQ4RAnnDAJwOpIkAez3jyCkv3loCs8pYwrzJqwCfZTzM
iDicvQ1oHFCvr9+RLTGCleQ=
=g5Nq
-END PGP SIGNATURE-
---(end of broadcast)---
TIP 5: Have you checked our extensive FAQ?
  http://www.postgresql.org/docs/faqs/FAQ.html


[PATCHES] (Turkish) New translation: libpq

2004-10-18 Thread Devrim GUNDUZ
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1
Hi,
I've translated about %35 of libpq into Turkish:
http://www.gunduz.org/postgresql/translation/PostgreSQL-8.0/PgSQL-DilDosyalari/libpq-tr.po
Could you please apply it for 8.0?
Regards,
- --
Devrim GUNDUZ 
devrim~gunduz.orgdevrim.gunduz~linux.org.tr
			http://www.tdmsoft.com
			http://www.gunduz.org
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.2.1 (GNU/Linux)

iD8DBQFBdAPktl86P3SPfQ4RAoWGAKDQmXFuzKZ640xfpN+o7CWZoTibhgCgvZHN
vQybbZxJUBqHdJHYxQWyCDs=
=TUzZ
-END PGP SIGNATURE-
---(end of broadcast)---
TIP 4: Don't 'kill -9' the postmaster


Re: [PATCHES] (Turkish)New translation: pg_config

2004-10-17 Thread Devrim GUNDUZ
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1
Hi,
On Sun, 17 Oct 2004, Peter Eisentraut wrote:
 Btw., you have the file names wrong.  The translated files should
have a .po extension.  .pot is an untranslated PO template.
Ok, thanks. I've updated them on my side and my cvs server.
Regards,
- --
Devrim GUNDUZ 
devrim~gunduz.orgdevrim.gunduz~linux.org.tr
			http://www.tdmsoft.com
			http://www.gunduz.org
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.2.1 (GNU/Linux)

iD8DBQFBcuDrtl86P3SPfQ4RAshyAKCdFwA8fErFDPg1GMkZTJSobNyEqQCdE4/Y
UZQYb5GoDYEh2gGEXaXVli0=
=qp6z
-END PGP SIGNATURE-
---(end of broadcast)---
TIP 7: don't forget to increase your free space map settings


[PATCHES] (Turkish)New translation: pg_config

2004-10-13 Thread Devrim GUNDUZ
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1
Hi,
I've just translated pg_config into Turkish:
http://www.gunduz.org/postgresql/translation/PostgreSQL-8.0/pg_config-tr.pot
Could you please apply it?
Regards,
- --
Devrim GUNDUZ 
devrim~gunduz.orgdevrim.gunduz~linux.org.tr
			http://www.tdmsoft.com
			http://www.gunduz.org
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.2.1 (GNU/Linux)

iD8DBQFBbYNGtl86P3SPfQ4RAnBNAKCW/EjbQqdF4jygx4aMEhx5U7DzGACgxQQL
0C8IYD9RgmB+xPwif0dGgxw=
=+MmX
-END PGP SIGNATURE-
---(end of broadcast)---
TIP 4: Don't 'kill -9' the postmaster


[PATCHES] (Turkish) New translation: pg_resetxlog, Updated translation: pg_ctl

2004-10-09 Thread Devrim GUNDUZ
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1
Hi,
I've fully translated pg_resetxlog into Turkish (new translation). It's 
below:

http://www.gunduz.org/postgresql/translation/PostgreSQL-8.0/pg_resetxlog-tr.pot
Also, updated pg_ctl translation to 100% :
http://www.gunduz.org/postgresql/translation/PostgreSQL-8.0/pg_ctl-tr.pot
Could you please apply them for 8.0?
BTW, on http://developer.postgresql.org/~petere/nlsstatus/#tcurrent ,
Turkish translation of pg_controldata seems 95%, but on my side:
$  msgfmt -o /dev/null -v -c pg_controldata-tr.pot
41 translated messages.
It should be 100%, IMHO.
Regards,
- --
Devrim GUNDUZ 
devrim~gunduz.orgdevrim.gunduz~linux.org.tr
			http://www.tdmsoft.com
			http://www.gunduz.org
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.2.1 (GNU/Linux)

iD8DBQFBZ7Z6tl86P3SPfQ4RAuGwAJ0S5/L6+tn5gAzkahOBHDclHXfARwCgxmcZ
5g6YlC0pPnZF+MFe1z1Oy5k=
=zJaV
-END PGP SIGNATURE-
---(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


[PATCHES] Turkish translation of initdb.pot

2004-09-15 Thread Devrim GUNDUZ
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1
Hi,
I've translated initdb.pot into Turkish, for PostgreSQL 8.0. This is the 
first time that initdb has been translated into Turkish -- I'm currently 
translating all the stuff.

To save bandwidth, I'm not attaching the po file. Here it is:
http://www.gunduz.org/postgresql/translation/PostgreSQL-8.0/initdb-tr.po
Could you please apply it for 8.0?
Regards,
- --
Devrim GUNDUZ 
devrim~gunduz.orgdevrim.gunduz~linux.org.tr
			http://www.tdmsoft.com
			http://www.gunduz.org
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.2.1 (GNU/Linux)

iD8DBQFBSHDltl86P3SPfQ4RAvP1AJ9kFshPUb24ZBg2NZHDSsJ71Smi6QCeMYnd
rwJEiJvPWXDfQJ4RsPBWB44=
=OaOR
-END PGP SIGNATURE-
---(end of broadcast)---
TIP 6: Have you searched our list archives?
  http://archives.postgresql.org


[PATCHES] Turkish translation of FAQ (fwd)

2004-03-02 Thread Devrim GUNDUZ
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1


Hi,

I cannot see this in the CVS. Could someone please apply it? I'd like it 
to be in 7.3.6 :(

Regards,
- -- Forwarded message --
Date: Tue, 24 Feb 2004 15:32:06 +0200 (EET)
From: Devrim GUNDUZ [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Cc: Volkan YAZICI [EMAIL PROTECTED]
Subject: [PATCHES] Turkish translation of FAQ

- --[PinePGP]--[begin]--

Hi,

I've sent Turkish translations of FAQ yesterday; in html and text
formats, but the mail wasn't delivered to the list.

To save bandwidth, I'll not be attaching the files to this mail. Here is
the URL:

http://www.gunduz.org/seminer/pg/PostgreSQL-FAQ-Turkish.tar.gz

Could you please apply them to CVS?

Regards,
- --
Devrim GUNDUZ
[EMAIL PROTECTED]   [EMAIL PROTECTED]
http://www.TDMSoft.com
http://www.gunduz.org
- --[PinePGP]---
gpg: Signature made Tue 24 Feb 2004 03:32:09 PM EET using DSA key ID 748F7D0E
gpg: Good signature from Devrim Gunduz [EMAIL PROTECTED]
- --[PinePGP][end]--
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.2.1 (GNU/Linux)

iD8DBQFARIpStl86P3SPfQ4RAo/3AKCIGmTmYRPLjImS7VfNGeBALvLQbACgl+FC
fMZZTQjT6y//XBYXeq/neKA=
=49Br
-END PGP SIGNATURE-


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


[PATCHES] Turkish translation of FAQ

2004-02-24 Thread Devrim GUNDUZ
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1


Hi,

I've sent Turkish translations of FAQ yesterdat; in html and text
formats, but the mail wasn't delivered to the list.

To save bandwidth, I'll not be attaching the files to this mail. Here is 
the URL:

http://www.gunduz.org/seminer/pg/PostgreSQL-FAQ-Turkish.tar.gz

Could you please apply them to CVS?
 
Regards,
- -- 
Devrim GUNDUZ  
[EMAIL PROTECTED]   [EMAIL PROTECTED] 
http://www.TDMSoft.com
http://www.gunduz.org
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.2.1 (GNU/Linux)

iD8DBQFAO1JZtl86P3SPfQ4RAiU1AJ9ex2IjCmvIYbStGr5meJoEY5y+6QCfa8sG
CN0l/lqtNUZq9dwAsnXXZQM=
=oepu
-END PGP SIGNATURE-


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