2018-09-18 04:42:11 -04:00
|
|
|
- breadcrumb_title _("Repository")
|
|
|
|
- page_title _("Repository")
|
2018-09-04 14:06:57 -04:00
|
|
|
- @content_class = "limit-container-width" unless fluid_layout
|
|
|
|
|
2021-04-20 17:09:07 -04:00
|
|
|
%section.settings.as-default-branch-name.no-animate#js-default-branch-name{ class: ('expanded' if expanded_by_default?) }
|
|
|
|
.settings-header
|
|
|
|
%h4
|
|
|
|
= _('Default initial branch name')
|
|
|
|
%button.btn.gl-button.btn-default.js-settings-toggle{ type: 'button' }
|
|
|
|
= expanded_by_default? ? _('Collapse') : _('Expand')
|
|
|
|
%p
|
2021-07-05 23:08:11 -04:00
|
|
|
= s_('AdminSettings|The default name for the initial branch of new repositories created in the instance.')
|
2021-04-20 17:09:07 -04:00
|
|
|
.settings-content
|
|
|
|
= render 'initial_branch_name'
|
2020-07-13 11:09:08 -04:00
|
|
|
|
2018-09-19 06:57:57 -04:00
|
|
|
%section.settings.as-mirror.no-animate#js-mirror-settings{ class: ('expanded' if expanded_by_default?) }
|
2018-09-04 14:06:57 -04:00
|
|
|
.settings-header
|
|
|
|
%h4
|
2019-10-25 02:06:19 -04:00
|
|
|
= _('Repository mirroring')
|
2021-01-20 04:10:52 -05:00
|
|
|
%button.btn.gl-button.btn-default.js-settings-toggle{ type: 'button' }
|
2018-09-19 06:57:57 -04:00
|
|
|
= expanded_by_default? ? 'Collapse' : 'Expand'
|
2018-09-04 14:06:57 -04:00
|
|
|
%p
|
2019-10-25 02:06:19 -04:00
|
|
|
= _('Configure repository mirroring.')
|
2018-09-04 14:06:57 -04:00
|
|
|
.settings-content
|
|
|
|
= render partial: 'repository_mirrors_form'
|
|
|
|
|
2020-07-21 14:09:45 -04:00
|
|
|
%section.settings.as-repository-storage.no-animate#js-repository-storage-settings{ class: ('expanded' if expanded_by_default?), data: { qa_selector: 'repository_storage_settings_content' } }
|
2018-09-04 14:06:57 -04:00
|
|
|
.settings-header
|
|
|
|
%h4
|
|
|
|
= _('Repository storage')
|
2021-01-20 04:10:52 -05:00
|
|
|
%button.btn.gl-button.btn-default.js-settings-toggle{ type: 'button' }
|
2018-09-19 06:57:57 -04:00
|
|
|
= expanded_by_default? ? _('Collapse') : _('Expand')
|
2018-09-04 14:06:57 -04:00
|
|
|
%p
|
2018-10-09 01:59:42 -04:00
|
|
|
= _('Configure storage path settings.')
|
2018-09-04 14:06:57 -04:00
|
|
|
.settings-content
|
|
|
|
= render 'repository_storage'
|
|
|
|
|
2018-09-19 06:57:57 -04:00
|
|
|
%section.settings.as-repository-check.no-animate#js-repository-check-settings{ class: ('expanded' if expanded_by_default?) }
|
2018-09-04 14:06:57 -04:00
|
|
|
.settings-header
|
|
|
|
%h4
|
|
|
|
= _('Repository maintenance')
|
2021-01-20 04:10:52 -05:00
|
|
|
%button.btn.gl-button.btn-default.js-settings-toggle{ type: 'button' }
|
2018-09-19 06:57:57 -04:00
|
|
|
= expanded_by_default? ? _('Collapse') : _('Expand')
|
2018-09-04 14:06:57 -04:00
|
|
|
%p
|
2021-07-05 02:08:01 -04:00
|
|
|
= _('Configure')
|
|
|
|
= link_to s_('repository checks'), help_page_path('administration/repository_checks.md'), target: '_blank', rel: 'noopener noreferrer'
|
|
|
|
= _('and')
|
|
|
|
= link_to s_('housekeeping'), help_page_path('administration/housekeeping.md'), target: '_blank', rel: 'noopener noreferrer'
|
|
|
|
= _('on repositories.')
|
2018-09-04 14:06:57 -04:00
|
|
|
.settings-content
|
|
|
|
= render 'repository_check'
|
2019-07-22 10:56:40 -04:00
|
|
|
|
|
|
|
%section.settings.as-repository-static-objects.no-animate#js-repository-static-objects-settings{ class: ('expanded' if expanded_by_default?) }
|
|
|
|
.settings-header
|
|
|
|
%h4
|
|
|
|
= _('Repository static objects')
|
2021-01-20 04:10:52 -05:00
|
|
|
%button.btn.gl-button.btn-default.js-settings-toggle{ type: 'button' }
|
2019-07-22 10:56:40 -04:00
|
|
|
= expanded_by_default? ? _('Collapse') : _('Expand')
|
|
|
|
%p
|
|
|
|
= _('Serve repository static objects (e.g. archives, blobs, ...) from an external storage (e.g. a CDN).')
|
|
|
|
.settings-content
|
|
|
|
= render 'repository_static_objects'
|