changeset 5376:0ad053c172fa

cleanup: make module self-naming consistent The self naming is quite pointless ... but at least make it right.
author Mads Kiilerich <madski@unity3d.com>
date Tue, 11 Aug 2015 12:39:07 +0200
parents 0210d0b769d4
children 12fffed05406
files kallithea/__init__.py kallithea/bin/__init__.py kallithea/bin/kallithea_api.py kallithea/bin/kallithea_backup.py kallithea/bin/ldap_sync.py kallithea/controllers/admin/gists.py kallithea/controllers/admin/user_groups.py kallithea/controllers/api/api.py kallithea/lib/auth_modules/auth_internal.py kallithea/lib/auth_modules/auth_pam.py kallithea/lib/celerylib/__init__.py kallithea/lib/dbmigrate/__init__.py kallithea/lib/dbmigrate/schema/db_1_2_0.py kallithea/lib/dbmigrate/schema/db_1_3_0.py kallithea/lib/dbmigrate/schema/db_1_4_0.py kallithea/lib/dbmigrate/schema/db_1_5_0.py kallithea/lib/dbmigrate/schema/db_1_5_2.py kallithea/lib/dbmigrate/schema/db_1_6_0.py kallithea/lib/dbmigrate/schema/db_1_7_0.py kallithea/lib/dbmigrate/schema/db_1_8_0.py kallithea/lib/dbmigrate/schema/db_2_0_0.py kallithea/lib/dbmigrate/schema/db_2_0_1.py kallithea/lib/dbmigrate/schema/db_2_0_2.py kallithea/lib/dbmigrate/schema/db_2_1_0.py kallithea/lib/dbmigrate/schema/db_2_2_0.py kallithea/lib/dbmigrate/schema/db_2_2_3.py kallithea/lib/dbmigrate/versions/__init__.py kallithea/lib/indexers/__init__.py kallithea/lib/paster_commands/repo_scan.py kallithea/lib/utils2.py kallithea/lib/vcs/backends/hg/__init__.py kallithea/model/__init__.py kallithea/model/changeset_status.py kallithea/model/repo_group.py kallithea/model/repo_permission.py kallithea/model/user_group.py kallithea/tests/other/manual_test_vcs_operations.py kallithea/tests/other/test_libs.py kallithea/tests/scripts/manual_test_concurrency.py kallithea/tests/scripts/manual_test_crawler.py
diffstat 40 files changed, 87 insertions(+), 88 deletions(-) [+]
line wrap: on
line diff
--- a/kallithea/__init__.py	Sun Aug 09 02:29:46 2015 +0200
+++ b/kallithea/__init__.py	Tue Aug 11 12:39:07 2015 +0200
@@ -12,8 +12,8 @@
 # You should have received a copy of the GNU General Public License
 # along with this program.  If not, see <http://www.gnu.org/licenses/>.
 """
-kallithea.__init__
-~~~~~~~~~~~~~~~~~~
+kallithea
+~~~~~~~~~
 
 Kallithea, a web based repository management based on pylons
 versioning implementation: http://www.python.org/dev/peps/pep-0386/
--- a/kallithea/bin/__init__.py	Sun Aug 09 02:29:46 2015 +0200
+++ b/kallithea/bin/__init__.py	Tue Aug 11 12:39:07 2015 +0200
@@ -12,8 +12,8 @@
 # You should have received a copy of the GNU General Public License
 # along with this program.  If not, see <http://www.gnu.org/licenses/>.
 """
-kallithea.bin.__init__
-~~~~~~~~~~~~~~~~~~~~~~
+kallithea.bin
+~~~~~~~~~~~~~
 
 Binary scripts for Kallithea
 
--- a/kallithea/bin/kallithea_api.py	Sun Aug 09 02:29:46 2015 +0200
+++ b/kallithea/bin/kallithea_api.py	Tue Aug 11 12:39:07 2015 +0200
@@ -12,8 +12,8 @@
 # You should have received a copy of the GNU General Public License
 # along with this program.  If not, see <http://www.gnu.org/licenses/>.
 """
-kallithea.bin.api
-~~~~~~~~~~~~~~~~~
+kallithea.bin.kallithea_api
+~~~~~~~~~~~~~~~~~~~~~~~~~~~
 
 Api CLI client for Kallithea
 
--- a/kallithea/bin/kallithea_backup.py	Sun Aug 09 02:29:46 2015 +0200
+++ b/kallithea/bin/kallithea_backup.py	Tue Aug 11 12:39:07 2015 +0200
@@ -12,8 +12,8 @@
 # You should have received a copy of the GNU General Public License
 # along with this program.  If not, see <http://www.gnu.org/licenses/>.
 """
