2011-03-02 09:28:33 +00:00
|
|
|
module Parser
|
|
|
|
|
2011-05-18 02:00:00 +00:00
|
|
|
def parser_context(page, attributes = {})
|
2011-03-02 09:28:33 +00:00
|
|
|
Radius::Context.new do |c|
|
|
|
|
c.define_tag 'snippet' do |tag|
|
|
|
|
snippet = Snippet.first(:conditions => {:name => tag.attr['name']})
|
|
|
|
if snippet
|
|
|
|
snippet.content
|
|
|
|
else
|
|
|
|
t('nothing')
|
|
|
|
end
|
|
|
|
end
|
|
|
|
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 'locale' do |tag|
|
|
|
|
case attributes[:locale]
|
|
|
|
when 'create'
|
|
|
|
var = I18nVariable.new(:key => (tag.attr['name'] rescue nil), :document_class => 'Text')
|
|
|
|
@site.valid_locales.each do |locale|
|
|
|
|
var[locale] = tag.attr[locale] rescue nil
|
|
|
|
end
|
|
|
|
var.save!
|
|
|
|
res = ''
|
|
|
|
res << "<r:locale id='#{var.id}' "
|
|
|
|
res << "name='#{var.key}' " if var.key
|
|
|
|
@site.valid_locales.each do |locale|
|
|
|
|
res << "#{locale}='#{var[locale]}' "
|
|
|
|
end
|
|
|
|
res << '/>'
|
|
|
|
when 'show'
|
|
|
|
var = I18nVariable.find(tag.attr['id'])
|
|
|
|
res = ''
|
|
|
|
res << "<r:locale "
|
|
|
|
res << "name='#{var.key}' " if var.key
|
|
|
|
@site.valid_locales.each do |locale|
|
|
|
|
res << "#{locale}='#{var[locale]}' "
|
|
|
|
end
|
|
|
|
res << '/>'
|
|
|
|
when 'destroy'
|
|
|
|
var = I18nVariable.find(tag.attr['id'])
|
|
|
|
var.destroy
|
|
|
|
end
|
|
|
|
end
|
2011-06-01 02:24:14 +00:00
|
|
|
c.define_tag 'multi_lang' do |tag|
|
|
|
|
tag.expand
|
|
|
|
end
|
|
|
|
c.define_tag 'multi_lang:lang' do |tag|
|
|
|
|
tag.expand if tag.attr['name'].eql?(I18n.locale.to_s)
|
|
|
|
end
|
2011-03-03 06:54:34 +00:00
|
|
|
c.define_tag 'css' do |tag|
|
|
|
|
assets = Asset.any_in(:filename => tag.attr['name'].split(',').map(&:strip))
|
|
|
|
res = ''
|
|
|
|
assets.each do |asset|
|
|
|
|
res << "<link href='#{asset.data.file.url}' rel='stylesheet' type='text/css' /> " if asset.data.file.content_type.eql?('text/css')
|
|
|
|
end
|
|
|
|
res
|
|
|
|
end
|
2011-08-16 09:10:16 +00:00
|
|
|
c.define_tag 'stylesheets' do |tag|
|
2011-08-22 05:45:21 +00:00
|
|
|
res = ''
|
|
|
|
res << "<link href='#{page.design.structure_css.url}' rel='stylesheet' type='text/css' /> "
|
|
|
|
page.design.themes.each do |theme|
|
|
|
|
res << "<link href='#{theme.file.url}' rel='stylesheet' type='text/css' /> "
|
|
|
|
end
|
|
|
|
res
|
|
|
|
end
|
|
|
|
c.define_tag 'javascripts' do |tag|
|
|
|
|
res = ''
|
|
|
|
page.design.javascripts.each do |js|
|
|
|
|
res << "<script type='text/javascript' src='#{js.file.url}'></script>"
|
|
|
|
end
|
|
|
|
res
|
2011-08-16 09:10:16 +00:00
|
|
|
end
|
2011-03-03 06:54:34 +00:00
|
|
|
c.define_tag 'image' do |tag|
|
|
|
|
asset = Asset.find(tag.attr['id'])
|
|
|
|
if asset
|
|
|
|
res = "<img src=#{asset.data.file.url} "
|
|
|
|
tag.attr.each do |l|
|
2011-03-04 01:31:21 +00:00
|
|
|
res << "#{l[0]}='#{l[1]}' "
|
2011-03-03 06:54:34 +00:00
|
|
|
end
|
|
|
|
res << '>'
|
|
|
|
end
|
|
|
|
end
|
2011-05-18 02:00:00 +00:00
|
|
|
c.define_tag 'layout_part' do |tag|
|
2011-08-25 00:13:38 +00:00
|
|
|
part = page.page_parts.detect{ |p| p.name.to_s == tag.attr['name'].to_s } rescue nil
|
|
|
|
if part
|
|
|
|
part.content
|
|
|
|
else
|
|
|
|
tag.expand
|
|
|
|
end
|
2011-05-18 02:00:00 +00:00
|
|
|
end
|
2011-06-01 07:49:21 +00:00
|
|
|
c.define_tag 'link' do |tag|
|
|
|
|
item = Item.first(:conditions => { :full_name => tag.attr['name'] })
|
|
|
|
ret = ''
|
|
|
|
ret << "<a href='#{tag.attr['name']}'>"
|
|
|
|
ret << item.i18n_variable[I18n.locale]
|
|
|
|
ret << '</a>'
|
|
|
|
end
|
2011-03-02 09:28:33 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def parse_page(page)
|
2011-05-09 10:49:57 +00:00
|
|
|
if page._type == 'Page'
|
2011-08-25 00:13:38 +00:00
|
|
|
layout_content = page.design.layout.content.force_encoding('UTF-8')
|
2011-05-18 02:00:00 +00:00
|
|
|
context = parser_context(page)
|
|
|
|
parser = Radius::Parser.new(context, :tag_prefix => 'r')
|
|
|
|
parser.parse(parser.parse(layout_content))
|
|
|
|
end
|
2011-05-09 10:49:57 +00:00
|
|
|
end
|
|
|
|
|
2011-05-25 06:50:56 +00:00
|
|
|
def parse_page_edit(page)
|
|
|
|
if page._type == 'Page'
|
2011-08-25 00:13:38 +00:00
|
|
|
layout_content = page.design.layout.content.force_encoding('UTF-8')
|
2011-05-25 06:50:56 +00:00
|
|
|
context = parser_context_edit(page)
|
|
|
|
parser = Radius::Parser.new(context, :tag_prefix => 'r')
|
|
|
|
parser.parse(parser.parse(layout_content))
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def parser_context_edit(page, attributes = {})
|
|
|
|
Radius::Context.new do |c|
|
|
|
|
c.define_tag 'snippet' do |tag|
|
|
|
|
snippet = Snippet.first(:conditions => {:name => tag.attr['name']})
|
|
|
|
if snippet
|
|
|
|
snippet.content
|
|
|
|
else
|
|
|
|
t('nothing')
|
|
|
|
end
|
|
|
|
end
|
|
|
|
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
|
2011-06-01 02:24:14 +00:00
|
|
|
c.define_tag 'multi_lang' do |tag|
|
|
|
|
tag.expand
|
|
|
|
end
|
|
|
|
c.define_tag 'multi_lang:lang' do |tag|
|
|
|
|
tag.expand if tag.attr['name'].eql?(I18n.locale.to_s)
|
2011-05-25 06:50:56 +00:00
|
|
|
end
|
|
|
|
c.define_tag 'css' do |tag|
|
|
|
|
assets = Asset.any_in(:filename => tag.attr['name'].split(',').map(&:strip))
|
|
|
|
res = ''
|
|
|
|
assets.each do |asset|
|
|
|
|
res << "<link href='#{asset.data.file.url}' rel='stylesheet' type='text/css' /> " if asset.data.file.content_type.eql?('text/css')
|
|
|
|
end
|
|
|
|
res
|
|
|
|
end
|
|
|
|
c.define_tag 'image' do |tag|
|
|
|
|
asset = Asset.find(tag.attr['id'])
|
|
|
|
if asset
|
|
|
|
res = "<img src=#{asset.data.file.url} "
|
|
|
|
tag.attr.each do |l|
|
|
|
|
res << "#{l[0]}='#{l[1]}' "
|
|
|
|
end
|
|
|
|
res << '>'
|
|
|
|
end
|
|
|
|
end
|
2011-08-16 09:10:16 +00:00
|
|
|
c.define_tag 'stylesheets' do |tag|
|
2011-08-22 05:45:21 +00:00
|
|
|
res = ''
|
|
|
|
res << "<link href='#{page.design.structure_css.url}' rel='stylesheet' type='text/css' />"
|
|
|
|
page.design.themes.each do |theme|
|
|
|
|
res << "<link href='#{theme.file.url}' rel='stylesheet' type='text/css' />"
|
|
|
|
end
|
|
|
|
res
|
|
|
|
end
|
|
|
|
c.define_tag 'javascripts' do |tag|
|
|
|
|
res = ''
|
|
|
|
page.design.javascripts.each do |js|
|
|
|
|
res << "<script type='text/javascript' src='#{js.file.url}'></script>"
|
|
|
|
end
|
|
|
|
res
|
2011-08-16 09:10:16 +00:00
|
|
|
end
|
2011-05-25 06:50:56 +00:00
|
|
|
c.define_tag 'layout_part' do |tag|
|
|
|
|
part = page.page_parts.detect{ |p| p.name.to_s == tag.attr['name'].to_s }
|
2011-08-25 00:13:38 +00:00
|
|
|
if part
|
|
|
|
ret = ''
|
|
|
|
ret << "<div id='#{tag.attr['name']}'"
|
|
|
|
ret << " part_id='#{part.id}'"
|
|
|
|
ret << " class='editable'"
|
|
|
|
ret << " style='border:solid 1px; margin:5px; padding:5px;'>"
|
|
|
|
ret << "<div class='edit_link' style='display:none'>"
|
|
|
|
ret << " <a href='#{edit_admin_page_part_path(part.id)}' class='nav'>#{t(:edit)}</a>"
|
|
|
|
ret << '</div>'
|
|
|
|
ret << part.i18n_variable[I18n.locale.to_s] rescue ''
|
|
|
|
ret << '</div>'
|
|
|
|
else
|
|
|
|
tag.expand
|
|
|
|
end
|
2011-05-25 06:50:56 +00:00
|
|
|
end
|
2011-06-01 07:49:21 +00:00
|
|
|
c.define_tag 'link' do |tag|
|
|
|
|
item = Item.first(:conditions => { :full_name => tag.attr['name'] })
|
|
|
|
ret = ''
|
|
|
|
ret << "<a href='"
|
|
|
|
ret << eval("admin_#{item._type.downcase}_path(item.id)")
|
|
|
|
ret << "' class='nav'>"
|
|
|
|
ret << item.i18n_variable[I18n.locale]
|
|
|
|
ret << "</a>"
|
|
|
|
end
|
2011-05-25 06:50:56 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2011-08-10 09:28:10 +00:00
|
|
|
#=============
|
|
|
|
def parse_layout_layout_part(layout)
|
2011-08-25 00:13:38 +00:00
|
|
|
content = layout.content.force_encoding('UTF-8')
|
2011-08-10 09:28:10 +00:00
|
|
|
context = parser_layout_layout_part(layout)
|
|
|
|
parser = Radius::Parser.new(context, :tag_prefix => 'r')
|
|
|
|
parser.parse(content)
|
|
|
|
end
|
|
|
|
|
|
|
|
def parser_layout_layout_part(layout )
|
|
|
|
Radius::Context.new do |c|
|
2011-08-16 09:10:16 +00:00
|
|
|
c.define_tag 'javascripts' do |tag|
|
|
|
|
end
|
|
|
|
c.define_tag 'stylesheets' do |tag|
|
|
|
|
end
|
2011-08-10 09:28:10 +00:00
|
|
|
c.define_tag 'layout_part' do |tag|
|
|
|
|
data={}
|
|
|
|
data[:class_tag]=tag.attr['class'].to_s
|
|
|
|
data[:id_tag]=tag.attr['id'].to_s
|
2011-08-25 00:13:38 +00:00
|
|
|
data[:name]=tag.attr['name'].to_s
|
|
|
|
data[:editable]=tag.attr['editable'].to_s
|
|
|
|
data[:content] = tag.expand.force_encoding('UTF-8') if !(tag.attr['editable'].eql?('true'))
|
2011-08-10 09:28:10 +00:00
|
|
|
layout.layout_parts.create(data)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
2011-08-23 18:06:27 +00:00
|
|
|
|
2011-05-09 10:49:57 +00:00
|
|
|
def self.included(base)
|
|
|
|
base.send :helper_method, :parse_page if base.respond_to? :helper_method
|
2011-05-25 06:50:56 +00:00
|
|
|
base.send :helper_method, :parse_page_edit if base.respond_to? :helper_method
|
2011-05-09 10:49:57 +00:00
|
|
|
end
|
2011-03-02 09:28:33 +00:00
|
|
|
|
|
|
|
end
|