changeset 1824:89efedac4e6c beta

2012 copyrights
author Marcin Kuzminski <marcin@python-works.com>
date Wed, 04 Jan 2012 03:50:07 +0200
parents f45e83492484
children d7e92eaa3a61
files rhodecode/__init__.py rhodecode/controllers/admin/admin.py rhodecode/controllers/admin/ldap_settings.py rhodecode/controllers/admin/notifications.py rhodecode/controllers/admin/permissions.py rhodecode/controllers/admin/repos.py rhodecode/controllers/admin/repos_groups.py rhodecode/controllers/admin/settings.py rhodecode/controllers/admin/users.py rhodecode/controllers/admin/users_groups.py rhodecode/controllers/api/__init__.py rhodecode/controllers/api/api.py rhodecode/controllers/bookmarks.py rhodecode/controllers/branches.py rhodecode/controllers/changelog.py rhodecode/controllers/changeset.py rhodecode/controllers/error.py rhodecode/controllers/feed.py rhodecode/controllers/files.py rhodecode/controllers/followers.py rhodecode/controllers/forks.py rhodecode/controllers/home.py rhodecode/controllers/journal.py rhodecode/controllers/login.py rhodecode/controllers/search.py rhodecode/controllers/settings.py rhodecode/controllers/shortlog.py rhodecode/controllers/summary.py rhodecode/controllers/tags.py rhodecode/lib/__init__.py rhodecode/lib/annotate.py rhodecode/lib/auth.py rhodecode/lib/auth_ldap.py rhodecode/lib/backup_manager.py rhodecode/lib/celerylib/__init__.py rhodecode/lib/celerylib/tasks.py rhodecode/lib/compat.py rhodecode/lib/db_manage.py rhodecode/lib/dbmigrate/__init__.py rhodecode/lib/dbmigrate/schema/db_1_2_0.py rhodecode/lib/dbmigrate/schema/db_1_3_0.py rhodecode/lib/dbmigrate/versions/__init__.py rhodecode/lib/diffs.py rhodecode/lib/exceptions.py rhodecode/lib/hooks.py rhodecode/lib/indexers/__init__.py rhodecode/lib/indexers/daemon.py rhodecode/lib/markup_renderer.py rhodecode/lib/middleware/https_fixup.py rhodecode/lib/middleware/simplegit.py rhodecode/lib/middleware/simplehg.py rhodecode/lib/rcmail/smtp_mailer.py rhodecode/lib/utils.py rhodecode/model/__init__.py rhodecode/model/comment.py rhodecode/model/db.py rhodecode/model/notification.py rhodecode/model/permission.py rhodecode/model/repo.py rhodecode/model/repo_permission.py rhodecode/model/repos_group.py rhodecode/model/scm.py rhodecode/model/user.py rhodecode/model/users_group.py rhodecode/tests/_test_concurency.py rhodecode/tests/rhodecode_crawler.py rhodecode/tests/test_hg_operations.py rhodecode/tests/test_libs.py rhodecode/websetup.py
diffstat 69 files changed, 152 insertions(+), 70 deletions(-) [+]
line wrap: on
line diff
--- a/rhodecode/__init__.py	Wed Jan 04 03:30:16 2012 +0200
+++ b/rhodecode/__init__.py	Wed Jan 04 03:50:07 2012 +0200
@@ -8,7 +8,7 @@
 
     :created_on: Apr 9, 2010
     :author: marcink
-    :copyright: (C) 2009-2011 Marcin Kuzminski <marcin@python-works.com>
+    :copyright: (C) 2010-2012 Marcin Kuzminski <marcin@python-works.com>
     :license: GPLv3, see COPYING for more details.
 """
 # This program is free software: you can redistribute it and/or modify
--- a/rhodecode/controllers/admin/admin.py	Wed Jan 04 03:30:16 2012 +0200
+++ b/rhodecode/controllers/admin/admin.py	Wed Jan 04 03:50:07 2012 +0200
@@ -7,7 +7,7 @@
 
     :created_on: Apr 7, 2010
     :author: marcink
-    :copyright: (C) 2009-2011 Marcin Kuzminski <marcin@python-works.com>
+    :copyright: (C) 2010-2012 Marcin Kuzminski <marcin@python-works.com>
     :license: GPLv3, see COPYING for more details.
 """
 # This program is free software: you can redistribute it and/or modify
--- a/rhodecode/controllers/admin/ldap_settings.py	Wed Jan 04 03:30:16 2012 +0200
+++ b/rhodecode/controllers/admin/ldap_settings.py	Wed Jan 04 03:50:07 2012 +0200
@@ -7,7 +7,7 @@
 
     :created_on: Nov 26, 2010
     :author: marcink
-    :copyright: (C) 2009-2011 Marcin Kuzminski <marcin@python-works.com>
+    :copyright: (C) 2010-2012 Marcin Kuzminski <marcin@python-works.com>
     :license: GPLv3, see COPYING for more details.
 """
 # This program is free software: you can redistribute it and/or modify
--- a/rhodecode/controllers/admin/notifications.py	Wed Jan 04 03:30:16 2012 +0200
+++ b/rhodecode/controllers/admin/notifications.py	Wed Jan 04 03:50:07 2012 +0200
@@ -1,3 +1,28 @@
+# -*- coding: utf-8 -*-
+"""
+    rhodecode.controllers.admin.notifications
+    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+
+    notifications controller for RhodeCode
+
+    :created_on: Nov 23, 2010
+    :author: marcink
+    :copyright: (C) 2010-2012 Marcin Kuzminski <marcin@python-works.com>
+    :license: GPLv3, see COPYING 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
+# the Free Software Foundation, either version 3 of the License, or
+# (at your option) any later version.
+#
+# This program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+# GNU General Public License for more details.
+#
+# You should have received a copy of the GNU General Public License
+# along with this program.  If not, see <http://www.gnu.org/licenses/>.
+
 import logging
 import traceback
 
--- a/rhodecode/controllers/admin/permissions.py	Wed Jan 04 03:30:16 2012 +0200
+++ b/rhodecode/controllers/admin/permissions.py	Wed Jan 04 03:50:07 2012 +0200
@@ -7,7 +7,7 @@
 
     :created_on: Apr 27, 2010
     :author: marcink