-kallithea.bin.backup_manager
-~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+kallithea.bin.kallithea_backup
+~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
 
 Repositories backup manager, it allows to backups all
 repositories and send it to backup server using RSA key via ssh.
--- a/kallithea/bin/ldap_sync.py	Sun Aug 09 02:29:46 2015 +0200
+++ b/kallithea/bin/ldap_sync.py	Tue Aug 11 12:39:07 2015 +0200
@@ -12,8 +12,8 @@
 # You should have received a copy of the GNU General Public License
 # along with this program.  If not, see <http://www.gnu.org/licenses/>.
 """
-kallithea.bin.__init__
-~~~~~~~~~~~~~~~~~~~~~~
+kallithea.bin.ldap_sync
+~~~~~~~~~~~~~~~~~~~~~~~
 
 LDAP sync script
 
--- a/kallithea/controllers/admin/gists.py	Sun Aug 09 02:29:46 2015 +0200
+++ b/kallithea/controllers/admin/gists.py	Tue Aug 11 12:39:07 2015 +0200
@@ -12,8 +12,8 @@
 # You should have received a copy of the GNU General Public License
 # along with this program.  If not, see <http://www.gnu.org/licenses/>.
 """
-kallithea.controllers.admin.gist
-~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+kallithea.controllers.admin.gists
+~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
 
 gist controller for Kallithea
 
--- a/kallithea/controllers/admin/user_groups.py	Sun Aug 09 02:29:46 2015 +0200
+++ b/kallithea/controllers/admin/user_groups.py	Tue Aug 11 12:39:07 2015 +0200
@@ -12,8 +12,8 @@
 # You should have received a copy of the GNU General Public License
 # along with this program.  If not, see <http://www.gnu.org/licenses/>.
 """
-kallithea.controllers.admin.users_groups
-~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+kallithea.controllers.admin.user_groups
+~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
 
 User Groups crud controller for pylons
 
--- a/kallithea/controllers/api/api.py	Sun Aug 09 02:29:46 2015 +0200
+++ b/kallithea/controllers/api/api.py	Tue Aug 11 12:39:07 2015 +0200
@@ -12,8 +12,8 @@
 # You should have received a copy of the GNU General Public License
 # along with this program.  If not, see <http://www.gnu.org/licenses/>.
 """
-kallithea.controllers.api
-~~~~~~~~~~~~~~~~~~~~~~~~~
+kallithea.controllers.api.api
+~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
 
 API controller for Kallithea
 
--- a/kallithea/lib/auth_modules/auth_internal.py	Sun Aug 09 02:29:46 2015 +0200
+++ b/kallithea/lib/auth_modules/auth_internal.py	Tue Aug 11 12:39:07 2015 +0200
@@ -13,7 +13,7 @@
 # along with this program.  If not, see <http://www.gnu.org/licenses/>.
 """
 kallithea.lib.auth_modules.auth_internal
-~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
 
 Kallithea authentication plugin for built in internal auth
 
--- a/kallithea/lib/auth_modules/auth_pam.py	Sun Aug 09 02:29:46 2015 +0200
+++ b/kallithea/lib/auth_modules/auth_pam.py	Tue Aug 11 12:39:07 2015 +0200
@@ -12,8 +12,8 @@
 # You should have received a copy of the GNU General Public License
 # along with this program.  If not, see <http://www.gnu.org/licenses/>.
 """
-kallithea.lib.auth_pam
-~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+kallithea.lib.auth_modules.auth_pam
+~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
 
 Kallithea authentication library for PAM
 
--- a/kallithea/lib/celerylib/__init__.py	Sun Aug 09 02:29:46 2015 +0200
+++ b/kallithea/lib/celerylib/__init__.py	Tue Aug 11 12:39:07 2015 +0200
@@ -12,8 +12,8 @@
 # You should have received a copy of the GNU General Public License
 # along with this program.  If not, see <http://www.gnu.org/licenses/>.
 """
-kallithea.lib.celerylib.__init__
-~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+kallithea.lib.celerylib
+~~~~~~~~~~~~~~~~~~~~~~~
 
 celery libs for Kallithea
 
--- a/kallithea/lib/dbmigrate/__init__.py	Sun Aug 09 02:29:46 2015 +0200
+++ b/kallithea/lib/dbmigrate/__init__.py	Tue Aug 11 12:39:07 2015 +0200
@@ -12,8 +12,8 @@
 # You should have received a copy of the GNU General Public License
 # along with this program.  If not, see <http://www.gnu.org/licenses/>.
 """
