Files
@ 9dd726706178
Branch filter:
Location: kallithea/rhodecode/lib/vcs/utils/hgcompat.py - annotation
9dd726706178
1.3 KiB
text/x-python
Complete copyright notices for web interface; change footer to link to them.
The original copyright notice found in the footer was not accurate as it
included only one of the many copyright holders in this project. This change
creates an "about" page, which currently contains just the copyright and
license information. It links to repository for additional potential copyright
holders not listed on the about page.
Unlisted contributors are mentioned in template comments.
Html links for Kallithea is fixed and we link to Conservancy.
Display of version information in the footer is improved.
The original copyright notice found in the footer was not accurate as it
included only one of the many copyright holders in this project. This change
creates an "about" page, which currently contains just the copyright and
license information. It links to repository for additional potential copyright
holders not listed on the about page.
Unlisted contributors are mentioned in template comments.
Html links for Kallithea is fixed and we link to Conservancy.
Display of version information in the footer is improved.
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
|