Title: [987] trunk: Let all source files have the same short header
Revision
987
Author
cito
Date
2019-04-24 10:17:07 -0400 (Wed, 24 Apr 2019)

Log Message

Let all source files have the same short header

The file header contains a note about the file content,
the copyright info and a reference to the LICENSE.TXT.

Modified Paths

Diff

Modified: trunk/LICENSE.txt (986 => 987)


--- trunk/LICENSE.txt	2019-04-24 13:23:31 UTC (rev 986)
+++ trunk/LICENSE.txt	2019-04-24 14:17:07 UTC (rev 987)
@@ -1,4 +1,4 @@
-Written by D'Arcy J.M. Cain (da...@druid.net)
+Written by D'Arcy J.M. Cain (da...@pygresql.org)
 
 Based heavily on code written by Pascal Andre (an...@chimay.via.ecp.fr)
 
@@ -5,9 +5,8 @@
 Copyright (c) 1995, Pascal Andre
 
 Further modifications copyright (c) 1997-2008 by D'Arcy J.M. Cain
-(da...@pygresql.org)
 
-Further modifications copyright (c) 2009-2019 by the PyGreSQL team.
+Further modifications copyright (c) 2009-2019 by the PyGreSQL Development Team
 
 PyGreSQL is released under the PostgreSQL License, a liberal Open Source
 license, similar to the BSD or MIT licenses:

Modified: trunk/conn.c (986 => 987)


--- trunk/conn.c	2019-04-24 13:23:31 UTC (rev 986)
+++ trunk/conn.c	2019-04-24 14:17:07 UTC (rev 987)
@@ -1,8 +1,14 @@
 /*
  * $Id: conn.c 985 2019-04-22 22:07:43Z cito $
  *
- * This file is part of PyGreSQL (connection object implementation).
+ * PyGreSQL - a Python interface for the PostgreSQL database.
  *
+ * The connection object - this file is part a of the C extension module.
+ *
+ * Copyright (c) 2019 by the PyGreSQL Development Team
+ *
+ * Please see the LICENSE.TXT file for specific restrictions.
+ *
  */
 
 /* Deallocate connection object */

Modified: trunk/internal.c (986 => 987)


--- trunk/internal.c	2019-04-24 13:23:31 UTC (rev 986)
+++ trunk/internal.c	2019-04-24 14:17:07 UTC (rev 987)
@@ -1,8 +1,14 @@
 /*
  * $Id: conn.c 985 2019-04-22 22:07:43Z cito $
  *
- * This file is part of PyGreSQL (internal helper functions).
+ * PyGreSQL - a Python interface for the PostgreSQL database.
  *
+ * Internal functions - this file is part a of the C extension module.
+ *
+ * Copyright (c) 2019 by the PyGreSQL Development Team
+ *
+ * Please see the LICENSE.TXT file for specific restrictions.
+ *
  */
 
 /* PyGreSQL internal types */

Modified: trunk/large.c (986 => 987)


--- trunk/large.c	2019-04-24 13:23:31 UTC (rev 986)
+++ trunk/large.c	2019-04-24 14:17:07 UTC (rev 987)
@@ -1,8 +1,14 @@
 /*
  * $Id: conn.c 985 2019-04-22 22:07:43Z cito $
  *
- * This file is part of PyGreSQL (large object implementation).
+ * PyGreSQL - a Python interface for the PostgreSQL database.
  *
+ * Large object support - this file is part a of the C extension module.
+ *
+ * Copyright (c) 2019 by the PyGreSQL Development Team
+ *
+ * Please see the LICENSE.TXT file for specific restrictions.
+ *
  */
 
 /* Deallocate large object */

Modified: trunk/notice.c (986 => 987)


--- trunk/notice.c	2019-04-24 13:23:31 UTC (rev 986)
+++ trunk/notice.c	2019-04-24 14:17:07 UTC (rev 987)
@@ -1,8 +1,14 @@
 /*
  * $Id: conn.c 985 2019-04-22 22:07:43Z cito $
  *
- * This file is part of PyGreSQL (notice object implementation).
+ * PyGreSQL - a Python interface for the PostgreSQL database.
  *
+ * The notice object - this file is part a of the C extension module.
+ *
+ * Copyright (c) 2019 by the PyGreSQL Development Team
+ *
+ * Please see the LICENSE.TXT file for specific restrictions.
+ *
  */
 
 /* Get notice object attributes */

Modified: trunk/pg.py (986 => 987)


--- trunk/pg.py	2019-04-24 13:23:31 UTC (rev 986)
+++ trunk/pg.py	2019-04-24 14:17:07 UTC (rev 987)
@@ -1,10 +1,16 @@
 #!/usr/bin/python
 #
-# pg.py
-#
 # $Id$
 #
+# PyGreSQL - a Python interface for the PostgreSQL database.
+#
+# This file contains the classic pg module.
+#
+# Copyright (c) 2019 by the PyGreSQL Development Team
+#
+# Please see the LICENSE.TXT file for specific restrictions.
 
