summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRob Dennis <rdennis@gmail.com>2014-02-08 01:08:11 -0500
committerRob Dennis <rdennis@gmail.com>2014-02-08 01:08:11 -0500
commitbfc8b9e8722214a6bb9b4adeb67baf9e7a45eb79 (patch)
treebb238a7e9f7131562e518c944ea1755d61c329a6
parent80ea464f9abaec758f2974c56266cc8b65d7ad8f (diff)
parentb8a252d736dd9cc4084ff49c5db3c4e152503ad7 (diff)
downloadconfigobj-git-bfc8b9e8722214a6bb9b4adeb67baf9e7a45eb79.tar.gz
Merge pull request #11 from robdennis/master
fixes #6 - copyright lines changed
-rw-r--r--configobj.py29
-rw-r--r--setup.py14
-rw-r--r--setup_validate.py13
-rw-r--r--test_configobj.py23
-rw-r--r--validate.py24
5 files changed, 49 insertions, 54 deletions
diff --git a/configobj.py b/configobj.py
index 0b4f86b..1093179 100644
--- a/configobj.py
+++ b/configobj.py
@@ -1,22 +1,17 @@
# configobj.py
# A config file reader/writer that supports nested sections in config files.
-# Copyright (C) 2005-2010 Michael Foord, Nicola Larosa
-# E-mail: fuzzyman AT voidspace DOT org DOT uk
-# nico AT tekNico DOT net
-
-# ConfigObj 4
-# http://www.voidspace.org.uk/python/configobj.html
-
-# Released subject to the BSD License
-# Please see http://www.voidspace.org.uk/python/license.shtml
-
-# Scripts maintained at http://www.voidspace.org.uk/python/index.shtml
-# For information about bugfixes, updates and support, please join the
-# ConfigObj mailing list:
-# http://lists.sourceforge.net/lists/listinfo/configobj-develop
-# Comments, suggestions and bug reports welcome.
-
-
+# Copyright (C) 2005-2014:
+# (name) : (email)
+# Michael Foord: fuzzyman AT voidspace DOT org DOT uk
+# Nicola Larosa: nico AT tekNico DOT net
+# Rob Dennis: rdennis AT gmail DOT com
+# Eli Courtwright: eli AT courtwright DOT org
+
+# This software is licensed under the terms of the BSD license.
+# http://opensource.org/licenses/BSD-3-Clause
+
+# ConfigObj 5 - main repository for documentation and issue tracking:
+# https://github.com/DiffSK/configobj
import os
import re
diff --git a/setup.py b/setup.py
index 737f206..d9d8445 100644
--- a/setup.py
+++ b/setup.py
@@ -1,14 +1,16 @@
# setup.py
# Install script for ConfigObj
-# Copyright (C) 2005-2010 Michael Foord, Mark Andrews, Nicola Larosa
-# E-mail: fuzzyman AT voidspace DOT org DOT uk
-# mark AT la-la DOT com
-# nico AT tekNico DOT net
+# Copyright (C) 2005-2014:
+# (name) : (email)
+# Michael Foord: fuzzyman AT voidspace DOT org DOT uk
+# Mark Andrews: mark AT la-la DOT com
+# Nicola Larosa: nico AT tekNico DOT net
+# Rob Dennis: rdennis AT gmail DOT com
+# Eli Courtwright: eli AT courtwright DOT org
# This software is licensed under the terms of the BSD license.
-# http://www.voidspace.org.uk/python/license.shtml
+# http://opensource.org/licenses/BSD-3-Clause
-import sys
from distutils.core import setup
from configobj import __version__ as VERSION
diff --git a/setup_validate.py b/setup_validate.py
index 077fd35..72e9a21 100644
--- a/setup_validate.py
+++ b/setup_validate.py
@@ -1,12 +1,15 @@
# setup.py
# Install script for validate
-# Copyright (C) 2005-2010 Michael Foord, Mark Andrews, Nicola Larosa
-# E-mail: fuzzyman AT voidspace DOT org DOT uk
-# mark AT la-la DOT com
-# nico AT tekNico DOT net
+# Copyright (C) 2005-2014:
+# (name) : (email)
+# Michael Foord: fuzzyman AT voidspace DOT org DOT uk
+# Mark Andrews: mark AT la-la DOT com
+# Nicola Larosa: nico AT tekNico DOT net
+# Rob Dennis: rdennis AT gmail DOT com
+# Eli Courtwright: eli AT courtwright DOT org
# This software is licensed under the terms of the BSD license.
-# http://www.voidspace.org.uk/python/license.shtml
+# http://opensource.org/licenses/BSD-3-Clause
import sys
from distutils.core import setup
diff --git a/test_configobj.py b/test_configobj.py
index 2b5981b..47d1959 100644
--- a/test_configobj.py
+++ b/test_configobj.py
@@ -1,21 +1,18 @@
# configobj_test.py
# doctests for ConfigObj
# A config file reader/writer that supports nested sections in config files.
-# Copyright (C) 2005-2010 Michael Foord, Nicola Larosa
-# E-mail: fuzzyman AT voidspace DOT org DOT uk
-# nico AT tekNico DOT net
+# Copyright (C) 2005-2014:
+# (name) : (email)
+# Michael Foord: fuzzyman AT voidspace DOT org DOT uk
+# Nicola Larosa: nico AT tekNico DOT net
+# Rob Dennis: rdennis AT gmail DOT com
+# Eli Courtwright: eli AT courtwright DOT org
-# ConfigObj 4
-# http://www.voidspace.org.uk/python/configobj.html
+# This software is licensed under the terms of the BSD license.
+# http://opensource.org/licenses/BSD-3-Clause
-# Released subject to the BSD License
-# Please see http://www.voidspace.org.uk/python/license.shtml
-
-# Scripts maintained at http://www.voidspace.org.uk/python/index.shtml
-# For information about bugfixes, updates and support, please join the
-# ConfigObj mailing list:
-# http://lists.sourceforge.net/lists/listinfo/configobj-develop
-# Comments, suggestions and bug reports welcome.
+# ConfigObj 5 - main repository for documentation and issue tracking:
+# https://github.com/DiffSK/configobj
import sys
# StringIO is used to simulate config files during doctests
diff --git a/validate.py b/validate.py
index f31d694..3e27603 100644
--- a/validate.py
+++ b/validate.py
@@ -1,20 +1,18 @@
# validate.py
# A Validator object
-# Copyright (C) 2005-2010 Michael Foord, Mark Andrews, Nicola Larosa
-# E-mail: fuzzyman AT voidspace DOT org DOT uk
-# mark AT la-la DOT com
-# nico AT tekNico DOT net
+# Copyright (C) 2005-2014:
+# (name) : (email)
+# Michael Foord: fuzzyman AT voidspace DOT org DOT uk
+# Mark Andrews: mark AT la-la DOT com
+# Nicola Larosa: nico AT tekNico DOT net
+# Rob Dennis: rdennis AT gmail DOT com
+# Eli Courtwright: eli AT courtwright DOT org
# This software is licensed under the terms of the BSD license.
-# http://www.voidspace.org.uk/python/license.shtml
-# Basically you're free to copy, modify, distribute and relicense it,
-# So long as you keep a copy of the license with it.
-
-# Scripts maintained at http://www.voidspace.org.uk/python/index.shtml
-# For information about bugfixes, updates and support, please join the
-# ConfigObj mailing list:
-# http://lists.sourceforge.net/lists/listinfo/configobj-develop
-# Comments, suggestions and bug reports welcome.
+# http://opensource.org/licenses/BSD-3-Clause
+
+# ConfigObj 5 - main repository for documentation and issue tracking:
+# https://github.com/DiffSK/configobj
"""
The Validator object is used to check that supplied values