changeset 4208:ad38f9f93b3b kallithea-2.2.5-rebrand

Correct licensing information in individual files. The top-level license file is now LICENSE.md. Also, in various places where there should have been joint copyright holders listed, a single copyright holder was listed. It does not appear easy to add a link to a large list of copyright holders in these places, so it simply refers to the fact that various authors hold copyright. In future, if an easy method is discovered to link to a list from those places, we should do so. Finally, text is added to LICENSE.md to point to where the full list of copyright holders is, and that Kallithea as a whole is GPLv3'd.
author Bradley M. Kuhn <bkuhn@sfconservancy.org>
date Wed, 21 May 2014 16:59:37 -0400
parents 58e390e0cea4
children de26de99ac5b
files LICENSE.md docs/conf.py kallithea/__init__.py kallithea/bin/__init__.py kallithea/bin/base.py kallithea/bin/kallithea_api.py kallithea/bin/kallithea_backup.py kallithea/bin/kallithea_config.py kallithea/bin/kallithea_gist.py kallithea/bin/ldap_sync.py kallithea/config/conf.py kallithea/controllers/admin/admin.py kallithea/controllers/admin/defaults.py kallithea/controllers/admin/gists.py kallithea/controllers/admin/my_account.py kallithea/controllers/admin/notifications.py kallithea/controllers/admin/permissions.py kallithea/controllers/admin/repo_groups.py kallithea/controllers/admin/repos.py kallithea/controllers/admin/settings.py kallithea/controllers/admin/user_groups.py kallithea/controllers/admin/users.py kallithea/controllers/api/__init__.py kallithea/controllers/api/api.py kallithea/controllers/bookmarks.py kallithea/controllers/branches.py kallithea/controllers/changelog.py kallithea/controllers/changeset.py kallithea/controllers/compare.py kallithea/controllers/error.py kallithea/controllers/feed.py kallithea/controllers/files.py kallithea/controllers/followers.py kallithea/controllers/forks.py kallithea/controllers/home.py kallithea/controllers/journal.py kallithea/controllers/login.py kallithea/controllers/pullrequests.py kallithea/controllers/search.py kallithea/controllers/summary.py kallithea/controllers/tags.py kallithea/lib/__init__.py kallithea/lib/annotate.py kallithea/lib/app_globals.py kallithea/lib/auth.py kallithea/lib/auth_modules/auth_container.py kallithea/lib/auth_modules/auth_crowd.py kallithea/lib/auth_modules/auth_ldap.py kallithea/lib/auth_modules/auth_rhodecode.py kallithea/lib/base.py kallithea/lib/celerylib/__init__.py kallithea/lib/celerylib/tasks.py kallithea/lib/compat.py kallithea/lib/db_manage.py kallithea/lib/dbmigrate/__init__.py kallithea/lib/dbmigrate/schema/__init__.py kallithea/lib/dbmigrate/schema/db_1_2_0.py kallithea/lib/dbmigrate/schema/db_1_3_0.py kallithea/lib/dbmigrate/schema/db_1_4_0.py kallithea/lib/dbmigrate/schema/db_1_5_0.py kallithea/lib/dbmigrate/schema/db_1_5_2.py kallithea/lib/dbmigrate/schema/db_1_6_0.py kallithea/lib/dbmigrate/schema/db_1_7_0.py kallithea/lib/dbmigrate/schema/db_1_8_0.py kallithea/lib/dbmigrate/schema/db_2_0_0.py kallithea/lib/dbmigrate/schema/db_2_0_1.py kallithea/lib/dbmigrate/schema/db_2_0_2.py kallithea/lib/dbmigrate/schema/db_2_1_0.py kallithea/lib/dbmigrate/schema/db_2_2_0.py kallithea/lib/dbmigrate/schema/db_2_2_3.py kallithea/lib/dbmigrate/versions/__init__.py kallithea/lib/diffs.py kallithea/lib/exceptions.py kallithea/lib/hooks.py kallithea/lib/indexers/__init__.py kallithea/lib/indexers/daemon.py kallithea/lib/markup_renderer.py kallithea/lib/middleware/errormator.py kallithea/lib/middleware/https_fixup.py kallithea/lib/middleware/sentry.py kallithea/lib/middleware/simplegit.py kallithea/lib/middleware/simplehg.py kallithea/lib/middleware/wrapper.py kallithea/lib/paster_commands/cache_keys.py kallithea/lib/paster_commands/ishell.py kallithea/lib/paster_commands/make_index.py kallithea/lib/paster_commands/make_rcextensions.py kallithea/lib/paster_commands/repo_scan.py kallithea/lib/paster_commands/update_repoinfo.py kallithea/lib/rcmail/smtp_mailer.py kallithea/lib/utils.py kallithea/lib/utils2.py kallithea/model/__init__.py kallithea/model/api_key.py kallithea/model/changeset_status.py kallithea/model/comment.py kallithea/model/db.py kallithea/model/gist.py kallithea/model/notification.py kallithea/model/permission.py kallithea/model/pull_request.py kallithea/model/repo.py kallithea/model/repo_group.py kallithea/model/scm.py kallithea/model/user.py kallithea/tests/other/test_libs.py kallithea/tests/other/test_vcs_operations.py kallithea/tests/scripts/test_concurency.py kallithea/tests/scripts/test_crawler.py kallithea/websetup.py setup.cfg
diffstat 111 files changed, 129 insertions(+), 112 deletions(-) [+]
line wrap: on
line diff
--- a/LICENSE.md	Wed Jul 02 19:05:41 2014 -0400
+++ b/LICENSE.md	Wed May 21 16:59:37 2014 -0400
@@ -1,5 +1,22 @@
-Third-Party Code Included Herein
-================================
+Kallithea License
+=================
+
+Kallithea as a whole is copyrighted by various authors and is licensed under
+the terms of the GNU General Public License, version 3 (GPLv3), which is a
+license published by the Free Software Foundation,
+Inc. [A copy of GPLv3](/COPYING) is included herein.
+
+Some individual files have copyright notices and those who offer changes to
+those files should update the copyright notices in those specific files if
+they so chose.
+
+However, the definitive list of copyright holders for this project is kept in
+[the about page template](kallithea/templates/about.html) so that it is
+displayed appropriately when Kallithea is installed.  This is the most
+important place to update copyright notices. 
+
+Third-Party Code Incorporated in Kallithea
+==========================================
 
 Various third-party code under GPLv3-compatible licenses is included as part
 of Kallithea.
--- a/docs/conf.py	Wed Jul 02 19:05:41 2014 -0400
+++ b/docs/conf.py	Wed May 21 16:59:37 2014 -0400
@@ -45,7 +45,7 @@
 
 # General information about the project.
 project = u'Kallithea'
-copyright = u'%s, Marcin Kuzminski' % (datetime.datetime.now().year)
+copyright = u'2010-2014 by various authors, licensed as GPLv3.'
 
 # The version info for the project you're documenting, acts as replacement for
 # |version| and |release|, also used in various other places throughout the
--- a/kallithea/__init__.py	Wed Jul 02 19:05:41 2014 -0400
+++ b/kallithea/__init__.py	Wed May 21 16:59:37 2014 -0400
@@ -21,7 +21,7 @@
 :created_on: Apr 9, 2010
 :author: marcink
 :copyright: (c) 2013 RhodeCode GmbH.
-:license: GPLv3, see LICENSE for more details.
+:license: GPLv3, see LICENSE.md for more details.
 """
 
 import sys
--- a/kallithea/bin/__init__.py	Wed Jul 02 19:05:41 2014 -0400
+++ b/kallithea/bin/__init__.py	Wed May 21 16:59:37 2014 -0400
@@ -20,5 +20,5 @@
 :created_on: Jun 03, 2012
 :author: marcink
 :copyright: (c) 2013 RhodeCode GmbH.
-:license: GPLv3, see LICENSE for more details.
+:license: GPLv3, see LICENSE.md for more details.
 """
