]> git.ipfire.org Git - thirdparty/sqlalchemy/sqlalchemy.git/commitdiff
copyright update
authorMike Bayer <mike_mp@zzzcomputing.com>
Fri, 5 Jan 2007 19:26:11 +0000 (19:26 +0000)
committerMike Bayer <mike_mp@zzzcomputing.com>
Fri, 5 Jan 2007 19:26:11 +0000 (19:26 +0000)
31 files changed:
LICENSE
lib/sqlalchemy/__init__.py
lib/sqlalchemy/ansisql.py
lib/sqlalchemy/databases/__init__.py
lib/sqlalchemy/databases/firebird.py
lib/sqlalchemy/databases/mysql.py
lib/sqlalchemy/databases/oracle.py
lib/sqlalchemy/databases/postgres.py
lib/sqlalchemy/databases/sqlite.py
lib/sqlalchemy/engine/__init__.py
lib/sqlalchemy/engine/default.py
lib/sqlalchemy/exceptions.py
lib/sqlalchemy/logging.py
lib/sqlalchemy/orm/__init__.py
lib/sqlalchemy/orm/attributes.py
lib/sqlalchemy/orm/dependency.py
lib/sqlalchemy/orm/interfaces.py
lib/sqlalchemy/orm/mapper.py
lib/sqlalchemy/orm/properties.py
lib/sqlalchemy/orm/query.py
lib/sqlalchemy/orm/session.py
lib/sqlalchemy/orm/strategies.py
lib/sqlalchemy/orm/sync.py
lib/sqlalchemy/orm/unitofwork.py
lib/sqlalchemy/orm/util.py
lib/sqlalchemy/pool.py
lib/sqlalchemy/schema.py
lib/sqlalchemy/sql.py
lib/sqlalchemy/topological.py
lib/sqlalchemy/types.py
lib/sqlalchemy/util.py

diff --git a/LICENSE b/LICENSE
index e5bd20440962599bf9f11283fab1a41030e76a88..73cedc004e8c09defd1de0e93e6f045fdbc9fe2f 100644 (file)
--- a/LICENSE
+++ b/LICENSE
@@ -1,6 +1,6 @@
 This is the MIT license: http://www.opensource.org/licenses/mit-license.php
 
-Copyright (c) 2005, 2006 Michael Bayer and contributors. SQLAlchemy is a trademark of Michael
+Copyright (c) 2005, 2006, 2007 Michael Bayer and contributors. SQLAlchemy is a trademark of Michael
 Bayer.
 
 Permission is hereby granted, free of charge, to any person obtaining a copy of this
index 27d3ed667216dc7e558041f65b5204e1579ebaf3..22fb10ffd965a7eac8ce624fb773855666ec9fff 100644 (file)
@@ -1,5 +1,5 @@
 # __init__.py
-# Copyright (C) 2005,2006 Michael Bayer mike_mp@zzzcomputing.com
+# Copyright (C) 2005, 2006, 2007 Michael Bayer mike_mp@zzzcomputing.com
 #
 # This module is part of SQLAlchemy and is released under
 # the MIT License: http://www.opensource.org/licenses/mit-license.php
index 46131def2d02eb552693022dadbeffe5a5751bf0..6376ea7481a0ac0a835ed53b90e2b353427cd07c 100644 (file)
@@ -1,5 +1,5 @@
 # ansisql.py
-# Copyright (C) 2005,2006 Michael Bayer mike_mp@zzzcomputing.com
+# Copyright (C) 2005, 2006, 2007 Michael Bayer mike_mp@zzzcomputing.com
 #
 # This module is part of SQLAlchemy and is released under
 # the MIT License: http://www.opensource.org/licenses/mit-license.php
index 45d6e2cbc736189eeaccad0afe0fe67ce38b4ddb..7d1c7ef11494f45227b852817c2d9c59f1162276 100644 (file)
@@ -1,5 +1,5 @@
 # __init__.py
