|
|
|
@ -23,25 +23,23 @@
|
|
|
|
|
<% else %>
|
|
|
|
|
<%= render :partial => 'navigation' %>
|
|
|
|
|
<div class="fl c_grey02 mt5 mr5">克隆网址:</div>
|
|
|
|
|
<textarea id="copy_rep_content" class="cloneUrl mt5 fl" type="input" placeholder="" >
|
|
|
|
|
<% if @repository.type.to_s=="Repository::Gitlab" %>
|
|
|
|
|
<%= @repos_url %>
|
|
|
|
|
<% else %>
|
|
|
|
|
<%= h @repository.url %>
|
|
|
|
|
<% end %>
|
|
|
|
|
</textarea>
|
|
|
|
|
<textarea id="copy_rep_content" class="cloneUrl mt5 fl" type="input" placeholder="http://xianbo_trustie2@repository.trustie.net/xianbo/trustie2.git"><%=@repository.type.to_s=="Repository::Gitlab" ? @repos_url.to_s.lstrip : @repository.url %></textarea>
|
|
|
|
|
<a href="javascript:void(0);" class="clone_btn mt5" onclick="jsCopy()"><span class="vl_copy" title="点击复制版本库地址"></span></a>
|
|
|
|
|
<div class="fl mt5 ml15"><a href="javascript:void(0);" class="vl_btn fb"><span class="vl_zip"></span>ZIP</a> </div>
|
|
|
|
|
<!--<div class="fr mt5"><a href="javascript:void(0);" class="vl_btn fb"><span class="vl_fork"></span>Fork</a> <a href="javascript:void(0);" class="vl_btn_2 fb">109</a> </div>-->
|
|
|
|
|
<div class="cl"></div>
|
|
|
|
|
<div class="recordBanner mt10">
|
|
|
|
|
<%#= image_tag(url_to_avatar(@changesets_latest_coimmit.user), :width => "25", :height => "25", :class => "fl portraitRadius mt2 ml4 mr5") %>
|
|
|
|
|
<span class="fl"><div class="fb fontGrey3 mr5 fl"><%#= @changesets_latest_coimmit.user %></div>
|
|
|
|
|
<div class="fl">提交于<%#= time_tag(@changesets_latest_coimmit.committed_on) %>:</div>
|
|
|
|
|
<div class="commit_content_dec fl" title="<%#= @changesets_latest_coimmit.comments %>"><%#= @changesets_latest_coimmit.comments %></div></span>
|
|
|
|
|
<% if @changesets && !@changesets.empty? %>
|
|
|
|
|
<%= image_tag(url_to_avatar(@changesets_latest_coimmit.user), :width => "25", :height => "25", :class => "fl portraitRadius mt2 ml4 mr5") %>
|
|
|
|
|
<span class="fl"><div class="fb fontGrey3 mr5 fl"><%=link_to @changesets_latest_coimmit.user, user_path(@changesets_latest_coimmit.user) %></div>
|
|
|
|
|
<div class="fl">提交于<%= time_tag(@changesets_latest_coimmit.committed_on) %>:</div>
|
|
|
|
|
<div class="commit_content_dec fl" title="<%= @changesets_latest_coimmit.comments %>"><%= @changesets_latest_coimmit.comments %></div>
|
|
|
|
|
</span>
|
|
|
|
|
<% end %>
|
|
|
|
|
<span class="fr mr5 "><font class="fb ml2 mr2 vl_branch mt2">
|
|
|
|
|
<%= @repository.branches.count %></font> 个分支
|
|
|
|
|
</span>
|
|
|
|
|
|
|
|
|
|
<span class="fr mr5"><font class="fb ml2 mr2 vl_commit">
|
|
|
|
|
<%=link_to @changesets_count, {:action => 'changes', :path => to_path_param(@path), :id => @project, :repository_id => @repository.identifier_param, :rev => @rev} %></font> 提交
|
|
|
|
|
</span>
|
|
|
|
@ -63,31 +61,14 @@
|
|
|
|
|
|
|
|
|
|
<% 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>
|
|
|
|
|
<% 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 %>
|
|
|
|
|
<% 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 %>
|
|
|
|
|
<% end %>
|
|
|
|
|
</p>
|
|
|
|
|
<% if @repository.supports_all_revisions? && @path.blank? %>
|
|
|
|
|
<%= link_to l(:label_view_all_revisions_commits), :action => 'revisions', :id => @project, :repository_id => @repository.identifier_param %>
|
|
|
|
|
<% end %> |
|
|
|
|
|
<% end %>
|
|
|
|
|
<% end %>
|
|
|
|
|
<a href="https://<%=Setting.host_name %>/forums/1/memos/1232" >如何提交代码</a>
|
|
|
|
|
|
|
|
|
|
<% content_for :header_tags do %>
|
|
|
|
|
<%= stylesheet_link_tag "scm" %>
|
|
|
|
|