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
Léo-Paul Géneau
gitlab-ce
Commits
5c9376f9
Commit
5c9376f9
authored
Sep 11, 2016
by
Qingping Hou
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix URLs with anchors in wiki
parent
82b8cc5d
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
9 additions
and
0 deletions
+9
-0
CHANGELOG
CHANGELOG
+1
-0
lib/banzai/filter/wiki_link_filter/rewriter.rb
lib/banzai/filter/wiki_link_filter/rewriter.rb
+1
-0
spec/lib/banzai/pipeline/wiki_pipeline_spec.rb
spec/lib/banzai/pipeline/wiki_pipeline_spec.rb
+7
-0
No files found.
CHANGELOG
View file @
5c9376f9
...
...
@@ -129,6 +129,7 @@ v 8.12.0 (unreleased)
- Allow bulk update merge requests from merge requests index page
- Add notification_settings API calls !5632 (mahcsig)
- Remove duplication between project builds and admin builds view !5680 (Katarzyna Kobierska Ula Budziszewska)
- Fix URLs with anchors in wiki !6300 (houqp)
- Deleting source project with existing fork link will close all related merge requests !6177 (Katarzyna Kobierska Ula Budziszeska)
v 8.11.6 (unreleased)
...
...
lib/banzai/filter/wiki_link_filter/rewriter.rb
View file @
5c9376f9
...
...
@@ -31,6 +31,7 @@ module Banzai
def
apply_relative_link_rules!
if
@uri
.
relative?
&&
@uri
.
path
.
present?
link
=
::
File
.
join
(
@wiki_base_path
,
@uri
.
path
)
link
=
"
#{
link
}
#
#{
@uri
.
fragment
}
"
if
@uri
.
fragment
@uri
=
Addressable
::
URI
.
parse
(
link
)
end
end
...
...
spec/lib/banzai/pipeline/wiki_pipeline_spec.rb
View file @
5c9376f9
...
...
@@ -127,6 +127,13 @@ describe Banzai::Pipeline::WikiPipeline do
expect
(
output
).
to
include
(
"href=
\"
#{
relative_url_root
}
/wiki_link_ns/wiki_link_project/wikis/nested/twice/page.md
\"
"
)
end
it
'rewrites links with anchor'
do
markdown
=
'[Link to Header](start-page#title)'
output
=
described_class
.
to_html
(
markdown
,
project:
project
,
project_wiki:
project_wiki
,
page_slug:
page
.
slug
)
expect
(
output
).
to
include
(
"href=
\"
#{
relative_url_root
}
/wiki_link_ns/wiki_link_project/wikis/start-page#title
\"
"
)
end
end
describe
"when creating root links"
do
...
...
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