comparison rhodecode/controllers/followers.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.controllers.followers 15 kallithea.controllers.followers
16 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 16 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
17 17
18 Followers controller for rhodecode 18 Followers controller for rhodecode
19 19
20 :created_on: Apr 23, 2011 20 :created_on: Apr 23, 2011
25 25
26 import logging 26 import logging
27 27
28 from pylons import tmpl_context as c, request 28 from pylons import tmpl_context as c, request
29 29
30 from rhodecode.lib.helpers import Page 30 from kallithea.lib.helpers import Page
31 from rhodecode.lib.auth import LoginRequired, HasRepoPermissionAnyDecorator 31 from kallithea.lib.auth import LoginRequired, HasRepoPermissionAnyDecorator
32 from rhodecode.lib.base import BaseRepoController, render 32 from kallithea.lib.base import BaseRepoController, render
33 from rhodecode.model.db import Repository, User, UserFollowing 33 from kallithea.model.db import Repository, User, UserFollowing
34 from rhodecode.lib.utils2 import safe_int 34 from kallithea.lib.utils2 import safe_int
35 35
36 log = logging.getLogger(__name__) 36 log = logging.getLogger(__name__)
37 37
38 38
39 class FollowersController(BaseRepoController): 39 class FollowersController(BaseRepoController):