-kallithea.lib.dbmigrate.__init__
-~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+kallithea.lib.dbmigrate
+~~~~~~~~~~~~~~~~~~~~~~~
 
 Database migration modules
 
--- a/kallithea/lib/dbmigrate/schema/db_1_2_0.py	Sun Aug 09 02:29:46 2015 +0200
+++ b/kallithea/lib/dbmigrate/schema/db_1_2_0.py	Tue Aug 11 12:39:07 2015 +0200
@@ -12,8 +12,8 @@
 # You should have received a copy of the GNU General Public License
 # along with this program.  If not, see <http://www.gnu.org/licenses/>.
 """
-kallithea.model.db_1_2_0
-~~~~~~~~~~~~~~~~~~~~~~~~
+kallithea.lib.dbmigrate.schema.db_1_2_0
+~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
 
 Database Models for Kallithea <=1.2.X
 
--- a/kallithea/lib/dbmigrate/schema/db_1_3_0.py	Sun Aug 09 02:29:46 2015 +0200
+++ b/kallithea/lib/dbmigrate/schema/db_1_3_0.py	Tue Aug 11 12:39:07 2015 +0200
@@ -12,8 +12,8 @@
 # You should have received a copy of the GNU General Public License
 # along with this program.  If not, see <http://www.gnu.org/licenses/>.
 """
-kallithea.model.db_1_3_0
-~~~~~~~~~~~~~~~~~~~~~~~~
+kallithea.lib.dbmigrate.schema.db_1_3_0
+~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
 
 Database Models for Kallithea <=1.3.X
 
--- a/kallithea/lib/dbmigrate/schema/db_1_4_0.py	Sun Aug 09 02:29:46 2015 +0200
+++ b/kallithea/lib/dbmigrate/schema/db_1_4_0.py	Tue Aug 11 12:39:07 2015 +0200
@@ -12,8 +12,8 @@
 # You should have received a copy of the GNU General Public License
 # along with this program.  If not, see <http://www.gnu.org/licenses/>.
 """
-kallithea.model.db_1_4_0
-~~~~~~~~~~~~~~~~~~~~~~~~
+kallithea.lib.dbmigrate.schema.db_1_4_0
+~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
 
 Database Models for Kallithea <=1.4.X
 
--- a/kallithea/lib/dbmigrate/schema/db_1_5_0.py	Sun Aug 09 02:29:46 2015 +0200
+++ b/kallithea/lib/dbmigrate/schema/db_1_5_0.py	Tue Aug 11 12:39:07 2015 +0200
@@ -12,8 +12,8 @@
 # You should have received a copy of the GNU General Public License
 # along with this program.  If not, see <http://www.gnu.org/licenses/>.
 """
-kallithea.model.db_1_5_0
-~~~~~~~~~~~~~~~~~~~~~~~~
+kallithea.lib.dbmigrate.schema.db_1_5_0
+~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
 
 Database Models for Kallithea <=1.5.2
 
--- a/kallithea/lib/dbmigrate/schema/db_1_5_2.py	Sun Aug 09 02:29:46 2015 +0200
+++ b/kallithea/lib/dbmigrate/schema/db_1_5_2.py	Tue Aug 11 12:39:07 2015 +0200
@@ -12,8 +12,8 @@
 # You should have received a copy of the GNU General Public License
 # along with this program.  If not, see <http://www.gnu.org/licenses/>.
 """
-kallithea.model.db_1_5_2
-~~~~~~~~~~~~~~~~~~~~~~~~
+kallithea.lib.dbmigrate.schema.db_1_5_2
+~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
 
 Database Models for Kallithea <=1.5.X
 
--- a/kallithea/lib/dbmigrate/schema/db_1_6_0.py	Sun Aug 09 02:29:46 2015 +0200
+++ b/kallithea/lib/dbmigrate/schema/db_1_6_0.py	Tue Aug 11 12:39:07 2015 +0200
@@ -12,8 +12,8 @@
 # You should have received a copy of the GNU General Public License
 # along with this program.  If not, see <http://www.gnu.org/licenses/>.
 """
