Files
@ f7bf0cebe391
Branch filter:
Location: kallithea/rhodecode/lib/vcs/utils/hgcompat.py - annotation
f7bf0cebe391
888 B
text/x-python
Switch gravatar to always use ssl.
- there's no reason why not to.
- removed thread locals imports thanks to that
- use internal RhodeCode config for alternative gravatar url
- there's no reason why not to.
- removed thread locals imports thanks to that
- use internal RhodeCode config for alternative gravatar url
31ebf7010566 31ebf7010566 31ebf7010566 324ac367a4da 324ac367a4da 324ac367a4da 324ac367a4da 324ac367a4da 324ac367a4da 324ac367a4da 324ac367a4da 324ac367a4da 324ac367a4da 17ff5693566b 8eab81115660 2b6939a77052 69420c48a0e6 acc05c33cc0c 5070c840dc23 d7488551578e d7488551578e d7488551578e d7488551578e d7488551578e d7488551578e | """
Mercurial libs compatibility
"""
from mercurial import archival, merge as hg_merge, patch, ui
from mercurial.commands import clone, nullid, pull
from mercurial.context import memctx, memfilectx
from mercurial.error import RepoError, RepoLookupError, Abort
from mercurial.hgweb.common import get_contact
from mercurial.localrepo import localrepository
from mercurial.match import match
from mercurial.mdiff import diffopts
from mercurial.node import hex
from mercurial.encoding import tolocal
from mercurial import discovery
from mercurial import localrepo
from mercurial import scmutil
from mercurial.discovery import findcommonoutgoing
from mercurial.hg import peer
from mercurial.util import url as hg_url
# those authnadlers are patched for python 2.6.5 bug an
# infinit looping when given invalid resources
from mercurial.url import httpbasicauthhandler, httpdigestauthhandler
|