Changes the wrapper id to #c-wiki-page-versions and moves the corresponding css from wiki_pages.scss to wiki_page_versions.scss.
25 lines
765 B
Ruby
25 lines
765 B
Ruby
module WikiPagesHelper
|
|
def wiki_page_alias_and_implication_list(wiki_page)
|
|
alias_and_implication_list(wiki_page.tag)
|
|
end
|
|
|
|
def wiki_page_post_previews(wiki_page)
|
|
html = '<div id="wiki-page-posts">'
|
|
|
|
if Post.fast_count(wiki_page.title) > 0
|
|
full_link = link_to("view all", posts_path(:tags => wiki_page.title))
|
|
html << "<h2>Posts (#{full_link})</h2>"
|
|
html << wiki_page.post_set.presenter.post_previews_html(self)
|
|
end
|
|
|
|
html << "</div>"
|
|
|
|
html.html_safe
|
|
end
|
|
|
|
def wiki_page_other_names_list(wiki_page)
|
|
names_html = wiki_page.other_names_array.map{|name| link_to(name, "http://www.pixiv.net/search.php?s_mode=s_tag_full&word=#{u(name)}", :class => "wiki-other-name")}
|
|
names_html.join(" ").html_safe
|
|
end
|
|
end
|