]> source.dussan.org Git - redmine.git/commitdiff
View content of repository files by default, instead of its history (#25999).
authorJean-Philippe Lang <jp_lang@yahoo.fr>
Sat, 10 Jun 2017 08:40:00 +0000 (08:40 +0000)
committerJean-Philippe Lang <jp_lang@yahoo.fr>
Sat, 10 Jun 2017 08:40:00 +0000 (08:40 +0000)
Patch by Jan Schulz-Hofen.

git-svn-id: http://svn.redmine.org/redmine/trunk@16646 e93f8b46-1217-0410-a6f0-8f06a7374b81

app/views/repositories/_breadcrumbs.html.erb
app/views/repositories/_dir_list_content.html.erb
app/views/repositories/_link_to_functions.html.erb

index eb115f9ad4fa70b4cfb52c09a77e8d0cb06328fe..82f25d43ad087feebb5bfcbfe0ae42adef69b854 100644 (file)
@@ -18,7 +18,7 @@ dirs.each do |dir|
 <% end %>
 <% if filename %>
     / <%= link_to filename,
-                   :action => 'changes', :id => @project, :repository_id => @repository.identifier_param,
+                   :action => 'entry', :id => @project, :repository_id => @repository.identifier_param,
                    :path => to_path_param("#{link_path}/#{filename}"), :rev => @rev %>
 <% end %>
 <%
index 9721fa66c6e54b7e3db9c84f97033ec9013946d1..f78073b0c48ba9f3e81fa4b8c308ff79b879793f 100644 (file)
@@ -17,7 +17,7 @@
                        :parent_id => tr_id)) %>');">&nbsp;</span>
 <% end %>
 <%=  link_to ent_name,
-          {:action => (entry.is_dir? ? 'show' : 'changes'), :id => @project, :repository_id => @repository.identifier_param, :path => to_path_param(ent_path), :rev => @rev},
+          {:action => (entry.is_dir? ? 'show' : 'entry'), :id => @project, :repository_id => @repository.identifier_param, :path => to_path_param(ent_path), :rev => @rev},
           :class => (entry.is_dir? ? 'icon icon-folder' : "icon icon-file #{Redmine::MimeType.css_class_of(ent_name)}")%>
 </td>
 <td class="size"><%= (entry.size ? number_to_human_size(entry.size) : "?") unless entry.is_dir? %></td>
index f75a7ce5fe4a4d0e3149e27c9c9883a231454d0f..53a5acc40af62d5ccd6bff42fbcf65ec06558d1a 100644 (file)
@@ -1,10 +1,10 @@
 <% if @entry && @entry.kind == 'file' %>
 
 <p>
-<%= link_to_if action_name != 'changes', l(:label_history), {:action => 'changes', :id => @project, :repository_id => @repository.identifier_param, :path => to_path_param(@path), :rev => @rev } %> |
 <% if @repository.supports_cat? %>
     <%= link_to_if action_name != 'entry', l(:button_view), {:action => 'entry', :id => @project, :repository_id => @repository.identifier_param, :path => to_path_param(@path), :rev => @rev } %> |
 <% end %>
+<%= link_to_if action_name != 'changes', l(:label_history), {:action => 'changes', :id => @project, :repository_id => @repository.identifier_param, :path => to_path_param(@path), :rev => @rev } %> |
 <% if @repository.supports_annotate? %>
     <%= link_to_if action_name != 'annotate', l(:button_annotate), {:action => 'annotate', :id => @project, :repository_id => @repository.identifier_param, :path => to_path_param(@path), :rev => @rev } %> |
 <% end %>