--- a/kallithea/bin/base.py	Wed Jul 02 19:05:41 2014 -0400
+++ b/kallithea/bin/base.py	Wed May 21 16:59:37 2014 -0400
@@ -20,7 +20,7 @@
 :created_on: May 09, 2013
 :author: marcink
 :copyright: (c) 2013 RhodeCode GmbH.
-:license: GPLv3, see LICENSE for more details.
+:license: GPLv3, see LICENSE.md for more details.
 """
 
 import os
--- a/kallithea/bin/kallithea_api.py	Wed Jul 02 19:05:41 2014 -0400
+++ b/kallithea/bin/kallithea_api.py	Wed May 21 16:59:37 2014 -0400
@@ -20,7 +20,7 @@
 :created_on: Jun 3, 2012
 :author: marcink
 :copyright: (c) 2013 RhodeCode GmbH.
-:license: GPLv3, see LICENSE for more details.
+:license: GPLv3, see LICENSE.md for more details.
 """
 
 from __future__ import with_statement
--- a/kallithea/bin/kallithea_backup.py	Wed Jul 02 19:05:41 2014 -0400
+++ b/kallithea/bin/kallithea_backup.py	Wed May 21 16:59:37 2014 -0400
@@ -21,7 +21,7 @@
 :created_on: Feb 28, 2010
 :author: marcink
 :copyright: (c) 2013 RhodeCode GmbH.
-:license: GPLv3, see LICENSE for more details.
+:license: GPLv3, see LICENSE.md for more details.
 """
 
 import os
--- a/kallithea/bin/kallithea_config.py	Wed Jul 02 19:05:41 2014 -0400
+++ b/kallithea/bin/kallithea_config.py	Wed May 21 16:59:37 2014 -0400
@@ -20,7 +20,7 @@
 :created_on: Jun 18, 2013
 :author: marcink
 :copyright: (c) 2013 RhodeCode GmbH.
-:license: GPLv3, see LICENSE for more details.
+:license: GPLv3, see LICENSE.md for more details.
 """
 
 
--- a/kallithea/bin/kallithea_gist.py	Wed Jul 02 19:05:41 2014 -0400
+++ b/kallithea/bin/kallithea_gist.py	Wed May 21 16:59:37 2014 -0400
@@ -20,7 +20,7 @@
 :created_on: May 9, 2013
 :author: marcink
 :copyright: (c) 2013 RhodeCode GmbH.
-:license: GPLv3, see LICENSE for more details.
+:license: GPLv3, see LICENSE.md for more details.
 """
 
 from __future__ import with_statement
--- a/kallithea/bin/ldap_sync.py	Wed Jul 02 19:05:41 2014 -0400
+++ b/kallithea/bin/ldap_sync.py	Wed May 21 16:59:37 2014 -0400
@@ -20,7 +20,7 @@
 :created_on: Mar 06, 2013
 :author: marcink
 :copyright: (c) 2013 RhodeCode GmbH.
-:license: GPLv3, see LICENSE for more details.
+:license: GPLv3, see LICENSE.md for more details.
 """
 
 import ldap
--- a/kallithea/config/conf.py	Wed Jul 02 19:05:41 2014 -0400
+++ b/kallithea/config/conf.py	Wed May 21 16:59:37 2014 -0400
@@ -20,7 +20,7 @@
 :created_on: Mar 7, 2012
 :author: marcink
 :copyright: (c) 2013 RhodeCode GmbH.
-:license: GPLv3, see LICENSE for more details.
+:license: GPLv3, see LICENSE.md for more details.
 """
 from kallithea import EXTENSIONS
 
--- a/kallithea/controllers/admin/admin.py	Wed Jul 02 19:05:41 2014 -0400
+++ b/kallithea/controllers/admin/admin.py	Wed May 21 16:59:37 2014 -0400
@@ -20,7 +20,7 @@
 :created_on: Apr 7, 2010
 :author: marcink
 :copyright: (c) 2013 RhodeCode GmbH.
-:license: GPLv3, see LICENSE for more details.
+:license: GPLv3, see LICENSE.md for more details.
 """
 
 
--- a/kallithea/controllers/admin/defaults.py	Wed Jul 02 19:05:41 2014 -0400
+++ b/kallithea/controllers/admin/defaults.py	Wed May 21 16:59:37 2014 -0400
@@ -20,7 +20,7 @@
 :created_on: Apr 27, 2010
 :author: marcink
 :copyright: (c) 2013 RhodeCode GmbH.
-:license: GPLv3, see LICENSE for more details.
+:license: GPLv3, see LICENSE.md for more details.
 """
 
 import logging
--- a/kallithea/controllers/admin/gists.py	Wed Jul 02 19:05:41 2014 -0400
+++ b/kallithea/controllers/admin/gists.py	Wed May 21 16:59:37 2014 -0400
@@ -20,7 +20,7 @@
 :created_on: May 9, 2013
 :author: marcink
 :copyright: (c) 2013 RhodeCode GmbH.
-:license: GPLv3, see LICENSE for more details.
+:license: GPLv3, see LICENSE.md for more details.
 """
 
 import time
--- a/kallithea/controllers/admin/my_account.py	Wed Jul 02 19:05:41 2014 -0400
+++ b/kallithea/controllers/admin/my_account.py	Wed May 21 16:59:37 2014 -0400
@@ -20,7 +20,7 @@
 :created_on: August 20, 2013
 :author: marcink
 :copyright: (c) 2013 RhodeCode GmbH.
-:license: GPLv3, see LICENSE for more details.
+:license: GPLv3, see LICENSE.md for more details.
 """
 
 import time
--- a/kallithea/controllers/admin/notifications.py	Wed Jul 02 19:05:41 2014 -0400
+++ b/kallithea/controllers/admin/notifications.py	Wed May 21 16:59:37 2014 -0400
@@ -20,7 +20,7 @@
 :created_on: Nov 23, 2010
 :author: marcink
 :copyright: (c) 2013 RhodeCode GmbH.
-:license: GPLv3, see LICENSE for more details.
+:license: GPLv3, see LICENSE.md for more details.
 """
 
 import logging
--- a/kallithea/controllers/admin/permissions.py	Wed Jul 02 19:05:41 2014 -0400
+++ b/kallithea/controllers/admin/permissions.py	Wed May 21 16:59:37 2014 -0400
@@ -20,7 +20,7 @@
 :created_on: Apr 27, 2010
 :author: marcink
 :copyright: (c) 2013 RhodeCode GmbH.
-:license: GPLv3, see LICENSE for more details.
+:license: GPLv3, see LICENSE.md for more details.
 """
 
 
--- a/kallithea/controllers/admin/repo_groups.py	Wed Jul 02 19:05:41 2014 -0400
+++ b/kallithea/controllers/admin/repo_groups.py	Wed May 21 16:59:37 2014 -0400
@@ -20,7 +20,7 @@
 :created_on: Mar 23, 2010
 :author: marcink
 :copyright: (c) 2013 RhodeCode GmbH.
-:license: GPLv3, see LICENSE for more details.
+:license: GPLv3, see LICENSE.md for more details.
 """
 
 import logging
--- a/kallithea/controllers/admin/repos.py	Wed Jul 02 19:05:41 2014 -0400
+++ b/kallithea/controllers/admin/repos.py	Wed May 21 16:59:37 2014 -0400
@@ -20,7 +20,7 @@
 :created_on: Apr 7, 2010
 :author: marcink
 :copyright: (c) 2013 RhodeCode GmbH.
