39 lines
1.0 KiB
Ruby
39 lines
1.0 KiB
Ruby
module ParserFrontEnd
|
|
include ParserCommon
|
|
# c.define_tag 'language_bar' do
|
|
# @site.in_use_locales.map{ |locale|
|
|
# lang = I18nVariable.first(:conditions => {:key => locale})[locale]
|
|
# if I18n.locale.to_s.eql?(locale)
|
|
# lang
|
|
# else
|
|
# "<a href='?locale=#{locale}'>#{lang}</a>"
|
|
# end
|
|
# }.join(' | ')
|
|
# end
|
|
# c.define_tag 'link' do |tag|
|
|
# item = Item.first(:conditions => { :path => tag.attr['name'] })
|
|
# ret = ''
|
|
# ret << "<a href='#{tag.attr['name']}'>"
|
|
# ret << item.i18n_variable[I18n.locale]
|
|
# ret << '</a>'
|
|
# end
|
|
# end
|
|
|
|
require 'nokogiri'
|
|
|
|
def parse_page_noko(page)
|
|
body = Nokogiri::HTML(page.design.layout.body)
|
|
parse_menu(body, page)
|
|
public_r_tags = parse_contents(body, page)
|
|
parse_images(body, page)
|
|
parse_footer(body, page)
|
|
parse_sub_menu(body, page)
|
|
public_r_tags.each do |tag|
|
|
send("parse_#{tag}s", body, page)
|
|
end
|
|
|
|
body.to_html
|
|
end
|
|
|
|
end
|