-    :copyright: (C) 2009-2011 Marcin Kuzminski <marcin@python-works.com>
+    :copyright: (C) 2010-2012 Marcin Kuzminski <marcin@python-works.com>
     :license: GPLv3, see COPYING for more details.
 """
 # This program is free software: you can redistribute it and/or modify
--- a/rhodecode/controllers/admin/repos.py	Wed Jan 04 03:30:16 2012 +0200
+++ b/rhodecode/controllers/admin/repos.py	Wed Jan 04 03:50:07 2012 +0200
@@ -7,7 +7,7 @@
 
     :created_on: Apr 7, 2010
     :author: marcink
-    :copyright: (C) 2009-2011 Marcin Kuzminski <marcin@python-works.com>
+    :copyright: (C) 2010-2012 Marcin Kuzminski <marcin@python-works.com>
     :license: GPLv3, see COPYING for more details.
 """
 # This program is free software: you can redistribute it and/or modify
--- a/rhodecode/controllers/admin/repos_groups.py	Wed Jan 04 03:30:16 2012 +0200
+++ b/rhodecode/controllers/admin/repos_groups.py	Wed Jan 04 03:50:07 2012 +0200
@@ -1,9 +1,33 @@
+# -*- coding: utf-8 -*-
+"""
+    rhodecode.controllers.admin.repos_groups
+    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+
+    repos groups controller for RhodeCode
+
+    :created_on: Mar 23, 2010
+    :author: marcink
+    :copyright: (C) 2010-2012 Marcin Kuzminski <marcin@python-works.com>
+    :license: GPLv3, see COPYING 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
+# the Free Software Foundation, either version 3 of the License, or
+# (at your option) any later version.
+#
+# This program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+# GNU General Public License for more details.
+#
+# You should have received a copy of the GNU General Public License
+# along with this program.  If not, see <http://www.gnu.org/licenses/>.
+
 import logging
 import traceback
 import formencode
 
 from formencode import htmlfill
-from operator import itemgetter
 
 from pylons import request, response, session, tmpl_context as c, url
 from pylons.controllers.util import abort, redirect
--- a/rhodecode/controllers/admin/settings.py	Wed Jan 04 03:30:16 2012 +0200
+++ b/rhodecode/controllers/admin/settings.py	Wed Jan 04 03:50:07 2012 +0200
@@ -7,7 +7,7 @@
 
     :created_on: Jul 14, 2010
     :author: marcink
-    :copyright: (C) 2009-2011 Marcin Kuzminski <marcin@python-works.com>
+    :copyright: (C) 2010-2012 Marcin Kuzminski <marcin@python-works.com>
     :license: GPLv3, see COPYING for more details.
 """
 # This program is free software: you can redistribute it and/or modify
--- a/rhodecode/controllers/admin/users.py	Wed Jan 04 03:30:16 2012 +0200
+++ b/rhodecode/controllers/admin/users.py	Wed Jan 04 03:50:07 2012 +0200
@@ -7,7 +7,7 @@
 
     :created_on: Apr 4, 2010
     :author: marcink
-    :copyright: (C) 2009-2011 Marcin Kuzminski <marcin@python-works.com>
+    :copyright: (C) 2010-2012 Marcin Kuzminski <marcin@python-works.com>
     :license: GPLv3, see COPYING for more details.
 """
 # This program is free software: you can redistribute it and/or modify
@@ -29,7 +29,7 @@
 
 from formencode import htmlfill
 from pylons import request, session, tmpl_context as c, url, config
-from pylons.controllers.util import abort, redirect
+from pylons.controllers.util import redirect
 from pylons.i18n.translation import _
 
 from rhodecode.lib.exceptions import DefaultUserException, \
@@ -38,7 +38,7 @@
 from rhodecode.lib.auth import LoginRequired, HasPermissionAllDecorator
 from rhodecode.lib.base import BaseController, render
 
-from rhodecode.model.db import User, UserRepoToPerm, UserToPerm, Permission
+from rhodecode.model.db import User, Permission
 from rhodecode.model.forms import UserForm
 from rhodecode.model.user import UserModel
 from rhodecode.model.meta import Session
--- a/rhodecode/controllers/admin/users_groups.py	Wed Jan 04 03:30:16 2012 +0200
+++ b/rhodecode/controllers/admin/users_groups.py	Wed Jan 04 03:50:07 2012 +0200
@@ -7,7 +7,7 @@
 
     :created_on: Jan 25, 2011
     :author: marcink
-    :copyright: (C) 2009-2011 Marcin Kuzminski <marcin@python-works.com>
+    :copyright: (C) 2010-2012 Marcin Kuzminski <marcin@python-works.com>
     :license: GPLv3, see COPYING for more details.
 """
 # This program is free software: you can redistribute it and/or modify
--- a/rhodecode/controllers/api/__init__.py	Wed Jan 04 03:30:16 2012 +0200
+++ b/rhodecode/controllers/api/__init__.py	Wed Jan 04 03:50:07 2012 +0200
@@ -7,7 +7,7 @@
 
     :created_on: Aug 20, 2011
     :author: marcink
-    :copyright: (C) 2009-2010 Marcin Kuzminski <marcin@python-works.com>
+    :copyright: (C) 2011-2012 Marcin Kuzminski <marcin@python-works.com>
     :license: GPLv3, see COPYING for more details.
 """
 # This program is free software; you can redistribute it and/or
--- a/rhodecode/controllers/api/api.py	Wed Jan 04 03:30:16 2012 +0200
+++ b/rhodecode/controllers/api/api.py	Wed Jan 04 03:50:07 2012 +0200
@@ -1,3 +1,30 @@
+# -*- coding: utf-8 -*-
+"""
+    rhodecode.controllers.api
+    ~~~~~~~~~~~~~~~~~~~~~~~~~
+
+    API controller for RhodeCode
+
+    :created_on: Aug 20, 2011
+    :author: marcink
+    :copyright: (C) 2011-2012 Marcin Kuzminski <marcin@python-works.com>
+    :license: GPLv3, see COPYING 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 the Free Software Foundation; version 2
+# of the License or (at your opinion) any later version of the license.
+#
+# This program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+# GNU General Public License for more details.
+#
+# You should have received a copy of the GNU General Public License
+# along with this program; if not, write to the Free Software
+# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
+# MA  02110-1301, USA.
+
 import traceback
 import logging
 