-:license: GPLv3, see LICENSE for more details.
+:license: GPLv3, see LICENSE.md for more details.
 """
 
 import logging
--- a/kallithea/controllers/admin/settings.py	Wed Jul 02 19:05:41 2014 -0400
+++ b/kallithea/controllers/admin/settings.py	Wed May 21 16:59:37 2014 -0400
@@ -20,7 +20,7 @@
 :created_on: Jul 14, 2010
 :author: marcink
 :copyright: (c) 2013 RhodeCode GmbH.
-:license: GPLv3, see LICENSE for more details.
+:license: GPLv3, see LICENSE.md for more details.
 """
 
 import time
--- a/kallithea/controllers/admin/user_groups.py	Wed Jul 02 19:05:41 2014 -0400
+++ b/kallithea/controllers/admin/user_groups.py	Wed May 21 16:59:37 2014 -0400
@@ -20,7 +20,7 @@
 :created_on: Jan 25, 2011
 :author: marcink
 :copyright: (c) 2013 RhodeCode GmbH.
-:license: GPLv3, see LICENSE for more details.
+:license: GPLv3, see LICENSE.md for more details.
 """
 
 import logging
--- a/kallithea/controllers/admin/users.py	Wed Jul 02 19:05:41 2014 -0400
+++ b/kallithea/controllers/admin/users.py	Wed May 21 16:59:37 2014 -0400
@@ -20,7 +20,7 @@
 :created_on: Apr 4, 2010
 :author: marcink
 :copyright: (c) 2013 RhodeCode GmbH.
-:license: GPLv3, see LICENSE for more details.
+:license: GPLv3, see LICENSE.md for more details.
 """
 
 import logging
--- a/kallithea/controllers/api/__init__.py	Wed Jul 02 19:05:41 2014 -0400
+++ b/kallithea/controllers/api/__init__.py	Wed May 21 16:59:37 2014 -0400
@@ -20,7 +20,7 @@
 :created_on: Aug 20, 2011
 :author: marcink
 :copyright: (c) 2013 RhodeCode GmbH.
-:license: GPLv3, see LICENSE for more details.
+:license: GPLv3, see LICENSE.md for more details.
 """
 
 import inspect
--- a/kallithea/controllers/api/api.py	Wed Jul 02 19:05:41 2014 -0400
+++ b/kallithea/controllers/api/api.py	Wed May 21 16:59:37 2014 -0400
@@ -20,7 +20,7 @@
 :created_on: Aug 20, 2011
 :author: marcink
 :copyright: (c) 2013 RhodeCode GmbH.
-:license: GPLv3, see LICENSE for more details.
+:license: GPLv3, see LICENSE.md for more details.
 """
 
 
--- a/kallithea/controllers/bookmarks.py	Wed Jul 02 19:05:41 2014 -0400
+++ b/kallithea/controllers/bookmarks.py	Wed May 21 16:59:37 2014 -0400
@@ -20,7 +20,7 @@
 :created_on: Dec 1, 2011
 :author: marcink
 :copyright: (c) 2013 RhodeCode GmbH.
-:license: GPLv3, see LICENSE for more details.
+:license: GPLv3, see LICENSE.md for more details.
 """
 
 import logging
--- a/kallithea/controllers/branches.py	Wed Jul 02 19:05:41 2014 -0400
+++ b/kallithea/controllers/branches.py	Wed May 21 16:59:37 2014 -0400
@@ -20,7 +20,7 @@
 :created_on: Apr 21, 2010
 :author: marcink
 :copyright: (c) 2013 RhodeCode GmbH.
-:license: GPLv3, see LICENSE for more details.
+:license: GPLv3, see LICENSE.md for more details.
 """
 
 import logging
--- a/kallithea/controllers/changelog.py	Wed Jul 02 19:05:41 2014 -0400
+++ b/kallithea/controllers/changelog.py	Wed May 21 16:59:37 2014 -0400
@@ -20,7 +20,7 @@
 :created_on: Apr 21, 2010
 :author: marcink
 :copyright: (c) 2013 RhodeCode GmbH.
-:license: GPLv3, see LICENSE for more details.
+:license: GPLv3, see LICENSE.md for more details.
 """
 
 import logging
--- a/kallithea/controllers/changeset.py	Wed Jul 02 19:05:41 2014 -0400
+++ b/kallithea/controllers/changeset.py	Wed May 21 16:59:37 2014 -0400
@@ -21,7 +21,7 @@
 :created_on: Apr 25, 2010
 :author: marcink
 :copyright: (c) 2013 RhodeCode GmbH.
-:license: GPLv3, see LICENSE for more details.
+:license: GPLv3, see LICENSE.md for more details.
 """
 
 import logging
--- a/kallithea/controllers/compare.py	Wed Jul 02 19:05:41 2014 -0400
+++ b/kallithea/controllers/compare.py	Wed May 21 16:59:37 2014 -0400
@@ -21,7 +21,7 @@
 :created_on: May 6, 2012
 :author: marcink
 :copyright: (c) 2013 RhodeCode GmbH.
-:license: GPLv3, see LICENSE for more details.
+:license: GPLv3, see LICENSE.md for more details.
 """
 
 
--- a/kallithea/controllers/error.py	Wed Jul 02 19:05:41 2014 -0400
+++ b/kallithea/controllers/error.py	Wed May 21 16:59:37 2014 -0400
@@ -20,7 +20,7 @@
 :created_on: Dec 8, 2010
 :author: marcink
 :copyright: (c) 2013 RhodeCode GmbH.
-:license: GPLv3, see LICENSE for more details.
+:license: GPLv3, see LICENSE.md for more details.
 """
 
 import os
--- a/kallithea/controllers/feed.py	Wed Jul 02 19:05:41 2014 -0400
+++ b/kallithea/controllers/feed.py	Wed May 21 16:59:37 2014 -0400
@@ -20,7 +20,7 @@
 :created_on: Apr 23, 2010
 :author: marcink
 :copyright: (c) 2013 RhodeCode GmbH.
-:license: GPLv3, see LICENSE for more details.
+:license: GPLv3, see LICENSE.md for more details.
 """
 
 
--- a/kallithea/controllers/files.py	Wed Jul 02 19:05:41 2014 -0400
+++ b/kallithea/controllers/files.py	Wed May 21 16:59:37 2014 -0400
@@ -20,7 +20,7 @@
 :created_on: Apr 21, 2010
 :author: marcink
 :copyright: (c) 2013 RhodeCode GmbH.
-:license: GPLv3, see LICENSE for more details.
+:license: GPLv3, see LICENSE.md for more details.
 """
 
 from __future__ import with_statement
--- a/kallithea/controllers/followers.py	Wed Jul 02 19:05:41 2014 -0400
+++ b/kallithea/controllers/followers.py	Wed May 21 16:59:37 2014 -0400
@@ -20,7 +20,7 @@
 :created_on: Apr 23, 2011
 :author: marcink
 :copyright: (c) 2013 RhodeCode GmbH.
-:license: GPLv3, see LICENSE for more details.
+:license: GPLv3, see LICENSE.md for more details.
 """
 
 import logging
--- a/kallithea/controllers/forks.py	Wed Jul 02 19:05:41 2014 -0400
+++ b/kallithea/controllers/forks.py	Wed May 21 16:59:37 2014 -0400
@@ -20,7 +20,7 @@
 :created_on: Apr 23, 2011
 :author: marcink
 :copyright: (c) 2013 RhodeCode GmbH.
-:license: GPLv3, see LICENSE for more details.
+:license: GPLv3, see LICENSE.md for more details.
 """
 
 import logging
--- a/kallithea/controllers/home.py	Wed Jul 02 19:05:41 2014 -0400
+++ b/kallithea/controllers/home.py	Wed May 21 16:59:37 2014 -0400
@@ -20,7 +20,7 @@
 :created_on: Feb 18, 2010
 :author: marcink
 :copyright: (c) 2013 RhodeCode GmbH.
