36 lines
1.5 KiB
Plaintext
36 lines
1.5 KiB
Plaintext
<div class="contextual">
|
|
<%= call_hook(:view_repositories_show_contextual, { :repository => @repository, :project => @project }) %>
|
|
<%= link_to l(:label_statistics), {:action => 'stats', :id => @project}, :class => 'icon icon-stats' %>
|
|
|
|
<% if !@entries.nil? && authorize_for('repositories', 'browse') -%>
|
|
<% form_tag({:action => 'browse', :id => @project}, :method => :get) do -%>
|
|
| <%= l(:label_revision) %>: <%= text_field_tag 'rev', @rev, :size => 5 %>
|
|
<% end -%>
|
|
<% end -%>
|
|
</div>
|
|
|
|
<h2><%= l(:label_repository) %> (<%= @repository.scm_name %>)</h2>
|
|
|
|
<% if !@entries.nil? && authorize_for('repositories', 'browse') %>
|
|
<%= render :partial => 'dir_list' %>
|
|
<% end %>
|
|
|
|
<% if !@changesets.empty? && authorize_for('repositories', 'revisions') %>
|
|
<h3><%= l(:label_latest_revision_plural) %></h3>
|
|
<%= render :partial => 'revisions', :locals => {:project => @project, :path => '', :revisions => @changesets, :entry => nil }%>
|
|
<p><%= link_to l(:label_view_revisions), :action => 'revisions', :id => @project %></p>
|
|
<% 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 %>
|
|
|
|
<% other_formats_links do |f| %>
|
|
<%= f.link_to 'Atom', :url => {:action => 'revisions', :id => @project, :key => User.current.rss_key} %>
|
|
<% end %>
|
|
<% end %>
|
|
|
|
<% content_for :header_tags do %>
|
|
<%= stylesheet_link_tag "scm" %>
|
|
<% end %>
|
|
|
|
<% html_title(l(:label_repository)) -%>
|