From 1101ceb3f4dfb8983f5876215378331a2d9bcc88 Mon Sep 17 00:00:00 2001
From: Hiroyuki Sato <sathiroyuki@gmail.com>
Date: Wed, 21 Aug 2013 19:20:29 +0900
Subject: [PATCH] A little improvement

1. Replace params key 'q' with 'extended_sha1'. A extended SHA1 syntax is explained in 'man gitrevisions'.
2. Change the placeholder of looking for commit.
3. Change the label of ref filter.
---
 app/views/projects/network/_head.html.haml      | 6 +++---
 features/steps/project/project_network_graph.rb | 4 ++--
 lib/extracts_path.rb                            | 6 +++---
 3 files changed, 8 insertions(+), 8 deletions(-)

diff --git a/app/views/projects/network/_head.html.haml b/app/views/projects/network/_head.html.haml
index ed9fcaace25..2790ed6f594 100644
--- a/app/views/projects/network/_head.html.haml
+++ b/app/views/projects/network/_head.html.haml
@@ -4,7 +4,7 @@
   .pull-left
     = form_tag project_network_path(@project, @id), method: :get do |f|
       .control-group
-        = label_tag :filter_ref, "Show only selected ref", class: 'control-label light'
+        = label_tag :filter_ref, "Begin with the selected commit", class: 'control-label light'
         .controls
           = check_box_tag :filter_ref, 1, @options[:filter_ref]
     - @options.each do |key, value|
@@ -15,9 +15,9 @@
       .control-group
         = label_tag :search , "Looking for commit:", class: 'control-label light'
         .controls
-          = text_field_tag :q, @options[:q], placeholder: "Input SHA", class: "search-input input-xlarge"
+          = text_field_tag :extended_sha1, @options[:extended_sha1], placeholder: "Input an extended SHA1 syntax", class: "search-input input-xlarge"
           = button_tag type: 'submit', class: 'btn vtop' do
             %i.icon-search
           - @options.each do |key, value|
-            = hidden_field_tag(key, value, id: nil) unless key == "q"
+            = hidden_field_tag(key, value, id: nil) unless key == "extended_sha1"
 
diff --git a/features/steps/project/project_network_graph.rb b/features/steps/project/project_network_graph.rb
index b3be2a48ecc..57015f76626 100644
--- a/features/steps/project/project_network_graph.rb
+++ b/features/steps/project/project_network_graph.rb
@@ -76,7 +76,7 @@ class ProjectNetworkGraph < Spinach::FeatureSteps
 
   When 'I looking for a commit by SHA of "v2.1.0"' do
     within ".content .search" do
-      fill_in 'q', with: '98d6492'
+      fill_in 'extended_sha1', with: '98d6492'
       find('button').click
     end
     sleep 2
@@ -90,7 +90,7 @@ class ProjectNetworkGraph < Spinach::FeatureSteps
 
   When 'I look for a commit by ";"' do
     within ".content .search" do
-      fill_in 'q', with: ';'
+      fill_in 'extended_sha1', with: ';'
       find('button').click
     end
   end
diff --git a/lib/extracts_path.rb b/lib/extracts_path.rb
index f9843d503b4..53bc079296a 100644
--- a/lib/extracts_path.rb
+++ b/lib/extracts_path.rb
@@ -95,17 +95,17 @@ module ExtractsPath
   # resolved (e.g., when a user inserts an invalid path or ref).
   def assign_ref_vars
     # assign allowed options
-    allowed_options = ["filter_ref", "q"]
+    allowed_options = ["filter_ref", "extended_sha1"]
     @options = params.select {|key, value| allowed_options.include?(key) && !value.blank? }
     @options = HashWithIndifferentAccess.new(@options)
 
     @id = get_id
     @ref, @path = extract_ref(@id)
     @repo = @project.repository
-    if @options[:q].blank?
+    if @options[:extended_sha1].blank?
       @commit = @repo.commit(@ref)
     else
-      @commit = @repo.commit(@options[:q])
+      @commit = @repo.commit(@options[:extended_sha1])
     end
     @tree = Tree.new(@repo, @commit.id, @ref, @path)
     @hex_path = Digest::SHA1.hexdigest(@path)
-- 
GitLab