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

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHiroyuki Sato <h-sato@ruby-dev.jp>2016-10-28 14:38:14 +0300
committerHiroyuki Sato <h-sato@ruby-dev.jp>2016-11-06 06:05:13 +0300
commit56264f35d40e3ebcebf2b88b9ff6f3a8f4f545e9 (patch)
tree5ba7c48578b118e2b00ebfa1489f9f39acb87518
parentc392b0cc24ba40e3fed920c6c693cb24665193af (diff)
Network page appear with an error message when entering nonexistent git revision
-rw-r--r--app/assets/javascripts/network/network_bundle.js2
-rw-r--r--app/controllers/projects/network_controller.rb4
-rw-r--r--app/views/projects/network/show.html.haml5
-rw-r--r--lib/extracts_path.rb4
4 files changed, 10 insertions, 5 deletions
diff --git a/app/assets/javascripts/network/network_bundle.js b/app/assets/javascripts/network/network_bundle.js
index 42d6799c82f..a192273a180 100644
--- a/app/assets/javascripts/network/network_bundle.js
+++ b/app/assets/javascripts/network/network_bundle.js
@@ -9,6 +9,8 @@
(function() {
$(function() {
+ if (!$(".network-graph").length) return;
+
var network_graph;
network_graph = new Network({
url: $(".network-graph").attr('data-url'),
diff --git a/app/controllers/projects/network_controller.rb b/app/controllers/projects/network_controller.rb
index 34318391dd9..54783bbc5bb 100644
--- a/app/controllers/projects/network_controller.rb
+++ b/app/controllers/projects/network_controller.rb
@@ -11,7 +11,9 @@ class Projects::NetworkController < Projects::ApplicationController
@commit_url = namespace_project_commit_path(@project.namespace, @project, 'ae45ca32').gsub("ae45ca32", "%s")
respond_to do |format|
- format.html
+ format.html do
+ flash.now[:alert] = "Git revision '#{params[:extended_sha1]}' does not exist." if params[:extended_sha1].present? && !@commit
+ end
format.json do
@graph = Network::Graph.new(project, @ref, @commit, @options[:filter_ref])
diff --git a/app/views/projects/network/show.html.haml b/app/views/projects/network/show.html.haml
index 29df1bab04e..d8951e69242 100644
--- a/app/views/projects/network/show.html.haml
+++ b/app/views/projects/network/show.html.haml
@@ -17,5 +17,6 @@
= check_box_tag :filter_ref, 1, @options[:filter_ref]
%span Begin with the selected commit
- .network-graph{ data: { url: @url, commit_url: @commit_url, ref: @ref, commit_id: @commit.id } }
- = spinner nil, true
+ - if @commit
+ .network-graph{ data: { url: @url, commit_url: @commit_url, ref: @ref, commit_id: @commit.id } }
+ = spinner nil, true
diff --git a/lib/extracts_path.rb b/lib/extracts_path.rb
index 9b74364849e..a8cc189a8c2 100644
--- a/lib/extracts_path.rb
+++ b/lib/extracts_path.rb
@@ -125,9 +125,9 @@ module ExtractsPath
request.format = :atom if @commit
end
- end
- raise InvalidPathError unless @commit
+ raise InvalidPathError unless @commit
+ end
@hex_path = Digest::SHA1.hexdigest(@path)
@logs_path = logs_file_namespace_project_ref_path(@project.namespace,