foodsoft/plugins/wiki/app/helpers/pages_helper.rb

72 lines
2.0 KiB
Ruby
Raw Normal View History

module PagesHelper
include WikiCloth
2014-01-04 20:12:01 +01:00
def rss_meta_tag
2022-02-20 16:15:22 +01:00
tag.link(rel: "alternate", type: "application/rss+xml", title: "RSS", href: all_pages_rss_url).html_safe
2014-01-04 20:12:01 +01:00
end
2009-08-12 19:00:45 +02:00
def wikified_body(body, title = nil)
FoodsoftWiki::WikiParser.new(data: body + "\n", params: { referer: title }).to_html(noedit: true).html_safe
rescue => e
2015-01-19 01:48:03 +01:00
# try the following with line breaks: === one === == two == = three =
content_tag :span, class: 'alert alert-error' do
I18n.t '.wikicloth_exception', :msg => e
end.html_safe
end
2009-05-20 14:06:40 +02:00
def link_to_wikipage(page, text = nil)
if text == nil
2011-05-18 15:25:05 +02:00
link_to page.title, wiki_page_path(:permalink => page.permalink)
else
2011-05-18 15:25:05 +02:00
link_to text, wiki_page_path(:permalink => page.permalink)
end
end
def link_to_wikipage_by_permalink(permalink, text = nil)
unless permalink.blank?
page = Page.find_by_permalink(permalink)
if page.nil?
if text.nil?
link_to permalink, new_page_path(:title => permalink)
else
link_to text, new_page_path(:title => permalink)
end
else
link_to_wikipage(page, text)
end
end
end
2009-05-20 14:06:40 +02:00
def generate_toc(body)
toc = String.new
body.gsub(/^([=]{1,6})\s*(.*?)\s*(\1)/) do
number = $1.length - 1
name = $2
toc << "*" * number + " #{name}\n"
end
2014-09-23 19:04:23 +02:00
unless toc.blank?
2015-01-19 01:48:03 +01:00
FoodsoftWiki::WikiParser.new(data: toc).to_html.gsub(/<li>([^<>\n]*)/) do
2012-10-09 02:31:10 +02:00
name = $1
anchor = name.gsub(/\s/, '_').gsub(/[^a-zA-Z_]/, '')
"<li><a href='##{anchor}'>#{name.truncate(20)}</a>"
2011-05-18 15:25:05 +02:00
end.html_safe
end
end
def parent_pages_to_select(current_page)
unless current_page.homepage? # Homepage is the page trees root!
Page.non_redirected.reject { |p| p == current_page || p.ancestors.include?(current_page) }
else
Array.new
end
end
2014-01-04 20:12:01 +01:00
# return url for all_pages rss feed
def all_pages_rss_url(options = {})
2014-01-04 20:12:01 +01:00
token = TokenVerifier.new(['wiki', 'all']).generate
all_pages_url({ :format => 'rss', :token => token }.merge(options))
2014-01-04 20:12:01 +01:00
end
end