-# Copyright (C) 2005,2006 Michael Bayer mike_mp@zzzcomputing.com
+# Copyright (C) 2005, 2006, 2007 Michael Bayer mike_mp@zzzcomputing.com
 #
 # This module is part of SQLAlchemy and is released under
 # the MIT License: http://www.opensource.org/licenses/mit-license.php
index 56efece375cc85f21b3daa1e983f542561cce43f..6af6d6d87c569c65d3a693be8dfc2557a9df2ecb 100644 (file)
@@ -1,5 +1,5 @@
 # firebird.py
-# Copyright (C) 2005,2006 Michael Bayer mike_mp@zzzcomputing.com
+# Copyright (C) 2005, 2006, 2007 Michael Bayer mike_mp@zzzcomputing.com
 #
 # This module is part of SQLAlchemy and is released under
 # the MIT License: http://www.opensource.org/licenses/mit-license.php
index 966912d3aac9044bb034fb26d28eda255b004b5c..32402763fe693fd9e89dae07fcd29dca6a2bd381 100644 (file)
@@ -1,5 +1,5 @@
 # mysql.py
-# Copyright (C) 2005,2006 Michael Bayer mike_mp@zzzcomputing.com
+# Copyright (C) 2005, 2006, 2007 Michael Bayer mike_mp@zzzcomputing.com
 #
 # This module is part of SQLAlchemy and is released under
 # the MIT License: http://www.opensource.org/licenses/mit-license.php
index cbfddc060c48ef0cf5a408684755e6f2a3436d76..bbeb940115565a60ef72a97fd66968bc119da442 100644 (file)
@@ -1,5 +1,5 @@
 # oracle.py
-# Copyright (C) 2005,2006 Michael Bayer mike_mp@zzzcomputing.com
+# Copyright (C) 2005, 2006, 2007 Michael Bayer mike_mp@zzzcomputing.com
 #
 # This module is part of SQLAlchemy and is released under
 # the MIT License: http://www.opensource.org/licenses/mit-license.php
index 5c77afe7d160dc92623213e2797ec77c1c839888..a7dc29e9f69b3c616eeb824abf15501338e992fd 100644 (file)
@@ -1,5 +1,5 @@
 # postgres.py
-# Copyright (C) 2005,2006 Michael Bayer mike_mp@zzzcomputing.com
+# Copyright (C) 2005, 2006, 2007 Michael Bayer mike_mp@zzzcomputing.com
 #
 # This module is part of SQLAlchemy and is released under
 # the MIT License: http://www.opensource.org/licenses/mit-license.php
index 6300250b34bafd386197a954b1c4c63cea4e1582..e20b35de0fe71809a36ef7f0db8ed36f421088c8 100644 (file)
@@ -1,5 +1,5 @@
 # sqlite.py
-# Copyright (C) 2005,2006 Michael Bayer mike_mp@zzzcomputing.com
+# Copyright (C) 2005, 2006, 2007 Michael Bayer mike_mp@zzzcomputing.com
 #
 # This module is part of SQLAlchemy and is released under
 # the MIT License: http://www.opensource.org/licenses/mit-license.php
index a53ea4971c09fa8a32fb93b0f39512be0fb4b6d5..220707eb343a3e9d2af280973ea03bb56e5853ca 100644 (file)
@@ -1,5 +1,5 @@
 # engine/__init__.py
-# Copyright (C) 2005,2006 Michael Bayer mike_mp@zzzcomputing.com
+# Copyright (C) 2005, 2006, 2007 Michael Bayer mike_mp@zzzcomputing.com
 #
 # This module is part of SQLAlchemy and is released under
 # the MIT License: http://www.opensource.org/licenses/mit-license.php
index d5cb0cc9f764a4bd3cd2914b4844756105b98cf5..bc39b9b8a69e258dad6e2cf9c15fd5c968e81fc4 100644 (file)
@@ -1,5 +1,5 @@
 # engine/default.py