-:license: GPLv3, see LICENSE for more details.
+:license: GPLv3, see LICENSE.md for more details.
 
 """
 
--- a/kallithea/controllers/journal.py	Wed Jul 02 19:05:41 2014 -0400
+++ b/kallithea/controllers/journal.py	Wed May 21 16:59:37 2014 -0400
@@ -20,7 +20,7 @@
 :created_on: Nov 21, 2010
 :author: marcink
 :copyright: (c) 2013 RhodeCode GmbH.
-:license: GPLv3, see LICENSE for more details.
+:license: GPLv3, see LICENSE.md for more details.
 
 """
 
--- a/kallithea/controllers/login.py	Wed Jul 02 19:05:41 2014 -0400
+++ b/kallithea/controllers/login.py	Wed May 21 16:59:37 2014 -0400
@@ -20,7 +20,7 @@
 :created_on: Apr 22, 2010
 :author: marcink
 :copyright: (c) 2013 RhodeCode GmbH.
-:license: GPLv3, see LICENSE for more details.
+:license: GPLv3, see LICENSE.md for more details.
 """
 
 
--- a/kallithea/controllers/pullrequests.py	Wed Jul 02 19:05:41 2014 -0400
+++ b/kallithea/controllers/pullrequests.py	Wed May 21 16:59:37 2014 -0400
@@ -20,7 +20,7 @@
 :created_on: May 7, 2012
 :author: marcink
 :copyright: (c) 2013 RhodeCode GmbH.
-:license: GPLv3, see LICENSE for more details.
+:license: GPLv3, see LICENSE.md for more details.
 """
 
 import logging
--- a/kallithea/controllers/search.py	Wed Jul 02 19:05:41 2014 -0400
+++ b/kallithea/controllers/search.py	Wed May 21 16:59:37 2014 -0400
@@ -20,7 +20,7 @@
 :created_on: Aug 7, 2010
 :author: marcink
 :copyright: (c) 2013 RhodeCode GmbH.
-:license: GPLv3, see LICENSE for more details.
+:license: GPLv3, see LICENSE.md for more details.
 """
 
 import logging
--- a/kallithea/controllers/summary.py	Wed Jul 02 19:05:41 2014 -0400
+++ b/kallithea/controllers/summary.py	Wed May 21 16:59:37 2014 -0400
@@ -20,7 +20,7 @@
 :created_on: Apr 18, 2010
 :author: marcink
 :copyright: (c) 2013 RhodeCode GmbH.
-:license: GPLv3, see LICENSE for more details.
+:license: GPLv3, see LICENSE.md for more details.
 """
 
 import traceback
--- a/kallithea/controllers/tags.py	Wed Jul 02 19:05:41 2014 -0400
+++ b/kallithea/controllers/tags.py	Wed May 21 16:59:37 2014 -0400
@@ -20,7 +20,7 @@
 :created_on: Apr 21, 2010
 :author: marcink
 :copyright: (c) 2013 RhodeCode GmbH.
-:license: GPLv3, see LICENSE for more details.
+:license: GPLv3, see LICENSE.md for more details.
 
 """
 
--- a/kallithea/lib/__init__.py	Wed Jul 02 19:05:41 2014 -0400
+++ b/kallithea/lib/__init__.py	Wed May 21 16:59:37 2014 -0400
@@ -20,7 +20,7 @@
 :created_on: Oct 06, 2010
 :author: marcink
 :copyright: (c) 2013 RhodeCode GmbH.
-:license: GPLv3, see LICENSE for more details.
+:license: GPLv3, see LICENSE.md for more details.
 """
 
 import os
--- a/kallithea/lib/annotate.py	Wed Jul 02 19:05:41 2014 -0400
+++ b/kallithea/lib/annotate.py	Wed May 21 16:59:37 2014 -0400
@@ -20,7 +20,7 @@
 :created_on: Dec 4, 2011
 :author: marcink
 :copyright: (c) 2013 RhodeCode GmbH.
-:license: GPLv3, see LICENSE for more details.
+:license: GPLv3, see LICENSE.md for more details.
 """
 
 import StringIO
--- a/kallithea/lib/app_globals.py	Wed Jul 02 19:05:41 2014 -0400
+++ b/kallithea/lib/app_globals.py	Wed May 21 16:59:37 2014 -0400
@@ -21,7 +21,7 @@
 :created_on: Oct 06, 2010
 :author: marcink
 :copyright: (c) 2013 RhodeCode GmbH.
-:license: GPLv3, see LICENSE for more details.
+:license: GPLv3, see LICENSE.md for more details.
 """
 
 from beaker.cache import CacheManager
--- a/kallithea/lib/auth.py	Wed Jul 02 19:05:41 2014 -0400
+++ b/kallithea/lib/auth.py	Wed May 21 16:59:37 2014 -0400
@@ -20,7 +20,7 @@
 :created_on: Apr 4, 2010
 :author: marcink
 :copyright: (c) 2013 RhodeCode GmbH.
-:license: GPLv3, see LICENSE for more details.
+:license: GPLv3, see LICENSE.md for more details.
 """
 from __future__ import with_statement
 import time
--- a/kallithea/lib/auth_modules/auth_container.py	Wed Jul 02 19:05:41 2014 -0400
+++ b/kallithea/lib/auth_modules/auth_container.py	Wed May 21 16:59:37 2014 -0400
@@ -20,7 +20,7 @@
 :created_on: Created on Nov 17, 2012
 :author: marcink
 :copyright: (c) 2013 RhodeCode GmbH.
-:license: GPLv3, see LICENSE for more details.
+:license: GPLv3, see LICENSE.md for more details.
 """
 
 import logging
--- a/kallithea/lib/auth_modules/auth_crowd.py	Wed Jul 02 19:05:41 2014 -0400
+++ b/kallithea/lib/auth_modules/auth_crowd.py	Wed May 21 16:59:37 2014 -0400
@@ -20,7 +20,7 @@
 :created_on: Created on Nov 17, 2012
 :author: marcink
 :copyright: (c) 2013 RhodeCode GmbH.
-:license: GPLv3, see LICENSE for more details.
+:license: GPLv3, see LICENSE.md for more details.
 """
 
 
--- a/kallithea/lib/auth_modules/auth_ldap.py	Wed Jul 02 19:05:41 2014 -0400
+++ b/kallithea/lib/auth_modules/auth_ldap.py	Wed May 21 16:59:37 2014 -0400
@@ -20,7 +20,7 @@
 :created_on: Created on Nov 17, 2010
 :author: marcink
 :copyright: (c) 2013 RhodeCode GmbH.
-:license: GPLv3, see LICENSE for more details.
+:license: GPLv3, see LICENSE.md for more details.
 """
 
 
--- a/kallithea/lib/auth_modules/auth_rhodecode.py	Wed Jul 02 19:05:41 2014 -0400
+++ b/kallithea/lib/auth_modules/auth_rhodecode.py	Wed May 21 16:59:37 2014 -0400
@@ -20,7 +20,7 @@
 :created_on: Created on Nov 17, 2012
 :author: marcink
 :copyright: (c) 2013 RhodeCode GmbH.
-:license: GPLv3, see LICENSE for more details.
+:license: GPLv3, see LICENSE.md for more details.
 """
 
 
--- a/kallithea/lib/base.py	Wed Jul 02 19:05:41 2014 -0400
+++ b/kallithea/lib/base.py	Wed May 21 16:59:37 2014 -0400
@@ -23,7 +23,7 @@
 :created_on: Oct 06, 2010
 :author: marcink
 :copyright: (c) 2013 RhodeCode GmbH.
-:license: GPLv3, see LICENSE for more details.
+:license: GPLv3, see LICENSE.md for more details.
 """
 
 import logging
--- a/kallithea/lib/celerylib/__init__.py	Wed Jul 02 19:05:41 2014 -0400
+++ b/kallithea/lib/celerylib/__init__.py	Wed May 21 16:59:37 2014 -0400
@@ -20,7 +20,7 @@
 :created_on: Nov 27, 2010
 :author: marcink
 :copyright: (c) 2013 RhodeCode GmbH.
-:license: GPLv3, see LICENSE for more details.
+:license: GPLv3, see LICENSE.md for more details.
 """
 
 
--- a/kallithea/lib/celerylib/tasks.py	Wed Jul 02 19:05:41 2014 -0400
+++ b/kallithea/lib/celerylib/tasks.py	Wed May 21 16:59:37 2014 -0400
@@ -21,7 +21,7 @@
 :created_on: Oct 6, 2010
 :author: marcink
 :copyright: (c) 2013 RhodeCode GmbH.
-:license: GPLv3, see LICENSE for more details.
+:license: GPLv3, see LICENSE.md for more details.
 """
 
 from celery.decorators import task
--- a/kallithea/lib/compat.py	Wed Jul 02 19:05:41 2014 -0400
+++ b/kallithea/lib/compat.py	Wed May 21 16:59:37 2014 -0400
@@ -21,7 +21,7 @@
 :created_on: Oct 7, 2011
 :author: marcink
 :copyright: (c) 2013 RhodeCode GmbH.
-:license: GPLv3, see LICENSE for more details.
+:license: GPLv3, see LICENSE.md for more details.
 """
 
 
--- a/kallithea/lib/db_manage.py	Wed Jul 02 19:05:41 2014 -0400
+++ b/kallithea/lib/db_manage.py	Wed May 21 16:59:37 2014 -0400
@@ -21,7 +21,7 @@
 :created_on: Apr 10, 2010
 :author: marcink
 :copyright: (c) 2013 RhodeCode GmbH.
-:license: GPLv3, see LICENSE for more details.
+:license: GPLv3, see LICENSE.md for more details.
 """
 
 import os
--- a/kallithea/lib/dbmigrate/__init__.py	Wed Jul 02 19:05:41 2014 -0400
+++ b/kallithea/lib/dbmigrate/__init__.py	Wed May 21 16:59:37 2014 -0400
@@ -20,7 +20,7 @@
 :created_on: Dec 11, 2010
 :author: marcink
 :copyright: (c) 2013 RhodeCode GmbH.
-:license: GPLv3, see LICENSE for more details.
+:license: GPLv3, see LICENSE.md for more details.
 """
 
 import logging
--- a/kallithea/lib/dbmigrate/schema/__init__.py	Wed Jul 02 19:05:41 2014 -0400
+++ b/kallithea/lib/dbmigrate/schema/__init__.py	Wed May 21 16:59:37 2014 -0400
@@ -20,5 +20,5 @@
 :created_on: Nov 1, 2011
 :author: marcink
 :copyright: (c) 2013 RhodeCode GmbH.
-:license: GPLv3, see LICENSE for more details.
+:license: GPLv3, see LICENSE.md for more details.
 """
--- a/kallithea/lib/dbmigrate/schema/db_1_2_0.py	Wed Jul 02 19:05:41 2014 -0400
+++ b/kallithea/lib/dbmigrate/schema/db_1_2_0.py	Wed May 21 16:59:37 2014 -0400
@@ -20,7 +20,7 @@
 :created_on: Apr 08, 2010
 :author: marcink
 :copyright: (c) 2013 RhodeCode GmbH.
-:license: GPLv3, see LICENSE for more details.
+:license: GPLv3, see LICENSE.md for more details.
 """
 
 import os
--- a/kallithea/lib/dbmigrate/schema/db_1_3_0.py	Wed Jul 02 19:05:41 2014 -0400
+++ b/kallithea/lib/dbmigrate/schema/db_1_3_0.py	Wed May 21 16:59:37 2014 -0400
@@ -20,7 +20,7 @@
 :created_on: Apr 08, 2010
 :author: marcink
 :copyright: (c) 2013 RhodeCode GmbH.
-:license: GPLv3, see LICENSE for more details.
+:license: GPLv3, see LICENSE.md for more details.
 
 """
 
--- a/kallithea/lib/dbmigrate/schema/db_1_4_0.py	Wed Jul 02 19:05:41 2014 -0400
+++ b/kallithea/lib/dbmigrate/schema/db_1_4_0.py	Wed May 21 16:59:37 2014 -0400
@@ -20,7 +20,7 @@
 :created_on: Apr 08, 2010
 :author: marcink
 :copyright: (c) 2013 RhodeCode GmbH.
-:license: GPLv3, see LICENSE for more details.
+:license: GPLv3, see LICENSE.md for more details.
 """
 
 
--- a/kallithea/lib/dbmigrate/schema/db_1_5_0.py	Wed Jul 02 19:05:41 2014 -0400
+++ b/kallithea/lib/dbmigrate/schema/db_1_5_0.py	Wed May 21 16:59:37 2014 -0400
@@ -20,7 +20,7 @@
 :created_on: Apr 08, 2010
 :author: marcink
 :copyright: (c) 2013 RhodeCode GmbH.
-:license: GPLv3, see LICENSE for more details.
+:license: GPLv3, see LICENSE.md for more details.
 """
 
 import os
--- a/kallithea/lib/dbmigrate/schema/db_1_5_2.py	Wed Jul 02 19:05:41 2014 -0400
+++ b/kallithea/lib/dbmigrate/schema/db_1_5_2.py	Wed May 21 16:59:37 2014 -0400
@@ -20,7 +20,7 @@
 :created_on: Apr 08, 2010
 :author: marcink
 :copyright: (c) 2013 RhodeCode GmbH.
-:license: GPLv3, see LICENSE for more details.
+:license: GPLv3, see LICENSE.md for more details.
 """
 
 import os
--- a/kallithea/lib/dbmigrate/schema/db_1_6_0.py	Wed Jul 02 19:05:41 2014 -0400
+++ b/kallithea/lib/dbmigrate/schema/db_1_6_0.py	Wed May 21 16:59:37 2014 -0400
@@ -20,7 +20,7 @@
 :created_on: Apr 08, 2010
 :author: marcink
 :copyright: (c) 2013 RhodeCode GmbH.
-:license: GPLv3, see LICENSE for more details.
+:license: GPLv3, see LICENSE.md for more details.
 """
 
 import os
--- a/kallithea/lib/dbmigrate/schema/db_1_7_0.py	Wed Jul 02 19:05:41 2014 -0400
+++ b/kallithea/lib/dbmigrate/schema/db_1_7_0.py	Wed May 21 16:59:37 2014 -0400
@@ -20,7 +20,7 @@
 :created_on: Apr 08, 2010
 :author: marcink
 :copyright: (c) 2013 RhodeCode GmbH.
-:license: GPLv3, see LICENSE for more details.
+:license: GPLv3, see LICENSE.md for more details.
 """
 
 import os
--- a/kallithea/lib/dbmigrate/schema/db_1_8_0.py	Wed Jul 02 19:05:41 2014 -0400
+++ b/kallithea/lib/dbmigrate/schema/db_1_8_0.py	Wed May 21 16:59:37 2014 -0400
@@ -20,7 +20,7 @@
 :created_on: Apr 08, 2010
 :author: marcink
 :copyright: (c) 2013 RhodeCode GmbH.
-:license: GPLv3, see LICENSE for more details.
+:license: GPLv3, see LICENSE.md for more details.
 """
 
 import os
--- a/kallithea/lib/dbmigrate/schema/db_2_0_0.py	Wed Jul 02 19:05:41 2014 -0400
+++ b/kallithea/lib/dbmigrate/schema/db_2_0_0.py	Wed May 21 16:59:37 2014 -0400
@@ -20,7 +20,7 @@
 :created_on: Apr 08, 2010
 :author: marcink
 :copyright: (c) 2013 RhodeCode GmbH.
