From 03aaa95e235840cef263b0e204bdd34cd3a51caf Mon Sep 17 00:00:00 2001 From: Dave Page Date: Tue, 11 Feb 2014 12:55:36 +0000 Subject: [PATCH] Copyright updates. --- CMakeLists.txt | 2 +- LICENSE | 2 +- cmake/MakeExt.cmake | 10 ++++++++++ connection.cpp | 2 +- include/connection.h | 2 +- include/job.h | 2 +- include/misc.h | 2 +- include/pgAgent.h | 2 +- job.cpp | 2 +- misc.cpp | 2 +- pgAgent.cpp | 2 +- pgAgent.rc | 4 ++-- pgaevent/CMakeLists.txt | 2 +- pgaevent/pgaevent.c | 2 +- pgaevent/pgaevent.def | 2 +- pgaevent/pgamsgevent.h | 2 +- pgaevent/pgamsgevent.rc | 4 ++-- precomp.cpp | 2 +- sql/pgagent--unpackaged--3.3.0.sql | 10 ++++++++++ sql/pgagent.sql | 2 +- sql/pgagent_upgrade.sql | 2 +- unix.cpp | 2 +- win32.cpp | 2 +- 23 files changed, 43 insertions(+), 23 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 0223360..cb194f5 100755 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,7 +1,7 @@ ####################################################################### # # pgAgent - PostgreSQL tools -# Copyright (C) 2002 - 2012, The pgAdmin Development Team +# Copyright (C) 2002 - 2014, The pgAdmin Development Team # This software is released under the PostgreSQL Licence # # CMakeLists.txt - CMake build configuration diff --git a/LICENSE b/LICENSE index 44736f6..3b2638a 100644 --- a/LICENSE +++ b/LICENSE @@ -1,6 +1,6 @@ pgAgent -Copyright (c) 2002 - 2012, The pgAdmin Development Team +Copyright (c) 2002 - 2014, The pgAdmin Development Team Permission to use, copy, modify, and distribute this software and its documentation for any purpose, without fee, and without a written agreement is diff --git a/cmake/MakeExt.cmake b/cmake/MakeExt.cmake index eba9db7..fac2b1b 100644 --- a/cmake/MakeExt.cmake +++ b/cmake/MakeExt.cmake @@ -1,3 +1,13 @@ +####################################################################### +# +# pgAgent - PostgreSQL tools +# Copyright (C) 2002 - 2014, The pgAdmin Development Team +# This software is released under the PostgreSQL Licence +# +# MakeExt,cmake - Create the PG Extension +# +####################################################################### + FILE(READ sql/pgagent.sql PGAGENT_SQL) STRING(REPLACE "BEGIN TRANSACTION;" "" PGAGENT_SQL "${PGAGENT_SQL}") STRING(REPLACE "COMMIT TRANSACTION;" "" PGAGENT_SQL "${PGAGENT_SQL}") diff --git a/connection.cpp b/connection.cpp index 6103c00..819c321 100644 --- a/connection.cpp +++ b/connection.cpp @@ -2,7 +2,7 @@ // // pgAgent - PostgreSQL Tools // -// Copyright (C) 2002 - 2012, The pgAdmin Development Team +// Copyright (C) 2002 - 2014, The pgAdmin Development Team // This software is released under the PostgreSQL Licence // // connection.cpp - database connection diff --git a/include/connection.h b/include/connection.h index f56a279..a201450 100644 --- a/include/connection.h +++ b/include/connection.h @@ -2,7 +2,7 @@ // // pgAgent - PostgreSQL Tools // -// Copyright (C) 2002 - 2012, The pgAdmin Development Team +// Copyright (C) 2002 - 2014, The pgAdmin Development Team // This software is released under the PostgreSQL Licence // // connection.h - database connection diff --git a/include/job.h b/include/job.h index fb7ba9e..e511852 100644 --- a/include/job.h +++ b/include/job.h @@ -2,7 +2,7 @@ // // pgAgent - PostgreSQL Tools // -// Copyright (C) 2002 - 2012, The pgAdmin Development Team +// Copyright (C) 2002 - 2014, The pgAdmin Development Team // This software is released under the PostgreSQL Licence // // job.h - agent job diff --git a/include/misc.h b/include/misc.h index 9a94fd5..14b4edc 100644 --- a/include/misc.h +++ b/include/misc.h @@ -2,7 +2,7 @@ // // pgAgent - PostgreSQL Tools // -// Copyright (C) 2002 - 2012, The pgAdmin Development Team +// Copyright (C) 2002 - 2014, The pgAdmin Development Team // This software is released under the PostgreSQL Licence // // misc.h - misc functions diff --git a/include/pgAgent.h b/include/pgAgent.h index 966d212..6ef4944 100644 --- a/include/pgAgent.h +++ b/include/pgAgent.h @@ -2,7 +2,7 @@ // // pgAgent - PostgreSQL Tools // -// Copyright (C) 2002 - 2012, The pgAdmin Development Team +// Copyright (C) 2002 - 2014, The pgAdmin Development Team // This software is released under the PostgreSQL Licence // // pgAgent.h - main include diff --git a/job.cpp b/job.cpp index f9bf487..00334ab 100644 --- a/job.cpp +++ b/job.cpp @@ -2,7 +2,7 @@ // // pgAgent - PostgreSQL Tools // -// Copyright (C) 2002 - 2012 The pgAdmin Development Team +// Copyright (C) 2002 - 2014 The pgAdmin Development Team // This software is released under the PostgreSQL Licence // // job.cpp - pgAgent job diff --git a/misc.cpp b/misc.cpp index da9c4ee..dfd56a0 100644 --- a/misc.cpp +++ b/misc.cpp @@ -2,7 +2,7 @@ // // pgAgent - PostgreSQL Tools // -// Copyright (C) 2002 - 2012 The pgAdmin Development Team +// Copyright (C) 2002 - 2014 The pgAdmin Development Team // This software is released under the PostgreSQL Licence // // misc.cpp - misc functions diff --git a/pgAgent.cpp b/pgAgent.cpp index 1fe109b..5ed43fb 100644 --- a/pgAgent.cpp +++ b/pgAgent.cpp @@ -2,7 +2,7 @@ // // pgAgent - PostgreSQL Tools // -// Copyright (C) 2002 - 2012, The pgAdmin Development Team +// Copyright (C) 2002 - 2014, The pgAdmin Development Team // This software is released under the PostgreSQL Licence // // pgAgent.cpp - pgAgent main entry diff --git a/pgAgent.rc b/pgAgent.rc index 969ff45..2c8fceb 100644 --- a/pgAgent.rc +++ b/pgAgent.rc @@ -1,8 +1,8 @@ ////////////////////////////////////////////////////////////////////////// // // pgAgent - PostgreSQL Tools -// $Id$ -// Copyright (C) 2002 - 2012, The pgAdmin Development Team +// +// Copyright (C) 2002 - 2014, The pgAdmin Development Team // This software is released under the PostgreSQL Licence // // pgAgent.rc - win32 Resources diff --git a/pgaevent/CMakeLists.txt b/pgaevent/CMakeLists.txt index 1a13e59..10478c3 100644 --- a/pgaevent/CMakeLists.txt +++ b/pgaevent/CMakeLists.txt @@ -1,7 +1,7 @@ ####################################################################### # # pgAgent - PostgreSQL tools -# Copyright (C) 2002 - 2012, The pgAdmin Development Team +# Copyright (C) 2002 - 2014, The pgAdmin Development Team # This software is released under the PostgreSQL Licence # # pgaevent/CMakeLists.txt - CMake build configuration diff --git a/pgaevent/pgaevent.c b/pgaevent/pgaevent.c index f20b7f2..a66ed42 100644 --- a/pgaevent/pgaevent.c +++ b/pgaevent/pgaevent.c @@ -2,7 +2,7 @@ // // pgAgent - PostgreSQL Tools // -// Copyright (C) 2002 - 2012, The pgAdmin Development Team +// Copyright (C) 2002 - 2014, The pgAdmin Development Team // This software is released under the PostgreSQL Licence // // pgaevent.c - win32 message format dll diff --git a/pgaevent/pgaevent.def b/pgaevent/pgaevent.def index cc63007..c9e222d 100644 --- a/pgaevent/pgaevent.def +++ b/pgaevent/pgaevent.def @@ -2,7 +2,7 @@ ; // ; // pgAgent - PostgreSQL Tools ; // -; // Copyright (C) 2002 - 2012 The pgAdmin Development Team +; // Copyright (C) 2002 - 2014 The pgAdmin Development Team ; // This software is released under the PostgreSQL Licence ; // ; // pgaeventdef - pgaevent.dll exports diff --git a/pgaevent/pgamsgevent.h b/pgaevent/pgamsgevent.h index d540f69..b8e11a5 100644 --- a/pgaevent/pgamsgevent.h +++ b/pgaevent/pgamsgevent.h @@ -2,7 +2,7 @@ // // pgAgent - PostgreSQL Tools // -// Copyright (C) 2002 - 2012, The pgAdmin Development Team +// Copyright (C) 2002 - 2014, The pgAdmin Development Team // This software is released under the PostgreSQL Licence // // pgamsgevent.h - Message id declarations diff --git a/pgaevent/pgamsgevent.rc b/pgaevent/pgamsgevent.rc index a2fedd1..a6f31e5 100644 --- a/pgaevent/pgamsgevent.rc +++ b/pgaevent/pgamsgevent.rc @@ -2,7 +2,7 @@ // // pgAgent - PostgreSQL Tools // -// Copyright (C) 2002 - 2012, The pgAdmin Development Team +// Copyright (C) 2002 - 2014, The pgAdmin Development Team // This software is released under the PostgreSQL Licence // // pgaevent.rc - win32 Resources @@ -31,7 +31,7 @@ BEGIN VALUE "FileVersion", "3.2.1", "\0" VALUE "File Version", "3.2.1", "\0" VALUE "FileDescription", "pgaevent - pgAgent Event Log Message DLL", "\0" - VALUE "LegalCopyright", "\251 2002 - 2012, The pgAdmin Development Team", "\0" + VALUE "LegalCopyright", "\251 2002 - 2014, The pgAdmin Development Team", "\0" VALUE "LegalTrademarks", "This software is released under the PostgreSQL Licence.", "\0" VALUE "InternalName", "pgaevent", "\0" VALUE "OriginalFilename","pgaevent.dll", "\0" diff --git a/precomp.cpp b/precomp.cpp index 09e5b41..02c969f 100644 --- a/precomp.cpp +++ b/precomp.cpp @@ -2,7 +2,7 @@ // // pgAgent - PostgreSQL Tools // -// Copyright (C) 2002 - 2012, The pgAdmin Development Team +// Copyright (C) 2002 - 2014, The pgAdmin Development Team // This software is released under the PostgreSQL Licence // // precomp.cpp - pgAgent precompiled headers diff --git a/sql/pgagent--unpackaged--3.3.0.sql b/sql/pgagent--unpackaged--3.3.0.sql index ef823d0..4af21f7 100644 --- a/sql/pgagent--unpackaged--3.3.0.sql +++ b/sql/pgagent--unpackaged--3.3.0.sql @@ -1,3 +1,13 @@ +/* +// pgAgent - PostgreSQL Tools +// +// Copyright (C) 2002 - 2014 The pgAdmin Development Team +// This software is released under the PostgreSQL Licence +// +// pgagent--unpackaged--3.0.0.sql - Convert pgAgent existing tables and functions to an extension +// +*/ + \echo Use "CREATE EXTENSION pgagent FROM unpackaged" to load this file. \quit ALTER EXTENSION pgagent ADD TABLE pgagent.pga_jobagent; diff --git a/sql/pgagent.sql b/sql/pgagent.sql index dfe0474..785b986 100644 --- a/sql/pgagent.sql +++ b/sql/pgagent.sql @@ -1,7 +1,7 @@ /* // pgAgent - PostgreSQL Tools // -// Copyright (C) 2002 - 2012 The pgAdmin Development Team +// Copyright (C) 2002 - 2014 The pgAdmin Development Team // This software is released under the PostgreSQL Licence // // pgagent.sql - pgAgent tables and functions diff --git a/sql/pgagent_upgrade.sql b/sql/pgagent_upgrade.sql index 650b1cf..ae0d995 100644 --- a/sql/pgagent_upgrade.sql +++ b/sql/pgagent_upgrade.sql @@ -1,7 +1,7 @@ /* // pgAgent - PostgreSQL Tools // -// Copyright (C) 2002 - 2012 The pgAdmin Development Team +// Copyright (C) 2002 - 2014 The pgAdmin Development Team // This software is released under the PostgreSQL Licence // // pgagent_upgrade.sql - Upgrade pgAgent tables and functions diff --git a/unix.cpp b/unix.cpp index 84a95dc..34ad0f6 100644 --- a/unix.cpp +++ b/unix.cpp @@ -2,7 +2,7 @@ // // pgAgent - PostgreSQL Tools // -// Copyright (C) 2002 - 2012, The pgAdmin Development Team +// Copyright (C) 2002 - 2014, The pgAdmin Development Team // This software is released under the PostgreSQL Licence // // unix.cpp - pgAgent unix specific functions diff --git a/win32.cpp b/win32.cpp index 254f818..aa5d5d7 100644 --- a/win32.cpp +++ b/win32.cpp @@ -2,7 +2,7 @@ // // pgAgent - PostgreSQL Tools // -// Copyright (C) 2002 - 2012 The pgAdmin Development Team +// Copyright (C) 2002 - 2014 The pgAdmin Development Team // This software is released under the PostgreSQL Licence // // win32.cpp - pgAgent win32 specific functions