-
Notifications
You must be signed in to change notification settings - Fork 335
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Asciidoctor: Make Edit Me links know about repos #661
Merged
Merged
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
# frozen_string_literal: true | ||
|
||
require 'pathname' | ||
require 'csv' | ||
require_relative '../scaffold.rb' | ||
|
||
## | ||
|
@@ -12,32 +12,56 @@ class EditMe < TreeProcessorScaffold | |
|
||
def process(document) | ||
logger.error("sourcemap is required") unless document.sourcemap | ||
super if document.attributes['edit_url'] | ||
edit_urls_string = document.attributes['edit_urls'] | ||
return unless edit_urls_string | ||
|
||
edit_urls = [] | ||
CSV.parse edit_urls_string do |toplevel, url| | ||
unless toplevel | ||
logger.error message_with_context "invalid edit_urls, no toplevel" | ||
next | ||
end | ||
unless url | ||
logger.error message_with_context "invalid edit_urls, no url" | ||
next | ||
end | ||
url = url[0..-2] if url.end_with? '/' | ||
edit_urls << { toplevel: toplevel, url: url } | ||
end | ||
document.attributes['edit_urls'] = edit_urls | ||
super | ||
end | ||
|
||
def process_block(block) | ||
return unless %i[preamble section floating_title].include? block.context | ||
|
||
def block.title | ||
path = source_path | ||
url = @document.attributes['edit_url'] | ||
url += '/' unless url.end_with?('/') | ||
repo_root = @document.attributes['repo_root'] | ||
if repo_root | ||
repo_root = Pathname.new repo_root | ||
base_dir = Pathname.new @document.base_dir | ||
url += "#{base_dir.relative_path_from(repo_root)}/" unless repo_root == base_dir | ||
# || '<stdin>' allows us to not blow up when translating strings that | ||
# aren't associated with any particular file. '<stdin>' is asciidoctor's | ||
# standard name for such strings. | ||
path = source_path || '<stdin>' | ||
|
||
edit_urls = @document.attributes['edit_urls'] | ||
edit_url = edit_urls.find { |e| path.start_with? e[:toplevel] } | ||
unless edit_url | ||
logger.warn message_with_context "couldn't find edit url for #{path}", :source_location => source_location | ||
return super | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Really happy to see all these new log messages. |
||
end | ||
url += path | ||
url = edit_url[:url] | ||
url += path[edit_url[:toplevel].length..-1] | ||
"#{super}<ulink role=\"edit_me\" url=\"#{url}\">Edit me</ulink>" | ||
end | ||
if block.context == :preamble | ||
def block.source_path | ||
document.source_location.path | ||
# source_location.path doesn't work for relative includes outside of | ||
# the base_dir which we use when we build books from many repos. | ||
document.source_location.file | ||
end | ||
else | ||
def block.source_path | ||
source_location.path | ||
# source_location.path doesn't work for relative includes outside of | ||
# the base_dir which we use when we build books from many repos. | ||
source_location.file | ||
end | ||
end | ||
end | ||
|
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Since you are mutating
url
anyway, you could:Not a change request, just a "fun fact".