Merge pull request #367 from bhollis/reorder

Reorder extensions so frontmatter is available before sitemap
This commit is contained in:
Thomas Reynolds 2012-04-21 13:24:46 -07:00
commit c5aa707d89
4 changed files with 16 additions and 16 deletions

View file

@ -225,6 +225,9 @@ module Middleman
# Activate Data package
register Middleman::CoreExtensions::Data
# Parse YAML from templates
register Middleman::CoreExtensions::FrontMatter
# Setup custom rendering
register Middleman::CoreExtensions::Rendering
@ -243,9 +246,6 @@ module Middleman
# with_layout and page routing
register Middleman::CoreExtensions::Routing
# Parse YAML from templates
register Middleman::CoreExtensions::FrontMatter
# i18n
register Middleman::CoreExtensions::I18n
@ -555,4 +555,4 @@ module Middleman
server
end
end
end
end

View file

@ -50,8 +50,6 @@ module Middleman::CoreExtensions::FrontMatter
# Override init
def initialize
super
exts = frontmatter_extensions.join("|").gsub(".", "\.")
static_path = source_dir.sub(root, "").sub(/^\//, "").sub(/\/$/, "") + "/"
@ -82,9 +80,11 @@ module Middleman::CoreExtensions::FrontMatter
{ :options => data, :page => fmdata }
end
# Initialize class
frontmatter_extension
super
end
# Notify callbacks that the frontmatter changed
@ -153,6 +153,7 @@ module Middleman::CoreExtensions::FrontMatter
if result
data, content = result
data = ::Middleman::Util.recursively_enhance(data).freeze
file = file.sub(@app.source_dir, "")
@local_data[file] = [data, content]

View file

@ -40,8 +40,6 @@ module Middleman::CoreExtensions::Rendering
}
super
static_path = source_dir.sub(self.root, "").sub(/^\//, "")
render_regex = static_path.empty? ? // : (%r{^#{static_path + "/"}})
@ -49,6 +47,8 @@ module Middleman::CoreExtensions::Rendering
path = File.expand_path(file, self.root)
self.cache.remove(:raw_template, path)
end
super
end
# Add or overwrite a default template extension
@ -364,4 +364,4 @@ module Middleman::CoreExtensions::Rendering
end
end
end
end
end

View file

@ -53,11 +53,10 @@ module Middleman::Sitemap
end
# Reset lookup cache
cache_structure = { :path => {}, :destination_path => {} }
@_lookup_cache = @resources.inject(cache_structure) do |cache, resource|
cache[:path][resource.path] = resource
cache[:destination_path][resource.destination_path] = resource
cache
@_lookup_cache = { :path => {}, :destination_path => {} }
@resources.each do |resource|
@_lookup_cache[:path][resource.path] = resource
@_lookup_cache[:destination_path][resource.destination_path] = resource
end
end
@ -188,4 +187,4 @@ module Middleman::Sitemap
path
end
end
end
end