summaryrefslogtreecommitdiff
path: root/contrib
diff options
context:
space:
mode:
Diffstat (limited to 'contrib')
-rw-r--r--contrib/cube/cube.c2
-rw-r--r--contrib/cube/cubedata.h2
-rw-r--r--contrib/cube/cubeparse.y2
-rw-r--r--contrib/cube/cubescan.l1
-rw-r--r--contrib/dbase/dbf.c2
-rw-r--r--contrib/dbase/dbf.h2
-rw-r--r--contrib/dbase/dbf2pg.12
-rw-r--r--contrib/dbase/dbf2pg.c2
-rw-r--r--contrib/dbase/endian.c1
-rw-r--r--contrib/dblink/dblink.c1
-rw-r--r--contrib/dblink/dblink.h1
-rw-r--r--contrib/dblink/doc/connection1
-rw-r--r--contrib/dblink/doc/cursor1
-rw-r--r--contrib/dblink/doc/execute1
-rw-r--r--contrib/dblink/doc/misc1
-rw-r--r--contrib/earthdistance/earthdistance.c2
-rw-r--r--contrib/fulltextindex/fti.c2
-rw-r--r--contrib/fulltextindex/fti.pl2
-rw-r--r--contrib/fuzzystrmatch/dmetaphone.c6
-rw-r--r--contrib/fuzzystrmatch/fuzzystrmatch.c1
-rw-r--r--contrib/fuzzystrmatch/fuzzystrmatch.h1
-rw-r--r--contrib/intagg/int_aggregate.c2
-rwxr-xr-xcontrib/intarray/bench/create_test.pl2
-rw-r--r--contrib/ltree/crc32.c2
-rw-r--r--contrib/ltree/crc32.h2
-rw-r--r--contrib/ltree/lquery_op.c1
-rw-r--r--contrib/ltree/ltree.h2
-rw-r--r--contrib/ltree/ltree_gist.c1
-rw-r--r--contrib/ltree/ltree_io.c1
-rw-r--r--contrib/ltree/ltree_op.c1
-rw-r--r--contrib/ltree/ltxtquery_io.c1
-rw-r--r--contrib/ltree/ltxtquery_op.c1
-rw-r--r--contrib/mSQL-interface/mpgsql.c2
-rwxr-xr-xcontrib/mac/createoui3
-rwxr-xr-xcontrib/mac/dropoui2
-rw-r--r--contrib/oid2name/oid2name.c1
-rw-r--r--contrib/pgcrypto/crypt-blowfish.c2
-rw-r--r--contrib/pgcrypto/crypt-des.c2
-rw-r--r--contrib/pgcrypto/crypt-gensalt.c2
-rw-r--r--contrib/pgcrypto/misc.c2
-rw-r--r--contrib/spi/insert_username.c1
-rw-r--r--contrib/spi/moddatetime.c2
-rw-r--r--contrib/tsearch2/crc32.c2
-rw-r--r--contrib/tsearch2/crc32.h2
-rw-r--r--contrib/tsearch2/dict.c2
-rw-r--r--contrib/tsearch2/dict.h2
-rw-r--r--contrib/tsearch2/dict_ex.c2
-rw-r--r--contrib/tsearch2/dict_ispell.c2
-rw-r--r--contrib/tsearch2/dict_snowball.c2
-rw-r--r--contrib/tsearch2/dict_syn.c2
-rw-r--r--contrib/tsearch2/gendict/dict_snowball.c.IN2
-rw-r--r--contrib/tsearch2/gendict/dict_tmpl.c.IN2
-rw-r--r--contrib/tsearch2/gistidx.c2
-rw-r--r--contrib/tsearch2/gistidx.h2
-rw-r--r--contrib/tsearch2/snowball/english_stem.c1
-rw-r--r--contrib/tsearch2/snowball/english_stem.h1
-rw-r--r--contrib/tsearch2/snowball/header.h1
-rw-r--r--contrib/tsearch2/wordparser/deflex.c2
-rw-r--r--contrib/tsearch2/wordparser/deflex.h2
-rw-r--r--contrib/tsearch2/wordparser/parser.c2
-rw-r--r--contrib/tsearch2/wordparser/parser.h2
61 files changed, 104 insertions, 2 deletions
diff --git a/contrib/cube/cube.c b/contrib/cube/cube.c
index 0bc88ef6f1..c6df246d25 100644
--- a/contrib/cube/cube.c
+++ b/contrib/cube/cube.c
@@ -1,4 +1,6 @@
/******************************************************************************
+ $PostgreSQL: pgsql/contrib/cube/cube.c,v 1.24 2006/03/11 04:38:28 momjian Exp $
+
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
format for these routines is dictated by Postgres architecture.
diff --git a/contrib/cube/cubedata.h b/contrib/cube/cubedata.h
index 8eaea960f7..f4f2238aac 100644
--- a/contrib/cube/cubedata.h
+++ b/contrib/cube/cubedata.h
@@ -1,3 +1,5 @@
+/* $PostgreSQL: pgsql/contrib/cube/cubedata.h,v 1.7 2006/03/11 04:38:28 momjian Exp $ */
+
#define CUBE_MAX_DIM (100)
typedef struct NDBOX
{
diff --git a/contrib/cube/cubeparse.y b/contrib/cube/cubeparse.y
index 9756b508aa..1211f131ee 100644
--- a/contrib/cube/cubeparse.y
+++ b/contrib/cube/cubeparse.y
@@ -2,6 +2,8 @@
/* NdBox = [(lowerleft),(upperright)] */
/* [(xLL(1)...xLL(N)),(xUR(1)...xUR(n))] */
+/* $PostgreSQL: pgsql/contrib/cube/cubeparse.y,v 1.16 2006/03/11 04:38:28 momjian Exp $ */
+
#define YYPARSE_PARAM result /* need this to pass a pointer (void *) to yyparse */
#define YYSTYPE char *
#define YYDEBUG 1
diff --git a/contrib/cube/cubescan.l b/contrib/cube/cubescan.l
index 9d2b4ae18c..a96b9c541d 100644
--- a/contrib/cube/cubescan.l
+++ b/contrib/cube/cubescan.l
@@ -1,6 +1,7 @@
%{
/*
** A scanner for EMP-style numeric ranges
+ * $PostgreSQL: pgsql/contrib/cube/cubescan.l,v 1.11 2006/03/11 04:38:28 momjian Exp $
*/
#include "postgres.h"
diff --git a/contrib/dbase/dbf.c b/contrib/dbase/dbf.c
index 4c79a07d60..ba1c99bc4b 100644
--- a/contrib/dbase/dbf.c
+++ b/contrib/dbase/dbf.c
@@ -1,3 +1,5 @@
+/* $PostgreSQL: pgsql/contrib/dbase/dbf.c,v 1.10 2006/03/11 04:38:28 momjian Exp $ */
+
/* Routines to read and write xBase-files (.dbf)
By Maarten Boekhold, 29th of oktober 1995
diff --git a/contrib/dbase/dbf.h b/contrib/dbase/dbf.h
index d9c88ed35b..2e734b7107 100644
--- a/contrib/dbase/dbf.h
+++ b/contrib/dbase/dbf.h
@@ -1,3 +1,5 @@
+/* $PostgreSQL: pgsql/contrib/dbase/dbf.h,v 1.9 2006/03/11 04:38:28 momjian Exp $ */
+
/* header-file for dbf.c
declares routines for reading and writing xBase-files (.dbf), and
associated structures
diff --git a/contrib/dbase/dbf2pg.1 b/contrib/dbase/dbf2pg.1
index e62d3323b5..34b37b402a 100644
--- a/contrib/dbase/dbf2pg.1
+++ b/contrib/dbase/dbf2pg.1
@@ -1,3 +1,5 @@
+.\" $PostgreSQL: pgsql/contrib/dbase/dbf2pg.1,v 1.3 2006/03/11 04:38:28 momjian Exp $
+
.TH dbf2sql 1L \" -*- nroff -*-
.SH NAME
dbf2sql \- Insert xBase\-style .dbf\-files into a PostgreSQL\-table
diff --git a/contrib/dbase/dbf2pg.c b/contrib/dbase/dbf2pg.c
index 50948a6bf2..0fc0aedd8f 100644
--- a/contrib/dbase/dbf2pg.c
+++ b/contrib/dbase/dbf2pg.c
@@ -1,3 +1,5 @@
+/* $PostgreSQL: pgsql/contrib/dbase/dbf2pg.c,v 1.27 2006/03/11 04:38:28 momjian Exp $ */
+
/* This program reads in an xbase-dbf file and sends 'inserts' to an
PostgreSQL-server with the records in the xbase-file
diff --git a/contrib/dbase/endian.c b/contrib/dbase/endian.c
index f45d958e40..9f32f2ca2a 100644
--- a/contrib/dbase/endian.c
+++ b/contrib/dbase/endian.c
@@ -1,3 +1,4 @@
+/* $PostgreSQL: pgsql/contrib/dbase/endian.c,v 1.4 2006/03/11 04:38:28 momjian Exp $ */
/* Maarten Boekhold (maarten.boekhold@reuters.com) oktober 1995 */
#include <sys/types.h>
diff --git a/contrib/dblink/dblink.c b/contrib/dblink/dblink.c
index 22a3425ee7..42ffd6f3b6 100644
--- a/contrib/dblink/dblink.c
+++ b/contrib/dblink/dblink.c
@@ -8,6 +8,7 @@
* Darko Prenosil <Darko.Prenosil@finteh.hr>
* Shridhar Daithankar <shridhar_daithankar@persistent.co.in>
*
+ * $PostgreSQL: pgsql/contrib/dblink/dblink.c,v 1.54 2006/03/11 04:38:29 momjian Exp $
* Copyright (c) 2001-2006, PostgreSQL Global Development Group
* ALL RIGHTS RESERVED;
*
diff --git a/contrib/dblink/dblink.h b/contrib/dblink/dblink.h
index 8f2c9ff4c1..b0ab4f0245 100644
--- a/contrib/dblink/dblink.h
+++ b/contrib/dblink/dblink.h
@@ -8,6 +8,7 @@
* Darko Prenosil <Darko.Prenosil@finteh.hr>
* Shridhar Daithankar <shridhar_daithankar@persistent.co.in>
*
+ * $PostgreSQL: pgsql/contrib/dblink/dblink.h,v 1.15 2006/03/11 04:38:29 momjian Exp $
* Copyright (c) 2001-2006, PostgreSQL Global Development Group
* ALL RIGHTS RESERVED;
*
diff --git a/contrib/dblink/doc/connection b/contrib/dblink/doc/connection
index c3ce776fbc..28a93a9038 100644
--- a/contrib/dblink/doc/connection
+++ b/contrib/dblink/doc/connection
@@ -1,3 +1,4 @@
+$PostgreSQL: pgsql/contrib/dblink/doc/connection,v 1.4 2006/03/11 04:38:29 momjian Exp $
==================================================================
Name
diff --git a/contrib/dblink/doc/cursor b/contrib/dblink/doc/cursor
index 321c823e21..8745995828 100644
--- a/contrib/dblink/doc/cursor
+++ b/contrib/dblink/doc/cursor
@@ -1,3 +1,4 @@
+$PostgreSQL: pgsql/contrib/dblink/doc/cursor,v 1.6 2006/03/11 04:38:29 momjian Exp $
==================================================================
Name
diff --git a/contrib/dblink/doc/execute b/contrib/dblink/doc/execute
index d4c09b22de..021e01ef85 100644
--- a/contrib/dblink/doc/execute
+++ b/contrib/dblink/doc/execute
@@ -1,3 +1,4 @@
+$PostgreSQL: pgsql/contrib/dblink/doc/execute,v 1.4 2006/03/11 04:38:29 momjian Exp $
==================================================================
Name
diff --git a/contrib/dblink/doc/misc b/contrib/dblink/doc/misc
index 596c9ecdcf..ae79cf88ba 100644
--- a/contrib/dblink/doc/misc
+++ b/contrib/dblink/doc/misc
@@ -1,3 +1,4 @@
+$PostgreSQL: pgsql/contrib/dblink/doc/misc,v 1.3 2006/03/11 04:38:29 momjian Exp $
==================================================================
Name
diff --git a/contrib/earthdistance/earthdistance.c b/contrib/earthdistance/earthdistance.c
index f91eeb5392..d3032bde88 100644
--- a/contrib/earthdistance/earthdistance.c
+++ b/contrib/earthdistance/earthdistance.c
@@ -1,3 +1,5 @@
+/* $PostgreSQL: pgsql/contrib/earthdistance/earthdistance.c,v 1.10 2006/03/11 04:38:29 momjian Exp $ */
+
#include "postgres.h"
#include <math.h>
diff --git a/contrib/fulltextindex/fti.c b/contrib/fulltextindex/fti.c
index 9e120dc892..938e7748c5 100644
--- a/contrib/fulltextindex/fti.c
+++ b/contrib/fulltextindex/fti.c
@@ -8,6 +8,8 @@
/*
* Trigger function accepts variable number of arguments:
*
+ * $PostgreSQL: pgsql/contrib/fulltextindex/fti.c,v 1.26 2006/03/11 04:38:29 momjian Exp $
+ *
* 1. relation in which to store the substrings
* 2. fields to extract substrings from
*
diff --git a/contrib/fulltextindex/fti.pl b/contrib/fulltextindex/fti.pl
index 4feb51964f..958e3a3273 100644
--- a/contrib/fulltextindex/fti.pl
+++ b/contrib/fulltextindex/fti.pl
@@ -1,5 +1,7 @@
#!/usr/bin/perl
#
+# $PostgreSQL: pgsql/contrib/fulltextindex/fti.pl,v 1.9 2006/03/11 04:38:29 momjian Exp $
+#
# This script substracts all suffixes of all words in a specific column in a table
# and generates output that can be loaded into a new table with the
# psql '\copy' command. The new table should have the following structure:
diff --git a/contrib/fuzzystrmatch/dmetaphone.c b/contrib/fuzzystrmatch/dmetaphone.c
index 216f39b7a7..3fe247e922 100644
--- a/contrib/fuzzystrmatch/dmetaphone.c
+++ b/contrib/fuzzystrmatch/dmetaphone.c
@@ -1,6 +1,8 @@
/*
* This is a port of the Double Metaphone algorithm for use in PostgreSQL.
*
+ * $PostgreSQL: pgsql/contrib/fuzzystrmatch/dmetaphone.c,v 1.7 2006/03/11 04:38:29 momjian Exp $
+ *
* Double Metaphone computes 2 "sounds like" strings - a primary and an
* alternate. In most cases they are the same, but for foreign names
* especially they can be a bit different, depending on pronunciation.
@@ -48,8 +50,8 @@
/*
- * $Revision: 1.6 $
- * $Id: dmetaphone.c,v 1.6 2005/10/15 02:49:05 momjian Exp $
+ * $Revision: 1.7 $
+ * $Id: dmetaphone.c,v 1.7 2006/03/11 04:38:29 momjian Exp $
*/
diff --git a/contrib/fuzzystrmatch/fuzzystrmatch.c b/contrib/fuzzystrmatch/fuzzystrmatch.c
index 140e52fa5f..64b6c41b42 100644
--- a/contrib/fuzzystrmatch/fuzzystrmatch.c
+++ b/contrib/fuzzystrmatch/fuzzystrmatch.c
@@ -5,6 +5,7 @@
*
* Joe Conway <mail@joeconway.com>
*
+ * $PostgreSQL: pgsql/contrib/fuzzystrmatch/fuzzystrmatch.c,v 1.19 2006/03/11 04:38:29 momjian Exp $
* Copyright (c) 2001-2006, PostgreSQL Global Development Group
* ALL RIGHTS RESERVED;
*
diff --git a/contrib/fuzzystrmatch/fuzzystrmatch.h b/contrib/fuzzystrmatch/fuzzystrmatch.h
index 40552ba871..42f7f1fa30 100644
--- a/contrib/fuzzystrmatch/fuzzystrmatch.h
+++ b/contrib/fuzzystrmatch/fuzzystrmatch.h
@@ -5,6 +5,7 @@
*
* Joe Conway <mail@joeconway.com>
*
+ * $PostgreSQL: pgsql/contrib/fuzzystrmatch/fuzzystrmatch.h,v 1.13 2006/03/11 04:38:29 momjian Exp $
* Copyright (c) 2001-2006, PostgreSQL Global Development Group
* ALL RIGHTS RESERVED;
*
diff --git a/contrib/intagg/int_aggregate.c b/contrib/intagg/int_aggregate.c
index afe5dd526f..d081278634 100644
--- a/contrib/intagg/int_aggregate.c
+++ b/contrib/intagg/int_aggregate.c
@@ -5,6 +5,8 @@
* DMN Digital Music Network.
* www.dmn.com
*
+ * $PostgreSQL: pgsql/contrib/intagg/int_aggregate.c,v 1.23 2006/03/11 04:38:29 momjian Exp $
+ *
* Copyright (C) Digital Music Network
* December 20, 2001
*
diff --git a/contrib/intarray/bench/create_test.pl b/contrib/intarray/bench/create_test.pl
index b39d1fb473..01671bf5a2 100755
--- a/contrib/intarray/bench/create_test.pl
+++ b/contrib/intarray/bench/create_test.pl
@@ -1,5 +1,7 @@
#!/usr/bin/perl
+# $PostgreSQL: pgsql/contrib/intarray/bench/create_test.pl,v 1.4 2006/03/11 04:38:29 momjian Exp $
+
use strict;
print <<EOT;
create table message (
diff --git a/contrib/ltree/crc32.c b/contrib/ltree/crc32.c
index c82b3a644c..c114540181 100644
--- a/contrib/ltree/crc32.c
+++ b/contrib/ltree/crc32.c
@@ -1,5 +1,7 @@
/* Both POSIX and CRC32 checksums */
+/* $PostgreSQL: pgsql/contrib/ltree/crc32.c,v 1.6 2006/03/11 04:38:29 momjian Exp $ */
+
#include <sys/types.h>
#include <stdio.h>
#include <sys/types.h>
diff --git a/contrib/ltree/crc32.h b/contrib/ltree/crc32.h
index f70722c1c5..69d9eee3e1 100644
--- a/contrib/ltree/crc32.h
+++ b/contrib/ltree/crc32.h
@@ -1,6 +1,8 @@
#ifndef _CRC32_H
#define _CRC32_H
+/* $PostgreSQL: pgsql/contrib/ltree/crc32.h,v 1.3 2006/03/11 04:38:29 momjian Exp $ */
+
/* 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 9d43b6444d..07269ceaee 100644
--- a/contrib/ltree/lquery_op.c
+++ b/contrib/ltree/lquery_op.c
@@ -1,6 +1,7 @@
/*
* op function for ltree and lquery
* Teodor Sigaev <teodor@stack.net>
+ * $PostgreSQL: pgsql/contrib/ltree/lquery_op.c,v 1.10 2006/03/11 04:38:29 momjian Exp $
*/
#include "ltree.h"
diff --git a/contrib/ltree/ltree.h b/contrib/ltree/ltree.h
index 3281afefa1..3cd67794b9 100644
--- a/contrib/ltree/ltree.h
+++ b/contrib/ltree/ltree.h
@@ -1,3 +1,5 @@
+/* $PostgreSQL: pgsql/contrib/ltree/ltree.h,v 1.15 2006/03/11 04:38:29 momjian Exp $ */
+
#ifndef __LTREE_H__
#define __LTREE_H__
diff --git a/contrib/ltree/ltree_gist.c b/contrib/ltree/ltree_gist.c
index 5447677e02..e210117cbc 100644
--- a/contrib/ltree/ltree_gist.c
+++ b/contrib/ltree/ltree_gist.c
@@ -1,6 +1,7 @@
/*
* GiST support for ltree
* Teodor Sigaev <teodor@stack.net>
+ * $PostgreSQL: pgsql/contrib/ltree/ltree_gist.c,v 1.14 2006/03/11 04:38:29 momjian Exp $
*/
#include "ltree.h"
diff --git a/contrib/ltree/ltree_io.c b/contrib/ltree/ltree_io.c
index a44a5a71dd..c147887703 100644
--- a/contrib/ltree/ltree_io.c
+++ b/contrib/ltree/ltree_io.c
@@ -1,6 +1,7 @@
/*
* in/out function for ltree and lquery
* Teodor Sigaev <teodor@stack.net>
+ * $PostgreSQL: pgsql/contrib/ltree/ltree_io.c,v 1.12 2006/03/11 04:38:29 momjian Exp $
*/
#include "ltree.h"
diff --git a/contrib/ltree/ltree_op.c b/contrib/ltree/ltree_op.c
index f10f7df412..ec2d0fbf5d 100644
--- a/contrib/ltree/ltree_op.c
+++ b/contrib/ltree/ltree_op.c
@@ -1,6 +1,7 @@
/*
* op function for ltree
* Teodor Sigaev <teodor@stack.net>
+ * $PostgreSQL: pgsql/contrib/ltree/ltree_op.c,v 1.9 2006/03/11 04:38:29 momjian Exp $
*/
#include "ltree.h"
diff --git a/contrib/ltree/ltxtquery_io.c b/contrib/ltree/ltxtquery_io.c
index 1a7117c15f..1142bb3fe3 100644
--- a/contrib/ltree/ltxtquery_io.c
+++ b/contrib/ltree/ltxtquery_io.c
@@ -1,6 +1,7 @@
/*
* txtquery io
* Teodor Sigaev <teodor@stack.net>
+ * $PostgreSQL: pgsql/contrib/ltree/ltxtquery_io.c,v 1.11 2006/03/11 04:38:29 momjian Exp $
*/
#include "ltree.h"
diff --git a/contrib/ltree/ltxtquery_op.c b/contrib/ltree/ltxtquery_op.c
index 34e711eaca..07ebc201c7 100644
--- a/contrib/ltree/ltxtquery_op.c
+++ b/contrib/ltree/ltxtquery_op.c
@@ -1,6 +1,7 @@
/*
* txtquery operations with ltree
* Teodor Sigaev <teodor@stack.net>
+ * $PostgreSQL: pgsql/contrib/ltree/ltxtquery_op.c,v 1.6 2006/03/11 04:38:29 momjian Exp $
*/
#include "ltree.h"
diff --git a/contrib/mSQL-interface/mpgsql.c b/contrib/mSQL-interface/mpgsql.c
index 1f43f61ea1..b93089c9db 100644
--- a/contrib/mSQL-interface/mpgsql.c
+++ b/contrib/mSQL-interface/mpgsql.c
@@ -1,3 +1,5 @@
+/* $PostgreSQL: pgsql/contrib/mSQL-interface/mpgsql.c,v 1.8 2006/03/11 04:38:29 momjian Exp $ */
+
#include <time.h>
#include <string.h>
#include <stdlib.h>
diff --git a/contrib/mac/createoui b/contrib/mac/createoui
index ec1edcfa17..eaf4dbfac0 100755
--- a/contrib/mac/createoui
+++ b/contrib/mac/createoui
@@ -1,4 +1,7 @@
#! /bin/sh
+
+# $PostgreSQL: pgsql/contrib/mac/createoui,v 1.3 2006/03/11 04:38:30 momjian Exp $
+
# Utility to create manufacturer's oui table
# OUI is "Organizationally Unique Identifier" assigned by IEEE.
# There are currently three duplicate listings, so we can not enforce
diff --git a/contrib/mac/dropoui b/contrib/mac/dropoui
index 6fffdc92d6..b06d9cc4e6 100755
--- a/contrib/mac/dropoui
+++ b/contrib/mac/dropoui
@@ -1,5 +1,7 @@
#! /bin/sh
# Utility to remove manufacturer's oui table
+# $PostgreSQL: pgsql/contrib/mac/dropoui,v 1.2 2006/03/11 04:38:30 momjian Exp $
+
args=
diff --git a/contrib/oid2name/oid2name.c b/contrib/oid2name/oid2name.c
index 069c1708d6..98d106701e 100644
--- a/contrib/oid2name/oid2name.c
+++ b/contrib/oid2name/oid2name.c
@@ -4,6 +4,7 @@
*
* Originally by
* B. Palmer, bpalmer@crimelabs.net 1-17-2001
+ * $PostgreSQL: pgsql/contrib/oid2name/oid2name.c,v 1.29 2006/03/11 04:38:30 momjian Exp $
*/
#include "postgres_fe.h"
diff --git a/contrib/pgcrypto/crypt-blowfish.c b/contrib/pgcrypto/crypt-blowfish.c
index 42a694b62f..f8bd00e2da 100644
--- a/contrib/pgcrypto/crypt-blowfish.c
+++ b/contrib/pgcrypto/crypt-blowfish.c
@@ -1,4 +1,6 @@
/*
+ * $PostgreSQL: pgsql/contrib/pgcrypto/crypt-blowfish.c,v 1.11 2006/03/11 04:38:30 momjian Exp $
+ *
* This code comes from John the Ripper password cracker, with reentrant
* and crypt(3) interfaces added, but optimizations specific to password
* cracking removed.
diff --git a/contrib/pgcrypto/crypt-des.c b/contrib/pgcrypto/crypt-des.c
index 6ed7188f4a..e5cdc370e9 100644
--- a/contrib/pgcrypto/crypt-des.c
+++ b/contrib/pgcrypto/crypt-des.c
@@ -1,6 +1,8 @@
/*
* FreeSec: libcrypt for NetBSD
*
+ * $PostgreSQL: pgsql/contrib/pgcrypto/crypt-des.c,v 1.14 2006/03/11 04:38:30 momjian Exp $
+ *
* Copyright (c) 1994 David Burren
* All rights reserved.
*
diff --git a/contrib/pgcrypto/crypt-gensalt.c b/contrib/pgcrypto/crypt-gensalt.c
index 01775ee7b7..c7d8511061 100644
--- a/contrib/pgcrypto/crypt-gensalt.c
+++ b/contrib/pgcrypto/crypt-gensalt.c
@@ -2,6 +2,8 @@
* 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.8 2006/03/11 04:38:30 momjian Exp $
+ *
* This file contains salt generation functions for the traditional and
* other common crypt(3) algorithms, except for bcrypt which is defined
* entirely in crypt_blowfish.c.
diff --git a/contrib/pgcrypto/misc.c b/contrib/pgcrypto/misc.c
index 5c803c0d5b..b53a70a509 100644
--- a/contrib/pgcrypto/misc.c
+++ b/contrib/pgcrypto/misc.c
@@ -2,6 +2,8 @@
* Copyright (c) 1999
* University of California. All rights reserved.
*
+ * $PostgreSQL: pgsql/contrib/pgcrypto/misc.c,v 1.3 2006/03/11 04:38:30 momjian Exp $
+ *
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
diff --git a/contrib/spi/insert_username.c b/contrib/spi/insert_username.c
index ce8c21f9be..06de9632bd 100644
--- a/contrib/spi/insert_username.c
+++ b/contrib/spi/insert_username.c
@@ -1,6 +1,7 @@
/*
* insert_username.c
* $Modified: Thu Oct 16 08:13:42 1997 by brook $
+ * $PostgreSQL: pgsql/contrib/spi/insert_username.c,v 1.13 2006/03/11 04:38:30 momjian Exp $
*
* insert user name in response to a trigger
* usage: insert_username (column_name)
diff --git a/contrib/spi/moddatetime.c b/contrib/spi/moddatetime.c
index 14556a8514..43ad810793 100644
--- a/contrib/spi/moddatetime.c
+++ b/contrib/spi/moddatetime.c
@@ -1,6 +1,8 @@
/*
moddatetime.c
+$PostgreSQL: pgsql/contrib/spi/moddatetime.c,v 1.12 2006/03/11 04:38:30 momjian Exp $
+
What is this?
It is a function to be called from a trigger for the purpose of updating
a modification datetime stamp in a record when that record is UPDATEd.
diff --git a/contrib/tsearch2/crc32.c b/contrib/tsearch2/crc32.c
index c314019b7f..2bccacc104 100644
--- a/contrib/tsearch2/crc32.c
+++ b/contrib/tsearch2/crc32.c
@@ -1,5 +1,7 @@
/* Both POSIX and CRC32 checksums */
+/* $PostgreSQL: pgsql/contrib/tsearch2/crc32.c,v 1.3 2006/03/11 04:38:30 momjian Exp $ */
+
#include <sys/types.h>
#include <stdio.h>
#include <sys/types.h>
diff --git a/contrib/tsearch2/crc32.h b/contrib/tsearch2/crc32.h
index 97254a4a90..420c9594ac 100644
--- a/contrib/tsearch2/crc32.h
+++ b/contrib/tsearch2/crc32.h
@@ -1,6 +1,8 @@
#ifndef _CRC32_H
#define _CRC32_H
+/* $PostgreSQL: pgsql/contrib/tsearch2/crc32.h,v 1.2 2006/03/11 04:38:30 momjian Exp $ */
+
/* Returns crc32 of data block */
extern unsigned int crc32_sz(char *buf, int size);
diff --git a/contrib/tsearch2/dict.c b/contrib/tsearch2/dict.c
index f221d174ef..9d912353e9 100644
--- a/contrib/tsearch2/dict.c
+++ b/contrib/tsearch2/dict.c
@@ -1,3 +1,5 @@
+/* $PostgreSQL: pgsql/contrib/tsearch2/dict.c,v 1.11 2006/03/11 04:38:30 momjian Exp $ */
+
/*
* interface functions to dictionary
* Teodor Sigaev <teodor@sigaev.ru>
diff --git a/contrib/tsearch2/dict.h b/contrib/tsearch2/dict.h
index 8aef0b0cb7..7a6153c453 100644
--- a/contrib/tsearch2/dict.h
+++ b/contrib/tsearch2/dict.h
@@ -1,3 +1,5 @@
+/* $PostgreSQL: pgsql/contrib/tsearch2/dict.h,v 1.6 2006/03/11 04:38:30 momjian Exp $ */
+
#ifndef __DICT_H__
#define __DICT_H__
#include "postgres.h"
diff --git a/contrib/tsearch2/dict_ex.c b/contrib/tsearch2/dict_ex.c
index 334bb5248d..ccb7f3fcbe 100644
--- a/contrib/tsearch2/dict_ex.c
+++ b/contrib/tsearch2/dict_ex.c
@@ -1,3 +1,5 @@
+/* $PostgreSQL: pgsql/contrib/tsearch2/dict_ex.c,v 1.8 2006/03/11 04:38:30 momjian Exp $ */
+
/*
* example of dictionary
* Teodor Sigaev <teodor@sigaev.ru>
diff --git a/contrib/tsearch2/dict_ispell.c b/contrib/tsearch2/dict_ispell.c
index 0e887da584..301b19d592 100644
--- a/contrib/tsearch2/dict_ispell.c
+++ b/contrib/tsearch2/dict_ispell.c
@@ -1,3 +1,5 @@
+/* $PostgreSQL: pgsql/contrib/tsearch2/dict_ispell.c,v 1.10 2006/03/11 04:38:30 momjian Exp $ */
+
/*
* ISpell interface
* Teodor Sigaev <teodor@sigaev.ru>
diff --git a/contrib/tsearch2/dict_snowball.c b/contrib/tsearch2/dict_snowball.c
index 92e25b6e2e..bab941598f 100644
--- a/contrib/tsearch2/dict_snowball.c
+++ b/contrib/tsearch2/dict_snowball.c
@@ -1,3 +1,5 @@
+/* $PostgreSQL: pgsql/contrib/tsearch2/dict_snowball.c,v 1.11 2006/03/11 04:38:30 momjian Exp $ */
+
/*
* example of Snowball dictionary
* http://snowball.tartarus.org/
diff --git a/contrib/tsearch2/dict_syn.c b/contrib/tsearch2/dict_syn.c
index b0c50334ea..d19686d63e 100644
--- a/contrib/tsearch2/dict_syn.c
+++ b/contrib/tsearch2/dict_syn.c
@@ -1,3 +1,5 @@
+/* $PostgreSQL: pgsql/contrib/tsearch2/dict_syn.c,v 1.9 2006/03/11 04:38:30 momjian Exp $ */
+
/*
* ISpell interface
* Teodor Sigaev <teodor@sigaev.ru>
diff --git a/contrib/tsearch2/gendict/dict_snowball.c.IN b/contrib/tsearch2/gendict/dict_snowball.c.IN
index 818fd6b157..6a0fce9a3e 100644
--- a/contrib/tsearch2/gendict/dict_snowball.c.IN
+++ b/contrib/tsearch2/gendict/dict_snowball.c.IN
@@ -1,3 +1,5 @@
+/* $PostgreSQL: pgsql/contrib/tsearch2/gendict/dict_snowball.c.IN,v 1.4 2006/03/11 04:38:30 momjian Exp $ */
+
/*
* example of Snowball dictionary
* http://snowball.tartarus.org/
diff --git a/contrib/tsearch2/gendict/dict_tmpl.c.IN b/contrib/tsearch2/gendict/dict_tmpl.c.IN
index 9d90df712b..694b7363e0 100644
--- a/contrib/tsearch2/gendict/dict_tmpl.c.IN
+++ b/contrib/tsearch2/gendict/dict_tmpl.c.IN
@@ -1,3 +1,5 @@
+/* $PostgreSQL: pgsql/contrib/tsearch2/gendict/dict_tmpl.c.IN,v 1.5 2006/03/11 04:38:30 momjian Exp $ */
+
/*
* example of dictionary
* Teodor Sigaev <teodor@sigaev.ru>
diff --git a/contrib/tsearch2/gistidx.c b/contrib/tsearch2/gistidx.c
index 6aabae2777..7cc370bf84 100644
--- a/contrib/tsearch2/gistidx.c
+++ b/contrib/tsearch2/gistidx.c
@@ -1,3 +1,5 @@
+/* $PostgreSQL: pgsql/contrib/tsearch2/gistidx.c,v 1.13 2006/03/11 04:38:30 momjian Exp $ */
+
#include "postgres.h"
#include <float.h>
diff --git a/contrib/tsearch2/gistidx.h b/contrib/tsearch2/gistidx.h
index 142318b8c8..9545946e31 100644
--- a/contrib/tsearch2/gistidx.h
+++ b/contrib/tsearch2/gistidx.h
@@ -1,3 +1,5 @@
+/* $PostgreSQL: pgsql/contrib/tsearch2/gistidx.h,v 1.7 2006/03/11 04:38:30 momjian Exp $ */
+
#ifndef __GISTIDX_H__
#define __GISTIDX_H__
diff --git a/contrib/tsearch2/snowball/english_stem.c b/contrib/tsearch2/snowball/english_stem.c
index ccb3d12988..9f6f65491c 100644
--- a/contrib/tsearch2/snowball/english_stem.c
+++ b/contrib/tsearch2/snowball/english_stem.c
@@ -1,3 +1,4 @@
+/* $PostgreSQL: pgsql/contrib/tsearch2/snowball/english_stem.c,v 1.8 2006/03/11 04:38:30 momjian Exp $ */
/* This file was generated automatically by the Snowball to ANSI C compiler */
diff --git a/contrib/tsearch2/snowball/english_stem.h b/contrib/tsearch2/snowball/english_stem.h
index c889c7bfa9..6918a73dd7 100644
--- a/contrib/tsearch2/snowball/english_stem.h
+++ b/contrib/tsearch2/snowball/english_stem.h
@@ -1,3 +1,4 @@
+/* $PostgreSQL: pgsql/contrib/tsearch2/snowball/english_stem.h,v 1.6 2006/03/11 04:38:30 momjian Exp $ */
/* This file was generated automatically by the Snowball to ANSI C compiler */
diff --git a/contrib/tsearch2/snowball/header.h b/contrib/tsearch2/snowball/header.h
index 3889ede53e..7939fbb8fa 100644
--- a/contrib/tsearch2/snowball/header.h
+++ b/contrib/tsearch2/snowball/header.h
@@ -1,3 +1,4 @@
+/* $PostgreSQL: pgsql/contrib/tsearch2/snowball/header.h,v 1.7 2006/03/11 04:38:30 momjian Exp $ */
#include <limits.h>
diff --git a/contrib/tsearch2/wordparser/deflex.c b/contrib/tsearch2/wordparser/deflex.c
index 8f93d277a1..004069f48e 100644
--- a/contrib/tsearch2/wordparser/deflex.c
+++ b/contrib/tsearch2/wordparser/deflex.c
@@ -1,3 +1,5 @@
+/* $PostgreSQL: pgsql/contrib/tsearch2/wordparser/deflex.c,v 1.4 2006/03/11 04:38:30 momjian Exp $ */
+
#include "deflex.h"
const char *lex_descr[] = {
diff --git a/contrib/tsearch2/wordparser/deflex.h b/contrib/tsearch2/wordparser/deflex.h
index 893f843051..72852e4485 100644
--- a/contrib/tsearch2/wordparser/deflex.h
+++ b/contrib/tsearch2/wordparser/deflex.h
@@ -1,3 +1,5 @@
+/* $PostgreSQL: pgsql/contrib/tsearch2/wordparser/deflex.h,v 1.3 2006/03/11 04:38:30 momjian Exp $ */
+
#ifndef __DEFLEX_H__
#define __DEFLEX_H__
diff --git a/contrib/tsearch2/wordparser/parser.c b/contrib/tsearch2/wordparser/parser.c
index 8a5fcdabe6..2efb493752 100644
--- a/contrib/tsearch2/wordparser/parser.c
+++ b/contrib/tsearch2/wordparser/parser.c
@@ -1,3 +1,5 @@
+/* $PostgreSQL: pgsql/contrib/tsearch2/wordparser/parser.c,v 1.10 2006/03/11 04:38:30 momjian Exp $ */
+
#include "postgres.h"
#include "utils/builtins.h"
diff --git a/contrib/tsearch2/wordparser/parser.h b/contrib/tsearch2/wordparser/parser.h
index baeabf72cd..c40717a80f 100644
--- a/contrib/tsearch2/wordparser/parser.h
+++ b/contrib/tsearch2/wordparser/parser.h
@@ -1,3 +1,5 @@
+/* $PostgreSQL: pgsql/contrib/tsearch2/wordparser/parser.h,v 1.11 2006/03/11 04:38:30 momjian Exp $ */
+
#ifndef __PARSER_H__
#define __PARSER_H__