comparison rhodecode/lib/base.py @ 2109:8ecfed1d8f8b beta

utils/conf - created temporary utils2 - made config.conf for storing some configurations - fixed some dependency import problems - code cleanup - rc-extensions now properly work for celery
author Marcin Kuzminski <marcin@python-works.com>
date Wed, 07 Mar 2012 02:18:22 +0200
parents 5b12cbae0b50
children 9f5582151d53
comparison
equal deleted inserted replaced
2108:9e377342802c 2109:8ecfed1d8f8b
13 from pylons.controllers.util import redirect 13 from pylons.controllers.util import redirect
14 from pylons.templating import render_mako as render 14 from pylons.templating import render_mako as render
15 15
16 from rhodecode import __version__, BACKENDS 16 from rhodecode import __version__, BACKENDS
17 17
18 from rhodecode.lib import str2bool, safe_unicode 18 from rhodecode.lib.utils2 import str2bool, safe_unicode
19 from rhodecode.lib.auth import AuthUser, get_container_username, authfunc,\ 19 from rhodecode.lib.auth import AuthUser, get_container_username, authfunc,\
20 HasPermissionAnyMiddleware, CookieStoreWrapper 20 HasPermissionAnyMiddleware, CookieStoreWrapper
21 from rhodecode.lib.utils import get_repo_slug, invalidate_cache 21 from rhodecode.lib.utils import get_repo_slug, invalidate_cache
22 from rhodecode.model import meta 22 from rhodecode.model import meta
23 23