-# Copyright (C) 2005,2006 Michael Bayer mike_mp@zzzcomputing.com
+# Copyright (C) 2005, 2006, 2007 Michael Bayer mike_mp@zzzcomputing.com
 #
 # This module is part of SQLAlchemy and is released under
 # the MIT License: http://www.opensource.org/licenses/mit-license.php
index 16df317e2a0cef4c25c98a54e53034b83b4f10f4..930aa8ea368dd6acc87d88c7c1192f4e0cadf2d5 100644 (file)
@@ -1,5 +1,5 @@
 # exceptions.py - exceptions for SQLAlchemy
-# Copyright (C) 2005,2006 Michael Bayer mike_mp@zzzcomputing.com
+# Copyright (C) 2005, 2006, 2007 Michael Bayer mike_mp@zzzcomputing.com
 #
 # This module is part of SQLAlchemy and is released under
 # the MIT License: http://www.opensource.org/licenses/mit-license.php
index b3960ba861c4396086c4cc2b75bfed261f4c274a..7e293ab95d215dfcbb813ecf8f12c8097f196738 100644 (file)
@@ -1,5 +1,5 @@
 # logging.py - adapt python logging module to SQLAlchemy
-# Copyright (C) 2006 Michael Bayer mike_mp@zzzcomputing.com
+# Copyright (C) 2006, 2007 Michael Bayer mike_mp@zzzcomputing.com
 #
 # This module is part of SQLAlchemy and is released under
 # the MIT License: http://www.opensource.org/licenses/mit-license.php
index 8f224da1d1342ccb1bd65a5867930331417dca4c..d71b88d9cfddd49995f20a337d44144dd3e39120 100644 (file)
@@ -1,5 +1,5 @@
 # mapper/__init__.py
-# Copyright (C) 2005,2006 Michael Bayer mike_mp@zzzcomputing.com
+# Copyright (C) 2005, 2006, 2007 Michael Bayer mike_mp@zzzcomputing.com
 #
 # This module is part of SQLAlchemy and is released under
 # the MIT License: http://www.opensource.org/licenses/mit-license.php
index 2b51621dbe036563389388e23ad3bd0cf3de76b3..17ab4cc04f944a9c8e9eebd29951386ce1b64fce 100644 (file)
@@ -1,5 +1,5 @@
 # attributes.py - manages object attributes
-# Copyright (C) 2005,2006 Michael Bayer mike_mp@zzzcomputing.com
+# Copyright (C) 2005, 2006, 2007 Michael Bayer mike_mp@zzzcomputing.com
 #
 # This module is part of SQLAlchemy and is released under
 # the MIT License: http://www.opensource.org/licenses/mit-license.php
index 301be8174262299087f5ac1cc694ad58a72c5026..e4e351d268b9b698dae8f47f37d4a80be20ace55 100644 (file)
@@ -1,5 +1,5 @@
 # orm/dependency.py
-# Copyright (C) 2005,2006 Michael Bayer mike_mp@zzzcomputing.com
+# Copyright (C) 2005, 2006, 2007 Michael Bayer mike_mp@zzzcomputing.com
 #
 # This module is part of SQLAlchemy and is released under
 # the MIT License: http://www.opensource.org/licenses/mit-license.php
index 74784d384668c7a4e512892a0ff00bc33187bcff..0c0ad2a724a10301a353835789f7e56610db1eeb 100644 (file)
@@ -1,5 +1,5 @@
 # interfaces.py
-# Copyright (C) 2005,2006 Michael Bayer mike_mp@zzzcomputing.com
+# Copyright (C) 2005, 2006, 2007 Michael Bayer mike_mp@zzzcomputing.com
 #
 # This module is part of SQLAlchemy and is released under
 # the MIT License: http://www.opensource.org/licenses/mit-license.php
