diff options
Diffstat (limited to 'contrib')
297 files changed, 297 insertions, 297 deletions
diff --git a/contrib/Makefile b/contrib/Makefile index a1b7d913f5..c1d3317c2d 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 e1262fb2e9..d4413ad133 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 5271ef6ea2..4f7eedaa26 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 de29bacd51..6e389975d0 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 893f081461..682cf67760 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 e9eaae0ece..2d1443fe48 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 ffc1a4a106..b165d68d79 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 e6b6394c23..cba68af595 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 c05f8ebbfc..f8fae18eaf 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 bc7ec3bbcb..19cc0b3df4 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 0b79c6037b..30324dc709 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 3889d947c1..e152cd881d 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 f78134f443..9884d0fb96 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 88b4a380e8..8430464612 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 a1efde6146..bfda21b058 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 d8dce91535..11904af257 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 7ece9ea220..4cfeddfc68 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 ab4912883d..1386983272 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 f109de4a64..7e1c7e054c 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 db5c5713b5..058a3f99e9 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 0a285a71c1..339087018a 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 a8d18c578b..dcc934d156 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 2be4c40aa8..2e98117452 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 aa0d4ac33f..678d653fd0 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 4cf36a07fa..8afa5b0af2 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 32b9ddbad7..0715346f23 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 60092b4e9e..fb440c3f19 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 6331109b10..fa82497e2b 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 96e4be54d4..4927448258 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 8b01eb7aac..40d0b9ad79 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 8566a8efb7..01163e906a 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 543f2129b0..2b13d14ad1 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 e4b4824769..0df22f2133 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 dcd17bc430..091784bd5a 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 447ba59efb..5fc93cfbff 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 49f5d59ee2..2c1012f323 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 9e71819e1a..4163730e85 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 f106b6dcfe..3677dfcb56 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 56a998ec83..0c9fec0e67 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 31722f33c4..3cec0224b0 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 386fc95c5f..93ab6eb4eb 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 d38e2762dd..c868eca884 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 371e70f74d..9991825853 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 bd781e6168..0aef0ad947 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 2d1ecbed09..468987ad82 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 13c76b82b6..6ac8e9b13d 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 2f3da437e5..4fee79f84e 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 62cd3a2d02..832c099f04 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 41f493ed41..3cd199530a 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 1100602cfc..fd0c26a381 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 13dc4f55b0..d02941dd8c 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 f373d353f2..b0e477bf1e 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 abdb5a2db3..aa7119e0d0 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 519c73b68f..148961e6c9 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 4bfa7670fd..ce86829210 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 1918fdee44..3d097ac1de 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 ff656736a4..acad2c94d0 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 98478115f1..365728a6d7 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 adf7b685b5..17d9eaa5f7 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 8e1918613f..174eec6e1c 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 5245349ae1..9d7ef7d9c1 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 d94343fd36..0467fa22ba 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 2a879b7eff..8b737f09fc 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 dc16d9583e..4fe0ac6db2 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 ac014a757d..7d48c9209f 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 844d2e9997..68f9579c05 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 ab72ac7fc9..8328e5f828 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 4dce1f828e..2f344a7011 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 2b8041b131..a4799914bd 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 dfad24aa4f..dfd7d524ab 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 723830950d..9cdf3f87e3 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 f23a3a2aa6..6721e58f22 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 c752b2dfda..63921d9271 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 cab78997fa..05a347d6b8 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 bcf05da132..99d2548569 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 bb69d70805..e466b6f706 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 dc5765d056..d541d0cc95 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 e008b1a664..f5bfd82517 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 796dce575e..8906397ad2 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 c7a5e8e556..5b39c189e1 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 ca2777cd8d..5778f74a80 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 f5056f53ec..da9b79d8de 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 6fe1860f3b..88d89ece23 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 fa6da693e9..0058f5c1b3 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 ebee60a1db..8d73a463ab 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 ca2b05aa83..a03e43164f 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 73ce7e4173..9bb1866e78 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 7ed7c5ddd2..289e41b671 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 fe0f4c7df4..2e55345325 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 09d7cb0bb5..18340f9d71 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 35dbb54796..dd50b37d2e 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 960d81a638..2a6ed911ad 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 438db2ca95..7557c6acb7 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 375ff3ae25..b5ad69eba3 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 29e08eda66..65c9bf2e74 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 54858322a2..1d99c6905e 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 8c0ec29c31..8093103ba4 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 f9c5986db2..d9557a6b11 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 01671bf5a2..3a5e96301b 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 ba962cd0d5..5cda23fdad 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 87b611a542..7023ebdf63 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 26c84afe80..d8d5ccd1fe 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 1d7b2af8fd..281f2cdefc 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 063a5d97f1..082efcff7c 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 8431921d83..ae33b758fb 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 2b58a6b566..b95473e12d 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 dac760b111..979358f9a6 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 fdc72d9b53..e9d6f4df87 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 1963fbbee3..8f73c5c497 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 cc7b573b04..bf866b4748 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 336cb5685e..43c01f57c0 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 2e37a28591..0e3559c020 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 6dcf6659c5..8c7afbe5e3 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 73022b2535..7e52362f81 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 7cbc796a3d..77deb1d550 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 130658a2a7..bad3cbfe85 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 4c0e7c25c0..f221c2de54 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 02c96c05d4..096a748c51 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 f0078d6e42..c736defc73 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 69d9eee3e1..269d05d0c1 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 1059417e77..1fbed78157 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 f16c6f9a32..8e4ea4c151 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 364c44db1b..4ea6277c57 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 46fccb1ee1..5fa7b59d32 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 a88eb16cb9..3e88b81c16 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 2e6d5367d8..2ddfdec7eb 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 8621188b7f..d6996caf3c 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 b158c4b441..e1240c3d2f 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 559c05e2bf..1c13888605 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 acd07df1e8..07ce1189b5 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 ce043550af..f6f890ecd5 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 ff824278aa..05c06ccc68 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 dd53194840..a8ae51dfd1 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 4f56864d2e..ef27cd4080 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 5fbf93ba2f..0a22971b9b 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 143a47cb80..3ed77118b4 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 abf1ddc57c..d6058d409f 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 9043fa37bd..f341a7247d 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 8c0a7f7f37..a980fd7d01 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 1d2c8b1c34..4829bfd1f3 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 adf417769e..32b7c9a5c1 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 d858b5bcd3..2011c145ce 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 3d12acbdb0..79892077c8 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 83aee70de1..6a47a2241e 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 59ada02e4c..b23e94ed12 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 5939f52a04..ed882881ab 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 19dc9301ca..62617cd20d 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 daeab59d46..da335a86ca 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 4b1dece12a..bf6b0df8f9 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 7054380386..5ef8ba46ad 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 e9bf0ad7d1..168506708a 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 5e6bbd9145..43300245cb 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 70680e762d..f25015fd14 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 ce335a656e..efb26a90f6 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 eb89aeca80..6db6cc0ea2 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 cf82a0e3dc..56d5fd591a 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 31fd0af39d..d2832a2986 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 c9f139e9b6..cf2dec795c 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 5396b52b1b..b1f094ab40 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 4a89760d71..85826733f5 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 a150f8843e..3ce0b2deb5 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 7014394bb2..567b2f878f 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 19b6747d68..e15c826e18 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 42c1d741f9..239cd85b5b 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 91bee727b4..bbd36ac9e9 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 1998ffe899..79ac234b5e 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 5cb60b177f..88adfea276 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 62cf55602a..144fcdc817 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 cb0b01994e..f36c2c179d 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 3a2ded629c..9572f076be 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 1e024cb81e..a7f2c3873d 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 4274646dff..11f1d4bbcb 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 261e63b729..c70f23f499 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 dad2a5f8d1..1601d56b08 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 520a20c6a0..945889016e 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 de19a0023e..e732e22bbc 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 414ac090bd..e6ea813c91 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 a80fff7851..a7d46cf2bc 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 1ef176a041..a69548b68c 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 3cc5469787..a617583564 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 11caaa3e89..045ef7effa 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 24fc08ef70..b9968e9132 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 59e61767fc..7a7757c8a5 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 cca5891726..34760b11da 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 bd43c5093e..e23c9bebcb 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 08050ac6e8..c956be187a 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 786ba10fd9..5a2b211a7c 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 27ea731f3c..55ca1e82e6 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 cfb586ba49..f429fab4ed 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 e03c542c0d..f8a2c63c9f 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 507d7f9055..84aba37ba8 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 9c1d2d4706..a7b7e758ff 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 a907626d39..1f497432da 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 b2ec3da828..84bf27bedb 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 d70fc341af..30eb8bf5a2 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 4e97946ab3..1228fb4ad0 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 b4d7064dec..2e49f8aab8 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 51f1f00e30..de24076322 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 c7b29cf3a5..f2b02d0cd7 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 1e36a369e0..f86b47816b 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 84bda624a4..fedfe2dd03 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 d3eee2ee4f..6246900c7a 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 aa2b5596ee..37d2db5337 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 8083d1f280..b5071fba43 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 eb7c620b48..03b9ab58ba 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 bb0b4eefd3..dc25acea5d 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 04c90d8672..d271ddc302 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 b011b06062..6284ba2406 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 bb1e26a086..37ae100412 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 7963ccc329..87adf91125 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 bd05ccc94e..7cf9bf0b8c 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 41f5855247..7a9516b070 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 9df5c717f2..c9aa6cd66a 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 48f2f01f62..3b9b5d20ed 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 a51a553236..b75266f18c 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 283946b17d..d0e5830fe0 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 f2b25de090..ed41e1151c 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 3f2ec0f5c7..c8765b6d14 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 530a3d38d8..f1f09cd83b 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 cb32708fee..fe5fae0c42 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 0e9ebb4285..4b4d1bfb44 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 62b6e1ab0e..283e0ec17e 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 326b1bbf31..ef16caf685 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 ce6f199a9e..b8a6bc49b4 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 7860d830c4..7ae01ccc4d 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 e21acb73c6..ab12e2a6e7 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 c2460cb9f9..7dde9ab77b 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 3b2016190e..16abc4347c 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 f2db06a898..768c7c333a 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 c916e9361c..9709f9bdb6 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 b22e029d2c..393a0be983 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 cf9eca91dc..5651d03750 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 e4c4229170..fb30e46c14 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 94849a78c5..4ee4f24559 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 ccd925b75e..3e0931efbc 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 d65995456c..5de94b2fcd 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 8d593c60e5..df77a7a659 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 1bffb33ce7..3005c50333 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 dca7f22d26..fd338d75d7 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 e0d21a8926..302bb5c39c 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 405d1cb0d0..3bcb3ee7ea 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 6bfae44f33..004e97c0e9 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 ab960de9c4..33386cdf17 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 83b50bb432..fd2cc9246b 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 994773a9d7..3a5d9c27b4 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 0d18f19dd0..6a09136596 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 ae0ae90295..29eac40f29 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 c6a5ef4efe..e8c7a44845 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 930a35b009..8de5092fc4 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 5dac75374b..2713c4a8dc 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 c92854da83..90be6e27aa 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 785de03950..27e8ba901a 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 7a078a9b0e..531d406605 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 f79317a1b1..4552fc3b59 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 5daed21140..d38c9df2d4 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 377284a613..da6764faf6 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 4d73d9b546..f06cc0cb5a 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 0b4d3ba351..e90c0b5cc2 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 793c703ac0..e4ca6a6653 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 5a446c3709..cbd08d491d 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 08ee7f98cf..2525b70006 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 577767d81f..8bae3131dc 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 a78b1d52cf..4c64f211d9 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 722eacd349..a4c3d84297 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 1d0aa321bb..b5fd7ec987 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 7e93419e94..66cbe3ea66 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 7ffbc7d0c7..9ac572c8f9 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 e7338c0332..758574b427 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 dd73e42d17..4ad66917e6 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 1207c62ef7..a5c2882866 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 609ab48c7c..ea2f2e15b0 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 2870299bd4..267a8d1eeb 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 f4864c4558..54cba5ed3e 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 cb58df89bb..b1ec916447 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 4499069548..ad4e0ec9b8 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 da4f9be781..58b1c67970 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 4fd9b0796e..bab97a2987 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 66686d2004..042f46b251 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 8ab634323f..8748d30b19 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 24c02aa45d..030a84c73b 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 fc19037578..739d57eaa9 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 180b021d2c..f444a218e6 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 401f523283..36415fef77 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 ce0085ffe5..2097d18a1b 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 1f3c3c8a4a..7e397cc8d2 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 f60ab564da..6879d4f74c 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 4ed83537dd..77ea87409f 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 75c9f3678f..0fafb2721f 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 a7d8f509bc..f89c9fafba 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 e59882f456..71212cde48 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 4c68e69578..4dd2ebc03e 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 2ed1cbeb93..07da355e84 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 dd45a914c9..57b4cbfac5 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 0a52561135..8c3d420afd 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 016658dc7f..1696390f80 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 8ee949ce4e..0df764770b 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 158345b20b..a90104d17a 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) * |