| 
									
										
										
										
											2011-12-22 08:23:48 +00:00
										 |  |  | module ParserBackEnd | 
					
						
							|  |  |  |   include ParserCommon | 
					
						
							| 
									
										
										
										
											2012-03-27 09:57:50 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |   require 'nokogiri' | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |       # 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 => { :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 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   def parse_page_edit_noko(page, id = nil) | 
					
						
							|  |  |  |     body = Nokogiri::HTML(page.design.layout.body) | 
					
						
							|  |  |  |     parse_menu(body, page, true) | 
					
						
							| 
									
										
										
										
											2012-03-30 07:51:29 +00:00
										 |  |  |     public_r_tags = parse_content_edits(body, page, id) | 
					
						
							| 
									
										
										
										
											2012-03-27 09:57:50 +00:00
										 |  |  |     parse_images(body, page) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     public_r_tags.each do |tag| | 
					
						
							|  |  |  |       send("parse_#{tag}s", body, page,id) | 
					
						
							| 
									
										
										
										
											2011-12-22 08:23:48 +00:00
										 |  |  |     end | 
					
						
							| 
									
										
										
										
											2012-03-27 09:57:50 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     body.to_html | 
					
						
							| 
									
										
										
										
											2011-12-22 08:23:48 +00:00
										 |  |  |   end | 
					
						
							| 
									
										
										
										
											2012-03-27 09:57:50 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |   # page_contents | 
					
						
							| 
									
										
										
										
											2012-03-30 07:51:29 +00:00
										 |  |  |   def parse_content_edits(body, page, id) | 
					
						
							| 
									
										
										
										
											2012-03-27 09:57:50 +00:00
										 |  |  |     public_r_tags = [] | 
					
						
							|  |  |  |     body.css('.page_content').each do |content| | 
					
						
							|  |  |  |       ret = '' | 
					
						
							|  |  |  |       if (content["main"] == "true" && !page.module_app.nil?) | 
					
						
							|  |  |  |         ret << "<div id='appfrontend' class='dymanic_load' path='/panel/#{page.module_app.key}/front_end/#{page.app_frontend_url}?inner=true&page_id=#{page.id}" | 
					
						
							|  |  |  |         ret << "&category_id=#{page.category}" if page[:category] | 
					
						
							|  |  |  |         ret << "'></div>" | 
					
						
							|  |  |  |       else | 
					
						
							|  |  |  |         part = page.page_parts.detect{ |p| p.name.to_s == content['name'].to_s } rescue nil | 
					
						
							| 
									
										
										
										
											2012-04-01 18:41:42 +00:00
										 |  |  |         ret << "<div id='#{content['name']}' part_id='#{part.id}' class='editable' style='border:solid 1px; margin:5px; padding:5px;'>" if part | 
					
						
							| 
									
										
										
										
											2012-03-27 09:57:50 +00:00
										 |  |  |         ret << "<div class='edit_link' style='display:none'>" | 
					
						
							| 
									
										
										
										
											2012-04-01 18:41:42 +00:00
										 |  |  |         ret << " <a href='#{edit_admin_page_part_path(part.id)}' class='nav'>#{t(:edit)}</a>" if part | 
					
						
							| 
									
										
										
										
											2012-03-27 09:57:50 +00:00
										 |  |  |         ret << '</div>' | 
					
						
							|  |  |  |         case part.kind | 
					
						
							|  |  |  |         when 'text' | 
					
						
							|  |  |  |           ret << part.i18n_variable[I18n.locale] rescue '' | 
					
						
							|  |  |  |         when 'module_widget' | 
					
						
							|  |  |  |           if part[:category] | 
					
						
							|  |  |  |             ret << "<div class='dymanic_load' path='/panel/#{part.module_app.key}/widget/#{part.widget_path}?category_id=#{part[:category]}'></div>" | 
					
						
							|  |  |  |           else | 
					
						
							|  |  |  |             ret << "<div class='dymanic_load' path='/panel/#{part.module_app.key}/widget/#{part.widget_path}'></div>" | 
					
						
							| 
									
										
										
										
											2012-02-02 01:55:09 +00:00
										 |  |  |           end | 
					
						
							| 
									
										
										
										
											2012-03-27 09:57:50 +00:00
										 |  |  |         when 'public_r_tag' | 
					
						
							|  |  |  |           ret << "<r:#{part.public_r_tag} id='#{part.public_r_tag_object_id}'/>" | 
					
						
							|  |  |  |           public_r_tags << part.public_r_tag | 
					
						
							| 
									
										
										
										
											2011-12-22 08:23:48 +00:00
										 |  |  |         else | 
					
						
							| 
									
										
										
										
											2012-03-27 09:57:50 +00:00
										 |  |  |             '' | 
					
						
							| 
									
										
										
										
											2012-04-01 18:41:42 +00:00
										 |  |  |         end if part | 
					
						
							| 
									
										
										
										
											2012-03-21 10:30:12 +00:00
										 |  |  |       end | 
					
						
							| 
									
										
										
										
											2012-03-27 09:57:50 +00:00
										 |  |  |       scope = "<#{content.name}" | 
					
						
							|  |  |  |       content.attributes.each_pair do |key, value| | 
					
						
							|  |  |  |         scope << " #{key}='#{value}'" | 
					
						
							| 
									
										
										
										
											2012-03-21 10:30:12 +00:00
										 |  |  |       end | 
					
						
							| 
									
										
										
										
											2012-03-27 09:57:50 +00:00
										 |  |  |       scope << ">#{ret}</#{content.name}>" | 
					
						
							|  |  |  |       fragment = Nokogiri::HTML::DocumentFragment.new(body, scope) | 
					
						
							|  |  |  |       content.swap(fragment) | 
					
						
							| 
									
										
										
										
											2011-12-22 08:23:48 +00:00
										 |  |  |     end | 
					
						
							| 
									
										
										
										
											2012-03-27 09:57:50 +00:00
										 |  |  |     public_r_tags.uniq | 
					
						
							| 
									
										
										
										
											2011-12-22 08:23:48 +00:00
										 |  |  |   end | 
					
						
							| 
									
										
										
										
											2012-03-27 09:57:50 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-12-22 08:23:48 +00:00
										 |  |  |   def self.included(base) | 
					
						
							| 
									
										
										
										
											2012-03-27 09:57:50 +00:00
										 |  |  |     base.send :helper_method, :parse_page_edit_noko if base.respond_to? :helper_method | 
					
						
							| 
									
										
										
										
											2011-12-22 08:23:48 +00:00
										 |  |  |   end | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | end |