Show More
The requested changes are too big and content was truncated. Show full diff
@@ -519,7 +519,7 b' class DiffSet(object):' | |||
|
519 | 519 | 'operation': patch['operation'], |
|
520 | 520 | 'source_mode': patch['stats']['old_mode'], |
|
521 | 521 | 'target_mode': patch['stats']['new_mode'], |
|
522 |
'limited_diff': |
|
|
522 | 'limited_diff': patch['is_limited_diff'], | |
|
523 | 523 | 'hunks': [], |
|
524 | 524 | 'hunk_ops': None, |
|
525 | 525 | 'diffset': self, |
@@ -121,7 +121,7 b' collapse_all = len(diffset.files) > coll' | |||
|
121 | 121 | <a class="tooltip revision" title="${h.tooltip(commit.message)}" href="${h.route_path('repo_commit',repo_name=diffset.repo_name,commit_id=commit.raw_id)}">${('r%s:%s' % (commit.idx,h.short_id(commit.raw_id)))}</a> - |
|
122 | 122 | ${h.age_component(commit.date)} |
|
123 | 123 | % if diffset.limited_diff: |
|
124 |
- ${_('The requested c |
|
|
124 | - ${_('The requested changes are too big and content was truncated.')} | |
|
125 | 125 | ${_ungettext('%(num)s file changed.', '%(num)s files changed.', diffset.changed_files) % {'num': diffset.changed_files}} |
|
126 | 126 | <a href="${h.current_route_path(request, fulldiff=1)}" onclick="return confirm('${_("Showing a big diff might take some time and resources, continue?")}')">${_('Show full diff')}</a> |
|
127 | 127 | % elif hasattr(c, 'commit_ranges') and len(c.commit_ranges) > 1: |
@@ -180,7 +180,7 b' collapse_all = len(diffset.files) > coll' | |||
|
180 | 180 | %if filediff.limited_diff: |
|
181 | 181 | <tr class="cb-warning cb-collapser"> |
|
182 | 182 | <td class="cb-text" ${(c.user_session_attrs["diffmode"] == 'unified' and 'colspan=4' or 'colspan=6')}> |
|
183 | ${_('The requested commit is too big and content was truncated.')} <a href="${h.current_route_path(request, fulldiff=1)}" onclick="return confirm('${_("Showing a big diff might take some time and resources, continue?")}')">${_('Show full diff')}</a> | |
|
183 | ${_('The requested commit or file is too big and content was truncated.')} <a href="${h.current_route_path(request, fulldiff=1)}" onclick="return confirm('${_("Showing a big diff might take some time and resources, continue?")}')">${_('Show full diff')}</a> | |
|
184 | 184 | </td> |
|
185 | 185 | </tr> |
|
186 | 186 | %else: |
|
1 | NO CONTENT: modified file | |
The requested commit or file is too big and content was truncated. Show full diff |
|
1 | NO CONTENT: modified file | |
The requested commit or file is too big and content was truncated. Show full diff |
General Comments 0
You need to be logged in to leave comments.
Login now