Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Skip to content

Commit f3d99d1

Browse files
committed
Add CVS tag lines to files that were lacking them.
1 parent 7992d0f commit f3d99d1

File tree

195 files changed

+375
-13
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

195 files changed

+375
-13
lines changed

config/install-sh

+2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
#!/bin/sh
22
# install - install a program, script, or datafile
33

4+
# $PostgreSQL: pgsql/config/install-sh,v 1.4 2006/03/11 04:38:28 momjian Exp $
5+
46
scriptversion=2005-02-02.21
57

68
# This originates from X11R5 (mit/util/scripts/install.sh), which was

config/missing

+2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
#! /bin/sh
22

3+
# $PostgreSQL: pgsql/config/missing,v 1.4 2006/03/11 04:38:28 momjian Exp $
4+
35
# This is *not* the GNU `missing' script, although it is similar in
46
# concept. You can call it from the makefiles to get consistent
57
# behavior when certain utility programs are missing.

config/mkinstalldirs

+2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
#! /bin/sh
22
# mkinstalldirs --- make directory hierarchy
33

4+
# $PostgreSQL: pgsql/config/mkinstalldirs,v 1.5 2006/03/11 04:38:28 momjian Exp $
5+
46
scriptversion=2005-02-02.21
57

68
# Original author: Noah Friedman <friedman@prep.ai.mit.edu>

contrib/cube/cube.c

