##// END OF EJS Templates
Switched forms to new validators
Switched forms to new validators

File last commit:

r2431:60dfc369 codereview
r2467:4419551b codereview
Show More
diffs.py
627 lines | 22.5 KiB | text/x-python | PythonLexer
moved soon-to-be-deleted code from vcs to rhodecode...
r1753 # -*- coding: utf-8 -*-
"""
rhodecode.lib.diffs
~~~~~~~~~~~~~~~~~~~
Set of diffing helpers, previously part of vcs
fixes #326 some html special chars where not escaped in diffs + code garden in helpers
r1781
moved soon-to-be-deleted code from vcs to rhodecode...
r1753 :created_on: Dec 4, 2011
:author: marcink
2012 copyrights
r1824 :copyright: (C) 2010-2012 Marcin Kuzminski <marcin@python-works.com>
fixes #326 some html special chars where not escaped in diffs + code garden in helpers
r1781 :original copyright: 2007-2008 by Armin Ronacher
moved soon-to-be-deleted code from vcs to rhodecode...
r1753 :license: GPLv3, see COPYING for more details.
"""
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
import re
added basic comparision of two repositories using bundles...
r2355 import io
moved soon-to-be-deleted code from vcs to rhodecode...
r1753 import difflib
implements #308 rewrote diffs to enable displaying full diff on each file...
r1789 import markupsafe
added basic comparision of two repositories using bundles...
r2355
implements #308 rewrote diffs to enable displaying full diff on each file...
r1789 from itertools import tee, imap
moved soon-to-be-deleted code from vcs to rhodecode...
r1753
added basic comparision of two repositories using bundles...
r2355 from mercurial import patch
from mercurial.mdiff import diffopts
from mercurial.bundlerepo import bundlerepository
from mercurial import localrepo
implements #308 rewrote diffs to enable displaying full diff on each file...
r1789 from pylons.i18n.translation import _
moved soon-to-be-deleted code from vcs to rhodecode...
r1753
Added VCS into rhodecode core for faster and easier deployments of new versions
r2007 from rhodecode.lib.vcs.exceptions import VCSError
fixed issues with gitsubmodule diffs
r2233 from rhodecode.lib.vcs.nodes import FileNode, SubModuleNode
from rhodecode.lib.helpers import escape
added basic comparision of two repositories using bundles...
r2355 from rhodecode.lib.utils import EmptyChangeset, make_ui
implements #308 rewrote diffs to enable displaying full diff on each file...
r1789
def wrap_to_table(str_):
return '''<table class="code-difftable">
<tr class="line no-comment">
<td class="lineno new"></td>
<td class="code no-comment"><pre>%s</pre></td>
</tr>
</table>''' % str_
def wrapped_diff(filenode_old, filenode_new, cut_off_limit=None,
ignore_whitespace=True, line_context=3,
enable_comments=False):
"""
returns a wrapped diff into a table, checks for cut_off_limit and presents
proper message
"""
if filenode_old is None:
filenode_old = FileNode(filenode_new.path, '', EmptyChangeset())
if filenode_old.is_binary or filenode_new.is_binary:
diff = wrap_to_table(_('binary file'))
stats = (0, 0)
size = 0
elif cut_off_limit != -1 and (cut_off_limit is None or
(filenode_old.size < cut_off_limit and filenode_new.size < cut_off_limit)):
f_gitdiff = get_gitdiff(filenode_old, filenode_new,
ignore_whitespace=ignore_whitespace,
context=line_context)
diff_processor = DiffProcessor(f_gitdiff, format='gitdiff')
diff = diff_processor.as_html(enable_comments=enable_comments)
stats = diff_processor.stat()
size = len(diff or '')
else:
typo fix ref #461
r2340 diff = wrap_to_table(_('Changeset was too big and was cut off, use '
implements #308 rewrote diffs to enable displaying full diff on each file...
r1789 'diff menu to display this diff'))
stats = (0, 0)
size = 0
if not diff:
fixed issues with gitsubmodule diffs
r2233 submodules = filter(lambda o: isinstance(o, SubModuleNode),
[filenode_new, filenode_old])
if submodules:
diff = wrap_to_table(escape('Submodule %r' % submodules[0]))
else:
diff = wrap_to_table(_('No changes detected'))
implements #308 rewrote diffs to enable displaying full diff on each file...
r1789
fixed vcs issue with last_changeset for filenodes...
r2084 cs1 = filenode_old.changeset.raw_id
cs2 = filenode_new.changeset.raw_id
implements #308 rewrote diffs to enable displaying full diff on each file...
r1789
return size, cs1, cs2, diff, stats
fixes #326 some html special chars where not escaped in diffs + code garden in helpers
r1781
moved soon-to-be-deleted code from vcs to rhodecode...
r1753
added line context control to diffs
r1768 def get_gitdiff(filenode_old, filenode_new, ignore_whitespace=True, context=3):
moved soon-to-be-deleted code from vcs to rhodecode...
r1753 """
Returns git style diff between given ``filenode_old`` and ``filenode_new``.
fixes #326 some html special chars where not escaped in diffs + code garden in helpers
r1781
moved soon-to-be-deleted code from vcs to rhodecode...
r1753 :param ignore_whitespace: ignore whitespaces in diff
"""
adapt codes to latest vcs
r1894 # make sure we pass in default context
context = context or 3
fixed issues with gitsubmodule diffs
r2233 submodules = filter(lambda o: isinstance(o, SubModuleNode),
[filenode_new, filenode_old])
if submodules:
return ''
moved soon-to-be-deleted code from vcs to rhodecode...
r1753
for filenode in (filenode_old, filenode_new):
if not isinstance(filenode, FileNode):
raise VCSError("Given object should be FileNode object, not %s"
% filenode.__class__)
adapt codes to latest vcs
r1894 repo = filenode_new.changeset.repository
old_raw_id = getattr(filenode_old.changeset, 'raw_id', repo.EMPTY_CHANGESET)
new_raw_id = getattr(filenode_new.changeset, 'raw_id', repo.EMPTY_CHANGESET)
moved soon-to-be-deleted code from vcs to rhodecode...
r1753
fix for latest vcs
r1883 vcs_gitdiff = repo.get_diff(old_raw_id, new_raw_id, filenode_new.path,
added line context control to diffs
r1768 ignore_whitespace, context)
moved soon-to-be-deleted code from vcs to rhodecode...
r1753 return vcs_gitdiff
class DiffProcessor(object):
"""
Give it a unified diff and it returns a list of the files that were
mentioned in the diff together with a dict of meta information that
can be used to render it in a HTML template.
"""
_chunk_re = re.compile(r'@@ -(\d+)(?:,(\d+))? \+(\d+)(?:,(\d+))? @@(.*)')
Improved RSS/ATOM feeds...
r2385 def __init__(self, diff, differ='diff', format='gitdiff'):
moved soon-to-be-deleted code from vcs to rhodecode...
r1753 """
:param diff: a text in diff format or generator
:param format: format of diff passed, `udiff` or `gitdiff`
"""
if isinstance(diff, basestring):
diff = [diff]
self.__udiff = diff
self.__format = format
self.adds = 0
self.removes = 0
if isinstance(self.__udiff, basestring):
self.lines = iter(self.__udiff.splitlines(1))
elif self.__format == 'gitdiff':
udiff_copy = self.copy_iterator()
self.lines = imap(self.escaper, self._parse_gitdiff(udiff_copy))
else:
udiff_copy = self.copy_iterator()
self.lines = imap(self.escaper, udiff_copy)
# Select a differ.
if differ == 'difflib':
self.differ = self._highlight_line_difflib
else:
self.differ = self._highlight_line_udiff
def escaper(self, string):
fixes #326 some html special chars where not escaped in diffs + code garden in helpers
r1781 return markupsafe.escape(string)
moved soon-to-be-deleted code from vcs to rhodecode...
r1753
def copy_iterator(self):
"""
make a fresh copy of generator, we should not iterate thru
an original as it's needed for repeating operations on
this instance of DiffProcessor
"""
self.__udiff, iterator_copy = tee(self.__udiff)
return iterator_copy
def _extract_rev(self, line1, line2):
"""
Improved RSS/ATOM feeds...
r2385 Extract the operation (A/M/D), filename and revision hint from a line.
moved soon-to-be-deleted code from vcs to rhodecode...
r1753 """
try:
if line1.startswith('--- ') and line2.startswith('+++ '):
l1 = line1[4:].split(None, 1)
code garden for changeset ranges and comments...
r1787 old_filename = (l1[0].replace('a/', '', 1)
if len(l1) >= 1 else None)
moved soon-to-be-deleted code from vcs to rhodecode...
r1753 old_rev = l1[1] if len(l1) == 2 else 'old'
l2 = line2[4:].split(None, 1)
code garden for changeset ranges and comments...
r1787 new_filename = (l2[0].replace('b/', '', 1)
if len(l1) >= 1 else None)
moved soon-to-be-deleted code from vcs to rhodecode...
r1753 new_rev = l2[1] if len(l2) == 2 else 'new'
code garden for changeset ranges and comments...
r1787 filename = (old_filename
if old_filename != '/dev/null' else new_filename)
moved soon-to-be-deleted code from vcs to rhodecode...
r1753
Improved RSS/ATOM feeds...
r2385 operation = 'D' if new_filename == '/dev/null' else None
if not operation:
operation = 'M' if old_filename != '/dev/null' else 'A'
return operation, filename, new_rev, old_rev
moved soon-to-be-deleted code from vcs to rhodecode...
r1753 except (ValueError, IndexError):
pass
Improved RSS/ATOM feeds...
r2385 return None, None, None, None
moved soon-to-be-deleted code from vcs to rhodecode...
r1753
def _parse_gitdiff(self, diffiterator):
def line_decoder(l):
if l.startswith('+') and not l.startswith('+++'):
self.adds += 1
elif l.startswith('-') and not l.startswith('---'):
self.removes += 1
return l.decode('utf8', 'replace')
output = list(diffiterator)
size = len(output)
if size == 2:
l = []
l.extend([output[0]])
l.extend(output[1].splitlines(1))
return map(line_decoder, l)
elif size == 1:
return map(line_decoder, output[0].splitlines(1))
elif size == 0:
return []
raise Exception('wrong size of diff %s' % size)
fixes #326 some html special chars where not escaped in diffs + code garden in helpers
r1781 def _highlight_line_difflib(self, line, next_):
moved soon-to-be-deleted code from vcs to rhodecode...
r1753 """
Highlight inline changes in both lines.
"""
if line['action'] == 'del':
fixes #326 some html special chars where not escaped in diffs + code garden in helpers
r1781 old, new = line, next_
moved soon-to-be-deleted code from vcs to rhodecode...
r1753 else:
fixes #326 some html special chars where not escaped in diffs + code garden in helpers
r1781 old, new = next_, line
moved soon-to-be-deleted code from vcs to rhodecode...
r1753
oldwords = re.split(r'(\W)', old['line'])
newwords = re.split(r'(\W)', new['line'])
sequence = difflib.SequenceMatcher(None, oldwords, newwords)
oldfragments, newfragments = [], []
for tag, i1, i2, j1, j2 in sequence.get_opcodes():
oldfrag = ''.join(oldwords[i1:i2])
newfrag = ''.join(newwords[j1:j2])
if tag != 'equal':
if oldfrag:
oldfrag = '<del>%s</del>' % oldfrag
if newfrag:
newfrag = '<ins>%s</ins>' % newfrag
oldfragments.append(oldfrag)
newfragments.append(newfrag)
old['line'] = "".join(oldfragments)
new['line'] = "".join(newfragments)
fixes #326 some html special chars where not escaped in diffs + code garden in helpers
r1781 def _highlight_line_udiff(self, line, next_):
moved soon-to-be-deleted code from vcs to rhodecode...
r1753 """
Highlight inline changes in both lines.
"""
start = 0
fixes #326 some html special chars where not escaped in diffs + code garden in helpers
r1781 limit = min(len(line['line']), len(next_['line']))
while start < limit and line['line'][start] == next_['line'][start]:
moved soon-to-be-deleted code from vcs to rhodecode...
r1753 start += 1
end = -1
limit -= start
fixes #326 some html special chars where not escaped in diffs + code garden in helpers
r1781 while -end <= limit and line['line'][end] == next_['line'][end]:
moved soon-to-be-deleted code from vcs to rhodecode...
r1753 end -= 1
end += 1
if start or end:
def do(l):
last = end + len(l['line'])
if l['action'] == 'add':
tag = 'ins'
else:
tag = 'del'
l['line'] = '%s<%s>%s</%s>%s' % (
l['line'][:start],
tag,
l['line'][start:last],
tag,
l['line'][last:]
)
do(line)
fixes #326 some html special chars where not escaped in diffs + code garden in helpers
r1781 do(next_)
moved soon-to-be-deleted code from vcs to rhodecode...
r1753
Improved RSS/ATOM feeds...
r2385 def _parse_udiff(self, inline_diff=True):
moved soon-to-be-deleted code from vcs to rhodecode...
r1753 """
Parse the diff an return data for the template.
"""
lineiter = self.lines
files = []
try:
line = lineiter.next()
while 1:
# continue until we found the old file
if not line.startswith('--- '):
line = lineiter.next()
continue
chunks = []
Improved RSS/ATOM feeds...
r2385 stats = [0, 0]
operation, filename, old_rev, new_rev = \
moved soon-to-be-deleted code from vcs to rhodecode...
r1753 self._extract_rev(line, lineiter.next())
files.append({
'filename': filename,
'old_revision': old_rev,
'new_revision': new_rev,
Improved RSS/ATOM feeds...
r2385 'chunks': chunks,
'operation': operation,
'stats': stats,
moved soon-to-be-deleted code from vcs to rhodecode...
r1753 })
line = lineiter.next()
while line:
match = self._chunk_re.match(line)
if not match:
break
lines = []
chunks.append(lines)
old_line, old_end, new_line, new_end = \
[int(x or 1) for x in match.groups()[:-1]]
old_line -= 1
new_line -= 1
Alwas show initial context on html diffs.
r2359 gr = match.groups()
context = len(gr) == 5
moved soon-to-be-deleted code from vcs to rhodecode...
r1753 old_end += old_line
new_end += new_line
if context:
Alwas show initial context on html diffs.
r2359 # skip context only if it's first line
if int(gr[0]) > 1:
moved soon-to-be-deleted code from vcs to rhodecode...
r1753 lines.append({
'old_lineno': '...',
'new_lineno': '...',
implements #308 rewrote diffs to enable displaying full diff on each file...
r1789 'action': 'context',
'line': line,
moved soon-to-be-deleted code from vcs to rhodecode...
r1753 })
line = lineiter.next()
while old_line < old_end or new_line < new_end:
if line:
command, line = line[0], line[1:]
else:
command = ' '
affects_old = affects_new = False
# ignore those if we don't expect them
if command in '#@':
continue
elif command == '+':
affects_new = True
action = 'add'
Improved RSS/ATOM feeds...
r2385 stats[0] += 1
moved soon-to-be-deleted code from vcs to rhodecode...
r1753 elif command == '-':
affects_old = True
action = 'del'
Improved RSS/ATOM feeds...
r2385 stats[1] += 1
moved soon-to-be-deleted code from vcs to rhodecode...
r1753 else:
affects_old = affects_new = True
action = 'unmod'
fixed issue with git's `no new line..` messages inside diff block. It might sometimes happen that showed html diff was short one line because of this
r2360 if line.find('No newline at end of file') != -1:
lines.append({
'old_lineno': '...',
'new_lineno': '...',
'action': 'context',
'line': line
})
else:
old_line += affects_old
new_line += affects_new
lines.append({
'old_lineno': affects_old and old_line or '',
'new_lineno': affects_new and new_line or '',
'action': action,
'line': line
})
moved soon-to-be-deleted code from vcs to rhodecode...
r1753 line = lineiter.next()
merge with beta
r2391
moved soon-to-be-deleted code from vcs to rhodecode...
r1753 except StopIteration:
pass
Improved RSS/ATOM feeds...
r2385 sorter = lambda info: {'A': 0, 'M': 1, 'D': 2}.get(info['operation'])
if inline_diff is False:
return sorted(files, key=sorter)
moved soon-to-be-deleted code from vcs to rhodecode...
r1753 # highlight inline changes
Improved RSS/ATOM feeds...
r2385 for diff_data in files:
for chunk in diff_data['chunks']:
moved soon-to-be-deleted code from vcs to rhodecode...
r1753 lineiter = iter(chunk)
try:
while 1:
line = lineiter.next()
if line['action'] != 'unmod':
nextline = lineiter.next()
fixed issue with git's `no new line..` messages inside diff block. It might sometimes happen that showed html diff was short one line because of this
r2360 if nextline['action'] in ['unmod', 'context'] or \
moved soon-to-be-deleted code from vcs to rhodecode...
r1753 nextline['action'] == line['action']:
continue
self.differ(line, nextline)
except StopIteration:
pass
Improved RSS/ATOM feeds...
r2385 return sorted(files, key=sorter)
moved soon-to-be-deleted code from vcs to rhodecode...
r1753
Improved RSS/ATOM feeds...
r2385 def prepare(self, inline_diff=True):
moved soon-to-be-deleted code from vcs to rhodecode...
r1753 """
Prepare the passed udiff for HTML rendering. It'l return a list
of dicts
"""
Improved RSS/ATOM feeds...
r2385 return self._parse_udiff(inline_diff=inline_diff)
moved soon-to-be-deleted code from vcs to rhodecode...
r1753
def _safe_id(self, idstring):
"""Make a string safe for including in an id attribute.
The HTML spec says that id attributes 'must begin with
a letter ([A-Za-z]) and may be followed by any number
of letters, digits ([0-9]), hyphens ("-"), underscores
("_"), colons (":"), and periods (".")'. These regexps
are slightly over-zealous, in that they remove colons
and periods unnecessarily.
Whitespace is transformed into underscores, and then
anything which is not a hyphen or a character that
matches \w (alphanumerics and underscore) is removed.
"""
# Transform all whitespace to underscore
idstring = re.sub(r'\s', "_", '%s' % idstring)
# Remove everything that is not a hyphen or a member of \w
idstring = re.sub(r'(?!-)\W', "", idstring).lower()
return idstring
def raw_diff(self):
"""
Returns raw string as udiff
"""
udiff_copy = self.copy_iterator()
if self.__format == 'gitdiff':
udiff_copy = self._parse_gitdiff(udiff_copy)
return u''.join(udiff_copy)
def as_html(self, table_class='code-difftable', line_class='line',
new_lineno_class='lineno old', old_lineno_class='lineno new',
Improved RSS/ATOM feeds...
r2385 code_class='code', enable_comments=False, diff_lines=None):
moved soon-to-be-deleted code from vcs to rhodecode...
r1753 """
fixed bug with inline changes highlighter.
r2349 Return given diff as html table with customized css classes
moved soon-to-be-deleted code from vcs to rhodecode...
r1753 """
def _link_to_if(condition, label, url):
"""
Generates a link if condition is meet or just the label if not.
"""
if condition:
implements #308 rewrote diffs to enable displaying full diff on each file...
r1789 return '''<a href="%(url)s">%(label)s</a>''' % {
'url': url,
'label': label
}
moved soon-to-be-deleted code from vcs to rhodecode...
r1753 else:
return label
Improved RSS/ATOM feeds...
r2385 if diff_lines is None:
diff_lines = self.prepare()
moved soon-to-be-deleted code from vcs to rhodecode...
r1753 _html_empty = True
_html = []
implements #308 rewrote diffs to enable displaying full diff on each file...
r1789 _html.append('''<table class="%(table_class)s">\n''' % {
'table_class': table_class
})
moved soon-to-be-deleted code from vcs to rhodecode...
r1753 for diff in diff_lines:
for line in diff['chunks']:
_html_empty = False
for change in line:
implements #308 rewrote diffs to enable displaying full diff on each file...
r1789 _html.append('''<tr class="%(lc)s %(action)s">\n''' % {
'lc': line_class,
'action': change['action']
})
moved soon-to-be-deleted code from vcs to rhodecode...
r1753 anchor_old_id = ''
anchor_new_id = ''
implements #308 rewrote diffs to enable displaying full diff on each file...
r1789 anchor_old = "%(filename)s_o%(oldline_no)s" % {
'filename': self._safe_id(diff['filename']),
'oldline_no': change['old_lineno']
}
anchor_new = "%(filename)s_n%(oldline_no)s" % {
'filename': self._safe_id(diff['filename']),
'oldline_no': change['new_lineno']
}
cond_old = (change['old_lineno'] != '...' and
change['old_lineno'])
cond_new = (change['new_lineno'] != '...' and
change['new_lineno'])
moved soon-to-be-deleted code from vcs to rhodecode...
r1753 if cond_old:
anchor_old_id = 'id="%s"' % anchor_old
if cond_new:
anchor_new_id = 'id="%s"' % anchor_new
###########################################################
# OLD LINE NUMBER
###########################################################
implements #308 rewrote diffs to enable displaying full diff on each file...
r1789 _html.append('''\t<td %(a_id)s class="%(olc)s">''' % {
'a_id': anchor_old_id,
'olc': old_lineno_class
})
moved soon-to-be-deleted code from vcs to rhodecode...
r1753
implements #308 rewrote diffs to enable displaying full diff on each file...
r1789 _html.append('''%(link)s''' % {
'link': _link_to_if(True, change['old_lineno'],
'#%s' % anchor_old)
})
moved soon-to-be-deleted code from vcs to rhodecode...
r1753 _html.append('''</td>\n''')
###########################################################
# NEW LINE NUMBER
###########################################################
implements #308 rewrote diffs to enable displaying full diff on each file...
r1789 _html.append('''\t<td %(a_id)s class="%(nlc)s">''' % {
'a_id': anchor_new_id,
'nlc': new_lineno_class
})
moved soon-to-be-deleted code from vcs to rhodecode...
r1753
implements #308 rewrote diffs to enable displaying full diff on each file...
r1789 _html.append('''%(link)s''' % {
'link': _link_to_if(True, change['new_lineno'],
'#%s' % anchor_new)
})
moved soon-to-be-deleted code from vcs to rhodecode...
r1753 _html.append('''</td>\n''')
###########################################################
# CODE
###########################################################
code garden for changeset ranges and comments...
r1787 comments = '' if enable_comments else 'no-comment'
implements #308 rewrote diffs to enable displaying full diff on each file...
r1789 _html.append('''\t<td class="%(cc)s %(inc)s">''' % {
'cc': code_class,
'inc': comments
})
_html.append('''\n\t\t<pre>%(code)s</pre>\n''' % {
'code': change['line']
})
moved soon-to-be-deleted code from vcs to rhodecode...
r1753 _html.append('''\t</td>''')
_html.append('''\n</tr>\n''')
_html.append('''</table>''')
if _html_empty:
return None
return ''.join(_html)
def stat(self):
"""
Returns tuple of added, and removed lines for this instance
"""
return self.adds, self.removes
Created base for diffing two repositories inside rhodecode
r2337
Improved cross repos diffs...
r2362 class InMemoryBundleRepo(bundlerepository):
def __init__(self, ui, path, bundlestream):
self._tempparent = None
localrepo.localrepository.__init__(self, ui, path)
self.ui.setconfig('phases', 'publish', False)
self.bundle = bundlestream
# dict with the mapping 'filename' -> position in the bundle
self.bundlefilespos = {}
added basic comparision of two repositories using bundles...
r2355 def differ(org_repo, org_ref, other_repo, other_ref, discovery_data=None):
Created base for diffing two repositories inside rhodecode
r2337 """
fixed bug with inline changes highlighter.
r2349 General differ between branches, bookmarks or separate but releated
repositories
Created base for diffing two repositories inside rhodecode
r2337
:param org_repo:
:type org_repo:
:param org_ref:
:type org_ref:
:param other_repo:
:type other_repo:
:param other_ref:
:type other_ref:
"""
added basic comparision of two repositories using bundles...
r2355
code garden
r2364 bundlerepo = None
ignore_whitespace = False
Created base for diffing two repositories inside rhodecode
r2337 context = 3
org_repo = org_repo.scm_instance._repo
other_repo = other_repo.scm_instance._repo
added basic comparision of two repositories using bundles...
r2355 opts = diffopts(git=True, ignorews=ignore_whitespace, context=context)
Created base for diffing two repositories inside rhodecode
r2337 org_ref = org_ref[1]
other_ref = other_ref[1]
added basic comparision of two repositories using bundles...
r2355 if org_repo != other_repo:
common, incoming, rheads = discovery_data
Improved cross repos diffs...
r2362
added basic comparision of two repositories using bundles...
r2355 # create a bundle (uncompressed if other repo is not local)
Improved cross repos diffs...
r2362 if other_repo.capable('getbundle') and incoming:
added basic comparision of two repositories using bundles...
r2355 # disable repo hooks here since it's just bundle !
# patch and reset hooks section of UI config to not run any
# hooks on fetching archives with subrepos
for k, _ in other_repo.ui.configitems('hooks'):
other_repo.ui.setconfig('hooks', k, None)
unbundle = other_repo.getbundle('incoming', common=common,
heads=rheads)
buf = io.BytesIO()
while True:
code garden
r2364 chunk = unbundle._stream.read(1024 * 4)
added basic comparision of two repositories using bundles...
r2355 if not chunk:
break
buf.write(chunk)
Created base for diffing two repositories inside rhodecode
r2337
added basic comparision of two repositories using bundles...
r2355 buf.seek(0)
code garden
r2364 # replace chunked _stream with data that can do tell() and seek()
added basic comparision of two repositories using bundles...
r2355 unbundle._stream = buf
Improved cross repos diffs...
r2362 ui = make_ui('db')
bundlerepo = InMemoryBundleRepo(ui, path=org_repo.root,
bundlestream=unbundle)
Improved cross-repo diff using bundlerepo
r2431
return ''.join(patch.diff(bundlerepo or org_repo,
node1=org_repo[org_ref].node(),
node2=other_repo[other_ref].node(),
code garden
r2364 opts=opts))
added basic comparision of two repositories using bundles...
r2355 else:
return ''.join(patch.diff(org_repo, node1=org_ref, node2=other_ref,
opts=opts))