Sha256: 75497c3315859a8cac894d3209240cf080a673a60b8510650b37755cbe8e7c7c
Contents?: true
Size: 1.66 KB
Versions: 1
Compression:
Stored size: 1.66 KB
Contents
# -*- encoding: utf-8 -*- require 'uri' require 'time' require 'webgen/path_handler/base' require 'webgen/path_handler/page_utils' require 'webgen/context' module Webgen class PathHandler # Path handler for creating an XML sitemap based on the specification of http://sitemaps.org. class Sitemap include Base include PageUtils # The mandatory keys that need to be set in a sitemap file. MANDATORY_INFOS = %W[site_url entries] # Create an XML sitemap from +path+. def create_nodes(path, blocks) if MANDATORY_INFOS.any? {|t| path.meta_info[t].nil?} raise Webgen::NodeCreationError.new("At least one of #{MANDATORY_INFOS.join('/')} is missing", self.class.name, path) end path.ext = 'xml' create_node(path) do |node| set_blocks(node, blocks) node.node_info[:entries] = {:flatten => true, :and => node['entries']} @website.ext.item_tracker.add(node, :nodes, :node_finder_option_set, {:opts => node.node_info[:entries], :ref_alcn => node.alcn}, :meta_info) end end # Return the rendered feed represented by +node+. def content(node) context = Webgen::Context.new(@website) context.render_block(:name => "sitemap", :node => 'first', :chain => [node, node.resolve("/templates/sitemap.template", node.lang, true), node].compact) end # Return the entries for the sitemap +node+. def sitemap_entries(node) @website.ext.node_finder.find(node.node_info[:entries], node) end end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
webgen-1.0.0.beta1 | lib/webgen/path_handler/sitemap.rb |