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) %>
|
|
|
|
|
2011-03-15 10:14:39 +03:00
|
|
|
<% if authorize_for('repositories', 'revisions') %>
|
|
|
|
<% if @changesets && !@changesets.empty? %>
|
2007-03-25 16:12:15 +04:00
|
|
|
<h3><%= l(:label_latest_revision_plural) %></h3>
|
2011-03-15 10:14:39 +03:00
|
|
|
<%= render :partial => 'revisions',
|
|
|
|
:locals => {:project => @project, :path => @path,
|
|
|
|
:revisions => @changesets, :entry => nil }%>
|
2011-03-16 03:50:32 +03:00
|
|
|
<% end %>
|
2011-03-25 02:42:50 +03:00
|
|
|
<p>
|
2011-03-26 05:40:13 +03:00
|
|
|
<%
|
|
|
|
has_branches = (!@repository.branches.nil? && @repository.branches.length > 0)
|
|
|
|
sep = ''
|
|
|
|
%>
|
|
|
|
<% if @repository.supports_all_revisions? && @path.blank? %>
|
2011-03-25 02:42:50 +03:00
|
|
|
<%= link_to l(:label_view_all_revisions), :action => 'revisions', :id => @project %>
|
2011-03-26 05:40:13 +03:00
|
|
|
<% sep = '|' %>
|
2011-03-25 02:42:50 +03:00
|
|
|
<% end %>
|
2011-03-25 02:43:33 +03:00
|
|
|
<%
|
|
|
|
if @repository.supports_directory_revisions? &&
|
|
|
|
( has_branches || !@path.blank? || !@rev.blank? )
|
|
|
|
%>
|
2011-03-26 05:40:13 +03:00
|
|
|
<%= sep %>
|
|
|
|
<%=
|
|
|
|
link_to l(:label_view_revisions),
|
2011-03-25 02:42:50 +03:00
|
|
|
:action => 'changes',
|
2011-03-26 05:39:31 +03:00
|
|
|
:path => to_path_param(@path),
|
|
|
|
:id => @project,
|
|
|
|
:rev => @rev
|
|
|
|
%>
|
2011-03-25 02:42:50 +03:00
|
|
|
<% end %>
|
|
|
|
</p>
|
2011-03-15 08:11:21 +03:00
|
|
|
|
2011-03-25 02:42:50 +03:00
|
|
|
<% if true # @path.blank? %>
|
2011-03-15 10:14:39 +03:00
|
|
|
<% content_for :header_tags do %>
|
2011-03-15 08:11:21 +03:00
|
|
|
<%= auto_discovery_link_tag(
|
|
|
|
:atom, params.merge(
|
|
|
|
{:format => 'atom', :action => 'revisions',
|
|
|
|
:id => @project, :page => nil, :key => User.current.rss_key})) %>
|
2011-03-15 10:14:39 +03:00
|
|
|
<% end %>
|
2011-03-15 08:11:21 +03:00
|
|
|
|
2011-03-15 10:14:39 +03:00
|
|
|
<% other_formats_links do |f| %>
|
2011-03-15 08:11:21 +03:00
|
|
|
<%= f.link_to 'Atom', :url => {:action => 'revisions', :id => @project, :key => User.current.rss_key} %>
|
2011-03-15 10:14:39 +03:00
|
|
|
<% end %>
|
2011-03-15 08:11:21 +03:00
|
|
|
<% 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)) -%>
|