# HG changeset patch # User Mads Kiilerich # Date 1470963888 -7200 # Node ID 8d11063e025d1cdaffabcb036474a8e8d696bb97 # Parent b4db7ff78343ed1f76b38d6401d6cf93ec75c0dd files: always show the requested version - not last changeset that touched the file The last changeset to touch the file is rarely relevant - the whole annotate of individual lines of code will give that kind of information in a much more relevant way. The information is however available in the history drophown. This also gets rid of some weird revision compare. diff -r b4db7ff78343 -r 8d11063e025d kallithea/controllers/files.py --- a/kallithea/controllers/files.py Fri Aug 12 03:04:48 2016 +0200 +++ b/kallithea/controllers/files.py Fri Aug 12 03:04:48 2016 +0200 @@ -166,10 +166,6 @@ if c.file.is_file(): c.load_full_history = False - file_last_cs = c.file.last_changeset - c.file_changeset = (c.changeset - if c.changeset.revision < file_last_cs.revision - else file_last_cs) #determine if we're on branch head _branches = c.db_repo_scm_instance.branches c.on_branch_head = revision in _branches.keys() + _branches.values() diff -r b4db7ff78343 -r 8d11063e025d kallithea/templates/files/files_source.html --- a/kallithea/templates/files/files_source.html Fri Aug 12 03:04:48 2016 +0200 +++ b/kallithea/templates/files/files_source.html Fri Aug 12 03:04:48 2016 +0200 @@ -2,12 +2,12 @@
${h.form(h.url('files_diff_home',repo_name=c.repo_name,f_path=c.f_path),method='get')} - ${h.hidden('diff2',c.file_changeset.raw_id)} + ${h.hidden('diff2',c.changeset.raw_id)} ${h.hidden('diff1')} ${h.submit('diff',_('Diff to Revision'),class_="btn btn-small")} ${h.submit('show_rev',_('Show at Revision'),class_="btn btn-small")} ${h.hidden('annotate', c.annotate)} - ${h.link_to(_('Show Full History'),h.url('changelog_file_home',repo_name=c.repo_name, revision=c.file_changeset.raw_id, f_path=c.f_path),class_="btn btn-small")} + ${h.link_to(_('Show Full History'),h.url('changelog_file_home',repo_name=c.repo_name, revision=c.changeset.raw_id, f_path=c.f_path),class_="btn btn-small")} ${h.link_to(_('Show Authors'),'#',class_="btn btn-small" ,id="show_authors")} ${h.end_form()} @@ -22,17 +22,17 @@
-
${h.link_to(h.show_id(c.file_changeset),h.url('changeset_home',repo_name=c.repo_name,revision=c.file_changeset.raw_id))}
+
${h.link_to(h.show_id(c.changeset),h.url('changeset_home',repo_name=c.repo_name,revision=c.changeset.raw_id))}
${h.format_byte_size(c.file.size,binary=True)}
${c.file.mimetype}
%if c.annotate: - ${h.link_to(_('Show Source'), h.url('files_home', repo_name=c.repo_name,revision=c.file_changeset.raw_id,f_path=c.f_path),class_="btn btn-mini")} + ${h.link_to(_('Show Source'), h.url('files_home', repo_name=c.repo_name,revision=c.changeset.raw_id,f_path=c.f_path),class_="btn btn-mini")} %else: - ${h.link_to(_('Show Annotation'),h.url('files_annotate_home',repo_name=c.repo_name,revision=c.file_changeset.raw_id,f_path=c.f_path),class_="btn btn-mini")} + ${h.link_to(_('Show Annotation'),h.url('files_annotate_home',repo_name=c.repo_name,revision=c.changeset.raw_id,f_path=c.f_path),class_="btn btn-mini")} %endif - ${h.link_to(_('Show as Raw'),h.url('files_raw_home',repo_name=c.repo_name,revision=c.file_changeset.raw_id,f_path=c.f_path),class_="btn btn-mini")} - ${h.link_to(_('Download as Raw'),h.url('files_rawfile_home',repo_name=c.repo_name,revision=c.file_changeset.raw_id,f_path=c.f_path),class_="btn btn-mini")} + ${h.link_to(_('Show as Raw'),h.url('files_raw_home',repo_name=c.repo_name,revision=c.changeset.raw_id,f_path=c.f_path),class_="btn btn-mini")} + ${h.link_to(_('Download as Raw'),h.url('files_rawfile_home',repo_name=c.repo_name,revision=c.changeset.raw_id,f_path=c.f_path),class_="btn btn-mini")} % if h.HasRepoPermissionAny('repository.write','repository.admin')(c.repo_name): %if c.on_branch_head and not c.file.is_binary: ${h.link_to(_('Edit on Branch: %s') % c.changeset.branch, h.url('files_edit_home',repo_name=c.repo_name,revision=c.changeset.raw_id,f_path=c.f_path, anchor='edit'),class_="btn btn-mini")} @@ -48,14 +48,14 @@
- ${h.gravatar_div(h.email_or_none(c.file_changeset.author), size=16)} -
${h.person(c.file_changeset.author)}
+ ${h.gravatar_div(h.email_or_none(c.changeset.author), size=16)} +
${h.person(c.changeset.author)}
-
${h.urlify_commit(c.file_changeset.message,c.repo_name)}
+
${h.urlify_commit(c.changeset.message,c.repo_name)}
%if c.file.is_browser_compatible_image(): - + %elif c.file.is_binary:
${_('Binary file (%s)') % c.file.mimetype} @@ -73,7 +73,7 @@ %if c.annotate: ${h.link_to(_('Show full annotation anyway.'), h.url.current(fulldiff=1, **request.GET.mixed()))} %else: - ${h.link_to(_('Show as raw.'), h.url('files_raw_home',repo_name=c.repo_name,revision=c.file_changeset.raw_id,f_path=c.f_path))} + ${h.link_to(_('Show as raw.'), h.url('files_raw_home',repo_name=c.repo_name,revision=c.changeset.raw_id,f_path=c.f_path))} %endif %endif