--- a/rhodecode/controllers/bookmarks.py	Wed Jan 04 03:30:16 2012 +0200
+++ b/rhodecode/controllers/bookmarks.py	Wed Jan 04 03:50:07 2012 +0200
@@ -7,7 +7,7 @@
 
     :created_on: Dec 1, 2011
     :author: marcink
-    :copyright: (C) 2009-2011 Marcin Kuzminski <marcin@python-works.com>
+    :copyright: (C) 2011-2012 Marcin Kuzminski <marcin@python-works.com>
     :license: GPLv3, see COPYING for more details.
 """
 # This program is free software: you can redistribute it and/or modify
--- a/rhodecode/controllers/branches.py	Wed Jan 04 03:30:16 2012 +0200
+++ b/rhodecode/controllers/branches.py	Wed Jan 04 03:50:07 2012 +0200
@@ -7,7 +7,7 @@
 
     :created_on: Apr 21, 2010
     :author: marcink
-    :copyright: (C) 2009-2011 Marcin Kuzminski <marcin@python-works.com>
+    :copyright: (C) 2010-2012 Marcin Kuzminski <marcin@python-works.com>
     :license: GPLv3, see COPYING for more details.
 """
 # This program is free software: you can redistribute it and/or modify
--- a/rhodecode/controllers/changelog.py	Wed Jan 04 03:30:16 2012 +0200
+++ b/rhodecode/controllers/changelog.py	Wed Jan 04 03:50:07 2012 +0200
@@ -7,7 +7,7 @@
 
     :created_on: Apr 21, 2010
     :author: marcink
-    :copyright: (C) 2009-2011 Marcin Kuzminski <marcin@python-works.com>
+    :copyright: (C) 2010-2012 Marcin Kuzminski <marcin@python-works.com>
     :license: GPLv3, see COPYING for more details.
 """
 # This program is free software: you can redistribute it and/or modify
--- a/rhodecode/controllers/changeset.py	Wed Jan 04 03:30:16 2012 +0200
+++ b/rhodecode/controllers/changeset.py	Wed Jan 04 03:50:07 2012 +0200
@@ -8,7 +8,7 @@
 
     :created_on: Apr 25, 2010
     :author: marcink
-    :copyright: (C) 2009-2011 Marcin Kuzminski <marcin@python-works.com>
+    :copyright: (C) 2010-2012 Marcin Kuzminski <marcin@python-works.com>
     :license: GPLv3, see COPYING for more details.
 """
 # This program is free software: you can redistribute it and/or modify
--- a/rhodecode/controllers/error.py	Wed Jan 04 03:30:16 2012 +0200
+++ b/rhodecode/controllers/error.py	Wed Jan 04 03:50:07 2012 +0200
@@ -7,7 +7,7 @@
 
     :created_on: Dec 8, 2010
     :author: marcink
-    :copyright: (C) 2009-2011 Marcin Kuzminski <marcin@python-works.com>
+    :copyright: (C) 2010-2012 Marcin Kuzminski <marcin@python-works.com>
     :license: GPLv3, see COPYING for more details.
 """
 # This program is free software: you can redistribute it and/or modify
--- a/rhodecode/controllers/feed.py	Wed Jan 04 03:30:16 2012 +0200
+++ b/rhodecode/controllers/feed.py	Wed Jan 04 03:50:07 2012 +0200
@@ -7,7 +7,7 @@
 
     :created_on: Apr 23, 2010
     :author: marcink
-    :copyright: (C) 2009-2011 Marcin Kuzminski <marcin@python-works.com>
+    :copyright: (C) 2010-2012 Marcin Kuzminski <marcin@python-works.com>
     :license: GPLv3, see COPYING for more details.
 """
 # This program is free software: you can redistribute it and/or modify
--- a/rhodecode/controllers/files.py	Wed Jan 04 03:30:16 2012 +0200
+++ b/rhodecode/controllers/files.py	Wed Jan 04 03:50:07 2012 +0200
@@ -7,7 +7,7 @@
 
     :created_on: Apr 21, 2010
     :author: marcink
-    :copyright: (C) 2009-2011 Marcin Kuzminski <marcin@python-works.com>
+    :copyright: (C) 2010-2012 Marcin Kuzminski <marcin@python-works.com>
     :license: GPLv3, see COPYING for more details.
 """
 # This program is free software: you can redistribute it and/or modify
--- a/rhodecode/controllers/followers.py	Wed Jan 04 03:30:16 2012 +0200
+++ b/rhodecode/controllers/followers.py	Wed Jan 04 03:50:07 2012 +0200
@@ -7,7 +7,7 @@
 
     :created_on: Apr 23, 2011
     :author: marcink
-    :copyright: (C) 2009-2011 Marcin Kuzminski <marcin@python-works.com>
+    :copyright: (C) 2011-2012 Marcin Kuzminski <marcin@python-works.com>
     :license: GPLv3, see COPYING for more details.
 """
 # This program is free software: you can redistribute it and/or modify
--- a/rhodecode/controllers/forks.py	Wed Jan 04 03:30:16 2012 +0200
+++ b/rhodecode/controllers/forks.py	Wed Jan 04 03:50:07 2012 +0200
@@ -7,7 +7,7 @@
 
     :created_on: Apr 23, 2011
     :author: marcink
-    :copyright: (C) 2009-2011 Marcin Kuzminski <marcin@python-works.com>
+    :copyright: (C) 2011-2012 Marcin Kuzminski <marcin@python-works.com>
     :license: GPLv3, see COPYING for more details.
 """
 # This program is free software: you can redistribute it and/or modify
--- a/rhodecode/controllers/home.py	Wed Jan 04 03:30:16 2012 +0200
+++ b/rhodecode/controllers/home.py	Wed Jan 04 03:50:07 2012 +0200
@@ -7,7 +7,7 @@
 
     :created_on: Feb 18, 2010
     :author: marcink
-    :copyright: (C) 2009-2011 Marcin Kuzminski <marcin@python-works.com>
+    :copyright: (C) 2010-2012 Marcin Kuzminski <marcin@python-works.com>
     :license: GPLv3, see COPYING for more details.
 """
 # This program is free software: you can redistribute it and/or modify
