diff options
Diffstat (limited to 'contrib')
297 files changed, 297 insertions, 297 deletions
diff --git a/contrib/Makefile b/contrib/Makefile index a1b7d913f50..c1d3317c2d5 100644 --- a/contrib/Makefile +++ b/contrib/Makefile @@ -1,4 +1,4 @@ -# $PostgreSQL: pgsql/contrib/Makefile,v 1.93 2010/06/14 16:17:56 sriggs Exp $ +# contrib/Makefile subdir = contrib top_builddir = .. diff --git a/contrib/adminpack/Makefile b/contrib/adminpack/Makefile index e1262fb2e9e..d4413ad1331 100644 --- a/contrib/adminpack/Makefile +++ b/contrib/adminpack/Makefile @@ -1,4 +1,4 @@ -# $PostgreSQL: pgsql/contrib/adminpack/Makefile,v 1.6 2007/11/10 23:59:50 momjian Exp $ +# contrib/adminpack/Makefile MODULE_big = adminpack PG_CPPFLAGS = -I$(libpq_srcdir) diff --git a/contrib/adminpack/adminpack.c b/contrib/adminpack/adminpack.c index 5271ef6ea2a..4f7eedaa26a 100644 --- a/contrib/adminpack/adminpack.c +++ b/contrib/adminpack/adminpack.c @@ -8,7 +8,7 @@ * Author: Andreas Pflug <pgadmin@pse-consulting.de> * * IDENTIFICATION - * $PostgreSQL: pgsql/contrib/adminpack/adminpack.c,v 1.13 2010/01/02 16:57:32 momjian Exp $ + * contrib/adminpack/adminpack.c * *------------------------------------------------------------------------- */ diff --git a/contrib/adminpack/adminpack.sql.in b/contrib/adminpack/adminpack.sql.in index de29bacd514..6e389975d08 100644 --- a/contrib/adminpack/adminpack.sql.in +++ b/contrib/adminpack/adminpack.sql.in @@ -1,4 +1,4 @@ -/* $PostgreSQL: pgsql/contrib/adminpack/adminpack.sql.in,v 1.6 2007/11/13 04:24:27 momjian Exp $ */ +/* contrib/adminpack/adminpack.sql.in */ /* *********************************************** * Administrative functions for PostgreSQL diff --git a/contrib/adminpack/uninstall_adminpack.sql b/contrib/adminpack/uninstall_adminpack.sql index 893f081461b..682cf677607 100644 --- a/contrib/adminpack/uninstall_adminpack.sql +++ b/contrib/adminpack/uninstall_adminpack.sql @@ -1,4 +1,4 @@ -/* $PostgreSQL: pgsql/contrib/adminpack/uninstall_adminpack.sql,v 1.4 2007/11/13 04:24:27 momjian Exp $ */ +/* contrib/adminpack/uninstall_adminpack.sql */ DROP FUNCTION pg_catalog.pg_file_write(text, text, bool) ; DROP FUNCTION pg_catalog.pg_file_rename(text, text, text) ; diff --git a/contrib/auto_explain/Makefile b/contrib/auto_explain/Makefile index e9eaae0ece2..2d1443fe48e 100644 --- a/contrib/auto_explain/Makefile +++ b/contrib/auto_explain/Makefile @@ -1,4 +1,4 @@ -# $PostgreSQL: pgsql/contrib/auto_explain/Makefile,v 1.1 2008/11/19 02:59:28 tgl Exp $ +# contrib/auto_explain/Makefile MODULE_big = auto_explain OBJS = auto_explain.o diff --git a/contrib/auto_explain/auto_explain.c b/contrib/auto_explain/auto_explain.c index ffc1a4a1063..b165d68d799 100644 --- a/contrib/auto_explain/auto_explain.c +++ b/contrib/auto_explain/auto_explain.c @@ -6,7 +6,7 @@ * Copyright (c) 2008-2010, PostgreSQL Global Development Group * * IDENTIFICATION - * $PostgreSQL: pgsql/contrib/auto_explain/auto_explain.c,v 1.14 2010/02/26 02:00:31 momjian Exp $ + * contrib/auto_explain/auto_explain.c * *------------------------------------------------------------------------- */ diff --git a/contrib/btree_gin/Makefile b/contrib/btree_gin/Makefile index e6b6394c234..cba68af5959 100644 --- a/contrib/btree_gin/Makefile +++ b/contrib/btree_gin/Makefile @@ -1,4 +1,4 @@ -# $PostgreSQL: pgsql/contrib/btree_gin/Makefile,v 1.1 2009/03/25 23:20:01 tgl Exp $ +# contrib/btree_gin/Makefile MODULE_big = btree_gin OBJS = btree_gin.o diff --git a/contrib/btree_gin/btree_gin.c b/contrib/btree_gin/btree_gin.c index c05f8ebbfcf..f8fae18eaf2 100644 --- a/contrib/btree_gin/btree_gin.c +++ b/contrib/btree_gin/btree_gin.c @@ -1,5 +1,5 @@ /* - * $PostgreSQL: pgsql/contrib/btree_gin/btree_gin.c,v 1.4 2010/01/07 04:53:34 tgl Exp $ + * contrib/btree_gin/btree_gin.c */ #include "postgres.h" diff --git a/contrib/btree_gin/btree_gin.sql.in b/contrib/btree_gin/btree_gin.sql.in index bc7ec3bbcba..19cc0b3df4f 100644 --- a/contrib/btree_gin/btree_gin.sql.in +++ b/contrib/btree_gin/btree_gin.sql.in @@ -1,4 +1,4 @@ -/* $PostgreSQL: pgsql/contrib/btree_gin/btree_gin.sql.in,v 1.1 2009/03/25 23:20:01 tgl Exp $ */ +/* contrib/btree_gin/btree_gin.sql.in */ -- Adjust this setting to control where the objects get created. SET search_path = public; diff --git a/contrib/btree_gin/uninstall_btree_gin.sql b/contrib/btree_gin/uninstall_btree_gin.sql index 0b79c6037bb..30324dc709d 100644 --- a/contrib/btree_gin/uninstall_btree_gin.sql +++ b/contrib/btree_gin/uninstall_btree_gin.sql @@ -1,4 +1,4 @@ -/* $PostgreSQL: pgsql/contrib/btree_gin/uninstall_btree_gin.sql,v 1.1 2009/03/25 23:20:01 tgl Exp $ */ +/* contrib/btree_gin/uninstall_btree_gin.sql */ -- Adjust this setting to control where the objects get dropped. SET search_path = public; diff --git a/contrib/btree_gist/Makefile b/contrib/btree_gist/Makefile index 3889d947c12..e152cd881de 100644 --- a/contrib/btree_gist/Makefile +++ b/contrib/btree_gist/Makefile @@ -1,4 +1,4 @@ -# $PostgreSQL: pgsql/contrib/btree_gist/Makefile,v 1.13 2010/08/03 19:53:19 rhaas Exp $ +# contrib/btree_gist/Makefile MODULE_big = btree_gist diff --git a/contrib/btree_gist/btree_bit.c b/contrib/btree_gist/btree_bit.c index f78134f443d..9884d0fb967 100644 --- a/contrib/btree_gist/btree_bit.c +++ b/contrib/btree_gist/btree_bit.c @@ -1,5 +1,5 @@ /* - * $PostgreSQL: pgsql/contrib/btree_gist/btree_bit.c,v 1.11 2009/08/04 18:49:50 tgl Exp $ + * contrib/btree_gist/btree_bit.c */ #include "btree_gist.h" #include "btree_utils_var.h" diff --git a/contrib/btree_gist/btree_bytea.c b/contrib/btree_gist/btree_bytea.c index 88b4a380e89..84304646122 100644 --- a/contrib/btree_gist/btree_bytea.c +++ b/contrib/btree_gist/btree_bytea.c @@ -1,5 +1,5 @@ /* - * $PostgreSQL: pgsql/contrib/btree_gist/btree_bytea.c,v 1.10 2009/08/04 18:49:50 tgl Exp $ + * contrib/btree_gist/btree_bytea.c */ #include "btree_gist.h" #include "btree_utils_var.h" diff --git a/contrib/btree_gist/btree_cash.c b/contrib/btree_gist/btree_cash.c index a1efde61468..bfda21b058c 100644 --- a/contrib/btree_gist/btree_cash.c +++ b/contrib/btree_gist/btree_cash.c @@ -1,5 +1,5 @@ /* - * $PostgreSQL: pgsql/contrib/btree_gist/btree_cash.c,v 1.11 2010/02/26 02:00:31 momjian Exp $ + * contrib/btree_gist/btree_cash.c */ #include "btree_gist.h" #include "btree_utils_num.h" diff --git a/contrib/btree_gist/btree_date.c b/contrib/btree_gist/btree_date.c index d8dce91535d..11904af2573 100644 --- a/contrib/btree_gist/btree_date.c +++ b/contrib/btree_gist/btree_date.c @@ -1,5 +1,5 @@ /* - * $PostgreSQL: pgsql/contrib/btree_gist/btree_date.c,v 1.9 2010/02/26 02:00:31 momjian Exp $ + * contrib/btree_gist/btree_date.c */ #include "btree_gist.h" #include "btree_utils_num.h" diff --git a/contrib/btree_gist/btree_float4.c b/contrib/btree_gist/btree_float4.c index 7ece9ea220d..4cfeddfc687 100644 --- a/contrib/btree_gist/btree_float4.c +++ b/contrib/btree_gist/btree_float4.c @@ -1,5 +1,5 @@ /* - * $PostgreSQL: pgsql/contrib/btree_gist/btree_float4.c,v 1.10 2010/02/26 02:00:31 momjian Exp $ + * contrib/btree_gist/btree_float4.c */ #include "btree_gist.h" #include "btree_utils_num.h" diff --git a/contrib/btree_gist/btree_float8.c b/contrib/btree_gist/btree_float8.c index ab4912883db..1386983272c 100644 --- a/contrib/btree_gist/btree_float8.c +++ b/contrib/btree_gist/btree_float8.c @@ -1,5 +1,5 @@ /* - * $PostgreSQL: pgsql/contrib/btree_gist/btree_float8.c,v 1.10 2010/02/26 02:00:31 momjian Exp $ + * contrib/btree_gist/btree_float8.c */ #include "btree_gist.h" #include "btree_utils_num.h" diff --git a/contrib/btree_gist/btree_gist.c b/contrib/btree_gist/btree_gist.c index f109de4a648..7e1c7e054cd 100644 --- a/contrib/btree_gist/btree_gist.c +++ b/contrib/btree_gist/btree_gist.c @@ -1,5 +1,5 @@ /* - * $PostgreSQL: pgsql/contrib/btree_gist/btree_gist.c,v 1.13 2009/06/11 14:48:50 momjian Exp $ + * contrib/btree_gist/btree_gist.c */ #include "btree_gist.h" diff --git a/contrib/btree_gist/btree_gist.h b/contrib/btree_gist/btree_gist.h index db5c5713b5b..058a3f99e98 100644 --- a/contrib/btree_gist/btree_gist.h +++ b/contrib/btree_gist/btree_gist.h @@ -1,5 +1,5 @@ /* - * $PostgreSQL: pgsql/contrib/btree_gist/btree_gist.h,v 1.10 2010/08/02 16:26:48 rhaas Exp $ + * contrib/btree_gist/btree_gist.h */ #ifndef __BTREE_GIST_H__ #define __BTREE_GIST_H__ diff --git a/contrib/btree_gist/btree_gist.sql.in b/contrib/btree_gist/btree_gist.sql.in index 0a285a71c1d..339087018a6 100644 --- a/contrib/btree_gist/btree_gist.sql.in +++ b/contrib/btree_gist/btree_gist.sql.in @@ -1,4 +1,4 @@ -/* $PostgreSQL: pgsql/contrib/btree_gist/btree_gist.sql.in,v 1.22 2010/08/02 16:26:48 rhaas Exp $ */ +/* contrib/btree_gist/btree_gist.sql.in */ -- Adjust this setting to control where the objects get created. SET search_path = public; diff --git a/contrib/btree_gist/btree_inet.c b/contrib/btree_gist/btree_inet.c index a8d18c578ba..dcc934d1562 100644 --- a/contrib/btree_gist/btree_inet.c +++ b/contrib/btree_gist/btree_inet.c @@ -1,5 +1,5 @@ /* - * $PostgreSQL: pgsql/contrib/btree_gist/btree_inet.c,v 1.12 2010/02/26 02:00:31 momjian Exp $ + * contrib/btree_gist/btree_inet.c */ #include "btree_gist.h" #include "btree_utils_num.h" diff --git a/contrib/btree_gist/btree_int2.c b/contrib/btree_gist/btree_int2.c index 2be4c40aa8d..2e981174520 100644 --- a/contrib/btree_gist/btree_int2.c +++ b/contrib/btree_gist/btree_int2.c @@ -1,5 +1,5 @@ /* - * $PostgreSQL: pgsql/contrib/btree_gist/btree_int2.c,v 1.10 2010/02/26 02:00:31 momjian Exp $ + * contrib/btree_gist/btree_int2.c */ #include "btree_gist.h" #include "btree_utils_num.h" diff --git a/contrib/btree_gist/btree_int4.c b/contrib/btree_gist/btree_int4.c index aa0d4ac33fb..678d653fd0b 100644 --- a/contrib/btree_gist/btree_int4.c +++ b/contrib/btree_gist/btree_int4.c @@ -1,5 +1,5 @@ /* - * $PostgreSQL: pgsql/contrib/btree_gist/btree_int4.c,v 1.10 2010/02/26 02:00:31 momjian Exp $ + * contrib/btree_gist/btree_int4.c */ #include "btree_gist.h" #include "btree_utils_num.h" diff --git a/contrib/btree_gist/btree_int8.c b/contrib/btree_gist/btree_int8.c index 4cf36a07faa..8afa5b0af24 100644 --- a/contrib/btree_gist/btree_int8.c +++ b/contrib/btree_gist/btree_int8.c @@ -1,5 +1,5 @@ /* - * $PostgreSQL: pgsql/contrib/btree_gist/btree_int8.c,v 1.10 2010/02/26 02:00:31 momjian Exp $ + * contrib/btree_gist/btree_int8.c */ #include "btree_gist.h" #include "btree_utils_num.h" diff --git a/contrib/btree_gist/btree_interval.c b/contrib/btree_gist/btree_interval.c index 32b9ddbad74..0715346f234 100644 --- a/contrib/btree_gist/btree_interval.c +++ b/contrib/btree_gist/btree_interval.c @@ -1,5 +1,5 @@ /* - * $PostgreSQL: pgsql/contrib/btree_gist/btree_interval.c,v 1.14 2010/02/26 02:00:31 momjian Exp $ + * contrib/btree_gist/btree_interval.c */ #include "btree_gist.h" #include "btree_utils_num.h" diff --git a/contrib/btree_gist/btree_macaddr.c b/contrib/btree_gist/btree_macaddr.c index 60092b4e9e2..fb440c3f198 100644 --- a/contrib/btree_gist/btree_macaddr.c +++ b/contrib/btree_gist/btree_macaddr.c @@ -1,5 +1,5 @@ /* - * $PostgreSQL: pgsql/contrib/btree_gist/btree_macaddr.c,v 1.10 2010/02/26 02:00:31 momjian Exp $ + * contrib/btree_gist/btree_macaddr.c */ #include "btree_gist.h" #include "btree_utils_num.h" diff --git a/contrib/btree_gist/btree_numeric.c b/contrib/btree_gist/btree_numeric.c index 6331109b102..fa82497e2b9 100644 --- a/contrib/btree_gist/btree_numeric.c +++ b/contrib/btree_gist/btree_numeric.c @@ -1,5 +1,5 @@ /* - * $PostgreSQL: pgsql/contrib/btree_gist/btree_numeric.c,v 1.14 2010/07/30 04:30:23 rhaas Exp $ + * contrib/btree_gist/btree_numeric.c */ #include "btree_gist.h" diff --git a/contrib/btree_gist/btree_oid.c b/contrib/btree_gist/btree_oid.c index 96e4be54d4b..4927448258f 100644 --- a/contrib/btree_gist/btree_oid.c +++ b/contrib/btree_gist/btree_oid.c @@ -1,5 +1,5 @@ /* - * $PostgreSQL: pgsql/contrib/btree_gist/btree_oid.c,v 1.10 2010/02/26 02:00:31 momjian Exp $ + * contrib/btree_gist/btree_oid.c */ #include "btree_gist.h" #include "btree_utils_num.h" diff --git a/contrib/btree_gist/btree_text.c b/contrib/btree_gist/btree_text.c index 8b01eb7aac9..40d0b9ad79c 100644 --- a/contrib/btree_gist/btree_text.c +++ b/contrib/btree_gist/btree_text.c @@ -1,5 +1,5 @@ /* - * $PostgreSQL: pgsql/contrib/btree_gist/btree_text.c,v 1.12 2009/06/11 14:48:50 momjian Exp $ + * contrib/btree_gist/btree_text.c */ #include "btree_gist.h" #include "btree_utils_var.h" diff --git a/contrib/btree_gist/btree_time.c b/contrib/btree_gist/btree_time.c index 8566a8efb70..01163e906ad 100644 --- a/contrib/btree_gist/btree_time.c +++ b/contrib/btree_gist/btree_time.c @@ -1,5 +1,5 @@ /* - * $PostgreSQL: pgsql/contrib/btree_gist/btree_time.c,v 1.18 2010/02/26 02:00:31 momjian Exp $ + * contrib/btree_gist/btree_time.c */ #include "btree_gist.h" #include "btree_utils_num.h" diff --git a/contrib/btree_gist/btree_ts.c b/contrib/btree_gist/btree_ts.c index 543f2129b0b..2b13d14ad19 100644 --- a/contrib/btree_gist/btree_ts.c +++ b/contrib/btree_gist/btree_ts.c @@ -1,5 +1,5 @@ /* - * $PostgreSQL: pgsql/contrib/btree_gist/btree_ts.c,v 1.19 2010/02/26 02:00:32 momjian Exp $ + * contrib/btree_gist/btree_ts.c */ #include "btree_gist.h" #include "btree_utils_num.h" diff --git a/contrib/btree_gist/btree_utils_num.c b/contrib/btree_gist/btree_utils_num.c index e4b4824769f..0df22f21338 100644 --- a/contrib/btree_gist/btree_utils_num.c +++ b/contrib/btree_gist/btree_utils_num.c @@ -1,5 +1,5 @@ /* - * $PostgreSQL: pgsql/contrib/btree_gist/btree_utils_num.c,v 1.13 2010/08/02 16:26:48 rhaas Exp $ + * contrib/btree_gist/btree_utils_num.c */ #include "btree_gist.h" #include "btree_utils_num.h" diff --git a/contrib/btree_gist/btree_utils_num.h b/contrib/btree_gist/btree_utils_num.h index dcd17bc4307..091784bd5a1 100644 --- a/contrib/btree_gist/btree_utils_num.h +++ b/contrib/btree_gist/btree_utils_num.h @@ -1,5 +1,5 @@ /* - * $PostgreSQL: pgsql/contrib/btree_gist/btree_utils_num.h,v 1.14 2009/06/11 14:48:50 momjian Exp $ + * contrib/btree_gist/btree_utils_num.h */ #ifndef __BTREE_UTILS_NUM_H__ #define __BTREE_UTILS_NUM_H__ diff --git a/contrib/btree_gist/btree_utils_var.c b/contrib/btree_gist/btree_utils_var.c index 447ba59efbd..5fc93cfbffe 100644 --- a/contrib/btree_gist/btree_utils_var.c +++ b/contrib/btree_gist/btree_utils_var.c @@ -1,5 +1,5 @@ /* - * $PostgreSQL: pgsql/contrib/btree_gist/btree_utils_var.c,v 1.24 2010/08/02 16:26:48 rhaas Exp $ + * contrib/btree_gist/btree_utils_var.c */ #include "btree_gist.h" diff --git a/contrib/btree_gist/btree_utils_var.h b/contrib/btree_gist/btree_utils_var.h index 49f5d59ee24..2c1012f3235 100644 --- a/contrib/btree_gist/btree_utils_var.h +++ b/contrib/btree_gist/btree_utils_var.h @@ -1,5 +1,5 @@ /* - * $PostgreSQL: pgsql/contrib/btree_gist/btree_utils_var.h,v 1.9 2009/06/11 14:48:50 momjian Exp $ + * contrib/btree_gist/btree_utils_var.h */ #ifndef __BTREE_UTILS_VAR_H__ #define __BTREE_UTILS_VAR_H__ diff --git a/contrib/btree_gist/uninstall_btree_gist.sql b/contrib/btree_gist/uninstall_btree_gist.sql index 9e71819e1aa..4163730e85a 100644 --- a/contrib/btree_gist/uninstall_btree_gist.sql +++ b/contrib/btree_gist/uninstall_btree_gist.sql @@ -1,4 +1,4 @@ -/* $PostgreSQL: pgsql/contrib/btree_gist/uninstall_btree_gist.sql,v 1.5 2008/04/14 17:05:32 tgl Exp $ */ +/* contrib/btree_gist/uninstall_btree_gist.sql */ -- Adjust this setting to control where the objects get dropped. SET search_path = public; diff --git a/contrib/chkpass/Makefile b/contrib/chkpass/Makefile index f106b6dcfe1..3677dfcb565 100644 --- a/contrib/chkpass/Makefile +++ b/contrib/chkpass/Makefile @@ -1,4 +1,4 @@ -# $PostgreSQL: pgsql/contrib/chkpass/Makefile,v 1.10 2007/11/10 23:59:50 momjian Exp $ +# contrib/chkpass/Makefile MODULE_big = chkpass OBJS = chkpass.o diff --git a/contrib/chkpass/chkpass.c b/contrib/chkpass/chkpass.c index 56a998ec839..0c9fec0e676 100644 --- a/contrib/chkpass/chkpass.c +++ b/contrib/chkpass/chkpass.c @@ -4,7 +4,7 @@ * darcy@druid.net * http://www.druid.net/darcy/ * - * $PostgreSQL: pgsql/contrib/chkpass/chkpass.c,v 1.21 2009/06/11 14:48:50 momjian Exp $ + * contrib/chkpass/chkpass.c * best viewed with tabs set to 4 */ diff --git a/contrib/chkpass/chkpass.sql.in b/contrib/chkpass/chkpass.sql.in index 31722f33c45..3cec0224b00 100644 --- a/contrib/chkpass/chkpass.sql.in +++ b/contrib/chkpass/chkpass.sql.in @@ -1,4 +1,4 @@ -/* $PostgreSQL: pgsql/contrib/chkpass/chkpass.sql.in,v 1.10 2010/07/28 20:34:34 petere Exp $ */ +/* contrib/chkpass/chkpass.sql.in */ -- Adjust this setting to control where the objects get created. SET search_path = public; diff --git a/contrib/chkpass/uninstall_chkpass.sql b/contrib/chkpass/uninstall_chkpass.sql index 386fc95c5fa..93ab6eb4ebb 100644 --- a/contrib/chkpass/uninstall_chkpass.sql +++ b/contrib/chkpass/uninstall_chkpass.sql @@ -1,4 +1,4 @@ -/* $PostgreSQL: pgsql/contrib/chkpass/uninstall_chkpass.sql,v 1.5 2007/11/13 04:24:27 momjian Exp $ */ +/* contrib/chkpass/uninstall_chkpass.sql */ -- Adjust this setting to control where the objects get dropped. SET search_path = public; diff --git a/contrib/citext/Makefile b/contrib/citext/Makefile index d38e2762dd7..c868eca8847 100644 --- a/contrib/citext/Makefile +++ b/contrib/citext/Makefile @@ -1,4 +1,4 @@ -# $PostgreSQL: pgsql/contrib/citext/Makefile,v 1.1 2008/07/29 18:31:20 tgl Exp $ +# contrib/citext/Makefile MODULES = citext DATA_built = citext.sql diff --git a/contrib/citext/citext.c b/contrib/citext/citext.c index 371e70f74d7..99918258533 100644 --- a/contrib/citext/citext.c +++ b/contrib/citext/citext.c @@ -1,5 +1,5 @@ /* - * $PostgreSQL: pgsql/contrib/citext/citext.c,v 1.2 2009/06/11 14:48:50 momjian Exp $ + * contrib/citext/citext.c */ #include "postgres.h" diff --git a/contrib/citext/citext.sql.in b/contrib/citext/citext.sql.in index bd781e61682..0aef0ad947a 100644 --- a/contrib/citext/citext.sql.in +++ b/contrib/citext/citext.sql.in @@ -1,4 +1,4 @@ -/* $PostgreSQL: pgsql/contrib/citext/citext.sql.in,v 1.3 2008/09/05 18:25:16 tgl Exp $ */ +/* contrib/citext/citext.sql.in */ -- Adjust this setting to control where the objects get created. SET search_path = public; diff --git a/contrib/citext/uninstall_citext.sql b/contrib/citext/uninstall_citext.sql index 2d1ecbed09f..468987ad826 100644 --- a/contrib/citext/uninstall_citext.sql +++ b/contrib/citext/uninstall_citext.sql @@ -1,4 +1,4 @@ -/* $PostgreSQL: pgsql/contrib/citext/uninstall_citext.sql,v 1.3 2008/09/05 18:25:16 tgl Exp $ */ +/* contrib/citext/uninstall_citext.sql */ -- Adjust this setting to control where the objects get dropped. SET search_path = public; diff --git a/contrib/contrib-global.mk b/contrib/contrib-global.mk index 13c76b82b69..6ac8e9b13d0 100644 --- a/contrib/contrib-global.mk +++ b/contrib/contrib-global.mk @@ -1,4 +1,4 @@ -# $PostgreSQL: pgsql/contrib/contrib-global.mk,v 1.10 2005/09/27 17:43:31 tgl Exp $ +# contrib/contrib-global.mk NO_PGXS = 1 include $(top_srcdir)/src/makefiles/pgxs.mk diff --git a/contrib/cube/Makefile b/contrib/cube/Makefile index 2f3da437e52..4fee79f84eb 100644 --- a/contrib/cube/Makefile +++ b/contrib/cube/Makefile @@ -1,4 +1,4 @@ -# $PostgreSQL: pgsql/contrib/cube/Makefile,v 1.23 2009/08/28 20:26:18 petere Exp $ +# contrib/cube/Makefile MODULE_big = cube OBJS= cube.o cubeparse.o diff --git a/contrib/cube/cube.c b/contrib/cube/cube.c index 62cd3a2d02a..832c099f042 100644 --- a/contrib/cube/cube.c +++ b/contrib/cube/cube.c @@ -1,5 +1,5 @@ /****************************************************************************** - $PostgreSQL: pgsql/contrib/cube/cube.c,v 1.37 2009/06/11 14:48:50 momjian Exp $ + contrib/cube/cube.c This file contains routines that can be bound to a Postgres backend and called by the backend in the process of processing queries. The calling diff --git a/contrib/cube/cube.sql.in b/contrib/cube/cube.sql.in index 41f493ed41d..3cd199530ab 100644 --- a/contrib/cube/cube.sql.in +++ b/contrib/cube/cube.sql.in @@ -1,4 +1,4 @@ -/* $PostgreSQL: pgsql/contrib/cube/cube.sql.in,v 1.25 2009/06/11 18:30:03 tgl Exp $ */ +/* contrib/cube/cube.sql.in */ -- Adjust this setting to control where the objects get created. SET search_path = public; diff --git a/contrib/cube/cubedata.h b/contrib/cube/cubedata.h index 1100602cfc4..fd0c26a3816 100644 --- a/contrib/cube/cubedata.h +++ b/contrib/cube/cubedata.h @@ -1,4 +1,4 @@ -/* $PostgreSQL: pgsql/contrib/cube/cubedata.h,v 1.10 2009/06/11 14:48:50 momjian Exp $ */ +/* contrib/cube/cubedata.h */ #define CUBE_MAX_DIM (100) diff --git a/contrib/cube/cubeparse.y b/contrib/cube/cubeparse.y index 13dc4f55b0b..d02941dd8ca 100644 --- a/contrib/cube/cubeparse.y +++ b/contrib/cube/cubeparse.y @@ -2,7 +2,7 @@ /* NdBox = [(lowerleft),(upperright)] */ /* [(xLL(1)...xLL(N)),(xUR(1)...xUR(n))] */ -/* $PostgreSQL: pgsql/contrib/cube/cubeparse.y,v 1.19 2008/11/26 08:45:11 petere Exp $ */ +/* contrib/cube/cubeparse.y */ #define YYPARSE_PARAM result /* need this to pass a pointer (void *) to yyparse */ #define YYSTYPE char * diff --git a/contrib/cube/cubescan.l b/contrib/cube/cubescan.l index f373d353f2c..b0e477bf1e6 100644 --- a/contrib/cube/cubescan.l +++ b/contrib/cube/cubescan.l @@ -1,7 +1,7 @@ %{ /* ** A scanner for EMP-style numeric ranges - * $PostgreSQL: pgsql/contrib/cube/cubescan.l,v 1.12 2008/08/25 23:12:45 tgl Exp $ + * contrib/cube/cubescan.l */ #include "postgres.h" diff --git a/contrib/cube/uninstall_cube.sql b/contrib/cube/uninstall_cube.sql index abdb5a2db34..aa7119e0d0e 100644 --- a/contrib/cube/uninstall_cube.sql +++ b/contrib/cube/uninstall_cube.sql @@ -1,4 +1,4 @@ -/* $PostgreSQL: pgsql/contrib/cube/uninstall_cube.sql,v 1.8 2008/04/14 17:05:32 tgl Exp $ */ +/* contrib/cube/uninstall_cube.sql */ -- Adjust this setting to control where the objects get dropped. SET search_path = public; diff --git a/contrib/dblink/Makefile b/contrib/dblink/Makefile index 519c73b68fe..148961e6c94 100644 --- a/contrib/dblink/Makefile +++ b/contrib/dblink/Makefile @@ -1,4 +1,4 @@ -# $PostgreSQL: pgsql/contrib/dblink/Makefile,v 1.15 2007/11/10 23:59:50 momjian Exp $ +# contrib/dblink/Makefile MODULE_big = dblink PG_CPPFLAGS = -I$(libpq_srcdir) diff --git a/contrib/dblink/dblink.c b/contrib/dblink/dblink.c index 4bfa7670fd9..ce868292100 100644 --- a/contrib/dblink/dblink.c +++ b/contrib/dblink/dblink.c @@ -8,7 +8,7 @@ * Darko Prenosil <Darko.Prenosil@finteh.hr> * Shridhar Daithankar <shridhar_daithankar@persistent.co.in> * - * $PostgreSQL: pgsql/contrib/dblink/dblink.c,v 1.99 2010/07/06 19:18:54 momjian Exp $ + * contrib/dblink/dblink.c * Copyright (c) 2001-2010, PostgreSQL Global Development Group * ALL RIGHTS RESERVED; * diff --git a/contrib/dblink/dblink.h b/contrib/dblink/dblink.h index 1918fdee44c..3d097ac1de4 100644 --- a/contrib/dblink/dblink.h +++ b/contrib/dblink/dblink.h @@ -8,7 +8,7 @@ * Darko Prenosil <Darko.Prenosil@finteh.hr> * Shridhar Daithankar <shridhar_daithankar@persistent.co.in> * - * $PostgreSQL: pgsql/contrib/dblink/dblink.h,v 1.24 2010/01/02 16:57:32 momjian Exp $ + * contrib/dblink/dblink.h * Copyright (c) 2001-2010, PostgreSQL Global Development Group * ALL RIGHTS RESERVED; * diff --git a/contrib/dblink/dblink.sql.in b/contrib/dblink/dblink.sql.in index ff656736a41..acad2c94d0f 100644 --- a/contrib/dblink/dblink.sql.in +++ b/contrib/dblink/dblink.sql.in @@ -1,4 +1,4 @@ -/* $PostgreSQL: pgsql/contrib/dblink/dblink.sql.in,v 1.19 2009/08/05 16:11:07 joe Exp $ */ +/* contrib/dblink/dblink.sql.in */ -- Adjust this setting to control where the objects get created. SET search_path = public; diff --git a/contrib/dblink/uninstall_dblink.sql b/contrib/dblink/uninstall_dblink.sql index 98478115f16..365728a6d7c 100644 --- a/contrib/dblink/uninstall_dblink.sql +++ b/contrib/dblink/uninstall_dblink.sql @@ -1,4 +1,4 @@ -/* $PostgreSQL: pgsql/contrib/dblink/uninstall_dblink.sql,v 1.9 2010/06/07 15:14:36 teodor Exp $ */ +/* contrib/dblink/uninstall_dblink.sql */ -- Adjust this setting to control where the objects get dropped. SET search_path = public; diff --git a/contrib/dict_int/Makefile b/contrib/dict_int/Makefile index adf7b685b57..17d9eaa5f7a 100644 --- a/contrib/dict_int/Makefile +++ b/contrib/dict_int/Makefile @@ -1,4 +1,4 @@ -# $PostgreSQL: pgsql/contrib/dict_int/Makefile,v 1.2 2007/12/02 21:15:38 tgl Exp $ +# contrib/dict_int/Makefile MODULE_big = dict_int OBJS = dict_int.o diff --git a/contrib/dict_int/dict_int.c b/contrib/dict_int/dict_int.c index 8e1918613f7..174eec6e1c6 100644 --- a/contrib/dict_int/dict_int.c +++ b/contrib/dict_int/dict_int.c @@ -6,7 +6,7 @@ * Copyright (c) 2007-2010, PostgreSQL Global Development Group * * IDENTIFICATION - * $PostgreSQL: pgsql/contrib/dict_int/dict_int.c,v 1.6 2010/01/02 16:57:32 momjian Exp $ + * contrib/dict_int/dict_int.c * *------------------------------------------------------------------------- */ diff --git a/contrib/dict_int/dict_int.sql.in b/contrib/dict_int/dict_int.sql.in index 5245349ae18..9d7ef7d9c12 100644 --- a/contrib/dict_int/dict_int.sql.in +++ b/contrib/dict_int/dict_int.sql.in @@ -1,4 +1,4 @@ -/* $PostgreSQL: pgsql/contrib/dict_int/dict_int.sql.in,v 1.3 2007/11/13 04:24:27 momjian Exp $ */ +/* contrib/dict_int/dict_int.sql.in */ -- Adjust this setting to control where the objects get created. SET search_path = public; diff --git a/contrib/dict_int/uninstall_dict_int.sql b/contrib/dict_int/uninstall_dict_int.sql index d94343fd36d..0467fa22baa 100644 --- a/contrib/dict_int/uninstall_dict_int.sql +++ b/contrib/dict_int/uninstall_dict_int.sql @@ -1,4 +1,4 @@ -/* $PostgreSQL: pgsql/contrib/dict_int/uninstall_dict_int.sql,v 1.3 2007/11/13 04:24:27 momjian Exp $ */ +/* contrib/dict_int/uninstall_dict_int.sql */ -- Adjust this setting to control where the objects get dropped. SET search_path = public; diff --git a/contrib/dict_xsyn/Makefile b/contrib/dict_xsyn/Makefile index 2a879b7eff7..8b737f09fcc 100644 --- a/contrib/dict_xsyn/Makefile +++ b/contrib/dict_xsyn/Makefile @@ -1,4 +1,4 @@ -# $PostgreSQL: pgsql/contrib/dict_xsyn/Makefile,v 1.3 2007/12/02 21:15:38 tgl Exp $ +# contrib/dict_xsyn/Makefile MODULE_big = dict_xsyn OBJS = dict_xsyn.o diff --git a/contrib/dict_xsyn/dict_xsyn.c b/contrib/dict_xsyn/dict_xsyn.c index dc16d9583e2..4fe0ac6db2a 100644 --- a/contrib/dict_xsyn/dict_xsyn.c +++ b/contrib/dict_xsyn/dict_xsyn.c @@ -6,7 +6,7 @@ * Copyright (c) 2007-2010, PostgreSQL Global Development Group * * IDENTIFICATION - * $PostgreSQL: pgsql/contrib/dict_xsyn/dict_xsyn.c,v 1.9 2010/02/26 02:00:32 momjian Exp $ + * contrib/dict_xsyn/dict_xsyn.c * *------------------------------------------------------------------------- */ diff --git a/contrib/dict_xsyn/dict_xsyn.sql.in b/contrib/dict_xsyn/dict_xsyn.sql.in index ac014a757d1..7d48c9209f5 100644 --- a/contrib/dict_xsyn/dict_xsyn.sql.in +++ b/contrib/dict_xsyn/dict_xsyn.sql.in @@ -1,4 +1,4 @@ -/* $PostgreSQL: pgsql/contrib/dict_xsyn/dict_xsyn.sql.in,v 1.3 2007/11/13 04:24:27 momjian Exp $ */ +/* contrib/dict_xsyn/dict_xsyn.sql.in */ -- Adjust this setting to control where the objects get created. SET search_path = public; diff --git a/contrib/dict_xsyn/uninstall_dict_xsyn.sql b/contrib/dict_xsyn/uninstall_dict_xsyn.sql index 844d2e99974..68f9579c056 100644 --- a/contrib/dict_xsyn/uninstall_dict_xsyn.sql +++ b/contrib/dict_xsyn/uninstall_dict_xsyn.sql @@ -1,4 +1,4 @@ -/* $PostgreSQL: pgsql/contrib/dict_xsyn/uninstall_dict_xsyn.sql,v 1.3 2007/11/13 04:24:27 momjian Exp $ */ +/* contrib/dict_xsyn/uninstall_dict_xsyn.sql */ -- Adjust this setting to control where the objects get dropped. SET search_path = public; diff --git a/contrib/earthdistance/Makefile b/contrib/earthdistance/Makefile index ab72ac7fc92..8328e5f8285 100644 --- a/contrib/earthdistance/Makefile +++ b/contrib/earthdistance/Makefile @@ -1,4 +1,4 @@ -# $PostgreSQL: pgsql/contrib/earthdistance/Makefile,v 1.20 2010/07/05 23:15:55 tgl Exp $ +# contrib/earthdistance/Makefile MODULES = earthdistance DATA_built = earthdistance.sql diff --git a/contrib/earthdistance/earthdistance.c b/contrib/earthdistance/earthdistance.c index 4dce1f828ea..2f344a70116 100644 --- a/contrib/earthdistance/earthdistance.c +++ b/contrib/earthdistance/earthdistance.c @@ -1,4 +1,4 @@ -/* $PostgreSQL: pgsql/contrib/earthdistance/earthdistance.c,v 1.16 2009/06/11 14:48:51 momjian Exp $ */ +/* contrib/earthdistance/earthdistance.c */ #include "postgres.h" diff --git a/contrib/earthdistance/earthdistance.sql.in b/contrib/earthdistance/earthdistance.sql.in index 2b8041b131d..a4799914bd0 100644 --- a/contrib/earthdistance/earthdistance.sql.in +++ b/contrib/earthdistance/earthdistance.sql.in @@ -1,4 +1,4 @@ -/* $PostgreSQL: pgsql/contrib/earthdistance/earthdistance.sql.in,v 1.11 2007/11/13 04:24:27 momjian Exp $ */ +/* contrib/earthdistance/earthdistance.sql.in */ -- Adjust this setting to control where the objects get created. SET search_path = public; diff --git a/contrib/earthdistance/uninstall_earthdistance.sql b/contrib/earthdistance/uninstall_earthdistance.sql index dfad24aa4fb..dfd7d524ab7 100644 --- a/contrib/earthdistance/uninstall_earthdistance.sql +++ b/contrib/earthdistance/uninstall_earthdistance.sql @@ -1,4 +1,4 @@ -/* $PostgreSQL: pgsql/contrib/earthdistance/uninstall_earthdistance.sql,v 1.3 2007/11/13 04:24:27 momjian Exp $ */ +/* contrib/earthdistance/uninstall_earthdistance.sql */ -- Adjust this setting to control where the objects get dropped. SET search_path = public; diff --git a/contrib/fuzzystrmatch/Makefile b/contrib/fuzzystrmatch/Makefile index 723830950da..9cdf3f87e3e 100644 --- a/contrib/fuzzystrmatch/Makefile +++ b/contrib/fuzzystrmatch/Makefile @@ -1,4 +1,4 @@ -# $PostgreSQL: pgsql/contrib/fuzzystrmatch/Makefile,v 1.10 2007/11/10 23:59:50 momjian Exp $ +# contrib/fuzzystrmatch/Makefile MODULE_big = fuzzystrmatch OBJS = fuzzystrmatch.o dmetaphone.o diff --git a/contrib/fuzzystrmatch/dmetaphone.c b/contrib/fuzzystrmatch/dmetaphone.c index f23a3a2aa6d..6721e58f220 100644 --- a/contrib/fuzzystrmatch/dmetaphone.c +++ b/contrib/fuzzystrmatch/dmetaphone.c @@ -1,7 +1,7 @@ /* * This is a port of the Double Metaphone algorithm for use in PostgreSQL. * - * $PostgreSQL: pgsql/contrib/fuzzystrmatch/dmetaphone.c,v 1.15 2010/07/06 19:18:55 momjian Exp $ + * contrib/fuzzystrmatch/dmetaphone.c * * Double Metaphone computes 2 "sounds like" strings - a primary and an * alternate. In most cases they are the same, but for foreign names diff --git a/contrib/fuzzystrmatch/fuzzystrmatch.c b/contrib/fuzzystrmatch/fuzzystrmatch.c index c752b2dfda1..63921d92717 100644 --- a/contrib/fuzzystrmatch/fuzzystrmatch.c +++ b/contrib/fuzzystrmatch/fuzzystrmatch.c @@ -5,7 +5,7 @@ * * Joe Conway <mail@joeconway.com> * - * $PostgreSQL: pgsql/contrib/fuzzystrmatch/fuzzystrmatch.c,v 1.34 2010/08/02 23:20:23 rhaas Exp $ + * contrib/fuzzystrmatch/fuzzystrmatch.c * Copyright (c) 2001-2010, PostgreSQL Global Development Group * ALL RIGHTS RESERVED; * diff --git a/contrib/fuzzystrmatch/fuzzystrmatch.sql.in b/contrib/fuzzystrmatch/fuzzystrmatch.sql.in index cab78997fa7..05a347d6b8d 100644 --- a/contrib/fuzzystrmatch/fuzzystrmatch.sql.in +++ b/contrib/fuzzystrmatch/fuzzystrmatch.sql.in @@ -1,4 +1,4 @@ -/* $PostgreSQL: pgsql/contrib/fuzzystrmatch/fuzzystrmatch.sql.in,v 1.10 2008/04/03 21:13:07 tgl Exp $ */ +/* contrib/fuzzystrmatch/fuzzystrmatch.sql.in */ -- Adjust this setting to control where the objects get created. SET search_path = public; diff --git a/contrib/fuzzystrmatch/uninstall_fuzzystrmatch.sql b/contrib/fuzzystrmatch/uninstall_fuzzystrmatch.sql index bcf05da1322..99d25485691 100644 --- a/contrib/fuzzystrmatch/uninstall_fuzzystrmatch.sql +++ b/contrib/fuzzystrmatch/uninstall_fuzzystrmatch.sql @@ -1,4 +1,4 @@ -/* $PostgreSQL: pgsql/contrib/fuzzystrmatch/uninstall_fuzzystrmatch.sql,v 1.4 2008/04/03 21:13:07 tgl Exp $ */ +/* contrib/fuzzystrmatch/uninstall_fuzzystrmatch.sql */ -- Adjust this setting to control where the objects get dropped. SET search_path = public; diff --git a/contrib/hstore/Makefile b/contrib/hstore/Makefile index bb69d708055..e466b6f7064 100644 --- a/contrib/hstore/Makefile +++ b/contrib/hstore/Makefile @@ -1,4 +1,4 @@ -# $PostgreSQL: pgsql/contrib/hstore/Makefile,v 1.7 2009/09/30 19:50:22 tgl Exp $ +# contrib/hstore/Makefile subdir = contrib/hstore top_builddir = ../.. diff --git a/contrib/hstore/crc32.c b/contrib/hstore/crc32.c index dc5765d056d..d541d0cc951 100644 --- a/contrib/hstore/crc32.c +++ b/contrib/hstore/crc32.c @@ -1,5 +1,5 @@ /* - * $PostgreSQL: pgsql/contrib/hstore/crc32.c,v 1.4 2009/06/11 14:48:51 momjian Exp $ + * contrib/hstore/crc32.c * * Both POSIX and CRC32 checksums */ diff --git a/contrib/hstore/crc32.h b/contrib/hstore/crc32.h index e008b1a6646..f5bfd82517f 100644 --- a/contrib/hstore/crc32.h +++ b/contrib/hstore/crc32.h @@ -1,5 +1,5 @@ /* - * $PostgreSQL: pgsql/contrib/hstore/crc32.h,v 1.3 2009/06/11 14:48:51 momjian Exp $ + * contrib/hstore/crc32.h */ #ifndef _CRC32_H #define _CRC32_H diff --git a/contrib/hstore/hstore.h b/contrib/hstore/hstore.h index 796dce575e5..8906397ad23 100644 --- a/contrib/hstore/hstore.h +++ b/contrib/hstore/hstore.h @@ -1,5 +1,5 @@ /* - * $PostgreSQL: pgsql/contrib/hstore/hstore.h,v 1.10 2010/02/26 02:00:32 momjian Exp $ + * contrib/hstore/hstore.h */ #ifndef __HSTORE_H__ #define __HSTORE_H__ diff --git a/contrib/hstore/hstore.sql.in b/contrib/hstore/hstore.sql.in index c7a5e8e5562..5b39c189e11 100644 --- a/contrib/hstore/hstore.sql.in +++ b/contrib/hstore/hstore.sql.in @@ -1,4 +1,4 @@ -/* $PostgreSQL: pgsql/contrib/hstore/hstore.sql.in,v 1.15 2010/07/02 20:36:48 rhaas Exp $ */ +/* contrib/hstore/hstore.sql.in */ -- Adjust this setting to control where the objects get created. SET search_path = public; diff --git a/contrib/hstore/hstore_compat.c b/contrib/hstore/hstore_compat.c index ca2777cd8d8..5778f74a805 100644 --- a/contrib/hstore/hstore_compat.c +++ b/contrib/hstore/hstore_compat.c @@ -1,5 +1,5 @@ /* - * $PostgreSQL: pgsql/contrib/hstore/hstore_compat.c,v 1.3 2010/09/16 02:54:01 tgl Exp $ + * contrib/hstore/hstore_compat.c * * Notes on old/new hstore format disambiguation. * diff --git a/contrib/hstore/hstore_gin.c b/contrib/hstore/hstore_gin.c index f5056f53ec6..da9b79d8de0 100644 --- a/contrib/hstore/hstore_gin.c +++ b/contrib/hstore/hstore_gin.c @@ -1,5 +1,5 @@ /* - * $PostgreSQL: pgsql/contrib/hstore/hstore_gin.c,v 1.8 2010/02/26 02:00:32 momjian Exp $ + * contrib/hstore/hstore_gin.c */ #include "postgres.h" diff --git a/contrib/hstore/hstore_gist.c b/contrib/hstore/hstore_gist.c index 6fe1860f3bb..88d89ece23b 100644 --- a/contrib/hstore/hstore_gist.c +++ b/contrib/hstore/hstore_gist.c @@ -1,5 +1,5 @@ /* - * $PostgreSQL: pgsql/contrib/hstore/hstore_gist.c,v 1.13 2010/09/16 02:54:01 tgl Exp $ + * contrib/hstore/hstore_gist.c */ #include "postgres.h" diff --git a/contrib/hstore/hstore_io.c b/contrib/hstore/hstore_io.c index fa6da693e94..0058f5c1b3f 100644 --- a/contrib/hstore/hstore_io.c +++ b/contrib/hstore/hstore_io.c @@ -1,5 +1,5 @@ /* - * $PostgreSQL: pgsql/contrib/hstore/hstore_io.c,v 1.13 2010/02/26 02:00:32 momjian Exp $ + * contrib/hstore/hstore_io.c */ #include "postgres.h" diff --git a/contrib/hstore/hstore_op.c b/contrib/hstore/hstore_op.c index ebee60a1dbe..8d73a463aba 100644 --- a/contrib/hstore/hstore_op.c +++ b/contrib/hstore/hstore_op.c @@ -1,5 +1,5 @@ /* - * $PostgreSQL: pgsql/contrib/hstore/hstore_op.c,v 1.16 2010/02/26 02:00:32 momjian Exp $ + * contrib/hstore/hstore_op.c */ #include "postgres.h" diff --git a/contrib/hstore/uninstall_hstore.sql b/contrib/hstore/uninstall_hstore.sql index ca2b05aa835..a03e43164f8 100644 --- a/contrib/hstore/uninstall_hstore.sql +++ b/contrib/hstore/uninstall_hstore.sql @@ -1,4 +1,4 @@ -/* $PostgreSQL: pgsql/contrib/hstore/uninstall_hstore.sql,v 1.11 2010/07/02 20:36:48 rhaas Exp $ */ +/* contrib/hstore/uninstall_hstore.sql */ -- Adjust this setting to control where the objects get dropped. SET search_path = public; diff --git a/contrib/intagg/Makefile b/contrib/intagg/Makefile index 73ce7e4173f..9bb1866e787 100644 --- a/contrib/intagg/Makefile +++ b/contrib/intagg/Makefile @@ -1,4 +1,4 @@ -# $PostgreSQL: pgsql/contrib/intagg/Makefile,v 1.11 2010/02/05 03:06:30 momjian Exp $ +# contrib/intagg/Makefile DATA = int_aggregate.sql uninstall_int_aggregate.sql diff --git a/contrib/intagg/int_aggregate.sql b/contrib/intagg/int_aggregate.sql index 7ed7c5ddd2d..289e41b671a 100644 --- a/contrib/intagg/int_aggregate.sql +++ b/contrib/intagg/int_aggregate.sql @@ -1,4 +1,4 @@ -/* $PostgreSQL: pgsql/contrib/intagg/int_aggregate.sql,v 1.1 2008/11/14 19:58:45 tgl Exp $ */ +/* contrib/intagg/int_aggregate.sql */ -- Adjust this setting to control where the objects get created. SET search_path = public; diff --git a/contrib/intagg/uninstall_int_aggregate.sql b/contrib/intagg/uninstall_int_aggregate.sql index fe0f4c7df4e..2e553453250 100644 --- a/contrib/intagg/uninstall_int_aggregate.sql +++ b/contrib/intagg/uninstall_int_aggregate.sql @@ -1,4 +1,4 @@ -/* $PostgreSQL: pgsql/contrib/intagg/uninstall_int_aggregate.sql,v 1.4 2008/11/14 19:58:45 tgl Exp $ */ +/* contrib/intagg/uninstall_int_aggregate.sql */ -- Adjust this setting to control where the objects get dropped. SET search_path = public; diff --git a/contrib/intarray/Makefile b/contrib/intarray/Makefile index 09d7cb0bb52..18340f9d71b 100644 --- a/contrib/intarray/Makefile +++ b/contrib/intarray/Makefile @@ -1,4 +1,4 @@ -# $PostgreSQL: pgsql/contrib/intarray/Makefile,v 1.16 2007/11/10 23:59:51 momjian Exp $ +# contrib/intarray/Makefile MODULE_big = _int OBJS = _int_bool.o _int_gist.o _int_op.o _int_tool.o _intbig_gist.o _int_gin.o diff --git a/contrib/intarray/_int.h b/contrib/intarray/_int.h index 35dbb54796f..dd50b37d2ea 100644 --- a/contrib/intarray/_int.h +++ b/contrib/intarray/_int.h @@ -1,5 +1,5 @@ /* - * $PostgreSQL: pgsql/contrib/intarray/_int.h,v 1.17 2009/06/11 14:48:51 momjian Exp $ + * contrib/intarray/_int.h */ #ifndef ___INT_H__ #define ___INT_H__ diff --git a/contrib/intarray/_int.sql.in b/contrib/intarray/_int.sql.in index 960d81a6382..2a6ed911adf 100644 --- a/contrib/intarray/_int.sql.in +++ b/contrib/intarray/_int.sql.in @@ -1,4 +1,4 @@ -/* $PostgreSQL: pgsql/contrib/intarray/_int.sql.in,v 1.32 2009/06/11 18:30:03 tgl Exp $ */ +/* contrib/intarray/_int.sql.in */ -- Adjust this setting to control where the objects get created. SET search_path = public; diff --git a/contrib/intarray/_int_bool.c b/contrib/intarray/_int_bool.c index 438db2ca95d..7557c6acb72 100644 --- a/contrib/intarray/_int_bool.c +++ b/contrib/intarray/_int_bool.c @@ -1,5 +1,5 @@ /* - * $PostgreSQL: pgsql/contrib/intarray/_int_bool.c,v 1.16 2009/06/11 14:48:51 momjian Exp $ + * contrib/intarray/_int_bool.c */ #include "postgres.h" diff --git a/contrib/intarray/_int_gin.c b/contrib/intarray/_int_gin.c index 375ff3ae25e..b5ad69eba35 100644 --- a/contrib/intarray/_int_gin.c +++ b/contrib/intarray/_int_gin.c @@ -1,5 +1,5 @@ /* - * $PostgreSQL: pgsql/contrib/intarray/_int_gin.c,v 1.11 2010/03/25 15:50:10 tgl Exp $ + * contrib/intarray/_int_gin.c */ #include "postgres.h" diff --git a/contrib/intarray/_int_gist.c b/contrib/intarray/_int_gist.c index 29e08eda664..65c9bf2e74b 100644 --- a/contrib/intarray/_int_gist.c +++ b/contrib/intarray/_int_gist.c @@ -1,5 +1,5 @@ /* - * $PostgreSQL: pgsql/contrib/intarray/_int_gist.c,v 1.23 2009/06/11 14:48:51 momjian Exp $ + * contrib/intarray/_int_gist.c */ #include "postgres.h" diff --git a/contrib/intarray/_int_op.c b/contrib/intarray/_int_op.c index 54858322a2e..1d99c6905ef 100644 --- a/contrib/intarray/_int_op.c +++ b/contrib/intarray/_int_op.c @@ -1,5 +1,5 @@ /* - * $PostgreSQL: pgsql/contrib/intarray/_int_op.c,v 1.9 2009/06/11 14:48:51 momjian Exp $ + * contrib/intarray/_int_op.c */ #include "postgres.h" diff --git a/contrib/intarray/_int_tool.c b/contrib/intarray/_int_tool.c index 8c0ec29c31b..8093103ba46 100644 --- a/contrib/intarray/_int_tool.c +++ b/contrib/intarray/_int_tool.c @@ -1,5 +1,5 @@ /* - * $PostgreSQL: pgsql/contrib/intarray/_int_tool.c,v 1.12 2009/06/11 14:48:51 momjian Exp $ + * contrib/intarray/_int_tool.c */ #include "postgres.h" diff --git a/contrib/intarray/_intbig_gist.c b/contrib/intarray/_intbig_gist.c index f9c5986db22..d9557a6b11a 100644 --- a/contrib/intarray/_intbig_gist.c +++ b/contrib/intarray/_intbig_gist.c @@ -1,5 +1,5 @@ /* - * $PostgreSQL: pgsql/contrib/intarray/_intbig_gist.c,v 1.20 2009/06/11 14:48:51 momjian Exp $ + * contrib/intarray/_intbig_gist.c */ #include "postgres.h" diff --git a/contrib/intarray/bench/create_test.pl b/contrib/intarray/bench/create_test.pl index 01671bf5a2a..3a5e96301bf 100755 --- a/contrib/intarray/bench/create_test.pl +++ b/contrib/intarray/bench/create_test.pl @@ -1,6 +1,6 @@ #!/usr/bin/perl -# $PostgreSQL: pgsql/contrib/intarray/bench/create_test.pl,v 1.4 2006/03/11 04:38:29 momjian Exp $ +# contrib/intarray/bench/create_test.pl use strict; print <<EOT; diff --git a/contrib/intarray/uninstall__int.sql b/contrib/intarray/uninstall__int.sql index ba962cd0d57..5cda23fdad1 100644 --- a/contrib/intarray/uninstall__int.sql +++ b/contrib/intarray/uninstall__int.sql @@ -1,4 +1,4 @@ -/* $PostgreSQL: pgsql/contrib/intarray/uninstall__int.sql,v 1.12 2009/06/07 20:09:34 tgl Exp $ */ +/* contrib/intarray/uninstall__int.sql */ -- Adjust this setting to control where the objects get created. SET search_path = public; diff --git a/contrib/isn/EAN13.h b/contrib/isn/EAN13.h index 87b611a5424..7023ebdf638 100644 --- a/contrib/isn/EAN13.h +++ b/contrib/isn/EAN13.h @@ -6,7 +6,7 @@ * http://www.gs1.org/productssolutions/idkeys/support/prefix_list.html * * IDENTIFICATION - * $PostgreSQL: pgsql/contrib/isn/EAN13.h,v 1.2 2006/10/04 00:29:45 momjian Exp $ + * contrib/isn/EAN13.h * */ diff --git a/contrib/isn/ISBN.h b/contrib/isn/ISBN.h index 26c84afe801..d8d5ccd1fee 100644 --- a/contrib/isn/ISBN.h +++ b/contrib/isn/ISBN.h @@ -7,7 +7,7 @@ * http://www.isbn.org/ * * IDENTIFICATION - * $PostgreSQL: pgsql/contrib/isn/ISBN.h,v 1.2 2006/10/04 00:29:45 momjian Exp $ + * contrib/isn/ISBN.h * * 0-393-04002-X => 039304002(X) <=> 039304002 <=> (978)039304002 <=> 978039304002(9) <=> 978-0-393-04002-9 * diff --git a/contrib/isn/ISMN.h b/contrib/isn/ISMN.h index 1d7b2af8fd7..281f2cdefcd 100644 --- a/contrib/isn/ISMN.h +++ b/contrib/isn/ISMN.h @@ -6,7 +6,7 @@ * http://www.ismn-international.org * * IDENTIFICATION - * $PostgreSQL: pgsql/contrib/isn/ISMN.h,v 1.2 2006/10/04 00:29:45 momjian Exp $ + * contrib/isn/ISMN.h * * M-3452-4680-5 <=> (0)-3452-4680-5 <=> 0345246805 <=> 9790345246805 <=> 979-0-3452-4680-5 * diff --git a/contrib/isn/ISSN.h b/contrib/isn/ISSN.h index 063a5d97f13..082efcff7c6 100644 --- a/contrib/isn/ISSN.h +++ b/contrib/isn/ISSN.h @@ -6,7 +6,7 @@ * http://www.issn.org/ * * IDENTIFICATION - * $PostgreSQL: pgsql/contrib/isn/ISSN.h,v 1.2 2006/10/04 00:29:45 momjian Exp $ + * contrib/isn/ISSN.h * * 1144-875X <=> 1144875(X) <=> 1144875 <=> (977)1144875 <=> 9771144875(00) <=> 977114487500(7) <=> 977-1144-875-00-7 * diff --git a/contrib/isn/Makefile b/contrib/isn/Makefile index 8431921d83e..ae33b758fbc 100644 --- a/contrib/isn/Makefile +++ b/contrib/isn/Makefile @@ -1,4 +1,4 @@ -# $PostgreSQL: pgsql/contrib/isn/Makefile,v 1.3 2007/11/10 23:59:51 momjian Exp $ +# contrib/isn/Makefile MODULES = isn DATA_built = isn.sql diff --git a/contrib/isn/UPC.h b/contrib/isn/UPC.h index 2b58a6b5660..b95473e12df 100644 --- a/contrib/isn/UPC.h +++ b/contrib/isn/UPC.h @@ -6,7 +6,7 @@ * * * IDENTIFICATION - * $PostgreSQL: pgsql/contrib/isn/UPC.h,v 1.2 2006/10/04 00:29:45 momjian Exp $ + * contrib/isn/UPC.h * */ diff --git a/contrib/isn/isn.c b/contrib/isn/isn.c index dac760b1114..979358f9a6c 100644 --- a/contrib/isn/isn.c +++ b/contrib/isn/isn.c @@ -7,7 +7,7 @@ * Portions Copyright (c) 1996-2010, PostgreSQL Global Development Group * * IDENTIFICATION - * $PostgreSQL: pgsql/contrib/isn/isn.c,v 1.14 2010/02/26 02:00:32 momjian Exp $ + * contrib/isn/isn.c * *------------------------------------------------------------------------- */ diff --git a/contrib/isn/isn.h b/contrib/isn/isn.h index fdc72d9b539..e9d6f4df87c 100644 --- a/contrib/isn/isn.h +++ b/contrib/isn/isn.h @@ -7,7 +7,7 @@ * Portions Copyright (c) 1996-2010, PostgreSQL Global Development Group * * IDENTIFICATION - * $PostgreSQL: pgsql/contrib/isn/isn.h,v 1.10 2010/02/26 02:00:32 momjian Exp $ + * contrib/isn/isn.h * *------------------------------------------------------------------------- */ diff --git a/contrib/isn/isn.sql.in b/contrib/isn/isn.sql.in index 1963fbbee34..8f73c5c497c 100644 --- a/contrib/isn/isn.sql.in +++ b/contrib/isn/isn.sql.in @@ -1,4 +1,4 @@ -/* $PostgreSQL: pgsql/contrib/isn/isn.sql.in,v 1.9 2008/11/30 19:01:29 tgl Exp $ */ +/* contrib/isn/isn.sql.in */ -- Adjust this setting to control where the objects get created. SET search_path = public; diff --git a/contrib/isn/uninstall_isn.sql b/contrib/isn/uninstall_isn.sql index cc7b573b044..bf866b47485 100644 --- a/contrib/isn/uninstall_isn.sql +++ b/contrib/isn/uninstall_isn.sql @@ -1,4 +1,4 @@ -/* $PostgreSQL: pgsql/contrib/isn/uninstall_isn.sql,v 1.4 2008/11/28 21:19:13 tgl Exp $ */ +/* contrib/isn/uninstall_isn.sql */ -- Adjust this setting to control where the objects get dropped. SET search_path = public; diff --git a/contrib/lo/Makefile b/contrib/lo/Makefile index 336cb5685e7..43c01f57c0a 100644 --- a/contrib/lo/Makefile +++ b/contrib/lo/Makefile @@ -1,4 +1,4 @@ -# $PostgreSQL: pgsql/contrib/lo/Makefile,v 1.17 2007/11/10 23:59:51 momjian Exp $ +# contrib/lo/Makefile MODULES = lo DATA_built = lo.sql diff --git a/contrib/lo/lo.c b/contrib/lo/lo.c index 2e37a28591e..0e3559c0201 100644 --- a/contrib/lo/lo.c +++ b/contrib/lo/lo.c @@ -1,7 +1,7 @@ /* * PostgreSQL definitions for managed Large Objects. * - * $PostgreSQL: pgsql/contrib/lo/lo.c,v 1.17 2006/07/11 17:04:12 momjian Exp $ + * contrib/lo/lo.c * */ diff --git a/contrib/lo/lo.sql.in b/contrib/lo/lo.sql.in index 6dcf6659c5f..8c7afbe5e30 100644 --- a/contrib/lo/lo.sql.in +++ b/contrib/lo/lo.sql.in @@ -1,4 +1,4 @@ -/* $PostgreSQL: pgsql/contrib/lo/lo.sql.in,v 1.15 2007/11/13 04:24:28 momjian Exp $ */ +/* contrib/lo/lo.sql.in */ -- Adjust this setting to control where the objects get created. SET search_path = public; diff --git a/contrib/lo/lo_test.sql b/contrib/lo/lo_test.sql index 73022b2535a..7e52362f81d 100644 --- a/contrib/lo/lo_test.sql +++ b/contrib/lo/lo_test.sql @@ -1,4 +1,4 @@ -/* $PostgreSQL: pgsql/contrib/lo/lo_test.sql,v 1.6 2009/12/14 00:39:10 itagaki Exp $ */ +/* contrib/lo/lo_test.sql */ -- Adjust this setting to control where the objects get created. SET search_path = public; diff --git a/contrib/lo/uninstall_lo.sql b/contrib/lo/uninstall_lo.sql index 7cbc796a3de..77deb1d550d 100644 --- a/contrib/lo/uninstall_lo.sql +++ b/contrib/lo/uninstall_lo.sql @@ -1,4 +1,4 @@ -/* $PostgreSQL: pgsql/contrib/lo/uninstall_lo.sql,v 1.3 2007/11/13 04:24:28 momjian Exp $ */ +/* contrib/lo/uninstall_lo.sql */ -- Adjust this setting to control where the objects get dropped. SET search_path = public; diff --git a/contrib/ltree/Makefile b/contrib/ltree/Makefile index 130658a2a75..bad3cbfe85c 100644 --- a/contrib/ltree/Makefile +++ b/contrib/ltree/Makefile @@ -1,4 +1,4 @@ -# $PostgreSQL: pgsql/contrib/ltree/Makefile,v 1.8 2007/11/10 23:59:51 momjian Exp $ +# contrib/ltree/Makefile PG_CPPFLAGS = -DLOWER_NODE MODULE_big = ltree diff --git a/contrib/ltree/_ltree_gist.c b/contrib/ltree/_ltree_gist.c index 4c0e7c25c0f..f221c2de543 100644 --- a/contrib/ltree/_ltree_gist.c +++ b/contrib/ltree/_ltree_gist.c @@ -1,5 +1,5 @@ /* - * $PostgreSQL: pgsql/contrib/ltree/_ltree_gist.c,v 1.27 2010/02/24 18:02:24 tgl Exp $ + * contrib/ltree/_ltree_gist.c * * * GiST support for ltree[] diff --git a/contrib/ltree/_ltree_op.c b/contrib/ltree/_ltree_op.c index 02c96c05d4c..096a748c513 100644 --- a/contrib/ltree/_ltree_op.c +++ b/contrib/ltree/_ltree_op.c @@ -1,5 +1,5 @@ /* - * $PostgreSQL: pgsql/contrib/ltree/_ltree_op.c,v 1.14 2010/02/24 18:02:24 tgl Exp $ + * contrib/ltree/_ltree_op.c * * * op function for ltree[] diff --git a/contrib/ltree/crc32.c b/contrib/ltree/crc32.c index f0078d6e426..c736defc73f 100644 --- a/contrib/ltree/crc32.c +++ b/contrib/ltree/crc32.c @@ -1,6 +1,6 @@ /* Both POSIX and CRC32 checksums */ -/* $PostgreSQL: pgsql/contrib/ltree/crc32.c,v 1.8 2007/07/15 22:40:28 tgl Exp $ */ +/* contrib/ltree/crc32.c */ #include <sys/types.h> #include <stdio.h> diff --git a/contrib/ltree/crc32.h b/contrib/ltree/crc32.h index 69d9eee3e12..269d05d0c11 100644 --- a/contrib/ltree/crc32.h +++ b/contrib/ltree/crc32.h @@ -1,7 +1,7 @@ #ifndef _CRC32_H #define _CRC32_H -/* $PostgreSQL: pgsql/contrib/ltree/crc32.h,v 1.3 2006/03/11 04:38:29 momjian Exp $ */ +/* contrib/ltree/crc32.h */ /* Returns crc32 of data block */ extern unsigned int ltree_crc32_sz(char *buf, int size); diff --git a/contrib/ltree/lquery_op.c b/contrib/ltree/lquery_op.c index 1059417e771..1fbed78157a 100644 --- a/contrib/ltree/lquery_op.c +++ b/contrib/ltree/lquery_op.c @@ -1,7 +1,7 @@ /* * op function for ltree and lquery * Teodor Sigaev <teodor@stack.net> - * $PostgreSQL: pgsql/contrib/ltree/lquery_op.c,v 1.15 2010/02/24 18:02:24 tgl Exp $ + * contrib/ltree/lquery_op.c */ #include "postgres.h" diff --git a/contrib/ltree/ltree.h b/contrib/ltree/ltree.h index f16c6f9a32a..8e4ea4c1513 100644 --- a/contrib/ltree/ltree.h +++ b/contrib/ltree/ltree.h @@ -1,4 +1,4 @@ -/* $PostgreSQL: pgsql/contrib/ltree/ltree.h,v 1.22 2009/06/11 14:48:51 momjian Exp $ */ +/* contrib/ltree/ltree.h */ #ifndef __LTREE_H__ #define __LTREE_H__ diff --git a/contrib/ltree/ltree.sql.in b/contrib/ltree/ltree.sql.in index 364c44db1b3..4ea6277c576 100644 --- a/contrib/ltree/ltree.sql.in +++ b/contrib/ltree/ltree.sql.in @@ -1,4 +1,4 @@ -/* $PostgreSQL: pgsql/contrib/ltree/ltree.sql.in,v 1.18 2009/06/11 18:30:03 tgl Exp $ */ +/* contrib/ltree/ltree.sql.in */ -- Adjust this setting to control where the objects get created. SET search_path = public; diff --git a/contrib/ltree/ltree_gist.c b/contrib/ltree/ltree_gist.c index 46fccb1ee1b..5fa7b59d32d 100644 --- a/contrib/ltree/ltree_gist.c +++ b/contrib/ltree/ltree_gist.c @@ -1,7 +1,7 @@ /* * GiST support for ltree * Teodor Sigaev <teodor@stack.net> - * $PostgreSQL: pgsql/contrib/ltree/ltree_gist.c,v 1.26 2010/02/24 18:02:24 tgl Exp $ + * contrib/ltree/ltree_gist.c */ #include "postgres.h" diff --git a/contrib/ltree/ltree_io.c b/contrib/ltree/ltree_io.c index a88eb16cb97..3e88b81c16e 100644 --- a/contrib/ltree/ltree_io.c +++ b/contrib/ltree/ltree_io.c @@ -1,7 +1,7 @@ /* * in/out function for ltree and lquery * Teodor Sigaev <teodor@stack.net> - * $PostgreSQL: pgsql/contrib/ltree/ltree_io.c,v 1.18 2009/06/11 14:48:51 momjian Exp $ + * contrib/ltree/ltree_io.c */ #include "postgres.h" diff --git a/contrib/ltree/ltree_op.c b/contrib/ltree/ltree_op.c index 2e6d5367d89..2ddfdec7eb1 100644 --- a/contrib/ltree/ltree_op.c +++ b/contrib/ltree/ltree_op.c @@ -1,7 +1,7 @@ /* * op function for ltree * Teodor Sigaev <teodor@stack.net> - * $PostgreSQL: pgsql/contrib/ltree/ltree_op.c,v 1.20 2009/06/11 14:48:51 momjian Exp $ + * contrib/ltree/ltree_op.c */ #include "postgres.h" diff --git a/contrib/ltree/ltreetest.sql b/contrib/ltree/ltreetest.sql index 8621188b7fb..d6996caf3c4 100644 --- a/contrib/ltree/ltreetest.sql +++ b/contrib/ltree/ltreetest.sql @@ -1,4 +1,4 @@ -/* $PostgreSQL: pgsql/contrib/ltree/ltreetest.sql,v 1.4 2007/11/13 04:24:28 momjian Exp $ */ +/* contrib/ltree/ltreetest.sql */ -- Adjust this setting to control where the objects get created. SET search_path = public; diff --git a/contrib/ltree/ltxtquery_io.c b/contrib/ltree/ltxtquery_io.c index b158c4b4416..e1240c3d2fe 100644 --- a/contrib/ltree/ltxtquery_io.c +++ b/contrib/ltree/ltxtquery_io.c @@ -1,7 +1,7 @@ /* * txtquery io * Teodor Sigaev <teodor@stack.net> - * $PostgreSQL: pgsql/contrib/ltree/ltxtquery_io.c,v 1.17 2009/06/11 14:48:51 momjian Exp $ + * contrib/ltree/ltxtquery_io.c */ #include "postgres.h" diff --git a/contrib/ltree/ltxtquery_op.c b/contrib/ltree/ltxtquery_op.c index 559c05e2bf7..1c138886058 100644 --- a/contrib/ltree/ltxtquery_op.c +++ b/contrib/ltree/ltxtquery_op.c @@ -1,7 +1,7 @@ /* * txtquery operations with ltree * Teodor Sigaev <teodor@stack.net> - * $PostgreSQL: pgsql/contrib/ltree/ltxtquery_op.c,v 1.10 2009/06/11 14:48:51 momjian Exp $ + * contrib/ltree/ltxtquery_op.c */ #include "postgres.h" diff --git a/contrib/ltree/uninstall_ltree.sql b/contrib/ltree/uninstall_ltree.sql index acd07df1e8a..07ce1189b5f 100644 --- a/contrib/ltree/uninstall_ltree.sql +++ b/contrib/ltree/uninstall_ltree.sql @@ -1,4 +1,4 @@ -/* $PostgreSQL: pgsql/contrib/ltree/uninstall_ltree.sql,v 1.6 2008/04/14 17:05:32 tgl Exp $ */ +/* contrib/ltree/uninstall_ltree.sql */ -- Adjust this setting to control where the objects get dropped. SET search_path = public; diff --git a/contrib/oid2name/Makefile b/contrib/oid2name/Makefile index ce043550afb..f6f890ecd5a 100644 --- a/contrib/oid2name/Makefile +++ b/contrib/oid2name/Makefile @@ -1,4 +1,4 @@ -# $PostgreSQL: pgsql/contrib/oid2name/Makefile,v 1.11 2010/05/12 11:33:07 momjian Exp $ +# contrib/oid2name/Makefile PGFILEDESC = "oid2name - examine the file structure" PGAPPICON=win32 diff --git a/contrib/oid2name/oid2name.c b/contrib/oid2name/oid2name.c index ff824278aac..05c06ccc684 100644 --- a/contrib/oid2name/oid2name.c +++ b/contrib/oid2name/oid2name.c @@ -5,7 +5,7 @@ * Originally by * B. Palmer, bpalmer@crimelabs.net 1-17-2001 * - * $PostgreSQL: pgsql/contrib/oid2name/oid2name.c,v 1.38 2010/02/26 02:00:32 momjian Exp $ + * contrib/oid2name/oid2name.c */ #include "postgres_fe.h" diff --git a/contrib/pageinspect/Makefile b/contrib/pageinspect/Makefile index dd531948402..a8ae51dfd1e 100644 --- a/contrib/pageinspect/Makefile +++ b/contrib/pageinspect/Makefile @@ -2,7 +2,7 @@ # # pageinspect Makefile # -# $PostgreSQL: pgsql/contrib/pageinspect/Makefile,v 1.5 2010/08/19 05:57:33 petere Exp $ +# contrib/pageinspect/Makefile # #------------------------------------------------------------------------- diff --git a/contrib/pageinspect/btreefuncs.c b/contrib/pageinspect/btreefuncs.c index 4f56864d2e1..ef27cd4080c 100644 --- a/contrib/pageinspect/btreefuncs.c +++ b/contrib/pageinspect/btreefuncs.c @@ -1,5 +1,5 @@ /* - * $PostgreSQL: pgsql/contrib/pageinspect/btreefuncs.c,v 1.10 2009/06/11 14:48:51 momjian Exp $ + * contrib/pageinspect/btreefuncs.c * * * btreefuncs.c diff --git a/contrib/pageinspect/fsmfuncs.c b/contrib/pageinspect/fsmfuncs.c index 5fbf93ba2f8..0a22971b9b8 100644 --- a/contrib/pageinspect/fsmfuncs.c +++ b/contrib/pageinspect/fsmfuncs.c @@ -12,7 +12,7 @@ * Copyright (c) 2007-2010, PostgreSQL Global Development Group * * IDENTIFICATION - * $PostgreSQL: pgsql/contrib/pageinspect/fsmfuncs.c,v 1.4 2010/01/02 16:57:32 momjian Exp $ + * contrib/pageinspect/fsmfuncs.c * *------------------------------------------------------------------------- */ diff --git a/contrib/pageinspect/heapfuncs.c b/contrib/pageinspect/heapfuncs.c index 143a47cb80e..3ed77118b4d 100644 --- a/contrib/pageinspect/heapfuncs.c +++ b/contrib/pageinspect/heapfuncs.c @@ -18,7 +18,7 @@ * Copyright (c) 2007-2010, PostgreSQL Global Development Group * * IDENTIFICATION - * $PostgreSQL: pgsql/contrib/pageinspect/heapfuncs.c,v 1.9 2010/04/02 15:19:22 mha Exp $ + * contrib/pageinspect/heapfuncs.c * *------------------------------------------------------------------------- */ diff --git a/contrib/pageinspect/pageinspect.sql.in b/contrib/pageinspect/pageinspect.sql.in index abf1ddc57c1..d6058d409f3 100644 --- a/contrib/pageinspect/pageinspect.sql.in +++ b/contrib/pageinspect/pageinspect.sql.in @@ -1,4 +1,4 @@ -/* $PostgreSQL: pgsql/contrib/pageinspect/pageinspect.sql.in,v 1.7 2009/06/08 16:22:44 tgl Exp $ */ +/* contrib/pageinspect/pageinspect.sql.in */ -- Adjust this setting to control where the objects get created. SET search_path = public; diff --git a/contrib/pageinspect/rawpage.c b/contrib/pageinspect/rawpage.c index 9043fa37bd9..f341a7247d1 100644 --- a/contrib/pageinspect/rawpage.c +++ b/contrib/pageinspect/rawpage.c @@ -8,7 +8,7 @@ * Copyright (c) 2007-2010, PostgreSQL Global Development Group * * IDENTIFICATION - * $PostgreSQL: pgsql/contrib/pageinspect/rawpage.c,v 1.14 2010/01/02 16:57:32 momjian Exp $ + * contrib/pageinspect/rawpage.c * *------------------------------------------------------------------------- */ diff --git a/contrib/pageinspect/uninstall_pageinspect.sql b/contrib/pageinspect/uninstall_pageinspect.sql index 8c0a7f7f371..a980fd7d01e 100644 --- a/contrib/pageinspect/uninstall_pageinspect.sql +++ b/contrib/pageinspect/uninstall_pageinspect.sql @@ -1,4 +1,4 @@ -/* $PostgreSQL: pgsql/contrib/pageinspect/uninstall_pageinspect.sql,v 1.5 2009/06/08 16:22:44 tgl Exp $ */ +/* contrib/pageinspect/uninstall_pageinspect.sql */ -- Adjust this setting to control where the objects get dropped. SET search_path = public; diff --git a/contrib/passwordcheck/Makefile b/contrib/passwordcheck/Makefile index 1d2c8b1c34e..4829bfd1f34 100644 --- a/contrib/passwordcheck/Makefile +++ b/contrib/passwordcheck/Makefile @@ -1,4 +1,4 @@ -# $PostgreSQL: pgsql/contrib/passwordcheck/Makefile,v 1.1 2009/11/18 21:57:56 tgl Exp $ +# contrib/passwordcheck/Makefile MODULE_big = passwordcheck OBJS = passwordcheck.o diff --git a/contrib/passwordcheck/passwordcheck.c b/contrib/passwordcheck/passwordcheck.c index adf417769e7..32b7c9a5c1c 100644 --- a/contrib/passwordcheck/passwordcheck.c +++ b/contrib/passwordcheck/passwordcheck.c @@ -8,7 +8,7 @@ * Author: Laurenz Albe <laurenz.albe@wien.gv.at> * * IDENTIFICATION - * $PostgreSQL: pgsql/contrib/passwordcheck/passwordcheck.c,v 1.3 2010/02/26 02:00:32 momjian Exp $ + * contrib/passwordcheck/passwordcheck.c * *------------------------------------------------------------------------- */ diff --git a/contrib/pg_archivecleanup/Makefile b/contrib/pg_archivecleanup/Makefile index d858b5bcd34..2011c145ce1 100644 --- a/contrib/pg_archivecleanup/Makefile +++ b/contrib/pg_archivecleanup/Makefile @@ -1,4 +1,4 @@ -# $PostgreSQL: pgsql/contrib/pg_archivecleanup/Makefile,v 1.1 2010/06/14 16:19:24 sriggs Exp $ +# contrib/pg_archivecleanup/Makefile PGFILEDESC = "pg_archivecleanup - cleans archive when used with streaming replication" PGAPPICON=win32 diff --git a/contrib/pg_archivecleanup/pg_archivecleanup.c b/contrib/pg_archivecleanup/pg_archivecleanup.c index 3d12acbdb0a..79892077c8c 100644 --- a/contrib/pg_archivecleanup/pg_archivecleanup.c +++ b/contrib/pg_archivecleanup/pg_archivecleanup.c @@ -1,5 +1,5 @@ /* - * $PostgreSQL: pgsql/contrib/pg_archivecleanup/pg_archivecleanup.c,v 1.4 2010/08/23 02:56:24 tgl Exp $ + * contrib/pg_archivecleanup/pg_archivecleanup.c * * pg_archivecleanup.c * diff --git a/contrib/pg_buffercache/Makefile b/contrib/pg_buffercache/Makefile index 83aee70de12..6a47a2241ee 100644 --- a/contrib/pg_buffercache/Makefile +++ b/contrib/pg_buffercache/Makefile @@ -1,4 +1,4 @@ -# $PostgreSQL: pgsql/contrib/pg_buffercache/Makefile,v 1.5 2007/11/10 23:59:51 momjian Exp $ +# contrib/pg_buffercache/Makefile MODULE_big = pg_buffercache OBJS = pg_buffercache_pages.o diff --git a/contrib/pg_buffercache/pg_buffercache.sql.in b/contrib/pg_buffercache/pg_buffercache.sql.in index 59ada02e4cf..b23e94ed124 100644 --- a/contrib/pg_buffercache/pg_buffercache.sql.in +++ b/contrib/pg_buffercache/pg_buffercache.sql.in @@ -1,4 +1,4 @@ -/* $PostgreSQL: pgsql/contrib/pg_buffercache/pg_buffercache.sql.in,v 1.8 2008/08/14 12:56:41 heikki Exp $ */ +/* contrib/pg_buffercache/pg_buffercache.sql.in */ -- Adjust this setting to control where the objects get created. SET search_path = public; diff --git a/contrib/pg_buffercache/pg_buffercache_pages.c b/contrib/pg_buffercache/pg_buffercache_pages.c index 5939f52a044..ed882881abd 100644 --- a/contrib/pg_buffercache/pg_buffercache_pages.c +++ b/contrib/pg_buffercache/pg_buffercache_pages.c @@ -3,7 +3,7 @@ * pg_buffercache_pages.c * display some contents of the buffer cache * - * $PostgreSQL: pgsql/contrib/pg_buffercache/pg_buffercache_pages.c,v 1.16 2009/06/11 14:48:51 momjian Exp $ + * contrib/pg_buffercache/pg_buffercache_pages.c *------------------------------------------------------------------------- */ #include "postgres.h" diff --git a/contrib/pg_buffercache/uninstall_pg_buffercache.sql b/contrib/pg_buffercache/uninstall_pg_buffercache.sql index 19dc9301cab..62617cd20d9 100644 --- a/contrib/pg_buffercache/uninstall_pg_buffercache.sql +++ b/contrib/pg_buffercache/uninstall_pg_buffercache.sql @@ -1,4 +1,4 @@ -/* $PostgreSQL: pgsql/contrib/pg_buffercache/uninstall_pg_buffercache.sql,v 1.3 2007/11/13 04:24:28 momjian Exp $ */ +/* contrib/pg_buffercache/uninstall_pg_buffercache.sql */ -- Adjust this setting to control where the objects get dropped. SET search_path = public; diff --git a/contrib/pg_freespacemap/Makefile b/contrib/pg_freespacemap/Makefile index daeab59d46f..da335a86ca9 100644 --- a/contrib/pg_freespacemap/Makefile +++ b/contrib/pg_freespacemap/Makefile @@ -1,4 +1,4 @@ -# $PostgreSQL: pgsql/contrib/pg_freespacemap/Makefile,v 1.5 2008/09/30 11:17:07 heikki Exp $ +# contrib/pg_freespacemap/Makefile MODULE_big = pg_freespacemap OBJS = pg_freespacemap.o diff --git a/contrib/pg_freespacemap/pg_freespacemap.c b/contrib/pg_freespacemap/pg_freespacemap.c index 4b1dece12ae..bf6b0df8f9f 100644 --- a/contrib/pg_freespacemap/pg_freespacemap.c +++ b/contrib/pg_freespacemap/pg_freespacemap.c @@ -3,7 +3,7 @@ * pg_freespacemap.c * display contents of a free space map * - * $PostgreSQL: pgsql/contrib/pg_freespacemap/pg_freespacemap.c,v 1.14 2009/06/11 14:48:51 momjian Exp $ + * contrib/pg_freespacemap/pg_freespacemap.c *------------------------------------------------------------------------- */ #include "postgres.h" diff --git a/contrib/pg_freespacemap/pg_freespacemap.sql.in b/contrib/pg_freespacemap/pg_freespacemap.sql.in index 70543803867..5ef8ba46ad0 100644 --- a/contrib/pg_freespacemap/pg_freespacemap.sql.in +++ b/contrib/pg_freespacemap/pg_freespacemap.sql.in @@ -1,4 +1,4 @@ -/* $PostgreSQL: pgsql/contrib/pg_freespacemap/pg_freespacemap.sql.in,v 1.12 2009/06/10 22:12:28 tgl Exp $ */ +/* contrib/pg_freespacemap/pg_freespacemap.sql.in */ -- Adjust this setting to control where the objects get created. SET search_path = public; diff --git a/contrib/pg_freespacemap/uninstall_pg_freespacemap.sql b/contrib/pg_freespacemap/uninstall_pg_freespacemap.sql index e9bf0ad7d1a..168506708a7 100644 --- a/contrib/pg_freespacemap/uninstall_pg_freespacemap.sql +++ b/contrib/pg_freespacemap/uninstall_pg_freespacemap.sql @@ -1,4 +1,4 @@ -/* $PostgreSQL: pgsql/contrib/pg_freespacemap/uninstall_pg_freespacemap.sql,v 1.5 2009/06/10 22:12:28 tgl Exp $ */ +/* contrib/pg_freespacemap/uninstall_pg_freespacemap.sql */ -- Adjust this setting to control where the objects get dropped. SET search_path = public; diff --git a/contrib/pg_standby/Makefile b/contrib/pg_standby/Makefile index 5e6bbd91458..43300245cb0 100644 --- a/contrib/pg_standby/Makefile +++ b/contrib/pg_standby/Makefile @@ -1,4 +1,4 @@ -# $PostgreSQL: pgsql/contrib/pg_standby/Makefile,v 1.6 2010/05/12 11:33:07 momjian Exp $ +# contrib/pg_standby/Makefile PGFILEDESC = "pg_standby - supports creation of a warm standby" PGAPPICON=win32 diff --git a/contrib/pg_standby/pg_standby.c b/contrib/pg_standby/pg_standby.c index 70680e762d2..f25015fd147 100644 --- a/contrib/pg_standby/pg_standby.c +++ b/contrib/pg_standby/pg_standby.c @@ -1,5 +1,5 @@ /* - * $PostgreSQL: pgsql/contrib/pg_standby/pg_standby.c,v 1.29 2010/05/15 09:31:57 heikki Exp $ + * contrib/pg_standby/pg_standby.c * * * pg_standby.c diff --git a/contrib/pg_stat_statements/Makefile b/contrib/pg_stat_statements/Makefile index ce335a656ee..efb26a90f6f 100644 --- a/contrib/pg_stat_statements/Makefile +++ b/contrib/pg_stat_statements/Makefile @@ -1,4 +1,4 @@ -# $PostgreSQL: pgsql/contrib/pg_stat_statements/Makefile,v 1.1 2009/01/04 22:19:59 tgl Exp $ +# contrib/pg_stat_statements/Makefile MODULE_big = pg_stat_statements DATA_built = pg_stat_statements.sql diff --git a/contrib/pg_stat_statements/pg_stat_statements.c b/contrib/pg_stat_statements/pg_stat_statements.c index eb89aeca801..6db6cc0ea2b 100644 --- a/contrib/pg_stat_statements/pg_stat_statements.c +++ b/contrib/pg_stat_statements/pg_stat_statements.c @@ -14,7 +14,7 @@ * Copyright (c) 2008-2010, PostgreSQL Global Development Group * * IDENTIFICATION - * $PostgreSQL: pgsql/contrib/pg_stat_statements/pg_stat_statements.c,v 1.14 2010/04/28 16:54:15 tgl Exp $ + * contrib/pg_stat_statements/pg_stat_statements.c * *------------------------------------------------------------------------- */ diff --git a/contrib/pg_stat_statements/pg_stat_statements.sql.in b/contrib/pg_stat_statements/pg_stat_statements.sql.in index cf82a0e3dc8..56d5fd591a2 100644 --- a/contrib/pg_stat_statements/pg_stat_statements.sql.in +++ b/contrib/pg_stat_statements/pg_stat_statements.sql.in @@ -1,4 +1,4 @@ -/* $PostgreSQL: pgsql/contrib/pg_stat_statements/pg_stat_statements.sql.in,v 1.2 2010/01/08 00:38:19 itagaki Exp $ */ +/* contrib/pg_stat_statements/pg_stat_statements.sql.in */ -- Adjust this setting to control where the objects get created. SET search_path = public; diff --git a/contrib/pg_stat_statements/uninstall_pg_stat_statements.sql b/contrib/pg_stat_statements/uninstall_pg_stat_statements.sql index 31fd0af39d1..d2832a2986a 100644 --- a/contrib/pg_stat_statements/uninstall_pg_stat_statements.sql +++ b/contrib/pg_stat_statements/uninstall_pg_stat_statements.sql @@ -1,4 +1,4 @@ -/* $PostgreSQL: pgsql/contrib/pg_stat_statements/uninstall_pg_stat_statements.sql,v 1.1 2009/01/04 22:19:59 tgl Exp $ */ +/* contrib/pg_stat_statements/uninstall_pg_stat_statements.sql */ -- Adjust this setting to control where the objects get dropped. SET search_path = public; diff --git a/contrib/pg_trgm/Makefile b/contrib/pg_trgm/Makefile index c9f139e9b68..cf2dec795c6 100644 --- a/contrib/pg_trgm/Makefile +++ b/contrib/pg_trgm/Makefile @@ -1,4 +1,4 @@ -# $PostgreSQL: pgsql/contrib/pg_trgm/Makefile,v 1.10 2009/04/28 17:07:50 momjian Exp $ +# contrib/pg_trgm/Makefile MODULE_big = pg_trgm OBJS = trgm_op.o trgm_gist.o trgm_gin.o diff --git a/contrib/pg_trgm/pg_trgm.sql.in b/contrib/pg_trgm/pg_trgm.sql.in index 5396b52b1bc..b1f094ab407 100644 --- a/contrib/pg_trgm/pg_trgm.sql.in +++ b/contrib/pg_trgm/pg_trgm.sql.in @@ -1,4 +1,4 @@ -/* $PostgreSQL: pgsql/contrib/pg_trgm/pg_trgm.sql.in,v 1.10 2009/06/11 18:30:03 tgl Exp $ */ +/* contrib/pg_trgm/pg_trgm.sql.in */ -- Adjust this setting to control where the objects get created. SET search_path = public; diff --git a/contrib/pg_trgm/trgm.h b/contrib/pg_trgm/trgm.h index 4a89760d715..85826733f55 100644 --- a/contrib/pg_trgm/trgm.h +++ b/contrib/pg_trgm/trgm.h @@ -1,5 +1,5 @@ /* - * $PostgreSQL: pgsql/contrib/pg_trgm/trgm.h,v 1.11 2009/06/11 14:48:51 momjian Exp $ + * contrib/pg_trgm/trgm.h */ #ifndef __TRGM_H__ #define __TRGM_H__ diff --git a/contrib/pg_trgm/trgm_gin.c b/contrib/pg_trgm/trgm_gin.c index a150f8843e5..3ce0b2deb55 100644 --- a/contrib/pg_trgm/trgm_gin.c +++ b/contrib/pg_trgm/trgm_gin.c @@ -1,5 +1,5 @@ /* - * $PostgreSQL: pgsql/contrib/pg_trgm/trgm_gin.c,v 1.8 2009/06/11 14:48:51 momjian Exp $ + * contrib/pg_trgm/trgm_gin.c */ #include "trgm.h" diff --git a/contrib/pg_trgm/trgm_gist.c b/contrib/pg_trgm/trgm_gist.c index 7014394bb2d..567b2f878ff 100644 --- a/contrib/pg_trgm/trgm_gist.c +++ b/contrib/pg_trgm/trgm_gist.c @@ -1,5 +1,5 @@ /* - * $PostgreSQL: pgsql/contrib/pg_trgm/trgm_gist.c,v 1.16 2009/06/11 14:48:51 momjian Exp $ + * contrib/pg_trgm/trgm_gist.c */ #include "trgm.h" diff --git a/contrib/pg_trgm/trgm_op.c b/contrib/pg_trgm/trgm_op.c index 19b6747d68b..e15c826e189 100644 --- a/contrib/pg_trgm/trgm_op.c +++ b/contrib/pg_trgm/trgm_op.c @@ -1,5 +1,5 @@ /* - * $PostgreSQL: pgsql/contrib/pg_trgm/trgm_op.c,v 1.12 2009/06/11 14:48:51 momjian Exp $ + * contrib/pg_trgm/trgm_op.c */ #include "trgm.h" #include <ctype.h> diff --git a/contrib/pg_trgm/uninstall_pg_trgm.sql b/contrib/pg_trgm/uninstall_pg_trgm.sql index 42c1d741f93..239cd85b5b0 100644 --- a/contrib/pg_trgm/uninstall_pg_trgm.sql +++ b/contrib/pg_trgm/uninstall_pg_trgm.sql @@ -1,4 +1,4 @@ -/* $PostgreSQL: pgsql/contrib/pg_trgm/uninstall_pg_trgm.sql,v 1.7 2009/03/25 22:19:01 tgl Exp $ */ +/* contrib/pg_trgm/uninstall_pg_trgm.sql */ -- Adjust this setting to control where the objects get dropped. SET search_path = public; diff --git a/contrib/pg_upgrade/IMPLEMENTATION b/contrib/pg_upgrade/IMPLEMENTATION index 91bee727b4c..bbd36ac9e92 100644 --- a/contrib/pg_upgrade/IMPLEMENTATION +++ b/contrib/pg_upgrade/IMPLEMENTATION @@ -1,4 +1,4 @@ -$PostgreSQL: pgsql/contrib/pg_upgrade/IMPLEMENTATION,v 1.3 2010/07/03 14:23:13 momjian Exp $ +contrib/pg_upgrade/IMPLEMENTATION ------------------------------------------------------------------------------ PG_UPGRADE: IN-PLACE UPGRADES FOR POSTGRESQL diff --git a/contrib/pg_upgrade/Makefile b/contrib/pg_upgrade/Makefile index 1998ffe899d..79ac234b5ee 100644 --- a/contrib/pg_upgrade/Makefile +++ b/contrib/pg_upgrade/Makefile @@ -1,7 +1,7 @@ # # Makefile for pg_upgrade # -# $PostgreSQL: pgsql/contrib/pg_upgrade/Makefile,v 1.4 2010/07/03 14:23:13 momjian Exp $ +# contrib/pg_upgrade/Makefile PGFILEDESC = "pg_upgrade - an in-place binary upgrade utility" PGAPPICON = win32 diff --git a/contrib/pg_upgrade/TESTING b/contrib/pg_upgrade/TESTING index 5cb60b177f7..88adfea276f 100644 --- a/contrib/pg_upgrade/TESTING +++ b/contrib/pg_upgrade/TESTING @@ -1,4 +1,4 @@ -$PostgreSQL: pgsql/contrib/pg_upgrade/TESTING,v 1.4 2010/08/19 05:57:33 petere Exp $ +contrib/pg_upgrade/TESTING The most effective way to test pg_upgrade, aside from testing on user data, is by upgrading the PostgreSQL regression database. diff --git a/contrib/pg_upgrade/check.c b/contrib/pg_upgrade/check.c index 62cf55602a1..144fcdc8174 100644 --- a/contrib/pg_upgrade/check.c +++ b/contrib/pg_upgrade/check.c @@ -4,7 +4,7 @@ * server checks and output routines * * Copyright (c) 2010, PostgreSQL Global Development Group - * $PostgreSQL: pgsql/contrib/pg_upgrade/check.c,v 1.14 2010/07/25 03:47:29 momjian Exp $ + * contrib/pg_upgrade/check.c */ #include "pg_upgrade.h" diff --git a/contrib/pg_upgrade/controldata.c b/contrib/pg_upgrade/controldata.c index cb0b01994e7..f36c2c179db 100644 --- a/contrib/pg_upgrade/controldata.c +++ b/contrib/pg_upgrade/controldata.c @@ -4,7 +4,7 @@ * controldata functions * * Copyright (c) 2010, PostgreSQL Global Development Group - * $PostgreSQL: pgsql/contrib/pg_upgrade/controldata.c,v 1.10 2010/09/07 14:10:30 momjian Exp $ + * contrib/pg_upgrade/controldata.c */ #include "pg_upgrade.h" diff --git a/contrib/pg_upgrade/dump.c b/contrib/pg_upgrade/dump.c index 3a2ded629cc..9572f076bec 100644 --- a/contrib/pg_upgrade/dump.c +++ b/contrib/pg_upgrade/dump.c @@ -4,7 +4,7 @@ * dump functions * * Copyright (c) 2010, PostgreSQL Global Development Group - * $PostgreSQL: pgsql/contrib/pg_upgrade/dump.c,v 1.7 2010/07/06 19:18:55 momjian Exp $ + * contrib/pg_upgrade/dump.c */ #include "pg_upgrade.h" diff --git a/contrib/pg_upgrade/exec.c b/contrib/pg_upgrade/exec.c index 1e024cb81e8..a7f2c3873d6 100644 --- a/contrib/pg_upgrade/exec.c +++ b/contrib/pg_upgrade/exec.c @@ -4,7 +4,7 @@ * execution functions * * Copyright (c) 2010, PostgreSQL Global Development Group - * $PostgreSQL: pgsql/contrib/pg_upgrade/exec.c,v 1.9 2010/07/13 18:09:55 momjian Exp $ + * contrib/pg_upgrade/exec.c */ #include "pg_upgrade.h" diff --git a/contrib/pg_upgrade/file.c b/contrib/pg_upgrade/file.c index 4274646dffb..11f1d4bbcbd 100644 --- a/contrib/pg_upgrade/file.c +++ b/contrib/pg_upgrade/file.c @@ -4,7 +4,7 @@ * file system operations * * Copyright (c) 2010, PostgreSQL Global Development Group - * $PostgreSQL: pgsql/contrib/pg_upgrade/file.c,v 1.14 2010/07/09 16:51:23 momjian Exp $ + * contrib/pg_upgrade/file.c */ #include "pg_upgrade.h" diff --git a/contrib/pg_upgrade/function.c b/contrib/pg_upgrade/function.c index 261e63b729f..c70f23f4994 100644 --- a/contrib/pg_upgrade/function.c +++ b/contrib/pg_upgrade/function.c @@ -4,7 +4,7 @@ * server-side function support * * Copyright (c) 2010, PostgreSQL Global Development Group - * $PostgreSQL: pgsql/contrib/pg_upgrade/function.c,v 1.7 2010/07/25 03:28:32 momjian Exp $ + * contrib/pg_upgrade/function.c */ #include "pg_upgrade.h" diff --git a/contrib/pg_upgrade/info.c b/contrib/pg_upgrade/info.c index dad2a5f8d1f..1601d56b081 100644 --- a/contrib/pg_upgrade/info.c +++ b/contrib/pg_upgrade/info.c @@ -4,7 +4,7 @@ * information support functions * * Copyright (c) 2010, PostgreSQL Global Development Group - * $PostgreSQL: pgsql/contrib/pg_upgrade/info.c,v 1.11 2010/07/06 19:18:55 momjian Exp $ + * contrib/pg_upgrade/info.c */ #include "pg_upgrade.h" diff --git a/contrib/pg_upgrade/option.c b/contrib/pg_upgrade/option.c index 520a20c6a03..945889016e3 100644 --- a/contrib/pg_upgrade/option.c +++ b/contrib/pg_upgrade/option.c @@ -4,7 +4,7 @@ * options functions * * Copyright (c) 2010, PostgreSQL Global Development Group - * $PostgreSQL: pgsql/contrib/pg_upgrade/option.c,v 1.13 2010/07/13 18:14:14 momjian Exp $ + * contrib/pg_upgrade/option.c */ #include "pg_upgrade.h" diff --git a/contrib/pg_upgrade/page.c b/contrib/pg_upgrade/page.c index de19a0023e0..e732e22bbcb 100644 --- a/contrib/pg_upgrade/page.c +++ b/contrib/pg_upgrade/page.c @@ -4,7 +4,7 @@ * per-page conversion operations * * Copyright (c) 2010, PostgreSQL Global Development Group - * $PostgreSQL: pgsql/contrib/pg_upgrade/page.c,v 1.5 2010/07/03 16:33:14 momjian Exp $ + * contrib/pg_upgrade/page.c */ #include "pg_upgrade.h" diff --git a/contrib/pg_upgrade/pg_upgrade.c b/contrib/pg_upgrade/pg_upgrade.c index 414ac090bdc..e6ea813c91b 100644 --- a/contrib/pg_upgrade/pg_upgrade.c +++ b/contrib/pg_upgrade/pg_upgrade.c @@ -4,7 +4,7 @@ * main source file * * Copyright (c) 2010, PostgreSQL Global Development Group - * $PostgreSQL: pgsql/contrib/pg_upgrade/pg_upgrade.c,v 1.11 2010/07/13 15:56:53 momjian Exp $ + * contrib/pg_upgrade/pg_upgrade.c */ #include "pg_upgrade.h" diff --git a/contrib/pg_upgrade/pg_upgrade.h b/contrib/pg_upgrade/pg_upgrade.h index a80fff7851e..a7d46cf2bc7 100644 --- a/contrib/pg_upgrade/pg_upgrade.h +++ b/contrib/pg_upgrade/pg_upgrade.h @@ -2,7 +2,7 @@ * pg_upgrade.h * * Copyright (c) 2010, PostgreSQL Global Development Group - * $PostgreSQL: pgsql/contrib/pg_upgrade/pg_upgrade.h,v 1.16 2010/07/25 03:47:29 momjian Exp $ + * contrib/pg_upgrade/pg_upgrade.h */ #include "postgres.h" diff --git a/contrib/pg_upgrade/relfilenode.c b/contrib/pg_upgrade/relfilenode.c index 1ef176a041b..a69548b68c3 100644 --- a/contrib/pg_upgrade/relfilenode.c +++ b/contrib/pg_upgrade/relfilenode.c @@ -4,7 +4,7 @@ * relfilenode functions * * Copyright (c) 2010, PostgreSQL Global Development Group - * $PostgreSQL: pgsql/contrib/pg_upgrade/relfilenode.c,v 1.8 2010/07/06 19:18:55 momjian Exp $ + * contrib/pg_upgrade/relfilenode.c */ #include "pg_upgrade.h" diff --git a/contrib/pg_upgrade/server.c b/contrib/pg_upgrade/server.c index 3cc54697877..a6175835642 100644 --- a/contrib/pg_upgrade/server.c +++ b/contrib/pg_upgrade/server.c @@ -4,7 +4,7 @@ * database server functions * * Copyright (c) 2010, PostgreSQL Global Development Group - * $PostgreSQL: pgsql/contrib/pg_upgrade/server.c,v 1.9 2010/07/13 20:03:32 momjian Exp $ + * contrib/pg_upgrade/server.c */ #include "pg_upgrade.h" diff --git a/contrib/pg_upgrade/tablespace.c b/contrib/pg_upgrade/tablespace.c index 11caaa3e891..045ef7effac 100644 --- a/contrib/pg_upgrade/tablespace.c +++ b/contrib/pg_upgrade/tablespace.c @@ -4,7 +4,7 @@ * tablespace functions * * Copyright (c) 2010, PostgreSQL Global Development Group - * $PostgreSQL: pgsql/contrib/pg_upgrade/tablespace.c,v 1.6 2010/07/06 19:18:55 momjian Exp $ + * contrib/pg_upgrade/tablespace.c */ #include "pg_upgrade.h" diff --git a/contrib/pg_upgrade/util.c b/contrib/pg_upgrade/util.c index 24fc08ef708..b9968e9132c 100644 --- a/contrib/pg_upgrade/util.c +++ b/contrib/pg_upgrade/util.c @@ -4,7 +4,7 @@ * utility functions * * Copyright (c) 2010, PostgreSQL Global Development Group - * $PostgreSQL: pgsql/contrib/pg_upgrade/util.c,v 1.5 2010/07/06 19:18:55 momjian Exp $ + * contrib/pg_upgrade/util.c */ #include "pg_upgrade.h" diff --git a/contrib/pg_upgrade/version.c b/contrib/pg_upgrade/version.c index 59e61767fc5..7a7757c8a51 100644 --- a/contrib/pg_upgrade/version.c +++ b/contrib/pg_upgrade/version.c @@ -4,7 +4,7 @@ * Postgres-version-specific routines * * Copyright (c) 2010, PostgreSQL Global Development Group - * $PostgreSQL: pgsql/contrib/pg_upgrade/version.c,v 1.5 2010/07/03 16:33:14 momjian Exp $ + * contrib/pg_upgrade/version.c */ #include "pg_upgrade.h" diff --git a/contrib/pg_upgrade/version_old_8_3.c b/contrib/pg_upgrade/version_old_8_3.c index cca5891726c..34760b11da9 100644 --- a/contrib/pg_upgrade/version_old_8_3.c +++ b/contrib/pg_upgrade/version_old_8_3.c @@ -4,7 +4,7 @@ * Postgres-version-specific routines * * Copyright (c) 2010, PostgreSQL Global Development Group - * $PostgreSQL: pgsql/contrib/pg_upgrade/version_old_8_3.c,v 1.8 2010/07/25 03:47:29 momjian Exp $ + * contrib/pg_upgrade/version_old_8_3.c */ #include "pg_upgrade.h" diff --git a/contrib/pg_upgrade_support/Makefile b/contrib/pg_upgrade_support/Makefile index bd43c5093e0..e23c9bebcbc 100644 --- a/contrib/pg_upgrade_support/Makefile +++ b/contrib/pg_upgrade_support/Makefile @@ -1,7 +1,7 @@ # # Makefile for pg_upgrade_support # -# $PostgreSQL: pgsql/contrib/pg_upgrade_support/Makefile,v 1.3 2010/07/03 14:23:14 momjian Exp $ +# contrib/pg_upgrade_support/Makefile PGFILEDESC = "pg_upgrade_support - server-side functions for pg_upgrade" diff --git a/contrib/pg_upgrade_support/pg_upgrade_support.c b/contrib/pg_upgrade_support/pg_upgrade_support.c index 08050ac6e8e..c956be187ac 100644 --- a/contrib/pg_upgrade_support/pg_upgrade_support.c +++ b/contrib/pg_upgrade_support/pg_upgrade_support.c @@ -5,7 +5,7 @@ * to control oid and relfilenode assignment * * Copyright (c) 2010, PostgreSQL Global Development Group - * $PostgreSQL: pgsql/contrib/pg_upgrade_support/pg_upgrade_support.c,v 1.5 2010/07/06 19:18:55 momjian Exp $ + * contrib/pg_upgrade_support/pg_upgrade_support.c */ #include "postgres.h" diff --git a/contrib/pgbench/Makefile b/contrib/pgbench/Makefile index 786ba10fd95..5a2b211a7ce 100644 --- a/contrib/pgbench/Makefile +++ b/contrib/pgbench/Makefile @@ -1,4 +1,4 @@ -# $PostgreSQL: pgsql/contrib/pgbench/Makefile,v 1.18 2010/05/12 11:33:08 momjian Exp $ +# contrib/pgbench/Makefile PGFILEDESC = "pgbench - a simple program for running benchmark tests" PGAPPICON=win32 diff --git a/contrib/pgbench/pgbench.c b/contrib/pgbench/pgbench.c index 27ea731f3cf..55ca1e82e6d 100644 --- a/contrib/pgbench/pgbench.c +++ b/contrib/pgbench/pgbench.c @@ -4,7 +4,7 @@ * A simple benchmark program for PostgreSQL * Originally written by Tatsuo Ishii and enhanced by many contributors. * - * $PostgreSQL: pgsql/contrib/pgbench/pgbench.c,v 1.101 2010/08/12 21:10:59 tgl Exp $ + * contrib/pgbench/pgbench.c * Copyright (c) 2000-2010, PostgreSQL Global Development Group * ALL RIGHTS RESERVED; * diff --git a/contrib/pgcrypto/Makefile b/contrib/pgcrypto/Makefile index cfb586ba49c..f429fab4edd 100644 --- a/contrib/pgcrypto/Makefile +++ b/contrib/pgcrypto/Makefile @@ -1,5 +1,5 @@ # -# $PostgreSQL: pgsql/contrib/pgcrypto/Makefile,v 1.27 2007/11/10 23:59:51 momjian Exp $ +# contrib/pgcrypto/Makefile # INT_SRCS = md5.c sha1.c sha2.c internal.c internal-sha2.c blf.c rijndael.c \ diff --git a/contrib/pgcrypto/blf.c b/contrib/pgcrypto/blf.c index e03c542c0d4..f8a2c63c9fd 100644 --- a/contrib/pgcrypto/blf.c +++ b/contrib/pgcrypto/blf.c @@ -1,7 +1,7 @@ /* * Butchered version of sshblowf.c from putty-0.59. * - * $PostgreSQL: pgsql/contrib/pgcrypto/blf.c,v 1.10 2009/06/11 14:48:52 momjian Exp $ + * contrib/pgcrypto/blf.c */ /* diff --git a/contrib/pgcrypto/blf.h b/contrib/pgcrypto/blf.h index 507d7f90553..84aba37ba86 100644 --- a/contrib/pgcrypto/blf.h +++ b/contrib/pgcrypto/blf.h @@ -1,4 +1,4 @@ -/* $PostgreSQL: pgsql/contrib/pgcrypto/blf.h,v 1.8 2009/06/11 14:48:52 momjian Exp $ */ +/* contrib/pgcrypto/blf.h */ /* * PuTTY is copyright 1997-2007 Simon Tatham. * diff --git a/contrib/pgcrypto/crypt-blowfish.c b/contrib/pgcrypto/crypt-blowfish.c index 9c1d2d47062..a7b7e758ff5 100644 --- a/contrib/pgcrypto/crypt-blowfish.c +++ b/contrib/pgcrypto/crypt-blowfish.c @@ -1,5 +1,5 @@ /* - * $PostgreSQL: pgsql/contrib/pgcrypto/crypt-blowfish.c,v 1.14 2009/06/11 14:48:52 momjian Exp $ + * contrib/pgcrypto/crypt-blowfish.c * * This code comes from John the Ripper password cracker, with reentrant * and crypt(3) interfaces added, but optimizations specific to password diff --git a/contrib/pgcrypto/crypt-des.c b/contrib/pgcrypto/crypt-des.c index a907626d398..1f497432da7 100644 --- a/contrib/pgcrypto/crypt-des.c +++ b/contrib/pgcrypto/crypt-des.c @@ -1,7 +1,7 @@ /* * FreeSec: libcrypt for NetBSD * - * $PostgreSQL: pgsql/contrib/pgcrypto/crypt-des.c,v 1.15 2006/07/13 04:15:24 neilc Exp $ + * contrib/pgcrypto/crypt-des.c * * Copyright (c) 1994 David Burren * All rights reserved. diff --git a/contrib/pgcrypto/crypt-gensalt.c b/contrib/pgcrypto/crypt-gensalt.c index b2ec3da8280..84bf27bedb9 100644 --- a/contrib/pgcrypto/crypt-gensalt.c +++ b/contrib/pgcrypto/crypt-gensalt.c @@ -2,7 +2,7 @@ * Written by Solar Designer and placed in the public domain. * See crypt_blowfish.c for more information. * - * $PostgreSQL: pgsql/contrib/pgcrypto/crypt-gensalt.c,v 1.11 2009/06/11 14:48:52 momjian Exp $ + * contrib/pgcrypto/crypt-gensalt.c * * This file contains salt generation functions for the traditional and * other common crypt(3) algorithms, except for bcrypt which is defined diff --git a/contrib/pgcrypto/crypt-md5.c b/contrib/pgcrypto/crypt-md5.c index d70fc341afa..30eb8bf5a27 100644 --- a/contrib/pgcrypto/crypt-md5.c +++ b/contrib/pgcrypto/crypt-md5.c @@ -3,7 +3,7 @@ * * $FreeBSD: src/lib/libcrypt/crypt-md5.c,v 1.5 1999/12/17 20:21:45 peter Exp $ * - * $PostgreSQL: pgsql/contrib/pgcrypto/crypt-md5.c,v 1.9 2009/04/15 18:58:24 mha Exp $ + * contrib/pgcrypto/crypt-md5.c */ #include "postgres.h" diff --git a/contrib/pgcrypto/fortuna.c b/contrib/pgcrypto/fortuna.c index 4e97946ab3c..1228fb4ad04 100644 --- a/contrib/pgcrypto/fortuna.c +++ b/contrib/pgcrypto/fortuna.c @@ -26,7 +26,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $PostgreSQL: pgsql/contrib/pgcrypto/fortuna.c,v 1.9 2009/06/11 14:48:52 momjian Exp $ + * contrib/pgcrypto/fortuna.c */ #include "postgres.h" diff --git a/contrib/pgcrypto/fortuna.h b/contrib/pgcrypto/fortuna.h index b4d7064decf..2e49f8aab83 100644 --- a/contrib/pgcrypto/fortuna.h +++ b/contrib/pgcrypto/fortuna.h @@ -26,7 +26,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $PostgreSQL: pgsql/contrib/pgcrypto/fortuna.h,v 1.3 2005/10/15 02:49:06 momjian Exp $ + * contrib/pgcrypto/fortuna.h */ #ifndef __FORTUNA_H diff --git a/contrib/pgcrypto/imath.c b/contrib/pgcrypto/imath.c index 51f1f00e30e..de240763229 100644 --- a/contrib/pgcrypto/imath.c +++ b/contrib/pgcrypto/imath.c @@ -27,7 +27,7 @@ CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ -/* $PostgreSQL: pgsql/contrib/pgcrypto/imath.c,v 1.9 2010/04/02 15:21:20 mha Exp $ */ +/* contrib/pgcrypto/imath.c */ #include "postgres.h" #include "px.h" diff --git a/contrib/pgcrypto/imath.h b/contrib/pgcrypto/imath.h index c7b29cf3a5d..f2b02d0cd7f 100644 --- a/contrib/pgcrypto/imath.h +++ b/contrib/pgcrypto/imath.h @@ -26,7 +26,7 @@ CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ -/* $PostgreSQL: pgsql/contrib/pgcrypto/imath.h,v 1.8 2010/04/02 15:21:20 mha Exp $ */ +/* contrib/pgcrypto/imath.h */ #ifndef IMATH_H_ #define IMATH_H_ diff --git a/contrib/pgcrypto/internal-sha2.c b/contrib/pgcrypto/internal-sha2.c index 1e36a369e01..f86b47816bd 100644 --- a/contrib/pgcrypto/internal-sha2.c +++ b/contrib/pgcrypto/internal-sha2.c @@ -26,7 +26,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $PostgreSQL: pgsql/contrib/pgcrypto/internal-sha2.c,v 1.3 2009/06/11 14:48:52 momjian Exp $ + * contrib/pgcrypto/internal-sha2.c */ #include "postgres.h" diff --git a/contrib/pgcrypto/internal.c b/contrib/pgcrypto/internal.c index 84bda624a43..fedfe2dd039 100644 --- a/contrib/pgcrypto/internal.c +++ b/contrib/pgcrypto/internal.c @@ -26,7 +26,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $PostgreSQL: pgsql/contrib/pgcrypto/internal.c,v 1.29 2009/06/11 14:48:52 momjian Exp $ + * contrib/pgcrypto/internal.c */ #include "postgres.h" diff --git a/contrib/pgcrypto/mbuf.c b/contrib/pgcrypto/mbuf.c index d3eee2ee4f8..6246900c7ae 100644 --- a/contrib/pgcrypto/mbuf.c +++ b/contrib/pgcrypto/mbuf.c @@ -26,7 +26,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $PostgreSQL: pgsql/contrib/pgcrypto/mbuf.c,v 1.5 2009/06/11 14:48:52 momjian Exp $ + * contrib/pgcrypto/mbuf.c */ #include "postgres.h" diff --git a/contrib/pgcrypto/mbuf.h b/contrib/pgcrypto/mbuf.h index aa2b5596eeb..37d2db53371 100644 --- a/contrib/pgcrypto/mbuf.h +++ b/contrib/pgcrypto/mbuf.h @@ -26,7 +26,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $PostgreSQL: pgsql/contrib/pgcrypto/mbuf.h,v 1.3 2009/06/11 14:48:52 momjian Exp $ + * contrib/pgcrypto/mbuf.h */ #ifndef __PX_MBUF_H diff --git a/contrib/pgcrypto/md5.c b/contrib/pgcrypto/md5.c index 8083d1f2806..b5071fba430 100644 --- a/contrib/pgcrypto/md5.c +++ b/contrib/pgcrypto/md5.c @@ -28,7 +28,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $PostgreSQL: pgsql/contrib/pgcrypto/md5.c,v 1.15 2009/06/11 14:48:52 momjian Exp $ + * contrib/pgcrypto/md5.c */ #include "postgres.h" diff --git a/contrib/pgcrypto/md5.h b/contrib/pgcrypto/md5.h index eb7c620b48e..03b9ab58ba6 100644 --- a/contrib/pgcrypto/md5.h +++ b/contrib/pgcrypto/md5.h @@ -1,4 +1,4 @@ -/* $PostgreSQL: pgsql/contrib/pgcrypto/md5.h,v 1.10 2009/06/11 14:48:52 momjian Exp $ */ +/* contrib/pgcrypto/md5.h */ /* $KAME: md5.h,v 1.3 2000/02/22 14:01:18 itojun Exp $ */ /* diff --git a/contrib/pgcrypto/openssl.c b/contrib/pgcrypto/openssl.c index bb0b4eefd32..dc25acea5d2 100644 --- a/contrib/pgcrypto/openssl.c +++ b/contrib/pgcrypto/openssl.c @@ -26,7 +26,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $PostgreSQL: pgsql/contrib/pgcrypto/openssl.c,v 1.33 2009/06/11 14:48:52 momjian Exp $ + * contrib/pgcrypto/openssl.c */ #include "postgres.h" diff --git a/contrib/pgcrypto/pgcrypto.c b/contrib/pgcrypto/pgcrypto.c index 04c90d8672f..d271ddc3029 100644 --- a/contrib/pgcrypto/pgcrypto.c +++ b/contrib/pgcrypto/pgcrypto.c @@ -26,7 +26,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $PostgreSQL: pgsql/contrib/pgcrypto/pgcrypto.c,v 1.27 2008/03/25 22:42:41 tgl Exp $ + * contrib/pgcrypto/pgcrypto.c */ #include "postgres.h" diff --git a/contrib/pgcrypto/pgcrypto.h b/contrib/pgcrypto/pgcrypto.h index b011b06062e..6284ba2406a 100644 --- a/contrib/pgcrypto/pgcrypto.h +++ b/contrib/pgcrypto/pgcrypto.h @@ -26,7 +26,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $PostgreSQL: pgsql/contrib/pgcrypto/pgcrypto.h,v 1.11 2006/09/05 21:26:48 tgl Exp $ + * contrib/pgcrypto/pgcrypto.h */ #ifndef _PG_CRYPTO_H diff --git a/contrib/pgcrypto/pgcrypto.sql.in b/contrib/pgcrypto/pgcrypto.sql.in index bb1e26a086f..37ae1004122 100644 --- a/contrib/pgcrypto/pgcrypto.sql.in +++ b/contrib/pgcrypto/pgcrypto.sql.in @@ -1,4 +1,4 @@ -/* $PostgreSQL: pgsql/contrib/pgcrypto/pgcrypto.sql.in,v 1.16 2010/08/19 05:57:33 petere Exp $ */ +/* contrib/pgcrypto/pgcrypto.sql.in */ -- Adjust this setting to control where the objects get created. SET search_path = public; diff --git a/contrib/pgcrypto/pgp-armor.c b/contrib/pgcrypto/pgp-armor.c index 7963ccc3295..87adf911259 100644 --- a/contrib/pgcrypto/pgp-armor.c +++ b/contrib/pgcrypto/pgp-armor.c @@ -26,7 +26,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $PostgreSQL: pgsql/contrib/pgcrypto/pgp-armor.c,v 1.3 2005/10/15 02:49:06 momjian Exp $ + * contrib/pgcrypto/pgp-armor.c */ #include "postgres.h" diff --git a/contrib/pgcrypto/pgp-cfb.c b/contrib/pgcrypto/pgp-cfb.c index bd05ccc94e4..7cf9bf0b8c5 100644 --- a/contrib/pgcrypto/pgp-cfb.c +++ b/contrib/pgcrypto/pgp-cfb.c @@ -26,7 +26,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $PostgreSQL: pgsql/contrib/pgcrypto/pgp-cfb.c,v 1.4 2009/06/11 14:48:52 momjian Exp $ + * contrib/pgcrypto/pgp-cfb.c */ #include "postgres.h" diff --git a/contrib/pgcrypto/pgp-compress.c b/contrib/pgcrypto/pgp-compress.c index 41f58552476..7a9516b0708 100644 --- a/contrib/pgcrypto/pgp-compress.c +++ b/contrib/pgcrypto/pgp-compress.c @@ -26,7 +26,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $PostgreSQL: pgsql/contrib/pgcrypto/pgp-compress.c,v 1.8 2009/06/11 14:48:52 momjian Exp $ + * contrib/pgcrypto/pgp-compress.c */ #include "postgres.h" diff --git a/contrib/pgcrypto/pgp-decrypt.c b/contrib/pgcrypto/pgp-decrypt.c index 9df5c717f2b..c9aa6cd66aa 100644 --- a/contrib/pgcrypto/pgp-decrypt.c +++ b/contrib/pgcrypto/pgp-decrypt.c @@ -26,7 +26,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $PostgreSQL: pgsql/contrib/pgcrypto/pgp-decrypt.c,v 1.8 2009/06/11 14:48:52 momjian Exp $ + * contrib/pgcrypto/pgp-decrypt.c */ #include "postgres.h" diff --git a/contrib/pgcrypto/pgp-encrypt.c b/contrib/pgcrypto/pgp-encrypt.c index 48f2f01f629..3b9b5d20edf 100644 --- a/contrib/pgcrypto/pgp-encrypt.c +++ b/contrib/pgcrypto/pgp-encrypt.c @@ -26,7 +26,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $PostgreSQL: pgsql/contrib/pgcrypto/pgp-encrypt.c,v 1.4 2009/06/11 14:48:52 momjian Exp $ + * contrib/pgcrypto/pgp-encrypt.c */ #include "postgres.h" diff --git a/contrib/pgcrypto/pgp-info.c b/contrib/pgcrypto/pgp-info.c index a51a553236f..b75266f18c1 100644 --- a/contrib/pgcrypto/pgp-info.c +++ b/contrib/pgcrypto/pgp-info.c @@ -26,7 +26,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $PostgreSQL: pgsql/contrib/pgcrypto/pgp-info.c,v 1.5 2009/06/11 14:48:52 momjian Exp $ + * contrib/pgcrypto/pgp-info.c */ #include "postgres.h" diff --git a/contrib/pgcrypto/pgp-mpi-internal.c b/contrib/pgcrypto/pgp-mpi-internal.c index 283946b17d2..d0e5830fe03 100644 --- a/contrib/pgcrypto/pgp-mpi-internal.c +++ b/contrib/pgcrypto/pgp-mpi-internal.c @@ -26,7 +26,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $PostgreSQL: pgsql/contrib/pgcrypto/pgp-mpi-internal.c,v 1.8 2009/06/11 14:48:52 momjian Exp $ + * contrib/pgcrypto/pgp-mpi-internal.c */ #include "postgres.h" diff --git a/contrib/pgcrypto/pgp-mpi-openssl.c b/contrib/pgcrypto/pgp-mpi-openssl.c index f2b25de0900..ed41e1151c3 100644 --- a/contrib/pgcrypto/pgp-mpi-openssl.c +++ b/contrib/pgcrypto/pgp-mpi-openssl.c @@ -26,7 +26,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $PostgreSQL: pgsql/contrib/pgcrypto/pgp-mpi-openssl.c,v 1.5 2009/06/11 14:48:52 momjian Exp $ + * contrib/pgcrypto/pgp-mpi-openssl.c */ #include "postgres.h" diff --git a/contrib/pgcrypto/pgp-mpi.c b/contrib/pgcrypto/pgp-mpi.c index 3f2ec0f5c76..c8765b6d141 100644 --- a/contrib/pgcrypto/pgp-mpi.c +++ b/contrib/pgcrypto/pgp-mpi.c @@ -26,7 +26,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $PostgreSQL: pgsql/contrib/pgcrypto/pgp-mpi.c,v 1.5 2009/06/11 14:48:52 momjian Exp $ + * contrib/pgcrypto/pgp-mpi.c */ #include "postgres.h" diff --git a/contrib/pgcrypto/pgp-pgsql.c b/contrib/pgcrypto/pgp-pgsql.c index 530a3d38d80..f1f09cd83b7 100644 --- a/contrib/pgcrypto/pgp-pgsql.c +++ b/contrib/pgcrypto/pgp-pgsql.c @@ -26,7 +26,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $PostgreSQL: pgsql/contrib/pgcrypto/pgp-pgsql.c,v 1.11 2009/06/11 14:48:52 momjian Exp $ + * contrib/pgcrypto/pgp-pgsql.c */ #include "postgres.h" diff --git a/contrib/pgcrypto/pgp-pubdec.c b/contrib/pgcrypto/pgp-pubdec.c index cb32708feea..fe5fae0c42c 100644 --- a/contrib/pgcrypto/pgp-pubdec.c +++ b/contrib/pgcrypto/pgp-pubdec.c @@ -26,7 +26,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $PostgreSQL: pgsql/contrib/pgcrypto/pgp-pubdec.c,v 1.6 2009/06/11 14:48:52 momjian Exp $ + * contrib/pgcrypto/pgp-pubdec.c */ #include "postgres.h" diff --git a/contrib/pgcrypto/pgp-pubenc.c b/contrib/pgcrypto/pgp-pubenc.c index 0e9ebb42858..4b4d1bfb44c 100644 --- a/contrib/pgcrypto/pgp-pubenc.c +++ b/contrib/pgcrypto/pgp-pubenc.c @@ -26,7 +26,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $PostgreSQL: pgsql/contrib/pgcrypto/pgp-pubenc.c,v 1.5 2009/06/11 14:48:52 momjian Exp $ + * contrib/pgcrypto/pgp-pubenc.c */ #include "postgres.h" diff --git a/contrib/pgcrypto/pgp-pubkey.c b/contrib/pgcrypto/pgp-pubkey.c index 62b6e1ab0e8..283e0ec17e3 100644 --- a/contrib/pgcrypto/pgp-pubkey.c +++ b/contrib/pgcrypto/pgp-pubkey.c @@ -26,7 +26,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $PostgreSQL: pgsql/contrib/pgcrypto/pgp-pubkey.c,v 1.5 2009/06/11 14:48:52 momjian Exp $ + * contrib/pgcrypto/pgp-pubkey.c */ #include "postgres.h" diff --git a/contrib/pgcrypto/pgp-s2k.c b/contrib/pgcrypto/pgp-s2k.c index 326b1bbf317..ef16caf6851 100644 --- a/contrib/pgcrypto/pgp-s2k.c +++ b/contrib/pgcrypto/pgp-s2k.c @@ -26,7 +26,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $PostgreSQL: pgsql/contrib/pgcrypto/pgp-s2k.c,v 1.5 2009/06/11 14:48:52 momjian Exp $ + * contrib/pgcrypto/pgp-s2k.c */ #include "postgres.h" diff --git a/contrib/pgcrypto/pgp.c b/contrib/pgcrypto/pgp.c index ce6f199a9e9..b8a6bc49b40 100644 --- a/contrib/pgcrypto/pgp.c +++ b/contrib/pgcrypto/pgp.c @@ -26,7 +26,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $PostgreSQL: pgsql/contrib/pgcrypto/pgp.c,v 1.4 2009/06/11 14:48:52 momjian Exp $ + * contrib/pgcrypto/pgp.c */ #include "postgres.h" diff --git a/contrib/pgcrypto/pgp.h b/contrib/pgcrypto/pgp.h index 7860d830c41..7ae01ccc4db 100644 --- a/contrib/pgcrypto/pgp.h +++ b/contrib/pgcrypto/pgp.h @@ -26,7 +26,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $PostgreSQL: pgsql/contrib/pgcrypto/pgp.h,v 1.6 2009/06/11 14:48:52 momjian Exp $ + * contrib/pgcrypto/pgp.h */ enum PGP_S2K_TYPE diff --git a/contrib/pgcrypto/px-crypt.c b/contrib/pgcrypto/px-crypt.c index e21acb73c65..ab12e2a6e72 100644 --- a/contrib/pgcrypto/px-crypt.c +++ b/contrib/pgcrypto/px-crypt.c @@ -26,7 +26,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $PostgreSQL: pgsql/contrib/pgcrypto/px-crypt.c,v 1.15 2005/10/15 02:49:06 momjian Exp $ + * contrib/pgcrypto/px-crypt.c */ #include "postgres.h" diff --git a/contrib/pgcrypto/px-crypt.h b/contrib/pgcrypto/px-crypt.h index c2460cb9f9b..7dde9ab77b5 100644 --- a/contrib/pgcrypto/px-crypt.h +++ b/contrib/pgcrypto/px-crypt.h @@ -26,7 +26,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $PostgreSQL: pgsql/contrib/pgcrypto/px-crypt.h,v 1.10 2006/07/13 04:15:25 neilc Exp $ + * contrib/pgcrypto/px-crypt.h */ #ifndef _PX_CRYPT_H diff --git a/contrib/pgcrypto/px-hmac.c b/contrib/pgcrypto/px-hmac.c index 3b2016190e7..16abc4347c4 100644 --- a/contrib/pgcrypto/px-hmac.c +++ b/contrib/pgcrypto/px-hmac.c @@ -26,7 +26,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $PostgreSQL: pgsql/contrib/pgcrypto/px-hmac.c,v 1.8 2009/06/11 14:48:52 momjian Exp $ + * contrib/pgcrypto/px-hmac.c */ #include "postgres.h" diff --git a/contrib/pgcrypto/px.c b/contrib/pgcrypto/px.c index f2db06a898b..768c7c333aa 100644 --- a/contrib/pgcrypto/px.c +++ b/contrib/pgcrypto/px.c @@ -26,7 +26,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $PostgreSQL: pgsql/contrib/pgcrypto/px.c,v 1.18 2009/06/11 14:48:52 momjian Exp $ + * contrib/pgcrypto/px.c */ #include "postgres.h" diff --git a/contrib/pgcrypto/px.h b/contrib/pgcrypto/px.h index c916e9361c9..9709f9bdb60 100644 --- a/contrib/pgcrypto/px.h +++ b/contrib/pgcrypto/px.h @@ -26,7 +26,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $PostgreSQL: pgsql/contrib/pgcrypto/px.h,v 1.19 2009/06/11 14:48:52 momjian Exp $ + * contrib/pgcrypto/px.h */ #ifndef __PX_H diff --git a/contrib/pgcrypto/random.c b/contrib/pgcrypto/random.c index b22e029d2c6..393a0be983a 100644 --- a/contrib/pgcrypto/random.c +++ b/contrib/pgcrypto/random.c @@ -26,7 +26,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $PostgreSQL: pgsql/contrib/pgcrypto/random.c,v 1.17 2006/06/08 03:29:30 momjian Exp $ + * contrib/pgcrypto/random.c */ #include "postgres.h" diff --git a/contrib/pgcrypto/rijndael.c b/contrib/pgcrypto/rijndael.c index cf9eca91dcb..5651d03750e 100644 --- a/contrib/pgcrypto/rijndael.c +++ b/contrib/pgcrypto/rijndael.c @@ -1,6 +1,6 @@ /* $OpenBSD: rijndael.c,v 1.6 2000/12/09 18:51:34 markus Exp $ */ -/* $PostgreSQL: pgsql/contrib/pgcrypto/rijndael.c,v 1.14 2009/06/11 14:48:52 momjian Exp $ */ +/* contrib/pgcrypto/rijndael.c */ /* This is an independent implementation of the encryption algorithm: */ /* */ diff --git a/contrib/pgcrypto/rijndael.h b/contrib/pgcrypto/rijndael.h index e4c42291708..fb30e46c144 100644 --- a/contrib/pgcrypto/rijndael.h +++ b/contrib/pgcrypto/rijndael.h @@ -1,5 +1,5 @@ /* - * $PostgreSQL: pgsql/contrib/pgcrypto/rijndael.h,v 1.7 2009/06/11 14:48:52 momjian Exp $ + * contrib/pgcrypto/rijndael.h * * $OpenBSD: rijndael.h,v 1.3 2001/05/09 23:01:32 markus Exp $ */ diff --git a/contrib/pgcrypto/sha1.c b/contrib/pgcrypto/sha1.c index 94849a78c57..4ee4f24559b 100644 --- a/contrib/pgcrypto/sha1.c +++ b/contrib/pgcrypto/sha1.c @@ -28,7 +28,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $PostgreSQL: pgsql/contrib/pgcrypto/sha1.c,v 1.18 2010/04/02 15:21:20 mha Exp $ + * contrib/pgcrypto/sha1.c */ /* * FIPS pub 180-1: Secure Hash Algorithm (SHA-1) diff --git a/contrib/pgcrypto/sha1.h b/contrib/pgcrypto/sha1.h index ccd925b75e4..3e0931efbc8 100644 --- a/contrib/pgcrypto/sha1.h +++ b/contrib/pgcrypto/sha1.h @@ -1,4 +1,4 @@ -/* $PostgreSQL: pgsql/contrib/pgcrypto/sha1.h,v 1.10 2010/04/02 15:21:20 mha Exp $ */ +/* contrib/pgcrypto/sha1.h */ /* $KAME: sha1.h,v 1.4 2000/02/22 14:01:18 itojun Exp $ */ /* diff --git a/contrib/pgcrypto/sha2.c b/contrib/pgcrypto/sha2.c index d65995456c4..5de94b2fcda 100644 --- a/contrib/pgcrypto/sha2.c +++ b/contrib/pgcrypto/sha2.c @@ -33,7 +33,7 @@ * * $From: sha2.c,v 1.1 2001/11/08 00:01:51 adg Exp adg $ * - * $PostgreSQL: pgsql/contrib/pgcrypto/sha2.c,v 1.13 2010/07/06 19:18:55 momjian Exp $ + * contrib/pgcrypto/sha2.c */ #include "postgres.h" diff --git a/contrib/pgcrypto/sha2.h b/contrib/pgcrypto/sha2.h index 8d593c60e5f..df77a7a6596 100644 --- a/contrib/pgcrypto/sha2.h +++ b/contrib/pgcrypto/sha2.h @@ -1,4 +1,4 @@ -/* $PostgreSQL: pgsql/contrib/pgcrypto/sha2.h,v 1.5 2009/06/11 14:48:52 momjian Exp $ */ +/* contrib/pgcrypto/sha2.h */ /* $OpenBSD: sha2.h,v 1.2 2004/04/28 23:11:57 millert Exp $ */ /* diff --git a/contrib/pgcrypto/uninstall_pgcrypto.sql b/contrib/pgcrypto/uninstall_pgcrypto.sql index 1bffb33ce79..3005c50333a 100644 --- a/contrib/pgcrypto/uninstall_pgcrypto.sql +++ b/contrib/pgcrypto/uninstall_pgcrypto.sql @@ -1,4 +1,4 @@ -/* $PostgreSQL: pgsql/contrib/pgcrypto/uninstall_pgcrypto.sql,v 1.5 2010/08/19 05:57:33 petere Exp $ */ +/* contrib/pgcrypto/uninstall_pgcrypto.sql */ -- Adjust this setting to control where the objects get dropped. SET search_path = public; diff --git a/contrib/pgrowlocks/Makefile b/contrib/pgrowlocks/Makefile index dca7f22d267..fd338d75d76 100644 --- a/contrib/pgrowlocks/Makefile +++ b/contrib/pgrowlocks/Makefile @@ -2,7 +2,7 @@ # # pgrowlocks Makefile # -# $PostgreSQL: pgsql/contrib/pgrowlocks/Makefile,v 1.6 2009/04/28 17:07:50 momjian Exp $ +# contrib/pgrowlocks/Makefile # #------------------------------------------------------------------------- diff --git a/contrib/pgrowlocks/pgrowlocks.c b/contrib/pgrowlocks/pgrowlocks.c index e0d21a8926b..302bb5c39c9 100644 --- a/contrib/pgrowlocks/pgrowlocks.c +++ b/contrib/pgrowlocks/pgrowlocks.c @@ -1,5 +1,5 @@ /* - * $PostgreSQL: pgsql/contrib/pgrowlocks/pgrowlocks.c,v 1.12 2009/06/11 14:48:52 momjian Exp $ + * contrib/pgrowlocks/pgrowlocks.c * * Copyright (c) 2005-2006 Tatsuo Ishii * diff --git a/contrib/pgrowlocks/pgrowlocks.sql.in b/contrib/pgrowlocks/pgrowlocks.sql.in index 405d1cb0d0b..3bcb3ee7ea1 100644 --- a/contrib/pgrowlocks/pgrowlocks.sql.in +++ b/contrib/pgrowlocks/pgrowlocks.sql.in @@ -1,4 +1,4 @@ -/* $PostgreSQL: pgsql/contrib/pgrowlocks/pgrowlocks.sql.in,v 1.3 2007/11/13 04:24:28 momjian Exp $ */ +/* contrib/pgrowlocks/pgrowlocks.sql.in */ -- Adjust this setting to control where the objects get created. SET search_path = public; diff --git a/contrib/pgrowlocks/uninstall_pgrowlocks.sql b/contrib/pgrowlocks/uninstall_pgrowlocks.sql index 6bfae44f331..004e97c0e9f 100644 --- a/contrib/pgrowlocks/uninstall_pgrowlocks.sql +++ b/contrib/pgrowlocks/uninstall_pgrowlocks.sql @@ -1,4 +1,4 @@ -/* $PostgreSQL: pgsql/contrib/pgrowlocks/uninstall_pgrowlocks.sql,v 1.4 2007/11/13 04:24:28 momjian Exp $ */ +/* contrib/pgrowlocks/uninstall_pgrowlocks.sql */ -- Adjust this setting to control where the objects get dropped. SET search_path = public; diff --git a/contrib/pgstattuple/Makefile b/contrib/pgstattuple/Makefile index ab960de9c44..33386cdf170 100644 --- a/contrib/pgstattuple/Makefile +++ b/contrib/pgstattuple/Makefile @@ -2,7 +2,7 @@ # # pgstattuple Makefile # -# $PostgreSQL: pgsql/contrib/pgstattuple/Makefile,v 1.10 2009/04/28 17:07:50 momjian Exp $ +# contrib/pgstattuple/Makefile # #------------------------------------------------------------------------- diff --git a/contrib/pgstattuple/pgstatindex.c b/contrib/pgstattuple/pgstatindex.c index 83b50bb432c..fd2cc9246bc 100644 --- a/contrib/pgstattuple/pgstatindex.c +++ b/contrib/pgstattuple/pgstatindex.c @@ -1,5 +1,5 @@ /* - * $PostgreSQL: pgsql/contrib/pgstattuple/pgstatindex.c,v 1.13 2009/06/11 14:48:52 momjian Exp $ + * contrib/pgstattuple/pgstatindex.c * * * pgstatindex diff --git a/contrib/pgstattuple/pgstattuple.c b/contrib/pgstattuple/pgstattuple.c index 994773a9d7d..3a5d9c27b44 100644 --- a/contrib/pgstattuple/pgstattuple.c +++ b/contrib/pgstattuple/pgstattuple.c @@ -1,5 +1,5 @@ /* - * $PostgreSQL: pgsql/contrib/pgstattuple/pgstattuple.c,v 1.39 2010/04/02 16:16:51 tgl Exp $ + * contrib/pgstattuple/pgstattuple.c * * Copyright (c) 2001,2002 Tatsuo Ishii * diff --git a/contrib/pgstattuple/pgstattuple.sql.in b/contrib/pgstattuple/pgstattuple.sql.in index 0d18f19dd00..6a091365968 100644 --- a/contrib/pgstattuple/pgstattuple.sql.in +++ b/contrib/pgstattuple/pgstattuple.sql.in @@ -1,4 +1,4 @@ -/* $PostgreSQL: pgsql/contrib/pgstattuple/pgstattuple.sql.in,v 1.16 2008/03/21 03:23:30 tgl Exp $ */ +/* contrib/pgstattuple/pgstattuple.sql.in */ -- Adjust this setting to control where the objects get created. SET search_path = public; diff --git a/contrib/pgstattuple/uninstall_pgstattuple.sql b/contrib/pgstattuple/uninstall_pgstattuple.sql index ae0ae90295f..29eac40f297 100644 --- a/contrib/pgstattuple/uninstall_pgstattuple.sql +++ b/contrib/pgstattuple/uninstall_pgstattuple.sql @@ -1,4 +1,4 @@ -/* $PostgreSQL: pgsql/contrib/pgstattuple/uninstall_pgstattuple.sql,v 1.6 2007/11/13 04:24:28 momjian Exp $ */ +/* contrib/pgstattuple/uninstall_pgstattuple.sql */ -- Adjust this setting to control where the objects get dropped. SET search_path = public; diff --git a/contrib/seg/Makefile b/contrib/seg/Makefile index c6a5ef4efee..e8c7a448450 100644 --- a/contrib/seg/Makefile +++ b/contrib/seg/Makefile @@ -1,4 +1,4 @@ -# $PostgreSQL: pgsql/contrib/seg/Makefile,v 1.22 2009/08/28 20:26:18 petere Exp $ +# contrib/seg/Makefile MODULE_big = seg OBJS = seg.o segparse.o diff --git a/contrib/seg/seg.c b/contrib/seg/seg.c index 930a35b0093..8de5092fc4f 100644 --- a/contrib/seg/seg.c +++ b/contrib/seg/seg.c @@ -1,5 +1,5 @@ /* - * $PostgreSQL: pgsql/contrib/seg/seg.c,v 1.25 2009/06/11 14:48:52 momjian Exp $ + * contrib/seg/seg.c * ****************************************************************************** This file contains routines that can be bound to a Postgres backend and diff --git a/contrib/seg/seg.sql.in b/contrib/seg/seg.sql.in index 5dac75374b9..2713c4a8dc6 100644 --- a/contrib/seg/seg.sql.in +++ b/contrib/seg/seg.sql.in @@ -1,4 +1,4 @@ -/* $PostgreSQL: pgsql/contrib/seg/seg.sql.in,v 1.19 2009/06/11 18:30:03 tgl Exp $ */ +/* contrib/seg/seg.sql.in */ -- Adjust this setting to control where the objects get created. SET search_path = public; diff --git a/contrib/seg/segdata.h b/contrib/seg/segdata.h index c92854da83e..90be6e27aaf 100644 --- a/contrib/seg/segdata.h +++ b/contrib/seg/segdata.h @@ -1,5 +1,5 @@ /* - * $PostgreSQL: pgsql/contrib/seg/segdata.h,v 1.6 2009/06/11 14:48:52 momjian Exp $ + * contrib/seg/segdata.h */ typedef struct SEG { diff --git a/contrib/seg/uninstall_seg.sql b/contrib/seg/uninstall_seg.sql index 785de039501..27e8ba901a7 100644 --- a/contrib/seg/uninstall_seg.sql +++ b/contrib/seg/uninstall_seg.sql @@ -1,4 +1,4 @@ -/* $PostgreSQL: pgsql/contrib/seg/uninstall_seg.sql,v 1.8 2008/04/18 20:51:17 tgl Exp $ */ +/* contrib/seg/uninstall_seg.sql */ -- Adjust this setting to control where the objects get dropped. SET search_path = public; diff --git a/contrib/spi/Makefile b/contrib/spi/Makefile index 7a078a9b0ea..531d4066052 100644 --- a/contrib/spi/Makefile +++ b/contrib/spi/Makefile @@ -1,4 +1,4 @@ -# $PostgreSQL: pgsql/contrib/spi/Makefile,v 1.29 2010/07/05 23:15:56 tgl Exp $ +# contrib/spi/Makefile MODULES = autoinc insert_username moddatetime refint timetravel DATA_built = $(addsuffix .sql, $(MODULES)) diff --git a/contrib/spi/autoinc.c b/contrib/spi/autoinc.c index f79317a1b15..4552fc3b59e 100644 --- a/contrib/spi/autoinc.c +++ b/contrib/spi/autoinc.c @@ -1,5 +1,5 @@ /* - * $PostgreSQL: pgsql/contrib/spi/autoinc.c,v 1.17 2009/06/11 14:48:52 momjian Exp $ + * contrib/spi/autoinc.c */ #include "postgres.h" diff --git a/contrib/spi/autoinc.sql.in b/contrib/spi/autoinc.sql.in index 5daed211405..d38c9df2d4d 100644 --- a/contrib/spi/autoinc.sql.in +++ b/contrib/spi/autoinc.sql.in @@ -1,4 +1,4 @@ -/* $PostgreSQL: pgsql/contrib/spi/autoinc.sql.in,v 1.7 2007/11/13 04:24:28 momjian Exp $ */ +/* contrib/spi/autoinc.sql.in */ -- Adjust this setting to control where the objects get created. SET search_path = public; diff --git a/contrib/spi/insert_username.c b/contrib/spi/insert_username.c index 377284a6133..da6764faf64 100644 --- a/contrib/spi/insert_username.c +++ b/contrib/spi/insert_username.c @@ -1,7 +1,7 @@ /* * insert_username.c * $Modified: Thu Oct 16 08:13:42 1997 by brook $ - * $PostgreSQL: pgsql/contrib/spi/insert_username.c,v 1.17 2009/01/07 13:44:36 tgl Exp $ + * contrib/spi/insert_username.c * * insert user name in response to a trigger * usage: insert_username (column_name) diff --git a/contrib/spi/insert_username.sql.in b/contrib/spi/insert_username.sql.in index 4d73d9b546a..f06cc0cb5ab 100644 --- a/contrib/spi/insert_username.sql.in +++ b/contrib/spi/insert_username.sql.in @@ -1,4 +1,4 @@ -/* $PostgreSQL: pgsql/contrib/spi/insert_username.sql.in,v 1.7 2007/11/13 04:24:28 momjian Exp $ */ +/* contrib/spi/insert_username.sql.in */ -- Adjust this setting to control where the objects get created. SET search_path = public; diff --git a/contrib/spi/moddatetime.c b/contrib/spi/moddatetime.c index 0b4d3ba3519..e90c0b5cc25 100644 --- a/contrib/spi/moddatetime.c +++ b/contrib/spi/moddatetime.c @@ -1,7 +1,7 @@ /* moddatetime.c -$PostgreSQL: pgsql/contrib/spi/moddatetime.c,v 1.15 2009/01/07 13:44:36 tgl Exp $ +contrib/spi/moddatetime.c What is this? It is a function to be called from a trigger for the purpose of updating diff --git a/contrib/spi/moddatetime.sql.in b/contrib/spi/moddatetime.sql.in index 793c703ac0c..e4ca6a66536 100644 --- a/contrib/spi/moddatetime.sql.in +++ b/contrib/spi/moddatetime.sql.in @@ -1,4 +1,4 @@ -/* $PostgreSQL: pgsql/contrib/spi/moddatetime.sql.in,v 1.7 2007/11/13 04:24:28 momjian Exp $ */ +/* contrib/spi/moddatetime.sql.in */ -- Adjust this setting to control where the objects get created. SET search_path = public; diff --git a/contrib/spi/refint.c b/contrib/spi/refint.c index 5a446c37098..cbd08d491db 100644 --- a/contrib/spi/refint.c +++ b/contrib/spi/refint.c @@ -1,5 +1,5 @@ /* - * $PostgreSQL: pgsql/contrib/spi/refint.c,v 1.35 2009/06/11 14:48:52 momjian Exp $ + * contrib/spi/refint.c * * * refint.c -- set of functions to define referential integrity diff --git a/contrib/spi/refint.sql.in b/contrib/spi/refint.sql.in index 08ee7f98cfc..2525b70006e 100644 --- a/contrib/spi/refint.sql.in +++ b/contrib/spi/refint.sql.in @@ -1,4 +1,4 @@ -/* $PostgreSQL: pgsql/contrib/spi/refint.sql.in,v 1.7 2007/11/13 04:24:28 momjian Exp $ */ +/* contrib/spi/refint.sql.in */ -- Adjust this setting to control where the objects get created. SET search_path = public; diff --git a/contrib/spi/timetravel.c b/contrib/spi/timetravel.c index 577767d81ff..8bae3131dcf 100644 --- a/contrib/spi/timetravel.c +++ b/contrib/spi/timetravel.c @@ -1,5 +1,5 @@ /* - * $PostgreSQL: pgsql/contrib/spi/timetravel.c,v 1.31 2009/06/11 14:48:52 momjian Exp $ + * contrib/spi/timetravel.c * * * timetravel.c -- function to get time travel feature diff --git a/contrib/spi/timetravel.sql.in b/contrib/spi/timetravel.sql.in index a78b1d52cf6..4c64f211d93 100644 --- a/contrib/spi/timetravel.sql.in +++ b/contrib/spi/timetravel.sql.in @@ -1,4 +1,4 @@ -/* $PostgreSQL: pgsql/contrib/spi/timetravel.sql.in,v 1.8 2007/11/13 04:24:28 momjian Exp $ */ +/* contrib/spi/timetravel.sql.in */ -- Adjust this setting to control where the objects get created. SET search_path = public; diff --git a/contrib/sslinfo/Makefile b/contrib/sslinfo/Makefile index 722eacd3495..a4c3d842978 100644 --- a/contrib/sslinfo/Makefile +++ b/contrib/sslinfo/Makefile @@ -1,4 +1,4 @@ -# $PostgreSQL: pgsql/contrib/sslinfo/Makefile,v 1.10 2007/11/10 23:59:51 momjian Exp $ +# contrib/sslinfo/Makefile MODULE_big = sslinfo OBJS = sslinfo.o diff --git a/contrib/sslinfo/sslinfo.c b/contrib/sslinfo/sslinfo.c index 1d0aa321bb9..b5fd7ec987d 100644 --- a/contrib/sslinfo/sslinfo.c +++ b/contrib/sslinfo/sslinfo.c @@ -4,7 +4,7 @@ * Written by Victor B. Wagner <vitus@cryptocom.ru>, Cryptocom LTD * This file is distributed under BSD-style license. * - * $PostgreSQL: pgsql/contrib/sslinfo/sslinfo.c,v 1.9 2010/07/27 23:43:42 rhaas Exp $ + * contrib/sslinfo/sslinfo.c */ #include "postgres.h" diff --git a/contrib/sslinfo/sslinfo.sql.in b/contrib/sslinfo/sslinfo.sql.in index 7e93419e943..66cbe3ea664 100644 --- a/contrib/sslinfo/sslinfo.sql.in +++ b/contrib/sslinfo/sslinfo.sql.in @@ -1,4 +1,4 @@ -/* $PostgreSQL: pgsql/contrib/sslinfo/sslinfo.sql.in,v 1.5 2010/07/27 23:43:42 rhaas Exp $ */ +/* contrib/sslinfo/sslinfo.sql.in */ -- Adjust this setting to control where the objects get created. SET search_path = public; diff --git a/contrib/sslinfo/uninstall_sslinfo.sql b/contrib/sslinfo/uninstall_sslinfo.sql index 7ffbc7d0c77..9ac572c8f9f 100644 --- a/contrib/sslinfo/uninstall_sslinfo.sql +++ b/contrib/sslinfo/uninstall_sslinfo.sql @@ -1,4 +1,4 @@ -/* $PostgreSQL: pgsql/contrib/sslinfo/uninstall_sslinfo.sql,v 1.4 2010/07/27 23:43:42 rhaas Exp $ */ +/* contrib/sslinfo/uninstall_sslinfo.sql */ -- Adjust this setting to control where the objects get dropped. SET search_path = public; diff --git a/contrib/start-scripts/freebsd b/contrib/start-scripts/freebsd index e7338c03324..758574b427f 100644 --- a/contrib/start-scripts/freebsd +++ b/contrib/start-scripts/freebsd @@ -6,7 +6,7 @@ # Created through merger of the Linux start script by Ryan Kirkpatrick # and the script in the FreeBSD ports collection. -# $PostgreSQL: pgsql/contrib/start-scripts/freebsd,v 1.7 2010/02/23 22:17:25 momjian Exp $ +# contrib/start-scripts/freebsd ## EDIT FROM HERE diff --git a/contrib/start-scripts/linux b/contrib/start-scripts/linux index dd73e42d173..4ad66917e65 100644 --- a/contrib/start-scripts/linux +++ b/contrib/start-scripts/linux @@ -24,7 +24,7 @@ # Original author: Ryan Kirkpatrick <pgsql@rkirkpat.net> -# $PostgreSQL: pgsql/contrib/start-scripts/linux,v 1.11 2010/02/23 22:15:35 momjian Exp $ +# contrib/start-scripts/linux ## EDIT FROM HERE diff --git a/contrib/tablefunc/Makefile b/contrib/tablefunc/Makefile index 1207c62ef7d..a5c28828661 100644 --- a/contrib/tablefunc/Makefile +++ b/contrib/tablefunc/Makefile @@ -1,4 +1,4 @@ -# $PostgreSQL: pgsql/contrib/tablefunc/Makefile,v 1.10 2010/07/05 23:15:56 tgl Exp $ +# contrib/tablefunc/Makefile MODULES = tablefunc DATA_built = tablefunc.sql diff --git a/contrib/tablefunc/tablefunc.c b/contrib/tablefunc/tablefunc.c index 609ab48c7ce..ea2f2e15b0a 100644 --- a/contrib/tablefunc/tablefunc.c +++ b/contrib/tablefunc/tablefunc.c @@ -1,5 +1,5 @@ /* - * $PostgreSQL: pgsql/contrib/tablefunc/tablefunc.c,v 1.62 2010/01/02 16:57:32 momjian Exp $ + * contrib/tablefunc/tablefunc.c * * * tablefunc diff --git a/contrib/tablefunc/tablefunc.h b/contrib/tablefunc/tablefunc.h index 2870299bd4e..267a8d1eeba 100644 --- a/contrib/tablefunc/tablefunc.h +++ b/contrib/tablefunc/tablefunc.h @@ -1,5 +1,5 @@ /* - * $PostgreSQL: pgsql/contrib/tablefunc/tablefunc.h,v 1.17 2010/01/02 16:57:32 momjian Exp $ + * contrib/tablefunc/tablefunc.h * * * tablefunc diff --git a/contrib/tablefunc/tablefunc.sql.in b/contrib/tablefunc/tablefunc.sql.in index f4864c4558e..54cba5ed3e1 100644 --- a/contrib/tablefunc/tablefunc.sql.in +++ b/contrib/tablefunc/tablefunc.sql.in @@ -1,4 +1,4 @@ -/* $PostgreSQL: pgsql/contrib/tablefunc/tablefunc.sql.in,v 1.12 2007/11/13 04:24:29 momjian Exp $ */ +/* contrib/tablefunc/tablefunc.sql.in */ -- Adjust this setting to control where the objects get created. SET search_path = public; diff --git a/contrib/tablefunc/uninstall_tablefunc.sql b/contrib/tablefunc/uninstall_tablefunc.sql index cb58df89bb8..b1ec9164478 100644 --- a/contrib/tablefunc/uninstall_tablefunc.sql +++ b/contrib/tablefunc/uninstall_tablefunc.sql @@ -1,4 +1,4 @@ -/* $PostgreSQL: pgsql/contrib/tablefunc/uninstall_tablefunc.sql,v 1.3 2007/11/13 04:24:29 momjian Exp $ */ +/* contrib/tablefunc/uninstall_tablefunc.sql */ -- Adjust this setting to control where the objects get dropped. SET search_path = public; diff --git a/contrib/test_parser/Makefile b/contrib/test_parser/Makefile index 44990695487..ad4e0ec9b8e 100644 --- a/contrib/test_parser/Makefile +++ b/contrib/test_parser/Makefile @@ -1,4 +1,4 @@ -# $PostgreSQL: pgsql/contrib/test_parser/Makefile,v 1.2 2007/12/03 04:22:54 tgl Exp $ +# contrib/test_parser/Makefile MODULE_big = test_parser OBJS = test_parser.o diff --git a/contrib/test_parser/test_parser.c b/contrib/test_parser/test_parser.c index da4f9be7810..58b1c67970c 100644 --- a/contrib/test_parser/test_parser.c +++ b/contrib/test_parser/test_parser.c @@ -6,7 +6,7 @@ * Copyright (c) 2007-2010, PostgreSQL Global Development Group * * IDENTIFICATION - * $PostgreSQL: pgsql/contrib/test_parser/test_parser.c,v 1.7 2010/01/02 16:57:32 momjian Exp $ + * contrib/test_parser/test_parser.c * *------------------------------------------------------------------------- */ diff --git a/contrib/test_parser/test_parser.sql.in b/contrib/test_parser/test_parser.sql.in index 4fd9b0796e2..bab97a29870 100644 --- a/contrib/test_parser/test_parser.sql.in +++ b/contrib/test_parser/test_parser.sql.in @@ -1,4 +1,4 @@ -/* $PostgreSQL: pgsql/contrib/test_parser/test_parser.sql.in,v 1.3 2007/11/13 04:24:29 momjian Exp $ */ +/* contrib/test_parser/test_parser.sql.in */ -- Adjust this setting to control where the objects get created. SET search_path = public; diff --git a/contrib/test_parser/uninstall_test_parser.sql b/contrib/test_parser/uninstall_test_parser.sql index 66686d20042..042f46b2517 100644 --- a/contrib/test_parser/uninstall_test_parser.sql +++ b/contrib/test_parser/uninstall_test_parser.sql @@ -1,4 +1,4 @@ -/* $PostgreSQL: pgsql/contrib/test_parser/uninstall_test_parser.sql,v 1.3 2007/11/13 04:24:29 momjian Exp $ */ +/* contrib/test_parser/uninstall_test_parser.sql */ -- Adjust this setting to control where the objects get dropped. SET search_path = public; diff --git a/contrib/tsearch2/Makefile b/contrib/tsearch2/Makefile index 8ab634323f2..8748d30b195 100644 --- a/contrib/tsearch2/Makefile +++ b/contrib/tsearch2/Makefile @@ -1,4 +1,4 @@ -# $PostgreSQL: pgsql/contrib/tsearch2/Makefile,v 1.20 2007/11/13 21:02:28 tgl Exp $ +# contrib/tsearch2/Makefile MODULES = tsearch2 DATA_built = tsearch2.sql diff --git a/contrib/tsearch2/tsearch2.c b/contrib/tsearch2/tsearch2.c index 24c02aa45d1..030a84c73be 100644 --- a/contrib/tsearch2/tsearch2.c +++ b/contrib/tsearch2/tsearch2.c @@ -7,7 +7,7 @@ * * * IDENTIFICATION - * $PostgreSQL: pgsql/contrib/tsearch2/tsearch2.c,v 1.13 2010/08/05 15:25:35 rhaas Exp $ + * contrib/tsearch2/tsearch2.c * *------------------------------------------------------------------------- */ diff --git a/contrib/tsearch2/tsearch2.sql.in b/contrib/tsearch2/tsearch2.sql.in index fc190375785..739d57eaa9e 100644 --- a/contrib/tsearch2/tsearch2.sql.in +++ b/contrib/tsearch2/tsearch2.sql.in @@ -1,4 +1,4 @@ -/* $PostgreSQL: pgsql/contrib/tsearch2/tsearch2.sql.in,v 1.7 2009/03/25 22:19:01 tgl Exp $ */ +/* contrib/tsearch2/tsearch2.sql.in */ -- Adjust this setting to control where the objects get created. SET search_path = public; diff --git a/contrib/tsearch2/uninstall_tsearch2.sql b/contrib/tsearch2/uninstall_tsearch2.sql index 180b021d2c3..f444a218e63 100644 --- a/contrib/tsearch2/uninstall_tsearch2.sql +++ b/contrib/tsearch2/uninstall_tsearch2.sql @@ -1,4 +1,4 @@ -/* $PostgreSQL: pgsql/contrib/tsearch2/uninstall_tsearch2.sql,v 1.2 2007/11/16 00:34:54 tgl Exp $ */ +/* contrib/tsearch2/uninstall_tsearch2.sql */ -- Adjust this setting to control where the objects get dropped. SET search_path = public, pg_catalog; diff --git a/contrib/unaccent/Makefile b/contrib/unaccent/Makefile index 401f5232831..36415fef77d 100644 --- a/contrib/unaccent/Makefile +++ b/contrib/unaccent/Makefile @@ -1,4 +1,4 @@ -# $PostgreSQL: pgsql/contrib/unaccent/Makefile,v 1.2 2009/08/18 15:51:16 tgl Exp $ +# contrib/unaccent/Makefile MODULE_big = unaccent OBJS = unaccent.o diff --git a/contrib/unaccent/unaccent.c b/contrib/unaccent/unaccent.c index ce0085ffe53..2097d18a1b7 100644 --- a/contrib/unaccent/unaccent.c +++ b/contrib/unaccent/unaccent.c @@ -6,7 +6,7 @@ * Copyright (c) 2009-2010, PostgreSQL Global Development Group * * IDENTIFICATION - * $PostgreSQL: pgsql/contrib/unaccent/unaccent.c,v 1.6 2010/08/05 15:25:35 rhaas Exp $ + * contrib/unaccent/unaccent.c * *------------------------------------------------------------------------- */ diff --git a/contrib/unaccent/unaccent.sql.in b/contrib/unaccent/unaccent.sql.in index 1f3c3c8a4ad..7e397cc8d2a 100644 --- a/contrib/unaccent/unaccent.sql.in +++ b/contrib/unaccent/unaccent.sql.in @@ -1,4 +1,4 @@ -/* $PostgreSQL: pgsql/contrib/unaccent/unaccent.sql.in,v 1.2 2009/11/14 18:24:32 tgl Exp $ */ +/* contrib/unaccent/unaccent.sql.in */ -- Adjust this setting to control where the objects get created. SET search_path = public; diff --git a/contrib/unaccent/uninstall_unaccent.sql b/contrib/unaccent/uninstall_unaccent.sql index f60ab564da5..6879d4f74c6 100644 --- a/contrib/unaccent/uninstall_unaccent.sql +++ b/contrib/unaccent/uninstall_unaccent.sql @@ -1,4 +1,4 @@ -/* $PostgreSQL: pgsql/contrib/unaccent/uninstall_unaccent.sql,v 1.2 2009/11/14 18:24:32 tgl Exp $ */ +/* contrib/unaccent/uninstall_unaccent.sql */ -- Adjust this setting to control where the objects get dropped. SET search_path = public; diff --git a/contrib/uuid-ossp/Makefile b/contrib/uuid-ossp/Makefile index 4ed83537dd7..77ea87409f1 100644 --- a/contrib/uuid-ossp/Makefile +++ b/contrib/uuid-ossp/Makefile @@ -1,4 +1,4 @@ -# $PostgreSQL: pgsql/contrib/uuid-ossp/Makefile,v 1.4 2007/11/13 00:13:19 tgl Exp $ +# contrib/uuid-ossp/Makefile MODULE_big = uuid-ossp OBJS = uuid-ossp.o diff --git a/contrib/uuid-ossp/uninstall_uuid-ossp.sql b/contrib/uuid-ossp/uninstall_uuid-ossp.sql index 75c9f3678f3..0fafb2721fc 100644 --- a/contrib/uuid-ossp/uninstall_uuid-ossp.sql +++ b/contrib/uuid-ossp/uninstall_uuid-ossp.sql @@ -1,4 +1,4 @@ -/* $PostgreSQL: pgsql/contrib/uuid-ossp/uninstall_uuid-ossp.sql,v 1.3 2007/11/13 04:24:29 momjian Exp $ */ +/* contrib/uuid-ossp/uninstall_uuid-ossp.sql */ -- Adjust this setting to control where the objects get dropped. SET search_path = public; diff --git a/contrib/uuid-ossp/uuid-ossp.c b/contrib/uuid-ossp/uuid-ossp.c index a7d8f509bca..f89c9fafba6 100644 --- a/contrib/uuid-ossp/uuid-ossp.c +++ b/contrib/uuid-ossp/uuid-ossp.c @@ -4,7 +4,7 @@ * * Copyright (c) 2007-2010, PostgreSQL Global Development Group * - * $PostgreSQL: pgsql/contrib/uuid-ossp/uuid-ossp.c,v 1.12 2010/01/02 16:57:33 momjian Exp $ + * contrib/uuid-ossp/uuid-ossp.c * *------------------------------------------------------------------------- */ diff --git a/contrib/uuid-ossp/uuid-ossp.sql.in b/contrib/uuid-ossp/uuid-ossp.sql.in index e59882f4562..71212cde480 100644 --- a/contrib/uuid-ossp/uuid-ossp.sql.in +++ b/contrib/uuid-ossp/uuid-ossp.sql.in @@ -1,4 +1,4 @@ -/* $PostgreSQL: pgsql/contrib/uuid-ossp/uuid-ossp.sql.in,v 1.6 2007/11/13 04:24:29 momjian Exp $ */ +/* contrib/uuid-ossp/uuid-ossp.sql.in */ -- Adjust this setting to control where the objects get created. SET search_path = public; diff --git a/contrib/vacuumlo/Makefile b/contrib/vacuumlo/Makefile index 4c68e695781..4dd2ebc03ec 100644 --- a/contrib/vacuumlo/Makefile +++ b/contrib/vacuumlo/Makefile @@ -1,4 +1,4 @@ -# $PostgreSQL: pgsql/contrib/vacuumlo/Makefile,v 1.18 2010/05/12 11:33:08 momjian Exp $ +# contrib/vacuumlo/Makefile PGFILEDESC = "vacuumlo - removes orphaned large objects" PGAPPICON=win32 diff --git a/contrib/vacuumlo/vacuumlo.c b/contrib/vacuumlo/vacuumlo.c index 2ed1cbeb936..07da355e841 100644 --- a/contrib/vacuumlo/vacuumlo.c +++ b/contrib/vacuumlo/vacuumlo.c @@ -8,7 +8,7 @@ * * * IDENTIFICATION - * $PostgreSQL: pgsql/contrib/vacuumlo/vacuumlo.c,v 1.45 2010/02/17 04:19:37 tgl Exp $ + * contrib/vacuumlo/vacuumlo.c * *------------------------------------------------------------------------- */ diff --git a/contrib/xml2/Makefile b/contrib/xml2/Makefile index dd45a914c93..57b4cbfac5d 100644 --- a/contrib/xml2/Makefile +++ b/contrib/xml2/Makefile @@ -1,4 +1,4 @@ -# $PostgreSQL: pgsql/contrib/xml2/Makefile,v 1.14 2010/03/01 18:07:59 tgl Exp $ +# contrib/xml2/Makefile MODULE_big = pgxml diff --git a/contrib/xml2/pgxml.sql.in b/contrib/xml2/pgxml.sql.in index 0a52561135d..8c3d420afd3 100644 --- a/contrib/xml2/pgxml.sql.in +++ b/contrib/xml2/pgxml.sql.in @@ -1,4 +1,4 @@ -/* $PostgreSQL: pgsql/contrib/xml2/pgxml.sql.in,v 1.13 2010/08/13 18:36:23 tgl Exp $ */ +/* contrib/xml2/pgxml.sql.in */ -- Adjust this setting to control where the objects get created. SET search_path = public; diff --git a/contrib/xml2/uninstall_pgxml.sql b/contrib/xml2/uninstall_pgxml.sql index 016658dc7f1..1696390f80d 100644 --- a/contrib/xml2/uninstall_pgxml.sql +++ b/contrib/xml2/uninstall_pgxml.sql @@ -1,4 +1,4 @@ -/* $PostgreSQL: pgsql/contrib/xml2/uninstall_pgxml.sql,v 1.5 2010/08/13 18:36:23 tgl Exp $ */ +/* contrib/xml2/uninstall_pgxml.sql */ -- Adjust this setting to control where the objects get dropped. SET search_path = public; diff --git a/contrib/xml2/xpath.c b/contrib/xml2/xpath.c index 8ee949ce4ef..0df764770ba 100644 --- a/contrib/xml2/xpath.c +++ b/contrib/xml2/xpath.c @@ -1,5 +1,5 @@ /* - * $PostgreSQL: pgsql/contrib/xml2/xpath.c,v 1.31 2010/08/13 18:36:23 tgl Exp $ + * contrib/xml2/xpath.c * * Parser interface for DOM-based parser (libxml) rather than * stream-based SAX-type parser diff --git a/contrib/xml2/xslt_proc.c b/contrib/xml2/xslt_proc.c index 158345b20b3..a90104d17a2 100644 --- a/contrib/xml2/xslt_proc.c +++ b/contrib/xml2/xslt_proc.c @@ -1,5 +1,5 @@ /* - * $PostgreSQL: pgsql/contrib/xml2/xslt_proc.c,v 1.22 2010/08/10 23:02:00 tgl Exp $ + * contrib/xml2/xslt_proc.c * * XSLT processing functions (requiring libxslt) * |