Welcome to mirror list, hosted at ThFree Co, Russian Federation.

raketasks.html.haml « help « views « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: d92efd4d85a3a34065ad2aa461f0b7eac4eb754c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
= render layout: 'help/layout' do
  %h3.page-title GitLab Rake Tasks
  %br

  %p.slead
    GitLab provides some specific rake tasks to enable special features or perform maintenance tasks.

  %ul.nav.nav-tabs.log-tabs
    %li.active
      = link_to "Features", "#features", 'data-toggle' => 'tab'
    %li
      = link_to "Maintenance", "#maintenance", 'data-toggle' => 'tab'
    %li
      = link_to "User Management", "#user_management", 'data-toggle' => 'tab'
    %li
      = link_to "Backup & Restore", "#backup_restore", 'data-toggle' => 'tab'
    %li
      = link_to "Cleanup", "#cleanup", 'data-toggle' => 'tab'

  .tab-content
    .tab-pane.active#features
      .file-holder
        .file-title
          %i.icon-file
          Features
        .file-content.wiki
          = preserve do
            = markdown File.read(Rails.root.join("doc", "raketasks", "features.md"))

    .tab-pane#maintenance
      .file-holder
        .file-title
          %i.icon-file
          Maintenance
        .file-content.wiki
          = preserve do
            = markdown File.read(Rails.root.join("doc", "raketasks", "maintenance.md"))

    .tab-pane#user_management
      .file-holder
        .file-title
          %i.icon-file
          User Management
        .file-content.wiki
          = preserve do
            = markdown File.read(Rails.root.join("doc", "raketasks", "user_management.md"))

    .tab-pane#cleanup
      .file-holder
        .file-title
          %i.icon-file
          Cleanup
        .file-content.wiki
          = preserve do
            = markdown File.read(Rails.root.join("doc", "raketasks", "cleanup.md"))

    .tab-pane#backup_restore
      .file-holder
        .file-title
          %i.icon-file
          Backup & Restore
        .file-content.wiki
          = preserve do
            = markdown File.read(Rails.root.join("doc", "raketasks", "backup_restore.md"))