CHANGELOG updated. Fixed MR bug. Logger improved
This commit is contained in:
parent
494cd02b38
commit
8803350023
4 changed files with 23 additions and 5 deletions
|
@ -1,5 +1,9 @@
|
||||||
v 2.7.0
|
v 2.7.0
|
||||||
- Issue Labels
|
- Issue Labels
|
||||||
|
- Inline diff
|
||||||
|
- Git HTTP
|
||||||
|
- API
|
||||||
|
- UI improved
|
||||||
|
|
||||||
v 2.6.0
|
v 2.6.0
|
||||||
- UI polished
|
- UI polished
|
||||||
|
|
|
@ -317,6 +317,10 @@ table.no-borders {
|
||||||
&.closed {
|
&.closed {
|
||||||
background-color: #B94A48;
|
background-color: #B94A48;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
&.merged {
|
||||||
|
background-color: #2A2;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
img.avatar {
|
img.avatar {
|
||||||
|
|
|
@ -128,7 +128,7 @@ class MergeRequest < ActiveRecord::Base
|
||||||
|
|
||||||
def unmerged_diffs
|
def unmerged_diffs
|
||||||
commits = project.repo.commits_between(target_branch, source_branch).map {|c| Commit.new(c)}
|
commits = project.repo.commits_between(target_branch, source_branch).map {|c| Commit.new(c)}
|
||||||
diffs = project.repo.diff(commits.first.prev_commit.id, commits.last.id)
|
diffs = project.repo.diff(commits.first.prev_commit.id, commits.last.id) rescue []
|
||||||
end
|
end
|
||||||
|
|
||||||
def last_commit
|
def last_commit
|
||||||
|
|
|
@ -1,14 +1,24 @@
|
||||||
module Gitlab
|
module Gitlab
|
||||||
class Logger
|
class Logger < ::Logger
|
||||||
def self.error(message)
|
def self.error(message)
|
||||||
@@logger ||= ::Logger.new(File.join(Rails.root, "log/githost.log"))
|
build.error(message)
|
||||||
message = Time.now.to_s(:long) + " -> " + message
|
end
|
||||||
@@logger.error(message)
|
|
||||||
|
def self.info(message)
|
||||||
|
build.info(message)
|
||||||
end
|
end
|
||||||
|
|
||||||
def self.read_latest
|
def self.read_latest
|
||||||
path = Rails.root.join("log/githost.log")
|
path = Rails.root.join("log/githost.log")
|
||||||
logs = File.read(path).split("\n")
|
logs = File.read(path).split("\n")
|
||||||
end
|
end
|
||||||
|
|
||||||
|
def self.build
|
||||||
|
new(File.join(Rails.root, "log/githost.log"))
|
||||||
|
end
|
||||||
|
|
||||||
|
def format_message(severity, timestamp, progname, msg)
|
||||||
|
"#{timestamp.to_s(:long)} -> #{severity} -> #{msg}\n"
|
||||||
|
end
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
Loading…
Reference in a new issue