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
0
Merge Requests
0
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
Tatuya Kamada
gitlab-ce
Commits
b3276661
Commit
b3276661
authored
May 11, 2015
by
Jakub Jirutka
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
RelativeLinkFilter: refactor according to suggestions by @tsigo
parent
f7adac87
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
13 additions
and
17 deletions
+13
-17
lib/gitlab/markdown.rb
lib/gitlab/markdown.rb
+0
-1
lib/gitlab/markdown/relative_link_filter.rb
lib/gitlab/markdown/relative_link_filter.rb
+13
-16
No files found.
lib/gitlab/markdown.rb
View file @
b3276661
...
...
@@ -98,7 +98,6 @@ module Gitlab
Gitlab
::
Markdown
::
SanitizationFilter
,
Gitlab
::
Markdown
::
RelativeLinkFilter
,
Gitlab
::
Markdown
::
EmojiFilter
,
Gitlab
::
Markdown
::
TableOfContentsFilter
,
Gitlab
::
Markdown
::
AutolinkFilter
,
...
...
lib/gitlab/markdown/relative_link_filter.rb
View file @
b3276661
require
'html/pipeline/filter'
require
'uri'
module
Gitlab
...
...
@@ -13,7 +14,7 @@ module Gitlab
class
RelativeLinkFilter
<
HTML
::
Pipeline
::
Filter
def
call
if
!
project_wiki
&&
repository
.
try
(
:exists?
)
&&
!
repository
.
empty
?
if
linkable_files
?
doc
.
search
(
'a'
).
each
do
|
el
|
process_link_attr
el
.
attribute
(
'href'
)
end
...
...
@@ -28,6 +29,10 @@ module Gitlab
protected
def
linkable_files?
context
[
:project_wiki
].
nil?
&&
repository
.
try
(
:exists?
)
&&
!
repository
.
empty?
end
def
process_link_attr
(
html_attr
)
return
if
html_attr
.
blank?
...
...
@@ -42,7 +47,7 @@ module Gitlab
uri
.
path
=
[
relative_url_root
,
project
.
path_with_namespace
,
context
[
:project
]
.
path_with_namespace
,
path_type
(
file_path
),
ref
||
'master'
,
# assume that if no ref exists we can point to master
file_path
...
...
@@ -52,7 +57,7 @@ module Gitlab
end
def
relative_file_path
(
path
)
nested_path
=
build_nested_path
(
path
,
requested_path
)
nested_path
=
build_nested_path
(
path
,
context
[
:requested_path
]
)
file_exists?
(
nested_path
)
?
nested_path
:
path
end
...
...
@@ -89,28 +94,20 @@ module Gitlab
end
def
current_sha
if
commit
commit
.
id
elsif
ref
repository
.
commit
(
ref
).
try
(
:sha
)
else
repository
.
head_commit
.
sha
end
context
[
:commit
].
try
(
:id
)
||
ref
?
repository
.
commit
(
ref
).
try
(
:sha
)
:
repository
.
head_commit
.
sha
end
def
relative_url_root
Gitlab
.
config
.
gitlab
.
relative_url_root
.
presence
||
'/'
end
[
:commit
,
:project
,
:project_wiki
,
:requested_path
,
:ref
].
each
do
|
name
|
define_method
(
name
)
do
context
[
name
]
end
def
ref
context
[
:ref
]
end
def
repository
return
if
project
.
nil?
project
.
repository
context
[
:project
].
try
(
:repository
)
end
end
end
...
...
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