comparison rhodecode/lib/auth_modules/auth_container.py @ 4186:7e5f8c12a3fc kallithea-2.2.5-rebrand

First step in two-part process to rename directories to kallithea. This first step is to change all references in the files where they refer to the old directory name.
author Bradley M. Kuhn <bkuhn@sfconservancy.org>
date Wed, 02 Jul 2014 19:04:28 -0400
parents ffd45b185016
children
comparison
equal deleted inserted replaced
4185:aaa7c3331186 4186:7e5f8c12a3fc
10 # GNU General Public License for more details. 10 # GNU General Public License for more details.
11 # 11 #
12 # You should have received a copy of the GNU General Public License 12 # You should have received a copy of the GNU General Public License
13 # along with this program. If not, see <http://www.gnu.org/licenses/>. 13 # along with this program. If not, see <http://www.gnu.org/licenses/>.
14 """ 14 """
15 rhodecode.lib.auth_modules.auth_container 15 kallithea.lib.auth_modules.auth_container
16 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 16 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
17 17
18 RhodeCode container based authentication plugin 18 RhodeCode container based authentication plugin
19 19
20 :created_on: Created on Nov 17, 2012 20 :created_on: Created on Nov 17, 2012
22 :copyright: (c) 2013 RhodeCode GmbH. 22 :copyright: (c) 2013 RhodeCode GmbH.
23 :license: GPLv3, see LICENSE for more details. 23 :license: GPLv3, see LICENSE for more details.
24 """ 24 """
25 25
26 import logging 26 import logging
27 from rhodecode.lib import auth_modules 27 from kallithea.lib import auth_modules
28 from rhodecode.lib.utils2 import str2bool, safe_unicode 28 from kallithea.lib.utils2 import str2bool, safe_unicode
29 from rhodecode.lib.compat import hybrid_property 29 from kallithea.lib.compat import hybrid_property
30 from rhodecode.model.db import User 30 from kallithea.model.db import User
31 31
32 log = logging.getLogger(__name__) 32 log = logging.getLogger(__name__)
33 33
34 34
35 class RhodeCodeAuthPlugin(auth_modules.RhodeCodeExternalAuthPlugin): 35 class RhodeCodeAuthPlugin(auth_modules.RhodeCodeExternalAuthPlugin):