-kallithea.model.db_1_6_0
-~~~~~~~~~~~~~~~~~~~~~~~~
+kallithea.lib.dbmigrate.schema.db_1_6_0
+~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
 
 Database Models for Kallithea <=1.5.X
 
--- a/kallithea/lib/dbmigrate/schema/db_1_7_0.py	Sun Aug 09 02:29:46 2015 +0200
+++ b/kallithea/lib/dbmigrate/schema/db_1_7_0.py	Tue Aug 11 12:39:07 2015 +0200
@@ -12,8 +12,8 @@
 # You should have received a copy of the GNU General Public License
 # along with this program.  If not, see <http://www.gnu.org/licenses/>.
 """
-kallithea.model.db
-~~~~~~~~~~~~~~~~~~
+kallithea.lib.dbmigrate.schema.db_1_7_0
+~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
 
 Database Models for Kallithea
 
--- a/kallithea/lib/dbmigrate/schema/db_1_8_0.py	Sun Aug 09 02:29:46 2015 +0200
+++ b/kallithea/lib/dbmigrate/schema/db_1_8_0.py	Tue Aug 11 12:39:07 2015 +0200
@@ -12,8 +12,8 @@
 # You should have received a copy of the GNU General Public License
 # along with this program.  If not, see <http://www.gnu.org/licenses/>.
 """
-kallithea.model.db
-~~~~~~~~~~~~~~~~~~
+kallithea.lib.dbmigrate.schema.db_1_8_0
+~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
 
 Database Models for Kallithea
 
--- a/kallithea/lib/dbmigrate/schema/db_2_0_0.py	Sun Aug 09 02:29:46 2015 +0200
+++ b/kallithea/lib/dbmigrate/schema/db_2_0_0.py	Tue Aug 11 12:39:07 2015 +0200
@@ -12,8 +12,8 @@
 # You should have received a copy of the GNU General Public License
 # along with this program.  If not, see <http://www.gnu.org/licenses/>.
 """
-kallithea.model.db
-~~~~~~~~~~~~~~~~~~
+kallithea.lib.dbmigrate.schema.db_2_0_0
+~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
 
 Database Models for Kallithea
 
--- a/kallithea/lib/dbmigrate/schema/db_2_0_1.py	Sun Aug 09 02:29:46 2015 +0200
+++ b/kallithea/lib/dbmigrate/schema/db_2_0_1.py	Tue Aug 11 12:39:07 2015 +0200
@@ -12,8 +12,8 @@
 # You should have received a copy of the GNU General Public License
 # along with this program.  If not, see <http://www.gnu.org/licenses/>.
 """
-kallithea.model.db
-~~~~~~~~~~~~~~~~~~
+kallithea.lib.dbmigrate.schema.db_2_0_1
+~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
 
 Database Models for Kallithea
 
--- a/kallithea/lib/dbmigrate/schema/db_2_0_2.py	Sun Aug 09 02:29:46 2015 +0200
+++ b/kallithea/lib/dbmigrate/schema/db_2_0_2.py	Tue Aug 11 12:39:07 2015 +0200
@@ -12,8 +12,8 @@
 # You should have received a copy of the GNU General Public License
 # along with this program.  If not, see <http://www.gnu.org/licenses/>.
 """
-kallithea.model.db
-~~~~~~~~~~~~~~~~~~
+kallithea.lib.dbmigrate.schema.db_2_0_2
+~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
 
 Database Models for Kallithea
 
--- a/kallithea/lib/dbmigrate/schema/db_2_1_0.py	Sun Aug 09 02:29:46 2015 +0200
+++ b/kallithea/lib/dbmigrate/schema/db_2_1_0.py	Tue Aug 11 12:39:07 2015 +0200
@@ -12,8 +12,8 @@
 # You should have received a copy of the GNU General Public License
 # along with this program.  If not, see <http://www.gnu.org/licenses/>.
 """
-kallithea.model.db
-~~~~~~~~~~~~~~~~~~
+kallithea.lib.dbmigrate.schema.db_2_1_0
+~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
 
 Database Models for Kallithea
 
