##// END OF EJS Templates
Use image_path for the favicon instead to pick up asset hosts. #3301...
Use image_path for the favicon instead to pick up asset hosts. #3301 git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@3899 e93f8b46-1217-0410-a6f0-8f06a7374b81

File last commit:

r3499:89aa60cbbd2c
r3785:ca663fcd10a2
Show More
_breadcrumbs.rhtml
21 lines | 666 B | text/html+ruby | RhtmlLexer
<%= link_to 'root', :action => 'show', :id => @project, :path => '', :rev => @rev %>
<%
dirs = path.split('/')
if 'file' == kind
filename = dirs.pop
end
link_path = ''
dirs.each do |dir|
next if dir.blank?
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 %>
<% end %>
<% if filename %>
/ <%= link_to h(filename), :action => 'changes', :id => @project, :path => to_path_param("#{link_path}/#{filename}"), :rev => @rev %>
<% end %>
<%= "@ #{h revision}" if revision %>
<% html_title(with_leading_slash(path)) -%>