head	1.2;
access;
symbols
	REL7_4_29:1.1
	REL8_0_25:1.1
	REL7_4_28:1.1
	REL8_0_24:1.1
	REL7_4_27:1.1
	REL8_0_23:1.1
	REL7_4_26:1.1
	REL8_0_22:1.1
	REL7_4_25:1.1
	REL8_0_21:1.1
	REL7_4_24:1.1
	REL8_0_20:1.1
	REL7_4_23:1.1
	REL8_0_19:1.1
	REL7_4_22:1.1
	REL8_0_18:1.1
	REL7_4_21:1.1
	REL8_0_17:1.1
	REL7_4_20:1.1
	REL8_0_16:1.1
	REL7_3_21:1.1
	REL7_4_19:1.1
	REL8_0_15:1.1
	REL7_3_20:1.1
	REL7_4_18:1.1
	REL8_0_14:1.1
	REL7_3_19:1.1
	REL7_4_17:1.1
	REL8_0_13:1.1
	REL8_0_12:1.1
	REL7_3_18:1.1
	REL7_4_16:1.1
	REL8_0_11:1.1
	REL8_0_10:1.1
	REL7_4_15:1.1
	REL7_3_17:1.1
	REL8_0_9:1.1
	REL7_4_14:1.1
	REL7_3_16:1.1
	REL7_3_15:1.1
	REL7_4_13:1.1
	REL8_0_8:1.1
	REL7_3_14:1.1
	REL7_4_12:1.1
	REL8_0_7:1.1
	REL7_3_13:1.1
	REL7_4_11:1.1
	REL8_0_6:1.1
	REL7_3_12:1.1
	REL7_4_10:1.1
	REL8_0_5:1.1
	REL7_3_11:1.1
	REL7_4_9:1.1
	REL8_0_4:1.1
	REL7_2_8:1.1
	REL7_3_10:1.1
	REL7_4_8:1.1
	REL8_0_3:1.1
	REL8_0_2:1.1
	REL7_2_7:1.1
	REL7_3_9:1.1
	REL7_4_7:1.1
	REL8_0_1:1.1
	REL8_0_STABLE:1.1.0.18
	REL8_0_0:1.1.0.16
	REL8_0_0RC5:1.1
	REL8_0_0RC4:1.1
	REL8_0_0RC3:1.1
	REL8_0_0RC2:1.1
	REL8_0_0RC1:1.1
	REL8_0_0BETA5:1.1
	REL8_0_0BETA4:1.1
	REL7_4_6:1.1
	REL7_3_8:1.1
	REL7_2_6:1.1
	REL8_0_0BETA3:1.1
	REL8_0_0BETA2:1.1
	REL7_2_5:1.1
	REL7_4_5:1.1
	REL7_3_7:1.1
	REL7_4_4:1.1
	REL8_0_0BETA1:1.1
	REL7_4_3:1.1
	REL7_4_2:1.1
	REL7_3_6:1.1
	REL7_4_1:1.1
	REL7_3_5:1.1
	REL7_4:1.1
	REL7_4_RC2:1.1
	REL7_4_STABLE:1.1.0.14
	REL7_4_RC1:1.1
	REL7_4_BETA5:1.1
	REL7_4_BETA4:1.1
	REL7_4_BETA3:1.1
	REL7_4_BETA2:1.1
	WIN32_DEV:1.1.0.12
	REL7_4_BETA1:1.1
	REL7_3_4:1.1
	REL7_3_2:1.1
	REL7_2_4:1.1
	REL7_3_STABLE:1.1.0.10
	REL7_2_3:1.1
	REL7_2_STABLE:1.1.0.8
	REL7_2:1.1
	REL7_2_RC2:1.1
	REL7_2_RC1:1.1
	REL7_2_BETA5:1.1
	REL7_2_BETA4:1.1
	REL7_2_BETA3:1.1
	REL7_2_BETA2:1.1
	REL7_2_BETA1:1.1
	REL7_1_2:1.1
	REL7_1_STABLE:1.1.0.6
	REL7_1_BETA:1.1
	REL7_1_BETA3:1.1
	REL7_1_BETA2:1.1
	REL7_1:1.1
	REL7_0_PATCHES:1.1.0.4
	REL7_0:1.1
	REL6_5_PATCHES:1.1.0.2
	REL6_5:1.1;
locks; strict;
comment	@# @;


1.2
date	2005.06.22.22.56.27;	author tgl;	state dead;
branches;
next	1.1;

1.1
date	99.06.05.19.09.45;	author momjian;	state Exp;
branches;
next	;


desc
@@


1.2
log
@Remove contrib modules that have been agreed to be obsolete.
(There are more that will be removed once they've been copied to
pgfoundry.org.)
@
text
@#!/bin/bash
#
# Add local variables to C sources files to set emacs C style to 4-space tabs.
#
# Usage:  cd $PG_HOME && add-emacs-variables `find . -name \*.[chy] -print`

for f in $*; do
    if [ -L $f ] || grep -q '^ \* Local Variables:' $f; then
	continue
    fi
    echo $f
    touch -r $f /tmp/.add-local-variables.$$
    cat <<- '    EOF' >> $f 
	
	/*
	 * Local Variables:
	 *  tab-width: 4
	 *  c-indent-level: 4
	 *  c-basic-offset: 4
	 * End:
	 */
    EOF
    touch -r /tmp/.add-local-variables.$$ $f
done

rm -f /tmp/.add-local-variables.$$

# end of file
@


1.1
log
@Hi,

I have updated my contrib code for version 6.5. In the attachment you will
find the directories array, datetime, miscutil, string, tools and userlocks
which replace the corresponding directories under contrib.

In contrib/tools you will find some developement scripts which I use while
hacking the sources. I hope they will be useful for some other people.

I have also added a contrib/Makefile which tries to compile and install all
the contribs. Unfortunately many of them don't have a Makefile or don't
compile cleanly.

--
Massimo Dal Zotto
@
text
@@

