summaryrefslogtreecommitdiff
path: root/src/bin/psql
diff options
context:
space:
mode:
authorMagnus Hagander <magnus@hagander.net>2010-09-20 22:08:53 +0200
committerMagnus Hagander <magnus@hagander.net>2010-09-20 22:08:53 +0200
commit9f2e211386931f7aee48ffbc2fcaef1632d8329f (patch)
treeeebf0b0367f8e957957cf5468ddc0c46d9da80f6 /src/bin/psql
parentcecde97577fafddc6b3aa354b9b77a3a54b063a9 (diff)
downloadpostgresql-9f2e211386931f7aee48ffbc2fcaef1632d8329f.tar.gz
Remove cvs keywords from all files.
Diffstat (limited to 'src/bin/psql')
-rw-r--r--src/bin/psql/Makefile2
-rw-r--r--src/bin/psql/command.c2
-rw-r--r--src/bin/psql/command.h2
-rw-r--r--src/bin/psql/common.c2
-rw-r--r--src/bin/psql/common.h2
-rw-r--r--src/bin/psql/copy.c2
-rw-r--r--src/bin/psql/copy.h2
-rw-r--r--src/bin/psql/create_help.pl2
-rw-r--r--src/bin/psql/describe.c2
-rw-r--r--src/bin/psql/describe.h2
-rw-r--r--src/bin/psql/help.c2
-rw-r--r--src/bin/psql/help.h2
-rw-r--r--src/bin/psql/input.c2
-rw-r--r--src/bin/psql/input.h2
-rw-r--r--src/bin/psql/large_obj.c2
-rw-r--r--src/bin/psql/large_obj.h2
-rw-r--r--src/bin/psql/mainloop.c2
-rw-r--r--src/bin/psql/mainloop.h2
-rw-r--r--src/bin/psql/mbprint.c2
-rw-r--r--src/bin/psql/mbprint.h2
-rw-r--r--src/bin/psql/nls.mk2
-rw-r--r--src/bin/psql/po/cs.po2
-rw-r--r--src/bin/psql/po/fr.po2
-rw-r--r--src/bin/psql/print.c2
-rw-r--r--src/bin/psql/print.h2
-rw-r--r--src/bin/psql/prompt.c2
-rw-r--r--src/bin/psql/prompt.h2
-rw-r--r--src/bin/psql/psqlscan.h2
-rw-r--r--src/bin/psql/psqlscan.l2
-rw-r--r--src/bin/psql/settings.h2
-rw-r--r--src/bin/psql/startup.c2
-rw-r--r--src/bin/psql/stringutils.c2
-rw-r--r--src/bin/psql/stringutils.h2
-rw-r--r--src/bin/psql/tab-complete.c2
-rw-r--r--src/bin/psql/tab-complete.h2
-rw-r--r--src/bin/psql/variables.c2
-rw-r--r--src/bin/psql/variables.h2
37 files changed, 37 insertions, 37 deletions
diff --git a/src/bin/psql/Makefile b/src/bin/psql/Makefile
index 8227b43407..9e1c3cd6f7 100644
--- a/src/bin/psql/Makefile
+++ b/src/bin/psql/Makefile
@@ -5,7 +5,7 @@
# Portions Copyright (c) 1996-2010, PostgreSQL Global Development Group
# Portions Copyright (c) 1994, Regents of the University of California
#
-# $PostgreSQL: pgsql/src/bin/psql/Makefile,v 1.70 2010/07/05 18:54:38 tgl Exp $
+# src/bin/psql/Makefile
#
#-------------------------------------------------------------------------
diff --git a/src/bin/psql/command.c b/src/bin/psql/command.c
index 6ab65d8b5f..e6d703abe7 100644
--- a/src/bin/psql/command.c
+++ b/src/bin/psql/command.c
@@ -3,7 +3,7 @@
*
* Copyright (c) 2000-2010, PostgreSQL Global Development Group
*
- * $PostgreSQL: pgsql/src/bin/psql/command.c,v 1.229 2010/08/25 00:53:37 tgl Exp $
+ * src/bin/psql/command.c
*/
#include "postgres_fe.h"
#include "command.h"
diff --git a/src/bin/psql/command.h b/src/bin/psql/command.h
index 616df1d5af..9f12d4ae87 100644
--- a/src/bin/psql/command.h
+++ b/src/bin/psql/command.h
@@ -3,7 +3,7 @@
*
* Copyright (c) 2000-2010, PostgreSQL Global Development Group
*
- * $PostgreSQL: pgsql/src/bin/psql/command.h,v 1.34 2010/02/16 21:07:01 momjian Exp $
+ * src/bin/psql/command.h
*/
#ifndef COMMAND_H
#define COMMAND_H
diff --git a/src/bin/psql/common.c b/src/bin/psql/common.c
index ed92937242..c2c572c42d 100644
--- a/src/bin/psql/common.c
+++ b/src/bin/psql/common.c
@@ -3,7 +3,7 @@
*
* Copyright (c) 2000-2010, PostgreSQL Global Development Group
*
- * $PostgreSQL: pgsql/src/bin/psql/common.c,v 1.147 2010/07/28 04:39:14 petere Exp $
+ * src/bin/psql/common.c
*/
#include "postgres_fe.h"
#include "common.h"
diff --git a/src/bin/psql/common.h b/src/bin/psql/common.h
index 838a5526bd..5fa13b76a8 100644
--- a/src/bin/psql/common.h
+++ b/src/bin/psql/common.h
@@ -3,7 +3,7 @@
*
* Copyright (c) 2000-2010, PostgreSQL Global Development Group
*
- * $PostgreSQL: pgsql/src/bin/psql/common.h,v 1.59 2010/01/02 16:57:59 momjian Exp $
+ * src/bin/psql/common.h
*/
#ifndef COMMON_H
#define COMMON_H
diff --git a/src/bin/psql/copy.c b/src/bin/psql/copy.c
index 9ac8505425..5c39d94dfb 100644
--- a/src/bin/psql/copy.c
+++ b/src/bin/psql/copy.c
@@ -3,7 +3,7 @@
*
* Copyright (c) 2000-2010, PostgreSQL Global Development Group
*
- * $PostgreSQL: pgsql/src/bin/psql/copy.c,v 1.84 2010/01/02 16:57:59 momjian Exp $
+ * src/bin/psql/copy.c
*/
#include "postgres_fe.h"
#include "copy.h"
diff --git a/src/bin/psql/copy.h b/src/bin/psql/copy.h
index 048d29909c..7f1b565bfe 100644
--- a/src/bin/psql/copy.h
+++ b/src/bin/psql/copy.h
@@ -3,7 +3,7 @@
*
* Copyright (c) 2000-2010, PostgreSQL Global Development Group
*
- * $PostgreSQL: pgsql/src/bin/psql/copy.h,v 1.23 2010/01/02 16:57:59 momjian Exp $
+ * src/bin/psql/copy.h
*/
#ifndef COPY_H
#define COPY_H
diff --git a/src/bin/psql/create_help.pl b/src/bin/psql/create_help.pl
index 3771072509..495100326d 100644
--- a/src/bin/psql/create_help.pl
+++ b/src/bin/psql/create_help.pl
@@ -5,7 +5,7 @@
#
# Copyright (c) 2000-2010, PostgreSQL Global Development Group
#
-# $PostgreSQL: pgsql/src/bin/psql/create_help.pl,v 1.21 2010/01/02 16:57:59 momjian Exp $
+# src/bin/psql/create_help.pl
#################################################################
#
diff --git a/src/bin/psql/describe.c b/src/bin/psql/describe.c
index b4fa7df81d..83e9845103 100644
--- a/src/bin/psql/describe.c
+++ b/src/bin/psql/describe.c
@@ -8,7 +8,7 @@
*
* Copyright (c) 2000-2010, PostgreSQL Global Development Group
*
- * $PostgreSQL: pgsql/src/bin/psql/describe.c,v 1.243 2010/08/01 01:08:29 rhaas Exp $
+ * src/bin/psql/describe.c
*/
#include "postgres_fe.h"
diff --git a/src/bin/psql/describe.h b/src/bin/psql/describe.h
index 5f10451757..ddf4aac482 100644
--- a/src/bin/psql/describe.h
+++ b/src/bin/psql/describe.h
@@ -3,7 +3,7 @@
*
* Copyright (c) 2000-2010, PostgreSQL Global Development Group
*
- * $PostgreSQL: pgsql/src/bin/psql/describe.h,v 1.43 2010/01/02 16:57:59 momjian Exp $
+ * src/bin/psql/describe.h
*/
#ifndef DESCRIBE_H
#define DESCRIBE_H
diff --git a/src/bin/psql/help.c b/src/bin/psql/help.c
index b02f9db9b5..66f72e8389 100644
--- a/src/bin/psql/help.c
+++ b/src/bin/psql/help.c
@@ -3,7 +3,7 @@
*
* Copyright (c) 2000-2010, PostgreSQL Global Development Group
*
- * $PostgreSQL: pgsql/src/bin/psql/help.c,v 1.163 2010/08/14 13:59:49 tgl Exp $
+ * src/bin/psql/help.c
*/
#include "postgres_fe.h"
diff --git a/src/bin/psql/help.h b/src/bin/psql/help.h
index 882cc745df..0b7bf8f645 100644
--- a/src/bin/psql/help.h
+++ b/src/bin/psql/help.h
@@ -3,7 +3,7 @@
*
* Copyright (c) 2000-2010, PostgreSQL Global Development Group
*
- * $PostgreSQL: pgsql/src/bin/psql/help.h,v 1.21 2010/01/02 16:57:59 momjian Exp $
+ * src/bin/psql/help.h
*/
#ifndef HELP_H
#define HELP_H
diff --git a/src/bin/psql/input.c b/src/bin/psql/input.c
index d28fe9c0ba..c95ee22d88 100644
--- a/src/bin/psql/input.c
+++ b/src/bin/psql/input.c
@@ -3,7 +3,7 @@
*
* Copyright (c) 2000-2010, PostgreSQL Global Development Group
*
- * $PostgreSQL: pgsql/src/bin/psql/input.c,v 1.69 2010/02/26 02:01:18 momjian Exp $
+ * src/bin/psql/input.c
*/
#include "postgres_fe.h"
diff --git a/src/bin/psql/input.h b/src/bin/psql/input.h
index 170590645b..1c52f8d27a 100644
--- a/src/bin/psql/input.h
+++ b/src/bin/psql/input.h
@@ -3,7 +3,7 @@
*
* Copyright (c) 2000-2010, PostgreSQL Global Development Group
*
- * $PostgreSQL: pgsql/src/bin/psql/input.h,v 1.35 2010/02/26 02:01:19 momjian Exp $
+ * src/bin/psql/input.h
*/
#ifndef INPUT_H
#define INPUT_H
diff --git a/src/bin/psql/large_obj.c b/src/bin/psql/large_obj.c
index b915c9f9e5..ecc7b76b5c 100644
--- a/src/bin/psql/large_obj.c
+++ b/src/bin/psql/large_obj.c
@@ -3,7 +3,7 @@
*
* Copyright (c) 2000-2010, PostgreSQL Global Development Group
*
- * $PostgreSQL: pgsql/src/bin/psql/large_obj.c,v 1.56 2010/02/26 02:01:19 momjian Exp $
+ * src/bin/psql/large_obj.c
*/
#include "postgres_fe.h"
#include "large_obj.h"
diff --git a/src/bin/psql/large_obj.h b/src/bin/psql/large_obj.h
index 3031c93b06..b7aa204ed8 100644
--- a/src/bin/psql/large_obj.h
+++ b/src/bin/psql/large_obj.h
@@ -3,7 +3,7 @@
*
* Copyright (c) 2000-2010, PostgreSQL Global Development Group
*
- * $PostgreSQL: pgsql/src/bin/psql/large_obj.h,v 1.20 2010/01/02 16:57:59 momjian Exp $
+ * src/bin/psql/large_obj.h
*/
#ifndef LARGE_OBJ_H
#define LARGE_OBJ_H
diff --git a/src/bin/psql/mainloop.c b/src/bin/psql/mainloop.c
index 23904f3f45..b124ec5ea9 100644
--- a/src/bin/psql/mainloop.c
+++ b/src/bin/psql/mainloop.c
@@ -3,7 +3,7 @@
*
* Copyright (c) 2000-2010, PostgreSQL Global Development Group
*
- * $PostgreSQL: pgsql/src/bin/psql/mainloop.c,v 1.99 2010/02/26 02:01:19 momjian Exp $
+ * src/bin/psql/mainloop.c
*/
#include "postgres_fe.h"
#include "mainloop.h"
diff --git a/src/bin/psql/mainloop.h b/src/bin/psql/mainloop.h
index 93c0945fa4..cbb931b0c9 100644
--- a/src/bin/psql/mainloop.h
+++ b/src/bin/psql/mainloop.h
@@ -3,7 +3,7 @@
*
* Copyright (c) 2000-2010, PostgreSQL Global Development Group
*
- * $PostgreSQL: pgsql/src/bin/psql/mainloop.h,v 1.24 2010/01/02 16:57:59 momjian Exp $
+ * src/bin/psql/mainloop.h
*/
#ifndef MAINLOOP_H
#define MAINLOOP_H
diff --git a/src/bin/psql/mbprint.c b/src/bin/psql/mbprint.c
index 141f860041..6bca2f29bb 100644
--- a/src/bin/psql/mbprint.c
+++ b/src/bin/psql/mbprint.c
@@ -3,7 +3,7 @@
*
* Copyright (c) 2000-2010, PostgreSQL Global Development Group
*
- * $PostgreSQL: pgsql/src/bin/psql/mbprint.c,v 1.40 2010/08/18 19:54:01 tgl Exp $
+ * src/bin/psql/mbprint.c
*
* XXX this file does not really belong in psql/. Perhaps move to libpq?
* It also seems that the mbvalidate function is redundant with existing
diff --git a/src/bin/psql/mbprint.h b/src/bin/psql/mbprint.h
index 4e9d933c94..f729ef045c 100644
--- a/src/bin/psql/mbprint.h
+++ b/src/bin/psql/mbprint.h
@@ -1,4 +1,4 @@
-/* $PostgreSQL: pgsql/src/bin/psql/mbprint.h,v 1.15 2009/11/25 20:26:31 tgl Exp $ */
+/* src/bin/psql/mbprint.h */
#ifndef MBPRINT_H
#define MBPRINT_H
diff --git a/src/bin/psql/nls.mk b/src/bin/psql/nls.mk
index 16c8380535..30de2e085f 100644
--- a/src/bin/psql/nls.mk
+++ b/src/bin/psql/nls.mk
@@ -1,4 +1,4 @@
-# $PostgreSQL: pgsql/src/bin/psql/nls.mk,v 1.24 2009/09/18 05:00:42 petere Exp $
+# src/bin/psql/nls.mk
CATALOG_NAME := psql
AVAIL_LANGUAGES := cs de es fr ja pt_BR sv tr
GETTEXT_FILES := command.c common.c copy.c help.c input.c large_obj.c \
diff --git a/src/bin/psql/po/cs.po b/src/bin/psql/po/cs.po
index 1a2ff0c651..2b647e5378 100644
--- a/src/bin/psql/po/cs.po
+++ b/src/bin/psql/po/cs.po
@@ -1,7 +1,7 @@
# translation of psql-cs.po to Czech
# Czech message translation file for psql
#
-# $PostgreSQL: pgsql/src/bin/psql/po/cs.po,v 1.6 2009/06/10 23:42:43 petere Exp $
+# src/bin/psql/po/cs.po
# Karel Žák, 2001-2003, 2004.
# Zdeněk Kotala, 2009.
diff --git a/src/bin/psql/po/fr.po b/src/bin/psql/po/fr.po
index d62c122d8f..56a365d94a 100644
--- a/src/bin/psql/po/fr.po
+++ b/src/bin/psql/po/fr.po
@@ -1,7 +1,7 @@
# translation of psql.po to fr_fr
# french message translation file for psql
#
-# $PostgreSQL: pgsql/src/bin/psql/po/fr.po,v 1.30 2010/06/03 21:12:04 petere Exp $
+# src/bin/psql/po/fr.po
#
# Use these quotes: « %s »
# Peter Eisentraut <peter_e@gmx.net>, 2001.
diff --git a/src/bin/psql/print.c b/src/bin/psql/print.c
index 9c38be1fd2..a5007da09e 100644
--- a/src/bin/psql/print.c
+++ b/src/bin/psql/print.c
@@ -3,7 +3,7 @@
*
* Copyright (c) 2000-2010, PostgreSQL Global Development Group
*
- * $PostgreSQL: pgsql/src/bin/psql/print.c,v 1.128 2010/07/06 19:19:00 momjian Exp $
+ * src/bin/psql/print.c
*/
#include "postgres_fe.h"
diff --git a/src/bin/psql/print.h b/src/bin/psql/print.h
index ceb3b28452..1f54075e0e 100644
--- a/src/bin/psql/print.h
+++ b/src/bin/psql/print.h
@@ -3,7 +3,7 @@
*
* Copyright (c) 2000-2010, PostgreSQL Global Development Group
*
- * $PostgreSQL: pgsql/src/bin/psql/print.h,v 1.46 2010/07/06 19:19:00 momjian Exp $
+ * src/bin/psql/print.h
*/
#ifndef PRINT_H
#define PRINT_H
diff --git a/src/bin/psql/prompt.c b/src/bin/psql/prompt.c
index b08234b781..6f097652a9 100644
--- a/src/bin/psql/prompt.c
+++ b/src/bin/psql/prompt.c
@@ -3,7 +3,7 @@
*
* Copyright (c) 2000-2010, PostgreSQL Global Development Group
*
- * $PostgreSQL: pgsql/src/bin/psql/prompt.c,v 1.54 2010/04/30 17:09:13 tgl Exp $
+ * src/bin/psql/prompt.c
*/
#include "postgres_fe.h"
diff --git a/src/bin/psql/prompt.h b/src/bin/psql/prompt.h
index 3ed420a912..8eb58977d6 100644
--- a/src/bin/psql/prompt.h
+++ b/src/bin/psql/prompt.h
@@ -3,7 +3,7 @@
*
* Copyright (c) 2000-2010, PostgreSQL Global Development Group
*
- * $PostgreSQL: pgsql/src/bin/psql/prompt.h,v 1.21 2010/01/02 16:57:59 momjian Exp $
+ * src/bin/psql/prompt.h
*/
#ifndef PROMPT_H
#define PROMPT_H
diff --git a/src/bin/psql/psqlscan.h b/src/bin/psql/psqlscan.h
index 6f9879363f..c644d286e5 100644
--- a/src/bin/psql/psqlscan.h
+++ b/src/bin/psql/psqlscan.h
@@ -3,7 +3,7 @@
*
* Copyright (c) 2000-2010, PostgreSQL Global Development Group
*
- * $PostgreSQL: pgsql/src/bin/psql/psqlscan.h,v 1.11 2010/01/02 16:57:59 momjian Exp $
+ * src/bin/psql/psqlscan.h
*/
#ifndef PSQLSCAN_H
#define PSQLSCAN_H
diff --git a/src/bin/psql/psqlscan.l b/src/bin/psql/psqlscan.l
index 8c105c11ed..0651fe2651 100644
--- a/src/bin/psql/psqlscan.l
+++ b/src/bin/psql/psqlscan.l
@@ -33,7 +33,7 @@
* Portions Copyright (c) 1994, Regents of the University of California
*
* IDENTIFICATION
- * $PostgreSQL: pgsql/src/bin/psql/psqlscan.l,v 1.34 2010/05/30 18:10:41 tgl Exp $
+ * src/bin/psql/psqlscan.l
*
*-------------------------------------------------------------------------
*/
diff --git a/src/bin/psql/settings.h b/src/bin/psql/settings.h
index e05d59b4df..188e819de0 100644
--- a/src/bin/psql/settings.h
+++ b/src/bin/psql/settings.h
@@ -3,7 +3,7 @@
*
* Copyright (c) 2000-2010, PostgreSQL Global Development Group
*
- * $PostgreSQL: pgsql/src/bin/psql/settings.h,v 1.36 2010/01/02 16:57:59 momjian Exp $
+ * src/bin/psql/settings.h
*/
#ifndef SETTINGS_H
#define SETTINGS_H
diff --git a/src/bin/psql/startup.c b/src/bin/psql/startup.c
index 805909ea25..996910270d 100644
--- a/src/bin/psql/startup.c
+++ b/src/bin/psql/startup.c
@@ -3,7 +3,7 @@
*
* Copyright (c) 2000-2010, PostgreSQL Global Development Group
*
- * $PostgreSQL: pgsql/src/bin/psql/startup.c,v 1.164 2010/03/07 17:02:34 mha Exp $
+ * src/bin/psql/startup.c
*/
#include "postgres_fe.h"
diff --git a/src/bin/psql/stringutils.c b/src/bin/psql/stringutils.c
index 37ca1198f3..09ccbc336a 100644
--- a/src/bin/psql/stringutils.c
+++ b/src/bin/psql/stringutils.c
@@ -3,7 +3,7 @@
*
* Copyright (c) 2000-2010, PostgreSQL Global Development Group
*
- * $PostgreSQL: pgsql/src/bin/psql/stringutils.c,v 1.49 2010/01/02 16:58:00 momjian Exp $
+ * src/bin/psql/stringutils.c
*/
#include "postgres_fe.h"
diff --git a/src/bin/psql/stringutils.h b/src/bin/psql/stringutils.h
index a1f9c3e4dc..1519e6aede 100644
--- a/src/bin/psql/stringutils.h
+++ b/src/bin/psql/stringutils.h
@@ -3,7 +3,7 @@
*
* Copyright (c) 2000-2010, PostgreSQL Global Development Group
*
- * $PostgreSQL: pgsql/src/bin/psql/stringutils.h,v 1.28 2010/01/02 16:58:00 momjian Exp $
+ * src/bin/psql/stringutils.h
*/
#ifndef STRINGUTILS_H
#define STRINGUTILS_H
diff --git a/src/bin/psql/tab-complete.c b/src/bin/psql/tab-complete.c
index 0c2d5bc780..3efa97ad88 100644
--- a/src/bin/psql/tab-complete.c
+++ b/src/bin/psql/tab-complete.c
@@ -3,7 +3,7 @@
*
* Copyright (c) 2000-2010, PostgreSQL Global Development Group
*
- * $PostgreSQL: pgsql/src/bin/psql/tab-complete.c,v 1.202 2010/08/14 13:59:49 tgl Exp $
+ * src/bin/psql/tab-complete.c
*/
/*----------------------------------------------------------------------
diff --git a/src/bin/psql/tab-complete.h b/src/bin/psql/tab-complete.h
index 049a1fbc37..682ab74f54 100644
--- a/src/bin/psql/tab-complete.h
+++ b/src/bin/psql/tab-complete.h
@@ -3,7 +3,7 @@
*
* Copyright (c) 2000-2010, PostgreSQL Global Development Group
*
- * $PostgreSQL: pgsql/src/bin/psql/tab-complete.h,v 1.17 2010/01/02 16:58:00 momjian Exp $
+ * src/bin/psql/tab-complete.h
*/
#ifndef TAB_COMPLETE_H
#define TAB_COMPLETE_H
diff --git a/src/bin/psql/variables.c b/src/bin/psql/variables.c
index 7a479a5060..50b015759f 100644
--- a/src/bin/psql/variables.c
+++ b/src/bin/psql/variables.c
@@ -3,7 +3,7 @@
*
* Copyright (c) 2000-2010, PostgreSQL Global Development Group
*
- * $PostgreSQL: pgsql/src/bin/psql/variables.c,v 1.31 2010/01/02 16:58:00 momjian Exp $
+ * src/bin/psql/variables.c
*/
#include "postgres_fe.h"
#include "common.h"
diff --git a/src/bin/psql/variables.h b/src/bin/psql/variables.h
index eb73ebdc06..4f01fe8129 100644
--- a/src/bin/psql/variables.h
+++ b/src/bin/psql/variables.h
@@ -3,7 +3,7 @@
*
* Copyright (c) 2000-2010, PostgreSQL Global Development Group
*
- * $PostgreSQL: pgsql/src/bin/psql/variables.h,v 1.24 2010/01/02 16:58:00 momjian Exp $
+ * src/bin/psql/variables.h
*/
#ifndef VARIABLES_H
#define VARIABLES_H