-:license: GPLv3, see LICENSE for more details.
+:license: GPLv3, see LICENSE.md for more details.
 """
 
 import os
--- a/kallithea/lib/dbmigrate/schema/db_2_0_1.py	Wed Jul 02 19:05:41 2014 -0400
+++ b/kallithea/lib/dbmigrate/schema/db_2_0_1.py	Wed May 21 16:59:37 2014 -0400
@@ -20,7 +20,7 @@
 :created_on: Apr 08, 2010
 :author: marcink
 :copyright: (c) 2013 RhodeCode GmbH.
-:license: GPLv3, see LICENSE for more details.
+:license: GPLv3, see LICENSE.md for more details.
 """
 
 import os
--- a/kallithea/lib/dbmigrate/schema/db_2_0_2.py	Wed Jul 02 19:05:41 2014 -0400
+++ b/kallithea/lib/dbmigrate/schema/db_2_0_2.py	Wed May 21 16:59:37 2014 -0400
@@ -20,7 +20,7 @@
 :created_on: Apr 08, 2010
 :author: marcink
 :copyright: (c) 2013 RhodeCode GmbH.
-:license: GPLv3, see LICENSE for more details.
+:license: GPLv3, see LICENSE.md for more details.
 """
 
 import os
--- a/kallithea/lib/dbmigrate/schema/db_2_1_0.py	Wed Jul 02 19:05:41 2014 -0400
+++ b/kallithea/lib/dbmigrate/schema/db_2_1_0.py	Wed May 21 16:59:37 2014 -0400
@@ -20,7 +20,7 @@
 :created_on: Apr 08, 2010
 :author: marcink
 :copyright: (c) 2013 RhodeCode GmbH.
-:license: GPLv3, see LICENSE for more details.
+:license: GPLv3, see LICENSE.md for more details.
 """
 
 import os
--- a/kallithea/lib/dbmigrate/schema/db_2_2_0.py	Wed Jul 02 19:05:41 2014 -0400
+++ b/kallithea/lib/dbmigrate/schema/db_2_2_0.py	Wed May 21 16:59:37 2014 -0400
@@ -20,7 +20,7 @@
 :created_on: Apr 08, 2010
 :author: marcink
 :copyright: (c) 2013 RhodeCode GmbH.
-:license: GPLv3, see LICENSE for more details.
+:license: GPLv3, see LICENSE.md for more details.
 """
 
 import os
--- a/kallithea/lib/dbmigrate/schema/db_2_2_3.py	Wed Jul 02 19:05:41 2014 -0400
+++ b/kallithea/lib/dbmigrate/schema/db_2_2_3.py	Wed May 21 16:59:37 2014 -0400
@@ -20,7 +20,7 @@
 :created_on: Apr 08, 2010
 :author: marcink
 :copyright: (c) 2013 RhodeCode GmbH.
-:license: GPLv3, see LICENSE for more details.
+:license: GPLv3, see LICENSE.md for more details.
 """
 
 import os
--- a/kallithea/lib/dbmigrate/versions/__init__.py	Wed Jul 02 19:05:41 2014 -0400
+++ b/kallithea/lib/dbmigrate/versions/__init__.py	Wed May 21 16:59:37 2014 -0400
@@ -20,7 +20,7 @@
 :created_on: Dec 11, 2010
 :author: marcink
 :copyright: (c) 2013 RhodeCode GmbH.
-:license: GPLv3, see LICENSE for more details.
+:license: GPLv3, see LICENSE.md for more details.
 """
 
 from sqlalchemy import *
--- a/kallithea/lib/diffs.py	Wed Jul 02 19:05:41 2014 -0400
+++ b/kallithea/lib/diffs.py	Wed May 21 16:59:37 2014 -0400
@@ -21,7 +21,7 @@
 :created_on: Dec 4, 2011
 :author: marcink
 :copyright: (c) 2013 RhodeCode GmbH.
-:license: GPLv3, see LICENSE for more details.
+:license: GPLv3, see LICENSE.md for more details.
 """
 import re
 import difflib
--- a/kallithea/lib/exceptions.py	Wed Jul 02 19:05:41 2014 -0400
+++ b/kallithea/lib/exceptions.py	Wed May 21 16:59:37 2014 -0400
@@ -20,7 +20,7 @@
 :created_on: Nov 17, 2010
 :author: marcink
 :copyright: (c) 2013 RhodeCode GmbH.
-:license: GPLv3, see LICENSE for more details.
+:license: GPLv3, see LICENSE.md for more details.
 """
 
 from webob.exc import HTTPClientError
--- a/kallithea/lib/hooks.py	Wed Jul 02 19:05:41 2014 -0400
+++ b/kallithea/lib/hooks.py	Wed May 21 16:59:37 2014 -0400
@@ -20,7 +20,7 @@
 :created_on: Aug 6, 2010
 :author: marcink
 :copyright: (c) 2013 RhodeCode GmbH.
-:license: GPLv3, see LICENSE for more details.
+:license: GPLv3, see LICENSE.md for more details.
 """
 
 import os
--- a/kallithea/lib/indexers/__init__.py	Wed Jul 02 19:05:41 2014 -0400
+++ b/kallithea/lib/indexers/__init__.py	Wed May 21 16:59:37 2014 -0400
@@ -20,7 +20,7 @@
 :created_on: Aug 17, 2010
 :author: marcink
 :copyright: (c) 2013 RhodeCode GmbH.
-:license: GPLv3, see LICENSE for more details.
+:license: GPLv3, see LICENSE.md for more details.
 """
 
 import os
--- a/kallithea/lib/indexers/daemon.py	Wed Jul 02 19:05:41 2014 -0400
+++ b/kallithea/lib/indexers/daemon.py	Wed May 21 16:59:37 2014 -0400
@@ -20,7 +20,7 @@
 :created_on: Jan 26, 2010
 :author: marcink
 :copyright: (c) 2013 RhodeCode GmbH.
-:license: GPLv3, see LICENSE for more details.
+:license: GPLv3, see LICENSE.md for more details.
 """
 
 from __future__ import with_statement
--- a/kallithea/lib/markup_renderer.py	Wed Jul 02 19:05:41 2014 -0400
+++ b/kallithea/lib/markup_renderer.py	Wed May 21 16:59:37 2014 -0400
@@ -20,7 +20,7 @@
 :created_on: Oct 27, 2011
 :author: marcink
 :copyright: (c) 2013 RhodeCode GmbH.
-:license: GPLv3, see LICENSE for more details.
+:license: GPLv3, see LICENSE.md for more details.
 """
 
 
--- a/kallithea/lib/middleware/errormator.py	Wed Jul 02 19:05:41 2014 -0400
+++ b/kallithea/lib/middleware/errormator.py	Wed May 21 16:59:37 2014 -0400
@@ -20,7 +20,7 @@
 :created_on: October 18, 2012
 :author: marcink
 :copyright: (c) 2013 RhodeCode GmbH.
-:license: GPLv3, see LICENSE for more details.
+:license: GPLv3, see LICENSE.md for more details.
 """
 
 
--- a/kallithea/lib/middleware/https_fixup.py	Wed Jul 02 19:05:41 2014 -0400
+++ b/kallithea/lib/middleware/https_fixup.py	Wed May 21 16:59:37 2014 -0400
@@ -20,7 +20,7 @@
 :created_on: May 23, 2010
 :author: marcink
 :copyright: (c) 2013 RhodeCode GmbH.
-:license: GPLv3, see LICENSE for more details.
+:license: GPLv3, see LICENSE.md for more details.
 """
 
 
--- a/kallithea/lib/middleware/sentry.py	Wed Jul 02 19:05:41 2014 -0400
+++ b/kallithea/lib/middleware/sentry.py	Wed May 21 16:59:37 2014 -0400
@@ -20,7 +20,7 @@
 :created_on: September 18, 2012
 :author: marcink
 :copyright: (c) 2013 RhodeCode GmbH.
-:license: GPLv3, see LICENSE for more details.
+:license: GPLv3, see LICENSE.md for more details.
 """
 
 