+2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
11
/******************************************************************************
2+
$PostgreSQL: pgsql/contrib/cube/cube.c,v 1.24 2006/03/11 04:38:28 momjian Exp $
3+
24
This file contains routines that can be bound to a Postgres backend and
35
called by the backend in the process of processing queries. The calling
46
format for these routines is dictated by Postgres architecture.

contrib/cube/cubedata.h

+2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
/* $PostgreSQL: pgsql/contrib/cube/cubedata.h,v 1.7 2006/03/11 04:38:28 momjian Exp $ */
2+
13
#define CUBE_MAX_DIM (100)
24
typedef struct NDBOX
35
{

contrib/cube/cubeparse.y

+2
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22
/* NdBox = [(lowerleft),(upperright)] */
33
/* [(xLL(1)...xLL(N)),(xUR(1)...xUR(n))] */
44

5+
/* $PostgreSQL: pgsql/contrib/cube/cubeparse.y,v 1.16 2006/03/11 04:38:28 momjian Exp $ */
6+
57
#define YYPARSE_PARAM result /* need this to pass a pointer (void *) to yyparse */
68
#define YYSTYPE char *
79
#define YYDEBUG 1

contrib/cube/cubescan.l

+1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
%{
22
/*
33
** A scanner for EMP-style numeric ranges
4+
* $PostgreSQL: pgsql/contrib/cube/cubescan.l,v 1.11 2006/03/11 04:38:28 momjian Exp $
45
*/
56

67
#include "postgres.h"

contrib/dbase/dbf.c

+2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
/* $PostgreSQL: pgsql/contrib/dbase/dbf.c,v 1.10 2006/03/11 04:38:28 momjian Exp $ */
2+
13
/* Routines to read and write xBase-files (.dbf)
24
35
By Maarten Boekhold, 29th of oktober 1995

contrib/dbase/dbf.h

+2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
/* $PostgreSQL: pgsql/contrib/dbase/dbf.h,v 1.9 2006/03/11 04:38:28 momjian Exp $ */
2+
13
/* header-file for dbf.c
24
declares routines for reading and writing xBase-files (.dbf), and
35
associated structures

contrib/dbase/dbf2pg.1

+2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
.\" $PostgreSQL: pgsql/contrib/dbase/dbf2pg.1,v 1.3 2006/03/11 04:38:28 momjian Exp $
2+
13
.TH dbf2sql 1L \" -*- nroff -*-
24
.SH NAME
35
dbf2sql \- Insert xBase\-style .dbf\-files into a PostgreSQL\-table

contrib/dbase/dbf2pg.c

+2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
/* $PostgreSQL: pgsql/contrib/dbase/dbf2pg.c,v 1.27 2006/03/11 04:38:28 momjian Exp $ */
2+
13
/* This program reads in an xbase-dbf file and sends 'inserts' to an
24
PostgreSQL-server with the records in the xbase-file
35

contrib/dbase/endian.c

+1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
/* $PostgreSQL: pgsql/contrib/dbase/endian.c,v 1.4 2006/03/11 04:38:28 momjian Exp $ */
12
/* Maarten Boekhold (maarten.boekhold@reuters.com) oktober 1995 */
23

34
#include <sys/types.h>

contrib/dblink/dblink.c

+1
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@
88
* Darko Prenosil <Darko.Prenosil@finteh.hr>
99
* Shridhar Daithankar <shridhar_daithankar@persistent.co.in>
1010
*
11+
* $PostgreSQL: pgsql/contrib/dblink/dblink.c,v 1.54 2006/03/11 04:38:29 momjian Exp $
1112
* Copyright (c) 2001-2006, PostgreSQL Global Development Group
1213
* ALL RIGHTS RESERVED;
1314
*

contrib/dblink/dblink.h

+1
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@
88
* Darko Prenosil <Darko.Prenosil@finteh.hr>
99
* Shridhar Daithankar <shridhar_daithankar@persistent.co.in>
1010
*
11+
* $PostgreSQL: pgsql/contrib/dblink/dblink.h,v 1.15 2006/03/11 04:38:29 momjian Exp $
1112
* Copyright (c) 2001-2006, PostgreSQL Global Development Group
1213
* ALL RIGHTS RESERVED;
1314
*

contrib/dblink/doc/connection

+1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
$PostgreSQL: pgsql/contrib/dblink/doc/connection,v 1.4 2006/03/11 04:38:29 momjian Exp $
12
==================================================================
23
Name
34

contrib/dblink/doc/cursor

+1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
$PostgreSQL: pgsql/contrib/dblink/doc/cursor,v 1.6 2006/03/11 04:38:29 momjian Exp $
12
==================================================================
23
Name
34

contrib/dblink/doc/execute

+1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
$PostgreSQL: pgsql/contrib/dblink/doc/execute,v 1.4 2006/03/11 04:38:29 momjian Exp $
12
==================================================================
23
Name
34

contrib/dblink/doc/misc

+1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
$PostgreSQL: pgsql/contrib/dblink/doc/misc,v 1.3 2006/03/11 04:38:29 momjian Exp $
12
==================================================================
23
Name
34

contrib/earthdistance/earthdistance.c

+2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
/* $PostgreSQL: pgsql/contrib/earthdistance/earthdistance.c,v 1.10 2006/03/11 04:38:29 momjian Exp $ */
2+
13
#include "postgres.h"
24

35
#include <math.h>

contrib/fulltextindex/fti.c

+2
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,8 @@
88
/*
99
* Trigger function accepts variable number of arguments:
1010
*
11+
* $PostgreSQL: pgsql/contrib/fulltextindex/fti.c,v 1.26 2006/03/11 04:38:29 momjian Exp $
12+
*
1113
* 1. relation in which to store the substrings
1214
* 2. fields to extract substrings from
1315
*

contrib/fulltextindex/fti.pl

+2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
#!/usr/bin/perl
22
#
3+
# $PostgreSQL: pgsql/contrib/fulltextindex/fti.pl,v 1.9 2006/03/11 04:38:29 momjian Exp $
4+
#
35
# This script substracts all suffixes of all words in a specific column in a table
46
# and generates output that can be loaded into a new table with the
57
# psql '\copy' command. The new table should have the following structure:

contrib/fuzzystrmatch/dmetaphone.c

+4-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
/*
22
* This is a port of the Double Metaphone algorithm for use in PostgreSQL.
33
*
4+
* $PostgreSQL: pgsql/contrib/fuzzystrmatch/dmetaphone.c,v 1.7 2006/03/11 04:38:29 momjian Exp $
5+
*
46
* Double Metaphone computes 2 "sounds like" strings - a primary and an
57
* alternate. In most cases they are the same, but for foreign names
68
* especially they can be a bit different, depending on pronunciation.
@@ -48,8 +50,8 @@
4850

4951

5052
/*
51-
* $Revision: 1.6 $
52-
* $Id: dmetaphone.c,v 1.6 2005/10/15 02:49:05 momjian Exp $
53+
* $Revision: 1.7 $
54+
* $Id: dmetaphone.c,v 1.7 2006/03/11 04:38:29 momjian Exp $
5355
*/
5456

5557

contrib/fuzzystrmatch/fuzzystrmatch.c

+1
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
*
66
* Joe Conway <mail@joeconway.com>
77
*
8+
* $PostgreSQL: pgsql/contrib/fuzzystrmatch/fuzzystrmatch.c,v 1.19 2006/03/11 04:38:29 momjian Exp $
89
* Copyright (c) 2001-2006, PostgreSQL Global Development Group
910
* ALL RIGHTS RESERVED;
1011
*

contrib/fuzzystrmatch/fuzzystrmatch.h

+1
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
*
66
* Joe Conway <mail@joeconway.com>
77
*
8+
* $PostgreSQL: pgsql/contrib/fuzzystrmatch/fuzzystrmatch.h,v 1.13 2006/03/11 04:38:29 momjian Exp $
89
* Copyright (c) 2001-2006, PostgreSQL Global Development Group
910
* ALL RIGHTS RESERVED;
1011
*

contrib/intagg/int_aggregate.c

+2
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,8 @@
55
* DMN Digital Music Network.
66
* www.dmn.com
77
*
8+
* $PostgreSQL: pgsql/contrib/intagg/int_aggregate.c,v 1.23 2006/03/11 04:38:29 momjian Exp $
9+
*
810
* Copyright (C) Digital Music Network
911
* December 20, 2001
1012
*

contrib/intarray/bench/create_test.pl

+2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
#!/usr/bin/perl
22

3+
# $PostgreSQL: pgsql/contrib/intarray/bench/create_test.pl,v 1.4 2006/03/11 04:38:29 momjian Exp $
4+
35
use strict;
46
print <<EOT;
57
create table message (

contrib/ltree/crc32.c

+2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
/* Both POSIX and CRC32 checksums */
22

3+
/* $PostgreSQL: pgsql/contrib/ltree/crc32.c,v 1.6 2006/03/11 04:38:29 momjian Exp $ */
4+
35
#include <sys/types.h>
46
#include <stdio.h>
57
#include <sys/types.h>

contrib/ltree/crc32.h

+2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
#ifndef _CRC32_H
22
#define _CRC32_H
33

4+
/* $PostgreSQL: pgsql/contrib/ltree/crc32.h,v 1.3 2006/03/11 04:38:29 momjian Exp $ */
5+
46
/* Returns crc32 of data block */
57
extern unsigned int ltree_crc32_sz(char *buf, int size);
68

contrib/ltree/lquery_op.c

+1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
/*
22
* op function for ltree and lquery
33
* Teodor Sigaev <teodor@stack.net>
4+
* $PostgreSQL: pgsql/contrib/ltree/lquery_op.c,v 1.10 2006/03/11 04:38:29 momjian Exp $
45
*/
56

67
#include "ltree.h"

contrib/ltree/ltree.h

+2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
/* $PostgreSQL: pgsql/contrib/ltree/ltree.h,v 1.15 2006/03/11 04:38:29 momjian Exp $ */
2+
13
#ifndef __LTREE_H__
24
#define __LTREE_H__
35

contrib/ltree/ltree_gist.c

+1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
/*
22
* GiST support for ltree
33
* Teodor Sigaev <teodor@stack.net>
4+
* $PostgreSQL: pgsql/contrib/ltree/ltree_gist.c,v 1.14 2006/03/11 04:38:29 momjian Exp $
45
*/
56

67
#include "ltree.h"

contrib/ltree/ltree_io.c

+1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
/*
22
* in/out function for ltree and lquery
33
* Teodor Sigaev <teodor@stack.net>
4+
* $PostgreSQL: pgsql/contrib/ltree/ltree_io.c,v 1.12 2006/03/11 04:38:29 momjian Exp $
45
*/
56

67
#include "ltree.h"

contrib/ltree/ltree_op.c

+1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
/*
22
* op function for ltree
33
* Teodor Sigaev <teodor@stack.net>
4+
* $PostgreSQL: pgsql/contrib/ltree/ltree_op.c,v 1.9 2006/03/11 04:38:29 momjian Exp $
45
*/
56

67
#include "ltree.h"

contrib/ltree/ltxtquery_io.c

+1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
/*
22
* txtquery io
33
* Teodor Sigaev <teodor@stack.net>
4+
* $PostgreSQL: pgsql/contrib/ltree/ltxtquery_io.c,v 1.11 2006/03/11 04:38:29 momjian Exp $
45
*/
56

67
#include "ltree.h"

contrib/ltree/ltxtquery_op.c

+1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
/*
22
* txtquery operations with ltree
33
* Teodor Sigaev <teodor@stack.net>
4+
* $PostgreSQL: pgsql/contrib/ltree/ltxtquery_op.c,v 1.6 2006/03/11 04:38:29 momjian Exp $
45
*/
56

67
#include "ltree.h"

contrib/mSQL-interface/mpgsql.c

+2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
/* $PostgreSQL: pgsql/contrib/mSQL-interface/mpgsql.c,v 1.8 2006/03/11 04:38:29 momjian Exp $ */
2+
13
#include <time.h>
24
#include <string.h>
35
#include <stdlib.h>

contrib/mac/createoui

+3
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,7 @@
11
#! /bin/sh
2+
3+
# $PostgreSQL: pgsql/contrib/mac/createoui,v 1.3 2006/03/11 04:38:30 momjian Exp $
4+
25
# Utility to create manufacturer's oui table
36
# OUI is "Organizationally Unique Identifier" assigned by IEEE.
47
# There are currently three duplicate listings, so we can not enforce

contrib/mac/dropoui

+2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
#! /bin/sh
22
# Utility to remove manufacturer's oui table
3+
# $PostgreSQL: pgsql/contrib/mac/dropoui,v 1.2 2006/03/11 04:38:30 momjian Exp $
4+
35

46
args=
57

contrib/oid2name/oid2name.c

+1
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
*
55
* Originally by
66
* B. Palmer, bpalmer@crimelabs.net 1-17-2001
7+
* $PostgreSQL: pgsql/contrib/oid2name/oid2name.c,v 1.29 2006/03/11 04:38:30 momjian Exp $
78
*/
89
#include "postgres_fe.h"
910

contrib/pgcrypto/crypt-blowfish.c

+2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
11
/*
2+
* $PostgreSQL: pgsql/contrib/pgcrypto/crypt-blowfish.c,v 1.11 2006/03/11 04:38:30 momjian Exp $
3+
*
24
* This code comes from John the Ripper password cracker, with reentrant
35
* and crypt(3) interfaces added, but optimizations specific to password
46
* cracking removed.

contrib/pgcrypto/crypt-des.c

+2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
/*
22
* FreeSec: libcrypt for NetBSD
33
*
4+
* $PostgreSQL: pgsql/contrib/pgcrypto/crypt-des.c,v 1.14 2006/03/11 04:38:30 momjian Exp $
5+
*
46
* Copyright (c) 1994 David Burren
57
* All rights reserved.
68
*

contrib/pgcrypto/crypt-gensalt.c

+2
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22
* Written by Solar Designer and placed in the public domain.
33
* See crypt_blowfish.c for more information.
44
*
5+
* $PostgreSQL: pgsql/contrib/pgcrypto/crypt-gensalt.c,v 1.8 2006/03/11 04:38:30 momjian Exp $
6+
*
57
* This file contains salt generation functions for the traditional and
68
* other common crypt(3) algorithms, except for bcrypt which is defined
79
* entirely in crypt_blowfish.c.

contrib/pgcrypto/misc.c

+2
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22
* Copyright (c) 1999
33
* University of California. All rights reserved.
44
*
5+
* $PostgreSQL: pgsql/contrib/pgcrypto/misc.c,v 1.3 2006/03/11 04:38:30 momjian Exp $
6+
*
57
* Redistribution and use in source and binary forms, with or without
68
* modification, are permitted provided that the following conditions
79
* are met:

contrib/spi/insert_username.c

+1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
/*
22
* insert_username.c
33
* $Modified: Thu Oct 16 08:13:42 1997 by brook $
4+
* $PostgreSQL: pgsql/contrib/spi/insert_username.c,v 1.13 2006/03/11 04:38:30 momjian Exp $
45
*
56
* insert user name in response to a trigger
67
* usage: insert_username (column_name)

contrib/spi/moddatetime.c

+2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
/*
22
moddatetime.c
33
4+
$PostgreSQL: pgsql/contrib/spi/moddatetime.c,v 1.12 2006/03/11 04:38:30 momjian Exp $
5+
46
What is this?
57
It is a function to be called from a trigger for the purpose of updating
68
a modification datetime stamp in a record when that record is UPDATEd.

contrib/tsearch2/crc32.c

+2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
/* Both POSIX and CRC32 checksums */
22

3+
/* $PostgreSQL: pgsql/contrib/tsearch2/crc32.c,v 1.3 2006/03/11 04:38:30 momjian Exp $ */
4+
35
#include <sys/types.h>
46
#include <stdio.h>
57
#include <sys/types.h>

contrib/tsearch2/crc32.h

+2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
#ifndef _CRC32_H
22
#define _CRC32_H
33

4+
/* $PostgreSQL: pgsql/contrib/tsearch2/crc32.h,v 1.2 2006/03/11 04:38:30 momjian Exp $ */
5+
46
/* Returns crc32 of data block */
57
extern unsigned int crc32_sz(char *buf, int size);
68

contrib/tsearch2/dict.c

+2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
/* $PostgreSQL: pgsql/contrib/tsearch2/dict.c,v 1.11 2006/03/11 04:38:30 momjian Exp $ */
2+
13
/*
24
* interface functions to dictionary
35
* Teodor Sigaev <teodor@sigaev.ru>

contrib/tsearch2/dict.h

+2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
/* $PostgreSQL: pgsql/contrib/tsearch2/dict.h,v 1.6 2006/03/11 04:38:30 momjian Exp $ */
2+
13
#ifndef __DICT_H__
24
#define __DICT_H__
35
#include "postgres.h"

contrib/tsearch2/dict_ex.c

+2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
/* $PostgreSQL: pgsql/contrib/tsearch2/dict_ex.c,v 1.8 2006/03/11 04:38:30 momjian Exp $ */
2+
13
/*
24
* example of dictionary
35
* Teodor Sigaev <teodor@sigaev.ru>

contrib/tsearch2/dict_ispell.c

+2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
/* $PostgreSQL: pgsql/contrib/tsearch2/dict_ispell.c,v 1.10 2006/03/11 04:38:30 momjian Exp $ */
2+
13
/*
24
* ISpell interface
35
* Teodor Sigaev <teodor@sigaev.ru>

contrib/tsearch2/dict_snowball.c

+2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
/* $PostgreSQL: pgsql/contrib/tsearch2/dict_snowball.c,v 1.11 2006/03/11 04:38:30 momjian Exp $ */
2+
13
/*
24
* example of Snowball dictionary
35
* http://snowball.tartarus.org/

0 commit comments

Comments
 (0)