${h.form(h.url('files_diff_home',repo_name=c.repo_name,f_path=c.f_path),method='get')}
- ${h.hidden('diff2',c.files_list.last_changeset.short_id)}
- ${h.select('diff1',c.files_list.last_changeset.short_id,c.file_history)}
+ ${h.hidden('diff2',c.files_list.last_changeset.raw_id)}
+ ${h.select('diff1',c.files_list.last_changeset.raw_id,c.file_history)}
${h.submit('diff','diff to revision',class_="ui-button ui-widget ui-state-default ui-corner-all")}
${h.submit('show_rev','show at revision',class_="ui-button ui-widget ui-state-default ui-corner-all")}
${h.end_form()}
@@ -32,15 +32,15 @@
- % if c.files_list.size < c.file_size_limit:
+ % if c.files_list.size < c.cut_off_limit:
${h.pygmentize(c.files_list,linenos=True,anchorlinenos=True,lineanchors='S',cssclass="code-highlight")}
%else:
${_('File is to big to display')} ${h.link_to(_('show as raw'),
- h.url('files_raw_home',repo_name=c.repo_name,revision=c.cur_rev,f_path=c.f_path))}
+ h.url('files_raw_home',repo_name=c.repo_name,revision=c.changeset.raw_id,f_path=c.f_path))}
%endif