133c21b801
Update to Rails 2.3.1. (Actually, not quite. Doesn't look like 2.3.1 will be released today, but I REALLY want to push these bugfixes out.) Removed bundled Rack (Rails 2.3.1 comes bundled with Rack 1.0). Add config.action_view.cache_template_loading = true to production environment. Fix FastCGI bug (http://rubyforge.org/tracker/index.php?func=detail&aid=24191&group_id=186&atid=783). Fix WikiWords bug (http://rubyforge.org/pipermail/instiki-users/2009-February/001181.html).
56 lines
1.3 KiB
Ruby
56 lines
1.3 KiB
Ruby
module RailsGuides
|
|
class Indexer
|
|
attr_reader :body, :result, :level_hash
|
|
|
|
def initialize(body)
|
|
@body = body
|
|
@result = @body.dup
|
|
end
|
|
|
|
def index
|
|
@level_hash = process(body)
|
|
end
|
|
|
|
private
|
|
|
|
def process(string, current_level= 3, counters = [1])
|
|
s = StringScanner.new(string)
|
|
|
|
level_hash = ActiveSupport::OrderedHash.new
|
|
|
|
while !s.eos?
|
|
s.match?(/\h[0-9]\..*$/)
|
|
if matched = s.matched
|
|
matched =~ /\h([0-9])\.(.*)$/
|
|
level, title = $1.to_i, $2
|
|
|
|
if level < current_level
|
|
# This is needed. Go figure.
|
|
return level_hash
|
|
elsif level == current_level
|
|
index = counters.join(".")
|
|
bookmark = '#' + title.gsub(/[^a-z0-9\-_]+/i, '').underscore.dasherize
|
|
|
|
raise "Parsing Fail" unless @result.sub!(matched, "h#{level}(#{bookmark}). #{index}#{title}")
|
|
|
|
key = {
|
|
:title => title,
|
|
:id => bookmark
|
|
}
|
|
# Recurse
|
|
counters << 1
|
|
level_hash[key] = process(s.post_match, current_level + 1, counters)
|
|
counters.pop
|
|
|
|
# Increment the current level
|
|
last = counters.pop
|
|
counters << last + 1
|
|
end
|
|
end
|
|
s.getch
|
|
end
|
|
level_hash
|
|
end
|
|
end
|
|
end
|