]> granicus.if.org Git - postgresql/commitdiff
Fix some missed copyright updates.
authorTom Lane <tgl@sss.pgh.pa.us>
Tue, 1 Jan 2008 20:31:21 +0000 (20:31 +0000)
committerTom Lane <tgl@sss.pgh.pa.us>
Tue, 1 Jan 2008 20:31:21 +0000 (20:31 +0000)
12 files changed:
contrib/dict_int/dict_int.c
contrib/dict_xsyn/dict_xsyn.c
contrib/pageinspect/heapfuncs.c
contrib/pageinspect/rawpage.c
contrib/test_parser/test_parser.c
contrib/uuid-ossp/uuid-ossp.c
src/backend/utils/adt/uuid.c
src/backend/utils/mb/Unicode/UCS_to_EUC_JIS_2004.pl
src/backend/utils/mb/Unicode/UCS_to_SHIFT_JIS_2004.pl
src/backend/utils/mb/conversion_procs/euc_jis_2004_and_shift_jis_2004/euc_jis_2004_and_shift_jis_2004.c
src/include/utils/uuid.h
src/interfaces/libpq/libpq.rc.in

index 5cc2111adcb8c69ecdc9bf8f32c27ca223cc41ef..163a5029a0b1d4dc235ca9b867c0ff1faf3bbb9f 100644 (file)
@@ -3,10 +3,10 @@
  * dict_int.c
  *       Text search dictionary for integers
  *
- * Copyright (c) 2007, PostgreSQL Global Development Group
+ * Copyright (c) 2007-2008, PostgreSQL Global Development Group
  *
  * IDENTIFICATION
- *       $PostgreSQL: pgsql/contrib/dict_int/dict_int.c,v 1.2 2007/11/15 21:14:29 momjian Exp $
+ *       $PostgreSQL: pgsql/contrib/dict_int/dict_int.c,v 1.3 2008/01/01 20:31:21 tgl Exp $
  *
  *-------------------------------------------------------------------------
  */
index 6dd0f6a5b35b3ab9c6a6fdf9513d7c85f0fee13b..d98792aa01e2f5a7269510f1ef3f2ff7f5b5faae 100644 (file)
@@ -3,10 +3,10 @@
  * dict_xsyn.c
  *       Extended synonym dictionary
  *
- * Copyright (c) 2007, PostgreSQL Global Development Group
+ * Copyright (c) 2007-2008, PostgreSQL Global Development Group
  *
  * IDENTIFICATION
- *       $PostgreSQL: pgsql/contrib/dict_xsyn/dict_xsyn.c,v 1.3 2007/11/15 22:25:14 momjian Exp $
+ *       $PostgreSQL: pgsql/contrib/dict_xsyn/dict_xsyn.c,v 1.4 2008/01/01 20:31:21 tgl Exp $
  *
  *-------------------------------------------------------------------------
  */
index 31b5b2e642e2239e54a667e7cc7af25375ce3f6a..3b82389729be7c9fe47df244169127fb1d835496 100644 (file)
  * there's hardly any use case for using these without superuser-rights
  * anyway.
  *
- * Copyright (c) 2007, PostgreSQL Global Development Group
+ * Copyright (c) 2007-2008, PostgreSQL Global Development Group
  *
  * IDENTIFICATION
- *       $PostgreSQL: pgsql/contrib/pageinspect/heapfuncs.c,v 1.3 2007/11/15 21:14:30 momjian Exp $
+ *       $PostgreSQL: pgsql/contrib/pageinspect/heapfuncs.c,v 1.4 2008/01/01 20:31:21 tgl Exp $
  *
  *-------------------------------------------------------------------------
  */
index 7d69fd5e22ea3d7110efd4f92589829311150830..230d27133b8061699ef05ea6d17f0d966d36d8ba 100644 (file)
@@ -5,10 +5,10 @@
  *
  * Access-method specific inspection functions are in separate files.
  *
- * Copyright (c) 2007, PostgreSQL Global Development Group
+ * Copyright (c) 2007-2008, PostgreSQL Global Development Group
  *
  * IDENTIFICATION
- *       $PostgreSQL: pgsql/contrib/pageinspect/rawpage.c,v 1.3 2007/11/15 21:14:30 momjian Exp $
+ *       $PostgreSQL: pgsql/contrib/pageinspect/rawpage.c,v 1.4 2008/01/01 20:31:21 tgl Exp $
  *
  *-------------------------------------------------------------------------
  */
index a6b24be1e43d470e699d570c38d0ac3e976a573f..3ab80ec789b65eb735eb2d289743615fc0b71625 100644 (file)
@@ -3,10 +3,10 @@
  * test_parser.c
  *       Simple example of a text search parser
  *
- * Copyright (c) 2007, PostgreSQL Global Development Group
+ * Copyright (c) 2007-2008, PostgreSQL Global Development Group
  *
  * IDENTIFICATION
- *       $PostgreSQL: pgsql/contrib/test_parser/test_parser.c,v 1.3 2007/11/15 22:25:14 momjian Exp $
+ *       $PostgreSQL: pgsql/contrib/test_parser/test_parser.c,v 1.4 2008/01/01 20:31:21 tgl Exp $
  *
  *-------------------------------------------------------------------------
  */
index 0b896fce5d72bcd6060d6c62e6024671d787cae1..456ec5728b856c41cf0428a54d3a26878383d8ff 100644 (file)
@@ -2,9 +2,9 @@
  *
  * UUID generation functions using the OSSP UUID library
  *
- * Copyright (c) 2007 PostgreSQL Global Development Group
+ * Copyright (c) 2007-2008 PostgreSQL Global Development Group
  *
