Mercurial > hg > soundsoftware-site
comparison app/views/repositories/_dir_list_content.rhtml @ 0:513646585e45
* Import Redmine trunk SVN rev 3859
author | Chris Cannam |
---|---|
date | Fri, 23 Jul 2010 15:52:44 +0100 |
parents | |
children | 7c48bad7d85d |
comparison
equal
deleted
inserted
replaced
-1:000000000000 | 0:513646585e45 |
---|---|
1 <% @entries.each do |entry| %> | |
2 <% tr_id = Digest::MD5.hexdigest(entry.path) | |
3 depth = params[:depth].to_i %> | |
4 <tr id="<%= tr_id %>" class="<%= h params[:parent_id] %> entry <%= entry.kind %>"> | |
5 <td style="padding-left: <%=18 * depth%>px;" class="filename"> | |
6 <% if entry.is_dir? %> | |
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}, | |
8 :method => :get, | |
9 :update => { :success => tr_id }, | |
10 :position => :after, | |
11 :success => "scmEntryLoaded('#{tr_id}')", | |
12 :condition => "scmEntryClick('#{tr_id}')"%>"> </span> | |
13 <% end %> | |
14 <%= link_to h(entry.name), | |
15 {:action => (entry.is_dir? ? 'show' : 'changes'), :id => @project, :path => to_path_param(entry.path), :rev => @rev}, | |
16 :class => (entry.is_dir? ? 'icon icon-folder' : "icon icon-file #{Redmine::MimeType.css_class_of(entry.name)}")%> | |
17 </td> | |
18 <td class="size"><%= (entry.size ? number_to_human_size(entry.size) : "?") unless entry.is_dir? %></td> | |
19 <% changeset = @project.repository.changesets.find_by_revision(entry.lastrev.identifier) if entry.lastrev && entry.lastrev.identifier %> | |
20 <td class="revision"><%= link_to_revision(changeset.revision, @project) if changeset %></td> | |
21 <td class="age"><%= distance_of_time_in_words(entry.lastrev.time, Time.now) if entry.lastrev && entry.lastrev.time %></td> | |
22 <td class="author"><%= changeset.nil? ? h(entry.lastrev.author.to_s.split('<').first) : changeset.author if entry.lastrev %></td> | |
23 <td class="comments"><%=h truncate(changeset.comments, :length => 50) unless changeset.nil? %></td> | |
24 </tr> | |
25 <% end %> |