[COMMITTERS] pgsql: Make .pot files depend on the makefiles, so that they are updated
Log Message: --- Make .pot files depend on the makefiles, so that they are updated when the file or trigger function lists are changed. Modified Files: -- pgsql/src: nls-global.mk (r1.18 -> r1.19) (http://anoncvs.postgresql.org/cvsweb.cgi/pgsql/src/nls-global.mk?r1=1.18&r2=1.19) -- Sent via pgsql-committers mailing list (pgsql-committers@postgresql.org) To make changes to your subscription: http://www.postgresql.org/mailpref/pgsql-committers
[COMMITTERS] pgsql: Build needed things in src/test/regress/ first.
Log Message: --- Build needed things in src/test/regress/ first. And some build rules normalization. Modified Files: -- pgsql/src/interfaces/ecpg/test: Makefile (r1.76 -> r1.77) (http://anoncvs.postgresql.org/cvsweb.cgi/pgsql/src/interfaces/ecpg/test/Makefile?r1=1.76&r2=1.77) -- Sent via pgsql-committers mailing list (pgsql-committers@postgresql.org) To make changes to your subscription: http://www.postgresql.org/mailpref/pgsql-committers
[COMMITTERS] pgsql: NLS cleanup in ecpglib Replace leftover instances of _() by
Log Message: --- NLS cleanup in ecpglib Replace leftover instances of _() by ecpg_gettext(), the latter being the correct way to refer to the library's message catalog, instead of the one of the program using the library. Drop NLS support for ecpg_log(), which is a debugging instrument similar to elog() in the backend. We cannot support NLS in the ecpg compatlib, because that requires ecpg_gettext, which is in ecpglib, which is not a dependency of compatlib. It doesn't seem worthwhile to worry about this, since the only translatable string is "out of memory", and gettext probably won't be able to do much without memory either. Adjust messages to project style. Modified Files: -- pgsql/src/interfaces/ecpg/compatlib: informix.c (r1.56 -> r1.57) (http://anoncvs.postgresql.org/cvsweb.cgi/pgsql/src/interfaces/ecpg/compatlib/informix.c?r1=1.56&r2=1.57) pgsql/src/interfaces/ecpg/ecpglib: connect.c (r1.52 -> r1.53) (http://anoncvs.postgresql.org/cvsweb.cgi/pgsql/src/interfaces/ecpg/ecpglib/connect.c?r1=1.52&r2=1.53) data.c (r1.41 -> r1.42) (http://anoncvs.postgresql.org/cvsweb.cgi/pgsql/src/interfaces/ecpg/ecpglib/data.c?r1=1.41&r2=1.42) descriptor.c (r1.30 -> r1.31) (http://anoncvs.postgresql.org/cvsweb.cgi/pgsql/src/interfaces/ecpg/ecpglib/descriptor.c?r1=1.30&r2=1.31) error.c (r1.20 -> r1.21) (http://anoncvs.postgresql.org/cvsweb.cgi/pgsql/src/interfaces/ecpg/ecpglib/error.c?r1=1.20&r2=1.21) execute.c (r1.78 -> r1.79) (http://anoncvs.postgresql.org/cvsweb.cgi/pgsql/src/interfaces/ecpg/ecpglib/execute.c?r1=1.78&r2=1.79) misc.c (r1.47 -> r1.48) (http://anoncvs.postgresql.org/cvsweb.cgi/pgsql/src/interfaces/ecpg/ecpglib/misc.c?r1=1.47&r2=1.48) nls.mk (r1.1 -> r1.2) (http://anoncvs.postgresql.org/cvsweb.cgi/pgsql/src/interfaces/ecpg/ecpglib/nls.mk?r1=1.1&r2=1.2) pgsql/src/interfaces/ecpg/test/expected: connect-test2.stderr (r1.9 -> r1.10) (http://anoncvs.postgresql.org/cvsweb.cgi/pgsql/src/interfaces/ecpg/test/expected/connect-test2.stderr?r1=1.9&r2=1.10) connect-test3.stderr (r1.9 -> r1.10) (http://anoncvs.postgresql.org/cvsweb.cgi/pgsql/src/interfaces/ecpg/test/expected/connect-test3.stderr?r1=1.9&r2=1.10) connect-test4.stderr (r1.3 -> r1.4) (http://anoncvs.postgresql.org/cvsweb.cgi/pgsql/src/interfaces/ecpg/test/expected/connect-test4.stderr?r1=1.3&r2=1.4) connect-test5.stderr (r1.9 -> r1.10) (http://anoncvs.postgresql.org/cvsweb.cgi/pgsql/src/interfaces/ecpg/test/expected/connect-test5.stderr?r1=1.9&r2=1.10) preproc-init.stderr (r1.2 -> r1.3) (http://anoncvs.postgresql.org/cvsweb.cgi/pgsql/src/interfaces/ecpg/test/expected/preproc-init.stderr?r1=1.2&r2=1.3) preproc-whenever.stderr (r1.9 -> r1.10) (http://anoncvs.postgresql.org/cvsweb.cgi/pgsql/src/interfaces/ecpg/test/expected/preproc-whenever.stderr?r1=1.9&r2=1.10) sql-fetch.stderr (r1.9 -> r1.10) (http://anoncvs.postgresql.org/cvsweb.cgi/pgsql/src/interfaces/ecpg/test/expected/sql-fetch.stderr?r1=1.9&r2=1.10) sql-quote.stderr (r1.10 -> r1.11) (http://anoncvs.postgresql.org/cvsweb.cgi/pgsql/src/interfaces/ecpg/test/expected/sql-quote.stderr?r1=1.10&r2=1.11) -- Sent via pgsql-committers mailing list (pgsql-committers@postgresql.org) To make changes to your subscription: http://www.postgresql.org/mailpref/pgsql-committers
[COMMITTERS] pgsql: Remove unneeded GETTEXT_TRIGGERS.
Log Message: --- Remove unneeded GETTEXT_TRIGGERS. Modified Files: -- pgsql/src/pl/tcl: nls.mk (r1.1 -> r1.2) (http://anoncvs.postgresql.org/cvsweb.cgi/pgsql/src/pl/tcl/nls.mk?r1=1.1&r2=1.2) -- Sent via pgsql-committers mailing list (pgsql-committers@postgresql.org) To make changes to your subscription: http://www.postgresql.org/mailpref/pgsql-committers
[COMMITTERS] pgsql: Cleanup pass over PL/Python NLS.
Log Message: --- Cleanup pass over PL/Python NLS. Add translation support to PLy_elog and PLy_exception_set, and clarify some error messages. Modified Files: -- pgsql/src/pl/plpython: Makefile (r1.31 -> r1.32) (http://anoncvs.postgresql.org/cvsweb.cgi/pgsql/src/pl/plpython/Makefile?r1=1.31&r2=1.32) nls.mk (r1.1 -> r1.2) (http://anoncvs.postgresql.org/cvsweb.cgi/pgsql/src/pl/plpython/nls.mk?r1=1.1&r2=1.2) plpython.c (r1.117 -> r1.118) (http://anoncvs.postgresql.org/cvsweb.cgi/pgsql/src/pl/plpython/plpython.c?r1=1.117&r2=1.118) pgsql/src/pl/plpython/expected: plpython_error.out (r1.3 -> r1.4) (http://anoncvs.postgresql.org/cvsweb.cgi/pgsql/src/pl/plpython/expected/plpython_error.out?r1=1.3&r2=1.4) plpython_test.out (r1.6 -> r1.7) (http://anoncvs.postgresql.org/cvsweb.cgi/pgsql/src/pl/plpython/expected/plpython_test.out?r1=1.6&r2=1.7) -- Sent via pgsql-committers mailing list (pgsql-committers@postgresql.org) To make changes to your subscription: http://www.postgresql.org/mailpref/pgsql-committers
[COMMITTERS] pgsql: Fix generation too long headline with ShortWords.
Log Message: --- Fix generation too long headline with ShortWords. Per http://archives.postgresql.org/pgsql-hackers/2008-09/msg01088.php Modified Files: -- pgsql/src/backend/tsearch: wparser_def.c (r1.18 -> r1.19) (http://anoncvs.postgresql.org/cvsweb.cgi/pgsql/src/backend/tsearch/wparser_def.c?r1=1.18&r2=1.19) -- Sent via pgsql-committers mailing list (pgsql-committers@postgresql.org) To make changes to your subscription: http://www.postgresql.org/mailpref/pgsql-committers
[COMMITTERS] pgsql: Fix URL generation in headline.
Log Message: --- Fix URL generation in headline. Only tag lexeme will be replaced by space. Per http://archives.postgresql.org/pgsql-bugs/2008-12/msg00013.php Modified Files: -- pgsql/src/backend/tsearch: ts_parse.c (r1.10 -> r1.11) (http://anoncvs.postgresql.org/cvsweb.cgi/pgsql/src/backend/tsearch/ts_parse.c?r1=1.10&r2=1.11) wparser_def.c (r1.19 -> r1.20) (http://anoncvs.postgresql.org/cvsweb.cgi/pgsql/src/backend/tsearch/wparser_def.c?r1=1.19&r2=1.20) pgsql/src/include/tsearch: ts_public.h (r1.12 -> r1.13) (http://anoncvs.postgresql.org/cvsweb.cgi/pgsql/src/include/tsearch/ts_public.h?r1=1.12&r2=1.13) -- Sent via pgsql-committers mailing list (pgsql-committers@postgresql.org) To make changes to your subscription: http://www.postgresql.org/mailpref/pgsql-committers
[COMMITTERS] pgsql: Fix generation of too long headline with ShortWords.
Log Message: --- Fix generation of too long headline with ShortWords. Per http://archives.postgresql.org/pgsql-hackers/2008-09/msg01088.php Tags: REL8_3_STABLE Modified Files: -- pgsql/src/backend/tsearch: wparser_def.c (r1.14.2.1 -> r1.14.2.2) (http://anoncvs.postgresql.org/cvsweb.cgi/pgsql/src/backend/tsearch/wparser_def.c?r1=1.14.2.1&r2=1.14.2.2) -- Sent via pgsql-committers mailing list (pgsql-committers@postgresql.org) To make changes to your subscription: http://www.postgresql.org/mailpref/pgsql-committers
[COMMITTERS] pgsql: Fix URL generation in headline.
Log Message: --- Fix URL generation in headline. Only tag lexeme will be replaced by space. Per http://archives.postgresql.org/pgsql-bugs/2008-12/msg00013.php Tags: REL8_3_STABLE Modified Files: -- pgsql/src/backend/tsearch: ts_parse.c (r1.7 -> r1.7.2.1) (http://anoncvs.postgresql.org/cvsweb.cgi/pgsql/src/backend/tsearch/ts_parse.c?r1=1.7&r2=1.7.2.1) wparser_def.c (r1.14.2.2 -> r1.14.2.3) (http://anoncvs.postgresql.org/cvsweb.cgi/pgsql/src/backend/tsearch/wparser_def.c?r1=1.14.2.2&r2=1.14.2.3) pgsql/src/include/tsearch: ts_public.h (r1.8 -> r1.8.2.1) (http://anoncvs.postgresql.org/cvsweb.cgi/pgsql/src/include/tsearch/ts_public.h?r1=1.8&r2=1.8.2.1) -- Sent via pgsql-committers mailing list (pgsql-committers@postgresql.org) To make changes to your subscription: http://www.postgresql.org/mailpref/pgsql-committers
[COMMITTERS] pgsql: Fix generation of too long headline with ShortWords.
Log Message: --- Fix generation of too long headline with ShortWords. Per http://archives.postgresql.org/pgsql-hackers/2008-09/msg01088.php Tags: REL8_2_STABLE Modified Files: -- pgsql/contrib/tsearch2: wparser_def.c (r1.15.2.1 -> r1.15.2.2) (http://anoncvs.postgresql.org/cvsweb.cgi/pgsql/contrib/tsearch2/wparser_def.c?r1=1.15.2.1&r2=1.15.2.2) -- Sent via pgsql-committers mailing list (pgsql-committers@postgresql.org) To make changes to your subscription: http://www.postgresql.org/mailpref/pgsql-committers
[COMMITTERS] pgsql: Fix URL generation in headline.
Log Message: --- Fix URL generation in headline. Only tag lexeme will be replaced by space. Per http://archives.postgresql.org/pgsql-bugs/2008-12/msg00013.php Tags: REL8_2_STABLE Modified Files: -- pgsql/contrib/tsearch2: ts_cfg.c (r1.21.2.1 -> r1.21.2.2) (http://anoncvs.postgresql.org/cvsweb.cgi/pgsql/contrib/tsearch2/ts_cfg.c?r1=1.21.2.1&r2=1.21.2.2) ts_cfg.h (r1.5 -> r1.5.4.1) (http://anoncvs.postgresql.org/cvsweb.cgi/pgsql/contrib/tsearch2/ts_cfg.h?r1=1.5&r2=1.5.4.1) wparser_def.c (r1.15.2.2 -> r1.15.2.3) (http://anoncvs.postgresql.org/cvsweb.cgi/pgsql/contrib/tsearch2/wparser_def.c?r1=1.15.2.2&r2=1.15.2.3) -- Sent via pgsql-committers mailing list (pgsql-committers@postgresql.org) To make changes to your subscription: http://www.postgresql.org/mailpref/pgsql-committers
[COMMITTERS] pgsql: Fix URL generation in headline.
Log Message: --- Fix URL generation in headline. Only tag lexeme will be replaced by space. Per http://archives.postgresql.org/pgsql-bugs/2008-12/msg00013.php Tags: REL8_1_STABLE Modified Files: -- pgsql/contrib/tsearch2: ts_cfg.c (r1.15.2.1 -> r1.15.2.2) (http://anoncvs.postgresql.org/cvsweb.cgi/pgsql/contrib/tsearch2/ts_cfg.c?r1=1.15.2.1&r2=1.15.2.2) ts_cfg.h (r1.5 -> r1.5.2.1) (http://anoncvs.postgresql.org/cvsweb.cgi/pgsql/contrib/tsearch2/ts_cfg.h?r1=1.5&r2=1.5.2.1) wparser_def.c (r1.13.2.1 -> r1.13.2.2) (http://anoncvs.postgresql.org/cvsweb.cgi/pgsql/contrib/tsearch2/wparser_def.c?r1=1.13.2.1&r2=1.13.2.2) -- Sent via pgsql-committers mailing list (pgsql-committers@postgresql.org) To make changes to your subscription: http://www.postgresql.org/mailpref/pgsql-committers
[COMMITTERS] pgsql: Fix generation of too long headline with ShortWords.
Log Message: --- Fix generation of too long headline with ShortWords. Per http://archives.postgresql.org/pgsql-hackers/2008-09/msg01088.php Tags: REL8_1_STABLE Modified Files: -- pgsql/contrib/tsearch2: wparser_def.c (r1.13.2.2 -> r1.13.2.3) (http://anoncvs.postgresql.org/cvsweb.cgi/pgsql/contrib/tsearch2/wparser_def.c?r1=1.13.2.2&r2=1.13.2.3) -- Sent via pgsql-committers mailing list (pgsql-committers@postgresql.org) To make changes to your subscription: http://www.postgresql.org/mailpref/pgsql-committers
[COMMITTERS] pgsql: Fix generation of too long headline with ShortWords.
Log Message: --- Fix generation of too long headline with ShortWords. Per http://archives.postgresql.org/pgsql-hackers/2008-09/msg01088.php Tags: REL8_0_STABLE Modified Files: -- pgsql/contrib/tsearch2: wparser_def.c (r1.11.4.2 -> r1.11.4.3) (http://anoncvs.postgresql.org/cvsweb.cgi/pgsql/contrib/tsearch2/wparser_def.c?r1=1.11.4.2&r2=1.11.4.3) -- Sent via pgsql-committers mailing list (pgsql-committers@postgresql.org) To make changes to your subscription: http://www.postgresql.org/mailpref/pgsql-committers
[COMMITTERS] pgsql: Fix URL generation in headline.
Log Message: --- Fix URL generation in headline. Only tag lexeme will be replaced by space. Per http://archives.postgresql.org/pgsql-bugs/2008-12/msg00013.php Tags: REL8_0_STABLE Modified Files: -- pgsql/contrib/tsearch2: ts_cfg.c (r1.11.4.3 -> r1.11.4.4) (http://anoncvs.postgresql.org/cvsweb.cgi/pgsql/contrib/tsearch2/ts_cfg.c?r1=1.11.4.3&r2=1.11.4.4) ts_cfg.h (r1.4 -> r1.4.4.1) (http://anoncvs.postgresql.org/cvsweb.cgi/pgsql/contrib/tsearch2/ts_cfg.h?r1=1.4&r2=1.4.4.1) wparser_def.c (r1.11.4.3 -> r1.11.4.4) (http://anoncvs.postgresql.org/cvsweb.cgi/pgsql/contrib/tsearch2/wparser_def.c?r1=1.11.4.3&r2=1.11.4.4) pgsql/contrib/tsearch2/expected: tsearch2.out (r1.11.4.2 -> r1.11.4.3) (http://anoncvs.postgresql.org/cvsweb.cgi/pgsql/contrib/tsearch2/expected/tsearch2.out?r1=1.11.4.2&r2=1.11.4.3) -- Sent via pgsql-committers mailing list (pgsql-committers@postgresql.org) To make changes to your subscription: http://www.postgresql.org/mailpref/pgsql-committers
[COMMITTERS] pgsql: Change explanation of pg_switch_xlog()'s return value to match
Log Message: --- Change explanation of pg_switch_xlog()'s return value to match code. Modified Files: -- pgsql/doc/src/sgml: func.sgml (r1.469 -> r1.470) (http://anoncvs.postgresql.org/cvsweb.cgi/pgsql/doc/src/sgml/func.sgml?r1=1.469&r2=1.470) -- Sent via pgsql-committers mailing list (pgsql-committers@postgresql.org) To make changes to your subscription: http://www.postgresql.org/mailpref/pgsql-committers
[COMMITTERS] pgsql: Change explanation of pg_switch_xlog()'s return value to match
Log Message: --- Change explanation of pg_switch_xlog()'s return value to match code. Tags: REL8_3_STABLE Modified Files: -- pgsql/doc/src/sgml: func.sgml (r1.419.2.4 -> r1.419.2.5) (http://anoncvs.postgresql.org/cvsweb.cgi/pgsql/doc/src/sgml/func.sgml?r1=1.419.2.4&r2=1.419.2.5) -- Sent via pgsql-committers mailing list (pgsql-committers@postgresql.org) To make changes to your subscription: http://www.postgresql.org/mailpref/pgsql-committers
[COMMITTERS] pgsql: Fix URL generation in headline.
Log Message: --- Fix URL generation in headline. Only tag lexeme will be replaced by space. Per http://archives.postgresql.org/pgsql-bugs/2008-12/msg00013.php Tags: REL7_4_STABLE Modified Files: -- pgsql/contrib/tsearch2: ts_cfg.c (r1.5.2.3 -> r1.5.2.4) (http://anoncvs.postgresql.org/cvsweb.cgi/pgsql/contrib/tsearch2/ts_cfg.c?r1=1.5.2.3&r2=1.5.2.4) wparser_def.c (r1.5.4.3 -> r1.5.4.4) (http://anoncvs.postgresql.org/cvsweb.cgi/pgsql/contrib/tsearch2/wparser_def.c?r1=1.5.4.3&r2=1.5.4.4) -- Sent via pgsql-committers mailing list (pgsql-committers@postgresql.org) To make changes to your subscription: http://www.postgresql.org/mailpref/pgsql-committers
[COMMITTERS] pgsql: Change explanation of pg_switch_xlog()'s return value to match
Log Message: --- Change explanation of pg_switch_xlog()'s return value to match code. Tags: REL8_2_STABLE Modified Files: -- pgsql/doc/src/sgml: func.sgml (r1.347.2.7 -> r1.347.2.8) (http://anoncvs.postgresql.org/cvsweb.cgi/pgsql/doc/src/sgml/func.sgml?r1=1.347.2.7&r2=1.347.2.8) -- Sent via pgsql-committers mailing list (pgsql-committers@postgresql.org) To make changes to your subscription: http://www.postgresql.org/mailpref/pgsql-committers
[COMMITTERS] pgsql: Fix generation of too long headline with ShortWords.
Log Message: --- Fix generation of too long headline with ShortWords. Per http://archives.postgresql.org/pgsql-hackers/2008-09/msg01088.php Tags: REL7_4_STABLE Modified Files: -- pgsql/contrib/tsearch2: wparser_def.c (r1.5.4.2 -> r1.5.4.3) (http://anoncvs.postgresql.org/cvsweb.cgi/pgsql/contrib/tsearch2/wparser_def.c?r1=1.5.4.2&r2=1.5.4.3) -- Sent via pgsql-committers mailing list (pgsql-committers@postgresql.org) To make changes to your subscription: http://www.postgresql.org/mailpref/pgsql-committers
[COMMITTERS] pgsql: Remove period from primary error message.
Log Message: --- Remove period from primary error message. Modified Files: -- pgsql/src/bin/pg_ctl: pg_ctl.c (r1.106 -> r1.107) (http://anoncvs.postgresql.org/cvsweb.cgi/pgsql/src/bin/pg_ctl/pg_ctl.c?r1=1.106&r2=1.107) -- Sent via pgsql-committers mailing list (pgsql-committers@postgresql.org) To make changes to your subscription: http://www.postgresql.org/mailpref/pgsql-committers