# HG changeset patch # User Bradley M. Kuhn # Date 2014-05-21 22:59:37 # 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 --git a/LICENSE.md b/LICENSE.md --- a/LICENSE.md +++ b/LICENSE.md @@ -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 --git a/docs/conf.py b/docs/conf.py --- a/docs/conf.py +++ b/docs/conf.py @@ -45,7 +45,7 @@ master_doc = 'index' # 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 --git a/kallithea/__init__.py b/kallithea/__init__.py --- a/kallithea/__init__.py +++ b/kallithea/__init__.py @@ -21,7 +21,7 @@ versioning implementation: http://www.py :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 --git a/kallithea/bin/__init__.py b/kallithea/bin/__init__.py --- a/kallithea/bin/__init__.py +++ b/kallithea/bin/__init__.py @@ -20,5 +20,5 @@ Binary scripts for RhodeCode :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 --git a/kallithea/bin/base.py b/kallithea/bin/base.py --- a/kallithea/bin/base.py +++ b/kallithea/bin/base.py @@ -20,7 +20,7 @@ Base utils for shell scripts :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 --git a/kallithea/bin/kallithea_api.py b/kallithea/bin/kallithea_api.py --- a/kallithea/bin/kallithea_api.py +++ b/kallithea/bin/kallithea_api.py @@ -20,7 +20,7 @@ Api CLI client for RhodeCode :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 --git a/kallithea/bin/kallithea_backup.py b/kallithea/bin/kallithea_backup.py --- a/kallithea/bin/kallithea_backup.py +++ b/kallithea/bin/kallithea_backup.py @@ -21,7 +21,7 @@ repositories and send it to backup serve :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 --git a/kallithea/bin/kallithea_config.py b/kallithea/bin/kallithea_config.py --- a/kallithea/bin/kallithea_config.py +++ b/kallithea/bin/kallithea_config.py @@ -20,7 +20,7 @@ configuration generator for RhodeCode :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 --git a/kallithea/bin/kallithea_gist.py b/kallithea/bin/kallithea_gist.py --- a/kallithea/bin/kallithea_gist.py +++ b/kallithea/bin/kallithea_gist.py @@ -20,7 +20,7 @@ Gist CLI client for RhodeCode :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 --git a/kallithea/bin/ldap_sync.py b/kallithea/bin/ldap_sync.py --- a/kallithea/bin/ldap_sync.py +++ b/kallithea/bin/ldap_sync.py @@ -20,7 +20,7 @@ LDAP sync script :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 --git a/kallithea/config/conf.py b/kallithea/config/conf.py --- a/kallithea/config/conf.py +++ b/kallithea/config/conf.py @@ -20,7 +20,7 @@ Various config settings for RhodeCode :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 --git a/kallithea/controllers/admin/admin.py b/kallithea/controllers/admin/admin.py --- a/kallithea/controllers/admin/admin.py +++ b/kallithea/controllers/admin/admin.py @@ -20,7 +20,7 @@ Controller for Admin panel of Rhodecode :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 --git a/kallithea/controllers/admin/defaults.py b/kallithea/controllers/admin/defaults.py --- a/kallithea/controllers/admin/defaults.py +++ b/kallithea/controllers/admin/defaults.py @@ -20,7 +20,7 @@ default settings controller for Rhodecod :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 --git a/kallithea/controllers/admin/gists.py b/kallithea/controllers/admin/gists.py --- a/kallithea/controllers/admin/gists.py +++ b/kallithea/controllers/admin/gists.py @@ -20,7 +20,7 @@ gist controller for RhodeCode :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 --git a/kallithea/controllers/admin/my_account.py b/kallithea/controllers/admin/my_account.py --- a/kallithea/controllers/admin/my_account.py +++ b/kallithea/controllers/admin/my_account.py @@ -20,7 +20,7 @@ my account controller for rhodecode admi :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 --git a/kallithea/controllers/admin/notifications.py b/kallithea/controllers/admin/notifications.py --- a/kallithea/controllers/admin/notifications.py +++ b/kallithea/controllers/admin/notifications.py @@ -20,7 +20,7 @@ notifications controller for RhodeCode :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 --git a/kallithea/controllers/admin/permissions.py b/kallithea/controllers/admin/permissions.py --- a/kallithea/controllers/admin/permissions.py +++ b/kallithea/controllers/admin/permissions.py @@ -20,7 +20,7 @@ permissions controller for Rhodecode :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 --git a/kallithea/controllers/admin/repo_groups.py b/kallithea/controllers/admin/repo_groups.py --- a/kallithea/controllers/admin/repo_groups.py +++ b/kallithea/controllers/admin/repo_groups.py @@ -20,7 +20,7 @@ Repository groups controller for RhodeCo :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 --git a/kallithea/controllers/admin/repos.py b/kallithea/controllers/admin/repos.py --- a/kallithea/controllers/admin/repos.py +++ b/kallithea/controllers/admin/repos.py @@ -20,7 +20,7 @@ Repositories controller for RhodeCode :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 --git a/kallithea/controllers/admin/settings.py b/kallithea/controllers/admin/settings.py --- a/kallithea/controllers/admin/settings.py +++ b/kallithea/controllers/admin/settings.py @@ -20,7 +20,7 @@ settings controller for rhodecode admin :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 --git a/kallithea/controllers/admin/user_groups.py b/kallithea/controllers/admin/user_groups.py --- a/kallithea/controllers/admin/user_groups.py +++ b/kallithea/controllers/admin/user_groups.py @@ -20,7 +20,7 @@ User Groups crud controller for pylons :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 --git a/kallithea/controllers/admin/users.py b/kallithea/controllers/admin/users.py --- a/kallithea/controllers/admin/users.py +++ b/kallithea/controllers/admin/users.py @@ -20,7 +20,7 @@ Users crud controller for pylons :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 --git a/kallithea/controllers/api/__init__.py b/kallithea/controllers/api/__init__.py --- a/kallithea/controllers/api/__init__.py +++ b/kallithea/controllers/api/__init__.py @@ -20,7 +20,7 @@ JSON RPC controller :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 --git a/kallithea/controllers/api/api.py b/kallithea/controllers/api/api.py --- a/kallithea/controllers/api/api.py +++ b/kallithea/controllers/api/api.py @@ -20,7 +20,7 @@ API controller for RhodeCode :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 --git a/kallithea/controllers/bookmarks.py b/kallithea/controllers/bookmarks.py --- a/kallithea/controllers/bookmarks.py +++ b/kallithea/controllers/bookmarks.py @@ -20,7 +20,7 @@ Bookmarks controller for rhodecode :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 --git a/kallithea/controllers/branches.py b/kallithea/controllers/branches.py --- a/kallithea/controllers/branches.py +++ b/kallithea/controllers/branches.py @@ -20,7 +20,7 @@ branches controller for rhodecode :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 --git a/kallithea/controllers/changelog.py b/kallithea/controllers/changelog.py --- a/kallithea/controllers/changelog.py +++ b/kallithea/controllers/changelog.py @@ -20,7 +20,7 @@ changelog controller for rhodecode :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 --git a/kallithea/controllers/changeset.py b/kallithea/controllers/changeset.py --- a/kallithea/controllers/changeset.py +++ b/kallithea/controllers/changeset.py @@ -21,7 +21,7 @@ revisions :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 --git a/kallithea/controllers/compare.py b/kallithea/controllers/compare.py --- a/kallithea/controllers/compare.py +++ b/kallithea/controllers/compare.py @@ -21,7 +21,7 @@ repos, branches, bookmarks or tips :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 --git a/kallithea/controllers/error.py b/kallithea/controllers/error.py --- a/kallithea/controllers/error.py +++ b/kallithea/controllers/error.py @@ -20,7 +20,7 @@ RhodeCode error controller :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 --git a/kallithea/controllers/feed.py b/kallithea/controllers/feed.py --- a/kallithea/controllers/feed.py +++ b/kallithea/controllers/feed.py @@ -20,7 +20,7 @@ Feed controller for rhodecode :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 --git a/kallithea/controllers/files.py b/kallithea/controllers/files.py --- a/kallithea/controllers/files.py +++ b/kallithea/controllers/files.py @@ -20,7 +20,7 @@ Files controller for RhodeCode :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 --git a/kallithea/controllers/followers.py b/kallithea/controllers/followers.py --- a/kallithea/controllers/followers.py +++ b/kallithea/controllers/followers.py @@ -20,7 +20,7 @@ Followers controller for rhodecode :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 --git a/kallithea/controllers/forks.py b/kallithea/controllers/forks.py --- a/kallithea/controllers/forks.py +++ b/kallithea/controllers/forks.py @@ -20,7 +20,7 @@ forks controller for rhodecode :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 --git a/kallithea/controllers/home.py b/kallithea/controllers/home.py --- a/kallithea/controllers/home.py +++ b/kallithea/controllers/home.py @@ -20,7 +20,7 @@ Home controller for Rhodecode :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 --git a/kallithea/controllers/journal.py b/kallithea/controllers/journal.py --- a/kallithea/controllers/journal.py +++ b/kallithea/controllers/journal.py @@ -20,7 +20,7 @@ Journal controller for pylons :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 --git a/kallithea/controllers/login.py b/kallithea/controllers/login.py --- a/kallithea/controllers/login.py +++ b/kallithea/controllers/login.py @@ -20,7 +20,7 @@ Login controller for rhodeocode :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 --git a/kallithea/controllers/pullrequests.py b/kallithea/controllers/pullrequests.py --- a/kallithea/controllers/pullrequests.py +++ b/kallithea/controllers/pullrequests.py @@ -20,7 +20,7 @@ pull requests controller for rhodecode f :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 --git a/kallithea/controllers/search.py b/kallithea/controllers/search.py --- a/kallithea/controllers/search.py +++ b/kallithea/controllers/search.py @@ -20,7 +20,7 @@ Search controller for RhodeCode :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 --git a/kallithea/controllers/summary.py b/kallithea/controllers/summary.py --- a/kallithea/controllers/summary.py +++ b/kallithea/controllers/summary.py @@ -20,7 +20,7 @@ Summary controller for Rhodecode :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 --git a/kallithea/controllers/tags.py b/kallithea/controllers/tags.py --- a/kallithea/controllers/tags.py +++ b/kallithea/controllers/tags.py @@ -20,7 +20,7 @@ Tags controller for rhodecode :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 --git a/kallithea/lib/__init__.py b/kallithea/lib/__init__.py --- a/kallithea/lib/__init__.py +++ b/kallithea/lib/__init__.py @@ -20,7 +20,7 @@ RhodeCode libs :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 --git a/kallithea/lib/annotate.py b/kallithea/lib/annotate.py --- a/kallithea/lib/annotate.py +++ b/kallithea/lib/annotate.py @@ -20,7 +20,7 @@ Anontation library for usage in rhodecod :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 --git a/kallithea/lib/app_globals.py b/kallithea/lib/app_globals.py --- a/kallithea/lib/app_globals.py +++ b/kallithea/lib/app_globals.py @@ -21,7 +21,7 @@ The application's Globals object :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 --git a/kallithea/lib/auth.py b/kallithea/lib/auth.py --- a/kallithea/lib/auth.py +++ b/kallithea/lib/auth.py @@ -20,7 +20,7 @@ authentication and permission libraries :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 --git a/kallithea/lib/auth_modules/auth_container.py b/kallithea/lib/auth_modules/auth_container.py --- a/kallithea/lib/auth_modules/auth_container.py +++ b/kallithea/lib/auth_modules/auth_container.py @@ -20,7 +20,7 @@ RhodeCode container based authentication :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 --git a/kallithea/lib/auth_modules/auth_crowd.py b/kallithea/lib/auth_modules/auth_crowd.py --- a/kallithea/lib/auth_modules/auth_crowd.py +++ b/kallithea/lib/auth_modules/auth_crowd.py @@ -20,7 +20,7 @@ RhodeCode authentication plugin for Atla :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 --git a/kallithea/lib/auth_modules/auth_ldap.py b/kallithea/lib/auth_modules/auth_ldap.py --- a/kallithea/lib/auth_modules/auth_ldap.py +++ b/kallithea/lib/auth_modules/auth_ldap.py @@ -20,7 +20,7 @@ RhodeCode authentication plugin for LDAP :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 --git a/kallithea/lib/auth_modules/auth_rhodecode.py b/kallithea/lib/auth_modules/auth_rhodecode.py --- a/kallithea/lib/auth_modules/auth_rhodecode.py +++ b/kallithea/lib/auth_modules/auth_rhodecode.py @@ -20,7 +20,7 @@ RhodeCode authentication plugin for buil :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 --git a/kallithea/lib/base.py b/kallithea/lib/base.py --- a/kallithea/lib/base.py +++ b/kallithea/lib/base.py @@ -23,7 +23,7 @@ controllers :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 --git a/kallithea/lib/celerylib/__init__.py b/kallithea/lib/celerylib/__init__.py --- a/kallithea/lib/celerylib/__init__.py +++ b/kallithea/lib/celerylib/__init__.py @@ -20,7 +20,7 @@ celery libs for RhodeCode :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 --git a/kallithea/lib/celerylib/tasks.py b/kallithea/lib/celerylib/tasks.py --- a/kallithea/lib/celerylib/tasks.py +++ b/kallithea/lib/celerylib/tasks.py @@ -21,7 +21,7 @@ by celery daemon :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 --git a/kallithea/lib/compat.py b/kallithea/lib/compat.py --- a/kallithea/lib/compat.py +++ b/kallithea/lib/compat.py @@ -21,7 +21,7 @@ Python backward compatibility functions :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 --git a/kallithea/lib/db_manage.py b/kallithea/lib/db_manage.py --- a/kallithea/lib/db_manage.py +++ b/kallithea/lib/db_manage.py @@ -21,7 +21,7 @@ of database as well as for migration ope :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 --git a/kallithea/lib/dbmigrate/__init__.py b/kallithea/lib/dbmigrate/__init__.py --- a/kallithea/lib/dbmigrate/__init__.py +++ b/kallithea/lib/dbmigrate/__init__.py @@ -20,7 +20,7 @@ Database migration modules :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 --git a/kallithea/lib/dbmigrate/schema/__init__.py b/kallithea/lib/dbmigrate/schema/__init__.py --- a/kallithea/lib/dbmigrate/schema/__init__.py +++ b/kallithea/lib/dbmigrate/schema/__init__.py @@ -20,5 +20,5 @@ Schemas for migrations :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 --git a/kallithea/lib/dbmigrate/schema/db_1_2_0.py b/kallithea/lib/dbmigrate/schema/db_1_2_0.py --- a/kallithea/lib/dbmigrate/schema/db_1_2_0.py +++ b/kallithea/lib/dbmigrate/schema/db_1_2_0.py @@ -20,7 +20,7 @@ Database Models for RhodeCode <=1.2.X :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 --git a/kallithea/lib/dbmigrate/schema/db_1_3_0.py b/kallithea/lib/dbmigrate/schema/db_1_3_0.py --- a/kallithea/lib/dbmigrate/schema/db_1_3_0.py +++ b/kallithea/lib/dbmigrate/schema/db_1_3_0.py @@ -20,7 +20,7 @@ Database Models for RhodeCode <=1.3.X :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 --git a/kallithea/lib/dbmigrate/schema/db_1_4_0.py b/kallithea/lib/dbmigrate/schema/db_1_4_0.py --- a/kallithea/lib/dbmigrate/schema/db_1_4_0.py +++ b/kallithea/lib/dbmigrate/schema/db_1_4_0.py @@ -20,7 +20,7 @@ Database Models for RhodeCode <=1.4.X :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 --git a/kallithea/lib/dbmigrate/schema/db_1_5_0.py b/kallithea/lib/dbmigrate/schema/db_1_5_0.py --- a/kallithea/lib/dbmigrate/schema/db_1_5_0.py +++ b/kallithea/lib/dbmigrate/schema/db_1_5_0.py @@ -20,7 +20,7 @@ Database Models for RhodeCode <=1.5.2 :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 --git a/kallithea/lib/dbmigrate/schema/db_1_5_2.py b/kallithea/lib/dbmigrate/schema/db_1_5_2.py --- a/kallithea/lib/dbmigrate/schema/db_1_5_2.py +++ b/kallithea/lib/dbmigrate/schema/db_1_5_2.py @@ -20,7 +20,7 @@ Database Models for RhodeCode <=1.5.X :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 --git a/kallithea/lib/dbmigrate/schema/db_1_6_0.py b/kallithea/lib/dbmigrate/schema/db_1_6_0.py --- a/kallithea/lib/dbmigrate/schema/db_1_6_0.py +++ b/kallithea/lib/dbmigrate/schema/db_1_6_0.py @@ -20,7 +20,7 @@ Database Models for RhodeCode <=1.5.X :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 --git a/kallithea/lib/dbmigrate/schema/db_1_7_0.py b/kallithea/lib/dbmigrate/schema/db_1_7_0.py --- a/kallithea/lib/dbmigrate/schema/db_1_7_0.py +++ b/kallithea/lib/dbmigrate/schema/db_1_7_0.py @@ -20,7 +20,7 @@ Database Models for RhodeCode :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 --git a/kallithea/lib/dbmigrate/schema/db_1_8_0.py b/kallithea/lib/dbmigrate/schema/db_1_8_0.py --- a/kallithea/lib/dbmigrate/schema/db_1_8_0.py +++ b/kallithea/lib/dbmigrate/schema/db_1_8_0.py @@ -20,7 +20,7 @@ Database Models for RhodeCode :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 --git a/kallithea/lib/dbmigrate/schema/db_2_0_0.py b/kallithea/lib/dbmigrate/schema/db_2_0_0.py --- a/kallithea/lib/dbmigrate/schema/db_2_0_0.py +++ b/kallithea/lib/dbmigrate/schema/db_2_0_0.py @@ -20,7 +20,7 @@ Database Models for RhodeCode :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 --git a/kallithea/lib/dbmigrate/schema/db_2_0_1.py b/kallithea/lib/dbmigrate/schema/db_2_0_1.py --- a/kallithea/lib/dbmigrate/schema/db_2_0_1.py +++ b/kallithea/lib/dbmigrate/schema/db_2_0_1.py @@ -20,7 +20,7 @@ Database Models for RhodeCode :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 --git a/kallithea/lib/dbmigrate/schema/db_2_0_2.py b/kallithea/lib/dbmigrate/schema/db_2_0_2.py --- a/kallithea/lib/dbmigrate/schema/db_2_0_2.py +++ b/kallithea/lib/dbmigrate/schema/db_2_0_2.py @@ -20,7 +20,7 @@ Database Models for RhodeCode :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 --git a/kallithea/lib/dbmigrate/schema/db_2_1_0.py b/kallithea/lib/dbmigrate/schema/db_2_1_0.py --- a/kallithea/lib/dbmigrate/schema/db_2_1_0.py +++ b/kallithea/lib/dbmigrate/schema/db_2_1_0.py @@ -20,7 +20,7 @@ Database Models for RhodeCode :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 --git a/kallithea/lib/dbmigrate/schema/db_2_2_0.py b/kallithea/lib/dbmigrate/schema/db_2_2_0.py --- a/kallithea/lib/dbmigrate/schema/db_2_2_0.py +++ b/kallithea/lib/dbmigrate/schema/db_2_2_0.py @@ -20,7 +20,7 @@ Database Models for RhodeCode :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 --git a/kallithea/lib/dbmigrate/schema/db_2_2_3.py b/kallithea/lib/dbmigrate/schema/db_2_2_3.py --- a/kallithea/lib/dbmigrate/schema/db_2_2_3.py +++ b/kallithea/lib/dbmigrate/schema/db_2_2_3.py @@ -20,7 +20,7 @@ Database Models for RhodeCode :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 --git a/kallithea/lib/dbmigrate/versions/__init__.py b/kallithea/lib/dbmigrate/versions/__init__.py --- a/kallithea/lib/dbmigrate/versions/__init__.py +++ b/kallithea/lib/dbmigrate/versions/__init__.py @@ -20,7 +20,7 @@ Package containing new versions of datab :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 --git a/kallithea/lib/diffs.py b/kallithea/lib/diffs.py --- a/kallithea/lib/diffs.py +++ b/kallithea/lib/diffs.py @@ -21,7 +21,7 @@ Set of diffing helpers, previously part :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 --git a/kallithea/lib/exceptions.py b/kallithea/lib/exceptions.py --- a/kallithea/lib/exceptions.py +++ b/kallithea/lib/exceptions.py @@ -20,7 +20,7 @@ Set of custom exceptions used in RhodeCo :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 --git a/kallithea/lib/hooks.py b/kallithea/lib/hooks.py --- a/kallithea/lib/hooks.py +++ b/kallithea/lib/hooks.py @@ -20,7 +20,7 @@ Hooks runned by rhodecode :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 --git a/kallithea/lib/indexers/__init__.py b/kallithea/lib/indexers/__init__.py --- a/kallithea/lib/indexers/__init__.py +++ b/kallithea/lib/indexers/__init__.py @@ -20,7 +20,7 @@ Whoosh indexing module for RhodeCode :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 --git a/kallithea/lib/indexers/daemon.py b/kallithea/lib/indexers/daemon.py --- a/kallithea/lib/indexers/daemon.py +++ b/kallithea/lib/indexers/daemon.py @@ -20,7 +20,7 @@ A daemon will read from task table and r :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 --git a/kallithea/lib/markup_renderer.py b/kallithea/lib/markup_renderer.py --- a/kallithea/lib/markup_renderer.py +++ b/kallithea/lib/markup_renderer.py @@ -20,7 +20,7 @@ Renderer for markup languages with abili :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 --git a/kallithea/lib/middleware/errormator.py b/kallithea/lib/middleware/errormator.py --- a/kallithea/lib/middleware/errormator.py +++ b/kallithea/lib/middleware/errormator.py @@ -20,7 +20,7 @@ middleware to handle errormator publishi :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 --git a/kallithea/lib/middleware/https_fixup.py b/kallithea/lib/middleware/https_fixup.py --- a/kallithea/lib/middleware/https_fixup.py +++ b/kallithea/lib/middleware/https_fixup.py @@ -20,7 +20,7 @@ middleware to handle https correctly :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 --git a/kallithea/lib/middleware/sentry.py b/kallithea/lib/middleware/sentry.py --- a/kallithea/lib/middleware/sentry.py +++ b/kallithea/lib/middleware/sentry.py @@ -20,7 +20,7 @@ middleware to handle sentry/raven publis :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 --git a/kallithea/lib/middleware/simplegit.py b/kallithea/lib/middleware/simplegit.py --- a/kallithea/lib/middleware/simplegit.py +++ b/kallithea/lib/middleware/simplegit.py @@ -21,7 +21,7 @@ It's implemented with basic auth functio :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 --git a/kallithea/lib/middleware/simplehg.py b/kallithea/lib/middleware/simplehg.py --- a/kallithea/lib/middleware/simplehg.py +++ b/kallithea/lib/middleware/simplehg.py @@ -21,7 +21,7 @@ SimpleHG middleware for handling mercuri :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 --git a/kallithea/lib/middleware/wrapper.py b/kallithea/lib/middleware/wrapper.py --- a/kallithea/lib/middleware/wrapper.py +++ b/kallithea/lib/middleware/wrapper.py @@ -20,7 +20,7 @@ request time mesuring app :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 --git a/kallithea/lib/paster_commands/cache_keys.py b/kallithea/lib/paster_commands/cache_keys.py --- a/kallithea/lib/paster_commands/cache_keys.py +++ b/kallithea/lib/paster_commands/cache_keys.py @@ -21,7 +21,7 @@ cleanup-keys paster command for RhodeCod :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 --git a/kallithea/lib/paster_commands/ishell.py b/kallithea/lib/paster_commands/ishell.py --- a/kallithea/lib/paster_commands/ishell.py +++ b/kallithea/lib/paster_commands/ishell.py @@ -20,7 +20,7 @@ interactive shell paster command for Rho :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 --git a/kallithea/lib/paster_commands/make_index.py b/kallithea/lib/paster_commands/make_index.py --- a/kallithea/lib/paster_commands/make_index.py +++ b/kallithea/lib/paster_commands/make_index.py @@ -20,7 +20,7 @@ make-index paster command for RhodeCode :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 --git a/kallithea/lib/paster_commands/make_rcextensions.py b/kallithea/lib/paster_commands/make_rcextensions.py --- a/kallithea/lib/paster_commands/make_rcextensions.py +++ b/kallithea/lib/paster_commands/make_rcextensions.py @@ -20,7 +20,7 @@ make-rcext paster command for RhodeCode :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 --git a/kallithea/lib/paster_commands/repo_scan.py b/kallithea/lib/paster_commands/repo_scan.py --- a/kallithea/lib/paster_commands/repo_scan.py +++ b/kallithea/lib/paster_commands/repo_scan.py @@ -20,7 +20,7 @@ repo-scan paster command for RhodeCode :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 --git a/kallithea/lib/paster_commands/update_repoinfo.py b/kallithea/lib/paster_commands/update_repoinfo.py --- a/kallithea/lib/paster_commands/update_repoinfo.py +++ b/kallithea/lib/paster_commands/update_repoinfo.py @@ -20,7 +20,7 @@ uodate-repoinfo paster command for Rhode :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 --git a/kallithea/lib/rcmail/smtp_mailer.py b/kallithea/lib/rcmail/smtp_mailer.py --- a/kallithea/lib/rcmail/smtp_mailer.py +++ b/kallithea/lib/rcmail/smtp_mailer.py @@ -20,7 +20,7 @@ Simple smtp mailer used in RhodeCode :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 --git a/kallithea/lib/utils.py b/kallithea/lib/utils.py --- a/kallithea/lib/utils.py +++ b/kallithea/lib/utils.py @@ -20,7 +20,7 @@ Utilities library for RhodeCode :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 --git a/kallithea/lib/utils2.py b/kallithea/lib/utils2.py --- a/kallithea/lib/utils2.py +++ b/kallithea/lib/utils2.py @@ -20,7 +20,7 @@ Some simple helper functions :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 --git a/kallithea/model/__init__.py b/kallithea/model/__init__.py --- a/kallithea/model/__init__.py +++ b/kallithea/model/__init__.py @@ -20,7 +20,7 @@ The application's model objects :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 --git a/kallithea/model/api_key.py b/kallithea/model/api_key.py --- a/kallithea/model/api_key.py +++ b/kallithea/model/api_key.py @@ -20,7 +20,7 @@ api key model for RhodeCode :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 --git a/kallithea/model/changeset_status.py b/kallithea/model/changeset_status.py --- a/kallithea/model/changeset_status.py +++ b/kallithea/model/changeset_status.py @@ -8,7 +8,7 @@ Changeset status conttroller :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 --git a/kallithea/model/comment.py b/kallithea/model/comment.py --- a/kallithea/model/comment.py +++ b/kallithea/model/comment.py @@ -20,7 +20,7 @@ comments model for RhodeCode :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 --git a/kallithea/model/db.py b/kallithea/model/db.py --- a/kallithea/model/db.py +++ b/kallithea/model/db.py @@ -20,7 +20,7 @@ Database Models for RhodeCode :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 --git a/kallithea/model/gist.py b/kallithea/model/gist.py --- a/kallithea/model/gist.py +++ b/kallithea/model/gist.py @@ -20,7 +20,7 @@ gist model for RhodeCode :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 --git a/kallithea/model/notification.py b/kallithea/model/notification.py --- a/kallithea/model/notification.py +++ b/kallithea/model/notification.py @@ -21,7 +21,7 @@ Model for notifications :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 --git a/kallithea/model/permission.py b/kallithea/model/permission.py --- a/kallithea/model/permission.py +++ b/kallithea/model/permission.py @@ -20,7 +20,7 @@ permissions model for RhodeCode :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 --git a/kallithea/model/pull_request.py b/kallithea/model/pull_request.py --- a/kallithea/model/pull_request.py +++ b/kallithea/model/pull_request.py @@ -20,7 +20,7 @@ pull request model for RhodeCode :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 --git a/kallithea/model/repo.py b/kallithea/model/repo.py --- a/kallithea/model/repo.py +++ b/kallithea/model/repo.py @@ -20,7 +20,7 @@ Repository model for rhodecode :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 --git a/kallithea/model/repo_group.py b/kallithea/model/repo_group.py --- a/kallithea/model/repo_group.py +++ b/kallithea/model/repo_group.py @@ -20,7 +20,7 @@ repo group model for RhodeCode :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 --git a/kallithea/model/scm.py b/kallithea/model/scm.py --- a/kallithea/model/scm.py +++ b/kallithea/model/scm.py @@ -20,7 +20,7 @@ Scm model for RhodeCode :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 --git a/kallithea/model/user.py b/kallithea/model/user.py --- a/kallithea/model/user.py +++ b/kallithea/model/user.py @@ -20,7 +20,7 @@ users model for RhodeCode :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 --git a/kallithea/tests/other/test_libs.py b/kallithea/tests/other/test_libs.py --- a/kallithea/tests/other/test_libs.py +++ b/kallithea/tests/other/test_libs.py @@ -20,7 +20,7 @@ Package for testing various lib/helper f :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 --git a/kallithea/tests/other/test_vcs_operations.py b/kallithea/tests/other/test_vcs_operations.py --- a/kallithea/tests/other/test_vcs_operations.py +++ b/kallithea/tests/other/test_vcs_operations.py @@ -24,7 +24,7 @@ You must have git > 1.8.1 for tests to w :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 --git a/kallithea/tests/scripts/test_concurency.py b/kallithea/tests/scripts/test_concurency.py --- a/kallithea/tests/scripts/test_concurency.py +++ b/kallithea/tests/scripts/test_concurency.py @@ -20,7 +20,7 @@ Test suite for making push/pull operatio :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 --git a/kallithea/tests/scripts/test_crawler.py b/kallithea/tests/scripts/test_crawler.py --- a/kallithea/tests/scripts/test_crawler.py +++ b/kallithea/tests/scripts/test_crawler.py @@ -24,7 +24,7 @@ watch -n1 ./kallithea/tests/mem_watch :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 --git a/kallithea/websetup.py b/kallithea/websetup.py --- a/kallithea/websetup.py +++ b/kallithea/websetup.py @@ -20,7 +20,7 @@ Weboperations and setup for rhodecode :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 --git a/setup.cfg b/setup.cfg --- a/setup.cfg +++ b/setup.cfg @@ -24,7 +24,7 @@ statistics = true 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]