From d2d49ab13c98bc7a1819a0fd3968268a5567bdc3 Mon Sep 17 00:00:00 2001 From: Kevin Rosenberg Date: Sat, 6 Feb 2010 02:17:01 -0700 Subject: [PATCH] Remove CVS $Id$ keyword --- Makefile | 8 +++--- clsql.asd | 4 +-- db-aodbc/aodbc-package.lisp | 2 -- db-aodbc/aodbc-sql.lisp | 2 -- db-db2/Makefile | 6 +++-- db-db2/db2-api.lisp | 2 -- db-db2/db2-constants.lisp | 2 -- db-db2/db2-loader.lisp | 2 -- db-db2/db2-objects.lisp | 2 -- db-db2/db2-package.lisp | 2 -- db-db2/db2-sql.lisp | 2 -- db-db2/foreign-resources.lisp | 2 -- db-mysql/Makefile.msvc | 4 +-- db-mysql/clsql_mysql.c | 2 -- db-mysql/mysql-client-info.lisp | 2 -- db-mysql/mysql-loader.lisp | 2 -- db-mysql/mysql-objects.lisp | 2 -- db-mysql/mysql-package.lisp | 2 -- db-odbc/Makefile | 6 +++-- db-odbc/odbc-api.lisp | 2 -- db-odbc/odbc-constants.lisp | 2 -- db-odbc/odbc-dbi.lisp | 2 -- db-odbc/odbc-ff-interface.lisp | 2 -- db-odbc/odbc-loader.lisp | 2 -- db-odbc/odbc-package.lisp | 2 -- db-odbc/odbc-sql.lisp | 2 -- db-oracle/Makefile | 6 +++-- db-oracle/foreign-resources.lisp | 2 -- db-oracle/oracle-api.lisp | 2 -- db-oracle/oracle-constants.lisp | 2 -- db-oracle/oracle-loader.lisp | 2 -- db-oracle/oracle-objects.lisp | 2 -- db-oracle/oracle-package.lisp | 2 -- db-oracle/oracle-sql.lisp | 2 -- .../postgresql-socket-api.lisp | 4 +-- .../postgresql-socket-package.lisp | 2 -- .../postgresql-socket-sql.lisp | 4 +-- db-postgresql/postgresql-api.lisp | 2 -- db-postgresql/postgresql-loader.lisp | 2 -- db-postgresql/postgresql-package.lisp | 2 -- db-postgresql/postgresql-sql.lisp | 2 -- db-sqlite/Makefile | 7 ++--- db-sqlite/sqlite-api.lisp | 2 -- db-sqlite/sqlite-loader.lisp | 2 -- db-sqlite/sqlite-package.lisp | 2 -- db-sqlite/sqlite-sql.lisp | 4 +-- db-sqlite3/sqlite3-api.lisp | 2 -- db-sqlite3/sqlite3-loader.lisp | 2 -- db-sqlite3/sqlite3-package.lisp | 2 -- db-sqlite3/sqlite3-sql.lisp | 4 +-- doc/Makefile | 9 +++---- doc/bookinfo.xml | 6 +---- examples/sqlite3/init-func/Makefile | 6 +++-- examples/sqlite3/init-func/example.lisp | 4 +-- examples/sqlite3/init-func/iso-8859-15-coll.c | 2 -- sql/Makefile | 8 +++--- sql/base-classes.lisp | 4 +-- sql/cmucl-compat.lisp | 4 +-- sql/conditions.lisp | 4 +-- sql/database.lisp | 2 -- sql/db-interface.lisp | 4 +-- sql/expressions.lisp | 2 -- sql/fddl.lisp | 2 -- sql/generic-odbc.lisp | 2 -- sql/generic-postgresql.lisp | 2 -- sql/generics.lisp | 6 ++--- sql/initialize.lisp | 6 ++--- sql/kmr-mop.lisp | 2 -- sql/loop-extension.lisp | 1 - sql/ooddl.lisp | 2 -- sql/operations.lisp | 2 -- sql/package.lisp | 2 -- sql/pool.lisp | 4 +-- sql/recording.lisp | 2 -- sql/sequences.lisp | 2 -- sql/syntax.lisp | 2 -- tests/Makefile | 10 ++++--- tests/benchmarks.lisp | 15 ++++++----- tests/package.lisp | 15 ++++++----- tests/test-basic.lisp | 4 +-- tests/test-connection.lisp | 14 +++++----- tests/test-fddl.lisp | 26 +++++++++---------- tests/test-internal.lisp | 4 +-- tests/test-ooddl.lisp | 15 +++++------ tests/test-syntax.lisp | 21 +++++++-------- tests/utils.lisp | 4 +-- uffi/Makefile.32+64bits | 7 ++--- uffi/Makefile.msvc | 6 +---- uffi/clsql-uffi-loader.lisp | 4 +-- uffi/clsql-uffi-package.lisp | 4 +-- uffi/clsql-uffi.lisp | 4 +-- uffi/clsql_uffi.c | 4 +-- 92 files changed, 123 insertions(+), 261 deletions(-) diff --git a/Makefile b/Makefile index d64e822..0565167 100644 --- a/Makefile +++ b/Makefile @@ -1,3 +1,5 @@ +#!/usr/bin/make +########################################################################## # FILE IDENTIFICATION # # Name: Makefile @@ -5,13 +7,13 @@ # Programer: Kevin M. Rosenberg # Date Started: Mar 2002 # -# CVS Id: $Id$ -# -# This file, part of CLSQL, is Copyright (c) 2002-2004 by Kevin M. Rosenberg +# This file, part of CLSQL, is Copyright (c) 2002-2010 by Kevin M. Rosenberg # # CLSQL users are granted the rights to distribute and use this software # as governed by the terms of the Lisp Lesser GNU Public License # (http://opensource.franz.com/preamble.html), also known as the LLGPL. +########################################################################## + PKG := clsql DEBPKG := cl-sql diff --git a/clsql.asd b/clsql.asd index c28225e..3f57f24 100644 --- a/clsql.asd +++ b/clsql.asd @@ -35,8 +35,8 @@ :licence "Lessor Lisp General Public License" :description "Common Lisp SQL Interface library" :long-description "A Common Lisp interface to SQL RDBMS based on -the Xanalys CommonSQL interface for Lispworks. It depends on the -low-level database interfaces as well as a functional and an object +the Xanalys CommonSQL interface for Lispworks. It provides low-level +database interfaces as well as a functional and an object oriented interface." :components ((:module sql diff --git a/db-aodbc/aodbc-package.lisp b/db-aodbc/aodbc-package.lisp index d00e579..40d08f5 100644 --- a/db-aodbc/aodbc-package.lisp +++ b/db-aodbc/aodbc-package.lisp @@ -7,8 +7,6 @@ ;;;; Programmer: Kevin M. Rosenberg ;;;; Date Started: Feb 2002 ;;;; -;;;; $Id$ -;;;; ;;;; This file, part of CLSQL, is Copyright (c) 2002 by Kevin M. Rosenberg ;;;; ;;;; CLSQL users are granted the rights to distribute and use this software diff --git a/db-aodbc/aodbc-sql.lisp b/db-aodbc/aodbc-sql.lisp index e83b3fe..98f9ec8 100644 --- a/db-aodbc/aodbc-sql.lisp +++ b/db-aodbc/aodbc-sql.lisp @@ -7,8 +7,6 @@ ;;;; Programmer: Kevin M. Rosenberg ;;;; Date Started: Feb 2002 ;;;; -;;;; $Id$ -;;;; ;;;; This file, part of CLSQL, is Copyright (c) 2002 by Kevin M. Rosenberg ;;;; ;;;; CLSQL users are granted the rights to distribute and use this software diff --git a/db-db2/Makefile b/db-db2/Makefile index 8a26499..e6f2448 100644 --- a/db-db2/Makefile +++ b/db-db2/Makefile @@ -1,3 +1,5 @@ +#!/usr/bin/make +########################################################################## # FILE IDENTIFICATION # # Name: Makefile @@ -5,13 +7,13 @@ # Author: Kevin M. Rosenberg # Created: May 2004 # -# CVS Id: $Id$ -# # This file, part of CLSQL, is Copyright (c) 2004 by Kevin M. Rosenberg # # CLSQL users are granted the rights to distribute and use this software # as governed by the terms of the Lisp Lesser GNU Public License # (http://opensource.franz.com/preamble.html), also known as the LLGPL. +########################################################################## + SUBDIRS= diff --git a/db-db2/db2-api.lisp b/db-db2/db2-api.lisp index 8d4ef01..42d2609 100644 --- a/db-db2/db2-api.lisp +++ b/db-db2/db2-api.lisp @@ -5,8 +5,6 @@ ;;;; Name: db2.lisp ;;;; Purpose: Package definition for CLSQL Db2 interface ;;;; -;;;; $Id$ -;;;; ;;;; This file is part of CLSQL. ;;;; ;;;; CLSQL users are granted the rights to distribute and use this software diff --git a/db-db2/db2-constants.lisp b/db-db2/db2-constants.lisp index bb597ef..7429375 100644 --- a/db-db2/db2-constants.lisp +++ b/db-db2/db2-constants.lisp @@ -5,8 +5,6 @@ ;;;; Name: db2-constants.lisp ;;;; Purpose: Constants for CLSQL Db2 interface ;;;; -;;;; $Id$ -;;;; ;;;; This file is part of CLSQL. ;;;; ;;;; CLSQL users are granted the rights to distribute and use this software diff --git a/db-db2/db2-loader.lisp b/db-db2/db2-loader.lisp index 36701f0..5e5251b 100644 --- a/db-db2/db2-loader.lisp +++ b/db-db2/db2-loader.lisp @@ -5,8 +5,6 @@ ;;;; Name: db2-loader.lisp ;;;; Purpose: Foreign library loader for CLSQL Db2 interface ;;;; -;;;; $Id$ -;;;; ;;;; This file is part of CLSQL. ;;;; ;;;; CLSQL users are granted the rights to distribute and use this software diff --git a/db-db2/db2-objects.lisp b/db-db2/db2-objects.lisp index cb1d2ba..90e65b1 100644 --- a/db-db2/db2-objects.lisp +++ b/db-db2/db2-objects.lisp @@ -4,8 +4,6 @@ ;;;; ;;;; Name: db2-objects.lisp ;;;; -;;;; $Id$ -;;;; ;;;; This file is part of CLSQL. ;;;; ;;;; CLSQL users are granted the rights to distribute and use this software diff --git a/db-db2/db2-package.lisp b/db-db2/db2-package.lisp index df08104..c51dc6c 100644 --- a/db-db2/db2-package.lisp +++ b/db-db2/db2-package.lisp @@ -5,8 +5,6 @@ ;;;; Name: db2-package.cl ;;;; Purpose: Package definition for CLSQL Db2 interface ;;;; -;;;; $Id$ -;;;; ;;;; This file is part of CLSQL. ;;;; ;;;; CLSQL users are granted the rights to distribute and use this software diff --git a/db-db2/db2-sql.lisp b/db-db2/db2-sql.lisp index 2244f77..aa7901e 100644 --- a/db-db2/db2-sql.lisp +++ b/db-db2/db2-sql.lisp @@ -4,8 +4,6 @@ ;;;; ;;;; Name: db2-sql.lisp ;;;; -;;;; $Id$ -;;;; ;;;; This file is part of CLSQL. ;;;; ;;;; CLSQL users are granted the rights to distribute and use this software diff --git a/db-db2/foreign-resources.lisp b/db-db2/foreign-resources.lisp index ea17376..c141bcd 100644 --- a/db-db2/foreign-resources.lisp +++ b/db-db2/foreign-resources.lisp @@ -2,8 +2,6 @@ ;;;; ************************************************************************* ;;;; FILE IDENTIFICATION ;;;; -;;;; $Id$ -;;;; ;;;; This file is part of CLSQL. ;;;; ;;;; CLSQL users are granted the rights to distribute and use this software diff --git a/db-mysql/Makefile.msvc b/db-mysql/Makefile.msvc index c2767ba..176c559 100755 --- a/db-mysql/Makefile.msvc +++ b/db-mysql/Makefile.msvc @@ -7,9 +7,7 @@ # Author: Kevin M. Rosenberg # Created: Mar 2002 # -# CVS Id: $Id: Makefile.msvc,v 1.1 2002/09/18 07:43:40 kevin Exp $ -# -# This file, part of CLSQL, is Copyright (c) 2002-2009 by Kevin M. Rosenberg +# This file, part of CLSQL, is Copyright (c) 2002-2010 by Kevin M. Rosenberg # # CLSQL users are granted the rights to distribute and use this software # as governed by the terms of the Lisp Lesser GNU Public License diff --git a/db-mysql/clsql_mysql.c b/db-mysql/clsql_mysql.c index 372ee0a..ebbb8e1 100644 --- a/db-mysql/clsql_mysql.c +++ b/db-mysql/clsql_mysql.c @@ -6,8 +6,6 @@ * Programmer: Kevin M. Rosenberg * Date Started: Mar 2002 * - * $Id$ - * * This file, part of CLSQL, is Copyright (c) 2002 by Kevin M. Rosenberg * * CLSQL users are granted the rights to distribute and use this software diff --git a/db-mysql/mysql-client-info.lisp b/db-mysql/mysql-client-info.lisp index 54d9724..d27c758 100644 --- a/db-mysql/mysql-client-info.lisp +++ b/db-mysql/mysql-client-info.lisp @@ -7,8 +7,6 @@ ;;;; Programmer: Kevin M. Rosenberg ;;;; Date Started: April 2004 ;;;; -;;;; $Id$ -;;;; ;;;; This file, part of CLSQL, is Copyright (c) 2004 by Kevin M. Rosenberg ;;;; ;;;; CLSQL users are granted the rights to distribute and use this software diff --git a/db-mysql/mysql-loader.lisp b/db-mysql/mysql-loader.lisp index 3395e71..cdf28cd 100644 --- a/db-mysql/mysql-loader.lisp +++ b/db-mysql/mysql-loader.lisp @@ -7,8 +7,6 @@ ;;;; Author: Kevin M. Rosenberg ;;;; Created: Feb 2002 ;;;; -;;;; $Id$ -;;;; ;;;; This file, part of CLSQL, is Copyright (c) 2002-2004 by Kevin M. Rosenberg ;;;; ;;;; CLSQL users are granted the rights to distribute and use this software diff --git a/db-mysql/mysql-objects.lisp b/db-mysql/mysql-objects.lisp index 76ce5e5..015edbb 100644 --- a/db-mysql/mysql-objects.lisp +++ b/db-mysql/mysql-objects.lisp @@ -6,8 +6,6 @@ ;;;; Purpose: CLSQL Object layer for MySQL ;;;; Created: May 2004 ;;;; -;;;; $Id$ -;;;; ;;;; CLSQL users are granted the rights to distribute and use this software ;;;; as governed by the terms of the Lisp Lesser GNU Public License ;;;; (http://opensource.franz.com/preamble.html), also known as the LLGPL. diff --git a/db-mysql/mysql-package.lisp b/db-mysql/mysql-package.lisp index 53f1389..5476478 100644 --- a/db-mysql/mysql-package.lisp +++ b/db-mysql/mysql-package.lisp @@ -7,8 +7,6 @@ ;;;; Programmers: Kevin M. Rosenberg ;;;; Date Started: Feb 2002 ;;;; -;;;; $Id$ -;;;; ;;;; This file, part of CLSQL, is Copyright (c) 2002 by Kevin M. Rosenberg ;;;; ;;;; CLSQL users are granted the rights to distribute and use this software diff --git a/db-odbc/Makefile b/db-odbc/Makefile index 1003d8a..2497b4f 100644 --- a/db-odbc/Makefile +++ b/db-odbc/Makefile @@ -1,3 +1,5 @@ +#!/usr/bin/make +########################################################################## # FILE IDENTIFICATION # # Name: Makefile @@ -5,13 +7,13 @@ # Programer: Kevin M. Rosenberg # Date Started: Mar 2002 # -# CVS Id: $Id$ -# # This file, part of CLSQL, is Copyright (c) 2002 by Kevin M. Rosenberg # # CLSQL users are granted the rights to distribute and use this software # as governed by the terms of the Lisp Lesser GNU Public License # (http://opensource.franz.com/preamble.html), also known as the LLGPL. +########################################################################## + SUBDIRS= diff --git a/db-odbc/odbc-api.lisp b/db-odbc/odbc-api.lisp index 85f160a..dfdbe21 100644 --- a/db-odbc/odbc-api.lisp +++ b/db-odbc/odbc-api.lisp @@ -6,8 +6,6 @@ ;;;; Purpose: Low-level ODBC API using UFFI ;;;; Authors: Kevin M. Rosenberg and Paul Meurer ;;;; -;;;; $Id$ -;;;; ;;;; This file, part of CLSQL, is Copyright (c) 2004 by Kevin M. Rosenberg ;;;; and Copyright (C) Paul Meurer 1999 - 2001. All rights reserved. ;;;; diff --git a/db-odbc/odbc-constants.lisp b/db-odbc/odbc-constants.lisp index 4dfef88..8f9152e 100644 --- a/db-odbc/odbc-constants.lisp +++ b/db-odbc/odbc-constants.lisp @@ -6,8 +6,6 @@ ;;;; Purpose: Constants for UFFI interface to ODBC ;;;; Authors: Kevin M. Rosenberg and Paul Meurer ;;;; -;;;; $Id$ -;;;; ;;;; This file, part of CLSQL, is Copyright (c) 2004 by Kevin M. Rosenberg ;;;; and Copyright (C) Paul Meurer 1999 - 2001. All rights reserved. ;;;; diff --git a/db-odbc/odbc-dbi.lisp b/db-odbc/odbc-dbi.lisp index 6723a1a..fb33f52 100644 --- a/db-odbc/odbc-dbi.lisp +++ b/db-odbc/odbc-dbi.lisp @@ -7,8 +7,6 @@ ;;;; Author: Kevin M. Rosenberg ;;;; Create: April 2004 ;;;; -;;;; $Id$ -;;;; ;;;; This file, part of CLSQL, is Copyright (c) 2002 by Kevin M. Rosenberg ;;;; ;;;; CLSQL users are granted the rights to distribute and use this software diff --git a/db-odbc/odbc-ff-interface.lisp b/db-odbc/odbc-ff-interface.lisp index 2ae944d..68270c8 100644 --- a/db-odbc/odbc-ff-interface.lisp +++ b/db-odbc/odbc-ff-interface.lisp @@ -6,8 +6,6 @@ ;;;; Purpose: Function definitions for UFFI interface to ODBC ;;;; Author: Kevin M. Rosenberg ;;;; -;;;; $Id$ -;;;; ;;;; This file, part of CLSQL, is Copyright (c) 2004 by Kevin M. Rosenberg ;;;; and Copyright (C) Paul Meurer 1999 - 2001. All rights reserved. ;;;; diff --git a/db-odbc/odbc-loader.lisp b/db-odbc/odbc-loader.lisp index 5d58719..16f1ec1 100644 --- a/db-odbc/odbc-loader.lisp +++ b/db-odbc/odbc-loader.lisp @@ -7,8 +7,6 @@ ;;;; Programmers: Kevin M. Rosenberg ;;;; Date Started: April 2004 ;;;; -;;;; $Id$ -;;;; ;;;; This file, part of CLSQL, is Copyright (c) 2004 by Kevin M. Rosenberg ;;;; ;;;; CLSQL users are granted the rights to distribute and use this software diff --git a/db-odbc/odbc-package.lisp b/db-odbc/odbc-package.lisp index 668fd9a..cc91f6f 100644 --- a/db-odbc/odbc-package.lisp +++ b/db-odbc/odbc-package.lisp @@ -7,8 +7,6 @@ ;;;; Author: Kevin M. Rosenberg ;;;; Created: April 2004 ;;;; -;;;; $Id$ -;;;; ;;;; This file, part of CLSQL, is Copyright (c) 2004 by Kevin M. Rosenberg ;;;; ;;;; CLSQL users are granted the rights to distribute and use this software diff --git a/db-odbc/odbc-sql.lisp b/db-odbc/odbc-sql.lisp index 79fd4a5..dfb0b45 100644 --- a/db-odbc/odbc-sql.lisp +++ b/db-odbc/odbc-sql.lisp @@ -7,8 +7,6 @@ ;;;; Programmer: Kevin M. Rosenberg ;;;; Date Started: Feb 2002 ;;;; -;;;; $Id$ -;;;; ;;;; This file, part of CLSQL, is Copyright (c) 2002 by Kevin M. Rosenberg ;;;; ;;;; CLSQL users are granted the rights to distribute and use this software diff --git a/db-oracle/Makefile b/db-oracle/Makefile index ae4912b..f2d791e 100644 --- a/db-oracle/Makefile +++ b/db-oracle/Makefile @@ -1,3 +1,5 @@ +#!/usr/bin/make +########################################################################## # FILE IDENTIFICATION # # Name: Makefile @@ -5,13 +7,13 @@ # Author: Kevin M. Rosenberg # Created: May 2004 # -# CVS Id: $Id$ -# # This file, part of CLSQL, is Copyright (c) 2004 by Kevin M. Rosenberg # # CLSQL users are granted the rights to distribute and use this software # as governed by the terms of the Lisp Lesser GNU Public License # (http://opensource.franz.com/preamble.html), also known as the LLGPL. +########################################################################## + SUBDIRS= diff --git a/db-oracle/foreign-resources.lisp b/db-oracle/foreign-resources.lisp index fe6986b..3344cb4 100644 --- a/db-oracle/foreign-resources.lisp +++ b/db-oracle/foreign-resources.lisp @@ -2,8 +2,6 @@ ;;;; ************************************************************************* ;;;; FILE IDENTIFICATION ;;;; -;;;; $Id$ -;;;; ;;;; This file is part of CLSQL. ;;;; ;;;; CLSQL users are granted the rights to distribute and use this software diff --git a/db-oracle/oracle-api.lisp b/db-oracle/oracle-api.lisp index d51050b..1ebb0d9 100644 --- a/db-oracle/oracle-api.lisp +++ b/db-oracle/oracle-api.lisp @@ -5,8 +5,6 @@ ;;;; Name: oracle.lisp ;;;; Purpose: Package definition for CLSQL Oracle interface ;;;; -;;;; $Id$ -;;;; ;;;; This file is part of CLSQL. ;;;; ;;;; CLSQL users are granted the rights to distribute and use this software diff --git a/db-oracle/oracle-constants.lisp b/db-oracle/oracle-constants.lisp index 9462bfc..9f76323 100644 --- a/db-oracle/oracle-constants.lisp +++ b/db-oracle/oracle-constants.lisp @@ -5,8 +5,6 @@ ;;;; Name: oracle-constants.lisp ;;;; Purpose: Constants for CLSQL Oracle interface ;;;; -;;;; $Id$ -;;;; ;;;; This file is part of CLSQL. ;;;; ;;;; CLSQL users are granted the rights to distribute and use this software diff --git a/db-oracle/oracle-loader.lisp b/db-oracle/oracle-loader.lisp index 8ca48f9..f1493d3 100644 --- a/db-oracle/oracle-loader.lisp +++ b/db-oracle/oracle-loader.lisp @@ -5,8 +5,6 @@ ;;;; Name: oracle-loader.lisp ;;;; Purpose: Foreign library loader for CLSQL Oracle interface ;;;; -;;;; $Id$ -;;;; ;;;; This file is part of CLSQL. ;;;; ;;;; CLSQL users are granted the rights to distribute and use this software diff --git a/db-oracle/oracle-objects.lisp b/db-oracle/oracle-objects.lisp index 5c7d7fb..3e5a6b7 100644 --- a/db-oracle/oracle-objects.lisp +++ b/db-oracle/oracle-objects.lisp @@ -4,8 +4,6 @@ ;;;; ;;;; Name: oracle-objects.lisp ;;;; -;;;; $Id$ -;;;; ;;;; This file is part of CLSQL. ;;;; ;;;; CLSQL users are granted the rights to distribute and use this software diff --git a/db-oracle/oracle-package.lisp b/db-oracle/oracle-package.lisp index 462c858..d5c229f 100644 --- a/db-oracle/oracle-package.lisp +++ b/db-oracle/oracle-package.lisp @@ -5,8 +5,6 @@ ;;;; Name: oracle-package.cl ;;;; Purpose: Package definition for CLSQL Oracle interface ;;;; -;;;; $Id$ -;;;; ;;;; This file is part of CLSQL. ;;;; ;;;; CLSQL users are granted the rights to distribute and use this software diff --git a/db-oracle/oracle-sql.lisp b/db-oracle/oracle-sql.lisp index b0f5457..8475f47 100644 --- a/db-oracle/oracle-sql.lisp +++ b/db-oracle/oracle-sql.lisp @@ -4,8 +4,6 @@ ;;;; ;;;; Name: oracle-sql.lisp ;;;; -;;;; $Id$ -;;;; ;;;; This file is part of CLSQL. ;;;; ;;;; CLSQL users are granted the rights to distribute and use this software diff --git a/db-postgresql-socket/postgresql-socket-api.lisp b/db-postgresql-socket/postgresql-socket-api.lisp index 31756ef..b12424c 100644 --- a/db-postgresql-socket/postgresql-socket-api.lisp +++ b/db-postgresql-socket/postgresql-socket-api.lisp @@ -7,9 +7,7 @@ ;;;; Authors: Kevin M. Rosenberg based on original code by Pierre R. Mai ;;;; Created: Feb 2002 ;;;; -;;;; $Id$ -;;;; -;;;; This file, part of CLSQL, is Copyright (c) 2002-2004 by Kevin M. Rosenberg +;;;; This file, part of CLSQL, is Copyright (c) 2002-2010 by Kevin M. Rosenberg ;;;; and Copyright (c) 1999-2001 by Pierre R. Mai ;;;; ;;;; CLSQL users are granted the rights to distribute and use this software diff --git a/db-postgresql-socket/postgresql-socket-package.lisp b/db-postgresql-socket/postgresql-socket-package.lisp index aa15fa7..718667b 100644 --- a/db-postgresql-socket/postgresql-socket-package.lisp +++ b/db-postgresql-socket/postgresql-socket-package.lisp @@ -7,8 +7,6 @@ ;;;; Programmers: Kevin M. Rosenberg ;;;; Date Started: Feb 2002 ;;;; -;;;; $Id$ -;;;; ;;;; This file, part of CLSQL, is Copyright (c) 2002 by Kevin M. Rosenberg ;;;; ;;;; CLSQL users are granted the rights to distribute and use this software diff --git a/db-postgresql-socket/postgresql-socket-sql.lisp b/db-postgresql-socket/postgresql-socket-sql.lisp index 4f8457b..9183ca4 100644 --- a/db-postgresql-socket/postgresql-socket-sql.lisp +++ b/db-postgresql-socket/postgresql-socket-sql.lisp @@ -7,9 +7,7 @@ ;;;; Authors: Kevin M. Rosenberg based on original code by Pierre R. Mai ;;;; Created: Feb 2002 ;;;; -;;;; $Id$ -;;;; -;;;; This file, part of CLSQL, is Copyright (c) 2002-2007 by Kevin M. Rosenberg +;;;; This file, part of CLSQL, is Copyright (c) 2002-2010 by Kevin M. Rosenberg ;;;; and Copyright (c) 1999-2001 by Pierre R. Mai ;;;; ;;;; CLSQL users are granted the rights to distribute and use this software diff --git a/db-postgresql/postgresql-api.lisp b/db-postgresql/postgresql-api.lisp index fb474c5..c0b8a00 100644 --- a/db-postgresql/postgresql-api.lisp +++ b/db-postgresql/postgresql-api.lisp @@ -8,8 +8,6 @@ ;;;; Original code by Pierre R. Mai ;;;; Date Started: Feb 2002 ;;;; -;;;; $Id$ -;;;; ;;;; This file, part of CLSQL, is Copyright (c) 2002 by Kevin M. Rosenberg ;;;; and Copyright (c) 1999-2001 by Pierre R. Mai ;;;; diff --git a/db-postgresql/postgresql-loader.lisp b/db-postgresql/postgresql-loader.lisp index 160ca2c..42f6904 100644 --- a/db-postgresql/postgresql-loader.lisp +++ b/db-postgresql/postgresql-loader.lisp @@ -7,8 +7,6 @@ ;;;; Programmer: Kevin M. Rosenberg ;;;; Date Started: Feb 2002 ;;;; -;;;; $Id$ -;;;; ;;;; This file, part of CLSQL, is Copyright (c) 2002 by Kevin M. Rosenberg ;;;; ;;;; CLSQL users are granted the rights to distribute and use this software diff --git a/db-postgresql/postgresql-package.lisp b/db-postgresql/postgresql-package.lisp index aded77b..aac6608 100644 --- a/db-postgresql/postgresql-package.lisp +++ b/db-postgresql/postgresql-package.lisp @@ -7,8 +7,6 @@ ;;;; Programmer: Kevin M. Rosenberg ;;;; Date Started: Feb 2002 ;;;; -;;;; $Id$ -;;;; ;;;; This file, part of CLSQL, is Copyright (c) 2002 by Kevin M. Rosenberg ;;;; ;;;; CLSQL users are granted the rights to distribute and use this software diff --git a/db-postgresql/postgresql-sql.lisp b/db-postgresql/postgresql-sql.lisp index b0c6f81..aad11a0 100644 --- a/db-postgresql/postgresql-sql.lisp +++ b/db-postgresql/postgresql-sql.lisp @@ -6,8 +6,6 @@ ;;;; Purpose: High-level PostgreSQL interface using UFFI ;;;; Date Started: Feb 2002 ;;;; -;;;; $Id$ -;;;; ;;;; CLSQL users are granted the rights to distribute and use this software ;;;; as governed by the terms of the Lisp Lesser GNU Public License ;;;; (http://opensource.franz.com/preamble.html), also known as the LLGPL. diff --git a/db-sqlite/Makefile b/db-sqlite/Makefile index 1003d8a..7fb8277 100644 --- a/db-sqlite/Makefile +++ b/db-sqlite/Makefile @@ -1,17 +1,18 @@ +#!/usr/bin/make +########################################################################## # FILE IDENTIFICATION # # Name: Makefile -# Purpose: Makefile for CLSQL SQL interface +# Purpose: Makefile for CLSQL SQLITE interface # Programer: Kevin M. Rosenberg # Date Started: Mar 2002 # -# CVS Id: $Id$ -# # This file, part of CLSQL, is Copyright (c) 2002 by Kevin M. Rosenberg # # CLSQL users are granted the rights to distribute and use this software # as governed by the terms of the Lisp Lesser GNU Public License # (http://opensource.franz.com/preamble.html), also known as the LLGPL. +########################################################################## SUBDIRS= diff --git a/db-sqlite/sqlite-api.lisp b/db-sqlite/sqlite-api.lisp index de46ae8..6e06a15 100644 --- a/db-sqlite/sqlite-api.lisp +++ b/db-sqlite/sqlite-api.lisp @@ -7,8 +7,6 @@ ;;;; Authors: Aurelio Bignoli and Kevin Rosenberg ;;;; Created: Nov 2003 ;;;; -;;;; $Id$ -;;;; ;;;; This file, part of CLSQL, is Copyright (c) 2003 by Aurelio Bignoli ;;;; and Copyright (c) 2003-2004 by Kevin Rosenberg ;;;; diff --git a/db-sqlite/sqlite-loader.lisp b/db-sqlite/sqlite-loader.lisp index e7d4f72..ac77faf 100644 --- a/db-sqlite/sqlite-loader.lisp +++ b/db-sqlite/sqlite-loader.lisp @@ -7,8 +7,6 @@ ;;;; Programmer: Aurelio Bignoli ;;;; Date Started: Nov 2003 ;;;; -;;;; $Id$ -;;;; ;;;; This file, part of CLSQL, is Copyright (c) 2003 by Aurelio Bignoli ;;;; ;;;; CLSQL users are granted the rights to distribute and use this software diff --git a/db-sqlite/sqlite-package.lisp b/db-sqlite/sqlite-package.lisp index c50107a..a3282ea 100644 --- a/db-sqlite/sqlite-package.lisp +++ b/db-sqlite/sqlite-package.lisp @@ -7,8 +7,6 @@ ;;;; Programmer: Aurelio Bignoli ;;;; Date Started: Aug 2003 ;;;; -;;;; $Id$ -;;;; ;;;; This file, part of CLSQL, is Copyright (c) 2003 by Aurelio Bignoli ;;;; ;;;; CLSQL users are granted the rights to distribute and use this software diff --git a/db-sqlite/sqlite-sql.lisp b/db-sqlite/sqlite-sql.lisp index e0c7464..0b99945 100644 --- a/db-sqlite/sqlite-sql.lisp +++ b/db-sqlite/sqlite-sql.lisp @@ -7,10 +7,8 @@ ;;;; Authors: Aurelio Bignoli, Kevin Rosenberg, Marcus Pearce ;;;; Created: Aug 2003 ;;;; -;;;; $Id$ -;;;; ;;;; This file, part of CLSQL, is Copyright (c) 2003 by Aurelio Bignoli and -;;;; Copyright (c) 2003-2004 by Kevin Rosenberg and Marcus Pearce. +;;;; Copyright (c) 2003-2010 by Kevin Rosenberg and Marcus Pearce. ;;;; ;;;; CLSQL users are granted the rights to distribute and use this software ;;;; as governed by the terms of the Lisp Lesser GNU Public License diff --git a/db-sqlite3/sqlite3-api.lisp b/db-sqlite3/sqlite3-api.lisp index 196434d..d5b5153 100644 --- a/db-sqlite3/sqlite3-api.lisp +++ b/db-sqlite3/sqlite3-api.lisp @@ -7,8 +7,6 @@ ;;;; Authors: Aurelio Bignoli ;;;; Created: Oct 2004 ;;;; -;;;; $Id$ -;;;; ;;;; This file, part of CLSQL, is Copyright (c) 2004 by Aurelio Bignoli ;;;; ;;;; CLSQL users are granted the rights to distribute and use this software diff --git a/db-sqlite3/sqlite3-loader.lisp b/db-sqlite3/sqlite3-loader.lisp index a3b26b8..90264ea 100644 --- a/db-sqlite3/sqlite3-loader.lisp +++ b/db-sqlite3/sqlite3-loader.lisp @@ -7,8 +7,6 @@ ;;;; Programmer: Aurelio Bignoli ;;;; Date Started: Oct 2004 ;;;; -;;;; $Id$ -;;;; ;;;; This file, part of CLSQL, is Copyright (c) 2004 by Aurelio Bignoli ;;;; ;;;; CLSQL users are granted the rights to distribute and use this software diff --git a/db-sqlite3/sqlite3-package.lisp b/db-sqlite3/sqlite3-package.lisp index 1acc6ea..2f54f51 100644 --- a/db-sqlite3/sqlite3-package.lisp +++ b/db-sqlite3/sqlite3-package.lisp @@ -7,8 +7,6 @@ ;;;; Programmer: Aurelio Bignoli ;;;; Date Started: Oct 2004 ;;;; -;;;; $Id$ -;;;; ;;;; This file, part of CLSQL, is Copyright (c) 2004 by Aurelio Bignoli ;;;; ;;;; CLSQL users are granted the rights to distribute and use this software diff --git a/db-sqlite3/sqlite3-sql.lisp b/db-sqlite3/sqlite3-sql.lisp index 929aece..c51a543 100644 --- a/db-sqlite3/sqlite3-sql.lisp +++ b/db-sqlite3/sqlite3-sql.lisp @@ -7,8 +7,6 @@ ;;;; Authors: Aurelio Bignoli ;;;; Created: Oct 2004 ;;;; -;;;; $Id$ -;;;; ;;;; This file, part of CLSQL, is Copyright (c) 2004 by Aurelio Bignoli ;;;; ;;;; CLSQL users are granted the rights to distribute and use this software @@ -281,7 +279,7 @@ (database sqlite3-database) &key (owner nil)) (declare (ignore owner)) - + (loop for field-info in (sqlite3-table-info table database) when (string= attribute (second field-info)) return diff --git a/doc/Makefile b/doc/Makefile index 05babec..25c1452 100644 --- a/doc/Makefile +++ b/doc/Makefile @@ -1,4 +1,5 @@ -############################################################################## +#!/usr/bin/make +############################################################################### # FILE IDENTIFICATION # # Name: Makefile @@ -6,14 +7,12 @@ # Programer: Kevin M. Rosenberg # Date Started: Mar 2002 # -# CVS Id: $Id$ -# -# This file, part of CLSQL, is Copyright (c) 2002-2003 by Kevin M. Rosenberg +# This file, part of CLSQL, is Copyright (c) 2002-2010 by Kevin M. Rosenberg # # CLSQL users are granted the rights to distribute and use this software # as governed by the terms of the Lisp Lesser GNU Public License # (http://opensource.franz.com/preamble.html), also known as the LLGPL. -############################################################################## +############################################################################### DOCFILE_BASE_DEFAULT:=clsql DOCFILE_EXT_DEFAULT:=xml diff --git a/doc/bookinfo.xml b/doc/bookinfo.xml index d628b4b..2cb4d55 100644 --- a/doc/bookinfo.xml +++ b/doc/bookinfo.xml @@ -31,14 +31,10 @@ Author of UncommonSQL Package - - $Date$ - $Id$ - - &clsql; is Copyright © 2002-2004 by Kevin M. Rosenberg, + &clsql; is Copyright © 2002-2010 by Kevin M. Rosenberg, Copyright © 1999-2001 by Pierre R. Mai, and Copyright © 1999-2003 onShore Development, Inc. diff --git a/examples/sqlite3/init-func/Makefile b/examples/sqlite3/init-func/Makefile index de1cf29..d771bdc 100644 --- a/examples/sqlite3/init-func/Makefile +++ b/examples/sqlite3/init-func/Makefile @@ -1,3 +1,5 @@ +#!/usr/bin/make +########################################################################## # FILE IDENTIFICATION # # Name: Makefile @@ -5,13 +7,13 @@ # Programer: Aurelio Bignoli # Date Started: Oct 2004 # -# CVS Id: $Id$ -# # This file, part of CLSQL, is Copyright (c) 2004 by Aurelio Bignoli # # CLSQL users are granted the rights to distribute and use this software # as governed by the terms of the Lisp Lesser GNU Public License # (http://opensource.franz.com/preamble.html), also known as the LLGPL. +########################################################################## + sqlite3-utils.so: iso-8859-15-coll.c Makefile gcc -c -fPIC iso-8859-15-coll.c -o iso-8859-15-coll.o diff --git a/examples/sqlite3/init-func/example.lisp b/examples/sqlite3/init-func/example.lisp index c94c621..82fa9d3 100644 --- a/examples/sqlite3/init-func/example.lisp +++ b/examples/sqlite3/init-func/example.lisp @@ -7,8 +7,6 @@ ;;;; Authors: Aurelio Bignoli ;;;; Created: Oct 2004 ;;;; -;;;; $Id$ -;;;; ;;;; This file, part of CLSQL, is Copyright (c) 2004 by Aurelio Bignoli ;;;; ;;;; CLSQL users are granted the rights to distribute and use this software @@ -67,4 +65,4 @@ (clsql:query "SELECT * FROM t1 ORDER BY f2")) ;;;; Disconnect from database. -(clsql:disconnect) \ No newline at end of file +(clsql:disconnect) diff --git a/examples/sqlite3/init-func/iso-8859-15-coll.c b/examples/sqlite3/init-func/iso-8859-15-coll.c index e69a2ee..a5d0f8e 100644 --- a/examples/sqlite3/init-func/iso-8859-15-coll.c +++ b/examples/sqlite3/init-func/iso-8859-15-coll.c @@ -7,8 +7,6 @@ * Programmer: Aurelio Bignoli * Date Started: Oct 2004 * - * $Id$ - * * This file, part of CLSQL, is Copyright (c) 2004 by Aurelio Bignoli * * CLSQL users are granted the rights to distribute and use this software diff --git a/sql/Makefile b/sql/Makefile index 1003d8a..1f71fb2 100644 --- a/sql/Makefile +++ b/sql/Makefile @@ -1,3 +1,5 @@ +#!/usr/bin/make +########################################################################## # FILE IDENTIFICATION # # Name: Makefile @@ -5,13 +7,13 @@ # Programer: Kevin M. Rosenberg # Date Started: Mar 2002 # -# CVS Id: $Id$ -# -# This file, part of CLSQL, is Copyright (c) 2002 by Kevin M. Rosenberg +# This file, part of CLSQL, is Copyright (c) 2002-2010 by Kevin M. Rosenberg # # CLSQL users are granted the rights to distribute and use this software # as governed by the terms of the Lisp Lesser GNU Public License # (http://opensource.franz.com/preamble.html), also known as the LLGPL. +########################################################################## + SUBDIRS= diff --git a/sql/base-classes.lisp b/sql/base-classes.lisp index 297b22f..6519f10 100644 --- a/sql/base-classes.lisp +++ b/sql/base-classes.lisp @@ -8,9 +8,7 @@ ;;;; original code by Pierre R. Mai ;;;; Date Started: Feb 2002 ;;;; -;;;; $Id$ -;;;; -;;;; This file, part of CLSQL, is Copyright (c) 2002-2004 by Kevin M. Rosenberg +;;;; This file, part of CLSQL, is Copyright (c) 2002-2010 by Kevin M. Rosenberg ;;;; and Copyright (c) 1999-2001 by Pierre R. Mai ;;;; ;;;; CLSQL users are granted the rights to distribute and use this software diff --git a/sql/cmucl-compat.lisp b/sql/cmucl-compat.lisp index 5944363..9ea2561 100644 --- a/sql/cmucl-compat.lisp +++ b/sql/cmucl-compat.lisp @@ -7,9 +7,7 @@ ;;;; Programmer: Kevin M. Rosenberg ;;;; Date Started: Feb 2002 ;;;; -;;;; $Id$ -;;;; -;;;; This file, part of CLSQL, is Copyright (c) 2002-2006 by Kevin M. Rosenberg +;;;; This file, part of CLSQL, is Copyright (c) 2002-2010 by Kevin M. Rosenberg ;;;; ;;;; CLSQL users are granted the rights to distribute and use this software ;;;; as governed by the terms of the Lisp Lesser GNU Public License diff --git a/sql/conditions.lisp b/sql/conditions.lisp index 549f8f8..51c06ad 100644 --- a/sql/conditions.lisp +++ b/sql/conditions.lisp @@ -5,9 +5,7 @@ ;;;; Name: conditions.lisp ;;;; Purpose: Error conditions for CLSQL ;;;; -;;;; $Id$ -;;;; -;;;; This file, part of CLSQL, is Copyright (c) 2002-2004 by Kevin M. Rosenberg +;;;; This file, part of CLSQL, is Copyright (c) 2002-2010 by Kevin M. Rosenberg ;;;; ;;;; CLSQL users are granted the rights to distribute and use this software ;;;; as governed by the terms of the Lisp Lesser GNU Public License diff --git a/sql/database.lisp b/sql/database.lisp index 5344628..41009f5 100644 --- a/sql/database.lisp +++ b/sql/database.lisp @@ -1,8 +1,6 @@ ;;;; -*- Mode: LISP; Syntax: ANSI-Common-Lisp; Base: 10 -*- ;;;; ************************************************************************* ;;;; -;;;; $Id$ -;;;; ;;;; Base database functions ;;;; ;;;; This file is part of CLSQL. diff --git a/sql/db-interface.lisp b/sql/db-interface.lisp index ae586e8..8bcc42e 100644 --- a/sql/db-interface.lisp +++ b/sql/db-interface.lisp @@ -9,9 +9,7 @@ ;;;; onShoreD to support UncommonSQL front-end ;;;; Date Started: Feb 2002 ;;;; -;;;; $Id$ -;;;; -;;;; This file, part of CLSQL, is Copyright (c) 2002-2004 by Kevin M. Rosenberg +;;;; This file, part of CLSQL, is Copyright (c) 2002-2010 by Kevin M. Rosenberg ;;;; and Copyright (c) 1999-2001 by Pierre R. Mai, and onShoreD ;;;; ;;;; CLSQL users are granted the rights to distribute and use this software diff --git a/sql/expressions.lisp b/sql/expressions.lisp index b54029e..7389d1c 100644 --- a/sql/expressions.lisp +++ b/sql/expressions.lisp @@ -1,8 +1,6 @@ ;;;; -*- Mode: LISP; Syntax: ANSI-Common-Lisp; Base: 10 -*- ;;;; ************************************************************************* ;;;; -;;;; $Id$ -;;;; ;;;; Classes defining SQL expressions and methods for formatting the ;;;; appropriate SQL commands. ;;;; diff --git a/sql/fddl.lisp b/sql/fddl.lisp index 47323c3..50fe159 100644 --- a/sql/fddl.lisp +++ b/sql/fddl.lisp @@ -1,8 +1,6 @@ ;;;; -*- Mode: LISP; Syntax: ANSI-Common-Lisp; Base: 10 -*- ;;;; ************************************************************************* ;;;; -;;;; $Id$ -;;;; ;;;; The CLSQL Functional Data Definition Language (FDDL) ;;;; including functions for schema manipulation. Currently supported ;;;; SQL objects include tables, views, indexes, attributes and diff --git a/sql/generic-odbc.lisp b/sql/generic-odbc.lisp index 9699d29..7666060 100644 --- a/sql/generic-odbc.lisp +++ b/sql/generic-odbc.lisp @@ -1,8 +1,6 @@ ;;;; -*- Mode: LISP; Syntax: ANSI-Common-Lisp; Base: 10 -*- ;;;; ************************************************************************* ;;;; -;;;; $Id$ -;;;; ;;;; Generic ODBC layer, used by db-odbc and db-aodbc backends ;;;; ;;;; This file is part of CLSQL. diff --git a/sql/generic-postgresql.lisp b/sql/generic-postgresql.lisp index 370c633..25f6708 100644 --- a/sql/generic-postgresql.lisp +++ b/sql/generic-postgresql.lisp @@ -1,8 +1,6 @@ ;;;; -*- Mode: LISP; Syntax: ANSI-Common-Lisp; Base: 10 -*- ;;;; ************************************************************************* ;;;; -;;;; $Id$ -;;;; ;;;; Generic postgresql layer, used by db-postgresql and db-postgresql-socket ;;;; ;;;; This file is part of CLSQL. diff --git a/sql/generics.lisp b/sql/generics.lisp index 792a9de..860771e 100644 --- a/sql/generics.lisp +++ b/sql/generics.lisp @@ -4,12 +4,10 @@ ;;;; ;;;; Name: generics.lisp ;;;; Purpose: Generic function definitions for DB interfaces -;;;; Author: Kevin M. Rosenberg based on +;;;; Author: Kevin M. Rosenberg ;;;; Created: Apr 2004 ;;;; -;;;; $Id$ -;;;; -;;;; This file, part of CLSQL, is Copyright (c) 2002-2004 by Kevin M. Rosenberg +;;;; This file, part of CLSQL, is Copyright (c) 2004-2010 by Kevin M. Rosenberg ;;;; ;;;; CLSQL users are granted the rights to distribute and use this software ;;;; as governed by the terms of the Lisp Lesser GNU Public License diff --git a/sql/initialize.lisp b/sql/initialize.lisp index fd06c3e..cc827bb 100644 --- a/sql/initialize.lisp +++ b/sql/initialize.lisp @@ -3,13 +3,11 @@ ;;;; FILE IDENTIFICATION ;;;; ;;;; Name: initialize.lisp -;;;; Purpose: Initializion routines for backend +;;;; Purpose: Initializion routines for db backend ;;;; Programmers: Kevin M. Rosenberg ;;;; Date Started: May 2002 ;;;; -;;;; $Id$ -;;;; -;;;; This file, part of CLSQL, is Copyright (c) 2002-2004 by Kevin M. Rosenberg +;;;; This file, part of CLSQL, is Copyright (c) 2002-2010 by Kevin M. Rosenberg ;;;; and Copyright (c) 1999-2001 by Pierre R. Mai ;;;; ;;;; CLSQL users are granted the rights to distribute and use this software diff --git a/sql/kmr-mop.lisp b/sql/kmr-mop.lisp index c628dc2..1723940 100644 --- a/sql/kmr-mop.lisp +++ b/sql/kmr-mop.lisp @@ -7,8 +7,6 @@ ;;;; Programmer: Kevin M. Rosenberg ;;;; Date Started: Apr 2003 ;;;; -;;;; $Id$ -;;;; ;;;; This file imports MOP symbols into the CLSQL-MOP package and then ;;;; re-exports into CLSQL-SYS them to hide differences in ;;;; MOP implementations. diff --git a/sql/loop-extension.lisp b/sql/loop-extension.lisp index 666457e..32a356c 100644 --- a/sql/loop-extension.lisp +++ b/sql/loop-extension.lisp @@ -7,7 +7,6 @@ ;;;; ;;;; Copyright (c) 2001-2006 Kevin Rosenberg and (c) 1999-2001 Pierre R. Mai ;;;; -;;;; $Id$ ;;;; ************************************************************************* (in-package #:clsql-sys) diff --git a/sql/ooddl.lisp b/sql/ooddl.lisp index ddc1452..33dca04 100644 --- a/sql/ooddl.lisp +++ b/sql/ooddl.lisp @@ -1,8 +1,6 @@ ;;;; -*- Mode: LISP; Syntax: ANSI-Common-Lisp; Base: 10 -*- ;;;; ************************************************************************* ;;;; -;;;; $Id$ -;;;; ;;;; The CLSQL Object Oriented Data Definitional Language (OODDL) ;;;; ;;;; This file is part of CLSQL. diff --git a/sql/operations.lisp b/sql/operations.lisp index 3a46385..7b55880 100644 --- a/sql/operations.lisp +++ b/sql/operations.lisp @@ -1,8 +1,6 @@ ;;;; -*- Mode: LISP; Syntax: ANSI-Common-Lisp; Base: 10 -*- ;;;; ************************************************************************* ;;;; -;;;; $Id$ -;;;; ;;;; Definition of SQL operations used with the symbolic SQL syntax. ;;;; ;;;; This file is part of CLSQL. diff --git a/sql/package.lisp b/sql/package.lisp index fbf8257..e2e3b70 100644 --- a/sql/package.lisp +++ b/sql/package.lisp @@ -5,8 +5,6 @@ ;;;; Name: package.lisp ;;;; Purpose: Package definition for SQL interface ;;;; -;;;; $Id$ -;;;; ;;;; This file is part of CLSQL. ;;;; ;;;; CLSQL users are granted the rights to distribute and use this software diff --git a/sql/pool.lisp b/sql/pool.lisp index 4573155..1fb0c59 100644 --- a/sql/pool.lisp +++ b/sql/pool.lisp @@ -7,9 +7,7 @@ ;;;; Programmers: Kevin M. Rosenberg, Marc Battyani ;;;; Date Started: Apr 2002 ;;;; -;;;; $Id$ -;;;; -;;;; This file, part of CLSQL, is Copyright (c) 2002-2003 by Kevin M. Rosenberg +;;;; This file, part of CLSQL, is Copyright (c) 2002-2010 by Kevin M. Rosenberg ;;;; ;;;; CLSQL users are granted the rights to distribute and use this software ;;;; as governed by the terms of the Lisp Lesser GNU Public License diff --git a/sql/recording.lisp b/sql/recording.lisp index 4d0810a..02bb972 100644 --- a/sql/recording.lisp +++ b/sql/recording.lisp @@ -1,8 +1,6 @@ ;;;; -*- Mode: LISP; Syntax: ANSI-Common-Lisp; Base: 10 -*- ;;;; ************************************************************************* ;;;; -;;;; $Id$ -;;;; ;;;; CLSQL broadcast streams which can be used to monitor the ;;;; flow of commands to, and results from, a database. ;;;; diff --git a/sql/sequences.lisp b/sql/sequences.lisp index b96d78d..5800e59 100644 --- a/sql/sequences.lisp +++ b/sql/sequences.lisp @@ -1,8 +1,6 @@ ;;;; -*- Mode: LISP; Syntax: ANSI-Common-Lisp; Base: 10 -*- ;;;; ************************************************************************* ;;;; -;;;; $Id$ -;;;; ;;;; Generic sequence implementation. Backends should use native sequences if ;;;; are available. ;;;; diff --git a/sql/syntax.lisp b/sql/syntax.lisp index 436c224..1aec1ca 100644 --- a/sql/syntax.lisp +++ b/sql/syntax.lisp @@ -1,8 +1,6 @@ ;;;; -*- Mode: LISP; Syntax: ANSI-Common-Lisp; Base: 10 -*- ;;;; ************************************************************************* ;;;; -;;;; $Id$ -;;;; ;;;; CLSQL square bracket symbolic query syntax. Functions for ;;;; enabling and disabling the syntax and for building SQL ;;;; expressions using the syntax. diff --git a/tests/Makefile b/tests/Makefile index 1003d8a..695e656 100644 --- a/tests/Makefile +++ b/tests/Makefile @@ -1,17 +1,19 @@ +#!/usr/bin/make +########################################################################## # FILE IDENTIFICATION # # Name: Makefile -# Purpose: Makefile for CLSQL SQL interface +# Purpose: Makefile for CLSQL tests # Programer: Kevin M. Rosenberg # Date Started: Mar 2002 # -# CVS Id: $Id$ -# -# This file, part of CLSQL, is Copyright (c) 2002 by Kevin M. Rosenberg +# This file is part of CLSQL # # CLSQL users are granted the rights to distribute and use this software # as governed by the terms of the Lisp Lesser GNU Public License # (http://opensource.franz.com/preamble.html), also known as the LLGPL. +########################################################################## + SUBDIRS= diff --git a/tests/benchmarks.lisp b/tests/benchmarks.lisp index 16e3e78..372b81c 100644 --- a/tests/benchmarks.lisp +++ b/tests/benchmarks.lisp @@ -1,18 +1,19 @@ ;;;; -*- Mode: LISP; Syntax: ANSI-Common-Lisp; Base: 10 -*- -;;;; ====================================================================== -;;;; File: benchmarks.lisp -;;;; Authors: Kevin Rosenberg -;;;; Created: 03/05/2004 -;;;; Updated: $Id$ +;;;; ************************************************************************* +;;;; FILE IDENTIFICATION ;;;; -;;;; Benchmark suite +;;;; Name: benchmarks.lisp +;;;; Purpose: Time performance tests for CLSQL +;;;; Authors: Kevin M. Rosenberg +;;;; Created: March 5, 2004 ;;;; ;;;; This file is part of CLSQL. ;;;; ;;;; CLSQL users are granted the rights to distribute and use this software ;;;; as governed by the terms of the Lisp Lesser GNU Public License ;;;; (http://opensource.franz.com/preamble.html), also known as the LLGPL. -;;;; ====================================================================== +;;;; ************************************************************************* + (in-package #:clsql-tests) diff --git a/tests/package.lisp b/tests/package.lisp index 9103a32..eca37bb 100644 --- a/tests/package.lisp +++ b/tests/package.lisp @@ -1,18 +1,19 @@ ;;;; -*- Mode: LISP; Syntax: ANSI-Common-Lisp; Base: 10 -*- -;;;; ====================================================================== -;;;; File: package.lisp -;;;; Authors: Marcus Pearce and Kevin Rosenberg -;;;; Created: 30/03/2004 -;;;; Updated: $Id$ +;;;; ************************************************************************* +;;;; FILE IDENTIFICATION ;;;; -;;;; Package definition for CLSQL test suite. +;;;; Name: package.lisp +;;;; Purpose: Package definition for CLSQL test suite +;;;; Authors: Marcus Pearce and Kevin M. Rosenberg +;;;; Created: March 2004 ;;;; ;;;; This file is part of CLSQL. ;;;; ;;;; CLSQL users are granted the rights to distribute and use this software ;;;; as governed by the terms of the Lisp Lesser GNU Public License ;;;; (http://opensource.franz.com/preamble.html), also known as the LLGPL. -;;;; ====================================================================== +;;;; ************************************************************************* + (in-package #:cl-user) diff --git a/tests/test-basic.lisp b/tests/test-basic.lisp index 5bdc0a3..b0e8587 100644 --- a/tests/test-basic.lisp +++ b/tests/test-basic.lisp @@ -7,9 +7,7 @@ ;;;; Author: Kevin M. Rosenberg ;;;; Created: Mar 2002 ;;;; -;;;; $Id$ -;;;; -;;;; This file, part of CLSQL, is Copyright (c) 2002-2004 by Kevin M. Rosenberg +;;;; This file, part of CLSQL, is Copyright (c) 2002-2010 by Kevin M. Rosenberg ;;;; ;;;; CLSQL users are granted the rights to distribute and use this software ;;;; as governed by the terms of the Lisp Lesser GNU Public License diff --git a/tests/test-connection.lisp b/tests/test-connection.lisp index 25c8b73..e15b682 100644 --- a/tests/test-connection.lisp +++ b/tests/test-connection.lisp @@ -1,18 +1,18 @@ ;;;; -*- Mode: LISP; Syntax: ANSI-Common-Lisp; Base: 10 -*- -;;;; ====================================================================== -;;;; File: test-connection.lisp -;;;; Authors: Marcus Pearce , Kevin Rosenberg -;;;; Created: 30/03/2004 -;;;; Updated: $Id$ +;;;; ************************************************************************* +;;;; FILE IDENTIFICATION ;;;; -;;;; Tests for CLSQL database connections. +;;;; Name: test-connection.lisp +;;;; Purpose: Tests for CLSQL database connections +;;;; Authors: Marcus Pearce and Kevin M. Rosenberg +;;;; Created: March 2004 ;;;; ;;;; This file is part of CLSQL. ;;;; ;;;; CLSQL users are granted the rights to distribute and use this software ;;;; as governed by the terms of the Lisp Lesser GNU Public License ;;;; (http://opensource.franz.com/preamble.html), also known as the LLGPL. -;;;; ====================================================================== +;;;; ************************************************************************* (in-package #:clsql-tests) diff --git a/tests/test-fddl.lisp b/tests/test-fddl.lisp index a104404..ed25a04 100644 --- a/tests/test-fddl.lisp +++ b/tests/test-fddl.lisp @@ -1,19 +1,19 @@ ;;;; -*- Mode: LISP; Syntax: ANSI-Common-Lisp; Base: 10 -*- -;;;; ====================================================================== -;;;; File: test-fddl.lisp -;;;; Authors: Marcus Pearce and Kevin Rosenberg -;;;; Created: 30/03/2004 -;;;; Updated: $Id$ +;;;; ************************************************************************* +;;;; FILE IDENTIFICATION ;;;; -;;;; Tests for the CLSQL Functional Data Definition Language -;;;; (FDDL). +;;;; Name: test-fddl.lisp +;;;; Purpose: Tests for the CLSQL Functional Data Definition Language +;;;; Authors: Marcus Pearce and Kevin M. Rosenberg +;;;; Created: March 2004 ;;;; ;;;; This file is part of CLSQL. ;;;; ;;;; CLSQL users are granted the rights to distribute and use this software ;;;; as governed by the terms of the Lisp Lesser GNU Public License ;;;; (http://opensource.franz.com/preamble.html), also known as the LLGPL. -;;;; ====================================================================== +;;;; ************************************************************************* + (in-package #:clsql-tests) @@ -236,7 +236,7 @@ B varchar(32))") (let ((result (list ;; Shouldn't exist - (clsql:select [a] [c] + (clsql:select [a] [c] :from [v1] :where [= [a] -1]) ;; Should exist @@ -263,11 +263,11 @@ B varchar(32))") (clsql:list-attributes [v1])) #'string<) ;; Shouldn't exist - (clsql:select [x] [y] + (clsql:select [x] [y] :from [v1] :where [= [x] -1]) ;; Should exist - (car (clsql:select [x] [y] + (car (clsql:select [x] [y] :from [v1] :where [= [x] 1]))))) @@ -402,7 +402,7 @@ B varchar(32))") (clsql:index-exists-p [bar] ) (clsql:index-exists-p [bar] :owner *test-database-user*) (clsql:index-exists-p [bar] :owner *test-false-database-user*) - + (length (clsql-sys:list-indexes :on [alpha])) (length (clsql-sys:list-indexes :on [alpha] :owner *test-database-user*)) (length (clsql-sys:list-indexes :on [alpha] :owner *test-false-database-user*)) @@ -421,7 +421,7 @@ B varchar(32))") (clsql:sequence-exists-p [foo]) (clsql:sequence-exists-p [foo] :owner *test-database-user*) (clsql:sequence-exists-p [foo] :owner *test-false-database-user*) - + (progn (clsql:drop-sequence [foo] :if-does-not-exist :ignore) (clsql:sequence-exists-p [foo] )))) diff --git a/tests/test-internal.lisp b/tests/test-internal.lisp index 92e7ff7..adfab8a 100644 --- a/tests/test-internal.lisp +++ b/tests/test-internal.lisp @@ -7,9 +7,7 @@ ;;;; Author: Kevin M. Rosenberg ;;;; Created: May 2004 ;;;; -;;;; $Id$ -;;;; -;;;; This file, part of CLSQL, is Copyright (c) 2004 by Kevin M. Rosenberg +;;;; This file, part of CLSQL, is Copyright (c) 2004-2010 by Kevin M. Rosenberg ;;;; ;;;; CLSQL users are granted the rights to distribute and use this software ;;;; as governed by the terms of the Lisp Lesser GNU Public License diff --git a/tests/test-ooddl.lisp b/tests/test-ooddl.lisp index fb4e143..b131071 100644 --- a/tests/test-ooddl.lisp +++ b/tests/test-ooddl.lisp @@ -1,19 +1,18 @@ ;;;; -*- Mode: LISP; Syntax: ANSI-Common-Lisp; Base: 10 -*- -;;;; ====================================================================== -;;;; File: test-ooddl.lisp -;;;; Author: Marcus Pearce -;;;; Created: 30/03/2004 -;;;; Updated: $Id$ +;;;; ************************************************************************* +;;;; FILE IDENTIFICATION ;;;; -;;;; Tests for the CLSQL Object Oriented Data Definition Language -;;;; (OODDL). +;;;; Name: test-ooddl.lisp +;;;; Purpose: Tests for the CLSQL Object Oriented Data Definition Language +;;;; Authors: Marcus Pearce and Kevin M. Rosenberg +;;;; Created: March 2004 ;;;; ;;;; This file is part of CLSQL. ;;;; ;;;; CLSQL users are granted the rights to distribute and use this software ;;;; as governed by the terms of the Lisp Lesser GNU Public License ;;;; (http://opensource.franz.com/preamble.html), also known as the LLGPL. -;;;; ====================================================================== +;;;; ************************************************************************* (in-package #:clsql-tests) diff --git a/tests/test-syntax.lisp b/tests/test-syntax.lisp index 1127d32..65efd98 100644 --- a/tests/test-syntax.lisp +++ b/tests/test-syntax.lisp @@ -1,17 +1,16 @@ ;;;; -*- Mode: LISP; Syntax: ANSI-Common-Lisp; Base: 10 -*- -;;;; ====================================================================== -;;;; File: test-syntax.lisp -;;;; Author: Marcus Pearce -;;;; Created: 30/03/2004 -;;;; Updated: $Id$ -;;;; ====================================================================== +;;;; ************************************************************************* +;;;; FILE IDENTIFICATION ;;;; -;;;; Description ========================================================== -;;;; ====================================================================== +;;;; Name: clsql.asd +;;;; Purpose: Tests for the CLSQL Symbolic SQL syntax. +;;;; Authors: Marcus Pearce and Kevin M. Rosenberg +;;;; Created: March 2004 ;;;; -;;;; Tests for the CLSQL Symbolic SQL syntax. -;;;; -;;;; ====================================================================== +;;;; CLSQL users are granted the rights to distribute and use this software +;;;; as governed by the terms of the Lisp Lesser GNU Public License +;;;; (http://opensource.franz.com/preamble.html), also known as the LLGPL. +;;;; ************************************************************************* (in-package #:clsql-tests) diff --git a/tests/utils.lisp b/tests/utils.lisp index ca7accb..ea11786 100644 --- a/tests/utils.lisp +++ b/tests/utils.lisp @@ -7,9 +7,7 @@ ;;;; Author: Kevin M. Rosenberg ;;;; Created: Mar 2002 ;;;; -;;;; $Id$ -;;;; -;;;; This file, part of CLSQL, is Copyright (c) 2002-2004 by Kevin M. Rosenberg +;;;; This file, part of CLSQL, is Copyright (c) 2002-2010 by Kevin M. Rosenberg ;;;; ;;;; CLSQL users are granted the rights to distribute and use this software ;;;; as governed by the terms of the Lisp Lesser GNU Public License diff --git a/uffi/Makefile.32+64bits b/uffi/Makefile.32+64bits index b781aca..68d9743 100644 --- a/uffi/Makefile.32+64bits +++ b/uffi/Makefile.32+64bits @@ -1,4 +1,5 @@ #!/usr/bin/make +########################################################################## # FILE IDENTIFICATION # # Name: Makefile @@ -6,13 +7,13 @@ # Programer: Kevin M. Rosenberg # Date Started: Mar 2002 # -# CVS Id: $Id: Makefile 11058 2006-08-30 08:05:21Z kevin $ -# -# This file, part of CLSQL, is Copyright (c) 2002-2006 by Kevin M. Rosenberg +# This file, part of CLSQL, is Copyright (c) 2002-2010 by Kevin M. Rosenberg # # CLSQL users are granted the rights to distribute and use this software # as governed by the terms of the Lisp Lesser GNU Public License # (http://opensource.franz.com/preamble.html), also known as the LLGPL. +########################################################################## + SUBDIRS= diff --git a/uffi/Makefile.msvc b/uffi/Makefile.msvc index 021be37..ea3b5b7 100644 --- a/uffi/Makefile.msvc +++ b/uffi/Makefile.msvc @@ -7,9 +7,7 @@ # Author: Kevin M. Rosenberg # Created: Mar 2002 # -# CVS Id: $Id: Makefile.msvc,v 1.1 2002/09/18 07:50:01 kevin Exp $ -# -# This file, part of CLSQL, is Copyright (c) 2002-2004 by Kevin M. Rosenberg +# This file, part of CLSQL, is Copyright (c) 2002-2010 by Kevin M. Rosenberg # # CLSQL users are granted the rights to distribute and use this software # as governed by the terms of the Lisp Lesser GNU Public License @@ -31,5 +29,3 @@ $(DLL): $(SRC) clean: del /q $(DLL) $(BASE).LIB - - diff --git a/uffi/clsql-uffi-loader.lisp b/uffi/clsql-uffi-loader.lisp index a2921f6..7d1ebec 100644 --- a/uffi/clsql-uffi-loader.lisp +++ b/uffi/clsql-uffi-loader.lisp @@ -7,9 +7,7 @@ ;;;; Author: Kevin M. Rosenberg ;;;; Created: Mar 2002 ;;;; -;;;; $Id$ -;;;; -;;;; This file, part of CLSQL, is Copyright (c) 2002-2004 by Kevin M. Rosenberg +;;;; This file, part of CLSQL, is Copyright (c) 2002-2010 by Kevin M. Rosenberg ;;;; ;;;; CLSQL users are granted the rights to distribute and use this software ;;;; as governed by the terms of the Lisp Lesser GNU Public License diff --git a/uffi/clsql-uffi-package.lisp b/uffi/clsql-uffi-package.lisp index be5abf5..1c252e3 100644 --- a/uffi/clsql-uffi-package.lisp +++ b/uffi/clsql-uffi-package.lisp @@ -7,9 +7,7 @@ ;;;; Programmers: Kevin M. Rosenberg ;;;; Date Started: Mar 2002 ;;;; -;;;; $Id$ -;;;; -;;;; This file, part of CLSQL, is Copyright (c) 2002 by Kevin M. Rosenberg +;;;; This file, part of CLSQL, is Copyright (c) 2002-2010 by Kevin M. Rosenberg ;;;; ;;;; CLSQL users are granted the rights to distribute and use this software ;;;; as governed by the terms of the Lisp Lesser GNU Public License diff --git a/uffi/clsql-uffi.lisp b/uffi/clsql-uffi.lisp index 4f9479d..fda60ec 100644 --- a/uffi/clsql-uffi.lisp +++ b/uffi/clsql-uffi.lisp @@ -7,9 +7,7 @@ ;;;; Programmers: Kevin M. Rosenberg ;;;; Date Started: Mar 2002 ;;;; -;;;; $Id$ -;;;; -;;;; This file, part of CLSQL, is Copyright (c) 2002 by Kevin M. Rosenberg +;;;; This file, part of CLSQL, is Copyright (c) 2002-2010 by Kevin M. Rosenberg ;;;; ;;;; CLSQL users are granted the rights to distribute and use this software ;;;; as governed by the terms of the Lisp Lesser GNU Public License diff --git a/uffi/clsql_uffi.c b/uffi/clsql_uffi.c index 39754ff..95822b7 100644 --- a/uffi/clsql_uffi.c +++ b/uffi/clsql_uffi.c @@ -6,9 +6,7 @@ * Programmer: Kevin M. Rosenberg * Date Started: Mar 2002 * - * $Id$ - * - * This file, part of CLSQL, is Copyright (c) 2002 by Kevin M. Rosenberg + * This file, part of CLSQL, is Copyright (c) 2002-2010 by Kevin M. Rosenberg * * CLSQL users are granted the rights to distribute and use this software * as governed by the terms of the Lisp Lesser GNU Public License -- 2.34.1