Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
gitlab-ce
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
1
Merge Requests
1
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
nexedi
gitlab-ce
Commits
2cda5ec8
Commit
2cda5ec8
authored
Apr 02, 2018
by
Oswaldo Ferreira
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Render MR commit SHA instead "diffs" when viable
parent
38bc4acb
Changes
7
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
84 additions
and
5 deletions
+84
-5
changelogs/unreleased/osw-41401-render-mr-commit-sha-instead-diffs.yml
...released/osw-41401-render-mr-commit-sha-instead-diffs.yml
+5
-0
lib/banzai/filter/abstract_reference_filter.rb
lib/banzai/filter/abstract_reference_filter.rb
+2
-2
lib/banzai/filter/commit_range_reference_filter.rb
lib/banzai/filter/commit_range_reference_filter.rb
+1
-1
lib/banzai/filter/label_reference_filter.rb
lib/banzai/filter/label_reference_filter.rb
+1
-1
lib/banzai/filter/merge_request_reference_filter.rb
lib/banzai/filter/merge_request_reference_filter.rb
+39
-0
lib/banzai/filter/milestone_reference_filter.rb
lib/banzai/filter/milestone_reference_filter.rb
+1
-1
spec/lib/banzai/filter/merge_request_reference_filter_spec.rb
.../lib/banzai/filter/merge_request_reference_filter_spec.rb
+35
-0
No files found.
changelogs/unreleased/osw-41401-render-mr-commit-sha-instead-diffs.yml
0 → 100644
View file @
2cda5ec8
---
title
:
Render MR commit SHA instead "diffs" when viable
merge_request
:
author
:
type
:
added
lib/banzai/filter/abstract_reference_filter.rb
View file @
2cda5ec8
...
...
@@ -171,7 +171,7 @@ module Banzai
end
if
object
title
=
object_link_title
(
object
)
title
=
object_link_title
(
object
,
matches
)
klass
=
reference_class
(
object_sym
)
data
=
data_attributes_for
(
link_content
||
match
,
parent
,
object
,
...
...
@@ -216,7 +216,7 @@ module Banzai
extras
end
def
object_link_title
(
object
)
def
object_link_title
(
object
,
matches
)
object
.
title
end
...
...
lib/banzai/filter/commit_range_reference_filter.rb
View file @
2cda5ec8
...
...
@@ -34,7 +34,7 @@ module Banzai
range
.
to_param
.
merge
(
only_path:
context
[
:only_path
]))
end
def
object_link_title
(
range
)
def
object_link_title
(
range
,
matches
)
nil
end
end
...
...
lib/banzai/filter/label_reference_filter.rb
View file @
2cda5ec8
...
...
@@ -77,7 +77,7 @@ module Banzai
CGI
.
unescapeHTML
(
text
.
to_s
)
end
def
object_link_title
(
object
)
def
object_link_title
(
object
,
matches
)
# use title of wrapped element instead
nil
end
...
...
lib/banzai/filter/merge_request_reference_filter.rb
View file @
2cda5ec8
...
...
@@ -17,10 +17,19 @@ module Banzai
only_path:
context
[
:only_path
])
end
def
object_link_title
(
object
,
matches
)
object_link_commit_title
(
object
,
matches
)
||
super
end
def
object_link_text_extras
(
object
,
matches
)
extras
=
super
if
commit_ref
=
object_link_commit_ref
(
object
,
matches
)
return
extras
.
unshift
(
commit_ref
)
end
path
=
matches
[
:path
]
if
matches
.
names
.
include?
(
"path"
)
case
path
when
'/diffs'
extras
.
unshift
"diffs"
...
...
@@ -38,6 +47,36 @@ module Banzai
.
where
(
iid:
ids
.
to_a
)
.
includes
(
target_project: :namespace
)
end
private
def
object_link_commit_title
(
object
,
matches
)
object_link_commit
(
object
,
matches
)
&
.
title
end
def
object_link_commit_ref
(
object
,
matches
)
object_link_commit
(
object
,
matches
)
&
.
short_id
end
def
object_link_commit
(
object
,
matches
)
return
unless
matches
.
names
.
include?
(
'query'
)
&&
query
=
matches
[
:query
]
# Removes leading "?". CGI.parse expects "arg1&arg2&arg3"
params
=
CGI
.
parse
(
query
.
sub
(
/^\?/
,
''
))
return
unless
commit_sha
=
params
[
'commit_id'
]
&
.
first
if
commit
=
find_commit_by_sha
(
object
,
commit_sha
)
Commit
.
from_hash
(
commit
.
to_hash
,
object
.
project
)
end
end
def
find_commit_by_sha
(
object
,
commit_sha
)
@all_commits
||=
{}
@all_commits
[
object
.
id
]
||=
object
.
all_commits
@all_commits
[
object
.
id
].
find
{
|
commit
|
commit
.
sha
==
commit_sha
}
end
end
end
end
lib/banzai/filter/milestone_reference_filter.rb
View file @
2cda5ec8
...
...
@@ -84,7 +84,7 @@ module Banzai
end
end
def
object_link_title
(
object
)
def
object_link_title
(
object
,
matches
)
nil
end
end
...
...
spec/lib/banzai/filter/merge_request_reference_filter_spec.rb
View file @
2cda5ec8
...
...
@@ -196,6 +196,41 @@ describe Banzai::Filter::MergeRequestReferenceFilter do
end
end
context
'URL reference for a commit'
do
let
(
:mr
)
{
create
(
:merge_request
,
:with_diffs
)
}
let
(
:reference
)
do
urls
.
project_merge_request_url
(
mr
.
project
,
mr
)
+
"/diffs?commit_id=
#{
mr
.
diff_head_sha
}
"
end
let
(
:commit
)
{
mr
.
commits
.
find
{
|
commit
|
commit
.
sha
==
mr
.
diff_head_sha
}
}
it
'links to a valid reference'
do
doc
=
reference_filter
(
"See
#{
reference
}
"
)
expect
(
doc
.
css
(
'a'
).
first
.
attr
(
'href'
))
.
to
eq
reference
end
it
'has valid text'
do
doc
=
reference_filter
(
"See
#{
reference
}
"
)
expect
(
doc
.
text
).
to
eq
(
"See
#{
mr
.
to_reference
(
full:
true
)
}
(
#{
commit
.
short_id
}
)"
)
end
it
'has valid title attribute'
do
doc
=
reference_filter
(
"See
#{
reference
}
"
)
expect
(
doc
.
css
(
'a'
).
first
.
attr
(
'title'
)).
to
eq
(
commit
.
title
)
end
it
'ignores invalid commit short_ids on link text'
do
invalidate_commit_reference
=
urls
.
project_merge_request_url
(
mr
.
project
,
mr
)
+
"/diffs?commit_id=12345678"
doc
=
reference_filter
(
"See
#{
invalidate_commit_reference
}
"
)
expect
(
doc
.
text
).
to
eq
(
"See
#{
mr
.
to_reference
(
full:
true
)
}
(diffs)"
)
end
end
context
'cross-project URL reference'
do
let
(
:namespace
)
{
create
(
:namespace
,
name:
'cross-reference'
)
}
let
(
:project2
)
{
create
(
:project
,
:public
,
namespace:
namespace
)
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment