66 lines
2.9 KiB
Plaintext
66 lines
2.9 KiB
Plaintext
<% project_path_cut = RepositoriesHelper::PROJECT_PATH_CUT %>
|
||
<% ip = RepositoriesHelper::REPO_IP_ADDRESS %><!--Added by tanxianbo For formatting project's path-->
|
||
<% if @project.repositories.any? %>
|
||
<table class="list">
|
||
<thead>
|
||
<tr>
|
||
<th><%= l(:field_identifier) %></th>
|
||
<th><%= l(:field_repository_is_default) %></th>
|
||
<th><%= l(:label_scm) %></th>
|
||
<th><%= l(:label_repository_path) %></th>
|
||
<th></th>
|
||
</tr>
|
||
</thead>
|
||
<tbody>
|
||
<% @project.repositories.sort.each do |repository| %>
|
||
<tr class="<%= cycle 'odd', 'even' %>">
|
||
<td>
|
||
<%= link_to repository.identifier,
|
||
{:controller => 'repositories', :action => 'show',:id => @project, :repository_id => repository.identifier_param} if repository.identifier.present? %>
|
||
</td>
|
||
<td align="center"><%= checked_image repository.is_default? %></td>
|
||
<td><%=h repository.scm_name %></td>
|
||
<%if repository.scm_name=="Git"%>
|
||
<td>http://<%= repository.login.to_s %>_<%= repository.identifier.to_s%>@<%= ip %><%=h repository.url.slice(project_path_cut, repository.url.length) %></td><!--Modified by tanxianbo-->
|
||
<%else %>
|
||
<td><%=h repository.url %></td>
|
||
<% end %>
|
||
|
||
<td class="buttons" style="text-align:left">
|
||
<% if repository.scm_name=="Subversion"%>
|
||
<%if User.current.allowed_to?(:manage_repository, @project) %>
|
||
<%= link_to(l(:label_user_plural), committers_repository_path(repository),
|
||
:class => 'icon icon-user') %>
|
||
<%= link_to(l(:button_edit), edit_repository_path(repository),
|
||
:class => 'icon icon-edit') %>
|
||
<%= delete_link repository_path(repository) %>
|
||
<% end %>
|
||
<% elsif repository.scm_name=="Git"%>
|
||
<%if User.current.allowed_to?(:manage_repository, @project) %>
|
||
<!-- <%= link_to(l(:button_edit), edit_repository_path(repository),
|
||
:class => 'icon icon-edit') %> -->
|
||
<%= link_to(l(:label_user_plural), committers_repository_path(repository),
|
||
:class => 'icon icon-user') %>
|
||
<% if repository.login.to_s==User.current.login.to_s %>
|
||
<%= delete_link repository_path(repository) %>
|
||
<% end %>
|
||
<% end %>
|
||
<% end %>
|
||
</td>
|
||
</tr>
|
||
<% end %>
|
||
</tbody>
|
||
</table>
|
||
<% else %>
|
||
<p class="nodata"><%= l(:label_no_data) %></p>
|
||
<% end %>
|
||
|
||
<% course_tag = @project.project_type %>
|
||
<% if User.current.allowed_to?(:manage_repository, @project) %>
|
||
<p><%= link_to l(:label_repository_new), new_project_repository_path(@project, :course => course_tag), :class => 'icon icon-add' %></p>
|
||
<% end %>
|
||
<!-- no repository ,new by xianbo-->
|
||
<% if User.current.allowed_to?(:manage_repository, @project) %>
|
||
<p><%= l(:label_repository_no) %>
|
||
<%= link_to l(:label_repository_new_repos), newrepo_project_repository_path(@project, :course => course_tag), :class => 'icon icon-add' %></p>
|
||
<% end %> |