comparison rhodecode/controllers/home.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 9dd726706178
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.home 15 kallithea.controllers.home
16 ~~~~~~~~~~~~~~~~~~~~~~~~~~ 16 ~~~~~~~~~~~~~~~~~~~~~~~~~~
17 17
18 Home controller for Rhodecode 18 Home controller for Rhodecode
19 19
20 :created_on: Feb 18, 2010 20 :created_on: Feb 18, 2010
29 from pylons import tmpl_context as c, request 29 from pylons import tmpl_context as c, request
30 from pylons.i18n.translation import _ 30 from pylons.i18n.translation import _
31 from webob.exc import HTTPBadRequest 31 from webob.exc import HTTPBadRequest
32 from sqlalchemy.sql.expression import func 32 from sqlalchemy.sql.expression import func
33 33
34 import rhodecode 34 import kallithea
35 from rhodecode.lib import helpers as h 35 from kallithea.lib import helpers as h
36 from rhodecode.lib.utils import jsonify, conditional_cache 36 from kallithea.lib.utils import jsonify, conditional_cache
37 from rhodecode.lib.compat import json 37 from kallithea.lib.compat import json
38 from rhodecode.lib.auth import LoginRequired, HasRepoPermissionAnyDecorator 38 from kallithea.lib.auth import LoginRequired, HasRepoPermissionAnyDecorator
39 from rhodecode.lib.base import BaseController, render 39 from kallithea.lib.base import BaseController, render
40 from rhodecode.model.db import Repository, RepoGroup 40 from kallithea.model.db import Repository, RepoGroup
41 from rhodecode.model.repo import RepoModel 41 from kallithea.model.repo import RepoModel
42 42
43 43
44 log = logging.getLogger(__name__) 44 log = logging.getLogger(__name__)
45 45
46 46