- * $PostgreSQL: pgsql/contrib/uuid-ossp/uuid-ossp.c,v 1.6 2007/12/31 03:55:50 alvherre Exp $
+ * $PostgreSQL: pgsql/contrib/uuid-ossp/uuid-ossp.c,v 1.7 2008/01/01 20:31:21 tgl Exp $
  *
  *-------------------------------------------------------------------------
  */
index 9068966e7fab75fe5ca9456692ab57d617412130..216546e5206621fd6106c6046802a8d13158262e 100644 (file)
@@ -3,10 +3,10 @@
  * uuid.c
  *       Functions for the built-in type "uuid".
  *
- * Copyright (c) 2007, PostgreSQL Global Development Group
+ * Copyright (c) 2007-2008, PostgreSQL Global Development Group
  *
  * IDENTIFICATION
- *       $PostgreSQL: pgsql/src/backend/utils/adt/uuid.c,v 1.6 2007/11/15 22:25:16 momjian Exp $
+ *       $PostgreSQL: pgsql/src/backend/utils/adt/uuid.c,v 1.7 2008/01/01 20:31:21 tgl Exp $
  *
  *-------------------------------------------------------------------------
  */
index 7512bdf36044adb000bf865dd6e76adfd06c01d0..ee5064b3f8d7167c2dc711a0f741df98abd8af7a 100755 (executable)
@@ -1,8 +1,8 @@
 #! /usr/bin/perl
 #
-# Copyright (c) 2007, PostgreSQL Global Development Group
+# Copyright (c) 2007-2008, PostgreSQL Global Development Group
 #
-# $PostgreSQL: pgsql/src/backend/utils/mb/Unicode/UCS_to_EUC_JIS_2004.pl,v 1.1 2007/03/25 11:56:02 ishii Exp $
+# $PostgreSQL: pgsql/src/backend/utils/mb/Unicode/UCS_to_EUC_JIS_2004.pl,v 1.2 2008/01/01 20:31:21 tgl Exp $
 #
 # Generate UTF-8 <--> EUC_JIS_2004 code conversion tables from
 # "euc-jis-2004-std.txt" (http://x0213.org)
index 203fef41c0edc47fb7cc4259a2efa851dd71e87a..826d33ff466e955a869dba3de14ee7ba1e6037b6 100755 (executable)
@@ -1,8 +1,8 @@
 #! /usr/bin/perl
 #
-# Copyright (c) 2007, PostgreSQL Global Development Group
+# Copyright (c) 2007-2008, PostgreSQL Global Development Group
 #
-# $PostgreSQL: pgsql/src/backend/utils/mb/Unicode/UCS_to_SHIFT_JIS_2004.pl,v 1.1 2007/03/25 11:56:02 ishii Exp $
+# $PostgreSQL: pgsql/src/backend/utils/mb/Unicode/UCS_to_SHIFT_JIS_2004.pl,v 1.2 2008/01/01 20:31:21 tgl Exp $
 #
 # Generate UTF-8 <--> SHIFT_JIS_2004 code conversion tables from
 # "sjis-0213-2004-std.txt" (http://x0213.org)
index a2ff4a9093215cfdf9d0e14669447bc5b73e8116..90d6f301512cf31885acd2584afb975ac89db2fa 100644 (file)
@@ -2,10 +2,10 @@
  *
  *       EUC_JIS_2004, SHIFT_JIS_2004
  *
- * Copyright (c) 2007, PostgreSQL Global Development Group
+ * Copyright (c) 2007-2008, PostgreSQL Global Development Group
  *
  * IDENTIFICATION
- *       $PostgreSQL: pgsql/src/backend/utils/mb/conversion_procs/euc_jis_2004_and_shift_jis_2004/euc_jis_2004_and_shift_jis_2004.c,v 1.2 2007/11/15 21:14:40 momjian Exp $
+ *       $PostgreSQL: pgsql/src/backend/utils/mb/conversion_procs/euc_jis_2004_and_shift_jis_2004/euc_jis_2004_and_shift_jis_2004.c,v 1.3 2008/01/01 20:31:21 tgl Exp $
  *
  *-------------------------------------------------------------------------
  */
index 88607ccef7fef9ace01528574a9b1dd5dfcab152..d4bc73c2cb07a6a57b44fc939987f59d6f625400 100644 (file)
@@ -5,9 +5,9 @@
  *       to avoid conflicts with any uuid_t type that might be defined by
  *       the system headers.
  *
- * Copyright (c) 2007, PostgreSQL Global Development Group
+ * Copyright (c) 2007-2008, PostgreSQL Global Development Group
  *
- * $PostgreSQL: pgsql/src/include/utils/uuid.h,v 1.3 2007/11/15 21:14:45 momjian Exp $
+ * $PostgreSQL: pgsql/src/include/utils/uuid.h,v 1.4 2008/01/01 20:31:21 tgl Exp $
  *
  *-------------------------------------------------------------------------
  */
index 8498b78555fd9e3ba4ed33349a6d631c8972e28a..482faf410d58fa05faa4b89479c271b522fd1be7 100644 (file)
@@ -17,7 +17,7 @@ BEGIN
             VALUE "FileDescription", "PostgreSQL Access Library\0"
             VALUE "FileVersion", "8.3.0\0"
             VALUE "InternalName", "libpq\0"
-            VALUE "LegalCopyright", "Copyright (C) 2007\0"
+            VALUE "LegalCopyright", "Copyright (C) 2008\0"
             VALUE "LegalTrademarks", "\0"
             VALUE "OriginalFilename", "libpq.dll\0"
             VALUE "ProductName", "PostgreSQL\0"