debian-mirror-gitlab/app/views/projects/buttons/_clone.html.haml

45 lines
2.5 KiB
Text
Raw Normal View History

2019-02-15 15:39:39 +05:30
- project = project || @project
2020-03-13 15:44:24 +05:30
- dropdown_class = local_assigns.fetch(:dropdown_class, '')
2019-02-15 15:39:39 +05:30
2020-03-13 15:44:24 +05:30
.git-clone-holder.js-git-clone-holder
2021-04-17 20:07:23 +05:30
%a#clone-dropdown.gl-button.btn.btn-confirm.clone-dropdown-btn.qa-clone-dropdown{ href: '#', data: { toggle: 'dropdown' } }
2020-07-28 23:09:34 +05:30
%span.gl-mr-2.js-clone-dropdown-label
2019-02-15 15:39:39 +05:30
= _('Clone')
2020-03-13 15:44:24 +05:30
= sprite_icon("chevron-down", css_class: "icon")
2021-03-11 19:13:27 +05:30
%ul.dropdown-menu.dropdown-menu-large.dropdown-menu-selectable.clone-options-dropdown.qa-clone-options{ class: dropdown_class }
2019-02-15 15:39:39 +05:30
- if ssh_enabled?
2021-03-11 19:13:27 +05:30
%li{ class: 'gl-px-4!' }
2019-02-15 15:39:39 +05:30
%label.label-bold
= _('Clone with SSH')
2021-04-17 20:07:23 +05:30
.input-group.btn-group
2021-02-22 17:27:13 +05:30
= text_field_tag :ssh_project_clone, project.ssh_url_to_repo, class: "js-select-on-focus form-control qa-ssh-clone-url", readonly: true, aria: { label: _('Repository clone URL') }
2019-02-15 15:39:39 +05:30
.input-group-append
2021-04-17 20:07:23 +05:30
= clipboard_button(target: '#ssh_project_clone', title: _("Copy URL"), class: "input-group-text gl-button btn btn-icon btn-default")
2019-02-15 15:39:39 +05:30
= render_if_exists 'projects/buttons/geo'
- if http_enabled?
2021-03-11 19:13:27 +05:30
%li.pt-2{ class: 'gl-px-4!' }
2019-02-15 15:39:39 +05:30
%label.label-bold
= _('Clone with %{http_label}') % { http_label: gitlab_config.protocol.upcase }
2021-04-17 20:07:23 +05:30
.input-group.btn-group
2021-02-22 17:27:13 +05:30
= text_field_tag :http_project_clone, project.http_url_to_repo, class: "js-select-on-focus form-control qa-http-clone-url", readonly: true, aria: { label: _('Repository clone URL') }
2019-02-15 15:39:39 +05:30
.input-group-append
2021-04-17 20:07:23 +05:30
= clipboard_button(target: '#http_project_clone', title: _("Copy URL"), class: "input-group-text gl-button btn btn-icon btn-default")
2019-02-15 15:39:39 +05:30
= render_if_exists 'projects/buttons/geo'
2021-03-11 19:13:27 +05:30
%li.divider.mt-2
2021-09-04 01:27:46 +05:30
%li.pt-2.gl-new-dropdown-item
%label.label-bold{ class: 'gl-px-4!' }
= _('Open in your IDE')
- if ssh_enabled?
%a.dropdown-item.open-with-link{ href: 'vscode://vscode.git/clone?url=' + CGI.escape(project.ssh_url_to_repo) }
.gl-new-dropdown-item-text-wrapper
= _('Visual Studio Code (SSH)')
- if http_enabled?
2021-03-11 19:13:27 +05:30
%a.dropdown-item.open-with-link{ href: 'vscode://vscode.git/clone?url=' + CGI.escape(project.http_url_to_repo) }
.gl-new-dropdown-item-text-wrapper
2021-09-04 01:27:46 +05:30
= _('Visual Studio Code (HTTPS)')
- if show_xcode_link?(@project)
%a.dropdown-item.open-with-link{ href: xcode_uri_to_repo(@project) }
.gl-new-dropdown-item-text-wrapper
= _("Xcode")
2019-05-03 19:53:19 +05:30
= render_if_exists 'projects/buttons/kerberos_clone_field'