2007-01-22 14:43:50 +01:00
|
|
|
$: << File.dirname(__FILE__) + "../../lib"
|
|
|
|
|
|
|
|
require_dependency 'chunks/chunk'
|
2010-06-09 18:47:39 +02:00
|
|
|
require 'instiki_stringsupport'
|
2008-05-22 16:36:23 +02:00
|
|
|
require 'maruku'
|
|
|
|
require 'maruku/ext/math'
|
|
|
|
require_dependency 'rdocsupport'
|
|
|
|
require 'redcloth'
|
2010-11-04 05:32:55 +01:00
|
|
|
require 'oldredcloth'
|
2007-01-22 14:43:50 +01:00
|
|
|
|
|
|
|
# The markup engines are Chunks that call the one of RedCloth
|
|
|
|
# or RDoc to convert text. This markup occurs when the chunk is required
|
|
|
|
# to mask itself.
|
|
|
|
module Engines
|
|
|
|
class AbstractEngine < Chunk::Abstract
|
|
|
|
|
|
|
|
# Create a new chunk for the whole content and replace it with its mask.
|
|
|
|
def self.apply_to(content)
|
|
|
|
new_chunk = self.new(content)
|
|
|
|
content.replace(new_chunk.mask)
|
|
|
|
end
|
|
|
|
|
|
|
|
private
|
|
|
|
|
|
|
|
# Never create engines by constructor - use apply_to instead
|
|
|
|
def initialize(content)
|
|
|
|
@content = content
|
|
|
|
end
|
|
|
|
|
|
|
|
end
|
|
|
|
|
|
|
|
class Textile < AbstractEngine
|
|
|
|
def mask
|
2009-11-30 23:28:18 +01:00
|
|
|
@content.as_utf8
|
2007-01-22 14:43:50 +01:00
|
|
|
redcloth = RedCloth.new(@content, [:hard_breaks] + @content.options[:engine_opts])
|
|
|
|
redcloth.filter_html = false
|
|
|
|
redcloth.no_span_caps = false
|
2007-02-20 06:15:39 +01:00
|
|
|
html = redcloth.to_html(:textile)
|
2007-01-22 14:43:50 +01:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
class Markdown < AbstractEngine
|
|
|
|
def mask
|
2011-08-08 08:54:06 +02:00
|
|
|
text = @content.as_utf8.to_str.delete("\r").to_utf8
|
2007-09-14 17:43:03 +02:00
|
|
|
# If the request is for S5, call Maruku accordingly (without math)
|
|
|
|
if @content.options[:mode] == :s5
|
2011-08-08 08:54:06 +02:00
|
|
|
my_content = Maruku.new(text,
|
2008-05-17 08:43:11 +02:00
|
|
|
{:math_enabled => false, :content_only => true,
|
2007-09-14 17:43:03 +02:00
|
|
|
:author => @content.options[:engine_opts][:author],
|
|
|
|
:title => @content.options[:engine_opts][:title]})
|
|
|
|
@content.options[:renderer].s5_theme = my_content.s5_theme
|
|
|
|
else
|
2011-08-08 08:54:06 +02:00
|
|
|
html = Maruku.new(text, {:math_enabled => false}).to_html
|
2007-09-15 01:09:24 +02:00
|
|
|
html.gsub(/\A<div class="maruku_wrapper_div">\n?(.*?)\n?<\/div>\Z/m, '\1')
|
2007-09-14 17:43:03 +02:00
|
|
|
end
|
|
|
|
|
2007-01-22 14:43:50 +01:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2007-01-22 15:36:51 +01:00
|
|
|
class MarkdownMML < AbstractEngine
|
|
|
|
def mask
|
2011-08-08 08:54:06 +02:00
|
|
|
text = @content.as_utf8.to_str.delete("\r").to_utf8
|
2007-09-14 17:43:03 +02:00
|
|
|
# If the request is for S5, call Maruku accordingly
|
|
|
|
if @content.options[:mode] == :s5
|
2011-08-08 08:54:06 +02:00
|
|
|
my_content = Maruku.new(text,
|
2008-05-17 08:43:11 +02:00
|
|
|
{:math_enabled => true,
|
2007-09-14 17:43:03 +02:00
|
|
|
:math_numbered => ['\\[','\\begin{equation}'],
|
|
|
|
:content_only => true,
|
|
|
|
:author => @content.options[:engine_opts][:author],
|
|
|
|
:title => @content.options[:engine_opts][:title]})
|
|
|
|
@content.options[:renderer].s5_theme = my_content.s5_theme
|
2008-05-15 08:22:13 +02:00
|
|
|
my_content.to_s5
|
2007-09-14 17:43:03 +02:00
|
|
|
else
|
2011-08-08 08:54:06 +02:00
|
|
|
(t = Time.now; nil)
|
|
|
|
html = Maruku.new(text,
|
2007-09-14 17:43:03 +02:00
|
|
|
{:math_enabled => true,
|
2008-05-15 08:22:13 +02:00
|
|
|
:math_numbered => ['\\[','\\begin{equation}']}).to_html
|
2011-08-05 08:59:18 +02:00
|
|
|
(ApplicationController.logger.info("Maruku took " + (Time.now-t).to_s + " seconds."); nil)
|
2007-09-14 17:43:03 +02:00
|
|
|
html.gsub(/\A<div class="maruku_wrapper_div">\n?(.*?)\n?<\/div>\Z/m, '\1')
|
|
|
|
end
|
2007-01-22 15:36:51 +01:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2008-07-26 11:14:41 +02:00
|
|
|
class MarkdownPNG < AbstractEngine
|
|
|
|
def mask
|
2011-08-08 08:54:06 +02:00
|
|
|
text = @content.as_utf8.to_str.delete("\r").to_utf8
|
2008-07-26 11:14:41 +02:00
|
|
|
# If the request is for S5, call Maruku accordingly
|
|
|
|
if @content.options[:mode] == :s5
|
2011-08-08 08:54:06 +02:00
|
|
|
my_content = Maruku.new(text,
|
2008-07-26 11:14:41 +02:00
|
|
|
{:math_enabled => true,
|
|
|
|
:math_numbered => ['\\[','\\begin{equation}'],
|
|
|
|
:html_math_output_mathml => false,
|
|
|
|
:html_math_output_png => true,
|
|
|
|
:html_png_engine => 'blahtex',
|
2009-08-30 06:31:39 +02:00
|
|
|
:html_png_dir => @content.web.files_path.join('pngs').to_s,
|
2010-01-26 00:55:31 +01:00
|
|
|
:html_png_url => @content.options[:png_url],
|
2008-07-26 11:14:41 +02:00
|
|
|
:content_only => true,
|
|
|
|
:author => @content.options[:engine_opts][:author],
|
|
|
|
:title => @content.options[:engine_opts][:title]})
|
|
|
|
@content.options[:renderer].s5_theme = my_content.s5_theme
|
|
|
|
my_content.to_s5
|
|
|
|
else
|
2011-08-08 08:54:06 +02:00
|
|
|
html = Maruku.new(text,
|
2008-07-26 11:14:41 +02:00
|
|
|
{:math_enabled => true,
|
|
|
|
:math_numbered => ['\\[','\\begin{equation}'],
|
|
|
|
:html_math_output_mathml => false,
|
|
|
|
:html_math_output_png => true,
|
|
|
|
:html_png_engine => 'blahtex',
|
2009-08-30 06:31:39 +02:00
|
|
|
:html_png_dir => @content.web.files_path.join('pngs').to_s,
|
2010-01-26 00:55:31 +01:00
|
|
|
:html_png_url => @content.options[:png_url]}).to_html
|
2008-07-26 11:14:41 +02:00
|
|
|
html.gsub(/\A<div class="maruku_wrapper_div">\n?(.*?)\n?<\/div>\Z/m, '\1')
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2007-01-22 14:43:50 +01:00
|
|
|
class Mixed < AbstractEngine
|
|
|
|
def mask
|
2009-11-30 23:28:18 +01:00
|
|
|
@content.as_utf8
|
2011-06-15 07:43:38 +02:00
|
|
|
redcloth = OldRedCloth.new(@content.to_str, @content.options[:engine_opts])
|
2007-01-22 14:43:50 +01:00
|
|
|
redcloth.filter_html = false
|
|
|
|
redcloth.no_span_caps = false
|
2007-02-20 15:18:48 +01:00
|
|
|
html = redcloth.to_html
|
2007-01-22 14:43:50 +01:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
class RDoc < AbstractEngine
|
|
|
|
def mask
|
2011-06-15 07:43:38 +02:00
|
|
|
html = RDocSupport::RDocFormatter.new(@content.as_utf8.to_str).to_html
|
2007-01-22 14:43:50 +01:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2008-07-26 11:14:41 +02:00
|
|
|
MAP = { :textile => Textile, :markdown => Markdown, :markdownMML => MarkdownMML, :markdownPNG => MarkdownPNG, :mixed => Mixed, :rdoc => RDoc }
|
2008-05-22 16:36:23 +02:00
|
|
|
MAP.default = MarkdownMML
|
2007-01-22 14:43:50 +01:00
|
|
|
end
|