--- a/rhodecode/controllers/journal.py	Wed Jan 04 03:30:16 2012 +0200
+++ b/rhodecode/controllers/journal.py	Wed Jan 04 03:50:07 2012 +0200
@@ -7,7 +7,7 @@
 
     :created_on: Nov 21, 2010
     :author: marcink
-    :copyright: (C) 2009-2011 Marcin Kuzminski <marcin@python-works.com>
+    :copyright: (C) 2010-2012 Marcin Kuzminski <marcin@python-works.com>
     :license: GPLv3, see COPYING for more details.
 """
 # This program is free software: you can redistribute it and/or modify
--- a/rhodecode/controllers/login.py	Wed Jan 04 03:30:16 2012 +0200
+++ b/rhodecode/controllers/login.py	Wed Jan 04 03:50:07 2012 +0200
@@ -7,7 +7,7 @@
 
     :created_on: Apr 22, 2010
     :author: marcink
-    :copyright: (C) 2009-2011 Marcin Kuzminski <marcin@python-works.com>
+    :copyright: (C) 2010-2012 Marcin Kuzminski <marcin@python-works.com>
     :license: GPLv3, see COPYING for more details.
 """
 # This program is free software: you can redistribute it and/or modify
--- a/rhodecode/controllers/search.py	Wed Jan 04 03:30:16 2012 +0200
+++ b/rhodecode/controllers/search.py	Wed Jan 04 03:50:07 2012 +0200
@@ -7,7 +7,7 @@
 
     :created_on: Aug 7, 2010
     :author: marcink
-    :copyright: (C) 2009-2011 Marcin Kuzminski <marcin@python-works.com>
+    :copyright: (C) 2010-2012 Marcin Kuzminski <marcin@python-works.com>
     :license: GPLv3, see COPYING for more details.
 """
 # This program is free software: you can redistribute it and/or modify
--- a/rhodecode/controllers/settings.py	Wed Jan 04 03:30:16 2012 +0200
+++ b/rhodecode/controllers/settings.py	Wed Jan 04 03:50:07 2012 +0200
@@ -7,7 +7,7 @@
 
     :created_on: Jun 30, 2010
     :author: marcink
-    :copyright: (C) 2009-2011 Marcin Kuzminski <marcin@python-works.com>
+    :copyright: (C) 2010-2012 Marcin Kuzminski <marcin@python-works.com>
     :license: GPLv3, see COPYING for more details.
 """
 # This program is free software: you can redistribute it and/or modify
--- a/rhodecode/controllers/shortlog.py	Wed Jan 04 03:30:16 2012 +0200
+++ b/rhodecode/controllers/shortlog.py	Wed Jan 04 03:50:07 2012 +0200
@@ -7,7 +7,7 @@
 
     :created_on: Apr 18, 2010
     :author: marcink
-    :copyright: (C) 2009-2011 Marcin Kuzminski <marcin@python-works.com>
+    :copyright: (C) 2010-2012 Marcin Kuzminski <marcin@python-works.com>
     :license: GPLv3, see COPYING for more details.
 """
 # This program is free software: you can redistribute it and/or modify
--- a/rhodecode/controllers/summary.py	Wed Jan 04 03:30:16 2012 +0200
+++ b/rhodecode/controllers/summary.py	Wed Jan 04 03:50:07 2012 +0200
@@ -7,7 +7,7 @@
 
     :created_on: Apr 18, 2010
     :author: marcink
-    :copyright: (C) 2009-2011 Marcin Kuzminski <marcin@python-works.com>
+    :copyright: (C) 2010-2012 Marcin Kuzminski <marcin@python-works.com>
     :license: GPLv3, see COPYING for more details.
 """
 # This program is free software: you can redistribute it and/or modify
--- a/rhodecode/controllers/tags.py	Wed Jan 04 03:30:16 2012 +0200
+++ b/rhodecode/controllers/tags.py	Wed Jan 04 03:50:07 2012 +0200
@@ -7,7 +7,7 @@
 
     :created_on: Apr 21, 2010
     :author: marcink
-    :copyright: (C) 2009-2011 Marcin Kuzminski <marcin@python-works.com>
+    :copyright: (C) 2010-2012 Marcin Kuzminski <marcin@python-works.com>
     :license: GPLv3, see COPYING for more details.
 """
 # This program is free software: you can redistribute it and/or modify
--- a/rhodecode/lib/__init__.py	Wed Jan 04 03:30:16 2012 +0200
+++ b/rhodecode/lib/__init__.py	Wed Jan 04 03:50:07 2012 +0200
@@ -7,7 +7,7 @@
 
     :created_on: Jan 5, 2011
     :author: marcink
-    :copyright: (C) 2009-2010 Marcin Kuzminski <marcin@python-works.com>
+    :copyright: (C) 2011-2012 Marcin Kuzminski <marcin@python-works.com>
     :license: GPLv3, see COPYING for more details.
 """
 # This program is free software: you can redistribute it and/or modify
--- a/rhodecode/lib/annotate.py	Wed Jan 04 03:30:16 2012 +0200
+++ b/rhodecode/lib/annotate.py	Wed Jan 04 03:50:07 2012 +0200
@@ -7,7 +7,7 @@
 
     :created_on: Dec 4, 2011
     :author: marcink
-    :copyright: (C) 2009-2011 Marcin Kuzminski <marcin@python-works.com>
+    :copyright: (C) 2011-2012 Marcin Kuzminski <marcin@python-works.com>
     :license: GPLv3, see COPYING for more details.
 """
 
--- a/rhodecode/lib/auth.py	Wed Jan 04 03:30:16 2012 +0200
+++ b/rhodecode/lib/auth.py	Wed Jan 04 03:50:07 2012 +0200
@@ -6,7 +6,8 @@
     authentication and permission libraries
 
     :created_on: Apr 4, 2010
-    :copyright: (C) 2009-2011 Marcin Kuzminski <marcin@python-works.com>
+    :author: marcink
+    :copyright: (C) 2010-2012 Marcin Kuzminski <marcin@python-works.com>
     :license: GPLv3, see COPYING for more details.
 """
 # This program is free software: you can redistribute it and/or modify
