diff options
author | GitLab Bot <gitlab-bot@gitlab.com> | 2019-12-17 15:08:15 +0000 |
---|---|---|
committer | GitLab Bot <gitlab-bot@gitlab.com> | 2019-12-17 15:08:15 +0000 |
commit | c2b98d3dbd47ab92c79c702276fe9130d9a28036 (patch) | |
tree | bf4071f551fdc12c22b23b2bb66483064e7b9ea9 /app/views | |
parent | badb9c1deacbea601b02f88811b7e123589d9251 (diff) | |
download | gitlab-ce-c2b98d3dbd47ab92c79c702276fe9130d9a28036.tar.gz |
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'app/views')
-rw-r--r-- | app/views/admin/application_settings/_visibility_and_access.html.haml | 2 | ||||
-rw-r--r-- | app/views/admin/projects/_archived.html.haml | 3 | ||||
-rw-r--r-- | app/views/admin/projects/_projects.html.haml | 3 | ||||
-rw-r--r-- | app/views/projects/_archived_notice.html.haml | 5 | ||||
-rw-r--r-- | app/views/projects/_remove.html.haml | 10 | ||||
-rw-r--r-- | app/views/projects/edit.html.haml | 27 | ||||
-rw-r--r-- | app/views/projects/hook_logs/_index.html.haml | 2 | ||||
-rw-r--r-- | app/views/projects/hook_logs/show.html.haml | 3 | ||||
-rw-r--r-- | app/views/projects/services/edit.html.haml | 4 | ||||
-rw-r--r-- | app/views/projects/settings/_archive.html.haml | 18 | ||||
-rw-r--r-- | app/views/projects/show.html.haml | 7 | ||||
-rw-r--r-- | app/views/shared/projects/_archived.html.haml | 3 | ||||
-rw-r--r-- | app/views/shared/projects/_project.html.haml | 3 |
13 files changed, 52 insertions, 38 deletions
diff --git a/app/views/admin/application_settings/_visibility_and_access.html.haml b/app/views/admin/application_settings/_visibility_and_access.html.haml index be5f1f4f9a8..ae90ffd9efc 100644 --- a/app/views/admin/application_settings/_visibility_and_access.html.haml +++ b/app/views/admin/application_settings/_visibility_and_access.html.haml @@ -9,6 +9,7 @@ = f.label s_('ProjectCreationLevel|Default project creation protection'), class: 'label-bold' = f.select :default_project_creation, options_for_select(Gitlab::Access.project_creation_options, @application_setting.default_project_creation), {}, class: 'form-control' = render_if_exists 'admin/application_settings/default_project_deletion_protection_setting', form: f + = render_if_exists 'admin/application_settings/default_project_deletion_adjourned_period_setting', form: f .form-group.visibility-level-setting = f.label :default_project_visibility, class: 'label-bold' = render('shared/visibility_radios', model_method: :default_project_visibility, form: f, selected_level: @application_setting.default_project_visibility, form_model: Project.new) @@ -53,6 +54,7 @@ = select(:application_setting, :enabled_git_access_protocol, [['Both SSH and HTTP(S)', nil], ['Only SSH', 'ssh'], ['Only HTTP(S)', 'http']], {}, class: 'form-control') %span.form-text.text-muted#clone-protocol-help = _('Allow only the selected protocols to be used for Git access.') + .form-group = f.label :custom_http_clone_url_root, _('Custom Git clone URL for HTTP(S)'), class: 'label-bold' = f.text_field :custom_http_clone_url_root, class: 'form-control', placeholder: 'https://git.example.com', :'aria-describedby' => 'custom_http_clone_url_root_help_block' diff --git a/app/views/admin/projects/_archived.html.haml b/app/views/admin/projects/_archived.html.haml new file mode 100644 index 00000000000..8b4d5806c47 --- /dev/null +++ b/app/views/admin/projects/_archived.html.haml @@ -0,0 +1,3 @@ +- if project.archived + %span.badge.badge-warning + = _('archived') diff --git a/app/views/admin/projects/_projects.html.haml b/app/views/admin/projects/_projects.html.haml index 2f7ad35eb3e..f842ab2d009 100644 --- a/app/views/admin/projects/_projects.html.haml +++ b/app/views/admin/projects/_projects.html.haml @@ -14,8 +14,7 @@ .stats %span.badge.badge-pill = storage_counter(project.statistics&.storage_size) - - if project.archived - %span.badge.badge-warning archived + = render_if_exists 'admin/projects/archived', project: project .title = link_to(admin_project_path(project)) do .dash-project-avatar diff --git a/app/views/projects/_archived_notice.html.haml b/app/views/projects/_archived_notice.html.haml new file mode 100644 index 00000000000..522693ae24a --- /dev/null +++ b/app/views/projects/_archived_notice.html.haml @@ -0,0 +1,5 @@ +- if project.archived? + .text-warning.center.prepend-top-20 + %p + = icon("exclamation-triangle fw") + = _('Archived project! Repository and other project resources are read only') diff --git a/app/views/projects/_remove.html.haml b/app/views/projects/_remove.html.haml new file mode 100644 index 00000000000..6c84fbfeeb3 --- /dev/null +++ b/app/views/projects/_remove.html.haml @@ -0,0 +1,10 @@ +- return unless can?(current_user, :remove_project, project) + +.sub-section + %h4.danger-title= _('Remove project') + %p + %strong= _('Removing the project will delete its repository and all related resources including issues, merge requests etc.') + = form_tag(project_path(project), method: :delete) do + %p + %strong= _('Removed projects cannot be restored!') + = button_to _('Remove project'), '#', class: "btn btn-remove js-confirm-danger", data: { "confirm-danger-message" => remove_project_message(project) } diff --git a/app/views/projects/edit.html.haml b/app/views/projects/edit.html.haml index 7ad52673137..1c18487f688 100644 --- a/app/views/projects/edit.html.haml +++ b/app/views/projects/edit.html.haml @@ -73,23 +73,7 @@ = render 'export', project: @project - - if can? current_user, :archive_project, @project - .sub-section - %h4.warning-title - - if @project.archived? - = _('Unarchive project') - - else - = _('Archive project') - - if @project.archived? - %p= _("Unarchiving the project will restore people's ability to make changes to it. The repository can be committed to, and issues, comments and other entities can be created. <strong>Once active this project shows up in the search and on the dashboard.</strong>").html_safe - = link_to _('Unarchive project'), unarchive_project_path(@project), - data: { confirm: _("Are you sure that you want to unarchive this project?"), qa_selector: 'unarchive_project_link' }, - method: :post, class: "btn btn-success" - - else - %p= _("Archiving the project will make it entirely read-only. It is hidden from the dashboard and doesn't show up in searches. <strong>The repository cannot be committed to, and no issues, comments or other entities can be created.</strong>").html_safe - = link_to _('Archive project'), archive_project_path(@project), - data: { confirm: _("Are you sure that you want to archive this project?"), qa_selector: 'archive_project_link' }, - method: :post, class: "btn btn-warning" + = render_if_exists 'projects/settings/archive' .sub-section.rename-repository %h4.warning-title= _('Change path') = render 'projects/errors' @@ -135,14 +119,7 @@ %strong= _('Once removed, the fork relationship cannot be restored and you will no longer be able to send merge requests to the source.') = button_to _('Remove fork relationship'), '#', class: "btn btn-remove js-confirm-danger", data: { "confirm-danger-message" => remove_fork_project_warning_message(@project) } - - if can?(current_user, :remove_project, @project) - .sub-section - %h4.danger-title= _('Remove project') - %p= _('Removing the project will delete its repository and all related resources including issues, merge requests etc.') - = form_tag(project_path(@project), method: :delete) do - %p - %strong= _('Removed projects cannot be restored!') - = button_to _('Remove project'), '#', class: "btn btn-remove js-confirm-danger", data: { "confirm-danger-message" => remove_project_message(@project) } + = render 'remove', project: @project .save-project-loader.hide .center diff --git a/app/views/projects/hook_logs/_index.html.haml b/app/views/projects/hook_logs/_index.html.haml index 3e54c3ca9f8..ada986dd969 100644 --- a/app/views/projects/hook_logs/_index.html.haml +++ b/app/views/projects/hook_logs/_index.html.haml @@ -28,7 +28,7 @@ %td.light = time_ago_with_tooltip(hook_log.created_at) %td - = link_to 'View details', project_hook_hook_log_path(project, hook, hook_log) + = link_to 'View details', hook_log.present.details_path = paginate hook_logs, theme: 'gitlab' diff --git a/app/views/projects/hook_logs/show.html.haml b/app/views/projects/hook_logs/show.html.haml index bd8ca5e7d70..a8796cd7b1c 100644 --- a/app/views/projects/hook_logs/show.html.haml +++ b/app/views/projects/hook_logs/show.html.haml @@ -3,7 +3,6 @@ %h4.prepend-top-0 Request details .col-lg-9 - - = link_to 'Resend Request', retry_project_hook_hook_log_path(@project, @hook, @hook_log), method: :post, class: "btn btn-default float-right prepend-left-10" + = link_to 'Resend Request', @hook_log.present.retry_path, method: :post, class: "btn btn-default float-right prepend-left-10" = render partial: 'shared/hook_logs/content', locals: { hook_log: @hook_log } diff --git a/app/views/projects/services/edit.html.haml b/app/views/projects/services/edit.html.haml index 1e7903535c6..e3e8a312431 100644 --- a/app/views/projects/services/edit.html.haml +++ b/app/views/projects/services/edit.html.haml @@ -1,8 +1,10 @@ - breadcrumb_title @service.title - page_title @service.title, s_("ProjectService|Services") - add_to_breadcrumbs(s_("ProjectService|Settings"), edit_project_path(@project)) -- add_to_breadcrumbs(s_("ProjectService|Integrations"), namespace_project_settings_integrations_path) +- add_to_breadcrumbs(s_("ProjectService|Integrations"), project_settings_integrations_path(@project)) = render 'deprecated_message' if @service.deprecation_message = render 'form' +- if @web_hook_logs + = render partial: 'projects/hook_logs/index', locals: { hook: @service.service_hook, hook_logs: @web_hook_logs, project: @project } diff --git a/app/views/projects/settings/_archive.html.haml b/app/views/projects/settings/_archive.html.haml new file mode 100644 index 00000000000..3307c3775ec --- /dev/null +++ b/app/views/projects/settings/_archive.html.haml @@ -0,0 +1,18 @@ +- return unless can?(current_user, :archive_project, @project) + +.sub-section + %h4.warning-title + - if @project.archived? + = _('Unarchive project') + - else + = _('Archive project') + - if @project.archived? + %p= _("Unarchiving the project will restore people's ability to make changes to it. The repository can be committed to, and issues, comments, and other entities can be created. %{strong_start}Once active, this project shows up in the search and on the dashboard.%{strong_end}").html_safe % { strong_start: '<strong>'.html_safe, strong_end: '</strong>'.html_safe } + = link_to _('Unarchive project'), unarchive_project_path(@project), + data: { confirm: _("Are you sure that you want to unarchive this project?"), qa_selector: 'unarchive_project_link' }, + method: :post, class: "btn btn-success" + - else + %p= _("Archiving the project will make it entirely read only. It is hidden from the dashboard and doesn't show up in searches. %{strong_start}The repository cannot be committed to, and no issues, comments, or other entities can be created.%{strong_end}").html_safe % { strong_start: '<strong>'.html_safe, strong_end: '</strong>'.html_safe } + = link_to _('Archive project'), archive_project_path(@project), + data: { confirm: _("Are you sure that you want to archive this project?"), qa_selector: 'archive_project_link' }, + method: :post, class: "btn btn-warning" diff --git a/app/views/projects/show.html.haml b/app/views/projects/show.html.haml index c5653c3dd5a..8f13806e8cd 100644 --- a/app/views/projects/show.html.haml +++ b/app/views/projects/show.html.haml @@ -18,11 +18,8 @@ - if can?(current_user, :download_code, @project) && @project.repository_languages.present? = repository_languages_bar(@project.repository_languages) - - if @project.archived? - .text-warning.center.prepend-top-20 - %p - = icon("exclamation-triangle fw") - #{ _('Archived project! Repository and other project resources are read-only') } + = render "archived_notice", project: @project + = render_if_exists "projects/marked_for_deletion_notice", project: @project - view_path = @project.default_view diff --git a/app/views/shared/projects/_archived.html.haml b/app/views/shared/projects/_archived.html.haml new file mode 100644 index 00000000000..fad93d14390 --- /dev/null +++ b/app/views/shared/projects/_archived.html.haml @@ -0,0 +1,3 @@ +- if project.archived + %span.d-flex.badge.badge-warning + = _('archived') diff --git a/app/views/shared/projects/_project.html.haml b/app/views/shared/projects/_project.html.haml index 5b9af0267cc..45e95685677 100644 --- a/app/views/shared/projects/_project.html.haml +++ b/app/views/shared/projects/_project.html.haml @@ -67,8 +67,7 @@ %span.icon-wrapper.pipeline-status = render 'ci/status/icon', status: project.last_pipeline.detailed_status(current_user), tooltip_placement: 'top', path: pipeline_path - - if project.archived - %span.d-flex.icon-wrapper.badge.badge-warning archived + = render_if_exists 'shared/projects/archived', project: project - if stars = link_to project_starrers_path(project), class: "d-flex align-items-center icon-wrapper stars has-tooltip", |