comparison rhodecode/lib/utils.py @ 3941:3208aaefc9ca beta

Moved all Mercurial imports into hgcompat from vcs
author Marcin Kuzminski <marcin@python-works.com>
date Mon, 03 Jun 2013 23:54:52 +0200
parents 7aa0ff5b4e09
children 5293d4bbb1ea
comparison
equal deleted inserted replaced
3940:3a608d72a86f 3941:3208aaefc9ca
37 from os.path import abspath 37 from os.path import abspath
38 from os.path import dirname as dn, join as jn 38 from os.path import dirname as dn, join as jn
39 39
40 from paste.script.command import Command, BadCommand 40 from paste.script.command import Command, BadCommand
41 41
42 from mercurial import ui, config
43
44 from webhelpers.text import collapse, remove_formatting, strip_tags 42 from webhelpers.text import collapse, remove_formatting, strip_tags
45 43
46 from rhodecode.lib.vcs import get_backend 44 from rhodecode.lib.vcs import get_backend
47 from rhodecode.lib.vcs.backends.base import BaseChangeset 45 from rhodecode.lib.vcs.backends.base import BaseChangeset
48 from rhodecode.lib.vcs.utils.lazy import LazyProperty 46 from rhodecode.lib.vcs.utils.lazy import LazyProperty
47 from rhodecode.lib.vcs.utils.hgcompat import ui, config
49 from rhodecode.lib.vcs.utils.helpers import get_scm 48 from rhodecode.lib.vcs.utils.helpers import get_scm
50 from rhodecode.lib.vcs.exceptions import VCSError 49 from rhodecode.lib.vcs.exceptions import VCSError
51 50
52 from rhodecode.lib.caching_query import FromCache 51 from rhodecode.lib.caching_query import FromCache
53 52