--- a/rhodecode/lib/auth_ldap.py	Wed Jan 04 03:30:16 2012 +0200
+++ b/rhodecode/lib/auth_ldap.py	Wed Jan 04 03:50:07 2012 +0200
@@ -7,7 +7,7 @@
 
     :created_on: Created on Nov 17, 2010
     :author: marcink
-    :copyright: (C) 2009-2011 Marcin Kuzminski <marcin@python-works.com>
+    :copyright: (C) 2010-2012 Marcin Kuzminski <marcin@python-works.com>
     :license: GPLv3, see COPYING for more details.
 """
 # This program is free software: you can redistribute it and/or modify
--- a/rhodecode/lib/backup_manager.py	Wed Jan 04 03:30:16 2012 +0200
+++ b/rhodecode/lib/backup_manager.py	Wed Jan 04 03:50:07 2012 +0200
@@ -7,7 +7,8 @@
     repositories and send it to backup server using RSA key via ssh.
 
     :created_on: Feb 28, 2010
-    :copyright: (C) 2009-2011 Marcin Kuzminski <marcin@python-works.com>
+    :author: marcink
+    :copyright: (C) 2010-2012 Marcin Kuzminski <marcin@python-works.com>
     :license: GPLv3, see COPYING for more details.
 """
 # This program is free software: you can redistribute it and/or modify
--- a/rhodecode/lib/celerylib/__init__.py	Wed Jan 04 03:30:16 2012 +0200
+++ b/rhodecode/lib/celerylib/__init__.py	Wed Jan 04 03:50:07 2012 +0200
@@ -7,7 +7,7 @@
 
     :created_on: Nov 27, 2010
     :author: marcink
-    :copyright: (C) 2009-2011 Marcin Kuzminski <marcin@python-works.com>
+    :copyright: (C) 2010-2012 Marcin Kuzminski <marcin@python-works.com>
     :license: GPLv3, see COPYING for more details.
 """
 # This program is free software: you can redistribute it and/or modify
--- a/rhodecode/lib/celerylib/tasks.py	Wed Jan 04 03:30:16 2012 +0200
+++ b/rhodecode/lib/celerylib/tasks.py	Wed Jan 04 03:50:07 2012 +0200
@@ -8,7 +8,7 @@
 
     :created_on: Oct 6, 2010
     :author: marcink
-    :copyright: (C) 2009-2011 Marcin Kuzminski <marcin@python-works.com>
+    :copyright: (C) 2010-2012 Marcin Kuzminski <marcin@python-works.com>
     :license: GPLv3, see COPYING for more details.
 """
 # This program is free software: you can redistribute it and/or modify
--- a/rhodecode/lib/compat.py	Wed Jan 04 03:30:16 2012 +0200
+++ b/rhodecode/lib/compat.py	Wed Jan 04 03:50:07 2012 +0200
@@ -8,7 +8,7 @@
 
     :created_on: Oct 7, 2011
     :author: marcink
-    :copyright: (C) 2009-2010 Marcin Kuzminski <marcin@python-works.com>
+    :copyright: (C) 2010-2010 Marcin Kuzminski <marcin@python-works.com>
     :license: GPLv3, see COPYING for more details.
 """
 # This program is free software: you can redistribute it and/or modify
--- a/rhodecode/lib/db_manage.py	Wed Jan 04 03:30:16 2012 +0200
+++ b/rhodecode/lib/db_manage.py	Wed Jan 04 03:50:07 2012 +0200
@@ -8,7 +8,7 @@
 
     :created_on: Apr 10, 2010
     :author: marcink
-    :copyright: (C) 2009-2011 Marcin Kuzminski <marcin@python-works.com>
+    :copyright: (C) 2010-2012 Marcin Kuzminski <marcin@python-works.com>
     :license: GPLv3, see COPYING for more details.
 """
 # This program is free software: you can redistribute it and/or modify
--- a/rhodecode/lib/dbmigrate/__init__.py	Wed Jan 04 03:30:16 2012 +0200
+++ b/rhodecode/lib/dbmigrate/__init__.py	Wed Jan 04 03:50:07 2012 +0200
@@ -7,7 +7,7 @@
 
     :created_on: Dec 11, 2010
     :author: marcink
-    :copyright: (C) 2009-2011 Marcin Kuzminski <marcin@python-works.com>
+    :copyright: (C) 2010-2012 Marcin Kuzminski <marcin@python-works.com>
     :license: GPLv3, see COPYING for more details.
 """
 # This program is free software: you can redistribute it and/or modify
--- a/rhodecode/lib/dbmigrate/schema/db_1_2_0.py	Wed Jan 04 03:30:16 2012 +0200
+++ b/rhodecode/lib/dbmigrate/schema/db_1_2_0.py	Wed Jan 04 03:50:07 2012 +0200
@@ -7,7 +7,7 @@
 
     :created_on: Apr 08, 2010
     :author: marcink
-    :copyright: (C) 2009-2011 Marcin Kuzminski <marcin@python-works.com>
+    :copyright: (C) 2010-2012 Marcin Kuzminski <marcin@python-works.com>
     :license: GPLv3, see COPYING for more details.
 """
 # This program is free software: you can redistribute it and/or modify
--- a/rhodecode/lib/dbmigrate/schema/db_1_3_0.py	Wed Jan 04 03:30:16 2012 +0200
+++ b/rhodecode/lib/dbmigrate/schema/db_1_3_0.py	Wed Jan 04 03:50:07 2012 +0200
@@ -7,7 +7,7 @@
 
     :created_on: Apr 08, 2010
     :author: marcink
