Flowdock
method

set_index

Importance_0
v3.0.0 - Show latest stable - 0 notes - Class: RailsGuides::Generator
set_index(body, view) private

No documentation

This method has no description. You can help the Ruby on Rails community by adding new notes.

Hide source
# File railties/guides/rails_guides/generator.rb, line 163
    def set_index(body, view)
      index = "<div id=\"subCol\">\n<h3 class=\"chapter\"><img src=\"images/chapters_icon.gif\" alt=\"\" />Chapters</h3>\n<ol class=\"chapters\">\n"

      i = Indexer.new(body, warnings)
      i.index

      # Set index for 2 levels
      i.level_hash.each do |key, value|
        link = view.content_tag(:a, :href => key[:id]) { textile(key[:title], true).html_safe }

        children = value.keys.map do |k|
          view.content_tag(:li,
            view.content_tag(:a, :href => k[:id]) { textile(k[:title], true).html_safe })
        end

        children_ul = children.empty? ? "" : view.content_tag(:ul, children.join(" ").html_safe)

        index << view.content_tag(:li, link.html_safe + children_ul.html_safe)
      end

      index << '</ol>'
      index << '</div>'

      view.content_for(:index_section) { index.html_safe }

      i.result
    end
Register or log in to add new notes.