middleman-core 3.4.1 → 4.0.0.alpha.2

Sign up to get free protection for your applications and to get access to all the features.
Files changed (507) hide show
  1. checksums.yaml +4 -4
  2. data/{fixtures/asciidoc-app/config.rb → .gemtest} +0 -0
  3. data/.yardopts +2 -6
  4. data/Rakefile +5 -1
  5. data/features/asset_hash.feature +32 -61
  6. data/features/asset_host.feature +11 -23
  7. data/features/builder.feature +2 -0
  8. data/features/cache_buster.feature +1 -1
  9. data/features/chained_templates.feature +2 -92
  10. data/features/clean_build.feature +0 -18
  11. data/features/cli_init.feature +17 -111
  12. data/features/content_type.feature +2 -5
  13. data/features/custom_layouts.feature +24 -20
  14. data/features/data.feature +0 -28
  15. data/features/directory_index.feature +9 -9
  16. data/features/front-matter-neighbor.feature +0 -32
  17. data/features/front-matter.feature +0 -17
  18. data/features/helpers_content_tag.feature +2 -2
  19. data/features/helpers_form_tag.feature +4 -4
  20. data/features/helpers_link_to.feature +11 -29
  21. data/features/helpers_url_for.feature +11 -11
  22. data/features/i18n_builder.feature +5 -5
  23. data/features/i18n_preview.feature +8 -8
  24. data/features/markdown_kramdown.feature +1 -1
  25. data/features/markdown_kramdown_in_haml.feature +1 -2
  26. data/features/markdown_redcarpet.feature +23 -23
  27. data/features/minify_css.feature +9 -75
  28. data/features/minify_javascript.feature +12 -65
  29. data/features/mount_rack.feature +2 -4
  30. data/features/multiple-sources.feature +27 -0
  31. data/features/proxy_pages.feature +0 -10
  32. data/features/redirects.feature +6 -7
  33. data/features/relative_assets.feature +21 -66
  34. data/features/slim.feature +11 -7
  35. data/features/stylus.feature +1 -1
  36. data/features/support/env.rb +4 -4
  37. data/fixtures/asset-hash-app/config.rb +0 -2
  38. data/fixtures/asset-hash-app/source/index.html.erb +1 -1
  39. data/fixtures/asset-hash-host-app/config.rb +1 -3
  40. data/fixtures/asset-host-app/source/asset_host.html.erb +20 -1
  41. data/fixtures/asset-host-app/source/stylesheets/asset_host.css.sass +47 -2
  42. data/fixtures/auto-css-app/config.rb +8 -10
  43. data/fixtures/auto-js-app/config.rb +8 -10
  44. data/fixtures/basic-data-app/config.rb +2 -4
  45. data/fixtures/cache-buster-app/source/stylesheets/relative_assets.css.sass +0 -1
  46. data/fixtures/cache-buster-app/source/stylesheets/site.css.sass +3 -1
  47. data/fixtures/capture-html-app/config.rb +3 -5
  48. data/fixtures/clean-app/config-complications.rb +4 -6
  49. data/fixtures/clean-app/config.rb +4 -6
  50. data/fixtures/content-for-app/config.rb +3 -5
  51. data/fixtures/custom-layout-app/config.rb +1 -1
  52. data/fixtures/data-app/config.rb +1 -1
  53. data/fixtures/dynamic-pages-app/config.rb +20 -42
  54. data/fixtures/dynamic-pages-app/source/real/index.html.erb +3 -3
  55. data/fixtures/ember-cli-app/config.rb +5 -0
  56. data/fixtures/{compass-sprites-app/config.rb → ember-cli-app/source/javascripts/file.js} +0 -0
  57. data/fixtures/ember-cli-app/test-app/.bowerrc +3 -0
  58. data/fixtures/ember-cli-app/test-app/.gitignore +17 -0
  59. data/fixtures/ember-cli-app/test-app/.jshintrc +32 -0
  60. data/fixtures/ember-cli-app/test-app/Brocfile.js +20 -0
  61. data/fixtures/ember-cli-app/test-app/README.md +25 -0
  62. data/fixtures/ember-cli-app/test-app/app/app.js +14 -0
  63. data/fixtures/{implied-extensions-app/config.rb → ember-cli-app/test-app/app/components/.gitkeep} +0 -0
  64. data/fixtures/{javascript-app/config.rb → ember-cli-app/test-app/app/controllers/.gitkeep} +0 -0
  65. data/fixtures/{more-implied-extensions-app/config.rb → ember-cli-app/test-app/app/helpers/.gitkeep} +0 -0
  66. data/fixtures/ember-cli-app/test-app/app/index.html +26 -0
  67. data/fixtures/{partial-chained_templates-app/config.rb → ember-cli-app/test-app/app/models/.gitkeep} +0 -0
  68. data/fixtures/ember-cli-app/test-app/app/router.js +10 -0
  69. data/fixtures/{preview-server-app/config-empty.rb → ember-cli-app/test-app/app/routes/.gitkeep} +0 -0
  70. data/fixtures/{request-app/config.rb → ember-cli-app/test-app/app/styles/.gitkeep} +0 -0
  71. data/fixtures/ember-cli-app/test-app/app/styles/app.css +3 -0
  72. data/fixtures/{traversal-app/source/.htaccess → ember-cli-app/test-app/app/templates/.gitkeep} +0 -0
  73. data/fixtures/ember-cli-app/test-app/app/templates/application.hbs +3 -0
  74. data/{lib/middleman-core/templates/html5/source/img/.gitignore → fixtures/ember-cli-app/test-app/app/templates/components/.gitkeep} +0 -0
  75. data/{lib/middleman-core/templates/mobile/source/js/script.js → fixtures/ember-cli-app/test-app/app/views/.gitkeep} +0 -0
  76. data/fixtures/ember-cli-app/test-app/bower.json +16 -0
  77. data/fixtures/ember-cli-app/test-app/config/environment.js +38 -0
  78. data/fixtures/ember-cli-app/test-app/package.json +31 -0
  79. data/fixtures/ember-cli-app/test-app/public/.gitkeep +0 -0
  80. data/fixtures/ember-cli-app/test-app/testem.json +6 -0
  81. data/fixtures/ember-cli-app/test-app/tests/.jshintrc +73 -0
  82. data/fixtures/ember-cli-app/test-app/tests/helpers/resolver.js +9 -0
  83. data/fixtures/ember-cli-app/test-app/tests/helpers/start-app.js +30 -0
  84. data/fixtures/ember-cli-app/test-app/tests/index.html +50 -0
  85. data/fixtures/ember-cli-app/test-app/tests/test-helper.js +6 -0
  86. data/fixtures/ember-cli-app/test-app/tests/unit/.gitkeep +0 -0
  87. data/fixtures/env-app/config.rb +0 -0
  88. data/fixtures/env-app/environments/development.rb +1 -0
  89. data/fixtures/env-app/environments/production.rb +2 -0
  90. data/fixtures/env-app/source/index.html.erb +3 -0
  91. data/fixtures/env-app/source/stylesheets/site.css.scss +3 -0
  92. data/fixtures/external-helpers/config.rb +1 -1
  93. data/fixtures/feature-params-app/config.rb +10 -6
  94. data/fixtures/feature-params-app/source/index.html.erb +2 -3
  95. data/fixtures/fonts-app/source/stylesheets/fonts.css.scss +6 -0
  96. data/fixtures/frontmatter-neighbor-app/config.rb +30 -0
  97. data/fixtures/frontmatter-settings-app/config.rb +2 -2
  98. data/fixtures/frontmatter-settings-neighbor-app/config.rb +33 -3
  99. data/fixtures/generator-test/config.rb +5 -10
  100. data/fixtures/glob-app/config.rb +1 -1
  101. data/fixtures/i18n-force-locale/config.rb +2 -4
  102. data/fixtures/i18n-force-locale/source/{index.haml → index.html.haml} +0 -0
  103. data/fixtures/i18n-test-app/source/localizable/{one.en.md → one.en.html.md} +0 -0
  104. data/fixtures/i18n-test-app/source/localizable/{one.es.md → one.es.html.md} +0 -0
  105. data/fixtures/indexable-app/config.rb +2 -2
  106. data/fixtures/indexable-app/source/evil spaces.html +1 -1
  107. data/fixtures/large-build-app/config.rb +1 -5
  108. data/fixtures/large-build-app/source/spaces in file.html.erb +1 -1
  109. data/fixtures/manual-layout-override/config.rb +1 -1
  110. data/fixtures/markdown-app/config.rb +1 -1
  111. data/fixtures/markdown-frontmatter-options-app/config.rb +1 -1
  112. data/fixtures/minify-css-app/source/stylesheets/site.css.sass +3 -1
  113. data/fixtures/more-frontmatter-settings-app/config.rb +1 -1
  114. data/fixtures/more-markdown-app/source/{with_layout.markdown → with_layout.html.markdown} +0 -0
  115. data/fixtures/more-markdown-app/source/{with_layout_erb.markdown.erb → with_layout_erb.html.markdown.erb} +0 -0
  116. data/fixtures/more-traversal-app/config.rb +4 -4
  117. data/fixtures/more-traversal-app/source/layout.erb +1 -1
  118. data/fixtures/multiple-data-sources-app/config.rb +3 -0
  119. data/fixtures/multiple-data-sources-app/data/data.yml +1 -0
  120. data/fixtures/multiple-data-sources-app/data/two.yml +1 -0
  121. data/fixtures/multiple-data-sources-app/data0/one.yml +1 -0
  122. data/fixtures/multiple-data-sources-app/data1/data1.yml +1 -0
  123. data/fixtures/multiple-data-sources-app/data1/one.yml +1 -0
  124. data/fixtures/multiple-data-sources-app/data2/data2.yml +1 -0
  125. data/fixtures/multiple-data-sources-app/data2/two.yml +1 -0
  126. data/fixtures/multiple-data-sources-app/source/index.html.erb +10 -0
  127. data/fixtures/multiple-sources-app/config.rb +3 -0
  128. data/fixtures/multiple-sources-app/source/index.html.erb +1 -0
  129. data/fixtures/multiple-sources-app/source/override-in-two.html.erb +1 -0
  130. data/fixtures/multiple-sources-app/source0/override-in-one.html.erb +1 -0
  131. data/fixtures/multiple-sources-app/source1/index1.html.erb +1 -0
  132. data/fixtures/multiple-sources-app/source1/override-in-one.html.erb +1 -0
  133. data/fixtures/multiple-sources-app/source2/index2.html.erb +1 -0
  134. data/fixtures/multiple-sources-app/source2/override-in-two.html.erb +1 -0
  135. data/fixtures/padrino-helpers-app/source/former_padrino_test.html.erb +3 -3
  136. data/fixtures/page-classes-app/config.rb +2 -4
  137. data/fixtures/page-classes-app/source/2-starts-with-numeric-custom.html.erb +1 -1
  138. data/fixtures/page-helper-layout-block-app/config.rb +1 -1
  139. data/fixtures/partials-app/source/locals.html.erb +1 -1
  140. data/fixtures/partials-app/source/shared/{snippet.erb → _snippet.html.erb} +0 -0
  141. data/fixtures/partials-app/source/sub/index.html.erb +1 -1
  142. data/fixtures/passthrough-app/source/stylesheets/site.css.sass +5 -1
  143. data/fixtures/proxy-pages-app/config.rb +12 -15
  144. data/fixtures/relative-app/source/stylesheets/relative_assets.css.sass +1 -2
  145. data/fixtures/relative-assets-app/source/javascripts/application.js +8 -0
  146. data/fixtures/relative-assets-app/source/relative_image.html.erb +0 -1
  147. data/fixtures/relative-assets-app/source/stylesheets/relative_assets.css.sass +1 -2
  148. data/fixtures/scss-app/source/stylesheets/site_scss.css.scss +3 -1
  149. data/fixtures/stylus-preview-app/source/content.html.erb +4 -0
  150. data/fixtures/traversal-app/config.rb +4 -4
  151. data/fixtures/traversal-app/source/layout.erb +1 -1
  152. data/fixtures/v4-extension-callbacks/config.rb +21 -5
  153. data/fixtures/wildcard-app/config.rb +1 -1
  154. data/fixtures/wildcard-directory-index-app/config.rb +1 -1
  155. data/lib/middleman-core.rb +5 -2
  156. data/lib/middleman-core/application.rb +212 -131
  157. data/lib/middleman-core/builder.rb +255 -0
  158. data/lib/middleman-core/config_context.rb +103 -0
  159. data/lib/middleman-core/configuration.rb +15 -92
  160. data/lib/middleman-core/contracts.rb +149 -0
  161. data/lib/middleman-core/core_extensions.rb +86 -45
  162. data/lib/middleman-core/core_extensions/data.rb +82 -72
  163. data/lib/{middleman-more → middleman-core}/core_extensions/default_helpers.rb +34 -140
  164. data/lib/middleman-core/core_extensions/external_helpers.rb +23 -27
  165. data/lib/middleman-core/core_extensions/file_watcher.rb +59 -169
  166. data/lib/middleman-core/core_extensions/front_matter.rb +72 -131
  167. data/lib/middleman-core/core_extensions/i18n.rb +186 -0
  168. data/lib/middleman-core/core_extensions/rendering.rb +45 -533
  169. data/lib/middleman-core/core_extensions/routing.rb +53 -51
  170. data/lib/middleman-core/core_extensions/show_exceptions.rb +11 -18
  171. data/lib/middleman-core/extension.rb +183 -56
  172. data/lib/middleman-core/extension_manager.rb +80 -0
  173. data/lib/middleman-core/extensions.rb +96 -67
  174. data/lib/middleman-core/extensions/asset_hash.rb +92 -0
  175. data/lib/middleman-core/extensions/asset_host.rb +37 -0
  176. data/lib/{middleman-more → middleman-core}/extensions/automatic_alt_tags.rb +6 -5
  177. data/lib/{middleman-more → middleman-core}/extensions/automatic_image_sizes.rb +9 -13
  178. data/lib/middleman-core/extensions/cache_buster.rb +27 -0
  179. data/lib/{middleman-more → middleman-core}/extensions/directory_indexes.rb +9 -7
  180. data/lib/middleman-core/extensions/external_pipeline.rb +37 -0
  181. data/lib/{middleman-more → middleman-core}/extensions/gzip.rb +10 -3
  182. data/lib/{middleman-more → middleman-core}/extensions/lorem.rb +2 -2
  183. data/lib/middleman-core/extensions/minify_css.rb +86 -0
  184. data/lib/middleman-core/extensions/minify_javascript.rb +93 -0
  185. data/lib/middleman-core/extensions/relative_assets.rb +38 -0
  186. data/lib/middleman-core/file_renderer.rb +139 -0
  187. data/lib/middleman-core/load_paths.rb +21 -28
  188. data/lib/middleman-core/meta_pages.rb +9 -9
  189. data/lib/middleman-core/meta_pages/sitemap_resource.rb +3 -6
  190. data/lib/middleman-core/meta_pages/sitemap_tree.rb +1 -1
  191. data/lib/middleman-core/middleware/inline_url_rewriter.rb +96 -0
  192. data/lib/middleman-core/preview_server.rb +65 -196
  193. data/lib/middleman-core/profiling.rb +14 -15
  194. data/lib/middleman-core/rack.rb +138 -0
  195. data/lib/middleman-core/renderers/coffee_script.rb +10 -13
  196. data/lib/middleman-core/renderers/erb.rb +3 -15
  197. data/lib/middleman-core/renderers/haml.rb +33 -18
  198. data/lib/middleman-core/renderers/kramdown.rb +6 -4
  199. data/lib/middleman-core/renderers/less.rb +12 -18
  200. data/lib/middleman-core/renderers/liquid.rb +22 -18
  201. data/lib/middleman-core/renderers/markdown.rb +36 -49
  202. data/lib/middleman-core/renderers/redcarpet.rb +11 -4
  203. data/lib/middleman-core/renderers/sass.rb +36 -27
  204. data/lib/middleman-core/renderers/sass_functions.rb +116 -0
  205. data/lib/middleman-core/renderers/slim.rb +19 -26
  206. data/lib/middleman-core/renderers/stylus.rb +4 -14
  207. data/lib/middleman-core/sitemap/extensions/ignores.rb +35 -73
  208. data/lib/middleman-core/sitemap/extensions/on_disk.rb +29 -48
  209. data/lib/middleman-core/sitemap/extensions/proxies.rb +111 -133
  210. data/lib/middleman-core/sitemap/extensions/redirects.rb +68 -102
  211. data/lib/middleman-core/sitemap/extensions/request_endpoints.rb +59 -83
  212. data/lib/middleman-core/sitemap/extensions/traversal.rb +14 -15
  213. data/lib/middleman-core/sitemap/resource.rb +99 -71
  214. data/lib/middleman-core/sitemap/store.rb +79 -132
  215. data/lib/middleman-core/sources.rb +310 -0
  216. data/lib/middleman-core/sources/source_watcher.rb +268 -0
  217. data/lib/middleman-core/step_definitions.rb +2 -3
  218. data/lib/middleman-core/step_definitions/builder_steps.rb +15 -13
  219. data/lib/middleman-core/step_definitions/middleman_steps.rb +2 -18
  220. data/lib/middleman-core/step_definitions/server_steps.rb +43 -77
  221. data/lib/middleman-core/template_context.rb +181 -0
  222. data/lib/middleman-core/template_renderer.rb +213 -0
  223. data/lib/middleman-core/util.rb +319 -241
  224. data/lib/middleman-core/util/hash_with_indifferent_access.rb +103 -0
  225. data/lib/middleman-core/version.rb +1 -1
  226. data/lib/middleman/rack.rb +0 -1
  227. data/middleman-core.gemspec +36 -28
  228. data/spec/middleman-core/path_match_spec.rb +37 -0
  229. data/spec/spec_helper.rb +2 -25
  230. metadata +237 -454
  231. data/bin/middleman +0 -18
  232. data/cucumber.yml +0 -2
  233. data/features/asciidoc.feature +0 -155
  234. data/features/cli/preview_server-hook.feature +0 -17
  235. data/features/cli/preview_server.feature +0 -532
  236. data/features/compass-sprites.feature +0 -6
  237. data/features/console.feature +0 -10
  238. data/features/current_page_request_path_backwards.feature +0 -6
  239. data/features/fonts.feature +0 -15
  240. data/features/i18n_link_to.feature +0 -209
  241. data/features/image_srcset_paths.feature +0 -7
  242. data/features/implied_extensions.feature +0 -69
  243. data/features/instance_vars.feature +0 -9
  244. data/features/javascript-testing.feature +0 -18
  245. data/features/more-implied_extensions.feature +0 -44
  246. data/features/partials_dir.feature +0 -30
  247. data/features/queryable.feature +0 -35
  248. data/features/request_params.feature +0 -6
  249. data/features/static_server.feature +0 -6
  250. data/features/step_definitions/page_layout_steps.rb +0 -15
  251. data/features/step_definitions/queryable_steps.rb +0 -212
  252. data/features/support/preserve_mime_types.rb +0 -7
  253. data/features/v3_extensions.feature +0 -20
  254. data/features/working_directory.feature +0 -33
  255. data/fixtures/asciidoc-app/source/_include.adoc +0 -1
  256. data/fixtures/asciidoc-app/source/code.adoc +0 -3
  257. data/fixtures/asciidoc-app/source/custom-attribute.adoc +0 -3
  258. data/fixtures/asciidoc-app/source/gallery.adoc +0 -1
  259. data/fixtures/asciidoc-app/source/hello-no-layout.adoc +0 -2
  260. data/fixtures/asciidoc-app/source/hello-with-front-matter.adoc +0 -5
  261. data/fixtures/asciidoc-app/source/hello-with-layout.adoc +0 -2
  262. data/fixtures/asciidoc-app/source/hello-with-title.adoc +0 -5
  263. data/fixtures/asciidoc-app/source/hello.adoc +0 -4
  264. data/fixtures/asciidoc-app/source/images/tiger.gif +0 -0
  265. data/fixtures/asciidoc-app/source/layouts/default.erb +0 -9
  266. data/fixtures/asciidoc-app/source/master.adoc +0 -3
  267. data/fixtures/asset-hash-app/source/api.json.erb +0 -1
  268. data/fixtures/asset-hash-app/source/fonts/fontawesome-webfont.woff +0 -0
  269. data/fixtures/asset-hash-app/source/fonts/fontawesome-webfont.woff2 +0 -0
  270. data/fixtures/asset-hash-app/source/images/200px.jpg +0 -0
  271. data/fixtures/asset-hash-app/source/images/300px.jpg +0 -0
  272. data/fixtures/asset-hash-app/source/slim.html.slim +0 -8
  273. data/fixtures/asset-hash-app/source/stylesheets/uses_fonts.css +0 -4
  274. data/fixtures/asset-hash-app/source/subdir/api.json.erb +0 -1
  275. data/fixtures/chained-app/source/test.erb.combobreaker.str.erb +0 -8
  276. data/fixtures/clean-app/config-hidden-dir-after.rb +0 -5
  277. data/fixtures/clean-app/config-hidden-dir-before.rb +0 -1
  278. data/fixtures/compass-sprites-app/source/images/icon/arrow_down.png +0 -0
  279. data/fixtures/compass-sprites-app/source/images/icon/arrow_left.png +0 -0
  280. data/fixtures/compass-sprites-app/source/images/icon/arrow_right.png +0 -0
  281. data/fixtures/compass-sprites-app/source/images/icon/arrow_up.png +0 -0
  282. data/fixtures/compass-sprites-app/source/stylesheets/site.css.scss +0 -3
  283. data/fixtures/content-type-app/source/index.php +0 -1
  284. data/fixtures/current-page-app/config.rb +0 -3
  285. data/fixtures/current-page-app/source/request-path.html.erb +0 -1
  286. data/fixtures/default-partials-dir-app/source/_partial.html.erb +0 -1
  287. data/fixtures/default-partials-dir-app/source/index.html.erb +0 -2
  288. data/fixtures/fonts-app/source/stylesheets/fonts.css.sass +0 -5
  289. data/fixtures/frontmatter-app/source/front-matter-auto.erb +0 -6
  290. data/fixtures/frontmatter-app/source/front-matter-pandoc.html.md.erb +0 -13
  291. data/fixtures/frontmatter-app/source/json-front-matter-auto.erb +0 -6
  292. data/fixtures/frontmatter-neighbor-app/source/front-matter-auto.erb +0 -1
  293. data/fixtures/frontmatter-neighbor-app/source/front-matter-auto.erb.frontmatter +0 -4
  294. data/fixtures/frontmatter-neighbor-app/source/json-front-matter-auto.erb +0 -1
  295. data/fixtures/frontmatter-neighbor-app/source/json-front-matter-auto.erb.frontmatter +0 -4
  296. data/fixtures/image-srcset-paths-app/image-srcset-paths.html.erb +0 -1
  297. data/fixtures/image-srcset-paths-app/images/blank.gif +0 -0
  298. data/fixtures/implied-extensions-app/source/index.erb +0 -1
  299. data/fixtures/instance-vars-app/config.rb +0 -7
  300. data/fixtures/instance-vars-app/source/content.html.erb +0 -2
  301. data/fixtures/instance-vars-app/source/layout.erb +0 -1
  302. data/fixtures/javascript-app/source/index.html +0 -17
  303. data/fixtures/minify-css-app/source/inline-css.php +0 -8
  304. data/fixtures/minify-css-app/source/stylesheets/site.xcss.sass +0 -5
  305. data/fixtures/minify-js-app/source/inline-js.php +0 -22
  306. data/fixtures/minify-js-app/source/javascripts/js_test.xjs +0 -8
  307. data/fixtures/more-implied-extensions-app/source/javascripts/app.coffee +0 -1
  308. data/fixtures/more-implied-extensions-app/source/layouts/layout.erb +0 -3
  309. data/fixtures/more-implied-extensions-app/source/stylesheets/style.scss +0 -3
  310. data/fixtures/more-implied-extensions-app/source/stylesheets/style2.sass +0 -3
  311. data/fixtures/more-implied-extensions-app/source/test.haml +0 -4
  312. data/fixtures/more-implied-extensions-app/source/test2.markdown +0 -3
  313. data/fixtures/more-implied-extensions-app/source/test3.slim +0 -3
  314. data/fixtures/more-implied-extensions-app/source/test4.liquid +0 -1
  315. data/fixtures/partials-dir-app/source/index.html.erb +0 -2
  316. data/fixtures/partials-dir-app/source/nested/partials/_partial.html.erb +0 -1
  317. data/fixtures/partials-dir-app/source/partials/_partial.html.erb +0 -1
  318. data/fixtures/plain-app/index.html +0 -1
  319. data/fixtures/preview-server-app/bin/dns_server.rb +0 -33
  320. data/fixtures/preview-server-app/config-complications.rb +0 -11
  321. data/fixtures/preview-server-app/config.rb +0 -11
  322. data/fixtures/preview-server-app/source/index.html.erb +0 -1
  323. data/fixtures/preview-server-app/source/layout.erb +0 -9
  324. data/fixtures/preview-server-app/source/layouts/custom.erb +0 -8
  325. data/fixtures/preview-server-app/source/real.html +0 -1
  326. data/fixtures/preview-server-app/source/real/index.html.erb +0 -5
  327. data/fixtures/preview-server-app/source/should_be_ignored.html +0 -1
  328. data/fixtures/preview-server-app/source/should_be_ignored2.html +0 -1
  329. data/fixtures/preview-server-app/source/should_be_ignored3.html +0 -1
  330. data/fixtures/preview-server-app/source/static.html +0 -1
  331. data/fixtures/preview-server-hook-app/config.rb +0 -19
  332. data/fixtures/preview-server-hook-app/source/index.html.erb +0 -9
  333. data/fixtures/proxy-pages-app/source/real/index-ivars.html.erb +0 -6
  334. data/fixtures/relative-assets-app/source/absolute_image_relative_css.html.erb +0 -9
  335. data/fixtures/relative-assets-app/source/javascripts/app.js +0 -3
  336. data/fixtures/relative-assets-app/source/relative_image_absolute_css.html.erb +0 -9
  337. data/fixtures/request-app/source/index.html.erb +0 -3
  338. data/fixtures/stylus-preview-app/source/layout.erb +0 -1
  339. data/lib/middleman-core/cli.rb +0 -88
  340. data/lib/middleman-core/cli/build.rb +0 -300
  341. data/lib/middleman-core/cli/bundler.rb +0 -39
  342. data/lib/middleman-core/cli/console.rb +0 -52
  343. data/lib/middleman-core/cli/extension.rb +0 -47
  344. data/lib/middleman-core/cli/init.rb +0 -71
  345. data/lib/middleman-core/cli/server.rb +0 -99
  346. data/lib/middleman-core/core_extensions/data/file_loader.rb +0 -71
  347. data/lib/middleman-core/core_extensions/extensions.rb +0 -197
  348. data/lib/middleman-core/core_extensions/request.rb +0 -312
  349. data/lib/middleman-core/dns_resolver.rb +0 -73
  350. data/lib/middleman-core/dns_resolver/basic_network_resolver.rb +0 -52
  351. data/lib/middleman-core/dns_resolver/hosts_resolver.rb +0 -63
  352. data/lib/middleman-core/dns_resolver/local_link_resolver.rb +0 -44
  353. data/lib/middleman-core/dns_resolver/network_resolver.rb +0 -42
  354. data/lib/middleman-core/preview_server/checks.rb +0 -81
  355. data/lib/middleman-core/preview_server/information.rb +0 -273
  356. data/lib/middleman-core/preview_server/network_interface_inventory.rb +0 -65
  357. data/lib/middleman-core/preview_server/server_hostname.rb +0 -39
  358. data/lib/middleman-core/preview_server/server_information.rb +0 -153
  359. data/lib/middleman-core/preview_server/server_information_callback_proxy.rb +0 -35
  360. data/lib/middleman-core/preview_server/server_information_validator.rb +0 -18
  361. data/lib/middleman-core/preview_server/server_ip_address.rb +0 -55
  362. data/lib/middleman-core/preview_server/server_url.rb +0 -63
  363. data/lib/middleman-core/preview_server/tcp_port_prober.rb +0 -29
  364. data/lib/middleman-core/renderers/asciidoc.rb +0 -58
  365. data/lib/middleman-core/sitemap.rb +0 -76
  366. data/lib/middleman-core/sitemap/extensions/content_type.rb +0 -16
  367. data/lib/middleman-core/sitemap/queryable.rb +0 -151
  368. data/lib/middleman-core/step_definitions/commandline_steps.rb +0 -88
  369. data/lib/middleman-core/templates.rb +0 -101
  370. data/lib/middleman-core/templates/default.rb +0 -37
  371. data/lib/middleman-core/templates/default/source/images/background.png +0 -0
  372. data/lib/middleman-core/templates/default/source/images/middleman.png +0 -0
  373. data/lib/middleman-core/templates/default/source/index.html.erb +0 -10
  374. data/lib/middleman-core/templates/default/source/javascripts/all.js +0 -1
  375. data/lib/middleman-core/templates/default/source/layouts/layout.erb +0 -19
  376. data/lib/middleman-core/templates/default/source/stylesheets/all.css +0 -55
  377. data/lib/middleman-core/templates/default/source/stylesheets/normalize.css +0 -375
  378. data/lib/middleman-core/templates/empty.rb +0 -22
  379. data/lib/middleman-core/templates/empty/Gemfile.tt +0 -6
  380. data/lib/middleman-core/templates/extension/Gemfile +0 -18
  381. data/lib/middleman-core/templates/extension/Rakefile +0 -14
  382. data/lib/middleman-core/templates/extension/features/support/env.rb +0 -4
  383. data/lib/middleman-core/templates/extension/gemspec +0 -24
  384. data/lib/middleman-core/templates/extension/gitignore +0 -5
  385. data/lib/middleman-core/templates/extension/lib/lib.rb +0 -38
  386. data/lib/middleman-core/templates/extension/lib/middleman_extension.rb +0 -1
  387. data/lib/middleman-core/templates/html5.rb +0 -29
  388. data/lib/middleman-core/templates/html5/source/.htaccess +0 -542
  389. data/lib/middleman-core/templates/html5/source/404.html +0 -157
  390. data/lib/middleman-core/templates/html5/source/LICENSE.md +0 -19
  391. data/lib/middleman-core/templates/html5/source/README.md +0 -63
  392. data/lib/middleman-core/templates/html5/source/apple-touch-icon-114x114-precomposed.png +0 -0
  393. data/lib/middleman-core/templates/html5/source/apple-touch-icon-144x144-precomposed.png +0 -0
  394. data/lib/middleman-core/templates/html5/source/apple-touch-icon-57x57-precomposed.png +0 -0
  395. data/lib/middleman-core/templates/html5/source/apple-touch-icon-72x72-precomposed.png +0 -0
  396. data/lib/middleman-core/templates/html5/source/apple-touch-icon-precomposed.png +0 -0
  397. data/lib/middleman-core/templates/html5/source/apple-touch-icon.png +0 -0
  398. data/lib/middleman-core/templates/html5/source/crossdomain.xml +0 -15
  399. data/lib/middleman-core/templates/html5/source/css/main.css +0 -298
  400. data/lib/middleman-core/templates/html5/source/css/normalize.css +0 -504
  401. data/lib/middleman-core/templates/html5/source/favicon.ico +0 -0
  402. data/lib/middleman-core/templates/html5/source/humans.txt +0 -15
  403. data/lib/middleman-core/templates/html5/source/index.html.erb +0 -6
  404. data/lib/middleman-core/templates/html5/source/js/main.js +0 -1
  405. data/lib/middleman-core/templates/html5/source/js/plugins.js +0 -14
  406. data/lib/middleman-core/templates/html5/source/js/vendor/jquery-1.8.0.min.js +0 -2
  407. data/lib/middleman-core/templates/html5/source/js/vendor/modernizr-2.6.1.min.js +0 -4
  408. data/lib/middleman-core/templates/html5/source/layouts/layout.erb +0 -40
  409. data/lib/middleman-core/templates/html5/source/robots.txt +0 -3
  410. data/lib/middleman-core/templates/local.rb +0 -27
  411. data/lib/middleman-core/templates/mobile.rb +0 -24
  412. data/lib/middleman-core/templates/mobile/source/404.html +0 -37
  413. data/lib/middleman-core/templates/mobile/source/README.markdown +0 -21
  414. data/lib/middleman-core/templates/mobile/source/crossdomain.xml +0 -25
  415. data/lib/middleman-core/templates/mobile/source/css/style.css +0 -315
  416. data/lib/middleman-core/templates/mobile/source/humans.txt +0 -43
  417. data/lib/middleman-core/templates/mobile/source/img/h/apple-touch-icon.png +0 -0
  418. data/lib/middleman-core/templates/mobile/source/img/h/splash.png +0 -0
  419. data/lib/middleman-core/templates/mobile/source/img/l/apple-touch-icon-precomposed.png +0 -0
  420. data/lib/middleman-core/templates/mobile/source/img/l/apple-touch-icon.png +0 -0
  421. data/lib/middleman-core/templates/mobile/source/img/l/splash.png +0 -0
  422. data/lib/middleman-core/templates/mobile/source/img/m/apple-touch-icon.png +0 -0
  423. data/lib/middleman-core/templates/mobile/source/index.html +0 -92
  424. data/lib/middleman-core/templates/mobile/source/js/libs/modernizr-custom.js +0 -14
  425. data/lib/middleman-core/templates/mobile/source/js/libs/respond.min.js +0 -7
  426. data/lib/middleman-core/templates/mobile/source/js/mylibs/helper.js +0 -171
  427. data/lib/middleman-core/templates/mobile/source/js/plugins.js +0 -20
  428. data/lib/middleman-core/templates/mobile/source/robots.txt +0 -4
  429. data/lib/middleman-core/templates/mobile/source/sitemap.xml +0 -9
  430. data/lib/middleman-core/templates/mobile/source/test/index.html +0 -31
  431. data/lib/middleman-core/templates/mobile/source/test/qunit/qunit.css +0 -148
  432. data/lib/middleman-core/templates/mobile/source/test/qunit/qunit.js +0 -1265
  433. data/lib/middleman-core/templates/mobile/source/test/tests.js +0 -21
  434. data/lib/middleman-core/templates/mobile/source/tools/googleanalyticsformobile/Readme.PDF +0 -0
  435. data/lib/middleman-core/templates/mobile/source/tools/googleanalyticsformobile/aspx/aspx1.snippet +0 -31
  436. data/lib/middleman-core/templates/mobile/source/tools/googleanalyticsformobile/aspx/aspx2.snippet +0 -2
  437. data/lib/middleman-core/templates/mobile/source/tools/googleanalyticsformobile/aspx/ga.aspx +0 -195
  438. data/lib/middleman-core/templates/mobile/source/tools/googleanalyticsformobile/aspx/sample.aspx +0 -44
  439. data/lib/middleman-core/templates/mobile/source/tools/googleanalyticsformobile/jsp/ga.jsp +0 -225
  440. data/lib/middleman-core/templates/mobile/source/tools/googleanalyticsformobile/jsp/jsp1.snippet +0 -35
  441. data/lib/middleman-core/templates/mobile/source/tools/googleanalyticsformobile/jsp/jsp2.snippet +0 -2
  442. data/lib/middleman-core/templates/mobile/source/tools/googleanalyticsformobile/jsp/sample.jsp +0 -51
  443. data/lib/middleman-core/templates/mobile/source/tools/googleanalyticsformobile/php/ga.php +0 -176
  444. data/lib/middleman-core/templates/mobile/source/tools/googleanalyticsformobile/php/php1.snippet +0 -30
  445. data/lib/middleman-core/templates/mobile/source/tools/googleanalyticsformobile/php/php2.snippet +0 -4
  446. data/lib/middleman-core/templates/mobile/source/tools/googleanalyticsformobile/php/sample.php +0 -44
  447. data/lib/middleman-core/templates/mobile/source/tools/googleanalyticsformobile/pl/ga.pl +0 -195
  448. data/lib/middleman-core/templates/mobile/source/tools/googleanalyticsformobile/pl/perl1.snippet +0 -27
  449. data/lib/middleman-core/templates/mobile/source/tools/googleanalyticsformobile/pl/perl2.snippet +0 -1
  450. data/lib/middleman-core/templates/mobile/source/tools/googleanalyticsformobile/pl/sample.pl +0 -38
  451. data/lib/middleman-core/templates/mobile/source/tools/mobile-bookmark-bubble/COPYING +0 -202
  452. data/lib/middleman-core/templates/mobile/source/tools/mobile-bookmark-bubble/bookmark_bubble.js +0 -559
  453. data/lib/middleman-core/templates/mobile/source/tools/mobile-bookmark-bubble/example/example.html +0 -43
  454. data/lib/middleman-core/templates/mobile/source/tools/mobile-bookmark-bubble/example/example.js +0 -57
  455. data/lib/middleman-core/templates/mobile/source/tools/mobile-bookmark-bubble/images/arrow.png +0 -0
  456. data/lib/middleman-core/templates/mobile/source/tools/mobile-bookmark-bubble/images/close.png +0 -0
  457. data/lib/middleman-core/templates/mobile/source/tools/mobile-bookmark-bubble/images/generate_base64_images +0 -33
  458. data/lib/middleman-core/templates/mobile/source/tools/mobile-bookmark-bubble/images/icon_calendar.png +0 -0
  459. data/lib/middleman-core/templates/mobile/source/tools/wspl/README +0 -27
  460. data/lib/middleman-core/templates/mobile/source/tools/wspl/databasefactory.js +0 -45
  461. data/lib/middleman-core/templates/mobile/source/tools/wspl/dbworker.js +0 -324
  462. data/lib/middleman-core/templates/mobile/source/tools/wspl/dbworker_test.html +0 -393
  463. data/lib/middleman-core/templates/mobile/source/tools/wspl/dbworkerstarter.js +0 -32
  464. data/lib/middleman-core/templates/mobile/source/tools/wspl/dbwrapper_gears.js +0 -595
  465. data/lib/middleman-core/templates/mobile/source/tools/wspl/dbwrapper_gears_test.html +0 -404
  466. data/lib/middleman-core/templates/mobile/source/tools/wspl/dbwrapper_html5.js +0 -203
  467. data/lib/middleman-core/templates/mobile/source/tools/wspl/dbwrapper_html5_test.html +0 -468
  468. data/lib/middleman-core/templates/mobile/source/tools/wspl/dbwrapperapi.js +0 -202
  469. data/lib/middleman-core/templates/mobile/source/tools/wspl/dbwrapperapi_test.html +0 -51
  470. data/lib/middleman-core/templates/mobile/source/tools/wspl/gears_resultset.js +0 -71
  471. data/lib/middleman-core/templates/mobile/source/tools/wspl/gears_resultset_test.html +0 -86
  472. data/lib/middleman-core/templates/mobile/source/tools/wspl/gears_transaction.js +0 -196
  473. data/lib/middleman-core/templates/mobile/source/tools/wspl/gears_transaction_test.html +0 -221
  474. data/lib/middleman-core/templates/mobile/source/tools/wspl/gearsutils.js +0 -94
  475. data/lib/middleman-core/templates/mobile/source/tools/wspl/gearsutils_test.html +0 -84
  476. data/lib/middleman-core/templates/mobile/source/tools/wspl/global_functions.js +0 -72
  477. data/lib/middleman-core/templates/mobile/source/tools/wspl/simplenotes/index.html +0 -347
  478. data/lib/middleman-core/templates/mobile/source/tools/wspl/simplenotes/simplenotes.js +0 -503
  479. data/lib/middleman-core/templates/mobile/source/tools/wspl/simplenotes/styles.css +0 -66
  480. data/lib/middleman-core/templates/mobile/source/tools/wspl/simplenotes/template.js +0 -75
  481. data/lib/middleman-core/templates/shared/Gemfile.tt +0 -14
  482. data/lib/middleman-core/templates/shared/config.ru +0 -3
  483. data/lib/middleman-core/templates/shared/config.tt +0 -87
  484. data/lib/middleman-core/templates/shared/gitignore +0 -21
  485. data/lib/middleman-more/core_extensions/compass.rb +0 -75
  486. data/lib/middleman-more/core_extensions/i18n.rb +0 -312
  487. data/lib/middleman-more/extensions/asset_hash.rb +0 -128
  488. data/lib/middleman-more/extensions/asset_host.rb +0 -50
  489. data/lib/middleman-more/extensions/cache_buster.rb +0 -55
  490. data/lib/middleman-more/extensions/minify_css.rb +0 -112
  491. data/lib/middleman-more/extensions/minify_javascript.rb +0 -120
  492. data/lib/middleman-more/extensions/relative_assets.rb +0 -24
  493. data/lib/middleman-more/templates/smacss.rb +0 -29
  494. data/lib/middleman-more/templates/smacss/source/_footer.haml +0 -1
  495. data/lib/middleman-more/templates/smacss/source/index.html.haml +0 -1
  496. data/lib/middleman-more/templates/smacss/source/layouts/layout.haml +0 -13
  497. data/lib/middleman-more/templates/smacss/source/stylesheets/base/README.markdown +0 -11
  498. data/lib/middleman-more/templates/smacss/source/stylesheets/base/base.scss +0 -1
  499. data/lib/middleman-more/templates/smacss/source/stylesheets/base/normalize.scss +0 -375
  500. data/lib/middleman-more/templates/smacss/source/stylesheets/layout/README.markdown +0 -9
  501. data/lib/middleman-more/templates/smacss/source/stylesheets/modules/README.markdown +0 -9
  502. data/lib/middleman-more/templates/smacss/source/stylesheets/states/README.markdown +0 -12
  503. data/lib/middleman-more/templates/smacss/source/stylesheets/style.css.scss +0 -12
  504. data/lib/vendored-middleman-deps/fastimage.rb +0 -287
  505. data/spec/middleman-core/dns_resolver_spec.rb +0 -118
  506. data/spec/middleman-core/preview_server/server_hostname_spec.rb +0 -39
  507. data/spec/middleman-core/preview_server/server_ip_address_spec.rb +0 -43