index 1ae8c0be3c5801d3be68d4da79489fe17bf7c1eb..67ca75bb3d70127b79626e582eb2cbe38154dc6f 100644 (file)
@@ -1,5 +1,5 @@
 # orm/mapper.py
-# Copyright (C) 2005,2006 Michael Bayer mike_mp@zzzcomputing.com
+# Copyright (C) 2005, 2006, 2007 Michael Bayer mike_mp@zzzcomputing.com
 #
 # This module is part of SQLAlchemy and is released under
 # the MIT License: http://www.opensource.org/licenses/mit-license.php
index af98c12cd79fa99dc93333edb010624248f13aea..cdab5464a2f6b139836ab91f750ce55cfbd7e65c 100644 (file)
@@ -1,5 +1,5 @@
 # properties.py
-# Copyright (C) 2005,2006 Michael Bayer mike_mp@zzzcomputing.com
+# Copyright (C) 2005, 2006, 2007 Michael Bayer mike_mp@zzzcomputing.com
 #
 # This module is part of SQLAlchemy and is released under
 # the MIT License: http://www.opensource.org/licenses/mit-license.php
index 425a7160dc6a9c2499176c9d7eb90c28a762b093..da2da61d89978720b3076127b8905298ad817a0a 100644 (file)
@@ -1,5 +1,5 @@
 # orm/query.py
-# Copyright (C) 2005,2006 Michael Bayer mike_mp@zzzcomputing.com
+# Copyright (C) 2005, 2006, 2007 Michael Bayer mike_mp@zzzcomputing.com
 #
 # This module is part of SQLAlchemy and is released under
 # the MIT License: http://www.opensource.org/licenses/mit-license.php
index 888d92eb9d80859d7e47698bb4e30a8124b77d65..113341e1793f0cffaa93bf6434869cd844181f0b 100644 (file)
@@ -1,5 +1,5 @@
 # objectstore.py
-# Copyright (C) 2005,2006 Michael Bayer mike_mp@zzzcomputing.com
+# Copyright (C) 2005, 2006, 2007 Michael Bayer mike_mp@zzzcomputing.com
 #
 # This module is part of SQLAlchemy and is released under
 # the MIT License: http://www.opensource.org/licenses/mit-license.php
index af56bda80c6a332b0e638e018948b77019d1ab1e..54590f4adf641fd2333bc066cb0d34975d9e9140 100644 (file)
@@ -1,5 +1,5 @@
 # strategies.py
-# Copyright (C) 2005,2006 Michael Bayer mike_mp@zzzcomputing.com
+# Copyright (C) 2005, 2006, 2007 Michael Bayer mike_mp@zzzcomputing.com
 #
 # This module is part of SQLAlchemy and is released under
 # the MIT License: http://www.opensource.org/licenses/mit-license.php
index 774853dd4350dfc9cf254c934ec763f92aea3d01..f0a56687f158b893b7a36d29e76decd60921d7f0 100644 (file)
@@ -1,5 +1,5 @@
 # mapper/sync.py
-# Copyright (C) 2005,2006 Michael Bayer mike_mp@zzzcomputing.com
+# Copyright (C) 2005, 2006, 2007 Michael Bayer mike_mp@zzzcomputing.com
 #
 # This module is part of SQLAlchemy and is released under
 # the MIT License: http://www.opensource.org/licenses/mit-license.php
index 34da55780ed0b8fdd3a48c228e0fe6b5701b9229..e77f5835609100d8d5aa612afc5e32b0cee87a31 100644 (file)
@@ -1,5 +1,5 @@
 # orm/unitofwork.py
-# Copyright (C) 2005,2006 Michael Bayer mike_mp@zzzcomputing.com
+# Copyright (C) 2005, 2006, 2007 Michael Bayer mike_mp@zzzcomputing.com
 #
 # This module is part of SQLAlchemy and is released under
 # the MIT License: http://www.opensource.org/licenses/mit-license.php