--- a/kallithea/lib/dbmigrate/schema/db_2_2_0.py	Sun Aug 09 02:29:46 2015 +0200
+++ b/kallithea/lib/dbmigrate/schema/db_2_2_0.py	Tue Aug 11 12:39:07 2015 +0200
@@ -12,8 +12,8 @@
 # You should have received a copy of the GNU General Public License
 # along with this program.  If not, see <http://www.gnu.org/licenses/>.
 """
-kallithea.model.db
-~~~~~~~~~~~~~~~~~~
+kallithea.lib.dbmigrate.schema.db_2_2_0
+~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
 
 Database Models for Kallithea
 
--- a/kallithea/lib/dbmigrate/schema/db_2_2_3.py	Sun Aug 09 02:29:46 2015 +0200
+++ b/kallithea/lib/dbmigrate/schema/db_2_2_3.py	Tue Aug 11 12:39:07 2015 +0200
@@ -12,8 +12,8 @@
 # You should have received a copy of the GNU General Public License
 # along with this program.  If not, see <http://www.gnu.org/licenses/>.
 """
-kallithea.model.db
-~~~~~~~~~~~~~~~~~~
+kallithea.lib.dbmigrate.schema.db_2_2_3
+~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
 
 Database Models for Kallithea
 
--- a/kallithea/lib/dbmigrate/versions/__init__.py	Sun Aug 09 02:29:46 2015 +0200
+++ b/kallithea/lib/dbmigrate/versions/__init__.py	Tue Aug 11 12:39:07 2015 +0200
@@ -12,8 +12,8 @@
 # You should have received a copy of the GNU General Public License
 # along with this program.  If not, see <http://www.gnu.org/licenses/>.
 """
-kallithea.lib.dbmigrate.versions.__init__
-~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+kallithea.lib.dbmigrate.versions
+~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
 
 Package containing new versions of database models
 
--- a/kallithea/lib/indexers/__init__.py	Sun Aug 09 02:29:46 2015 +0200
+++ b/kallithea/lib/indexers/__init__.py	Tue Aug 11 12:39:07 2015 +0200
@@ -12,8 +12,8 @@
 # You should have received a copy of the GNU General Public License
 # along with this program.  If not, see <http://www.gnu.org/licenses/>.
 """
-kallithea.lib.indexers.__init__
-~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+kallithea.lib.indexers
+~~~~~~~~~~~~~~~~~~~~~~
 
 Whoosh indexing module for Kallithea
 
--- a/kallithea/lib/paster_commands/repo_scan.py	Sun Aug 09 02:29:46 2015 +0200
+++ b/kallithea/lib/paster_commands/repo_scan.py	Tue Aug 11 12:39:07 2015 +0200
@@ -12,8 +12,8 @@
 # You should have received a copy of the GNU General Public License
 # along with this program.  If not, see <http://www.gnu.org/licenses/>.
 """
-kallithea.lib.paster_commands.make_rcextensions
-~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+kallithea.lib.paster_commands.repo_scan
+~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
 
 repo-scan paster command for Kallithea
 
--- a/kallithea/lib/utils2.py	Sun Aug 09 02:29:46 2015 +0200
+++ b/kallithea/lib/utils2.py	Tue Aug 11 12:39:07 2015 +0200
@@ -12,8 +12,8 @@
 # You should have received a copy of the GNU General Public License
 # along with this program.  If not, see <http://www.gnu.org/licenses/>.
 """
-kallithea.lib.utils
-~~~~~~~~~~~~~~~~~~~
+kallithea.lib.utils2
+~~~~~~~~~~~~~~~~~~~~
 
 Some simple helper functions
 
--- a/kallithea/lib/vcs/backends/hg/__init__.py	Sun Aug 09 02:29:46 2015 +0200
+++ b/kallithea/lib/vcs/backends/hg/__init__.py	Tue Aug 11 12:39:07 2015 +0200
@@ -1,7 +1,7 @@
 # -*- coding: utf-8 -*-
 """
     vcs.backends.hg
-    ~~~~~~~~~~~~~~~~
+    ~~~~~~~~~~~~~~~
 
     Mercurial backend implementation.
 
--- a/kallithea/model/__init__.py	Sun Aug 09 02:29:46 2015 +0200
+++ b/kallithea/model/__init__.py	Tue Aug 11 12:39:07 2015 +0200
@@ -12,8 +12,8 @@
 # You should have received a copy of the GNU General Public License
 # along with this program.  If not, see <http://www.gnu.org/licenses/>.
 """
-kallithea.model.__init__
-~~~~~~~~~~~~~~~~~~~~~~~~
+kallithea.model
+~~~~~~~~~~~~~~~
 
 The application's model objects
 
--- a/kallithea/model/changeset_status.py	Sun Aug 09 02:29:46 2015 +0200
+++ b/kallithea/model/changeset_status.py	Tue Aug 11 12:39:07 2015 +0200
@@ -1,4 +1,16 @@
 # -*- coding: utf-8 -*-
