# HG changeset patch # User Mads Kiilerich # Date 1370993795 -7200 # Node ID d46d9d93305a5f2b8df839f780839a19684d450c # Parent 425b9eb67d3a68d769e023603df7fda8cd85b20d diff: drop "confirm to show potentially huge diff" click-through It is obvious from the context that the diff was cut off to use resources efficiently. The user clicked "Show full diff" because he wanted the diff anyway. Asking twice is just annoying and serves no purpose. diff -r 425b9eb67d3a -r d46d9d93305a rhodecode/templates/compare/compare_diff.html --- a/rhodecode/templates/compare/compare_diff.html Tue Jun 04 14:01:46 2013 +0200 +++ b/rhodecode/templates/compare/compare_diff.html Wed Jun 12 01:36:35 2013 +0200 @@ -55,7 +55,7 @@ %endfor % if c.limited_diff: -
${_('Changeset was too big and was cut off...')} ${_('Show full diff')}
+
${_('Changeset was too big and was cut off...')} ${_('Show full diff')}
% endif @@ -66,7 +66,7 @@ ${diff_block.diff_block_simple([c.changes[fid]])} %endfor % if c.limited_diff: -

${_('Changeset was too big and was cut off...')} ${_('Show full diff')}

+

${_('Changeset was too big and was cut off...')} ${_('Show full diff')}

% endif