2008-10-25 08:21:57 +04:00
|
|
|
<%= call_hook(:view_repositories_show_contextual, { :repository => @repository, :project => @project }) %>
|
2008-06-15 19:56:47 +04:00
|
|
|
|
2009-08-16 02:41:40 +04:00
|
|
|
<div class="contextual">
|
|
|
|
<%= render :partial => 'navigation' %>
|
2007-03-25 21:11:46 +04:00
|
|
|
</div>
|
|
|
|
|
2009-08-16 02:41:40 +04:00
|
|
|
<h2><%= render :partial => 'breadcrumbs', :locals => { :path => @path, :kind => 'dir', :revision => @rev } %></h2>
|
2006-12-24 16:38:45 +03:00
|
|
|
|
2007-08-29 20:52:35 +04:00
|
|
|
<% if !@entries.nil? && authorize_for('repositories', 'browse') %>
|
2007-01-05 22:10:57 +03:00
|
|
|
<%= render :partial => 'dir_list' %>
|
2007-06-13 00:12:05 +04:00
|
|
|
<% end %>
|
2007-01-05 22:10:57 +03:00
|
|
|
|
2009-08-17 18:26:13 +04:00
|
|
|
<%= render_properties(@properties) %>
|
|
|
|
|
|
|
|
<% if @changesets && !@changesets.empty? && authorize_for('repositories', 'revisions') %>
|
2007-03-25 16:12:15 +04:00
|
|
|
<h3><%= l(:label_latest_revision_plural) %></h3>
|
2007-06-13 00:12:05 +04:00
|
|
|
<%= render :partial => 'revisions', :locals => {:project => @project, :path => '', :revisions => @changesets, :entry => nil }%>
|
2009-08-16 02:41:40 +04:00
|
|
|
<p><%= link_to l(:label_view_all_revisions), :action => 'revisions', :id => @project %></p>
|
2007-08-29 20:52:35 +04:00
|
|
|
<% content_for :header_tags do %>
|
|
|
|
<%= auto_discovery_link_tag(:atom, params.merge({:format => 'atom', :action => 'revisions', :id => @project, :page => nil, :key => User.current.rss_key})) %>
|
|
|
|
<% end %>
|
2009-01-29 16:53:17 +03:00
|
|
|
|
|
|
|
<% other_formats_links do |f| %>
|
|
|
|
<%= f.link_to 'Atom', :url => {:action => 'revisions', :id => @project, :key => User.current.rss_key} %>
|
|
|
|
<% end %>
|
2007-03-25 16:12:15 +04:00
|
|
|
<% end %>
|
|
|
|
|
2007-01-05 22:10:57 +03:00
|
|
|
<% content_for :header_tags do %>
|
|
|
|
<%= stylesheet_link_tag "scm" %>
|
2007-06-13 00:12:05 +04:00
|
|
|
<% end %>
|
2007-12-07 21:42:40 +03:00
|
|
|
|
2008-01-03 01:41:53 +03:00
|
|
|
<% html_title(l(:label_repository)) -%>
|