Chris@0
|
1 <% @entries.each do |entry| %>
|
Chris@0
|
2 <% tr_id = Digest::MD5.hexdigest(entry.path)
|
Chris@0
|
3 depth = params[:depth].to_i %>
|
Chris@0
|
4 <tr id="<%= tr_id %>" class="<%= h params[:parent_id] %> entry <%= entry.kind %>">
|
Chris@0
|
5 <td style="padding-left: <%=18 * depth%>px;" class="filename">
|
Chris@0
|
6 <% if entry.is_dir? %>
|
Chris@0
|
7 <span class="expander" onclick="<%= remote_function :url => {:action => 'show', :id => @project, :path => to_path_param(entry.path), :rev => @rev, :depth => (depth + 1), :parent_id => tr_id},
|
Chris@0
|
8 :method => :get,
|
Chris@0
|
9 :update => { :success => tr_id },
|
Chris@0
|
10 :position => :after,
|
Chris@0
|
11 :success => "scmEntryLoaded('#{tr_id}')",
|
Chris@0
|
12 :condition => "scmEntryClick('#{tr_id}')"%>"> </span>
|
Chris@0
|
13 <% end %>
|
Chris@0
|
14 <%= link_to h(entry.name),
|
Chris@0
|
15 {:action => (entry.is_dir? ? 'show' : 'changes'), :id => @project, :path => to_path_param(entry.path), :rev => @rev},
|
Chris@0
|
16 :class => (entry.is_dir? ? 'icon icon-folder' : "icon icon-file #{Redmine::MimeType.css_class_of(entry.name)}")%>
|
Chris@0
|
17 </td>
|
Chris@0
|
18 <td class="size"><%= (entry.size ? number_to_human_size(entry.size) : "?") unless entry.is_dir? %></td>
|
Chris@0
|
19 <% changeset = @project.repository.changesets.find_by_revision(entry.lastrev.identifier) if entry.lastrev && entry.lastrev.identifier %>
|
Chris@117
|
20 <td class="revision"><%= link_to_revision(changeset, @project) if changeset %></td>
|
Chris@0
|
21 <td class="age"><%= distance_of_time_in_words(entry.lastrev.time, Time.now) if entry.lastrev && entry.lastrev.time %></td>
|
Chris@0
|
22 <td class="author"><%= changeset.nil? ? h(entry.lastrev.author.to_s.split('<').first) : changeset.author if entry.lastrev %></td>
|
Chris@0
|
23 <td class="comments"><%=h truncate(changeset.comments, :length => 50) unless changeset.nil? %></td>
|
Chris@0
|
24 </tr>
|
Chris@0
|
25 <% end %>
|