2018-03-17 18:26:18 +05:30
|
|
|
- pipeline = local_assigns.fetch(:pipeline) { project.latest_successful_pipeline_for(ref) }
|
2017-08-17 22:00:37 +05:30
|
|
|
|
2016-09-29 09:46:39 +05:30
|
|
|
- if !project.empty_repo? && can?(current_user, :download_code, project)
|
2018-05-09 12:01:36 +05:30
|
|
|
- archive_prefix = "#{project.path}-#{ref.tr('/', '-')}"
|
2017-08-17 22:00:37 +05:30
|
|
|
.project-action-button.dropdown.inline>
|
2018-11-08 19:23:39 +05:30
|
|
|
%button.btn.has-tooltip{ title: s_('DownloadSource|Download'), 'data-toggle' => 'dropdown', 'aria-label' => s_('DownloadSource|Download'), 'data-display' => 'static' }
|
2018-03-17 18:26:18 +05:30
|
|
|
= sprite_icon('download')
|
2017-09-10 17:25:29 +05:30
|
|
|
%span.sr-only= _('Select Archive Format')
|
2019-02-15 15:39:39 +05:30
|
|
|
= sprite_icon("arrow-down")
|
2019-07-31 22:56:46 +05:30
|
|
|
.dropdown-menu.dropdown-menu-right{ role: 'menu' }
|
|
|
|
%section
|
|
|
|
%h5.m-0.dropdown-bold-header= _('Download source code')
|
|
|
|
.dropdown-menu-content
|
|
|
|
= render 'projects/buttons/download_links', project: project, ref: ref, archive_prefix: archive_prefix, path: nil
|
|
|
|
- if directory? && Feature.enabled?(:git_archive_path, default_enabled: true)
|
|
|
|
%section.border-top.pt-1.mt-1
|
|
|
|
%h5.m-0.dropdown-bold-header= _('Download this directory')
|
|
|
|
.dropdown-menu-content
|
|
|
|
= render 'projects/buttons/download_links', project: project, ref: ref, archive_prefix: archive_prefix, path: @path
|
2018-03-17 18:26:18 +05:30
|
|
|
- if pipeline && pipeline.latest_builds_with_artifacts.any?
|
2019-07-31 22:56:46 +05:30
|
|
|
%section.border-top.pt-1.mt-1
|
|
|
|
%h5.m-0.dropdown-bold-header= _('Download artifacts')
|
|
|
|
- unless pipeline.latest?
|
|
|
|
%span.unclickable= ci_status_for_statuseable(project.pipeline_for(ref))
|
|
|
|
%h6.m-0.dropdown-header= _('Previous Artifacts')
|
|
|
|
%ul
|
|
|
|
- pipeline.latest_builds_with_artifacts.each do |job|
|
|
|
|
%li= link_to job.name, latest_succeeded_project_artifacts_path(project, "#{ref}/download", job: job.name), rel: 'nofollow', download: ''
|