]> source.dussan.org Git - redmine.git/commitdiff
scm: recovery showing "root @ branch" in repository tree viewing.
authorToshi MARUYAMA <marutosijp2@yahoo.co.jp>
Tue, 15 Mar 2011 08:21:26 +0000 (08:21 +0000)
committerToshi MARUYAMA <marutosijp2@yahoo.co.jp>
Tue, 15 Mar 2011 08:21:26 +0000 (08:21 +0000)
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@5139 e93f8b46-1217-0410-a6f0-8f06a7374b81

app/controllers/repositories_controller.rb
app/views/repositories/_breadcrumbs.rhtml

index ecf90084997e38b9a1a755d5b21a2fbb27192727..bdb59dfe7f8cca4cb8e0acc06cd2377815f588e0 100644 (file)
@@ -77,6 +77,7 @@ class RepositoriesController < ApplicationController
     @repository.fetch_changesets if Setting.autofetch_changesets? && @path.empty?
 
     @entries = @repository.entries(@path, @rev)
+    @changeset = @repository.find_changeset_by_name(@rev)
     if request.xhr?
       @entries ? render(:partial => 'dir_list_content') : render(:nothing => true)
     else
index 1dd2445c745e9401f6985da9892d7006680f5d20..026cab93a04df53e65eb9fb298d2f8e62a014a38 100644 (file)
@@ -10,12 +10,19 @@ dirs.each do |dir|
     link_path << '/' unless link_path.empty?
     link_path << "#{dir}" 
     %>
-    / <%= link_to h(dir), :action => 'show', :id => @project, :path => to_path_param(link_path), :rev => @rev %>
+    / <%= link_to h(dir), :action => 'show', :id => @project,
+                :path => to_path_param(link_path), :rev => @rev %>
 <% end %>
 <% if filename %>
-    / <%= link_to h(filename), :action => 'changes', :id => @project, :path => to_path_param("#{link_path}/#{filename}"), :rev => @rev %>
+    / <%= link_to h(filename),
+                   :action => 'changes', :id => @project,
+                   :path => to_path_param("#{link_path}/#{filename}"), :rev => @rev %>
 <% end %>
-
-<%= "@ #{h format_revision(@changeset)}" if @changeset %>
+<%
+  # @rev is revsion or Git and Mercurial branch or tag.
+  # For Mercurial *tip*, @rev and @changeset are nil.
+  rev_text = @changeset.nil? ? @rev : format_revision(@changeset)
+%>
+<%= "@ #{h rev_text}" if rev_text %>
 
 <% html_title(with_leading_slash(path)) -%>