Commit edc2e0a64be33dc05a5714acea891965fab1cdfa
Exists in
master
and in
4 other branches
Merge pull request #3990 from bbodenmiller/patch-gitlab-cap
changed Gitlab to GitLab in user facing locations
Showing
7 changed files
with
21 additions
and
21 deletions
Show diff stats
doc/raketasks/maintenance.md
| ... | ... | @@ -66,7 +66,7 @@ python2 is supported version? ... yes |
| 66 | 66 | |
| 67 | 67 | Checking Environment ... Finished |
| 68 | 68 | |
| 69 | -Checking Gitlab Shell ... | |
| 69 | +Checking GitLab Shell ... | |
| 70 | 70 | |
| 71 | 71 | GitLab Shell version? ... OK (1.2.0) |
| 72 | 72 | Repo base directory exists? ... yes |
| ... | ... | @@ -76,7 +76,7 @@ Repo base access is drwxrws---? ... yes |
| 76 | 76 | post-receive hook up-to-date? ... yes |
| 77 | 77 | post-receive hooks in repos are links: ... yes |
| 78 | 78 | |
| 79 | -Checking Gitlab Shell ... Finished | |
| 79 | +Checking GitLab Shell ... Finished | |
| 80 | 80 | |
| 81 | 81 | Checking Sidekiq ... |
| 82 | 82 | ... | ... |
features/project/source/search_code.feature
| ... | ... | @@ -4,6 +4,6 @@ Feature: Project Search code |
| 4 | 4 | And I own project "Shop" |
| 5 | 5 | Given I visit project source page |
| 6 | 6 | |
| 7 | - Scenario: Search for term "Welcome to Gitlab" | |
| 8 | - When I search for term "Welcome to Gitlab" | |
| 9 | - Then I should see files from repository containing "Welcome to Gitlab" | |
| 7 | + Scenario: Search for term "Welcome to GitLab" | |
| 8 | + When I search for term "Welcome to GitLab" | |
| 9 | + Then I should see files from repository containing "Welcome to GitLab" | ... | ... |
features/steps/project/project_search_code.rb
| ... | ... | @@ -3,14 +3,14 @@ class ProjectSearchCode < Spinach::FeatureSteps |
| 3 | 3 | include SharedProject |
| 4 | 4 | include SharedPaths |
| 5 | 5 | |
| 6 | - When 'I search for term "Welcome to Gitlab"' do | |
| 7 | - fill_in "search", with: "Welcome to Gitlab" | |
| 6 | + When 'I search for term "Welcome to GitLab"' do | |
| 7 | + fill_in "search", with: "Welcome to GitLab" | |
| 8 | 8 | click_button "Go" |
| 9 | 9 | click_link 'Repository Code' |
| 10 | 10 | end |
| 11 | 11 | |
| 12 | - Then 'I should see files from repository containing "Welcome to Gitlab"' do | |
| 13 | - page.should have_content "Welcome to Gitlab" | |
| 12 | + Then 'I should see files from repository containing "Welcome to GitLab"' do | |
| 13 | + page.should have_content "Welcome to GitLab" | |
| 14 | 14 | page.should have_content "GitLab is a free project and repository management application" |
| 15 | 15 | end |
| 16 | 16 | ... | ... |
lib/support/init.d/gitlab
| ... | ... | @@ -24,7 +24,7 @@ SIDEKIQ_PID="$PID_PATH/sidekiq.pid" |
| 24 | 24 | STOP_SIDEKIQ="RAILS_ENV=production bundle exec rake sidekiq:stop" |
| 25 | 25 | START_SIDEKIQ="RAILS_ENV=production bundle exec rake sidekiq:start" |
| 26 | 26 | NAME="gitlab" |
| 27 | -DESC="Gitlab service" | |
| 27 | +DESC="GitLab service" | |
| 28 | 28 | |
| 29 | 29 | check_pid(){ |
| 30 | 30 | if [ -f $WEB_SERVER_PID ]; then | ... | ... |
lib/tasks/gitlab/check.rake
| ... | ... | @@ -362,10 +362,10 @@ namespace :gitlab do |
| 362 | 362 | |
| 363 | 363 | |
| 364 | 364 | namespace :gitlab_shell do |
| 365 | - desc "GITLAB | Check the configuration of Gitlab Shell" | |
| 365 | + desc "GITLAB | Check the configuration of GitLab Shell" | |
| 366 | 366 | task check: :environment do |
| 367 | 367 | warn_user_is_not_gitlab |
| 368 | - start_checking "Gitlab Shell" | |
| 368 | + start_checking "GitLab Shell" | |
| 369 | 369 | |
| 370 | 370 | check_gitlab_shell |
| 371 | 371 | check_repo_base_exists |
| ... | ... | @@ -375,7 +375,7 @@ namespace :gitlab do |
| 375 | 375 | check_post_receive_hook_is_up_to_date |
| 376 | 376 | check_repos_post_receive_hooks_is_link |
| 377 | 377 | |
| 378 | - finished_checking "Gitlab Shell" | |
| 378 | + finished_checking "GitLab Shell" | |
| 379 | 379 | end |
| 380 | 380 | |
| 381 | 381 | |
| ... | ... | @@ -410,12 +410,12 @@ namespace :gitlab do |
| 410 | 410 | puts "no".red |
| 411 | 411 | puts "#{repo_base_path} is missing".red |
| 412 | 412 | try_fixing_it( |
| 413 | - "This should have been created when setting up Gitlab Shell.", | |
| 413 | + "This should have been created when setting up GitLab Shell.", | |
| 414 | 414 | "Make sure it's set correctly in config/gitlab.yml", |
| 415 | - "Make sure Gitlab Shell is installed correctly." | |
| 415 | + "Make sure GitLab Shell is installed correctly." | |
| 416 | 416 | ) |
| 417 | 417 | for_more_information( |
| 418 | - see_installation_guide_section "Gitlab Shell" | |
| 418 | + see_installation_guide_section "GitLab Shell" | |
| 419 | 419 | ) |
| 420 | 420 | fix_and_rerun |
| 421 | 421 | end |
| ... | ... | @@ -460,7 +460,7 @@ namespace :gitlab do |
| 460 | 460 | "find #{repo_base_path} -type d -print0 | sudo xargs -0 chmod g+s" |
| 461 | 461 | ) |
| 462 | 462 | for_more_information( |
| 463 | - see_installation_guide_section "Gitlab Shell" | |
| 463 | + see_installation_guide_section "GitLab Shell" | |
| 464 | 464 | ) |
| 465 | 465 | fix_and_rerun |
| 466 | 466 | end |
| ... | ... | @@ -486,7 +486,7 @@ namespace :gitlab do |
| 486 | 486 | "sudo chown -R #{gitlab_shell_ssh_user}:#{gitlab_shell_owner_group} #{repo_base_path}" |
| 487 | 487 | ) |
| 488 | 488 | for_more_information( |
| 489 | - see_installation_guide_section "Gitlab Shell" | |
| 489 | + see_installation_guide_section "GitLab Shell" | |
| 490 | 490 | ) |
| 491 | 491 | fix_and_rerun |
| 492 | 492 | end |
| ... | ... | @@ -535,7 +535,7 @@ namespace :gitlab do |
| 535 | 535 | File.realpath(project_hook_file) == File.realpath(gitlab_shell_hook_file) |
| 536 | 536 | puts "ok".green |
| 537 | 537 | else |
| 538 | - puts "not a link to Gitlab Shell's hook".red | |
| 538 | + puts "not a link to GitLab Shell's hook".red | |
| 539 | 539 | try_fixing_it( |
| 540 | 540 | "sudo -u #{gitlab_shell_ssh_user} ln -sf #{gitlab_shell_hook_file} #{project_hook_file}" |
| 541 | 541 | ) | ... | ... |
spec/features/gitlab_flavored_markdown_spec.rb
spec/helpers/gitlab_markdown_helper_spec.rb
| ... | ... | @@ -370,7 +370,7 @@ describe GitlabMarkdownHelper do |
| 370 | 370 | @wiki.stub(:content).and_return('wiki content') |
| 371 | 371 | end |
| 372 | 372 | |
| 373 | - it "should use Gitlab Flavored Markdown for markdown files" do | |
| 373 | + it "should use GitLab Flavored Markdown for markdown files" do | |
| 374 | 374 | @wiki.stub(:format).and_return(:markdown) |
| 375 | 375 | |
| 376 | 376 | helper.should_receive(:markdown).with('wiki content') | ... | ... |