+
 """PyGreSQL classic interface.
 
 This pg module implements some basic database management stuff.

Modified: trunk/pgdb.py (986 => 987)


--- trunk/pgdb.py	2019-04-24 13:23:31 UTC (rev 986)
+++ trunk/pgdb.py	2019-04-24 14:17:07 UTC (rev 987)
@@ -1,11 +1,14 @@
 #!/usr/bin/python
 #
-# pgdb.py
+# $Id$
 #
-# Written by D'Arcy J.M. Cain
+# PyGreSQL - a Python interface for the PostgreSQL database.
 #
-# $Id$
+# This file contains the DB-API 2 compatible pgdb module.
 #
+# Copyright (c) 2019 by the PyGreSQL Development Team
+#
+# Please see the LICENSE.TXT file for specific restrictions.
 
 """pgdb - DB-API 2.0 compliant module for PygreSQL.
 

Modified: trunk/pgmodule.c (986 => 987)


--- trunk/pgmodule.c	2019-04-24 13:23:31 UTC (rev 986)
+++ trunk/pgmodule.c	2019-04-24 14:17:07 UTC (rev 987)
@@ -3,32 +3,12 @@
  *
  * PyGreSQL - a Python interface for the PostgreSQL database.
  *
- * Written by D'Arcy J.M. Cain (da...@druid.net)
- * Based heavily on code written by Pascal Andre (an...@chimay.via.ecp.fr)
- * Copyright (c) 1995, Pascal Andre
- * Further modifications copyright (c) 1997-2008 by D'Arcy J.M. Cain
- * (da...@pygresql.org)
- * Further modifications copyright (c) 2009-2019 by the PyGreSQL team
+ * This is the main file for the C extension module.
  *
- * PyGreSQL is released under the PostgreSQL License, a liberal Open Source
- * license, similar to the BSD or MIT licenses:
+ * Copyright (c) 2019 by the PyGreSQL 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 hereby granted, provided that the above copyright notice and
- * this paragraph and the following two paragraphs appear in all copies or in
- * any new file that contains a substantial portion of this file.
+ * Please see the LICENSE.TXT file for specific restrictions.
  *
- * IN NO EVENT SHALL THE AUTHOR BE LIABLE TO ANY PARTY FOR DIRECT, INDIRECT,
- * SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES, INCLUDING LOST PROFITS,
- * ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN IF THE
- * AUTHOR HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
- *
- * THE AUTHOR SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, BUT NOT LIMITED
- * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
- * PURPOSE.  THE SOFTWARE PROVIDED HEREUNDER IS ON AN "AS IS" BASIS, AND THE
- * AUTHOR HAS NO OBLIGATIONS TO PROVIDE MAINTENANCE, SUPPORT, UPDATES,
- * ENHANCEMENTS, OR MODIFICATIONS.
  */
 
 /* Note: This should be linked against the same C runtime lib as Python */

Modified: trunk/query.c (986 => 987)


--- trunk/query.c	2019-04-24 13:23:31 UTC (rev 986)
+++ trunk/query.c	2019-04-24 14:17:07 UTC (rev 987)
@@ -1,8 +1,14 @@
 /*
  * $Id: conn.c 985 2019-04-22 22:07:43Z cito $
  *
- * This file is part of PyGreSQL (query object implementation).
+ * PyGreSQL - a Python interface for the PostgreSQL database.
  *
+ * The query object - this file is part a of the C extension module.
+ *
+ * Copyright (c) 2019 by the PyGreSQL Development Team
+ *
+ * Please see the LICENSE.TXT file for specific restrictions.
+ *
  */
 
 /* Deallocate query object */

Modified: trunk/setup.py (986 => 987)


--- trunk/setup.py	2019-04-24 13:23:31 UTC (rev 986)
+++ trunk/setup.py	2019-04-24 14:17:07 UTC (rev 987)
@@ -1,5 +1,12 @@
 #!/usr/bin/python
+#
 # $Id$
+#
+# PyGreSQL - a Python interface for the PostgreSQL database.
+#
+# Copyright (c) 2019 by the PyGreSQL Development Team
+#
+# Please see the LICENSE.TXT file for specific restrictions.
 
 """Setup script for PyGreSQL version 5.1
 

Modified: trunk/source.c (986 => 987)


--- trunk/source.c	2019-04-24 13:23:31 UTC (rev 986)
+++ trunk/source.c	2019-04-24 14:17:07 UTC (rev 987)
@@ -1,8 +1,14 @@
 /*
  * $Id: conn.c 985 2019-04-22 22:07:43Z cito $
  *
- * This file is part of PyGreSQL (source object implementation).
+ * PyGreSQL - a Python interface for the PostgreSQL database.
  *
+ * The source object - this file is part a of the C extension module.
+ *
+ * Copyright (c) 2019 by the PyGreSQL Development Team
+ *
+ * Please see the LICENSE.TXT file for specific restrictions.
+ *
  */
 
 /* Deallocate source object */
_______________________________________________
PyGreSQL mailing list
PyGreSQL@Vex.Net
https://mail.vex.net/mailman/listinfo/pygresql

Reply via email to