expose more data for blog ext

This commit is contained in:
Thomas Reynolds 2011-11-11 12:27:09 -08:00
parent 97e1dfa339
commit cd63ec2248
2 changed files with 7 additions and 1 deletions

View file

@ -79,7 +79,7 @@ module Middleman::Base
app.register Middleman::CoreExtensions::FrontMatter
app.set :default_features, [
# :lorem,
:lorem,
# :sitemap_tree
]

View file

@ -43,6 +43,7 @@ module Middleman::CoreExtensions::Sitemap
@app = app
@source = File.expand_path(@app.views, @app.root)
@map = {}
@source_map = {}
@ignored_paths = false
@generic_paths = false
@proxied_paths = false
@ -155,6 +156,10 @@ module Middleman::CoreExtensions::Sitemap
@map.delete(path) if path_exists?(path)
end
def source_map
@source_map
end
protected
def build_static_map
Find.find(@source) do |file|
@ -182,6 +187,7 @@ module Middleman::CoreExtensions::Sitemap
end
end
@source_map[path] = file
path
end