Class: Webgen::SourceHandler::Virtual
- Inherits:
-
Object
- Object
- Webgen::SourceHandler::Virtual
- Includes:
- Base, WebsiteAccess
- Defined in:
- lib/webgen/sourcehandler/virtual.rb
Overview
Handles files which contain specifications for “virtual” nodes, ie. nodes that don’t have real source path.
This can be used, for example, to provide multiple links to the same node.
Instance Method Summary collapse
-
#create_node(parent, path) ⇒ Object
Create all virtual nodes under
parent
which are specified inpath
.
Methods included from WebsiteAccess
Methods included from Base
#content, #node_exists?, #output_path, #page_from_path
Methods included from Base::OutputPathHelpers
Methods included from Loggable
Instance Method Details
permalink #create_node(parent, path) ⇒ Object
Create all virtual nodes under parent
which are specified in path
.
18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 |
# File 'lib/webgen/sourcehandler/virtual.rb', line 18 def create_node(parent, path) page = page_from_path(path) nodes = [] YAML::load(page.blocks['content'].content).each do |key, | key = Webgen::Common.absolute_path(key, parent.absolute_lcn) + (key =~ /\/$/ ? '/' : '') temp_parent = create_directories(parent.tree.root, File.dirname(key), path) ||= {} ['modified_at'] = path.['modified_at'] ['no_output'] = true output_path = .delete('url') || key output_path = (URI::parse(output_path).absolute? || output_path =~ /^\// ? output_path : File.join(temp_parent.absolute_lcn, output_path)) if key =~ /\/$/ nodes << create_directory(temp_parent, key, path, ) else nodes += website.blackboard.invoke(:create_nodes, parent.tree, temp_parent.absolute_lcn, Webgen::Path.new(key, path.source_path), self) do |cn_parent, cn_path| cn_path..update() super(cn_parent, cn_path, output_path) end end end if page.blocks.has_key?('content') nodes.compact end |