2013-11-18 08:48:38 +08:00
|
|
|
|
<% project_path_cut = RepositoriesHelper::PROJECT_PATH_CUT %>
|
|
|
|
|
<% ip = RepositoriesHelper::REPO_IP_ADDRESS %><!--Added by tanxianbo For formatting project's path-->
|
2013-08-01 10:33:49 +08:00
|
|
|
|
<% if @project.repositories.any? %>
|
2014-08-07 17:16:00 +08:00
|
|
|
|
<table class="list" style="table-layout: fixed;">
|
2013-08-01 10:33:49 +08:00
|
|
|
|
<thead>
|
|
|
|
|
<tr>
|
|
|
|
|
<th><%= l(:field_identifier) %></th>
|
|
|
|
|
<th><%= l(:field_repository_is_default) %></th>
|
|
|
|
|
<th><%= l(:label_scm) %></th>
|
2013-08-12 16:22:38 +08:00
|
|
|
|
<th><%= l(:label_repository_path) %></th>
|
2013-08-01 10:33:49 +08:00
|
|
|
|
<th></th>
|
|
|
|
|
</tr>
|
|
|
|
|
</thead>
|
|
|
|
|
<tbody>
|
|
|
|
|
<% @project.repositories.sort.each do |repository| %>
|
|
|
|
|
<tr class="<%= cycle 'odd', 'even' %>">
|
2014-08-07 17:16:00 +08:00
|
|
|
|
<td style="white-space:nowrap;overflow:hidden;text-overflow:ellipsis;" title="<%= repository.identifier %>">
|
2014-08-07 11:20:24 +08:00
|
|
|
|
<%= link_to repository.identifier,
|
2013-08-01 10:33:49 +08:00
|
|
|
|
{: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>
|
2014-08-07 17:16:00 +08:00
|
|
|
|
<td align="center"><%=h repository.scm_name %></td>
|
2013-08-12 16:22:38 +08:00
|
|
|
|
<%if repository.scm_name=="Git"%>
|
2014-08-07 17:16:00 +08:00
|
|
|
|
<td style="white-space:nowrap;overflow:hidden;text-overflow:ellipsis;" title="http://<%= repository.login.to_s %>_<%= repository.identifier.to_s%>@<%= ip %><%=h repository.url.slice(project_path_cut, repository.url.length) %>">http://<%= repository.login.to_s %>_<%= repository.identifier.to_s%>@<%= ip %><%=h repository.url.slice(project_path_cut, repository.url.length) %></td><!--Modified by tanxianbo-->
|
2013-08-12 16:22:38 +08:00
|
|
|
|
<%else %>
|
2014-08-07 17:16:00 +08:00
|
|
|
|
<td style="white-space:nowrap;overflow:hidden;text-overflow:ellipsis;" ><%=h repository.url %></td>
|
2013-08-12 16:22:38 +08:00
|
|
|
|
<% end %>
|
2014-08-07 11:20:24 +08:00
|
|
|
|
|
2013-08-15 10:29:15 +08:00
|
|
|
|
<td class="buttons" style="text-align:left">
|
2013-08-12 16:22:38 +08:00
|
|
|
|
<% if repository.scm_name=="Subversion"%>
|
|
|
|
|
<%if User.current.allowed_to?(:manage_repository, @project) %>
|
2013-08-15 10:29:15 +08:00
|
|
|
|
<%= link_to(l(:label_user_plural), committers_repository_path(repository),
|
2014-08-07 11:20:24 +08:00
|
|
|
|
:class => 'icon icon-user') %>
|
2013-08-15 10:29:15 +08:00
|
|
|
|
<%= link_to(l(:button_edit), edit_repository_path(repository),
|
|
|
|
|
:class => 'icon icon-edit') %>
|
|
|
|
|
<%= delete_link repository_path(repository) %>
|
2013-08-14 20:56:20 +08:00
|
|
|
|
<% 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') %> -->
|
2013-08-15 10:29:15 +08:00
|
|
|
|
<%= link_to(l(:label_user_plural), committers_repository_path(repository),
|
2013-08-01 10:33:49 +08:00
|
|
|
|
:class => 'icon icon-user') %>
|
2013-08-15 10:29:15 +08:00
|
|
|
|
<% if repository.login.to_s==User.current.login.to_s %>
|
|
|
|
|
<%= delete_link repository_path(repository) %>
|
|
|
|
|
<% end %>
|
2013-08-12 16:22:38 +08:00
|
|
|
|
<% end %>
|
|
|
|
|
<% end %>
|
2013-08-01 10:33:49 +08:00
|
|
|
|
</td>
|
|
|
|
|
</tr>
|
|
|
|
|
<% end %>
|
|
|
|
|
</tbody>
|
|
|
|
|
</table>
|
|
|
|
|
<% else %>
|
|
|
|
|
<p class="nodata"><%= l(:label_no_data) %></p>
|
|
|
|
|
<% end %>
|
|
|
|
|
|
2013-08-30 09:34:21 +08:00
|
|
|
|
<% course_tag = @project.project_type %>
|
2013-08-01 10:33:49 +08:00
|
|
|
|
<% if User.current.allowed_to?(:manage_repository, @project) %>
|
2013-08-30 09:34:21 +08:00
|
|
|
|
<p><%= link_to l(:label_repository_new), new_project_repository_path(@project, :course => course_tag), :class => 'icon icon-add' %></p>
|
2013-08-01 10:33:49 +08:00
|
|
|
|
<% end %>
|
2013-08-11 17:17:59 +08:00
|
|
|
|
<!-- no repository ,new by xianbo-->
|
|
|
|
|
<% if User.current.allowed_to?(:manage_repository, @project) %>
|
2014-08-07 11:20:24 +08:00
|
|
|
|
<p><%= l(:label_repository_no) %>
|
2013-08-30 09:34:21 +08:00
|
|
|
|
<%= link_to l(:label_repository_new_repos), newrepo_project_repository_path(@project, :course => course_tag), :class => 'icon icon-add' %></p>
|
2013-08-11 17:17:59 +08:00
|
|
|
|
<% end %>
|