+# 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/>.
 """
 kallithea.model.changeset_status
 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
@@ -12,19 +24,6 @@
 :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
-# 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
 from collections import  defaultdict
--- a/kallithea/model/repo_group.py	Sun Aug 09 02:29:46 2015 +0200
+++ b/kallithea/model/repo_group.py	Tue Aug 11 12:39:07 2015 +0200
@@ -12,7 +12,7 @@
 # You should have received a copy of the GNU General Public License
 # along with this program.  If not, see <http://www.gnu.org/licenses/>.
 """
-kallithea.model.user_group
+kallithea.model.repo_group
 ~~~~~~~~~~~~~~~~~~~~~~~~~~
 
 repo group model for Kallithea
--- a/kallithea/model/repo_permission.py	Sun Aug 09 02:29:46 2015 +0200
+++ b/kallithea/model/repo_permission.py	Tue Aug 11 12:39:07 2015 +0200
@@ -12,8 +12,8 @@
 # You should have received a copy of the GNU General Public License
 # along with this program.  If not, see <http://www.gnu.org/licenses/>.
 """
-kallithea.model.users_group
-~~~~~~~~~~~~~~~~~~~~~~~~~~~
+kallithea.model.repo_permission
+~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
 
 repository permission model for Kallithea
 
--- a/kallithea/model/user_group.py	Sun Aug 09 02:29:46 2015 +0200
+++ b/kallithea/model/user_group.py	Tue Aug 11 12:39:07 2015 +0200
@@ -12,8 +12,8 @@
 # You should have received a copy of the GNU General Public License
 # along with this program.  If not, see <http://www.gnu.org/licenses/>.
 """
-kallithea.model.users_group
-~~~~~~~~~~~~~~~~~~~~~~~~~~~
+kallithea.model.user_group
+~~~~~~~~~~~~~~~~~~~~~~~~~~
 
 user group model for Kallithea
 
--- a/kallithea/tests/other/manual_test_vcs_operations.py	Sun Aug 09 02:29:46 2015 +0200
+++ b/kallithea/tests/other/manual_test_vcs_operations.py	Tue Aug 11 12:39:07 2015 +0200
@@ -12,8 +12,8 @@
 # You should have received a copy of the GNU General Public License
 # along with this program.  If not, see <http://www.gnu.org/licenses/>.
 """
-kallithea.tests.test_scm_operations
-~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+kallithea.tests.other.manual_test_vcs_operations
+~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
 
 Test suite for making push/pull operations.
 
--- a/kallithea/tests/other/test_libs.py	Sun Aug 09 02:29:46 2015 +0200
+++ b/kallithea/tests/other/test_libs.py	Tue Aug 11 12:39:07 2015 +0200
@@ -12,8 +12,8 @@
 # You should have received a copy of the GNU General Public License
 # along with this program.  If not, see <http://www.gnu.org/licenses/>.
 """
-kallithea.tests.test_libs
-~~~~~~~~~~~~~~~~~~~~~~~~~
+kallithea.tests.other.test_libs
+~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
 
 Package for testing various lib/helper functions in kallithea
 
--- a/kallithea/tests/scripts/manual_test_concurrency.py	Sun Aug 09 02:29:46 2015 +0200
+++ b/kallithea/tests/scripts/manual_test_concurrency.py	Tue Aug 11 12:39:07 2015 +0200
@@ -12,8 +12,8 @@
 # You should have received a copy of the GNU General Public License
 # along with this program.  If not, see <http://www.gnu.org/licenses/>.
 """
-kallithea.tests.test_hg_operations
-~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+kallithea.tests.scripts.manual_test_concurrency
+~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
 
 Test suite for making push/pull operations
 
--- a/kallithea/tests/scripts/manual_test_crawler.py	Sun Aug 09 02:29:46 2015 +0200
+++ b/kallithea/tests/scripts/manual_test_crawler.py	Tue Aug 11 12:39:07 2015 +0200
@@ -12,8 +12,8 @@
 # You should have received a copy of the GNU General Public License
 # along with this program.  If not, see <http://www.gnu.org/licenses/>.
 """
-kallithea.tests.test_crawer
-~~~~~~~~~~~~~~~~~~~~~~~~~~~
+kallithea.tests.scripts.manual_test_crawler
+~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
 
 Test for crawling a project for memory usage
 This should be runned just as regular script together