--- a/kallithea/lib/middleware/simplegit.py	Wed Jul 02 19:05:41 2014 -0400
+++ b/kallithea/lib/middleware/simplegit.py	Wed May 21 16:59:37 2014 -0400
@@ -21,7 +21,7 @@
 :created_on: Apr 28, 2010
 :author: marcink
 :copyright: (c) 2013 RhodeCode GmbH.
-:license: GPLv3, see LICENSE for more details.
+:license: GPLv3, see LICENSE.md for more details.
 
 """
 
--- a/kallithea/lib/middleware/simplehg.py	Wed Jul 02 19:05:41 2014 -0400
+++ b/kallithea/lib/middleware/simplehg.py	Wed May 21 16:59:37 2014 -0400
@@ -21,7 +21,7 @@
 :created_on: Apr 28, 2010
 :author: marcink
 :copyright: (c) 2013 RhodeCode GmbH.
-:license: GPLv3, see LICENSE for more details.
+:license: GPLv3, see LICENSE.md for more details.
 
 """
 
--- a/kallithea/lib/middleware/wrapper.py	Wed Jul 02 19:05:41 2014 -0400
+++ b/kallithea/lib/middleware/wrapper.py	Wed May 21 16:59:37 2014 -0400
@@ -20,7 +20,7 @@
 :created_on: May 23, 2013
 :author: marcink
 :copyright: (c) 2013 RhodeCode GmbH.
-:license: GPLv3, see LICENSE for more details.
+:license: GPLv3, see LICENSE.md for more details.
 """
 
 import time
--- a/kallithea/lib/paster_commands/cache_keys.py	Wed Jul 02 19:05:41 2014 -0400
+++ b/kallithea/lib/paster_commands/cache_keys.py	Wed May 21 16:59:37 2014 -0400
@@ -21,7 +21,7 @@
 :created_on: mar 27, 2013
 :author: marcink
 :copyright: (c) 2013 RhodeCode GmbH.
-:license: GPLv3, see LICENSE for more details.
+:license: GPLv3, see LICENSE.md for more details.
 """
 
 from __future__ import with_statement
--- a/kallithea/lib/paster_commands/ishell.py	Wed Jul 02 19:05:41 2014 -0400
+++ b/kallithea/lib/paster_commands/ishell.py	Wed May 21 16:59:37 2014 -0400
@@ -20,7 +20,7 @@
 :created_on: Apr 4, 2013
 :author: marcink
 :copyright: (c) 2013 RhodeCode GmbH.
-:license: GPLv3, see LICENSE for more details.
+:license: GPLv3, see LICENSE.md for more details.
 """
 
 from __future__ import with_statement
--- a/kallithea/lib/paster_commands/make_index.py	Wed Jul 02 19:05:41 2014 -0400
+++ b/kallithea/lib/paster_commands/make_index.py	Wed May 21 16:59:37 2014 -0400
@@ -20,7 +20,7 @@
 :created_on: Aug 17, 2010
 :author: marcink
 :copyright: (c) 2013 RhodeCode GmbH.
-:license: GPLv3, see LICENSE for more details.
+:license: GPLv3, see LICENSE.md for more details.
 
 """
 
--- a/kallithea/lib/paster_commands/make_rcextensions.py	Wed Jul 02 19:05:41 2014 -0400
+++ b/kallithea/lib/paster_commands/make_rcextensions.py	Wed May 21 16:59:37 2014 -0400
@@ -20,7 +20,7 @@
 :created_on: Mar 6, 2012
 :author: marcink
 :copyright: (c) 2013 RhodeCode GmbH.
-:license: GPLv3, see LICENSE for more details.
+:license: GPLv3, see LICENSE.md for more details.
 
 """
 
--- a/kallithea/lib/paster_commands/repo_scan.py	Wed Jul 02 19:05:41 2014 -0400
+++ b/kallithea/lib/paster_commands/repo_scan.py	Wed May 21 16:59:37 2014 -0400
@@ -20,7 +20,7 @@
 :created_on: Feb 9, 2013
 :author: marcink
 :copyright: (c) 2013 RhodeCode GmbH.
-:license: GPLv3, see LICENSE for more details.
+:license: GPLv3, see LICENSE.md for more details.
 """
 
 from __future__ import with_statement
--- a/kallithea/lib/paster_commands/update_repoinfo.py	Wed Jul 02 19:05:41 2014 -0400
+++ b/kallithea/lib/paster_commands/update_repoinfo.py	Wed May 21 16:59:37 2014 -0400
@@ -20,7 +20,7 @@
 :created_on: Jul 14, 2012
 :author: marcink
 :copyright: (c) 2013 RhodeCode GmbH.
-:license: GPLv3, see LICENSE for more details.
+:license: GPLv3, see LICENSE.md for more details.
 """
 
 from __future__ import with_statement
--- a/kallithea/lib/rcmail/smtp_mailer.py	Wed Jul 02 19:05:41 2014 -0400
+++ b/kallithea/lib/rcmail/smtp_mailer.py	Wed May 21 16:59:37 2014 -0400
@@ -20,7 +20,7 @@
 :created_on: Sep 13, 2010
 :author: marcink
 :copyright: (c) 2013 RhodeCode GmbH.
-:license: GPLv3, see LICENSE for more details.
+:license: GPLv3, see LICENSE.md for more details.
 """
 
 import time
--- a/kallithea/lib/utils.py	Wed Jul 02 19:05:41 2014 -0400
+++ b/kallithea/lib/utils.py	Wed May 21 16:59:37 2014 -0400
@@ -20,7 +20,7 @@
 :created_on: Apr 18, 2010
 :author: marcink
 :copyright: (c) 2013 RhodeCode GmbH.
-:license: GPLv3, see LICENSE for more details.
+:license: GPLv3, see LICENSE.md for more details.
 """
 
 import os
--- a/kallithea/lib/utils2.py	Wed Jul 02 19:05:41 2014 -0400
+++ b/kallithea/lib/utils2.py	Wed May 21 16:59:37 2014 -0400
@@ -20,7 +20,7 @@
 :created_on: Jan 5, 2011
 :author: marcink
 :copyright: (c) 2013 RhodeCode GmbH.
-:license: GPLv3, see LICENSE for more details.
+:license: GPLv3, see LICENSE.md for more details.
 """
 
 
--- a/kallithea/model/__init__.py	Wed Jul 02 19:05:41 2014 -0400
+++ b/kallithea/model/__init__.py	Wed May 21 16:59:37 2014 -0400
@@ -20,7 +20,7 @@
 :created_on: Nov 25, 2010
 :author: marcink
 :copyright: (c) 2013 RhodeCode GmbH.
-:license: GPLv3, see LICENSE for more details.
+:license: GPLv3, see LICENSE.md for more details.
 
 
 :example:
--- a/kallithea/model/api_key.py	Wed Jul 02 19:05:41 2014 -0400
+++ b/kallithea/model/api_key.py	Wed May 21 16:59:37 2014 -0400
@@ -20,7 +20,7 @@
 :created_on: Sep 8, 2013
 :author: marcink
 :copyright: (c) 2013 RhodeCode GmbH.
-:license: GPLv3, see LICENSE for more details.
+:license: GPLv3, see LICENSE.md for more details.
 """
 
 from __future__ import with_statement
--- a/kallithea/model/changeset_status.py	Wed Jul 02 19:05:41 2014 -0400
+++ b/kallithea/model/changeset_status.py	Wed May 21 16:59:37 2014 -0400
@@ -8,7 +8,7 @@
 :created_on: Apr 30, 2012
 :author: marcink
 :copyright: (c) 2013 RhodeCode GmbH.
-:license: GPLv3, see LICENSE for more details.
+:license: GPLv3, see LICENSE.md for more details.
 """
 # This program is free software: you can redistribute it and/or modify
 # it under the terms of the GNU General Public License as published by
