Refactor authorship information for more technical accuracy.
Google advises its employees to add Google Inc. as an author, but that hasn't
been done yet and would be super inconvenient. So instead I've refactored the
file to refer to "The JsonCpp Authors", which are listed in the AUTHORS file.
The AUTHORS file itself is generated via:
git log --pretty="%an <%ae>%n%cn <%ce>" | sort | uniq
Plus the addition of "Google Inc." as a copyright author. (Google owns the work
of anyone contributing from an @google.com address, for example.)
The list contains some probable duplicates where people have used more than one
email address. I didn't deduplicate because -- well, who's to say they're
duplicates, anyway? :)
diff --git a/devtools/__init__.py b/devtools/__init__.py
index d18a521..90b4fd7 100644
--- a/devtools/__init__.py
+++ b/devtools/__init__.py
@@ -1,4 +1,4 @@
-# Copyright 2010 Baptiste Lepilleur
+# Copyright 2010 The JsonCpp Authors
# Distributed under MIT license, or public domain if desired and
# recognized in your jurisdiction.
# See file LICENSE for detail or copy at http://jsoncpp.sourceforge.net/LICENSE
diff --git a/devtools/antglob.py b/devtools/antglob.py
index c272f66..75615ed 100644
--- a/devtools/antglob.py
+++ b/devtools/antglob.py
@@ -1,6 +1,6 @@
#!/usr/bin/env python
# encoding: utf-8
-# Copyright 2009 Baptiste Lepilleur
+# Copyright 2009 The JsonCpp Authors
# Distributed under MIT license, or public domain if desired and
# recognized in your jurisdiction.
# See file LICENSE for detail or copy at http://jsoncpp.sourceforge.net/LICENSE
diff --git a/devtools/fixeol.py b/devtools/fixeol.py
index b55e146..e089f9f 100644
--- a/devtools/fixeol.py
+++ b/devtools/fixeol.py
@@ -1,4 +1,4 @@
-# Copyright 2010 Baptiste Lepilleur
+# Copyright 2010 The JsonCpp Authors
# Distributed under MIT license, or public domain if desired and
# recognized in your jurisdiction.
# See file LICENSE for detail or copy at http://jsoncpp.sourceforge.net/LICENSE
diff --git a/devtools/licenseupdater.py b/devtools/licenseupdater.py
index 6f82361..43ddb4f 100644
--- a/devtools/licenseupdater.py
+++ b/devtools/licenseupdater.py
@@ -6,7 +6,7 @@
# and ends with the first blank line.
LICENSE_BEGIN = "// Copyright "
-BRIEF_LICENSE = LICENSE_BEGIN + """2007-2010 Baptiste Lepilleur
+BRIEF_LICENSE = LICENSE_BEGIN + """2007-2010 The JsonCpp Authors
// Distributed under MIT license, or public domain if desired and
// recognized in your jurisdiction.
// See file LICENSE for detail or copy at http://jsoncpp.sourceforge.net/LICENSE
diff --git a/devtools/tarball.py b/devtools/tarball.py
index 2e72717..ce36594 100644
--- a/devtools/tarball.py
+++ b/devtools/tarball.py
@@ -1,4 +1,4 @@
-# Copyright 2010 Baptiste Lepilleur
+# Copyright 2010 The JsonCpp Authors
# Distributed under MIT license, or public domain if desired and
# recognized in your jurisdiction.
# See file LICENSE for detail or copy at http://jsoncpp.sourceforge.net/LICENSE