Sha256: b1e7443a652236b536a2fb970c3e92a644b5653c9e5e190da9d1cb252cd48837

Contents?: true

Size: 1.06 KB

Versions: 2

Compression:

Stored size: 1.06 KB

Contents

xml.instruct!

xml.urlset "xmlns" => "http://www.sitemaps.org/schemas/sitemap/0.9" do

  @locales.each do |locale|
    ::I18n.locale = locale
    ::Refinery::Page.live.in_menu.includes(:parts).each do |page|
     # exclude sites that are external to our own domain.
     page_url = if page.url.is_a?(Hash)
       # This is how most pages work without being overriden by link_url
       page.url.merge({:only_path => false, locale: locale})
     elsif page.url.to_s !~ /^http/
       # handle relative link_url addresses.
       raw_url = [request.protocol, request.host_with_port, page.url].join
       if (@locales.size > 1) && defined?(RoutingFilter::RefineryLocales)
         filter = RoutingFilter::RefineryLocales.new
         filter.around_generate({}) do
           raw_url
         end
       else
         raw_url
       end
     end

     # Add XML entry only if there is a valid page_url found above.
     xml.url do
       xml.loc refinery.url_for(page_url)
       xml.lastmod page.updated_at.to_date
     end if page_url.present? and page.show_in_menu?
    end
  end

end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
refinerycms-core-3.0.5 app/views/refinery/sitemap/index.xml.builder
refinerycms-core-3.0.4 app/views/refinery/sitemap/index.xml.builder