Mercurial > public > src > rhodecode
comparison pylons_app/lib/utils.py @ 197:da59b7e07e3c
Changed import to base. Removed action logging from auth to simplehg.
Splited loggin and invalidation action to private methods inside simplehg.
author | Marcin Kuzminski <marcin@python-works.com> |
---|---|
date | Sat, 22 May 2010 19:29:50 +0200 |
parents | 3d1dd13887f9 |
children | 48727add84c9 |
comparison
equal
deleted
inserted
replaced
196:568f95056716 | 197:da59b7e07e3c |
---|---|
106 if name == 'cached_repo_list': | 106 if name == 'cached_repo_list': |
107 from pylons_app.lib.base import _get_repos_cached | 107 from pylons_app.lib.base import _get_repos_cached |
108 region_invalidate(_get_repos_cached, None, *args) | 108 region_invalidate(_get_repos_cached, None, *args) |
109 | 109 |
110 if name == 'full_changelog': | 110 if name == 'full_changelog': |
111 from pylons_app.controllers.changelog import _full_changelog_cached | 111 from pylons_app.lib.base import _full_changelog_cached |
112 region_invalidate(_full_changelog_cached, None, *args) | 112 region_invalidate(_full_changelog_cached, None, *args) |
113 | 113 |
114 from vcs.backends.base import BaseChangeset | 114 from vcs.backends.base import BaseChangeset |
115 from vcs.utils.lazy import LazyProperty | 115 from vcs.utils.lazy import LazyProperty |
116 class EmptyChangeset(BaseChangeset): | 116 class EmptyChangeset(BaseChangeset): |