--- a/kallithea/model/comment.py	Wed Jul 02 19:05:41 2014 -0400
+++ b/kallithea/model/comment.py	Wed May 21 16:59:37 2014 -0400
@@ -20,7 +20,7 @@
 :created_on: Nov 11, 2011
 :author: marcink
 :copyright: (c) 2013 RhodeCode GmbH.
-:license: GPLv3, see LICENSE for more details.
+:license: GPLv3, see LICENSE.md for more details.
 """
 
 import logging
--- a/kallithea/model/db.py	Wed Jul 02 19:05:41 2014 -0400
+++ b/kallithea/model/db.py	Wed May 21 16:59:37 2014 -0400
@@ -20,7 +20,7 @@
 :created_on: Apr 08, 2010
 :author: marcink
 :copyright: (c) 2013 RhodeCode GmbH.
-:license: GPLv3, see LICENSE for more details.
+:license: GPLv3, see LICENSE.md for more details.
 """
 
 import os
--- a/kallithea/model/gist.py	Wed Jul 02 19:05:41 2014 -0400
+++ b/kallithea/model/gist.py	Wed May 21 16:59:37 2014 -0400
@@ -20,7 +20,7 @@
 :created_on: May 9, 2013
 :author: marcink
 :copyright: (c) 2013 RhodeCode GmbH.
-:license: GPLv3, see LICENSE for more details.
+:license: GPLv3, see LICENSE.md for more details.
 """
 
 from __future__ import with_statement
--- a/kallithea/model/notification.py	Wed Jul 02 19:05:41 2014 -0400
+++ b/kallithea/model/notification.py	Wed May 21 16:59:37 2014 -0400
@@ -21,7 +21,7 @@
 :created_on: Nov 20, 2011
 :author: marcink
 :copyright: (c) 2013 RhodeCode GmbH.
-:license: GPLv3, see LICENSE for more details.
+:license: GPLv3, see LICENSE.md for more details.
 """
 
 
--- a/kallithea/model/permission.py	Wed Jul 02 19:05:41 2014 -0400
+++ b/kallithea/model/permission.py	Wed May 21 16:59:37 2014 -0400
@@ -20,7 +20,7 @@
 :created_on: Aug 20, 2010
 :author: marcink
 :copyright: (c) 2013 RhodeCode GmbH.
-:license: GPLv3, see LICENSE for more details.
+:license: GPLv3, see LICENSE.md for more details.
 """
 
 
--- a/kallithea/model/pull_request.py	Wed Jul 02 19:05:41 2014 -0400
+++ b/kallithea/model/pull_request.py	Wed May 21 16:59:37 2014 -0400
@@ -20,7 +20,7 @@
 :created_on: Jun 6, 2012
 :author: marcink
 :copyright: (c) 2013 RhodeCode GmbH.
-:license: GPLv3, see LICENSE for more details.
+:license: GPLv3, see LICENSE.md for more details.
 """
 
 import logging
--- a/kallithea/model/repo.py	Wed Jul 02 19:05:41 2014 -0400
+++ b/kallithea/model/repo.py	Wed May 21 16:59:37 2014 -0400
@@ -20,7 +20,7 @@
 :created_on: Jun 5, 2010
 :author: marcink
 :copyright: (c) 2013 RhodeCode GmbH.
-:license: GPLv3, see LICENSE for more details.
+:license: GPLv3, see LICENSE.md for more details.
 
 """
 
--- a/kallithea/model/repo_group.py	Wed Jul 02 19:05:41 2014 -0400
+++ b/kallithea/model/repo_group.py	Wed May 21 16:59:37 2014 -0400
@@ -20,7 +20,7 @@
 :created_on: Jan 25, 2011
 :author: marcink
 :copyright: (c) 2013 RhodeCode GmbH.
-:license: GPLv3, see LICENSE for more details.
+:license: GPLv3, see LICENSE.md for more details.
 """
 
 
--- a/kallithea/model/scm.py	Wed Jul 02 19:05:41 2014 -0400
+++ b/kallithea/model/scm.py	Wed May 21 16:59:37 2014 -0400
@@ -20,7 +20,7 @@
 :created_on: Apr 9, 2010
 :author: marcink
 :copyright: (c) 2013 RhodeCode GmbH.
-:license: GPLv3, see LICENSE for more details.
+:license: GPLv3, see LICENSE.md for more details.
 """
 
 from __future__ import with_statement
--- a/kallithea/model/user.py	Wed Jul 02 19:05:41 2014 -0400
+++ b/kallithea/model/user.py	Wed May 21 16:59:37 2014 -0400
@@ -20,7 +20,7 @@
 :created_on: Apr 9, 2010
 :author: marcink
 :copyright: (c) 2013 RhodeCode GmbH.
-:license: GPLv3, see LICENSE for more details.
+:license: GPLv3, see LICENSE.md for more details.
 """
 
 
--- a/kallithea/tests/other/test_libs.py	Wed Jul 02 19:05:41 2014 -0400
+++ b/kallithea/tests/other/test_libs.py	Wed May 21 16:59:37 2014 -0400
@@ -20,7 +20,7 @@
 :created_on: Jun 9, 2011
 :author: marcink
 :copyright: (c) 2013 RhodeCode GmbH.
-:license: GPLv3, see LICENSE for more details.
+:license: GPLv3, see LICENSE.md for more details.
 """
 
 from __future__ import with_statement
--- a/kallithea/tests/other/test_vcs_operations.py	Wed Jul 02 19:05:41 2014 -0400
+++ b/kallithea/tests/other/test_vcs_operations.py	Wed May 21 16:59:37 2014 -0400
@@ -24,7 +24,7 @@
 :created_on: Dec 30, 2010
 :author: marcink
 :copyright: (c) 2013 RhodeCode GmbH.
-:license: GPLv3, see LICENSE for more details.
+:license: GPLv3, see LICENSE.md for more details.
 
 """
 
--- a/kallithea/tests/scripts/test_concurency.py	Wed Jul 02 19:05:41 2014 -0400
+++ b/kallithea/tests/scripts/test_concurency.py	Wed May 21 16:59:37 2014 -0400
@@ -20,7 +20,7 @@
 :created_on: Dec 30, 2010
 :author: marcink
 :copyright: (c) 2013 RhodeCode GmbH.
-:license: GPLv3, see LICENSE for more details.
+:license: GPLv3, see LICENSE.md for more details.
 
 """
 
--- a/kallithea/tests/scripts/test_crawler.py	Wed Jul 02 19:05:41 2014 -0400
+++ b/kallithea/tests/scripts/test_crawler.py	Wed May 21 16:59:37 2014 -0400
@@ -24,7 +24,7 @@
 :created_on: Apr 21, 2010
 :author: marcink
 :copyright: (c) 2013 RhodeCode GmbH.
-:license: GPLv3, see LICENSE for more details.
+:license: GPLv3, see LICENSE.md for more details.
 """
 
 
--- a/kallithea/websetup.py	Wed Jul 02 19:05:41 2014 -0400
+++ b/kallithea/websetup.py	Wed May 21 16:59:37 2014 -0400
@@ -20,7 +20,7 @@
 :created_on: Dec 11, 2010
 :author: marcink
 :copyright: (c) 2013 RhodeCode GmbH.
-:license: GPLv3, see LICENSE for more details.
+:license: GPLv3, see LICENSE.md for more details.
 """
 
 import logging
--- a/setup.cfg	Wed Jul 02 19:05:41 2014 -0400
+++ b/setup.cfg	Wed May 21 16:59:37 2014 -0400
@@ -24,7 +24,7 @@
 add_comments = TRANSLATORS:
 output_file = kallithea/i18n/kallithea.pot
 msgid-bugs-address = marcin@maq.io
-copyright-holder = Marcin Kuzminski RhodeCode
+copyright-holder = Various authors, licensing as GPLv3
 no-wrap = true
 
 [init_catalog]