diff --git a/kallithea/__init__.py b/kallithea/__init__.py --- a/kallithea/__init__.py +++ b/kallithea/__init__.py @@ -18,9 +18,11 @@ kallithea.__init__ RhodeCode, a web based repository management based on pylons versioning implementation: http://www.python.org/dev/peps/pep-0386/ +This file was forked by the Kallithea project in July 2014. +Original author and date, and relevant copyright and licensing information is below: :created_on: Apr 9, 2010 :author: marcink -:copyright: (c) 2013 RhodeCode GmbH. +:copyright: (c) 2013 RhodeCode GmbH, and others. :license: GPLv3, see LICENSE.md for more details. """ @@ -55,7 +57,7 @@ __dbversion__ = 31 # defines current db __platform__ = platform.system() __license__ = 'GPLv3' __py_version__ = sys.version_info -__author__ = 'RhodeCode GmbH' +__author__ = "Various Authors" __url__ = 'https://kallithea-scm.org/' is_windows = __platform__ in ['Windows'] diff --git a/kallithea/bin/__init__.py b/kallithea/bin/__init__.py --- a/kallithea/bin/__init__.py +++ b/kallithea/bin/__init__.py @@ -17,8 +17,10 @@ kallithea.bin.__init__ Binary scripts for RhodeCode +This file was forked by the Kallithea project in July 2014. +Original author and date, and relevant copyright and licensing information is below: :created_on: Jun 03, 2012 :author: marcink -:copyright: (c) 2013 RhodeCode GmbH. +:copyright: (c) 2013 RhodeCode GmbH, and others. :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 @@ -17,9 +17,11 @@ kallithea.bin.base Base utils for shell scripts +This file was forked by the Kallithea project in July 2014. +Original author and date, and relevant copyright and licensing information is below: :created_on: May 09, 2013 :author: marcink -:copyright: (c) 2013 RhodeCode GmbH. +:copyright: (c) 2013 RhodeCode GmbH, and others. :license: GPLv3, see LICENSE.md for more details. """ 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 @@ -17,9 +17,11 @@ kallithea.bin.api Api CLI client for RhodeCode +This file was forked by the Kallithea project in July 2014. +Original author and date, and relevant copyright and licensing information is below: :created_on: Jun 3, 2012 :author: marcink -:copyright: (c) 2013 RhodeCode GmbH. +:copyright: (c) 2013 RhodeCode GmbH, and others. :license: GPLv3, see LICENSE.md for more details. """ 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 @@ -18,9 +18,11 @@ kallithea.bin.backup_manager Repositories backup manager, it allows to backups all repositories and send it to backup server using RSA key via ssh. +This file was forked by the Kallithea project in July 2014. +Original author and date, and relevant copyright and licensing information is below: :created_on: Feb 28, 2010 :author: marcink -:copyright: (c) 2013 RhodeCode GmbH. +:copyright: (c) 2013 RhodeCode GmbH, and others. :license: GPLv3, see LICENSE.md for more details. """ 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 @@ -17,9 +17,11 @@ kallithea.bin.kallithea_config configuration generator for RhodeCode +This file was forked by the Kallithea project in July 2014. +Original author and date, and relevant copyright and licensing information is below: :created_on: Jun 18, 2013 :author: marcink -:copyright: (c) 2013 RhodeCode GmbH. +:copyright: (c) 2013 RhodeCode GmbH, and others. :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 @@ -17,9 +17,11 @@ kallithea.bin.kallithea_gist Gist CLI client for RhodeCode +This file was forked by the Kallithea project in July 2014. +Original author and date, and relevant copyright and licensing information is below: :created_on: May 9, 2013 :author: marcink -:copyright: (c) 2013 RhodeCode GmbH. +:copyright: (c) 2013 RhodeCode GmbH, and others. :license: GPLv3, see LICENSE.md for more details. """ 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 @@ -17,9 +17,11 @@ kallithea.bin.__init__ LDAP sync script +This file was forked by the Kallithea project in July 2014. +Original author and date, and relevant copyright and licensing information is below: :created_on: Mar 06, 2013 :author: marcink -:copyright: (c) 2013 RhodeCode GmbH. +:copyright: (c) 2013 RhodeCode GmbH, and others. :license: GPLv3, see LICENSE.md for more details. """ diff --git a/kallithea/config/conf.py b/kallithea/config/conf.py --- a/kallithea/config/conf.py +++ b/kallithea/config/conf.py @@ -17,9 +17,11 @@ kallithea.config.conf Various config settings for RhodeCode +This file was forked by the Kallithea project in July 2014. +Original author and date, and relevant copyright and licensing information is below: :created_on: Mar 7, 2012 :author: marcink -:copyright: (c) 2013 RhodeCode GmbH. +:copyright: (c) 2013 RhodeCode GmbH, and others. :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 @@ -17,9 +17,11 @@ kallithea.controllers.admin.admin Controller for Admin panel of Rhodecode +This file was forked by the Kallithea project in July 2014. +Original author and date, and relevant copyright and licensing information is below: :created_on: Apr 7, 2010 :author: marcink -:copyright: (c) 2013 RhodeCode GmbH. +:copyright: (c) 2013 RhodeCode GmbH, and others. :license: GPLv3, see LICENSE.md for more details. """ diff --git a/kallithea/controllers/admin/auth_settings.py b/kallithea/controllers/admin/auth_settings.py --- a/kallithea/controllers/admin/auth_settings.py +++ b/kallithea/controllers/admin/auth_settings.py @@ -17,6 +17,8 @@ kallithea.controllers.admin.auth_setting pluggable authentication controller for RhodeCode +This file was forked by the Kallithea project in July 2014. +Original author and date, and relevant copyright and licensing information is below: :created_on: Nov 26, 2010 :author: akesterson """ 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 @@ -17,9 +17,11 @@ kallithea.controllers.admin.defaults default settings controller for Rhodecode +This file was forked by the Kallithea project in July 2014. +Original author and date, and relevant copyright and licensing information is below: :created_on: Apr 27, 2010 :author: marcink -:copyright: (c) 2013 RhodeCode GmbH. +:copyright: (c) 2013 RhodeCode GmbH, and others. :license: GPLv3, see LICENSE.md for more details. """ 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 @@ -17,9 +17,11 @@ kallithea.controllers.admin.gist gist controller for RhodeCode +This file was forked by the Kallithea project in July 2014. +Original author and date, and relevant copyright and licensing information is below: :created_on: May 9, 2013 :author: marcink -:copyright: (c) 2013 RhodeCode GmbH. +:copyright: (c) 2013 RhodeCode GmbH, and others. :license: GPLv3, see LICENSE.md for more details. """ 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 @@ -17,9 +17,11 @@ kallithea.controllers.admin.my_account my account controller for rhodecode admin +This file was forked by the Kallithea project in July 2014. +Original author and date, and relevant copyright and licensing information is below: :created_on: August 20, 2013 :author: marcink -:copyright: (c) 2013 RhodeCode GmbH. +:copyright: (c) 2013 RhodeCode GmbH, and others. :license: GPLv3, see LICENSE.md for more details. """ 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 @@ -17,9 +17,11 @@ kallithea.controllers.admin.notification notifications controller for RhodeCode +This file was forked by the Kallithea project in July 2014. +Original author and date, and relevant copyright and licensing information is below: :created_on: Nov 23, 2010 :author: marcink -:copyright: (c) 2013 RhodeCode GmbH. +:copyright: (c) 2013 RhodeCode GmbH, and others. :license: GPLv3, see LICENSE.md for more details. """ 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 @@ -17,9 +17,11 @@ kallithea.controllers.admin.permissions permissions controller for Rhodecode +This file was forked by the Kallithea project in July 2014. +Original author and date, and relevant copyright and licensing information is below: :created_on: Apr 27, 2010 :author: marcink -:copyright: (c) 2013 RhodeCode GmbH. +:copyright: (c) 2013 RhodeCode GmbH, and others. :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 @@ -17,9 +17,11 @@ kallithea.controllers.admin.repo_groups Repository groups controller for RhodeCode +This file was forked by the Kallithea project in July 2014. +Original author and date, and relevant copyright and licensing information is below: :created_on: Mar 23, 2010 :author: marcink -:copyright: (c) 2013 RhodeCode GmbH. +:copyright: (c) 2013 RhodeCode GmbH, and others. :license: GPLv3, see LICENSE.md for more details. """ 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 @@ -17,9 +17,11 @@ kallithea.controllers.admin.repos Repositories controller for RhodeCode +This file was forked by the Kallithea project in July 2014. +Original author and date, and relevant copyright and licensing information is below: :created_on: Apr 7, 2010 :author: marcink -:copyright: (c) 2013 RhodeCode GmbH. +:copyright: (c) 2013 RhodeCode GmbH, and others. :license: GPLv3, see LICENSE.md for more details. """ 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 @@ -17,9 +17,11 @@ kallithea.controllers.admin.settings settings controller for rhodecode admin +This file was forked by the Kallithea project in July 2014. +Original author and date, and relevant copyright and licensing information is below: :created_on: Jul 14, 2010 :author: marcink -:copyright: (c) 2013 RhodeCode GmbH. +:copyright: (c) 2013 RhodeCode GmbH, and others. :license: GPLv3, see LICENSE.md for more details. """ 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 @@ -17,9 +17,11 @@ kallithea.controllers.admin.users_groups User Groups crud controller for pylons +This file was forked by the Kallithea project in July 2014. +Original author and date, and relevant copyright and licensing information is below: :created_on: Jan 25, 2011 :author: marcink -:copyright: (c) 2013 RhodeCode GmbH. +:copyright: (c) 2013 RhodeCode GmbH, and others. :license: GPLv3, see LICENSE.md for more details. """ 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 @@ -17,9 +17,11 @@ kallithea.controllers.admin.users Users crud controller for pylons +This file was forked by the Kallithea project in July 2014. +Original author and date, and relevant copyright and licensing information is below: :created_on: Apr 4, 2010 :author: marcink -:copyright: (c) 2013 RhodeCode GmbH. +:copyright: (c) 2013 RhodeCode GmbH, and others. :license: GPLv3, see LICENSE.md for more details. """ 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 @@ -17,9 +17,11 @@ kallithea.controllers.api JSON RPC controller +This file was forked by the Kallithea project in July 2014. +Original author and date, and relevant copyright and licensing information is below: :created_on: Aug 20, 2011 :author: marcink -:copyright: (c) 2013 RhodeCode GmbH. +:copyright: (c) 2013 RhodeCode GmbH, and others. :license: GPLv3, see LICENSE.md for more details. """ 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 @@ -17,9 +17,11 @@ kallithea.controllers.api API controller for RhodeCode +This file was forked by the Kallithea project in July 2014. +Original author and date, and relevant copyright and licensing information is below: :created_on: Aug 20, 2011 :author: marcink -:copyright: (c) 2013 RhodeCode GmbH. +:copyright: (c) 2013 RhodeCode GmbH, and others. :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 @@ -17,9 +17,11 @@ kallithea.controllers.bookmarks Bookmarks controller for rhodecode +This file was forked by the Kallithea project in July 2014. +Original author and date, and relevant copyright and licensing information is below: :created_on: Dec 1, 2011 :author: marcink -:copyright: (c) 2013 RhodeCode GmbH. +:copyright: (c) 2013 RhodeCode GmbH, and others. :license: GPLv3, see LICENSE.md for more details. """ diff --git a/kallithea/controllers/branches.py b/kallithea/controllers/branches.py --- a/kallithea/controllers/branches.py +++ b/kallithea/controllers/branches.py @@ -17,9 +17,11 @@ kallithea.controllers.branches branches controller for rhodecode +This file was forked by the Kallithea project in July 2014. +Original author and date, and relevant copyright and licensing information is below: :created_on: Apr 21, 2010 :author: marcink -:copyright: (c) 2013 RhodeCode GmbH. +:copyright: (c) 2013 RhodeCode GmbH, and others. :license: GPLv3, see LICENSE.md for more details. """ diff --git a/kallithea/controllers/changelog.py b/kallithea/controllers/changelog.py --- a/kallithea/controllers/changelog.py +++ b/kallithea/controllers/changelog.py @@ -17,9 +17,11 @@ kallithea.controllers.changelog changelog controller for rhodecode +This file was forked by the Kallithea project in July 2014. +Original author and date, and relevant copyright and licensing information is below: :created_on: Apr 21, 2010 :author: marcink -:copyright: (c) 2013 RhodeCode GmbH. +:copyright: (c) 2013 RhodeCode GmbH, and others. :license: GPLv3, see LICENSE.md for more details. """ diff --git a/kallithea/controllers/changeset.py b/kallithea/controllers/changeset.py --- a/kallithea/controllers/changeset.py +++ b/kallithea/controllers/changeset.py @@ -18,9 +18,11 @@ kallithea.controllers.changeset changeset controller for pylons showoing changes beetween revisions +This file was forked by the Kallithea project in July 2014. +Original author and date, and relevant copyright and licensing information is below: :created_on: Apr 25, 2010 :author: marcink -:copyright: (c) 2013 RhodeCode GmbH. +:copyright: (c) 2013 RhodeCode GmbH, and others. :license: GPLv3, see LICENSE.md for more details. """ diff --git a/kallithea/controllers/compare.py b/kallithea/controllers/compare.py --- a/kallithea/controllers/compare.py +++ b/kallithea/controllers/compare.py @@ -18,9 +18,11 @@ kallithea.controllers.compare compare controller for pylons showing differences between two repos, branches, bookmarks or tips +This file was forked by the Kallithea project in July 2014. +Original author and date, and relevant copyright and licensing information is below: :created_on: May 6, 2012 :author: marcink -:copyright: (c) 2013 RhodeCode GmbH. +:copyright: (c) 2013 RhodeCode GmbH, and others. :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 @@ -17,9 +17,11 @@ kallithea.controllers.error RhodeCode error controller +This file was forked by the Kallithea project in July 2014. +Original author and date, and relevant copyright and licensing information is below: :created_on: Dec 8, 2010 :author: marcink -:copyright: (c) 2013 RhodeCode GmbH. +:copyright: (c) 2013 RhodeCode GmbH, and others. :license: GPLv3, see LICENSE.md for more details. """ diff --git a/kallithea/controllers/feed.py b/kallithea/controllers/feed.py --- a/kallithea/controllers/feed.py +++ b/kallithea/controllers/feed.py @@ -17,9 +17,11 @@ kallithea.controllers.feed Feed controller for rhodecode +This file was forked by the Kallithea project in July 2014. +Original author and date, and relevant copyright and licensing information is below: :created_on: Apr 23, 2010 :author: marcink -:copyright: (c) 2013 RhodeCode GmbH. +:copyright: (c) 2013 RhodeCode GmbH, and others. :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 @@ -17,9 +17,11 @@ kallithea.controllers.files Files controller for RhodeCode +This file was forked by the Kallithea project in July 2014. +Original author and date, and relevant copyright and licensing information is below: :created_on: Apr 21, 2010 :author: marcink -:copyright: (c) 2013 RhodeCode GmbH. +:copyright: (c) 2013 RhodeCode GmbH, and others. :license: GPLv3, see LICENSE.md for more details. """ diff --git a/kallithea/controllers/followers.py b/kallithea/controllers/followers.py --- a/kallithea/controllers/followers.py +++ b/kallithea/controllers/followers.py @@ -17,9 +17,11 @@ kallithea.controllers.followers Followers controller for rhodecode +This file was forked by the Kallithea project in July 2014. +Original author and date, and relevant copyright and licensing information is below: :created_on: Apr 23, 2011 :author: marcink -:copyright: (c) 2013 RhodeCode GmbH. +:copyright: (c) 2013 RhodeCode GmbH, and others. :license: GPLv3, see LICENSE.md for more details. """ diff --git a/kallithea/controllers/forks.py b/kallithea/controllers/forks.py --- a/kallithea/controllers/forks.py +++ b/kallithea/controllers/forks.py @@ -17,9 +17,11 @@ kallithea.controllers.forks forks controller for rhodecode +This file was forked by the Kallithea project in July 2014. +Original author and date, and relevant copyright and licensing information is below: :created_on: Apr 23, 2011 :author: marcink -:copyright: (c) 2013 RhodeCode GmbH. +:copyright: (c) 2013 RhodeCode GmbH, and others. :license: GPLv3, see LICENSE.md for more details. """ diff --git a/kallithea/controllers/home.py b/kallithea/controllers/home.py --- a/kallithea/controllers/home.py +++ b/kallithea/controllers/home.py @@ -17,9 +17,11 @@ kallithea.controllers.home Home controller for Rhodecode +This file was forked by the Kallithea project in July 2014. +Original author and date, and relevant copyright and licensing information is below: :created_on: Feb 18, 2010 :author: marcink -:copyright: (c) 2013 RhodeCode GmbH. +:copyright: (c) 2013 RhodeCode GmbH, and others. :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 @@ -17,9 +17,11 @@ kallithea.controllers.journal Journal controller for pylons +This file was forked by the Kallithea project in July 2014. +Original author and date, and relevant copyright and licensing information is below: :created_on: Nov 21, 2010 :author: marcink -:copyright: (c) 2013 RhodeCode GmbH. +:copyright: (c) 2013 RhodeCode GmbH, and others. :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 @@ -17,9 +17,11 @@ kallithea.controllers.login Login controller for rhodeocode +This file was forked by the Kallithea project in July 2014. +Original author and date, and relevant copyright and licensing information is below: :created_on: Apr 22, 2010 :author: marcink -:copyright: (c) 2013 RhodeCode GmbH. +:copyright: (c) 2013 RhodeCode GmbH, and others. :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 @@ -17,9 +17,11 @@ kallithea.controllers.pullrequests pull requests controller for rhodecode for initializing pull requests +This file was forked by the Kallithea project in July 2014. +Original author and date, and relevant copyright and licensing information is below: :created_on: May 7, 2012 :author: marcink -:copyright: (c) 2013 RhodeCode GmbH. +:copyright: (c) 2013 RhodeCode GmbH, and others. :license: GPLv3, see LICENSE.md for more details. """ diff --git a/kallithea/controllers/search.py b/kallithea/controllers/search.py --- a/kallithea/controllers/search.py +++ b/kallithea/controllers/search.py @@ -17,9 +17,11 @@ kallithea.controllers.search Search controller for RhodeCode +This file was forked by the Kallithea project in July 2014. +Original author and date, and relevant copyright and licensing information is below: :created_on: Aug 7, 2010 :author: marcink -:copyright: (c) 2013 RhodeCode GmbH. +:copyright: (c) 2013 RhodeCode GmbH, and others. :license: GPLv3, see LICENSE.md for more details. """ diff --git a/kallithea/controllers/summary.py b/kallithea/controllers/summary.py --- a/kallithea/controllers/summary.py +++ b/kallithea/controllers/summary.py @@ -17,9 +17,11 @@ kallithea.controllers.summary Summary controller for Rhodecode +This file was forked by the Kallithea project in July 2014. +Original author and date, and relevant copyright and licensing information is below: :created_on: Apr 18, 2010 :author: marcink -:copyright: (c) 2013 RhodeCode GmbH. +:copyright: (c) 2013 RhodeCode GmbH, and others. :license: GPLv3, see LICENSE.md for more details. """ diff --git a/kallithea/controllers/tags.py b/kallithea/controllers/tags.py --- a/kallithea/controllers/tags.py +++ b/kallithea/controllers/tags.py @@ -17,9 +17,11 @@ kallithea.controllers.tags Tags controller for rhodecode +This file was forked by the Kallithea project in July 2014. +Original author and date, and relevant copyright and licensing information is below: :created_on: Apr 21, 2010 :author: marcink -:copyright: (c) 2013 RhodeCode GmbH. +:copyright: (c) 2013 RhodeCode GmbH, and others. :license: GPLv3, see LICENSE.md for more details. """ diff --git a/kallithea/i18n/de/LC_MESSAGES/kallithea.po b/kallithea/i18n/de/LC_MESSAGES/kallithea.po --- a/kallithea/i18n/de/LC_MESSAGES/kallithea.po +++ b/kallithea/i18n/de/LC_MESSAGES/kallithea.po @@ -1,5 +1,5 @@ # Translations template for RhodeCode. -# Copyright (C) 2014 RhodeCode GmbH +# Copyright (C) 2014 RhodeCode GmbH, and others. # This file is distributed under the same license as the RhodeCode project. # Translators: # stephanj , 2013 diff --git a/kallithea/i18n/fr/LC_MESSAGES/kallithea.po b/kallithea/i18n/fr/LC_MESSAGES/kallithea.po --- a/kallithea/i18n/fr/LC_MESSAGES/kallithea.po +++ b/kallithea/i18n/fr/LC_MESSAGES/kallithea.po @@ -1,5 +1,5 @@ # Translations template for RhodeCode. -# Copyright (C) 2014 RhodeCode GmbH +# Copyright (C) 2014 RhodeCode GmbH, and others. # This file is distributed under the same license as the RhodeCode project. # Translators: # FIRST AUTHOR , 2011 diff --git a/kallithea/i18n/ja/LC_MESSAGES/kallithea.po b/kallithea/i18n/ja/LC_MESSAGES/kallithea.po --- a/kallithea/i18n/ja/LC_MESSAGES/kallithea.po +++ b/kallithea/i18n/ja/LC_MESSAGES/kallithea.po @@ -1,5 +1,5 @@ # Translations template for RhodeCode. -# Copyright (C) 2014 RhodeCode GmbH +# Copyright (C) 2014 RhodeCode GmbH, and others. # This file is distributed under the same license as the RhodeCode project. # Translators: # しろう, 2013 diff --git a/kallithea/i18n/pl/LC_MESSAGES/kallithea.po b/kallithea/i18n/pl/LC_MESSAGES/kallithea.po --- a/kallithea/i18n/pl/LC_MESSAGES/kallithea.po +++ b/kallithea/i18n/pl/LC_MESSAGES/kallithea.po @@ -1,5 +1,5 @@ # Translations template for RhodeCode. -# Copyright (C) 2014 RhodeCode GmbH +# Copyright (C) 2014 RhodeCode GmbH, and others. # This file is distributed under the same license as the RhodeCode project. # Translators: # Nemcio , 2013 diff --git a/kallithea/i18n/pt_BR/LC_MESSAGES/kallithea.po b/kallithea/i18n/pt_BR/LC_MESSAGES/kallithea.po --- a/kallithea/i18n/pt_BR/LC_MESSAGES/kallithea.po +++ b/kallithea/i18n/pt_BR/LC_MESSAGES/kallithea.po @@ -1,5 +1,5 @@ # Translations template for RhodeCode. -# Copyright (C) 2014 RhodeCode GmbH +# Copyright (C) 2014 RhodeCode GmbH, and others. # This file is distributed under the same license as the RhodeCode project. # Translators: # Augusto Herrmann , 2012 diff --git a/kallithea/i18n/ru/LC_MESSAGES/kallithea.po b/kallithea/i18n/ru/LC_MESSAGES/kallithea.po --- a/kallithea/i18n/ru/LC_MESSAGES/kallithea.po +++ b/kallithea/i18n/ru/LC_MESSAGES/kallithea.po @@ -1,5 +1,5 @@ # Translations template for RhodeCode. -# Copyright (C) 2014 RhodeCode GmbH +# Copyright (C) 2014 RhodeCode GmbH, and others. # This file is distributed under the same license as the RhodeCode project. # Translators: # ArcheR , 2013 diff --git a/kallithea/i18n/zh_CN/LC_MESSAGES/kallithea.po b/kallithea/i18n/zh_CN/LC_MESSAGES/kallithea.po --- a/kallithea/i18n/zh_CN/LC_MESSAGES/kallithea.po +++ b/kallithea/i18n/zh_CN/LC_MESSAGES/kallithea.po @@ -1,5 +1,5 @@ # Translations template for RhodeCode. -# Copyright (C) 2014 RhodeCode GmbH +# Copyright (C) 2014 RhodeCode GmbH, and others. # This file is distributed under the same license as the RhodeCode project. # Translators: # FIRST AUTHOR , 2011 diff --git a/kallithea/i18n/zh_TW/LC_MESSAGES/kallithea.po b/kallithea/i18n/zh_TW/LC_MESSAGES/kallithea.po --- a/kallithea/i18n/zh_TW/LC_MESSAGES/kallithea.po +++ b/kallithea/i18n/zh_TW/LC_MESSAGES/kallithea.po @@ -1,5 +1,5 @@ # Translations template for RhodeCode. -# Copyright (C) 2014 RhodeCode GmbH +# Copyright (C) 2014 RhodeCode GmbH, and others. # This file is distributed under the same license as the RhodeCode project. # Translators: # FIRST AUTHOR , 2011 diff --git a/kallithea/lib/__init__.py b/kallithea/lib/__init__.py --- a/kallithea/lib/__init__.py +++ b/kallithea/lib/__init__.py @@ -17,9 +17,11 @@ kallithea.lib RhodeCode libs +This file was forked by the Kallithea project in July 2014. +Original author and date, and relevant copyright and licensing information is below: :created_on: Oct 06, 2010 :author: marcink -:copyright: (c) 2013 RhodeCode GmbH. +:copyright: (c) 2013 RhodeCode GmbH, and others. :license: GPLv3, see LICENSE.md for more details. """ diff --git a/kallithea/lib/annotate.py b/kallithea/lib/annotate.py --- a/kallithea/lib/annotate.py +++ b/kallithea/lib/annotate.py @@ -17,9 +17,11 @@ kallithea.lib.annotate Anontation library for usage in rhodecode, previously part of vcs +This file was forked by the Kallithea project in July 2014. +Original author and date, and relevant copyright and licensing information is below: :created_on: Dec 4, 2011 :author: marcink -:copyright: (c) 2013 RhodeCode GmbH. +:copyright: (c) 2013 RhodeCode GmbH, and others. :license: GPLv3, see LICENSE.md for more details. """ 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 @@ -18,9 +18,11 @@ kallithea.lib.app_globals The application's Globals object +This file was forked by the Kallithea project in July 2014. +Original author and date, and relevant copyright and licensing information is below: :created_on: Oct 06, 2010 :author: marcink -:copyright: (c) 2013 RhodeCode GmbH. +:copyright: (c) 2013 RhodeCode GmbH, and others. :license: GPLv3, see LICENSE.md for more details. """ diff --git a/kallithea/lib/auth.py b/kallithea/lib/auth.py --- a/kallithea/lib/auth.py +++ b/kallithea/lib/auth.py @@ -17,9 +17,11 @@ kallithea.lib.auth authentication and permission libraries +This file was forked by the Kallithea project in July 2014. +Original author and date, and relevant copyright and licensing information is below: :created_on: Apr 4, 2010 :author: marcink -:copyright: (c) 2013 RhodeCode GmbH. +:copyright: (c) 2013 RhodeCode GmbH, and others. :license: GPLv3, see LICENSE.md for more details. """ from __future__ import with_statement 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 @@ -17,9 +17,11 @@ kallithea.lib.auth_modules.auth_containe RhodeCode container based authentication plugin +This file was forked by the Kallithea project in July 2014. +Original author and date, and relevant copyright and licensing information is below: :created_on: Created on Nov 17, 2012 :author: marcink -:copyright: (c) 2013 RhodeCode GmbH. +:copyright: (c) 2013 RhodeCode GmbH, and others. :license: GPLv3, see LICENSE.md for more details. """ 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 @@ -17,9 +17,11 @@ kallithea.lib.auth_modules.auth_crowd RhodeCode authentication plugin for Atlassian CROWD +This file was forked by the Kallithea project in July 2014. +Original author and date, and relevant copyright and licensing information is below: :created_on: Created on Nov 17, 2012 :author: marcink -:copyright: (c) 2013 RhodeCode GmbH. +:copyright: (c) 2013 RhodeCode GmbH, and others. :license: GPLv3, see LICENSE.md for more details. """ diff --git a/kallithea/lib/auth_modules/auth_internal.py b/kallithea/lib/auth_modules/auth_internal.py --- a/kallithea/lib/auth_modules/auth_internal.py +++ b/kallithea/lib/auth_modules/auth_internal.py @@ -17,9 +17,11 @@ kallithea.lib.auth_modules.auth_internal RhodeCode authentication plugin for built in internal auth +This file was forked by the Kallithea project in July 2014. +Original author and date, and relevant copyright and licensing information is below: :created_on: Created on Nov 17, 2012 :author: marcink -:copyright: (c) 2013 RhodeCode GmbH. +:copyright: (c) 2013 RhodeCode GmbH, and others. :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 @@ -17,9 +17,11 @@ kallithea.lib.auth_modules.auth_ldap RhodeCode authentication plugin for LDAP +This file was forked by the Kallithea project in July 2014. +Original author and date, and relevant copyright and licensing information is below: :created_on: Created on Nov 17, 2010 :author: marcink -:copyright: (c) 2013 RhodeCode GmbH. +:copyright: (c) 2013 RhodeCode GmbH, and others. :license: GPLv3, see LICENSE.md for more details. """ diff --git a/kallithea/lib/auth_modules/auth_pam.py b/kallithea/lib/auth_modules/auth_pam.py --- a/kallithea/lib/auth_modules/auth_pam.py +++ b/kallithea/lib/auth_modules/auth_pam.py @@ -17,6 +17,8 @@ kallithea.lib.auth_pam RhodeCode authentication library for PAM +This file was forked by the Kallithea project in July 2014. +Original author and date, and relevant copyright and licensing information is below: :created_on: Created on Apr 09, 2013 :author: Alexey Larikov """ diff --git a/kallithea/lib/base.py b/kallithea/lib/base.py --- a/kallithea/lib/base.py +++ b/kallithea/lib/base.py @@ -20,9 +20,11 @@ The base Controller API Provides the BaseController class for subclassing. And usage in different controllers +This file was forked by the Kallithea project in July 2014. +Original author and date, and relevant copyright and licensing information is below: :created_on: Oct 06, 2010 :author: marcink -:copyright: (c) 2013 RhodeCode GmbH. +:copyright: (c) 2013 RhodeCode GmbH, and others. :license: GPLv3, see LICENSE.md for more details. """ 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 @@ -17,9 +17,11 @@ kallithea.lib.celerylib.__init__ celery libs for RhodeCode +This file was forked by the Kallithea project in July 2014. +Original author and date, and relevant copyright and licensing information is below: :created_on: Nov 27, 2010 :author: marcink -:copyright: (c) 2013 RhodeCode GmbH. +:copyright: (c) 2013 RhodeCode GmbH, and others. :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 @@ -18,9 +18,11 @@ kallithea.lib.celerylib.tasks RhodeCode task modules, containing all task that suppose to be run by celery daemon +This file was forked by the Kallithea project in July 2014. +Original author and date, and relevant copyright and licensing information is below: :created_on: Oct 6, 2010 :author: marcink -:copyright: (c) 2013 RhodeCode GmbH. +:copyright: (c) 2013 RhodeCode GmbH, and others. :license: GPLv3, see LICENSE.md for more details. """ diff --git a/kallithea/lib/compat.py b/kallithea/lib/compat.py --- a/kallithea/lib/compat.py +++ b/kallithea/lib/compat.py @@ -18,9 +18,11 @@ kallithea.lib.compat Python backward compatibility functions and common libs +This file was forked by the Kallithea project in July 2014. +Original author and date, and relevant copyright and licensing information is below: :created_on: Oct 7, 2011 :author: marcink -:copyright: (c) 2013 RhodeCode GmbH. +:copyright: (c) 2013 RhodeCode GmbH, and others. :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 @@ -18,9 +18,11 @@ kallithea.lib.db_manage Database creation, and setup module for RhodeCode. Used for creation of database as well as for migration operations +This file was forked by the Kallithea project in July 2014. +Original author and date, and relevant copyright and licensing information is below: :created_on: Apr 10, 2010 :author: marcink -:copyright: (c) 2013 RhodeCode GmbH. +:copyright: (c) 2013 RhodeCode GmbH, and others. :license: GPLv3, see LICENSE.md for more details. """ 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 @@ -17,9 +17,11 @@ kallithea.lib.dbmigrate.__init__ Database migration modules +This file was forked by the Kallithea project in July 2014. +Original author and date, and relevant copyright and licensing information is below: :created_on: Dec 11, 2010 :author: marcink -:copyright: (c) 2013 RhodeCode GmbH. +:copyright: (c) 2013 RhodeCode GmbH, and others. :license: GPLv3, see LICENSE.md for more details. """ 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 @@ -17,8 +17,10 @@ kallithea.lib.dbmigrate.schema Schemas for migrations +This file was forked by the Kallithea project in July 2014. +Original author and date, and relevant copyright and licensing information is below: :created_on: Nov 1, 2011 :author: marcink -:copyright: (c) 2013 RhodeCode GmbH. +:copyright: (c) 2013 RhodeCode GmbH, and others. :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 @@ -17,9 +17,11 @@ kallithea.model.db_1_2_0 Database Models for RhodeCode <=1.2.X +This file was forked by the Kallithea project in July 2014. +Original author and date, and relevant copyright and licensing information is below: :created_on: Apr 08, 2010 :author: marcink -:copyright: (c) 2013 RhodeCode GmbH. +:copyright: (c) 2013 RhodeCode GmbH, and others. :license: GPLv3, see LICENSE.md for more details. """ 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 @@ -17,9 +17,11 @@ kallithea.model.db_1_3_0 Database Models for RhodeCode <=1.3.X +This file was forked by the Kallithea project in July 2014. +Original author and date, and relevant copyright and licensing information is below: :created_on: Apr 08, 2010 :author: marcink -:copyright: (c) 2013 RhodeCode GmbH. +:copyright: (c) 2013 RhodeCode GmbH, and others. :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 @@ -17,9 +17,11 @@ kallithea.model.db_1_4_0 Database Models for RhodeCode <=1.4.X +This file was forked by the Kallithea project in July 2014. +Original author and date, and relevant copyright and licensing information is below: :created_on: Apr 08, 2010 :author: marcink -:copyright: (c) 2013 RhodeCode GmbH. +:copyright: (c) 2013 RhodeCode GmbH, and others. :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 @@ -17,9 +17,11 @@ kallithea.model.db_1_5_0 Database Models for RhodeCode <=1.5.2 +This file was forked by the Kallithea project in July 2014. +Original author and date, and relevant copyright and licensing information is below: :created_on: Apr 08, 2010 :author: marcink -:copyright: (c) 2013 RhodeCode GmbH. +:copyright: (c) 2013 RhodeCode GmbH, and others. :license: GPLv3, see LICENSE.md for more details. """ 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 @@ -17,9 +17,11 @@ kallithea.model.db_1_5_2 Database Models for RhodeCode <=1.5.X +This file was forked by the Kallithea project in July 2014. +Original author and date, and relevant copyright and licensing information is below: :created_on: Apr 08, 2010 :author: marcink -:copyright: (c) 2013 RhodeCode GmbH. +:copyright: (c) 2013 RhodeCode GmbH, and others. :license: GPLv3, see LICENSE.md for more details. """ 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 @@ -17,9 +17,11 @@ kallithea.model.db_1_6_0 Database Models for RhodeCode <=1.5.X +This file was forked by the Kallithea project in July 2014. +Original author and date, and relevant copyright and licensing information is below: :created_on: Apr 08, 2010 :author: marcink -:copyright: (c) 2013 RhodeCode GmbH. +:copyright: (c) 2013 RhodeCode GmbH, and others. :license: GPLv3, see LICENSE.md for more details. """ 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 @@ -17,9 +17,11 @@ kallithea.model.db Database Models for RhodeCode +This file was forked by the Kallithea project in July 2014. +Original author and date, and relevant copyright and licensing information is below: :created_on: Apr 08, 2010 :author: marcink -:copyright: (c) 2013 RhodeCode GmbH. +:copyright: (c) 2013 RhodeCode GmbH, and others. :license: GPLv3, see LICENSE.md for more details. """ 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 @@ -17,9 +17,11 @@ kallithea.model.db Database Models for RhodeCode +This file was forked by the Kallithea project in July 2014. +Original author and date, and relevant copyright and licensing information is below: :created_on: Apr 08, 2010 :author: marcink -:copyright: (c) 2013 RhodeCode GmbH. +:copyright: (c) 2013 RhodeCode GmbH, and others. :license: GPLv3, see LICENSE.md for more details. """ 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 @@ -17,9 +17,11 @@ kallithea.model.db Database Models for RhodeCode +This file was forked by the Kallithea project in July 2014. +Original author and date, and relevant copyright and licensing information is below: :created_on: Apr 08, 2010 :author: marcink -:copyright: (c) 2013 RhodeCode GmbH. +:copyright: (c) 2013 RhodeCode GmbH, and others. :license: GPLv3, see LICENSE.md for more details. """ 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 @@ -17,9 +17,11 @@ kallithea.model.db Database Models for RhodeCode +This file was forked by the Kallithea project in July 2014. +Original author and date, and relevant copyright and licensing information is below: :created_on: Apr 08, 2010 :author: marcink -:copyright: (c) 2013 RhodeCode GmbH. +:copyright: (c) 2013 RhodeCode GmbH, and others. :license: GPLv3, see LICENSE.md for more details. """ 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 @@ -17,9 +17,11 @@ kallithea.model.db Database Models for RhodeCode +This file was forked by the Kallithea project in July 2014. +Original author and date, and relevant copyright and licensing information is below: :created_on: Apr 08, 2010 :author: marcink -:copyright: (c) 2013 RhodeCode GmbH. +:copyright: (c) 2013 RhodeCode GmbH, and others. :license: GPLv3, see LICENSE.md for more details. """ 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 @@ -17,9 +17,11 @@ kallithea.model.db Database Models for RhodeCode +This file was forked by the Kallithea project in July 2014. +Original author and date, and relevant copyright and licensing information is below: :created_on: Apr 08, 2010 :author: marcink -:copyright: (c) 2013 RhodeCode GmbH. +:copyright: (c) 2013 RhodeCode GmbH, and others. :license: GPLv3, see LICENSE.md for more details. """ 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 @@ -17,9 +17,11 @@ kallithea.model.db Database Models for RhodeCode +This file was forked by the Kallithea project in July 2014. +Original author and date, and relevant copyright and licensing information is below: :created_on: Apr 08, 2010 :author: marcink -:copyright: (c) 2013 RhodeCode GmbH. +:copyright: (c) 2013 RhodeCode GmbH, and others. :license: GPLv3, see LICENSE.md for more details. """ 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 @@ -17,9 +17,11 @@ kallithea.model.db Database Models for RhodeCode +This file was forked by the Kallithea project in July 2014. +Original author and date, and relevant copyright and licensing information is below: :created_on: Apr 08, 2010 :author: marcink -:copyright: (c) 2013 RhodeCode GmbH. +:copyright: (c) 2013 RhodeCode GmbH, and others. :license: GPLv3, see LICENSE.md for more details. """ 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 @@ -17,9 +17,11 @@ kallithea.lib.dbmigrate.versions.__init_ Package containing new versions of database models +This file was forked by the Kallithea project in July 2014. +Original author and date, and relevant copyright and licensing information is below: :created_on: Dec 11, 2010 :author: marcink -:copyright: (c) 2013 RhodeCode GmbH. +:copyright: (c) 2013 RhodeCode GmbH, and others. :license: GPLv3, see LICENSE.md for more details. """ diff --git a/kallithea/lib/diffs.py b/kallithea/lib/diffs.py --- a/kallithea/lib/diffs.py +++ b/kallithea/lib/diffs.py @@ -18,9 +18,11 @@ kallithea.lib.diffs Set of diffing helpers, previously part of vcs +This file was forked by the Kallithea project in July 2014. +Original author and date, and relevant copyright and licensing information is below: :created_on: Dec 4, 2011 :author: marcink -:copyright: (c) 2013 RhodeCode GmbH. +:copyright: (c) 2013 RhodeCode GmbH, and others. :license: GPLv3, see LICENSE.md for more details. """ import re diff --git a/kallithea/lib/exceptions.py b/kallithea/lib/exceptions.py --- a/kallithea/lib/exceptions.py +++ b/kallithea/lib/exceptions.py @@ -17,9 +17,11 @@ kallithea.lib.exceptions Set of custom exceptions used in RhodeCode +This file was forked by the Kallithea project in July 2014. +Original author and date, and relevant copyright and licensing information is below: :created_on: Nov 17, 2010 :author: marcink -:copyright: (c) 2013 RhodeCode GmbH. +:copyright: (c) 2013 RhodeCode GmbH, and others. :license: GPLv3, see LICENSE.md for more details. """ diff --git a/kallithea/lib/hooks.py b/kallithea/lib/hooks.py --- a/kallithea/lib/hooks.py +++ b/kallithea/lib/hooks.py @@ -17,9 +17,11 @@ kallithea.lib.hooks Hooks runned by rhodecode +This file was forked by the Kallithea project in July 2014. +Original author and date, and relevant copyright and licensing information is below: :created_on: Aug 6, 2010 :author: marcink -:copyright: (c) 2013 RhodeCode GmbH. +:copyright: (c) 2013 RhodeCode GmbH, and others. :license: GPLv3, see LICENSE.md for more details. """ 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 @@ -17,9 +17,11 @@ kallithea.lib.indexers.__init__ Whoosh indexing module for RhodeCode +This file was forked by the Kallithea project in July 2014. +Original author and date, and relevant copyright and licensing information is below: :created_on: Aug 17, 2010 :author: marcink -:copyright: (c) 2013 RhodeCode GmbH. +:copyright: (c) 2013 RhodeCode GmbH, and others. :license: GPLv3, see LICENSE.md for more details. """ 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 @@ -17,9 +17,11 @@ kallithea.lib.indexers.daemon A daemon will read from task table and run tasks +This file was forked by the Kallithea project in July 2014. +Original author and date, and relevant copyright and licensing information is below: :created_on: Jan 26, 2010 :author: marcink -:copyright: (c) 2013 RhodeCode GmbH. +:copyright: (c) 2013 RhodeCode GmbH, and others. :license: GPLv3, see LICENSE.md for more details. """ 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 @@ -17,9 +17,11 @@ kallithea.lib.markup_renderer Renderer for markup languages with ability to parse using rst or markdown +This file was forked by the Kallithea project in July 2014. +Original author and date, and relevant copyright and licensing information is below: :created_on: Oct 27, 2011 :author: marcink -:copyright: (c) 2013 RhodeCode GmbH. +:copyright: (c) 2013 RhodeCode GmbH, and others. :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 @@ -17,9 +17,11 @@ kallithea.lib.middleware.errormator middleware to handle errormator publishing of errors +This file was forked by the Kallithea project in July 2014. +Original author and date, and relevant copyright and licensing information is below: :created_on: October 18, 2012 :author: marcink -:copyright: (c) 2013 RhodeCode GmbH. +:copyright: (c) 2013 RhodeCode GmbH, and others. :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 @@ -17,9 +17,11 @@ kallithea.lib.middleware.https_fixup middleware to handle https correctly +This file was forked by the Kallithea project in July 2014. +Original author and date, and relevant copyright and licensing information is below: :created_on: May 23, 2010 :author: marcink -:copyright: (c) 2013 RhodeCode GmbH. +:copyright: (c) 2013 RhodeCode GmbH, and others. :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 @@ -17,9 +17,11 @@ kallithea.lib.middleware.sentry middleware to handle sentry/raven publishing of errors +This file was forked by the Kallithea project in July 2014. +Original author and date, and relevant copyright and licensing information is below: :created_on: September 18, 2012 :author: marcink -:copyright: (c) 2013 RhodeCode GmbH. +:copyright: (c) 2013 RhodeCode GmbH, and others. :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 @@ -18,9 +18,11 @@ kallithea.lib.middleware.simplegit SimpleGit middleware for handling git protocol request (push/clone etc.) It's implemented with basic auth function +This file was forked by the Kallithea project in July 2014. +Original author and date, and relevant copyright and licensing information is below: :created_on: Apr 28, 2010 :author: marcink -:copyright: (c) 2013 RhodeCode GmbH. +:copyright: (c) 2013 RhodeCode GmbH, and others. :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 @@ -18,9 +18,11 @@ kallithea.lib.middleware.simplehg SimpleHG middleware for handling mercurial protocol request (push/clone etc.). It's implemented with basic auth function +This file was forked by the Kallithea project in July 2014. +Original author and date, and relevant copyright and licensing information is below: :created_on: Apr 28, 2010 :author: marcink -:copyright: (c) 2013 RhodeCode GmbH. +:copyright: (c) 2013 RhodeCode GmbH, and others. :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 @@ -17,9 +17,11 @@ kallithea.lib.middleware.wrapper request time mesuring app +This file was forked by the Kallithea project in July 2014. +Original author and date, and relevant copyright and licensing information is below: :created_on: May 23, 2013 :author: marcink -:copyright: (c) 2013 RhodeCode GmbH. +:copyright: (c) 2013 RhodeCode GmbH, and others. :license: GPLv3, see LICENSE.md for more details. """ 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 @@ -18,9 +18,11 @@ kallithea.lib.paster_commands.cache_keys cleanup-keys paster command for RhodeCode +This file was forked by the Kallithea project in July 2014. +Original author and date, and relevant copyright and licensing information is below: :created_on: mar 27, 2013 :author: marcink -:copyright: (c) 2013 RhodeCode GmbH. +:copyright: (c) 2013 RhodeCode GmbH, and others. :license: GPLv3, see LICENSE.md for more details. """ 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 @@ -17,9 +17,11 @@ kallithea.lib.paster_commands.ishell interactive shell paster command for RhodeCode +This file was forked by the Kallithea project in July 2014. +Original author and date, and relevant copyright and licensing information is below: :created_on: Apr 4, 2013 :author: marcink -:copyright: (c) 2013 RhodeCode GmbH. +:copyright: (c) 2013 RhodeCode GmbH, and others. :license: GPLv3, see LICENSE.md for more details. """ 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 @@ -17,9 +17,11 @@ kallithea.lib.paster_commands.make_index make-index paster command for RhodeCode +This file was forked by the Kallithea project in July 2014. +Original author and date, and relevant copyright and licensing information is below: :created_on: Aug 17, 2010 :author: marcink -:copyright: (c) 2013 RhodeCode GmbH. +:copyright: (c) 2013 RhodeCode GmbH, and others. :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 @@ -17,9 +17,11 @@ kallithea.lib.paster_commands.make_rcext make-rcext paster command for RhodeCode +This file was forked by the Kallithea project in July 2014. +Original author and date, and relevant copyright and licensing information is below: :created_on: Mar 6, 2012 :author: marcink -:copyright: (c) 2013 RhodeCode GmbH. +:copyright: (c) 2013 RhodeCode GmbH, and others. :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 @@ -17,9 +17,11 @@ kallithea.lib.paster_commands.make_rcext repo-scan paster command for RhodeCode +This file was forked by the Kallithea project in July 2014. +Original author and date, and relevant copyright and licensing information is below: :created_on: Feb 9, 2013 :author: marcink -:copyright: (c) 2013 RhodeCode GmbH. +:copyright: (c) 2013 RhodeCode GmbH, and others. :license: GPLv3, see LICENSE.md for more details. """ 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 @@ -17,9 +17,11 @@ kallithea.lib.paster_commands.make_rcext uodate-repoinfo paster command for RhodeCode +This file was forked by the Kallithea project in July 2014. +Original author and date, and relevant copyright and licensing information is below: :created_on: Jul 14, 2012 :author: marcink -:copyright: (c) 2013 RhodeCode GmbH. +:copyright: (c) 2013 RhodeCode GmbH, and others. :license: GPLv3, see LICENSE.md for more details. """ 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 @@ -17,9 +17,11 @@ kallithea.lib.rcmail.smtp_mailer Simple smtp mailer used in RhodeCode +This file was forked by the Kallithea project in July 2014. +Original author and date, and relevant copyright and licensing information is below: :created_on: Sep 13, 2010 :author: marcink -:copyright: (c) 2013 RhodeCode GmbH. +:copyright: (c) 2013 RhodeCode GmbH, and others. :license: GPLv3, see LICENSE.md for more details. """ diff --git a/kallithea/lib/utils.py b/kallithea/lib/utils.py --- a/kallithea/lib/utils.py +++ b/kallithea/lib/utils.py @@ -17,9 +17,11 @@ kallithea.lib.utils Utilities library for RhodeCode +This file was forked by the Kallithea project in July 2014. +Original author and date, and relevant copyright and licensing information is below: :created_on: Apr 18, 2010 :author: marcink -:copyright: (c) 2013 RhodeCode GmbH. +:copyright: (c) 2013 RhodeCode GmbH, and others. :license: GPLv3, see LICENSE.md for more details. """ diff --git a/kallithea/lib/utils2.py b/kallithea/lib/utils2.py --- a/kallithea/lib/utils2.py +++ b/kallithea/lib/utils2.py @@ -17,9 +17,11 @@ kallithea.lib.utils Some simple helper functions +This file was forked by the Kallithea project in July 2014. +Original author and date, and relevant copyright and licensing information is below: :created_on: Jan 5, 2011 :author: marcink -:copyright: (c) 2013 RhodeCode GmbH. +:copyright: (c) 2013 RhodeCode GmbH, and others. :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 @@ -17,9 +17,11 @@ kallithea.model.__init__ The application's model objects +This file was forked by the Kallithea project in July 2014. +Original author and date, and relevant copyright and licensing information is below: :created_on: Nov 25, 2010 :author: marcink -:copyright: (c) 2013 RhodeCode GmbH. +:copyright: (c) 2013 RhodeCode GmbH, and others. :license: GPLv3, see LICENSE.md for more details. 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 @@ -17,9 +17,11 @@ kallithea.model.api_key api key model for RhodeCode +This file was forked by the Kallithea project in July 2014. +Original author and date, and relevant copyright and licensing information is below: :created_on: Sep 8, 2013 :author: marcink -:copyright: (c) 2013 RhodeCode GmbH. +:copyright: (c) 2013 RhodeCode GmbH, and others. :license: GPLv3, see LICENSE.md for more details. """ 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 @@ -5,9 +5,11 @@ kallithea.model.changeset_status Changeset status conttroller +This file was forked by the Kallithea project in July 2014. +Original author and date, and relevant copyright and licensing information is below: :created_on: Apr 30, 2012 :author: marcink -:copyright: (c) 2013 RhodeCode GmbH. +:copyright: (c) 2013 RhodeCode GmbH, and others. :license: GPLv3, see LICENSE.md for more details. """ # This program is free software: you can redistribute it and/or modify diff --git a/kallithea/model/comment.py b/kallithea/model/comment.py --- a/kallithea/model/comment.py +++ b/kallithea/model/comment.py @@ -17,9 +17,11 @@ kallithea.model.comment comments model for RhodeCode +This file was forked by the Kallithea project in July 2014. +Original author and date, and relevant copyright and licensing information is below: :created_on: Nov 11, 2011 :author: marcink -:copyright: (c) 2013 RhodeCode GmbH. +:copyright: (c) 2013 RhodeCode GmbH, and others. :license: GPLv3, see LICENSE.md for more details. """ diff --git a/kallithea/model/db.py b/kallithea/model/db.py --- a/kallithea/model/db.py +++ b/kallithea/model/db.py @@ -17,9 +17,11 @@ kallithea.model.db Database Models for RhodeCode +This file was forked by the Kallithea project in July 2014. +Original author and date, and relevant copyright and licensing information is below: :created_on: Apr 08, 2010 :author: marcink -:copyright: (c) 2013 RhodeCode GmbH. +:copyright: (c) 2013 RhodeCode GmbH, and others. :license: GPLv3, see LICENSE.md for more details. """ diff --git a/kallithea/model/gist.py b/kallithea/model/gist.py --- a/kallithea/model/gist.py +++ b/kallithea/model/gist.py @@ -17,9 +17,11 @@ kallithea.model.gist gist model for RhodeCode +This file was forked by the Kallithea project in July 2014. +Original author and date, and relevant copyright and licensing information is below: :created_on: May 9, 2013 :author: marcink -:copyright: (c) 2013 RhodeCode GmbH. +:copyright: (c) 2013 RhodeCode GmbH, and others. :license: GPLv3, see LICENSE.md for more details. """ diff --git a/kallithea/model/notification.py b/kallithea/model/notification.py --- a/kallithea/model/notification.py +++ b/kallithea/model/notification.py @@ -18,9 +18,11 @@ kallithea.model.notification Model for notifications +This file was forked by the Kallithea project in July 2014. +Original author and date, and relevant copyright and licensing information is below: :created_on: Nov 20, 2011 :author: marcink -:copyright: (c) 2013 RhodeCode GmbH. +:copyright: (c) 2013 RhodeCode GmbH, and others. :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 @@ -17,9 +17,11 @@ kallithea.model.permission permissions model for RhodeCode +This file was forked by the Kallithea project in July 2014. +Original author and date, and relevant copyright and licensing information is below: :created_on: Aug 20, 2010 :author: marcink -:copyright: (c) 2013 RhodeCode GmbH. +:copyright: (c) 2013 RhodeCode GmbH, and others. :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 @@ -17,9 +17,11 @@ kallithea.model.pull_request pull request model for RhodeCode +This file was forked by the Kallithea project in July 2014. +Original author and date, and relevant copyright and licensing information is below: :created_on: Jun 6, 2012 :author: marcink -:copyright: (c) 2013 RhodeCode GmbH. +:copyright: (c) 2013 RhodeCode GmbH, and others. :license: GPLv3, see LICENSE.md for more details. """ diff --git a/kallithea/model/repo.py b/kallithea/model/repo.py --- a/kallithea/model/repo.py +++ b/kallithea/model/repo.py @@ -17,9 +17,11 @@ kallithea.model.repo Repository model for rhodecode +This file was forked by the Kallithea project in July 2014. +Original author and date, and relevant copyright and licensing information is below: :created_on: Jun 5, 2010 :author: marcink -:copyright: (c) 2013 RhodeCode GmbH. +:copyright: (c) 2013 RhodeCode GmbH, and others. :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 @@ -17,9 +17,11 @@ kallithea.model.user_group repo group model for RhodeCode +This file was forked by the Kallithea project in July 2014. +Original author and date, and relevant copyright and licensing information is below: :created_on: Jan 25, 2011 :author: marcink -:copyright: (c) 2013 RhodeCode GmbH. +:copyright: (c) 2013 RhodeCode GmbH, and others. :license: GPLv3, see LICENSE.md for more details. """ diff --git a/kallithea/model/repo_permission.py b/kallithea/model/repo_permission.py --- a/kallithea/model/repo_permission.py +++ b/kallithea/model/repo_permission.py @@ -17,6 +17,8 @@ kallithea.model.users_group repository permission model for RhodeCode +This file was forked by the Kallithea project in July 2014. +Original author and date, and relevant copyright and licensing information is below: :created_on: Oct 1, 2011 :author: nvinot, marcink """ diff --git a/kallithea/model/scm.py b/kallithea/model/scm.py --- a/kallithea/model/scm.py +++ b/kallithea/model/scm.py @@ -17,9 +17,11 @@ kallithea.model.scm Scm model for RhodeCode +This file was forked by the Kallithea project in July 2014. +Original author and date, and relevant copyright and licensing information is below: :created_on: Apr 9, 2010 :author: marcink -:copyright: (c) 2013 RhodeCode GmbH. +:copyright: (c) 2013 RhodeCode GmbH, and others. :license: GPLv3, see LICENSE.md for more details. """ diff --git a/kallithea/model/user.py b/kallithea/model/user.py --- a/kallithea/model/user.py +++ b/kallithea/model/user.py @@ -17,9 +17,11 @@ kallithea.model.user users model for RhodeCode +This file was forked by the Kallithea project in July 2014. +Original author and date, and relevant copyright and licensing information is below: :created_on: Apr 9, 2010 :author: marcink -:copyright: (c) 2013 RhodeCode GmbH. +:copyright: (c) 2013 RhodeCode GmbH, and others. :license: GPLv3, see LICENSE.md for more details. """ diff --git a/kallithea/model/user_group.py b/kallithea/model/user_group.py --- a/kallithea/model/user_group.py +++ b/kallithea/model/user_group.py @@ -17,6 +17,8 @@ kallithea.model.users_group user group model for RhodeCode +This file was forked by the Kallithea project in July 2014. +Original author and date, and relevant copyright and licensing information is below: :created_on: Oct 1, 2011 :author: nvinot, marcink """ 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 @@ -17,9 +17,11 @@ kallithea.tests.test_libs Package for testing various lib/helper functions in rhodecode +This file was forked by the Kallithea project in July 2014. +Original author and date, and relevant copyright and licensing information is below: :created_on: Jun 9, 2011 :author: marcink -:copyright: (c) 2013 RhodeCode GmbH. +:copyright: (c) 2013 RhodeCode GmbH, and others. :license: GPLv3, see LICENSE.md for more details. """ 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 @@ -21,9 +21,11 @@ Run using after doing paster serve test. You must have git > 1.8.1 for tests to work fine +This file was forked by the Kallithea project in July 2014. +Original author and date, and relevant copyright and licensing information is below: :created_on: Dec 30, 2010 :author: marcink -:copyright: (c) 2013 RhodeCode GmbH. +:copyright: (c) 2013 RhodeCode GmbH, and others. :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 @@ -17,9 +17,11 @@ kallithea.tests.test_hg_operations Test suite for making push/pull operations +This file was forked by the Kallithea project in July 2014. +Original author and date, and relevant copyright and licensing information is below: :created_on: Dec 30, 2010 :author: marcink -:copyright: (c) 2013 RhodeCode GmbH. +:copyright: (c) 2013 RhodeCode GmbH, and others. :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 @@ -21,9 +21,11 @@ with a watch script that will show memor watch -n1 ./kallithea/tests/mem_watch +This file was forked by the Kallithea project in July 2014. +Original author and date, and relevant copyright and licensing information is below: :created_on: Apr 21, 2010 :author: marcink -:copyright: (c) 2013 RhodeCode GmbH. +:copyright: (c) 2013 RhodeCode GmbH, and others. :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 @@ -17,9 +17,11 @@ kallithea.websetup Weboperations and setup for rhodecode +This file was forked by the Kallithea project in July 2014. +Original author and date, and relevant copyright and licensing information is below: :created_on: Dec 11, 2010 :author: marcink -:copyright: (c) 2013 RhodeCode GmbH. +:copyright: (c) 2013 RhodeCode GmbH, and others. :license: GPLv3, see LICENSE.md for more details. """