# HG changeset patch # User Bradley M. Kuhn # Date 1400705977 14400 # Node ID ad38f9f93b3b485e5907601b811d1a6130d50ff5 # Parent 58e390e0cea4f5b6682821da6e9b9f1a40e436c9 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. diff -r 58e390e0cea4 -r ad38f9f93b3b LICENSE.md --- 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. diff -r 58e390e0cea4 -r ad38f9f93b3b docs/conf.py --- 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 diff -r 58e390e0cea4 -r ad38f9f93b3b kallithea/__init__.py --- 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 diff -r 58e390e0cea4 -r ad38f9f93b3b kallithea/bin/__init__.py --- 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. """ diff -r 58e390e0cea4 -r ad38f9f93b3b kallithea/bin/base.py --- 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 diff -r 58e390e0cea4 -r ad38f9f93b3b kallithea/bin/kallithea_api.py --- 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 diff -r 58e390e0cea4 -r ad38f9f93b3b kallithea/bin/kallithea_backup.py --- 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 diff -r 58e390e0cea4 -r ad38f9f93b3b kallithea/bin/kallithea_config.py --- 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. """ diff -r 58e390e0cea4 -r ad38f9f93b3b kallithea/bin/kallithea_gist.py --- 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 diff -r 58e390e0cea4 -r ad38f9f93b3b kallithea/bin/ldap_sync.py --- 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 diff -r 58e390e0cea4 -r ad38f9f93b3b kallithea/config/conf.py --- 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 diff -r 58e390e0cea4 -r ad38f9f93b3b kallithea/controllers/admin/admin.py --- 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. """ diff -r 58e390e0cea4 -r ad38f9f93b3b kallithea/controllers/admin/defaults.py --- 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 diff -r 58e390e0cea4 -r ad38f9f93b3b kallithea/controllers/admin/gists.py --- 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 diff -r 58e390e0cea4 -r ad38f9f93b3b kallithea/controllers/admin/my_account.py --- 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 diff -r 58e390e0cea4 -r ad38f9f93b3b kallithea/controllers/admin/notifications.py --- 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 diff -r 58e390e0cea4 -r ad38f9f93b3b kallithea/controllers/admin/permissions.py --- 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. """ diff -r 58e390e0cea4 -r ad38f9f93b3b kallithea/controllers/admin/repo_groups.py --- 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 diff -r 58e390e0cea4 -r ad38f9f93b3b kallithea/controllers/admin/repos.py --- 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 diff -r 58e390e0cea4 -r ad38f9f93b3b kallithea/controllers/admin/settings.py --- 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 diff -r 58e390e0cea4 -r ad38f9f93b3b kallithea/controllers/admin/user_groups.py --- 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 diff -r 58e390e0cea4 -r ad38f9f93b3b kallithea/controllers/admin/users.py --- 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 diff -r 58e390e0cea4 -r ad38f9f93b3b kallithea/controllers/api/__init__.py --- 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 diff -r 58e390e0cea4 -r ad38f9f93b3b kallithea/controllers/api/api.py --- 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. """ diff -r 58e390e0cea4 -r ad38f9f93b3b kallithea/controllers/bookmarks.py --- 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 diff -r 58e390e0cea4 -r ad38f9f93b3b kallithea/controllers/branches.py --- 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 diff -r 58e390e0cea4 -r ad38f9f93b3b kallithea/controllers/changelog.py --- 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 diff -r 58e390e0cea4 -r ad38f9f93b3b kallithea/controllers/changeset.py --- 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 diff -r 58e390e0cea4 -r ad38f9f93b3b kallithea/controllers/compare.py --- 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. """ diff -r 58e390e0cea4 -r ad38f9f93b3b kallithea/controllers/error.py --- 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 diff -r 58e390e0cea4 -r ad38f9f93b3b kallithea/controllers/feed.py --- 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. """ diff -r 58e390e0cea4 -r ad38f9f93b3b kallithea/controllers/files.py --- 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 diff -r 58e390e0cea4 -r ad38f9f93b3b kallithea/controllers/followers.py --- 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 diff -r 58e390e0cea4 -r ad38f9f93b3b kallithea/controllers/forks.py --- 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 diff -r 58e390e0cea4 -r ad38f9f93b3b kallithea/controllers/home.py --- 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. """ diff -r 58e390e0cea4 -r ad38f9f93b3b kallithea/controllers/journal.py --- 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. """ diff -r 58e390e0cea4 -r ad38f9f93b3b kallithea/controllers/login.py --- 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. """ diff -r 58e390e0cea4 -r ad38f9f93b3b kallithea/controllers/pullrequests.py --- 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 diff -r 58e390e0cea4 -r ad38f9f93b3b kallithea/controllers/search.py --- 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 diff -r 58e390e0cea4 -r ad38f9f93b3b kallithea/controllers/summary.py --- 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 diff -r 58e390e0cea4 -r ad38f9f93b3b kallithea/controllers/tags.py --- 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. """ diff -r 58e390e0cea4 -r ad38f9f93b3b kallithea/lib/__init__.py --- 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 diff -r 58e390e0cea4 -r ad38f9f93b3b kallithea/lib/annotate.py --- 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 diff -r 58e390e0cea4 -r ad38f9f93b3b kallithea/lib/app_globals.py --- 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 diff -r 58e390e0cea4 -r ad38f9f93b3b kallithea/lib/auth.py --- 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 diff -r 58e390e0cea4 -r ad38f9f93b3b kallithea/lib/auth_modules/auth_container.py --- 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 diff -r 58e390e0cea4 -r ad38f9f93b3b kallithea/lib/auth_modules/auth_crowd.py --- 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. """ diff -r 58e390e0cea4 -r ad38f9f93b3b kallithea/lib/auth_modules/auth_ldap.py --- 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. """ diff -r 58e390e0cea4 -r ad38f9f93b3b kallithea/lib/auth_modules/auth_rhodecode.py --- 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. """ diff -r 58e390e0cea4 -r ad38f9f93b3b kallithea/lib/base.py --- 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 diff -r 58e390e0cea4 -r ad38f9f93b3b kallithea/lib/celerylib/__init__.py --- 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. """ diff -r 58e390e0cea4 -r ad38f9f93b3b kallithea/lib/celerylib/tasks.py --- 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 diff -r 58e390e0cea4 -r ad38f9f93b3b kallithea/lib/compat.py --- 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. """ diff -r 58e390e0cea4 -r ad38f9f93b3b kallithea/lib/db_manage.py --- 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 diff -r 58e390e0cea4 -r ad38f9f93b3b kallithea/lib/dbmigrate/__init__.py --- 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 diff -r 58e390e0cea4 -r ad38f9f93b3b kallithea/lib/dbmigrate/schema/__init__.py --- 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. """ diff -r 58e390e0cea4 -r ad38f9f93b3b kallithea/lib/dbmigrate/schema/db_1_2_0.py --- 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 diff -r 58e390e0cea4 -r ad38f9f93b3b kallithea/lib/dbmigrate/schema/db_1_3_0.py --- 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. """ diff -r 58e390e0cea4 -r ad38f9f93b3b kallithea/lib/dbmigrate/schema/db_1_4_0.py --- 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. """ diff -r 58e390e0cea4 -r ad38f9f93b3b kallithea/lib/dbmigrate/schema/db_1_5_0.py --- 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 diff -r 58e390e0cea4 -r ad38f9f93b3b kallithea/lib/dbmigrate/schema/db_1_5_2.py --- 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 diff -r 58e390e0cea4 -r ad38f9f93b3b kallithea/lib/dbmigrate/schema/db_1_6_0.py --- 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 diff -r 58e390e0cea4 -r ad38f9f93b3b kallithea/lib/dbmigrate/schema/db_1_7_0.py --- 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 diff -r 58e390e0cea4 -r ad38f9f93b3b kallithea/lib/dbmigrate/schema/db_1_8_0.py --- 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 diff -r 58e390e0cea4 -r ad38f9f93b3b kallithea/lib/dbmigrate/schema/db_2_0_0.py --- 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 diff -r 58e390e0cea4 -r ad38f9f93b3b kallithea/lib/dbmigrate/schema/db_2_0_1.py --- 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 diff -r 58e390e0cea4 -r ad38f9f93b3b kallithea/lib/dbmigrate/schema/db_2_0_2.py --- 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 diff -r 58e390e0cea4 -r ad38f9f93b3b kallithea/lib/dbmigrate/schema/db_2_1_0.py --- 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 diff -r 58e390e0cea4 -r ad38f9f93b3b kallithea/lib/dbmigrate/schema/db_2_2_0.py --- 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 diff -r 58e390e0cea4 -r ad38f9f93b3b kallithea/lib/dbmigrate/schema/db_2_2_3.py --- 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 diff -r 58e390e0cea4 -r ad38f9f93b3b kallithea/lib/dbmigrate/versions/__init__.py --- 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 * diff -r 58e390e0cea4 -r ad38f9f93b3b kallithea/lib/diffs.py --- 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 diff -r 58e390e0cea4 -r ad38f9f93b3b kallithea/lib/exceptions.py --- 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 diff -r 58e390e0cea4 -r ad38f9f93b3b kallithea/lib/hooks.py --- 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 diff -r 58e390e0cea4 -r ad38f9f93b3b kallithea/lib/indexers/__init__.py --- 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 diff -r 58e390e0cea4 -r ad38f9f93b3b kallithea/lib/indexers/daemon.py --- 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 diff -r 58e390e0cea4 -r ad38f9f93b3b kallithea/lib/markup_renderer.py --- 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. """ diff -r 58e390e0cea4 -r ad38f9f93b3b kallithea/lib/middleware/errormator.py --- 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. """ diff -r 58e390e0cea4 -r ad38f9f93b3b kallithea/lib/middleware/https_fixup.py --- 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. """ diff -r 58e390e0cea4 -r ad38f9f93b3b kallithea/lib/middleware/sentry.py --- 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. """ diff -r 58e390e0cea4 -r ad38f9f93b3b kallithea/lib/middleware/simplegit.py --- 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. """ diff -r 58e390e0cea4 -r ad38f9f93b3b kallithea/lib/middleware/simplehg.py --- 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. """ diff -r 58e390e0cea4 -r ad38f9f93b3b kallithea/lib/middleware/wrapper.py --- 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 diff -r 58e390e0cea4 -r ad38f9f93b3b kallithea/lib/paster_commands/cache_keys.py --- 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 diff -r 58e390e0cea4 -r ad38f9f93b3b kallithea/lib/paster_commands/ishell.py --- 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 diff -r 58e390e0cea4 -r ad38f9f93b3b kallithea/lib/paster_commands/make_index.py --- 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. """ diff -r 58e390e0cea4 -r ad38f9f93b3b kallithea/lib/paster_commands/make_rcextensions.py --- 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. """ diff -r 58e390e0cea4 -r ad38f9f93b3b kallithea/lib/paster_commands/repo_scan.py --- 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 diff -r 58e390e0cea4 -r ad38f9f93b3b kallithea/lib/paster_commands/update_repoinfo.py --- 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 diff -r 58e390e0cea4 -r ad38f9f93b3b kallithea/lib/rcmail/smtp_mailer.py --- 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 diff -r 58e390e0cea4 -r ad38f9f93b3b kallithea/lib/utils.py --- 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 diff -r 58e390e0cea4 -r ad38f9f93b3b kallithea/lib/utils2.py --- 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. """ diff -r 58e390e0cea4 -r ad38f9f93b3b kallithea/model/__init__.py --- 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: diff -r 58e390e0cea4 -r ad38f9f93b3b kallithea/model/api_key.py --- 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 diff -r 58e390e0cea4 -r ad38f9f93b3b kallithea/model/changeset_status.py --- 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 diff -r 58e390e0cea4 -r ad38f9f93b3b kallithea/model/comment.py --- 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 diff -r 58e390e0cea4 -r ad38f9f93b3b kallithea/model/db.py --- 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 diff -r 58e390e0cea4 -r ad38f9f93b3b kallithea/model/gist.py --- 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 diff -r 58e390e0cea4 -r ad38f9f93b3b kallithea/model/notification.py --- 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. """ diff -r 58e390e0cea4 -r ad38f9f93b3b kallithea/model/permission.py --- 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. """ diff -r 58e390e0cea4 -r ad38f9f93b3b kallithea/model/pull_request.py --- 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 diff -r 58e390e0cea4 -r ad38f9f93b3b kallithea/model/repo.py --- 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. """ diff -r 58e390e0cea4 -r ad38f9f93b3b kallithea/model/repo_group.py --- 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. """ diff -r 58e390e0cea4 -r ad38f9f93b3b kallithea/model/scm.py --- 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 diff -r 58e390e0cea4 -r ad38f9f93b3b kallithea/model/user.py --- 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. """ diff -r 58e390e0cea4 -r ad38f9f93b3b kallithea/tests/other/test_libs.py --- 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 diff -r 58e390e0cea4 -r ad38f9f93b3b kallithea/tests/other/test_vcs_operations.py --- 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. """ diff -r 58e390e0cea4 -r ad38f9f93b3b kallithea/tests/scripts/test_concurency.py --- 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. """ diff -r 58e390e0cea4 -r ad38f9f93b3b kallithea/tests/scripts/test_crawler.py --- 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. """ diff -r 58e390e0cea4 -r ad38f9f93b3b kallithea/websetup.py --- 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 diff -r 58e390e0cea4 -r ad38f9f93b3b setup.cfg --- 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]