|
@@
-121,7
+121,7
b' collapse_all = len(diffset.files) > coll'
|
|
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> -
|
|
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
|
${h.age_component(commit.date)}
|
|
122
|
${h.age_component(commit.date)}
|
|
123
|
% if diffset.limited_diff:
|
|
123
|
% if diffset.limited_diff:
|
|
124
|
- ${_('The requested commit is too big and content was truncated.')}
|
|
124
|
- ${_('The requested changes are too big and content was truncated.')}
|
|
125
|
${_ungettext('%(num)s file changed.', '%(num)s files changed.', diffset.changed_files) % {'num': diffset.changed_files}}
|
|
125
|
${_ungettext('%(num)s file changed.', '%(num)s files changed.', diffset.changed_files) % {'num': diffset.changed_files}}
|
|
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>
|
|
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
|
% elif hasattr(c, 'commit_ranges') and len(c.commit_ranges) > 1:
|
|
127
|
% elif hasattr(c, 'commit_ranges') and len(c.commit_ranges) > 1:
|
|
@@
-180,22
+180,22
b' collapse_all = len(diffset.files) > coll'
|
|
180
|
%if filediff.limited_diff:
|
|
180
|
%if filediff.limited_diff:
|
|
181
|
<tr class="cb-warning cb-collapser">
|
|
181
|
<tr class="cb-warning cb-collapser">
|
|
182
|
<td class="cb-text" ${(c.user_session_attrs["diffmode"] == 'unified' and 'colspan=4' or 'colspan=6')}>
|
|
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
|
</td>
|
|
184
|
</td>
|
|
185
|
</tr>
|
|
185
|
</tr>
|
|
186
|
%else:
|
|
186
|
%else:
|
|
187
|
%if over_lines_changed_limit:
|
|
187
|
%if over_lines_changed_limit:
|
|
188
|
<tr class="cb-warning cb-collapser">
|
|
188
|
<tr class="cb-warning cb-collapser">
|
|
189
|
<td class="cb-text" ${(c.user_session_attrs["diffmode"] == 'unified' and 'colspan=4' or 'colspan=6')}>
|
|
189
|
<td class="cb-text" ${(c.user_session_attrs["diffmode"] == 'unified' and 'colspan=4' or 'colspan=6')}>
|
|
190
|
${_('This diff has been collapsed as it changes many lines, (%i lines changed)' % lines_changed)}
|
|
190
|
${_('This diff has been collapsed as it changes many lines, (%i lines changed)' % lines_changed)}
|
|
191
|
<a href="#" class="cb-expand"
|
|
191
|
<a href="#" class="cb-expand"
|
|
192
|
onclick="$(this).closest('table').removeClass('cb-collapsed'); updateSticky(); return false;">${_('Show them')}
|
|
192
|
onclick="$(this).closest('table').removeClass('cb-collapsed'); updateSticky(); return false;">${_('Show them')}
|
|
193
|
</a>
|
|
193
|
</a>
|
|
194
|
<a href="#" class="cb-collapse"
|
|
194
|
<a href="#" class="cb-collapse"
|
|
195
|
onclick="$(this).closest('table').addClass('cb-collapsed'); updateSticky(); return false;">${_('Hide them')}
|
|
195
|
onclick="$(this).closest('table').addClass('cb-collapsed'); updateSticky(); return false;">${_('Hide them')}
|
|
196
|
</a>
|
|
196
|
</a>
|
|
197
|
</td>
|
|
197
|
</td>
|
|
198
|
</tr>
|
|
198
|
</tr>
|
|
199
|
%endif
|
|
199
|
%endif
|
|
200
|
%endif
|
|
200
|
%endif
|
|
201
|
|
|
201
|
|