# HG changeset patch # User Mads Kiilerich # Date 1404475926 -7200 # Node ID e46de90d5554d3b20c2deb27dba4c0656207dd06 # Parent 7c094db329b30fd4f868bbf1be1a14f55eed2778 diff: don't ask for confirmation before showing diff - we already showed a warning diff -r 7c094db329b3 -r e46de90d5554 kallithea/templates/changeset/changeset.html --- a/kallithea/templates/changeset/changeset.html Fri Jul 18 18:44:54 2014 +0200 +++ b/kallithea/templates/changeset/changeset.html Fri Jul 04 14:12:06 2014 +0200 @@ -136,7 +136,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 anyway')}
% endif @@ -148,7 +148,7 @@ ${diff_block.diff_block(c.changes[c.changeset.raw_id])} % 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 anyway')}

% endif ## template for inline comment form diff -r 7c094db329b3 -r e46de90d5554 kallithea/templates/pullrequests/pullrequest_show.html --- a/kallithea/templates/pullrequests/pullrequest_show.html Fri Jul 18 18:44:54 2014 +0200 +++ b/kallithea/templates/pullrequests/pullrequest_show.html Fri Jul 04 14:12:06 2014 +0200 @@ -187,7 +187,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 anyway')}
% endif @@ -211,7 +211,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 anyway')}

% endif