diff --git a/rhodecode/controllers/search.py b/rhodecode/controllers/search.py --- a/rhodecode/controllers/search.py +++ b/rhodecode/controllers/search.py @@ -12,7 +12,7 @@ # You should have received a copy of the GNU General Public License # along with this program. If not, see . """ -rhodecode.controllers.search +kallithea.controllers.search ~~~~~~~~~~~~~~~~~~~~~~~~~~~~ Search controller for RhodeCode @@ -34,13 +34,13 @@ from whoosh.qparser import QueryParser, from whoosh.query import Phrase, Wildcard, Term, Prefix from webhelpers.util import update_params -from rhodecode.lib.auth import LoginRequired -from rhodecode.lib.base import BaseRepoController, render -from rhodecode.lib.indexers import CHGSETS_SCHEMA, SCHEMA, CHGSET_IDX_NAME, \ +from kallithea.lib.auth import LoginRequired +from kallithea.lib.base import BaseRepoController, render +from kallithea.lib.indexers import CHGSETS_SCHEMA, SCHEMA, CHGSET_IDX_NAME, \ IDX_NAME, WhooshResultWrapper -from rhodecode.model.repo import RepoModel -from rhodecode.lib.utils2 import safe_str, safe_int -from rhodecode.lib.helpers import Page +from kallithea.model.repo import RepoModel +from kallithea.lib.utils2 import safe_str, safe_int +from kallithea.lib.helpers import Page log = logging.getLogger(__name__)