c5a9d73ad8
Adds rel="noopener noreferrer" to all links with target="_blank" See merge request !2071
80 lines
3 KiB
Text
80 lines
3 KiB
Text
- page_title "Google Code import"
|
|
- header_title "Projects", root_path
|
|
%h3.page-title
|
|
%i.fa.fa-google
|
|
Import projects from Google Code
|
|
|
|
- if @repos.any?
|
|
%p.light
|
|
Select projects you want to import.
|
|
%p.light
|
|
Optionally, you can
|
|
= link_to "customize", new_user_map_import_google_code_path
|
|
how Google Code email addresses and usernames are imported into GitLab.
|
|
%hr
|
|
%p
|
|
- if @incompatible_repos.any?
|
|
= button_tag class: "btn btn-import btn-success js-import-all" do
|
|
Import all compatible projects
|
|
= icon("spinner spin", class: "loading-icon")
|
|
- else
|
|
= button_tag class: "btn btn-import btn-success js-import-all" do
|
|
Import all projects
|
|
= icon("spinner spin", class: "loading-icon")
|
|
|
|
.table-responsive
|
|
%table.table.import-jobs
|
|
%colgroup.import-jobs-from-col
|
|
%colgroup.import-jobs-to-col
|
|
%colgroup.import-jobs-status-col
|
|
%thead
|
|
%tr
|
|
%th From Google Code
|
|
%th To GitLab
|
|
%th Status
|
|
%tbody
|
|
- @already_added_projects.each do |project|
|
|
%tr{ id: "project_#{project.id}", class: "#{project_status_css_class(project.import_status)}" }
|
|
%td
|
|
= link_to project.import_source, "https://code.google.com/p/#{project.import_source}", target: "_blank", rel: 'noopener noreferrer'
|
|
%td
|
|
= link_to project.path_with_namespace, [project.namespace.becomes(Namespace), project]
|
|
%td.job-status
|
|
- if project.import_status == 'finished'
|
|
%span
|
|
%i.fa.fa-check
|
|
done
|
|
- elsif project.import_status == 'started'
|
|
%i.fa.fa-spinner.fa-spin
|
|
started
|
|
- else
|
|
= project.human_import_status_name
|
|
|
|
- @repos.each do |repo|
|
|
%tr{ id: "repo_#{repo.id}" }
|
|
%td
|
|
= link_to repo.name, "https://code.google.com/p/#{repo.name}", target: "_blank", rel: 'noopener noreferrer'
|
|
%td.import-target
|
|
#{current_user.username}/#{repo.name}
|
|
%td.import-actions.job-status
|
|
= button_tag class: "btn btn-import js-add-to-import" do
|
|
Import
|
|
= icon("spinner spin", class: "loading-icon")
|
|
- @incompatible_repos.each do |repo|
|
|
%tr{ id: "repo_#{repo.id}" }
|
|
%td
|
|
= link_to repo.name, "https://code.google.com/p/#{repo.name}", target: "_blank", rel: 'noopener noreferrer'
|
|
%td.import-target
|
|
%td.import-actions-job-status
|
|
= label_tag "Incompatible Project", nil, class: "label label-danger"
|
|
|
|
- if @incompatible_repos.any?
|
|
%p
|
|
One or more of your Google Code projects cannot be imported into GitLab
|
|
directly because they use Subversion or Mercurial for version control,
|
|
rather than Git. Please convert them to Git on Google Code, and go
|
|
through the
|
|
= link_to "import flow", new_import_google_code_path
|
|
again.
|
|
|
|
.js-importer-status{ data: { jobs_import_path: "#{jobs_import_google_code_path}", import_path: "#{import_google_code_path}" } }
|