Chris@0: <% @entries.each do |entry| %>
Chris@0: <% tr_id = Digest::MD5.hexdigest(entry.path)
Chris@0: depth = params[:depth].to_i %>
Chris@441: <% ent_path = Redmine::CodesetUtil.replace_invalid_utf8(entry.path) %>
Chris@441: <% ent_name = Redmine::CodesetUtil.replace_invalid_utf8(entry.name) %>
Chris@0:
Chris@441: ">
Chris@0: <% if entry.is_dir? %>
Chris@1115:
Chris@0: <% end %>
Chris@245: <%= link_to h(ent_name),
Chris@1116: {:action => (entry.is_dir? ? 'show' : 'entry'), :id => @project, :repository_id => @repository.identifier_param, :path => to_path_param(ent_path), :rev => @rev},
Chris@245: :class => (entry.is_dir? ? 'icon icon-folder' : "icon icon-file #{Redmine::MimeType.css_class_of(ent_name)}")%>
Chris@0: |
Chris@0: <%= (entry.size ? number_to_human_size(entry.size) : "?") unless entry.is_dir? %> |
Chris@441: <% if @repository.report_last_commit %>
Chris@1115: <%= link_to_revision(entry.changeset, @repository) if entry.changeset %> |
Chris@0: <%= distance_of_time_in_words(entry.lastrev.time, Time.now) if entry.lastrev && entry.lastrev.time %> |
Chris@1115: <%= entry.author %> |
Chris@1115:
Chris@441: <% end %>
Chris@0:
Chris@0: <% end %>