2015-04-27 16:58:16 +08:00
|
|
|
<%= call_hook(:view_repositories_show_contextual, {:repository => @repository, :project => @project}) %>
|
2015-04-16 05:01:09 +08:00
|
|
|
<div class="project_r_h">
|
|
|
|
<h2 class="project_h2">版本库</h2>
|
|
|
|
</div>
|
|
|
|
<div class="repository_con" style="line-height:1.9;">
|
2015-04-27 16:58:16 +08:00
|
|
|
<div class="repositorytitle" style="float:left;">
|
2015-04-16 05:01:09 +08:00
|
|
|
<%= render :partial => 'breadcrumbs',
|
2015-06-12 16:48:43 +08:00
|
|
|
:locals => {:path => @path, :kind => 'dir', :revision => @rev} %>
|
2015-04-16 05:01:09 +08:00
|
|
|
<%= render :partial => 'navigation' %>
|
2015-04-27 16:58:16 +08:00
|
|
|
</div>
|
|
|
|
<!--contextual end-->
|
2015-04-16 05:01:09 +08:00
|
|
|
<div class="cl"></div>
|
|
|
|
<div class=" c_dark f14">
|
2015-04-27 16:58:16 +08:00
|
|
|
<p>
|
|
|
|
<% if @repository.type.to_s=="Repository::Git" %>
|
|
|
|
<%= @repos_url %>
|
|
|
|
<% else %>
|
|
|
|
<%= h @repository.url %>
|
2015-04-16 13:40:46 +08:00
|
|
|
<% end %>
|
2015-04-16 05:01:09 +08:00
|
|
|
</p>
|
2015-04-27 16:58:16 +08:00
|
|
|
|
|
|
|
<p class="mb10 break_word">
|
|
|
|
(<%= l(:label_all_revisions) %><%= @repositories.sort.collect { |repo|
|
2015-04-16 05:01:09 +08:00
|
|
|
link_to h(repo.name),
|
|
|
|
{:controller => 'repositories', :action => 'show',
|
|
|
|
:id => @project, :repository_id => repo.identifier_param, :rev => nil, :path => nil},
|
2015-06-12 16:48:43 +08:00
|
|
|
:class => 'repository' + (repo == @repository ? ' selected' : ''),
|
|
|
|
:class => "mb10 break_word c_orange" }.join(' | ').html_safe %>)
|
2015-04-16 05:01:09 +08:00
|
|
|
</p>
|
2015-04-27 16:58:16 +08:00
|
|
|
</div>
|
2014-10-28 14:19:13 +08:00
|
|
|
</div>
|
2015-06-12 16:48:43 +08:00
|
|
|
<% if !@entries.nil? && authorize_for('repositories', 'browse') %>
|
|
|
|
<%= render :partial => 'dir_list' %>
|
|
|
|
<% end %>
|
|
|
|
<%= 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 = '|' %>
|
2014-10-28 14:19:13 +08:00
|
|
|
<% end %>
|
2015-06-12 16:48:43 +08:00
|
|
|
<% 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" %>
|
2014-10-28 14:19:13 +08:00
|
|
|
<% end %>
|
2015-06-12 16:48:43 +08:00
|
|
|
</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 %>
|
2013-08-01 10:33:49 +08:00
|
|
|
|
2015-06-12 16:48:43 +08:00
|
|
|
<!-- added by bai -->
|
|
|
|
<p class="fb c_dark mt10">查看如何提交代码:
|
|
|
|
<%= link_to(l(:label_how_commit_code_chinese), ch_usage_path, :class => "c_blue") %>
|
|
|
|
<%= link_to('English', en_usage_path, :class => "c_blue") %>
|
2015-04-27 16:58:16 +08:00
|
|
|
|
2015-06-12 16:48:43 +08:00
|
|
|
<div class="cl"></div>
|
2013-08-03 22:18:30 +08:00
|
|
|
|
2013-08-01 10:33:49 +08:00
|
|
|
<% content_for :header_tags do %>
|
2015-04-27 16:58:16 +08:00
|
|
|
<%= stylesheet_link_tag "scm" %>
|
2013-08-01 10:33:49 +08:00
|
|
|
<% end %>
|
|
|
|
|
|
|
|
<% html_title(l(:label_repository)) -%>
|