index a3ba72812ed554e73d931e178cee0413d411773b..3ac1ac7f66ab093b9342a073afb55d758c154a7c 100644 (file)
@@ -1,5 +1,5 @@
 # mapper/util.py
-# Copyright (C) 2005,2006 Michael Bayer mike_mp@zzzcomputing.com
+# Copyright (C) 2005, 2006, 2007 Michael Bayer mike_mp@zzzcomputing.com
 #
 # This module is part of SQLAlchemy and is released under
 # the MIT License: http://www.opensource.org/licenses/mit-license.php
index 08fe45f8ce11072340470794b77ddac4af661ba9..43934eedbd2e1ddfaa224b88a9026cfb9640daba 100644 (file)
@@ -1,5 +1,5 @@
 # pool.py - Connection pooling for SQLAlchemy
-# Copyright (C) 2005,2006 Michael Bayer mike_mp@zzzcomputing.com
+# Copyright (C) 2005, 2006, 2007 Michael Bayer mike_mp@zzzcomputing.com
 #
 # This module is part of SQLAlchemy and is released under
 # the MIT License: http://www.opensource.org/licenses/mit-license.php
index beb320e5acc9c4aeda84247ff223a10b91e1f88b..e8b2d06e0c7fca4276340b2e0b8423de02dce60f 100644 (file)
@@ -1,5 +1,5 @@
 # schema.py
-# Copyright (C) 2005,2006 Michael Bayer mike_mp@zzzcomputing.com
+# Copyright (C) 2005, 2006, 2007 Michael Bayer mike_mp@zzzcomputing.com
 #
 # This module is part of SQLAlchemy and is released under
 # the MIT License: http://www.opensource.org/licenses/mit-license.php
index 207276f5ff184c7537568d2e2fb1eee1b8507737..98191552ba868aaf45592a235f9d53bb42105930 100644 (file)
@@ -1,4 +1,4 @@
-# Copyright (C) 2005,2006 Michael Bayer mike_mp@zzzcomputing.com
+# Copyright (C) 2005, 2006, 2007 Michael Bayer mike_mp@zzzcomputing.com
 #
 # This module is part of SQLAlchemy and is released under
 # the MIT License: http://www.opensource.org/licenses/mit-license.php
index 9d8c7280bdb3fb0bf8b3b1a2243595da13a2176c..4c58a2a0c58849979b3e1673ca1cc56c5393dc27 100644 (file)
@@ -1,5 +1,5 @@
 # topological.py
-# Copyright (C) 2005,2006 Michael Bayer mike_mp@zzzcomputing.com
+# Copyright (C) 2005, 2006, 2007 Michael Bayer mike_mp@zzzcomputing.com
 #
 # This module is part of SQLAlchemy and is released under
 # the MIT License: http://www.opensource.org/licenses/mit-license.php
index dbb9228c3cb558c14ad6b6b25524524bd77ac854..33623124276375d392a0be68c37f16499031fccc 100644 (file)
@@ -1,5 +1,5 @@
 # types.py
-# Copyright (C) 2005,2006 Michael Bayer mike_mp@zzzcomputing.com
+# Copyright (C) 2005, 2006, 2007 Michael Bayer mike_mp@zzzcomputing.com
 #
 # This module is part of SQLAlchemy and is released under
 # the MIT License: http://www.opensource.org/licenses/mit-license.php
index 21f38098034041a76e37f890d6976b8843b8c5e8..7066309189435ec7bfbe783b7be4d4fcabfa750d 100644 (file)
@@ -1,5 +1,5 @@
 # util.py
-# Copyright (C) 2005,2006 Michael Bayer mike_mp@zzzcomputing.com
+# Copyright (C) 2005, 2006, 2007 Michael Bayer mike_mp@zzzcomputing.com
 #
 # This module is part of SQLAlchemy and is released under
 # the MIT License: http://www.opensource.org/licenses/mit-license.php