Commit 375caeefcfb2672c8fdce18cf6f35372729d0c43
Exists in
master
and in
4 other branches
Merge branch 'master' into fixes/api
Showing
29 changed files
with
224 additions
and
94 deletions
Show diff stats
app/assets/stylesheets/gitlab_bootstrap/common.scss
app/controllers/graph_controller.rb
... | ... | @@ -7,10 +7,20 @@ class GraphController < ProjectResourceController |
7 | 7 | before_filter :require_non_empty_project |
8 | 8 | |
9 | 9 | def show |
10 | + if params.has_key?(:q) && params[:q].blank? | |
11 | + redirect_to project_graph_path(@project, params[:id]) | |
12 | + return | |
13 | + end | |
14 | + | |
15 | + if params.has_key?(:q) | |
16 | + @q = params[:q] | |
17 | + @commit = @project.repository.commit(@q) || @commit | |
18 | + end | |
19 | + | |
10 | 20 | respond_to do |format| |
11 | 21 | format.html |
12 | 22 | format.json do |
13 | - graph = Gitlab::Graph::JsonBuilder.new(project, @ref) | |
23 | + graph = Gitlab::Graph::JsonBuilder.new(project, @ref, @commit) | |
14 | 24 | render :json => graph.to_json |
15 | 25 | end |
16 | 26 | end | ... | ... |
app/controllers/public/projects_controller.rb
... | ... | @@ -6,7 +6,7 @@ class Public::ProjectsController < ApplicationController |
6 | 6 | layout 'public' |
7 | 7 | |
8 | 8 | def index |
9 | - @projects = Project.public | |
9 | + @projects = Project.public_only | |
10 | 10 | @projects = @projects.includes(:namespace).order("namespaces.path, projects.name ASC").page(params[:page]).per(20) |
11 | 11 | end |
12 | 12 | end | ... | ... |
app/controllers/registrations_controller.rb
1 | 1 | class RegistrationsController < Devise::RegistrationsController |
2 | 2 | before_filter :signup_enabled? |
3 | 3 | |
4 | + def destroy | |
5 | + if current_user.owned_projects.count > 0 | |
6 | + redirect_to account_profile_path, alert: "Remove projects and groups before removing account." and return | |
7 | + end | |
8 | + current_user.destroy | |
9 | + | |
10 | + respond_to do |format| | |
11 | + format.html { redirect_to new_user_session_path, notice: "Account successfully removed." } | |
12 | + end | |
13 | + end | |
14 | + | |
4 | 15 | private |
5 | 16 | |
6 | 17 | def signup_enabled? | ... | ... |
app/models/concerns/issuable.rb
... | ... | @@ -19,12 +19,12 @@ module Issuable |
19 | 19 | validates :title, presence: true, length: { within: 0..255 } |
20 | 20 | validates :closed, inclusion: { in: [true, false] } |
21 | 21 | |
22 | - scope :opened, where(closed: false) | |
23 | - scope :closed, where(closed: true) | |
22 | + scope :opened, -> { where(closed: false) } | |
23 | + scope :closed, -> { where(closed: true) } | |
24 | 24 | scope :of_group, ->(group) { where(project_id: group.project_ids) } |
25 | 25 | scope :of_user_team, ->(team) { where(project_id: team.project_ids, assignee_id: team.member_ids) } |
26 | 26 | scope :assigned, ->(u) { where(assignee_id: u.id)} |
27 | - scope :recent, order("created_at DESC") | |
27 | + scope :recent, -> { order("created_at DESC") } | |
28 | 28 | |
29 | 29 | delegate :name, |
30 | 30 | :email, | ... | ... |
app/models/event.rb
... | ... | @@ -42,8 +42,8 @@ class Event < ActiveRecord::Base |
42 | 42 | serialize :data |
43 | 43 | |
44 | 44 | # Scopes |
45 | - scope :recent, order("created_at DESC") | |
46 | - scope :code_push, where(action: Pushed) | |
45 | + scope :recent, -> { order("created_at DESC") } | |
46 | + scope :code_push, -> { where(action: Pushed) } | |
47 | 47 | scope :in_projects, ->(project_ids) { where(project_id: project_ids).recent } |
48 | 48 | |
49 | 49 | class << self | ... | ... |
app/models/milestone.rb
... | ... | @@ -20,8 +20,8 @@ class Milestone < ActiveRecord::Base |
20 | 20 | has_many :issues |
21 | 21 | has_many :merge_requests |
22 | 22 | |
23 | - scope :active, where(closed: false) | |
24 | - scope :closed, where(closed: true) | |
23 | + scope :active, -> { where(closed: false) } | |
24 | + scope :closed, -> { where(closed: true) } | |
25 | 25 | |
26 | 26 | validates :title, presence: true |
27 | 27 | validates :project, presence: true | ... | ... |
app/models/namespace.rb
... | ... | @@ -29,7 +29,7 @@ class Namespace < ActiveRecord::Base |
29 | 29 | after_update :move_dir |
30 | 30 | after_destroy :rm_dir |
31 | 31 | |
32 | - scope :root, where('type IS NULL') | |
32 | + scope :root, -> { where('type IS NULL') } | |
33 | 33 | |
34 | 34 | def self.search query |
35 | 35 | where("name LIKE :query OR path LIKE :query", query: "%#{query}%") | ... | ... |
app/models/note.rb
... | ... | @@ -43,8 +43,8 @@ class Note < ActiveRecord::Base |
43 | 43 | |
44 | 44 | # Scopes |
45 | 45 | scope :for_commit_id, ->(commit_id) { where(noteable_type: "Commit", commit_id: commit_id) } |
46 | - scope :inline, where("line_code IS NOT NULL") | |
47 | - scope :not_inline, where("line_code IS NULL") | |
46 | + scope :inline, -> { where("line_code IS NOT NULL") } | |
47 | + scope :not_inline, -> { where("line_code IS NULL") } | |
48 | 48 | |
49 | 49 | scope :common, ->{ where(noteable_type: ["", nil]) } |
50 | 50 | scope :fresh, ->{ order("created_at ASC, id ASC") } | ... | ... |
app/models/project.rb
... | ... | @@ -91,7 +91,7 @@ class Project < ActiveRecord::Base |
91 | 91 | scope :sorted_by_activity, ->() { order("(SELECT max(events.created_at) FROM events WHERE events.project_id = projects.id) DESC") } |
92 | 92 | scope :personal, ->(user) { where(namespace_id: user.namespace_id) } |
93 | 93 | scope :joined, ->(user) { where("namespace_id != ?", user.namespace_id) } |
94 | - scope :public, where(public: true) | |
94 | + scope :public_only, -> { where(public: true) } | |
95 | 95 | |
96 | 96 | class << self |
97 | 97 | def abandoned | ... | ... |
app/models/snippet.rb
... | ... | @@ -31,9 +31,9 @@ class Snippet < ActiveRecord::Base |
31 | 31 | validates :content, presence: true |
32 | 32 | |
33 | 33 | # Scopes |
34 | - scope :fresh, order("created_at DESC") | |
35 | - scope :non_expired, where(["expires_at IS NULL OR expires_at > ?", Time.current]) | |
36 | - scope :expired, where(["expires_at IS NOT NULL AND expires_at < ?", Time.current]) | |
34 | + scope :fresh, -> { order("created_at DESC") } | |
35 | + scope :non_expired, -> { where(["expires_at IS NULL OR expires_at > ?", Time.current]) } | |
36 | + scope :expired, -> { where(["expires_at IS NOT NULL AND expires_at < ?", Time.current]) } | |
37 | 37 | |
38 | 38 | def self.content_types |
39 | 39 | [ | ... | ... |
app/models/user.rb
... | ... | @@ -87,10 +87,10 @@ class User < ActiveRecord::Base |
87 | 87 | delegate :path, to: :namespace, allow_nil: true, prefix: true |
88 | 88 | |
89 | 89 | # Scopes |
90 | - scope :admins, where(admin: true) | |
91 | - scope :blocked, where(blocked: true) | |
92 | - scope :active, where(blocked: false) | |
93 | - scope :alphabetically, order('name ASC') | |
90 | + scope :admins, -> { where(admin: true) } | |
91 | + scope :blocked, -> { where(blocked: true) } | |
92 | + scope :active, -> { where(blocked: false) } | |
93 | + scope :alphabetically, -> { order('name ASC') } | |
94 | 94 | scope :in_team, ->(team){ where(id: team.member_ids) } |
95 | 95 | scope :not_in_team, ->(team){ where('users.id NOT IN (:ids)', ids: team.member_ids) } |
96 | 96 | scope :potential_team_members, ->(team) { team.members.any? ? active.not_in_team(team) : active } | ... | ... |
app/models/users_project.rb
... | ... | @@ -32,10 +32,10 @@ class UsersProject < ActiveRecord::Base |
32 | 32 | |
33 | 33 | delegate :name, :username, :email, to: :user, prefix: true |
34 | 34 | |
35 | - scope :guests, where(project_access: GUEST) | |
36 | - scope :reporters, where(project_access: REPORTER) | |
37 | - scope :developers, where(project_access: DEVELOPER) | |
38 | - scope :masters, where(project_access: MASTER) | |
35 | + scope :guests, -> { where(project_access: GUEST) } | |
36 | + scope :reporters, -> { where(project_access: REPORTER) } | |
37 | + scope :developers, -> { where(project_access: DEVELOPER) } | |
38 | + scope :masters, -> { where(project_access: MASTER) } | |
39 | 39 | |
40 | 40 | scope :in_project, ->(project) { where(project_id: project.id) } |
41 | 41 | scope :in_projects, ->(projects) { where(project_id: project_ids) } | ... | ... |
app/views/admin/users/_form.html.haml
... | ... | @@ -11,17 +11,17 @@ |
11 | 11 | .clearfix |
12 | 12 | = f.label :name |
13 | 13 | .input |
14 | - = f.text_field :name, required: true | |
14 | + = f.text_field :name, required: true, autocomplete: "off" | |
15 | 15 | %span.help-inline * required |
16 | 16 | .clearfix |
17 | 17 | = f.label :username |
18 | 18 | .input |
19 | - = f.text_field :username, required: true | |
19 | + = f.text_field :username, required: true, autocomplete: "off" | |
20 | 20 | %span.help-inline * required |
21 | 21 | .clearfix |
22 | 22 | = f.label :email |
23 | 23 | .input |
24 | - = f.text_field :email, required: true | |
24 | + = f.text_field :email, required: true, autocomplete: "off" | |
25 | 25 | %span.help-inline * required |
26 | 26 | |
27 | 27 | %fieldset | ... | ... |
... | ... | @@ -0,0 +1,16 @@ |
1 | +%h3.page_title Project Network Graph | |
2 | +%hr | |
3 | + | |
4 | +.clearfix | |
5 | + .pull-left | |
6 | + = render partial: 'shared/ref_switcher', locals: {destination: 'graph', path: @path} | |
7 | + | |
8 | + .search.pull-right | |
9 | + = form_tag project_graph_path(@project, params[:id]), method: :get do |f| | |
10 | + .control-group | |
11 | + = label_tag :search , "Looking for commit:", class: 'control-label light' | |
12 | + .controls | |
13 | + = text_field_tag :q, @q, placeholder: "Input SHA", class: "search-input xlarge" | |
14 | + = button_tag type: 'submit', class: 'btn vtop' do | |
15 | + %i.icon-search | |
16 | + | ... | ... |
app/views/graph/show.html.haml
1 | -%h3.page_title Project Network Graph | |
2 | -%br | |
3 | -= render partial: 'shared/ref_switcher', locals: {destination: 'graph', path: @path} | |
4 | -%br | |
1 | += render "head" | |
5 | 2 | .graph_holder |
6 | 3 | %h4 |
7 | 4 | %small You can move around the graph by using the arrow keys. |
... | ... | @@ -12,8 +9,9 @@ |
12 | 9 | var branch_graph; |
13 | 10 | $(function(){ |
14 | 11 | branch_graph = new BranchGraph($("#holder"), { |
15 | - url: '#{project_graph_path(@project, @ref, format: :json)}', | |
12 | + url: '#{project_graph_path(@project, @ref, q: @q, format: :json)}', | |
16 | 13 | commit_url: '#{project_commit_path(@project, 'ae45ca32').gsub("ae45ca32", "%s")}', |
17 | - ref: '#{@ref}' | |
14 | + ref: '#{@ref}', | |
15 | + commit_id: '#{@commit.id}' | |
18 | 16 | }); |
19 | 17 | }); | ... | ... |
app/views/profiles/account.html.haml
... | ... | @@ -77,4 +77,10 @@ |
77 | 77 | .input |
78 | 78 | = f.submit 'Save username', class: "btn btn-save" |
79 | 79 | |
80 | - | |
80 | +- if Gitlab.config.gitlab.signup_enabled | |
81 | + %fieldset.remove-account | |
82 | + %legend | |
83 | + Remove account | |
84 | + %small.cred.pull-right | |
85 | + Before removing the account you must remove all projects! | |
86 | + = link_to 'Delete account', user_registration_path, confirm: "REMOVE #{current_user.name}? Are you sure?", method: :delete, class: "btn btn-remove delete-key btn-small pull-right" | |
81 | 87 | \ No newline at end of file | ... | ... |
config/routes.rb
... | ... | @@ -167,12 +167,12 @@ Gitlab::Application.routes.draw do |
167 | 167 | get "files" |
168 | 168 | end |
169 | 169 | |
170 | + resources :blob, only: [:show], constraints: {id: /.+/} | |
170 | 171 | resources :tree, only: [:show, :edit, :update], constraints: {id: /.+/} |
171 | 172 | resources :commit, only: [:show], constraints: {id: /[[:alnum:]]{6,40}/} |
172 | 173 | resources :commits, only: [:show], constraints: {id: /.+/} |
173 | 174 | resources :compare, only: [:index, :create] |
174 | 175 | resources :blame, only: [:show], constraints: {id: /.+/} |
175 | - resources :blob, only: [:show], constraints: {id: /.+/} | |
176 | 176 | resources :graph, only: [:show], constraints: {id: /.+/} |
177 | 177 | match "/compare/:from...:to" => "compare#show", as: "compare", |
178 | 178 | :via => [:get, :post], constraints: {from: /.+/, to: /.+/} | ... | ... |
doc/api/repositories.md
lib/api/projects.rb
... | ... | @@ -265,6 +265,7 @@ module Gitlab |
265 | 265 | # GET /projects/:id/repository/branches/:branch |
266 | 266 | get ":id/repository/branches/:branch" do |
267 | 267 | @branch = user_project.repo.heads.find { |item| item.name == params[:branch] } |
268 | + not_found!("Branch does not exist") if @branch.nil? | |
268 | 269 | present @branch, with: Entities::RepoObject, project: user_project |
269 | 270 | end |
270 | 271 | ... | ... |
lib/extracts_path.rb
... | ... | @@ -117,7 +117,10 @@ module ExtractsPath |
117 | 117 | |
118 | 118 | @id = File.join(@ref, @path) |
119 | 119 | |
120 | - @commit = CommitDecorator.decorate(@project.repository.commit(@ref)) | |
120 | + # It is used "@project.repository.commits(@ref, @path, 1, 0)", | |
121 | + # because "@project.repository.commit(@ref)" returns wrong commit when @ref is tag name. | |
122 | + commits = @project.repository.commits(@ref, @path, 1, 0) | |
123 | + @commit = CommitDecorator.decorate(commits.first) | |
121 | 124 | |
122 | 125 | @tree = Tree.new(@commit.tree, @ref, @path) |
123 | 126 | @tree = TreeDecorator.new(@tree) | ... | ... |
lib/gitlab/graph/json_builder.rb
... | ... | @@ -9,9 +9,10 @@ module Gitlab |
9 | 9 | @max_count ||= 650 |
10 | 10 | end |
11 | 11 | |
12 | - def initialize project, ref | |
12 | + def initialize project, ref, commit | |
13 | 13 | @project = project |
14 | 14 | @ref = ref |
15 | + @commit = commit | |
15 | 16 | @repo = project.repo |
16 | 17 | @ref_cache = {} |
17 | 18 | |
... | ... | @@ -31,7 +32,8 @@ module Gitlab |
31 | 32 | # Get commits from repository |
32 | 33 | # |
33 | 34 | def collect_commits |
34 | - @commits = Grit::Commit.find_all(repo, nil, {max_count: self.class.max_count}).dup | |
35 | + | |
36 | + @commits = Grit::Commit.find_all(repo, nil, {topo_order: true, max_count: self.class.max_count, skip: to_commit}).dup | |
35 | 37 | |
36 | 38 | # Decorate with app/models/commit.rb |
37 | 39 | @commits.map! { |commit| ::Commit.new(commit) } |
... | ... | @@ -49,41 +51,28 @@ module Gitlab |
49 | 51 | # list of commits. As well as returns date list |
50 | 52 | # corelated with time set on commits. |
51 | 53 | # |
52 | - # @param [Array<Graph::Commit>] comits to index | |
54 | + # @param [Array<Graph::Commit>] commits to index | |
53 | 55 | # |
54 | 56 | # @return [Array<TimeDate>] list of commit dates corelated with time on commits |
55 | 57 | def index_commits |
56 | - days, heads, times = [], [], [] | |
58 | + days, times = [], [] | |
57 | 59 | map = {} |
58 | 60 | |
59 | 61 | commits.reverse.each_with_index do |c,i| |
60 | 62 | c.time = i |
61 | 63 | days[i] = c.committed_date |
62 | 64 | map[c.id] = c |
63 | - heads += c.refs unless c.refs.nil? | |
64 | 65 | times[i] = c |
65 | 66 | end |
66 | 67 | |
67 | - heads.select!{|h| h.is_a? Grit::Head or h.is_a? Grit::Remote} | |
68 | - # sort heads so the master is top and current branches are closer | |
69 | - heads.sort! do |a,b| | |
70 | - if a.name == @ref | |
71 | - -1 | |
72 | - elsif b.name == @ref | |
73 | - 1 | |
74 | - else | |
75 | - b.commit.committed_date <=> a.commit.committed_date | |
76 | - end | |
77 | - end | |
78 | - | |
79 | 68 | @_reserved = {} |
80 | 69 | days.each_index do |i| |
81 | 70 | @_reserved[i] = [] |
82 | 71 | end |
83 | 72 | |
84 | - heads.each do |h| | |
85 | - if map.include? h.commit.id then | |
86 | - place_chain(map[h.commit.id], map) | |
73 | + commits_sort_by_ref.each do |commit| | |
74 | + if map.include? commit.id then | |
75 | + place_chain(map[commit.id], map) | |
87 | 76 | end |
88 | 77 | end |
89 | 78 | |
... | ... | @@ -95,6 +84,45 @@ module Gitlab |
95 | 84 | days |
96 | 85 | end |
97 | 86 | |
87 | + # Skip count that the target commit is displayed in center. | |
88 | + def to_commit | |
89 | + commits = Grit::Commit.find_all(repo, nil, {topo_order: true}) | |
90 | + commit_index = commits.index do |c| | |
91 | + c.id == @commit.id | |
92 | + end | |
93 | + | |
94 | + if commit_index && (self.class.max_count / 2 < commit_index) then | |
95 | + # get max index that commit is displayed in the center. | |
96 | + commit_index - self.class.max_count / 2 | |
97 | + else | |
98 | + 0 | |
99 | + end | |
100 | + end | |
101 | + | |
102 | + def commits_sort_by_ref | |
103 | + commits.sort do |a,b| | |
104 | + if include_ref?(a) | |
105 | + -1 | |
106 | + elsif include_ref?(b) | |
107 | + 1 | |
108 | + else | |
109 | + b.committed_date <=> a.committed_date | |
110 | + end | |
111 | + end | |
112 | + end | |
113 | + | |
114 | + def include_ref?(commit) | |
115 | + heads = commit.refs.select do |ref| | |
116 | + ref.is_a?(Grit::Head) or ref.is_a?(Grit::Remote) or ref.is_a?(Grit::Tag) | |
117 | + end | |
118 | + | |
119 | + heads.map! do |head| | |
120 | + head.name | |
121 | + end | |
122 | + | |
123 | + heads.include?(@ref) | |
124 | + end | |
125 | + | |
98 | 126 | def find_free_parent_spaces(commit, map, times) |
99 | 127 | spaces = [] |
100 | 128 | ... | ... |
lib/tasks/gitlab/check.rake
... | ... | @@ -311,7 +311,7 @@ namespace :gitlab do |
311 | 311 | "Remove \"-e \" so the line starts with PATH" |
312 | 312 | ) |
313 | 313 | for_more_information( |
314 | - see_installation_guide_section("Gitolite"), | |
314 | + see_installation_guide_section("Gitlab Shell"), | |
315 | 315 | "https://github.com/gitlabhq/gitlabhq/issues/1059" |
316 | 316 | ) |
317 | 317 | fix_and_rerun |
... | ... | @@ -368,10 +368,10 @@ namespace :gitlab do |
368 | 368 | |
369 | 369 | |
370 | 370 | namespace :gitlab_shell do |
371 | - desc "GITLAB | Check the configuration of Gitolite" | |
371 | + desc "GITLAB | Check the configuration of Gitlab Shell" | |
372 | 372 | task check: :environment do |
373 | 373 | warn_user_is_not_gitlab |
374 | - start_checking "Gitolite" | |
374 | + start_checking "Gitlab Shell" | |
375 | 375 | |
376 | 376 | check_repo_base_exists |
377 | 377 | check_repo_base_is_not_symlink |
... | ... | @@ -380,7 +380,7 @@ namespace :gitlab do |
380 | 380 | check_post_receive_hook_is_up_to_date |
381 | 381 | check_repos_post_receive_hooks_is_link |
382 | 382 | |
383 | - finished_checking "Gitolite" | |
383 | + finished_checking "Gitlab Shell" | |
384 | 384 | end |
385 | 385 | |
386 | 386 | |
... | ... | @@ -392,7 +392,7 @@ namespace :gitlab do |
392 | 392 | print "post-receive hook up-to-date? ... " |
393 | 393 | |
394 | 394 | hook_file = "post-receive" |
395 | - gitlab_shell_hooks_path = File.join(Gitlab.config.gitlab_shell.hooks_path, "common") | |
395 | + gitlab_shell_hooks_path = Gitlab.config.gitlab_shell.hooks_path | |
396 | 396 | gitlab_shell_hook_file = File.join(gitlab_shell_hooks_path, hook_file) |
397 | 397 | gitlab_shell_ssh_user = Gitlab.config.gitlab_shell.ssh_user |
398 | 398 | |
... | ... | @@ -401,22 +401,7 @@ namespace :gitlab do |
401 | 401 | return |
402 | 402 | end |
403 | 403 | |
404 | - gitlab_shell_hook_content = File.read(gitlab_shell_hook_file) | |
405 | - gitlab_hook_file = Rails.root.join.join("lib", "hooks", hook_file) | |
406 | - gitlab_hook_content = File.read(gitlab_hook_file) | |
407 | - | |
408 | - if gitlab_shell_hook_content == gitlab_hook_content | |
409 | - puts "yes".green | |
410 | - else | |
411 | - puts "no".red | |
412 | - try_fixing_it( | |
413 | - "sudo -u #{gitlab_shell_ssh_user} cp #{gitlab_hook_file} #{gitlab_shell_hook_file}" | |
414 | - ) | |
415 | - for_more_information( | |
416 | - see_installation_guide_section "Setup GitLab Hooks" | |
417 | - ) | |
418 | - fix_and_rerun | |
419 | - end | |
404 | + puts "yes".green | |
420 | 405 | end |
421 | 406 | |
422 | 407 | def check_repo_base_exists |
... | ... | @@ -430,12 +415,12 @@ namespace :gitlab do |
430 | 415 | puts "no".red |
431 | 416 | puts "#{repo_base_path} is missing".red |
432 | 417 | try_fixing_it( |
433 | - "This should have been created when setting up Gitolite.", | |
418 | + "This should have been created when setting up Gitlab Shell.", | |
434 | 419 | "Make sure it's set correctly in config/gitlab.yml", |
435 | - "Make sure Gitolite is installed correctly." | |
420 | + "Make sure Gitlab Shell is installed correctly." | |
436 | 421 | ) |
437 | 422 | for_more_information( |
438 | - see_installation_guide_section "Gitolite" | |
423 | + see_installation_guide_section "Gitlab Shell" | |
439 | 424 | ) |
440 | 425 | fix_and_rerun |
441 | 426 | end |
... | ... | @@ -480,7 +465,7 @@ namespace :gitlab do |
480 | 465 | "find #{repo_base_path} -type d -print0 | sudo xargs -0 chmod g+s" |
481 | 466 | ) |
482 | 467 | for_more_information( |
483 | - see_installation_guide_section "Gitolite" | |
468 | + see_installation_guide_section "Gitlab Shell" | |
484 | 469 | ) |
485 | 470 | fix_and_rerun |
486 | 471 | end |
... | ... | @@ -506,7 +491,7 @@ namespace :gitlab do |
506 | 491 | "sudo chown -R #{gitlab_shell_ssh_user}:#{gitlab_shell_owner_group} #{repo_base_path}" |
507 | 492 | ) |
508 | 493 | for_more_information( |
509 | - see_installation_guide_section "Gitolite" | |
494 | + see_installation_guide_section "Gitlab Shell" | |
510 | 495 | ) |
511 | 496 | fix_and_rerun |
512 | 497 | end |
... | ... | @@ -516,7 +501,7 @@ namespace :gitlab do |
516 | 501 | print "post-receive hooks in repos are links: ... " |
517 | 502 | |
518 | 503 | hook_file = "post-receive" |
519 | - gitlab_shell_hooks_path = File.join(Gitlab.config.gitlab_shell.hooks_path, "common") | |
504 | + gitlab_shell_hooks_path = Gitlab.config.gitlab_shell.hooks_path | |
520 | 505 | gitlab_shell_hook_file = File.join(gitlab_shell_hooks_path, hook_file) |
521 | 506 | gitlab_shell_ssh_user = Gitlab.config.gitlab_shell.ssh_user |
522 | 507 | |
... | ... | @@ -545,7 +530,7 @@ namespace :gitlab do |
545 | 530 | "sudo -u #{gitlab_shell_ssh_user} ln -sf #{gitlab_shell_hook_file} #{project_hook_file}" |
546 | 531 | ) |
547 | 532 | for_more_information( |
548 | - "lib/support/rewrite-hooks.sh" | |
533 | + "#{gitlab_shell_user_home}/gitlab-shell/support/rewrite-hooks.sh" | |
549 | 534 | ) |
550 | 535 | fix_and_rerun |
551 | 536 | next |
... | ... | @@ -555,7 +540,7 @@ namespace :gitlab do |
555 | 540 | File.realpath(project_hook_file) == File.realpath(gitlab_shell_hook_file) |
556 | 541 | puts "ok".green |
557 | 542 | else |
558 | - puts "not a link to Gitolite's hook".red | |
543 | + puts "not a link to Gitlab Shell's hook".red | |
559 | 544 | try_fixing_it( |
560 | 545 | "sudo -u #{gitlab_shell_ssh_user} ln -sf #{gitlab_shell_hook_file} #{project_hook_file}" |
561 | 546 | ) |
... | ... | @@ -577,7 +562,7 @@ namespace :gitlab do |
577 | 562 | end |
578 | 563 | |
579 | 564 | def gitlab_shell_version |
580 | - gitlab_shell_version_file = "#{gitlab_shell_user_home}/gitlab_shell/src/VERSION" | |
565 | + gitlab_shell_version_file = "#{gitlab_shell_user_home}/gitlab-shell/VERSION" | |
581 | 566 | if File.readable?(gitlab_shell_version_file) |
582 | 567 | File.read(gitlab_shell_version_file) |
583 | 568 | end | ... | ... |
lib/tasks/sidekiq.rake
... | ... | @@ -8,7 +8,12 @@ namespace :sidekiq do |
8 | 8 | task :start do |
9 | 9 | run "nohup bundle exec sidekiq -q post_receive,mailer,system_hook,project_web_hook,gitlab_shell,common,default -e #{Rails.env} -P #{pidfile} >> #{Rails.root.join("log", "sidekiq.log")} 2>&1 &" |
10 | 10 | end |
11 | - | |
11 | + | |
12 | + desc "GITLAB | Start sidekiq with launchd on Mac OS X" | |
13 | + task :launchd do | |
14 | + run "bundle exec sidekiq -q post_receive,mailer,system_hook,project_web_hook,gitlab_shell,common,default -e #{Rails.env} -P #{pidfile} >> #{Rails.root.join("log", "sidekiq.log")} 2>&1" | |
15 | + end | |
16 | + | |
12 | 17 | def pidfile |
13 | 18 | Rails.root.join("tmp", "pids", "sidekiq.pid") |
14 | 19 | end | ... | ... |
spec/factories.rb
spec/requests/api/projects_spec.rb
... | ... | @@ -115,6 +115,11 @@ describe Gitlab::API do |
115 | 115 | json_response['commit']['id'].should == '621491c677087aa243f165eab467bfdfbee00be1' |
116 | 116 | json_response['protected'].should == false |
117 | 117 | end |
118 | + | |
119 | + it "should return a 404 error if branch is not available" do | |
120 | + get api("/projects/#{project.id}/repository/branches/unknown", user) | |
121 | + response.status.should == 404 | |
122 | + end | |
118 | 123 | end |
119 | 124 | |
120 | 125 | describe "PUT /projects/:id/repository/branches/:branch/protect" do | ... | ... |
... | ... | @@ -0,0 +1,48 @@ |
1 | +require 'spec_helper' | |
2 | + | |
3 | +describe "Profile account page" do | |
4 | + let(:user) { create(:user) } | |
5 | + | |
6 | + before do | |
7 | + login_as :user | |
8 | + end | |
9 | + | |
10 | + describe "when signup is enabled" do | |
11 | + before do | |
12 | + Gitlab.config.gitlab.stub(:signup_enabled).and_return(true) | |
13 | + visit account_profile_path | |
14 | + end | |
15 | + it { page.should have_content("Remove account") } | |
16 | + | |
17 | + it "should delete the account", js: true do | |
18 | + expect { click_link "Delete account" }.to change {User.count}.by(-1) | |
19 | + current_path.should == new_user_session_path | |
20 | + end | |
21 | + end | |
22 | + | |
23 | + describe "when signup is enabled and user has a project" do | |
24 | + before do | |
25 | + Gitlab.config.gitlab.stub(:signup_enabled).and_return(true) | |
26 | + @project = create(:project, namespace: @user.namespace) | |
27 | + @project.team << [@user, :master] | |
28 | + visit account_profile_path | |
29 | + end | |
30 | + it { page.should have_content("Remove account") } | |
31 | + | |
32 | + it "should not allow user to delete the account" do | |
33 | + expect { click_link "Delete account" }.not_to change {User.count}.by(-1) | |
34 | + end | |
35 | + end | |
36 | + | |
37 | + describe "when signup is disabled" do | |
38 | + before do | |
39 | + Gitlab.config.gitlab.stub(:signup_enabled).and_return(false) | |
40 | + visit account_profile_path | |
41 | + end | |
42 | + | |
43 | + it "should not have option to remove account" do | |
44 | + page.should_not have_content("Remove account") | |
45 | + current_path.should == account_profile_path | |
46 | + end | |
47 | + end | |
48 | +end | |
0 | 49 | \ No newline at end of file | ... | ... |
spec/routing/project_routing_spec.rb
... | ... | @@ -392,6 +392,7 @@ end |
392 | 392 | describe BlobController, "routing" do |
393 | 393 | it "to #show" do |
394 | 394 | get("/gitlabhq/blob/master/app/models/project.rb").should route_to('blob#show', project_id: 'gitlabhq', id: 'master/app/models/project.rb') |
395 | + get("/gitlabhq/blob/master/app/models/compare.rb").should route_to('blob#show', project_id: 'gitlabhq', id: 'master/app/models/compare.rb') | |
395 | 396 | end |
396 | 397 | end |
397 | 398 | ... | ... |
vendor/assets/javascripts/branch-graph.js
... | ... | @@ -161,14 +161,23 @@ |
161 | 161 | |
162 | 162 | if (this.commits[i].refs) { |
163 | 163 | this.appendLabel(x, y, this.commits[i].refs); |
164 | - | |
165 | - // The main branch is displayed in the center. | |
166 | - re = new RegExp('(^| )' + this.options.ref + '( |$)'); | |
167 | - if (this.commits[i].refs.match(re)) { | |
168 | - scrollLeft = x - graphWidth / 2; | |
169 | - } | |
170 | 164 | } |
171 | 165 | |
166 | + // mark commit and displayed in the center | |
167 | + if (this.commits[i].id == this.options.commit_id) { | |
168 | + r.path([ | |
169 | + 'M', x, y - 5, | |
170 | + 'L', x + 4, y - 15, | |
171 | + 'L', x - 4, y - 15, | |
172 | + 'Z' | |
173 | + ]).attr({ | |
174 | + "fill": "#000", | |
175 | + "fill-opacity": .7, | |
176 | + "stroke": "none" | |
177 | + }); | |
178 | + scrollLeft = x - graphWidth / 2; | |
179 | + } | |
180 | + | |
172 | 181 | this.appendAnchor(top, this.commits[i], x, y); |
173 | 182 | } |
174 | 183 | top.toFront(); | ... | ... |