##// END OF EJS Templates
Implemented generation of changesets based...
Implemented generation of changesets based on whole diff instead of per file diff. That can give a big speed improvement for large changesets in repositories with large history. - improved handling of binary files - show renames of binary files - implemented new diff limit functionality - unify diff generation between hg and git - Added binary indicators for changed files, - added diff lib tests

File last commit:

r2815:acc05c33 beta
r2995:32471bd1 beta
Show More
hgcompat.py
18 lines | 642 B | text/x-python | PythonLexer
various fixes for git and mercurial with InMemoryCommit backend and non-ascii files...
r2199 """
Mercurial libs compatibility
"""
Added VCS into rhodecode core for faster and easier deployments of new versions
r2007
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
white space cleanup
r2207 from mercurial.encoding import tolocal
white space cleanup
r2478 from mercurial import discovery
Bumped mercurial version to 2.3...
r2684 from mercurial import localrepo
fixes #550 mercurial repositories comparision failed when origin repo had...
r2801 from mercurial import scmutil
White space cleanup
r2815 from mercurial.discovery import findcommonoutgoing