summaryrefslogtreecommitdiff
path: root/app
diff options
context:
space:
mode:
Diffstat (limited to 'app')
-rw-r--r--app/assets/stylesheets/sections/notes.scss2
-rw-r--r--app/controllers/registrations_controller.rb4
-rw-r--r--app/models/group.rb2
-rw-r--r--app/models/project.rb1
-rw-r--r--app/views/projects/notes/discussions/_diff.html.haml6
5 files changed, 10 insertions, 5 deletions
diff --git a/app/assets/stylesheets/sections/notes.scss b/app/assets/stylesheets/sections/notes.scss
index a124d235783..5494845eb8c 100644
--- a/app/assets/stylesheets/sections/notes.scss
+++ b/app/assets/stylesheets/sections/notes.scss
@@ -81,7 +81,7 @@ ul.notes {
.diff-file .notes_holder {
font-size: 13px;
line-height: 18px;
- font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
+ font-family: $regular_font;
td {
border: 1px solid #ddd;
diff --git a/app/controllers/registrations_controller.rb b/app/controllers/registrations_controller.rb
index 97aa2d9bdb4..38d116a4ee3 100644
--- a/app/controllers/registrations_controller.rb
+++ b/app/controllers/registrations_controller.rb
@@ -1,6 +1,10 @@
class RegistrationsController < Devise::RegistrationsController
before_filter :signup_enabled?
+ def new
+ redirect_to(new_user_session_path)
+ end
+
def destroy
current_user.destroy
diff --git a/app/models/group.rb b/app/models/group.rb
index e098dfb3cdf..042b79a7850 100644
--- a/app/models/group.rb
+++ b/app/models/group.rb
@@ -91,7 +91,7 @@ class Group < Namespace
class << self
def search(query)
- where("LOWER(namespaces.name) LIKE :query", query: "%#{query.downcase}%")
+ where("LOWER(namespaces.name) LIKE :query or LOWER(namespaces.path) LIKE :query", query: "%#{query.downcase}%")
end
def sort(method)
diff --git a/app/models/project.rb b/app/models/project.rb
index cfe40553ab5..390e1457ca1 100644
--- a/app/models/project.rb
+++ b/app/models/project.rb
@@ -116,7 +116,6 @@ class Project < ActiveRecord::Base
validates :path,
presence: true,
length: { within: 0..255 },
- exclusion: { in: Gitlab::Blacklist.path },
format: { with: Gitlab::Regex.path_regex,
message: Gitlab::Regex.path_regex_message }
validates :issues_enabled, :merge_requests_enabled,
diff --git a/app/views/projects/notes/discussions/_diff.html.haml b/app/views/projects/notes/discussions/_diff.html.haml
index b4d1cce7980..f717c77a898 100644
--- a/app/views/projects/notes/discussions/_diff.html.haml
+++ b/app/views/projects/notes/discussions/_diff.html.haml
@@ -19,8 +19,10 @@
%td.new_line= "..."
%td.line_content.matched= line.text
- else
- %td.old_line= raw(line.type == "new" ? "&nbsp;" : line.old_pos)
- %td.new_line= raw(line.type == "old" ? "&nbsp;" : line.new_pos)
+ %td.old_line{class: line.type == "new" ? "new" : "old"}
+ = raw(line.type == "new" ? "&nbsp;" : line.old_pos)
+ %td.new_line{class: line.type == "new" ? "new" : "old"}
+ = raw(line.type == "old" ? "&nbsp;" : line.new_pos)
%td.line_content{class: "noteable_line #{line.type} #{line_code}", "line_code" => line_code}= raw diff_line_content(line.text)
- if line_code == note.line_code