Files
@ 218ed589e44a
Branch filter:
Location: kallithea/rhodecode/lib/vcs/utils/hgcompat.py - annotation
218ed589e44a
1.3 KiB
text/x-python
branch selectors: show closed branches too
It would be even better if they were fetched dynamically somehow and perhaps
placed in a sub sub menu ... but showing them in the list is often better than
not showing them at all.
It would be even better if they were fetched dynamically somehow and perhaps
placed in a sub sub menu ... but showing them in the list is often better than
not showing them at all.
31ebf7010566 31ebf7010566 31ebf7010566 324ac367a4da 3208aaefc9ca d18500a8840c d18500a8840c d18500a8840c 324ac367a4da 3208aaefc9ca 3208aaefc9ca 42bca6fa923b 3208aaefc9ca 3208aaefc9ca 324ac367a4da 324ac367a4da 324ac367a4da 3208aaefc9ca 324ac367a4da 324ac367a4da 324ac367a4da 324ac367a4da 324ac367a4da 17ff5693566b acc05c33cc0c 5070c840dc23 3208aaefc9ca d7488551578e 3208aaefc9ca 3208aaefc9ca d7488551578e d7488551578e d7488551578e d7488551578e | """
Mercurial libs compatibility
"""
import mercurial
import mercurial.demandimport
## patch demandimport, due to bug in mercurial when it allways triggers demandimport.enable()
mercurial.demandimport.enable = lambda *args, **kwargs: 1
from mercurial import archival, merge as hg_merge, patch, ui
from mercurial import discovery
from mercurial import localrepo
from mercurial import unionrepo
from mercurial import scmutil
from mercurial import config
from mercurial.commands import clone, nullid, pull
from mercurial.context import memctx, memfilectx
from mercurial.error import RepoError, RepoLookupError, Abort
from mercurial.hgweb import hgweb_mod
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.discovery import findcommonoutgoing
from mercurial.hg import peer
from mercurial.httppeer import httppeer
from mercurial.util import url as hg_url
from mercurial.scmutil import revrange
from mercurial.node import nullrev
# those authnadlers are patched for python 2.6.5 bug an
# infinit looping when given invalid resources
from mercurial.url import httpbasicauthhandler, httpdigestauthhandler
|