|
|
|
@ -1,22 +1,16 @@
|
|
|
|
|
<%= call_hook(:view_repositories_show_contextual, {:repository => @repository, :project => @project}) %>
|
|
|
|
|
<div class="project_r_h">
|
|
|
|
|
<h2 class="project_h2">版本库</h2>
|
|
|
|
|
<div class="fl"><h2 class="project_h2_repository"><%= render :partial => 'breadcrumbs', :locals => {:path => @path, :kind => 'dir', :revision => @rev} %></h2></div>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="repository_con" style="line-height:1.9;">
|
|
|
|
|
<div class="repositorytitle" style="float:left;">
|
|
|
|
|
<%= render :partial => 'breadcrumbs', :locals => {:path => @path, :kind => 'dir', :revision => @rev} %>
|
|
|
|
|
<%= render :partial => 'navigation' %>
|
|
|
|
|
</div>
|
|
|
|
|
<%= render :partial => 'navigation' %>
|
|
|
|
|
<div class="cl"></div>
|
|
|
|
|
|
|
|
|
|
<div class=" c_dark f14">
|
|
|
|
|
<p>
|
|
|
|
|
<% if @repository.type.to_s=="Repository::Gitlab" %>
|
|
|
|
|
<% if @repository.type.to_s=="Repository::Gitlab" %>
|
|
|
|
|
<%= @repos_url %>
|
|
|
|
|
<% else %>
|
|
|
|
|
<% else %>
|
|
|
|
|
<%= h @repository.url %>
|
|
|
|
|
<% end %>
|
|
|
|
|
</p>
|
|
|
|
|
<% end %>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
@ -32,7 +26,45 @@
|
|
|
|
|
<%= render_properties(@properties) %>
|
|
|
|
|
|
|
|
|
|
<!-- 代码修订 -->
|
|
|
|
|
<% if authorize_for('repositories', 'revisions') %>
|
|
|
|
|
<%# if @changesets && !@changesets.empty? %>
|
|
|
|
|
<h3>
|
|
|
|
|
<%= l(:label_latest_revision_plural) %>
|
|
|
|
|
</h3>
|
|
|
|
|
<%= render :partial => 'revisions',
|
|
|
|
|
:locals => {:project => @project, :path => @path,
|
|
|
|
|
:revisions => @changesets, :entry => nil} %>
|
|
|
|
|
<%# end %>
|
|
|
|
|
|
|
|
|
|
<p style="padding-top: 10px;">
|
|
|
|
|
<% has_branches = (!@repository.branches.nil? && @repository.branches.length > 0)
|
|
|
|
|
sep = '' %>
|
|
|
|
|
<% if @repository.supports_all_revisions? && @path.blank? %>
|
|
|
|
|
<%= link_to l(:label_view_all_revisions), {:action => 'revisions', :id => @project,
|
|
|
|
|
:repository_id => @repository.identifier_param},
|
|
|
|
|
:class => "orange_u_btn" %>
|
|
|
|
|
<% sep = '|' %>
|
|
|
|
|
<% end %>
|
|
|
|
|
<% if @repository.supports_directory_revisions? && (has_branches || !@path.blank? || !@rev.blank?) %>
|
|
|
|
|
<%= sep %>
|
|
|
|
|
<%= link_to l(:label_view_revisions),
|
|
|
|
|
{:action => 'changes',
|
|
|
|
|
:path => to_path_param(@path),
|
|
|
|
|
:id => @project,
|
|
|
|
|
:repository_id => @repository.identifier_param,
|
|
|
|
|
:rev => @rev},
|
|
|
|
|
:class => "orange_u_btn" %>
|
|
|
|
|
<% end %>
|
|
|
|
|
</p>
|
|
|
|
|
<% if @repository.supports_all_revisions? %>
|
|
|
|
|
<% 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 %>
|
|
|
|
|
<% end %>
|
|
|
|
|
<% end %>
|
|
|
|
|
|
|
|
|
|
<!-- added by bai -->
|
|
|
|
|
<p class="fb mt10"><a href="http://<%=Setting.host_name %>/forums/1/memos/1232" class=" c_blue ">点击查看如何提交代码</a></p>
|
|
|
|
|