Adds links to repository directories in the browser (#1094).
git-svn-id: http://redmine.rubyforge.org/svn/trunk@1544 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
parent
11e9891425
commit
597c1e6c09
|
@ -1,26 +1,18 @@
|
||||||
<% @entries.each do |entry| %>
|
<% @entries.each do |entry| %>
|
||||||
<% tr_id = Digest::MD5.hexdigest(entry.path)
|
<% tr_id = Digest::MD5.hexdigest(entry.path)
|
||||||
depth = params[:depth].to_i %>
|
depth = params[:depth].to_i %>
|
||||||
<tr id="<%= tr_id %>" class="<%= params[:parent_id] %> entry">
|
<tr id="<%= tr_id %>" class="<%= params[:parent_id] %> entry <%= entry.kind %>">
|
||||||
<td class="filename">
|
<td style="padding-left: <%=18 * depth%>px;" class="filename">
|
||||||
<%= if entry.is_dir?
|
<% if entry.is_dir? %>
|
||||||
link_to_remote h(entry.name),
|
<span class="expander" onclick="<%= remote_function :url => {:action => 'browse', :id => @project, :path => entry.path, :rev => @rev, :depth => (depth + 1), :parent_id => tr_id},
|
||||||
{:url => {:action => 'browse', :id => @project, :path => entry.path, :rev => @rev, :depth => (depth + 1), :parent_id => tr_id},
|
|
||||||
:update => { :success => tr_id },
|
:update => { :success => tr_id },
|
||||||
:position => :after,
|
:position => :after,
|
||||||
:success => "scmEntryLoaded('#{tr_id}')",
|
:success => "scmEntryLoaded('#{tr_id}')",
|
||||||
:condition => "scmEntryClick('#{tr_id}')"
|
:condition => "scmEntryClick('#{tr_id}')"%>"> </span>
|
||||||
},
|
<% end %>
|
||||||
{:href => url_for({:action => 'browse', :id => @project, :path => entry.path, :rev => @rev}),
|
<%= link_to h(entry.name),
|
||||||
:class => ('icon icon-folder'),
|
|
||||||
:style => "margin-left: #{18 * depth}px;"
|
|
||||||
}
|
|
||||||
else
|
|
||||||
link_to h(entry.name),
|
|
||||||
{:action => (entry.is_dir? ? 'browse' : 'changes'), :id => @project, :path => entry.path, :rev => @rev},
|
{:action => (entry.is_dir? ? 'browse' : 'changes'), :id => @project, :path => entry.path, :rev => @rev},
|
||||||
:class => 'icon icon-file',
|
:class => (entry.is_dir? ? 'icon icon-folder' : 'icon icon-file')%>
|
||||||
:style => "margin-left: #{18 * depth}px;"
|
|
||||||
end %>
|
|
||||||
</td>
|
</td>
|
||||||
<td class="size"><%= (entry.size ? number_to_human_size(entry.size) : "?") unless entry.is_dir? %></td>
|
<td class="size"><%= (entry.size ? number_to_human_size(entry.size) : "?") unless entry.is_dir? %></td>
|
||||||
<td class="revision"><%= link_to(format_revision(entry.lastrev.name), :action => 'revision', :id => @project, :rev => entry.lastrev.identifier) if entry.lastrev && entry.lastrev.identifier %></td>
|
<td class="revision"><%= link_to(format_revision(entry.lastrev.name), :action => 'revision', :id => @project, :rev => entry.lastrev.identifier) if entry.lastrev && entry.lastrev.identifier %></td>
|
||||||
|
|
Binary file not shown.
After Width: | Height: | Size: 335 B |
Binary file not shown.
After Width: | Height: | Size: 335 B |
|
@ -97,6 +97,10 @@ tr.entry td.size { text-align: right; font-size: 90%; }
|
||||||
tr.entry td.revision, tr.entry td.author { text-align: center; }
|
tr.entry td.revision, tr.entry td.author { text-align: center; }
|
||||||
tr.entry td.age { text-align: right; }
|
tr.entry td.age { text-align: right; }
|
||||||
|
|
||||||
|
tr.entry span.expander {background-image: url(../images/bullet_toggle_plus.png); padding-left: 8px; margin-left: 0; cursor: pointer;}
|
||||||
|
tr.entry.open span.expander {background-image: url(../images/bullet_toggle_minus.png);}
|
||||||
|
tr.entry.file td.filename a { margin-left: 16px; }
|
||||||
|
|
||||||
tr.changeset td.author { text-align: center; width: 15%; }
|
tr.changeset td.author { text-align: center; width: 15%; }
|
||||||
tr.changeset td.committed_on { text-align: center; width: 15%; }
|
tr.changeset td.committed_on { text-align: center; width: 15%; }
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue