Commit 9c642776 authored by Robert Speicher's avatar Robert Speicher

Merge pull request #9289 from jirutka/asciidoc-2

Refactor, simplify and unify helpers for rendering markup
parents b61a44fe b0659c1b
...@@ -222,7 +222,9 @@ module ApplicationHelper ...@@ -222,7 +222,9 @@ module ApplicationHelper
end end
def render_markup(file_name, file_content) def render_markup(file_name, file_content)
if asciidoc?(file_name) if gitlab_markdown?(file_name)
Haml::Helpers.preserve(markdown(file_content))
elsif asciidoc?(file_name)
asciidoc(file_content) asciidoc(file_content)
else else
GitHub::Markup.render(file_name, file_content). GitHub::Markup.render(file_name, file_content).
...@@ -233,15 +235,15 @@ module ApplicationHelper ...@@ -233,15 +235,15 @@ module ApplicationHelper
end end
def markup?(filename) def markup?(filename)
Gitlab::MarkdownHelper.markup?(filename) Gitlab::MarkupHelper.markup?(filename)
end end
def gitlab_markdown?(filename) def gitlab_markdown?(filename)
Gitlab::MarkdownHelper.gitlab_markdown?(filename) Gitlab::MarkupHelper.gitlab_markdown?(filename)
end end
def asciidoc?(filename) def asciidoc?(filename)
Gitlab::MarkdownHelper.asciidoc?(filename) Gitlab::MarkupHelper.asciidoc?(filename)
end end
# Overrides ActionView::Helpers::UrlHelper#link_to to add `rel="nofollow"` to # Overrides ActionView::Helpers::UrlHelper#link_to to add `rel="nofollow"` to
......
...@@ -55,7 +55,7 @@ module BlobHelper ...@@ -55,7 +55,7 @@ module BlobHelper
end end
def editing_preview_title(filename) def editing_preview_title(filename)
if Gitlab::MarkdownHelper.previewable?(filename) if Gitlab::MarkupHelper.previewable?(filename)
'Preview' 'Preview'
else else
'Preview changes' 'Preview changes'
......
...@@ -25,15 +25,7 @@ module TreeHelper ...@@ -25,15 +25,7 @@ module TreeHelper
end end
def render_readme(readme) def render_readme(readme)
if gitlab_markdown?(readme.name) render_markup(readme.name, readme.data)
preserve(markdown(readme.data))
elsif asciidoc?(readme.name)
asciidoc(readme.data)
elsif markup?(readme.name)
render_markup(readme.name, readme.data)
else
simple_format(readme.data)
end
end end
# Return an image icon depending on the file type and mode # Return an image icon depending on the file type and mode
......
class Tree class Tree
include Gitlab::MarkdownHelper include Gitlab::MarkupHelper
attr_accessor :repository, :sha, :path, :entries attr_accessor :repository, :sha, :path, :entries
def initialize(repository, sha, path = '/') def initialize(repository, sha, path = '/')
path = '/' if path.blank? path = '/' if path.blank?
@repository = repository @repository = repository
@sha = sha @sha = sha
@path = path @path = path
...@@ -20,7 +20,7 @@ class Tree ...@@ -20,7 +20,7 @@ class Tree
available_readmes = blobs.select(&:readme?) available_readmes = blobs.select(&:readme?)
if available_readmes.count == 0 if available_readmes.count == 0
return @readme = nil return @readme = nil
end end
# Take the first previewable readme, or the first available readme, if we # Take the first previewable readme, or the first available readme, if we
......
- if gitlab_markdown?(blob.name) - if markup?(blob.name)
.file-content.wiki
= preserve do
= markdown(blob.data)
- elsif markup?(blob.name)
.file-content.wiki .file-content.wiki
= render_markup(blob.name, blob.data) = render_markup(blob.name, blob.data)
- else - else
......
...@@ -13,16 +13,7 @@ ...@@ -13,16 +13,7 @@
.file-title .file-title
%i.fa.fa-file %i.fa.fa-file
%strong= snippet_blob[:snippet_object].file_name %strong= snippet_blob[:snippet_object].file_name
- if gitlab_markdown?(snippet_blob[:snippet_object].file_name) - if markup?(snippet_blob[:snippet_object].file_name)
.file-content.wiki
- snippet_blob[:snippet_chunks].each do |snippet|
- unless snippet[:data].empty?
= preserve do
= markdown(snippet[:data])
- else
.file-content.code
.nothing-here-block Empty file
- elsif markup?(snippet_blob[:snippet_object].file_name)
.file-content.wiki .file-content.wiki
- snippet_blob[:snippet_chunks].each do |snippet| - snippet_blob[:snippet_chunks].each do |snippet|
- unless snippet[:data].empty? - unless snippet[:data].empty?
......
- unless @snippet.content.empty? - unless @snippet.content.empty?
- if gitlab_markdown?(@snippet.file_name) - if markup?(@snippet.file_name)
.file-content.wiki
= preserve do
= markdown(@snippet.data)
- elsif markup?(@snippet.file_name)
.file-content.wiki .file-content.wiki
= render_markup(@snippet.file_name, @snippet.data) = render_markup(@snippet.file_name, @snippet.data)
- else - else
......
module Gitlab module Gitlab
module MarkdownHelper module MarkupHelper
module_function module_function
# Public: Determines if a given filename is compatible with GitHub::Markup. # Public: Determines if a given filename is compatible with GitHub::Markup.
...@@ -8,8 +8,10 @@ module Gitlab ...@@ -8,8 +8,10 @@ module Gitlab
# #
# Returns boolean # Returns boolean
def markup?(filename) def markup?(filename)
filename.downcase.end_with?(*%w(.textile .rdoc .org .creole .wiki gitlab_markdown?(filename) ||
.mediawiki .rst .adoc .ad .asciidoc)) asciidoc?(filename) ||
filename.downcase.end_with?(*%w(.textile .rdoc .org .creole .wiki
.mediawiki .rst))
end end
# Public: Determines if a given filename is compatible with # Public: Determines if a given filename is compatible with
...@@ -32,7 +34,7 @@ module Gitlab ...@@ -32,7 +34,7 @@ module Gitlab
end end
def previewable?(filename) def previewable?(filename)
gitlab_markdown?(filename) || markup?(filename) markup?(filename)
end end
end end
end end
...@@ -269,6 +269,13 @@ describe ApplicationHelper do ...@@ -269,6 +269,13 @@ describe ApplicationHelper do
expect(render_markup('foo.rst', content).encoding.name).to eq('UTF-8') expect(render_markup('foo.rst', content).encoding.name).to eq('UTF-8')
end end
it "should delegate to #markdown when file name corresponds to Markdown" do
expect(self).to receive(:gitlab_markdown?).with('foo.md').and_return(true)
expect(self).to receive(:markdown).and_return('NOEL')
expect(render_markup('foo.md', content)).to eq('NOEL')
end
it "should delegate to #asciidoc when file name corresponds to AsciiDoc" do it "should delegate to #asciidoc when file name corresponds to AsciiDoc" do
expect(self).to receive(:asciidoc?).with('foo.adoc').and_return(true) expect(self).to receive(:asciidoc?).with('foo.adoc').and_return(true)
expect(self).to receive(:asciidoc).and_return('NOEL') expect(self).to receive(:asciidoc).and_return('NOEL')
......
require 'spec_helper' require 'spec_helper'
describe Gitlab::MarkdownHelper do describe Gitlab::MarkupHelper do
describe '#markup?' do describe '#markup?' do
%w(textile rdoc org creole wiki %w(textile rdoc org creole wiki
mediawiki rst adoc ad asciidoc).each do |type| mediawiki rst adoc ad asciidoc mdown md markdown).each do |type|
it "returns true for #{type} files" do it "returns true for #{type} files" do
expect(Gitlab::MarkdownHelper.markup?("README.#{type}")).to be_truthy expect(Gitlab::MarkupHelper.markup?("README.#{type}")).to be_truthy
end end
end end
it 'returns false when given a non-markup filename' do it 'returns false when given a non-markup filename' do
expect(Gitlab::MarkdownHelper.markup?('README.rb')).not_to be_truthy expect(Gitlab::MarkupHelper.markup?('README.rb')).not_to be_truthy
end end
end end
describe '#gitlab_markdown?' do describe '#gitlab_markdown?' do
%w(mdown md markdown).each do |type| %w(mdown md markdown).each do |type|
it "returns true for #{type} files" do it "returns true for #{type} files" do
expect(Gitlab::MarkdownHelper.gitlab_markdown?("README.#{type}")).to be_truthy expect(Gitlab::MarkupHelper.gitlab_markdown?("README.#{type}")).to be_truthy
end end
end end
it 'returns false when given a non-markdown filename' do it 'returns false when given a non-markdown filename' do
expect(Gitlab::MarkdownHelper.gitlab_markdown?('README.rb')).not_to be_truthy expect(Gitlab::MarkupHelper.gitlab_markdown?('README.rb')).not_to be_truthy
end end
end end
describe '#asciidoc?' do describe '#asciidoc?' do
%w(adoc ad asciidoc ADOC).each do |type| %w(adoc ad asciidoc ADOC).each do |type|
it "returns true for #{type} files" do it "returns true for #{type} files" do
expect(Gitlab::MarkdownHelper.asciidoc?("README.#{type}")).to be_truthy expect(Gitlab::MarkupHelper.asciidoc?("README.#{type}")).to be_truthy
end end
end end
it 'returns false when given a non-asciidoc filename' do it 'returns false when given a non-asciidoc filename' do
expect(Gitlab::MarkdownHelper.asciidoc?('README.rb')).not_to be_truthy expect(Gitlab::MarkupHelper.asciidoc?('README.rb')).not_to be_truthy
end end
end end
end end
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment