comparison rhodecode/config/environment.py @ 629:7e536d1af60d beta

Code refactoring,models renames cleaned up sqlalchemy sessions, added cache support to most queries in models fixed test.ini file
author Marcin Kuzminski <marcin@python-works.com>
date Thu, 21 Oct 2010 01:38:14 +0200
parents b75b77ef649d
children 05528ad948c4
comparison
equal deleted inserted replaced
628:dd06bdf974c8 629:7e536d1af60d
4 from pylons.error import handle_mako_error 4 from pylons.error import handle_mako_error
5 from rhodecode.config.routing import make_map 5 from rhodecode.config.routing import make_map
6 from rhodecode.lib.auth import set_available_permissions, set_base_path 6 from rhodecode.lib.auth import set_available_permissions, set_base_path
7 from rhodecode.lib.utils import repo2db_mapper, make_ui, set_rhodecode_config 7 from rhodecode.lib.utils import repo2db_mapper, make_ui, set_rhodecode_config
8 from rhodecode.model import init_model 8 from rhodecode.model import init_model
9 from rhodecode.model.hg_model import _get_repos_cached_initial 9 from rhodecode.model.hg import _get_repos_cached_initial
10 from sqlalchemy import engine_from_config 10 from sqlalchemy import engine_from_config
11 import logging 11 import logging
12 import os 12 import os
13 import rhodecode.lib.app_globals as app_globals 13 import rhodecode.lib.app_globals as app_globals
14 import rhodecode.lib.helpers 14 import rhodecode.lib.helpers