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