-    :copyright: (C) 2009-2011 Marcin Kuzminski <marcin@python-works.com>
+    :copyright: (C) 2010-2012 Marcin Kuzminski <marcin@python-works.com>
     :license: GPLv3, see COPYING for more details.
 """
 # This program is free software: you can redistribute it and/or modify
--- a/rhodecode/lib/dbmigrate/versions/__init__.py	Wed Jan 04 03:30:16 2012 +0200
+++ b/rhodecode/lib/dbmigrate/versions/__init__.py	Wed Jan 04 03:50:07 2012 +0200
@@ -7,7 +7,7 @@
 
     :created_on: Dec 11, 2010
     :author: marcink
-    :copyright: (C) 2009-2011 Marcin Kuzminski <marcin@python-works.com>
+    :copyright: (C) 2010-2012 Marcin Kuzminski <marcin@python-works.com>
     :license: GPLv3, see COPYING for more details.
 """
 # This program is free software: you can redistribute it and/or modify
--- a/rhodecode/lib/diffs.py	Wed Jan 04 03:30:16 2012 +0200
+++ b/rhodecode/lib/diffs.py	Wed Jan 04 03:50:07 2012 +0200
@@ -8,7 +8,7 @@
 
     :created_on: Dec 4, 2011
     :author: marcink
-    :copyright: (C) 2009-2011 Marcin Kuzminski <marcin@python-works.com>
+    :copyright: (C) 2010-2012 Marcin Kuzminski <marcin@python-works.com>
     :original copyright: 2007-2008 by Armin Ronacher
     :license: GPLv3, see COPYING for more details.
 """
--- a/rhodecode/lib/exceptions.py	Wed Jan 04 03:30:16 2012 +0200
+++ b/rhodecode/lib/exceptions.py	Wed Jan 04 03:50:07 2012 +0200
@@ -6,7 +6,8 @@
     Set of custom exceptions used in RhodeCode
 
     :created_on: Nov 17, 2010
-    :copyright: (C) 2009-2011 Marcin Kuzminski <marcin@python-works.com>
+    :author: marcink
+    :copyright: (C) 2010-2012 Marcin Kuzminski <marcin@python-works.com>
     :license: GPLv3, see COPYING for more details.
 """
 # This program is free software: you can redistribute it and/or modify
@@ -46,5 +47,6 @@
 class UserOwnsReposException(Exception):
     pass
 
+
 class UsersGroupsAssignedException(Exception):
     pass
--- a/rhodecode/lib/hooks.py	Wed Jan 04 03:30:16 2012 +0200
+++ b/rhodecode/lib/hooks.py	Wed Jan 04 03:50:07 2012 +0200
@@ -7,7 +7,7 @@
 
     :created_on: Aug 6, 2010
     :author: marcink
-    :copyright: (C) 2009-2011 Marcin Kuzminski <marcin@python-works.com>
+    :copyright: (C) 2010-2012 Marcin Kuzminski <marcin@python-works.com>
     :license: GPLv3, see COPYING for more details.
 """
 # This program is free software: you can redistribute it and/or modify
--- a/rhodecode/lib/indexers/__init__.py	Wed Jan 04 03:30:16 2012 +0200
+++ b/rhodecode/lib/indexers/__init__.py	Wed Jan 04 03:50:07 2012 +0200
@@ -7,7 +7,7 @@
 
     :created_on: Aug 17, 2010
     :author: marcink
-    :copyright: (C) 2009-2010 Marcin Kuzminski <marcin@python-works.com>
+    :copyright: (C) 2010-2012 Marcin Kuzminski <marcin@python-works.com>
     :license: GPLv3, see COPYING for more details.
 """
 # This program is free software: you can redistribute it and/or modify
--- a/rhodecode/lib/indexers/daemon.py	Wed Jan 04 03:30:16 2012 +0200
+++ b/rhodecode/lib/indexers/daemon.py	Wed Jan 04 03:50:07 2012 +0200
@@ -7,7 +7,7 @@
 
     :created_on: Jan 26, 2010
     :author: marcink
-    :copyright: (C) 2009-2011 Marcin Kuzminski <marcin@python-works.com>
+    :copyright: (C) 2010-2012 Marcin Kuzminski <marcin@python-works.com>
     :license: GPLv3, see COPYING for more details.
 """
 # This program is free software: you can redistribute it and/or modify
--- a/rhodecode/lib/markup_renderer.py	Wed Jan 04 03:30:16 2012 +0200
+++ b/rhodecode/lib/markup_renderer.py	Wed Jan 04 03:50:07 2012 +0200
@@ -8,7 +8,7 @@
 
     :created_on: Oct 27, 2011
     :author: marcink
-    :copyright: (C) 2009-2011 Marcin Kuzminski <marcin@python-works.com>
+    :copyright: (C) 2011-2012 Marcin Kuzminski <marcin@python-works.com>
     :license: GPLv3, see COPYING for more details.
 """
 # This program is free software: you can redistribute it and/or modify
--- a/rhodecode/lib/middleware/https_fixup.py	Wed Jan 04 03:30:16 2012 +0200
+++ b/rhodecode/lib/middleware/https_fixup.py	Wed Jan 04 03:50:07 2012 +0200
@@ -7,7 +7,7 @@
 
     :created_on: May 23, 2010
     :author: marcink
-    :copyright: (C) 2009-2011 Marcin Kuzminski <marcin@python-works.com>
+    :copyright: (C) 2010-2012 Marcin Kuzminski <marcin@python-works.com>
     :license: GPLv3, see COPYING for more details.
 """
 # This program is free software: you can redistribute it and/or modify
--- a/rhodecode/lib/middleware/simplegit.py	Wed Jan 04 03:30:16 2012 +0200
+++ b/rhodecode/lib/middleware/simplegit.py	Wed Jan 04 03:50:07 2012 +0200
@@ -8,7 +8,7 @@
 
     :created_on: Apr 28, 2010
     :author: marcink
-    :copyright: (C) 2009-2010 Marcin Kuzminski <marcin@python-works.com>
+    :copyright: (C) 2010-2012 Marcin Kuzminski <marcin@python-works.com>
     :license: GPLv3, see COPYING for more details.
 """
 # This program is free software: you can redistribute it and/or modify
--- a/rhodecode/lib/middleware/simplehg.py	Wed Jan 04 03:30:16 2012 +0200
+++ b/rhodecode/lib/middleware/simplehg.py	Wed Jan 04 03:50:07 2012 +0200
@@ -8,7 +8,7 @@
 
     :created_on: Apr 28, 2010
     :author: marcink