@@ -1,543 +1,55 @@
1
- # Shutup Tilt Warnings
2
- # @private
3
- class Tilt::Template
4
- def warn(*)
5
- end
6
- end
7
-
8
- # Rendering extension
9
- # rubocop:disable UnderscorePrefixedVariableName
10
- module Middleman
11
- module CoreExtensions
12
- module Rendering
13
- # Setup extension
14
- class << self
15
- # Once registered
16
- def registered(app)
17
- # Include methods
18
- app.send :include, InstanceMethods
19
-
20
- app.define_hook :before_render
21
- app.define_hook :after_render
22
-
23
- ::Tilt.mappings.delete('html') # WTF, Tilt?
24
- ::Tilt.mappings.delete('csv')
25
-
26
- require 'active_support/core_ext/string/output_safety'
27
-
28
- # Activate custom renderers
29
- require 'middleman-core/renderers/erb'
30
- app.register Middleman::Renderers::ERb
31
-
32
- # CoffeeScript Support
33
- begin
34
- require 'middleman-core/renderers/coffee_script'
35
- app.register Middleman::Renderers::CoffeeScript
36
- rescue LoadError
37
- end
38
-
39
- # Haml Support
40
- begin
41
- require 'middleman-core/renderers/haml'
42
- app.register Middleman::Renderers::Haml
43
- rescue LoadError
44
- end
45
-
46
- # Sass Support
47
- begin
48
- require 'middleman-core/renderers/sass'
49
- app.register Middleman::Renderers::Sass
50
- rescue LoadError
51
- end
52
-
53
- # Markdown Support
54
- require 'middleman-core/renderers/markdown'
55
- app.register Middleman::Renderers::Markdown
56
-
57
- # AsciiDoc Support
58
- begin
59
- require 'middleman-core/renderers/asciidoc'
60
- app.register Middleman::Renderers::AsciiDoc
61
- rescue LoadError
62
- end
63
-
64
- # Liquid Support
65
- begin
66
- require 'middleman-core/renderers/liquid'
67
- app.register Middleman::Renderers::Liquid
68
- rescue LoadError
69
- end
70
-
71
- # Slim Support
72
- begin
73
- require 'middleman-core/renderers/slim'
74
- app.register Middleman::Renderers::Slim
75
- rescue LoadError
76
- end
77
-
78
- # Less Support
79
- begin
80
- require 'middleman-core/renderers/less'
81
- app.register Middleman::Renderers::Less
82
- rescue LoadError
83
- end
84
-
85
- # Stylus Support
86
- begin
87
- require 'middleman-core/renderers/stylus'
88
- app.register Middleman::Renderers::Stylus
89
- rescue LoadError
90
- end
91
-
92
- # Clean up missing Tilt exts
93
- app.after_configuration do
94
- Tilt.mappings.each do |key, _|
95
- begin
96
- Tilt[".#{key}"]
97
- rescue LoadError, NameError
98
- Tilt.mappings.delete(key)
99
- end
100
- end
101
- end
102
- end
103
-
104
- alias_method :included, :registered
105
- end
106
-
107
- # Custom error class for handling
108
- class TemplateNotFound < RuntimeError
109
- end
110
-
111
- # Rendering instance methods
112
- module InstanceMethods
113
- # Add or overwrite a default template extension
114
- #
115
- # @param [Hash] extension_map
116
- # @return [Hash]
117
- def template_extensions(extension_map=nil)
118
- @_template_extensions ||= {}
119
- @_template_extensions.merge!(extension_map) if extension_map
120
- @_template_extensions
121
- end
122
-
123
- # Render a template, with layout, given a path
124
- #
125
- # @param [String] path
126
- # @param [Hash] locs
127
- # @param [Hash] opts
128
- # @return [String]
129
- def render_template(path, locs={}, opts={}, blocks=[])
130
- extension = File.extname(path)
131
- engine = extension[1..-1].to_sym
132
-
133
- if defined?(::I18n)
134
- old_locale = ::I18n.locale
135
- ::I18n.locale = opts[:lang] if opts[:lang]
136
- end
137
-
138
- # Use a dup of self as a context so that instance variables set within
139
- # the template don't persist for other templates.
140
- context = dup
141
- blocks.each do |block|
142
- context.instance_eval(&block)
143
- end
144
-
145
- # Store current locs/opts for later
146
- @current_locs = locs
147
- @current_opts = opts
148
-
149
- content = _render_with_all_renderers(path, locs, context, opts)
150
-
151
- # If we need a layout and have a layout, use it
152
- if layout_path = fetch_layout(engine, opts)
153
- content = render_individual_file(layout_path, locs, opts, context) { content }
154
- end
155
-
156
- # Return result
157
- content
158
- ensure
159
- # Pop all the saved variables from earlier as we may be returning to a
160
- # previous render (layouts, partials, nested layouts).
161
- ::I18n.locale = old_locale if defined?(::I18n)
162
- @content_blocks = nil
163
- @current_locs = nil
164
- @current_opts = nil
165
- end
166
-
167
- private
168
-
169
- def _render_with_all_renderers(path, locs, context, opts, &block)
170
- # Keep rendering template until we've used up all extensions. This
171
- # handles cases like `style.css.sass.erb`
172
- content = nil
173
-
174
- while ::Tilt[path]
175
- begin
176
- opts[:template_body] = content if content
177
-
178
- content = if block_given?
179
- render_individual_file(path, locs, opts, context, &block)
180
- else
181
- render_individual_file(path, locs, opts, context)
182
- end
183
-
184
- path = File.basename(path, File.extname(path))
185
- rescue LocalJumpError
186
- raise "Tried to render a layout (calls yield) at #{path} like it was a template. Non-default layouts need to be in #{source}/#{config[:layouts_dir]}."
187
- end
188
- end
189
-
190
- content
191
- end
192
-
193
- public
194
-
195
- # Sinatra/Padrino compatible render method signature referenced by some view
196
- # helpers. Especially partials.
197
- #
198
- # @param [String, Symbol] engine
199
- # @param [String, Symbol] data
200
- # @param [Hash] options
201
- # @return [String]
202
- def render(_, data, options={}, &block)
203
- partial_name = data.to_s
204
- found_partial = locate_partial(partial_name, false) || locate_partial(partial_name, true)
205
-
206
- # Look in the partials_dir for the partial with the current engine
207
- unless found_partial
208
- partials_path = File.join(config[:partials_dir], partial_name)
209
- found_partial = locate_partial(partials_path, false) || locate_partial(partials_path, true)
210
- end
211
-
212
- raise ::Middleman::CoreExtensions::Rendering::TemplateNotFound, "Could not locate partial: #{data}" unless found_partial
213
-
214
- locals = options[:locals]
215
-
216
- if ::Tilt[found_partial]
217
- # Render the partial if found, otherwise throw exception
218
- _render_with_all_renderers(found_partial, locals, self, options, &block)
219
- else
220
- read_template_file(found_partial)
221
- end
222
- end
223
-
224
- def read_template_file(path)
225
- data = ::File.open(path, 'rb') { |io| io.read }
226
- if data.respond_to?(:force_encoding)
227
- # Set it to the default external (without verifying)
228
- data.force_encoding(::Encoding.default_external) if ::Encoding.default_external
229
- end
230
- data
231
- end
232
-
233
- # Partial locator.
234
- #
235
- # @param [String] partial_name
236
- # @return [String]
237
- def locate_partial(partial_name, try_static=true)
238
- resolve_opts = { try_without_underscore: true, try_static: try_static }
239
-
240
- # If the path is known to the sitemap
241
- if resource = sitemap.find_resource_by_path(current_path)
242
- current_dir = File.dirname(resource.source_file)
243
- resolve_opts[:preferred_engine] = File.extname(resource.source_file)[1..-1].to_sym
244
-
245
- # Look for partials relative to the current path
246
- relative_dir = File.join(current_dir.sub(%r{^#{Regexp.escape(source_dir)}/?}, ''), partial_name)
247
-
248
- resolve_template(relative_dir, resolve_opts) || resolve_template(partial_name, resolve_opts)
249
- else
250
- resolve_template(partial_name, resolve_opts)
251
- end
252
- end
253
-
254
- # Render an on-disk file. Used for everything, including layouts.
255
- #
256
- # @param [String, Symbol] path
257
- # @param [Hash] locs
258
- # @param [Hash] opts
259
- # @param [Class] context
260
- # @return [String]
261
- def render_individual_file(path, locs={}, opts={}, context=self, &block)
262
- path = path.to_s
1
+ require 'middleman-core/template_context'
263
2
 
264
- # Mutability is FUN!
265
- # Try to work around: https://github.com/middleman/middleman/issues/501
266
- locs = locs.dup
267
-
268
- # Detect the rendering engine from the extension
269
- extension = File.extname(path)
270
- engine = extension[1..-1].to_sym
271
-
272
- # Store last engine for later (could be inside nested renders)
273
- context.current_engine, engine_was = engine, context.current_engine
274
-
275
- # Save current buffer for later
276
- @_out_buf, _buf_was = '', @_out_buf
277
-
278
- # Read from disk or cache the contents of the file
279
- body = if opts[:template_body]
280
- opts.delete(:template_body)
281
- else
282
- template_data_for_file(path)
283
- end
284
-
285
- # Merge per-extension options from config
286
- extension = File.extname(path)
287
- options = opts.dup.merge(options_for_ext(extension))
288
- options[:outvar] ||= '@_out_buf'
289
- options[:default_encoding] ||= 'UTF-8'
290
- options.delete(:layout)
291
-
292
- # Overwrite with frontmatter options
293
- options = options.deep_merge(options[:renderer_options]) if options[:renderer_options]
294
-
295
- template_class = ::Tilt[path]
296
- # Allow hooks to manipulate the template before render
297
- self.class.callbacks_for_hook(:before_render).each do |callback|
298
- # Uber::Options::Value doesn't respond to call
299
- newbody = if callback.is_a? ::Uber::Options::Value
300
- callback.call(self, body, path, locs, template_class)
301
- elsif callback.respond_to?(:evaluate)
302
- callback.call(body, path, locs, template_class)
303
- end
304
- body = newbody if newbody # Allow the callback to return nil to skip it
305
- end
306
-
307
- # Read compiled template from disk or cache
308
- template = cache.fetch(:compiled_template, extension, options, body) do
309
- ::Tilt.new(path, 1, options) { body }
310
- end
311
-
312
- # Render using Tilt
313
- content = template.render(context || ::Object.new, locs, &block)
314
-
315
- # Allow hooks to manipulate the result after render
316
- self.class.callbacks_for_hook(:after_render).each do |callback|
317
- # Uber::Options::Value doesn't respond to call
318
- newcontent = if callback.is_a? ::Uber::Options::Value
319
- callback.call(self, content, path, locs, template_class)
320
- elsif callback.respond_to?(:evaluate)
321
- callback.call(content, path, locs, template_class)
322
- end
323
- content = newcontent if newcontent # Allow the callback to return nil to skip it
324
- end
325
-
326
- output = ::ActiveSupport::SafeBuffer.new ''
327
- output.safe_concat content
328
- output
329
- ensure
330
- # Reset stored buffer
331
- @_out_buf = _buf_was
332
- context.current_engine = engine_was
333
- end
334
-
335
- # Get the template data from a path
336
- # @param [String] path
337
- # @return [String]
338
- def template_data_for_file(path)
339
- read_template_file(File.expand_path(path, source_dir))
340
- end
341
-
342
- # Get a hash of configuration options for a given file extension, from
343
- # config.rb
344
- #
345
- # @param [String] ext
346
- # @return [Hash]
347
- def options_for_ext(ext)
348
- # Read options for extension from config/Tilt or cache
349
- cache.fetch(:options_for_ext, ext) do
350
- options = {}
351
-
352
- # Find all the engines which handle this extension in tilt. Look for
353
- # config variables of that name and merge it
354
- extension_class = ::Tilt[ext]
355
- ::Tilt.mappings.each do |mapping_ext, engines|
356
- next unless engines.include? extension_class
357
- engine_options = config[mapping_ext.to_sym] || {}
358
- options.merge!(engine_options)
359
- end
360
-
361
- options
362
- end
363
- end
364
-
365
- # Find a layout for a given engine
366
- #
367
- # @param [Symbol] engine
368
- # @param [Hash] opts
369
- # @return [String]
370
- def fetch_layout(engine, opts)
371
- # The layout name comes from either the system default or the options
372
- local_layout = opts.key?(:layout) ? opts[:layout] : config[:layout]
373
- return false unless local_layout
374
-
375
- # Look for engine-specific options
376
- engine_options = respond_to?(engine) ? send(engine) : {}
377
-
378
- # The engine for the layout can be set in options, engine_options or passed
379
- # into this method
380
- layout_engine = if opts.key?(:layout_engine)
381
- opts[:layout_engine]
382
- elsif engine_options.key?(:layout_engine)
383
- engine_options[:layout_engine]
384
- else
385
- engine
386
- end
387
-
388
- # Automatic mode
389
- if local_layout == :_auto_layout
390
- # Look for :layout of any extension
391
- # If found, use it. If not, continue
392
- locate_layout(:layout, layout_engine) || false
393
- else
394
- # Look for specific layout
395
- # If found, use it. If not, error.
396
- if layout_path = locate_layout(local_layout, layout_engine)
397
- layout_path
398
- else
399
- raise ::Middleman::CoreExtensions::Rendering::TemplateNotFound, "Could not locate layout: #{local_layout}"
400
- end
401
- end
402
- end
403
-
404
- # Find a layout on-disk, optionally using a specific engine
405
- # @param [String] name
406
- # @param [Symbol] preferred_engine
407
- # @return [String]
408
- def locate_layout(name, preferred_engine=nil)
409
- resolve_opts = {}
410
- resolve_opts[:preferred_engine] = preferred_engine unless preferred_engine.nil?
411
-
412
- # Check layouts folder
413
- layout_path = resolve_template(File.join(config[:layouts_dir], name.to_s), resolve_opts)
414
-
415
- # If we didn't find it, check root
416
- layout_path = resolve_template(name, resolve_opts) unless layout_path
417
-
418
- # Return the path
419
- layout_path
420
- end
421
-
422
- # Allow layouts to be wrapped in the contents of other layouts
423
- # @param [String, Symbol] layout_name
424
- # @return [void]
425
- def wrap_layout(layout_name, &block)
426
- # Save current buffer for later
427
- @_out_buf, _buf_was = '', @_out_buf
428
-
429
- layout_path = locate_layout(layout_name, current_engine)
430
-
431
- unless layout_path
432
- raise ::Middleman::CoreExtensions::Rendering::TemplateNotFound, "Could not locate layout: #{layout_name}"
433
- end
434
-
435
- extension = File.extname(layout_path)
436
- engine = extension[1..-1].to_sym
437
-
438
- # Store last engine for later (could be inside nested renders)
439
- self.current_engine = engine
440
- engine_was = current_engine
441
-
442
- begin
443
- content = if block_given?
444
- capture_html(&block)
445
- else
446
- ''
447
- end
448
- ensure
449
- # Reset stored buffer
450
- @_out_buf = _buf_was
451
- end
452
-
453
- concat_safe_content render_individual_file(layout_path, @current_locs || {}, @current_opts || {}, self) { content }
454
- ensure
455
- self.current_engine = engine_was
456
- end
457
-
458
- # The currently rendering engine
459
- # @return [Symbol, nil]
460
- def current_engine
461
- @_current_engine ||= nil
462
- end
463
-
464
- # The currently rendering engine
465
- # @return [Symbol, nil]
466
- def current_engine=(v)
467
- @_current_engine = v
468
- end
469
-
470
- # Find a template on disk given a output path
471
- # @param [String] request_path
472
- # @option options [Boolean] :preferred_engine If set, try this engine first, then fall back to any engine.
473
- # @option options [Boolean] :try_without_underscore
474
- # @option options [Boolean] :try_static
475
- # @return [Array<String, Symbol>, Boolean]
476
- def resolve_template(request_path, options={})
477
- # Find the path by searching or using the cache
478
- request_path = request_path.to_s
479
- cache.fetch(:resolve_template, request_path, options) do
480
- relative_path = Util.strip_leading_slash(request_path)
481
- on_disk_path = File.expand_path(relative_path, source_dir)
482
-
483
- preferred_engines = if options[:try_static]
484
- [nil]
485
- else
486
- possible_engines = ['*'] # By default, any engine will do
487
-
488
- # If we're specifically looking for a preferred engine
489
- if options.key?(:preferred_engine)
490
- extension_class = ::Tilt[options[:preferred_engine]]
491
-
492
- # Get a list of extensions for a preferred engine
493
- matched_exts = ::Tilt.mappings.select do |_, engines|
494
- engines.include? extension_class
495
- end.keys
3
+ # ERb Support
4
+ Middleman::Extensions.register :erb_renderer, auto_activate: :before_configuration do
5
+ require 'middleman-core/renderers/erb'
6
+ Middleman::Renderers::ERb
7
+ end
496
8
 
497
- # Prefer to look for the matched extensions
498
- unless matched_exts.empty?
499
- possible_engines.unshift('{' + matched_exts.join(',') + '}')
500
- end
501
- end
9
+ # CoffeeScript Support
10
+ Middleman::Extensions.register :coffee_renderer, auto_activate: :before_configuration do
11
+ require 'middleman-core/renderers/coffee_script'
12
+ Middleman::Renderers::CoffeeScript
13
+ end
502
14
 
503
- possible_engines
504
- end
15
+ # Haml Support
16
+ Middleman::Extensions.register :haml_renderer, auto_activate: :before_configuration do
17
+ require 'middleman-core/renderers/haml'
18
+ Middleman::Renderers::Haml
19
+ end
505
20
 
506
- search_paths = preferred_engines.flat_map do |preferred_engine|
507
- path_with_ext = on_disk_path.dup
508
- path_with_ext << ('.' + preferred_engine) unless preferred_engine.nil?
21
+ # Sass Support
22
+ Middleman::Extensions.register :sass_renderer, auto_activate: :before_configuration do
23
+ require 'middleman-core/renderers/sass'
24
+ Middleman::Renderers::Sass
25
+ end
509
26
 
510
- paths = [path_with_ext]
511
- if options[:try_without_underscore]
512
- paths << path_with_ext.sub(relative_path, relative_path.sub(/^_/, '').sub(/\/_/, '/'))
513
- end
514
- paths
515
- end
27
+ # Markdown Support
28
+ Middleman::Extensions.register :markdown_renderer, auto_activate: :before_configuration do
29
+ require 'middleman-core/renderers/markdown'
30
+ Middleman::Renderers::Markdown
31
+ end
516
32
 
517
- found_path = nil
518
- search_paths.each do |path_with_ext|
519
- found_path = ::Middleman::Util.glob_directory(path_with_ext).find do |path|
520
- ::Tilt[path]
521
- end
33
+ # Liquid Support
34
+ Middleman::Extensions.register :liquid_renderer, auto_activate: :before_configuration do
35
+ require 'middleman-core/renderers/liquid'
36
+ Middleman::Renderers::Liquid
37
+ end
522
38
 
523
- unless found_path
524
- found_path = path_with_ext if File.exist?(path_with_ext)
525
- end
39
+ # Slim Support
40
+ Middleman::Extensions.register :slim_renderer, auto_activate: :before_configuration do
41
+ require 'middleman-core/renderers/slim'
42
+ Middleman::Renderers::Slim
43
+ end
526
44
 
527
- break if found_path
528
- end
45
+ # Less Support
46
+ Middleman::Extensions.register :less_renderer, auto_activate: :before_configuration do
47
+ require 'middleman-core/renderers/less'
48
+ Middleman::Renderers::Less
49
+ end
529
50
 
530
- # If we found one, return it
531
- if found_path
532
- found_path
533
- elsif File.exist?(on_disk_path)
534
- on_disk_path
535
- else
536
- false
537
- end
538
- end
539
- end
540
- end
541
- end
542
- end
51
+ # Stylus Support
52
+ Middleman::Extensions.register :stylus_renderer, auto_activate: :before_configuration do
53
+ require 'middleman-core/renderers/stylus'
54
+ Middleman::Renderers::Stylus
543
55
  end