breadcrumb widget of front-end has done

Conflicts:

	app/controllers/front_controller.rb
	lib/parsers/parser_common.rb
This commit is contained in:
Rueshyna 2013-02-02 01:25:11 +08:00 committed by chris
parent f3bfe67e68
commit bfad8467c8
2 changed files with 3 additions and 6 deletions

View File

@ -3,7 +3,7 @@ class FrontController < ApplicationController
layout false
def show_breadcrumb
@ancestors = Page.find(params[:page_id]).ancestors_and_self
@ancestors = Page.find(params[:id]).ancestors_and_self
@ancestors.delete_at(0)
end

View File

@ -147,7 +147,7 @@ module ParserCommon
# breadcrumb
def parse_breadcrumbs_edit(body = nil, page = nil, edit=nil)
body.css('breadcrumb').each do |breadcrumb|
ancestors = Page.find(page.id).ancestors_and_self.map{|m|m.title} rescue nil
ancestors = Page.find(page.id).ancestors_and_self rescue nil
ancestors.delete_at(0)
res = ''
@ -156,7 +156,7 @@ module ParserCommon
res << "<ul class='list'>"
ancestors.each do |node|
res << "<li class='active'>"
res << "<a herf ='/#{node.path} )}>#{node}</a>"
res << "<a herf='/#{node.path}'>#{node.title}</a>"
res << "</li>"
end
res << "</ul>"
@ -207,10 +207,7 @@ module ParserCommon
''
end
end
<<<<<<< HEAD
=======
>>>>>>> cf956ac... breadcrumb widget of back-end has done, front-end has bug...
# sitemap
def parse_sitemaps_edit(body = nil, page = nil, edit=nil)
sitemap = body.css('sitemap').first