-    :copyright: (C) 2009-2010 Marcin Kuzminski <marcin@python-works.com>
+    :copyright: (C) 2010-2012 Marcin Kuzminski <marcin@python-works.com>
     :license: GPLv3, see COPYING for more details.
 """
 # This program is free software: you can redistribute it and/or modify
--- a/rhodecode/lib/rcmail/smtp_mailer.py	Wed Jan 04 03:30:16 2012 +0200
+++ b/rhodecode/lib/rcmail/smtp_mailer.py	Wed Jan 04 03:50:07 2012 +0200
@@ -6,7 +6,7 @@
     Simple smtp mailer used in RhodeCode
 
     :created_on: Sep 13, 2010
-    :copyright: (C) 2009-2011 Marcin Kuzminski <marcin@python-works.com>
+    :copyright: (C) 2010-2012 Marcin Kuzminski <marcin@python-works.com>
     :license: GPLv3, see COPYING for more details.
 """
 # This program is free software: you can redistribute it and/or modify
@@ -27,6 +27,7 @@
 from socket import sslerror
 from rhodecode.lib.rcmail.message import Message
 
+
 class SmtpMailer(object):
     """SMTP mailer class
 
@@ -53,7 +54,6 @@
         self.debug = debug
         self.auth = smtp_auth
 
-
     def send(self, recipients=[], subject='', body='', html='',
              attachment_files=None):
 
--- a/rhodecode/lib/utils.py	Wed Jan 04 03:30:16 2012 +0200
+++ b/rhodecode/lib/utils.py	Wed Jan 04 03:50:07 2012 +0200
@@ -7,7 +7,7 @@
 
     :created_on: Apr 18, 2010
     :author: marcink
-    :copyright: (C) 2009-2011 Marcin Kuzminski <marcin@python-works.com>
+    :copyright: (C) 2010-2012 Marcin Kuzminski <marcin@python-works.com>
     :license: GPLv3, see COPYING for more details.
 """
 # This program is free software: you can redistribute it and/or modify
--- a/rhodecode/model/__init__.py	Wed Jan 04 03:30:16 2012 +0200
+++ b/rhodecode/model/__init__.py	Wed Jan 04 03:50:07 2012 +0200
@@ -7,7 +7,7 @@
 
     :created_on: Nov 25, 2010
     :author: marcink
-    :copyright: (C) 2009-2011 Marcin Kuzminski <marcin@python-works.com>
+    :copyright: (C) 2010-2012 Marcin Kuzminski <marcin@python-works.com>
     :license: GPLv3, see COPYING for more details.
 
 
--- a/rhodecode/model/comment.py	Wed Jan 04 03:30:16 2012 +0200
+++ b/rhodecode/model/comment.py	Wed Jan 04 03:50:07 2012 +0200
@@ -7,7 +7,7 @@
 
     :created_on: Nov 11, 2011
     :author: marcink
-    :copyright: (C) 2009-2011 Marcin Kuzminski <marcin@python-works.com>
+    :copyright: (C) 2011-2012 Marcin Kuzminski <marcin@python-works.com>
     :license: GPLv3, see COPYING for more details.
 """
 # This program is free software: you can redistribute it and/or modify
--- a/rhodecode/model/db.py	Wed Jan 04 03:30:16 2012 +0200
+++ b/rhodecode/model/db.py	Wed Jan 04 03:50:07 2012 +0200
@@ -7,7 +7,7 @@
 
     :created_on: Apr 08, 2010
     :author: marcink
-    :copyright: (C) 2009-2011 Marcin Kuzminski <marcin@python-works.com>
+    :copyright: (C) 2010-2012 Marcin Kuzminski <marcin@python-works.com>
     :license: GPLv3, see COPYING for more details.
 """
 # This program is free software: you can redistribute it and/or modify
--- a/rhodecode/model/notification.py	Wed Jan 04 03:30:16 2012 +0200
+++ b/rhodecode/model/notification.py	Wed Jan 04 03:50:07 2012 +0200
@@ -8,7 +8,7 @@
 
     :created_on: Nov 20, 2011
     :author: marcink
-    :copyright: (C) 2009-2011 Marcin Kuzminski <marcin@python-works.com>
+    :copyright: (C) 2010-2012 Marcin Kuzminski <marcin@python-works.com>
     :license: GPLv3, see COPYING for more details.
 """
 # This program is free software: you can redistribute it and/or modify
--- a/rhodecode/model/permission.py	Wed Jan 04 03:30:16 2012 +0200
+++ b/rhodecode/model/permission.py	Wed Jan 04 03:50:07 2012 +0200
@@ -7,7 +7,7 @@
 
     :created_on: Aug 20, 2010
     :author: marcink
-    :copyright: (C) 2009-2011 Marcin Kuzminski <marcin@python-works.com>
+    :copyright: (C) 2010-2012 Marcin Kuzminski <marcin@python-works.com>
     :license: GPLv3, see COPYING for more details.
 """
 # This program is free software: you can redistribute it and/or modify
--- a/rhodecode/model/repo.py	Wed Jan 04 03:30:16 2012 +0200
+++ b/rhodecode/model/repo.py	Wed Jan 04 03:50:07 2012 +0200
@@ -7,7 +7,7 @@
 
     :created_on: Jun 5, 2010
     :author: marcink
-    :copyright: (C) 2009-2011 Marcin Kuzminski <marcin@python-works.com>
+    :copyright: (C) 2010-2012 Marcin Kuzminski <marcin@python-works.com>
     :license: GPLv3, see COPYING for more details.
 """
 # This program is free software: you can redistribute it and/or modify
--- a/rhodecode/model/repo_permission.py	Wed Jan 04 03:30:16 2012 +0200
+++ b/rhodecode/model/repo_permission.py	Wed Jan 04 03:50:07 2012 +0200
@@ -8,7 +8,7 @@
     :created_on: Oct 1, 2011
     :author: nvinot, marcink
     :copyright: (C) 2011-2011 Nicolas Vinot <aeris@imirhil.fr>
-    :copyright: (C) 2009-2011 Marcin Kuzminski <marcin@python-works.com>
+    :copyright: (C) 2011-2012 Marcin Kuzminski <marcin@python-works.com>
     :license: GPLv3, see COPYING for more details.
 """
 # This program is free software: you can redistribute it and/or modify
