##// END OF EJS Templates
Imported some of the GPLv3'd changes from RhodeCode v2.2.5....
Imported some of the GPLv3'd changes from RhodeCode v2.2.5. This imports changes between changesets 21af6c4eab3d and 6177597791c2 in RhodeCode's original repository, including only changes to Python files and HTML. RhodeCode clearly licensed its changes to these files under GPLv3 in their /LICENSE file, which states the following: The Python code and integrated HTML are licensed under the GPLv3 license. (See: https://code.rhodecode.com/rhodecode/files/v2.2.5/LICENSE or http://web.archive.org/web/20140512193334/https://code.rhodecode.com/rhodecode/files/f3b123159901f15426d18e3dc395e8369f70ebe0/LICENSE for an online copy of that LICENSE file) Conservancy reviewed these changes and confirmed that they can be licensed as a whole to the Kallithea project under GPLv3-only. While some of the contents committed herein are clearly licensed GPLv3-or-later, on the whole we must assume the are GPLv3-only, since the statement above from RhodeCode indicates that they intend GPLv3-only as their license, per GPLv3ยง14 and other relevant sections of GPLv3.

File last commit:

r3976:42bca6fa default
r4116:ffd45b18 rhodecode-2.2.5-gpl
Show More
hgcompat.py
34 lines | 1.3 KiB | 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
Moved all Mercurial imports into hgcompat from vcs
r3941 import mercurial
Patch demandimport.enable because of bug introduced...
r3944 import mercurial.demandimport
## patch demandimport, due to bug in mercurial when it allways triggers demandimport.enable()
mercurial.demandimport.enable = lambda *args, **kwargs: 1
Added VCS into rhodecode core for faster and easier deployments of new versions
r2007 from mercurial import archival, merge as hg_merge, patch, ui
Moved all Mercurial imports into hgcompat from vcs
r3941 from mercurial import discovery
from mercurial import localrepo
Mads Kiilerich
unionrepo: update for Mercurial 2.6
r3976 from mercurial import unionrepo
Moved all Mercurial imports into hgcompat from vcs
r3941 from mercurial import scmutil
from mercurial import config
Added VCS into rhodecode core for faster and easier deployments of new versions
r2007 from mercurial.commands import clone, nullid, pull
from mercurial.context import memctx, memfilectx
from mercurial.error import RepoError, RepoLookupError, Abort
Moved all Mercurial imports into hgcompat from vcs
r3941 from mercurial.hgweb import hgweb_mod
Added VCS into rhodecode core for faster and easier deployments of new versions
r2007 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
r2815 from mercurial.discovery import findcommonoutgoing
Use lower level API from mercurial when doing a pull
r3877 from mercurial.hg import peer
Moved all Mercurial imports into hgcompat from vcs
r3941 from mercurial.httppeer import httppeer
synced vcs with upstream...
r3797 from mercurial.util import url as hg_url
Moved all Mercurial imports into hgcompat from vcs
r3941 from mercurial.scmutil import revrange
from mercurial.node import nullrev
synced vcs with upstream...
r3797
# those authnadlers are patched for python 2.6.5 bug an
# infinit looping when given invalid resources
from mercurial.url import httpbasicauthhandler, httpdigestauthhandler