blob: 59d79822a110c03e2352878b41c051ea410d34b4 [file] [log] [blame]
# Licensed to the Apache Software Foundation (ASF) under one
# or more contributor license agreements. See the NOTICE file
# distributed with this work for additional information
# regarding copyright ownership. The ASF licenses this file
# to you under the Apache License, Version 2.0 (the
# "License"); you may not use this file except in compliance
# with the License. You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing,
# software distributed under the License is distributed on an
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
# KIND, either express or implied. See the License for the
# specific language governing permissions and limitations
# under the License.
$: << File.join(File.dirname(__FILE__))
require 'rubygems'
require 'nokogiri'
require 'fileutils'
require 'file_helpers'
class NavigationMenu
include FileHelpers
def initialize(options = {})
@sections = []
filename = Dir.glob(File.join tmp_directory, '**', 'index.md.html')[0]
if filename == nil
abort('index.md.html was not generated in ' + tmp_directory)
end
doc = Nokogiri::HTML(File.read(filename))
h1_set = doc.css('#home > h1')
ul_set = doc.css('#home > ul')
count = h1_set.length
count.times do |index|
links = []
ul_set[index].css('li > h2 > a').each { |a| links.push(a) }
@sections.push({
'title' => h1_set[index].text,
'links' => links
})
end
end
def run(filename)
doc = Nokogiri::HTML(File.read(filename))
@sections.each do |section|
insert_title(section['title'], doc)
insert_links(section['links'], doc)
end
File.open(filename, 'w') { |file| file.write doc.to_html }
return doc.to_html
end
def insert_title(title, doc)
h1 = Nokogiri::XML::Node.new 'h1', doc
h1.content = title
doc.css('#sidebar').first.add_child(h1)
end
def insert_links(links, doc)
ul = Nokogiri::XML::Node.new 'ul', doc
links.each do |link|
li = Nokogiri::XML::Node.new 'li', doc
li.add_child(link)
ul.add_child(li)
end
doc.css('#sidebar').first.add_child(ul)
end
end