--- a/rhodecode/model/repos_group.py	Wed Jan 04 03:30:16 2012 +0200
+++ b/rhodecode/model/repos_group.py	Wed Jan 04 03:50:07 2012 +0200
@@ -7,7 +7,7 @@
 
     :created_on: Jan 25, 2011
     :author: marcink
-    :copyright: (C) 2009-2011 Marcin Kuzminski <marcin@python-works.com>
+    :copyright: (C) 2011-2012 Marcin Kuzminski <marcin@python-works.com>
     :license: GPLv3, see COPYING for more details.
 """
 # This program is free software: you can redistribute it and/or modify
--- a/rhodecode/model/scm.py	Wed Jan 04 03:30:16 2012 +0200
+++ b/rhodecode/model/scm.py	Wed Jan 04 03:50:07 2012 +0200
@@ -7,7 +7,7 @@
 
     :created_on: Apr 9, 2010
     :author: marcink
-    :copyright: (C) 2009-2011 Marcin Kuzminski <marcin@python-works.com>
+    :copyright: (C) 2010-2012 Marcin Kuzminski <marcin@python-works.com>
     :license: GPLv3, see COPYING for more details.
 """
 # This program is free software: you can redistribute it and/or modify
--- a/rhodecode/model/user.py	Wed Jan 04 03:30:16 2012 +0200
+++ b/rhodecode/model/user.py	Wed Jan 04 03:50:07 2012 +0200
@@ -7,7 +7,7 @@
 
     :created_on: Apr 9, 2010
     :author: marcink
-    :copyright: (C) 2009-2011 Marcin Kuzminski <marcin@python-works.com>
+    :copyright: (C) 2010-2012 Marcin Kuzminski <marcin@python-works.com>
     :license: GPLv3, see COPYING for more details.
 """
 # This program is free software: you can redistribute it and/or modify
--- a/rhodecode/model/users_group.py	Wed Jan 04 03:30:16 2012 +0200
+++ b/rhodecode/model/users_group.py	Wed Jan 04 03:50:07 2012 +0200
@@ -8,6 +8,7 @@
     :created_on: Oct 1, 2011
     :author: nvinot
     :copyright: (C) 2011-2011 Nicolas Vinot <aeris@imirhil.fr>
+    :copyright: (C) 2010-2012 Marcin Kuzminski <marcin@python-works.com>
     :license: GPLv3, see COPYING for more details.
 """
 # This program is free software: you can redistribute it and/or modify
@@ -137,7 +138,6 @@
         new.permission = perm
         self.sa.add(new)
 
-
     def revoke_perm(self, users_group, perm):
         if not isinstance(perm, Permission):
             raise Exception('perm needs to be an instance of Permission class')
--- a/rhodecode/tests/_test_concurency.py	Wed Jan 04 03:30:16 2012 +0200
+++ b/rhodecode/tests/_test_concurency.py	Wed Jan 04 03:50:07 2012 +0200
@@ -6,7 +6,8 @@
     Test suite for making push/pull operations
 
     :created_on: Dec 30, 2010
-    :copyright: (C) 2009-2011 Marcin Kuzminski <marcin@python-works.com>
+    :author: marcink
+    :copyright: (C) 2010-2012 Marcin Kuzminski <marcin@python-works.com>
     :license: GPLv3, see COPYING for more details.
 """
 # This program is free software: you can redistribute it and/or modify
--- a/rhodecode/tests/rhodecode_crawler.py	Wed Jan 04 03:30:16 2012 +0200
+++ b/rhodecode/tests/rhodecode_crawler.py	Wed Jan 04 03:50:07 2012 +0200
@@ -11,7 +11,7 @@
 
     :created_on: Apr 21, 2010
     :author: marcink
-    :copyright: (C) 2009-2011 Marcin Kuzminski <marcin@python-works.com>
+    :copyright: (C) 2010-2012 Marcin Kuzminski <marcin@python-works.com>
     :license: GPLv3, see COPYING for more details.
 """
 # This program is free software: you can redistribute it and/or modify
--- a/rhodecode/tests/test_hg_operations.py	Wed Jan 04 03:30:16 2012 +0200
+++ b/rhodecode/tests/test_hg_operations.py	Wed Jan 04 03:50:07 2012 +0200
@@ -6,7 +6,8 @@
     Test suite for making push/pull operations
 
     :created_on: Dec 30, 2010
-    :copyright: (C) 2009-2011 Marcin Kuzminski <marcin@python-works.com>
+    :author: marcink
+    :copyright: (C) 2010-2012 Marcin Kuzminski <marcin@python-works.com>
     :license: GPLv3, see COPYING for more details.
 """
 # This program is free software: you can redistribute it and/or modify
--- a/rhodecode/tests/test_libs.py	Wed Jan 04 03:30:16 2012 +0200
+++ b/rhodecode/tests/test_libs.py	Wed Jan 04 03:50:07 2012 +0200
@@ -7,7 +7,7 @@
     Package for testing various lib/helper functions in rhodecode
 
     :created_on: Jun 9, 2011
-    :copyright: (C) 2009-2011 Marcin Kuzminski <marcin@python-works.com>
+    :copyright: (C) 2011-2012 Marcin Kuzminski <marcin@python-works.com>
     :license: GPLv3, see COPYING for more details.
 """
 # This program is free software: you can redistribute it and/or modify
--- a/rhodecode/websetup.py	Wed Jan 04 03:30:16 2012 +0200
+++ b/rhodecode/websetup.py	Wed Jan 04 03:50:07 2012 +0200
@@ -7,7 +7,7 @@
 
     :created_on: Dec 11, 2010
     :author: marcink
-    :copyright: (C) 2009-2011 Marcin Kuzminski <marcin@python-works.com>
+    :copyright: (C) 2010-2012 Marcin Kuzminski <marcin@python-works.com>
     :license: GPLv3, see COPYING for more details.
 """
 # This program is free software: you can redistribute it and/or modify