Re: [PATCHES] error report on slru.c

2004-10-03 Thread Gaetano Mendola
Tom Lane wrote: Gaetano Mendola <[EMAIL PROTECTED]> writes: here a patch that 1) Rise the information about the file missing on pg_clog from detail to error This violates the message style guidelines, IMHO. Tom, your opinion is not humble but is is really appreciated, however I think that a mis

[PATCHES] license cleanup

2004-10-03 Thread Neil Conway
This patch cleans up the licensing terms on some imported BSD-licensed files in the source tree: - src/port/qsort.c is from NetBSD, and still contained the old 4-clause BSD license. The NetBSD folks have updated the BSD licensing terms in their CVS code, so I upgraded our copy to the latest CVS

Re: [PATCHES] license cleanup

2004-10-03 Thread Tom Lane
Neil Conway <[EMAIL PROTECTED]> writes: > This patch cleans up the licensing terms on some imported BSD-licensed > files in the source tree: Looks good. > I was also going to update the licenses on files imported from FreeBSD, > but apparently they haven't bothered fixing their files to reflect

Re: [PATCHES] Translation update for 8.0: libpq-ru

2004-10-03 Thread Peter Eisentraut
Serguei A. Mokhov wrote: > I have updated the SSL-related messages in libpq that became fuzzy > due to recent visit from the message style police. Please apply. Done. -- Peter Eisentraut http://developer.postgresql.org/~petere/ ---(end of broadcast)-

Re: [PATCHES] Translation updates for pt_BR

2004-10-03 Thread Peter Eisentraut
Euler Taveira de Oliveira wrote: > Attached is the initdb, libpq, pg_controldata, pg_ctl, pg_resetxlog, > psql and scripts translation updates. Note that pg_ctl have to be > added to nls.mk > Please apply. Done. -- Peter Eisentraut http://developer.postgresql.org/~petere/ -

Re: [PATCHES] pg_dump translation update: pt_BR

2004-10-03 Thread Peter Eisentraut
Euler Taveira de Oliveira wrote: > This is the pg_dump translation update. Please apply it to HEAD. Done. -- Peter Eisentraut http://developer.postgresql.org/~petere/ ---(end of broadcast)--- TIP 2: you can get off all lists at once with the unre

Re: [PATCHES] backend translation update: pt_BR

2004-10-03 Thread Peter Eisentraut
Euler Taveira de Oliveira wrote: > This is the backend translation update. Please apply it to HEAD. Done. -- Peter Eisentraut http://developer.postgresql.org/~petere/ ---(end of broadcast)--- TIP 7: don't forget to increase your free space map se

Re: [PATCHES]Update postgres-zh_TW.po for 8.0

2004-10-03 Thread Peter Eisentraut
Zhenbang Wei wrote: > Invalid messages fixed Installed. Btw., the statistics on th web sometimes show false positives (well, really false negatives). It uses a hacked-up version of the gettext tools to display the tables, but I've noticed that you shouldn't believe everything it says. If you

Re: [PATCHES] error report on slru.c

2004-10-03 Thread Peter Eisentraut
Tom Lane wrote: > Gaetano Mendola <[EMAIL PROTECTED]> writes: > > here a patch that > > 1) Rise the information about the file missing on pg_clog from > > detail to error > > This violates the message style guidelines, IMHO. My first impression is that it should be swapped. The error is that

Re: [PATCHES] error report on slru.c

2004-10-03 Thread Tom Lane
Peter Eisentraut <[EMAIL PROTECTED]> writes: > Tom Lane wrote: >> This violates the message style guidelines, IMHO. > My first impression is that it should be swapped. The error is that the > file could not be opened. The detail is that the files is related to > transaction status information.

Re: [PATCHES] error report on slru.c

2004-10-03 Thread Gaetano Mendola
Tom Lane wrote: Peter Eisentraut <[EMAIL PROTECTED]> writes: Tom Lane wrote: This violates the message style guidelines, IMHO. My first impression is that it should be swapped. The error is that the file could not be opened. The detail is that the files is related to transaction status informa

[PATCHES] pgcrypto: make const array static

2004-10-03 Thread Neil Conway
This one-line patches merges a micro-opt from upstream (OpenBSD) sources: we can make a read-only local array "static" and reduce the size of the generated object file slightly. Barring any objections, I intend to apply this patch today or tomorrow. -Neil Index: contrib/pgcrypto/blf.c ==