middleman-core 3.1.0.rc.1 → 3.1.0.rc.2

Sign up to get free protection for your applications and to get access to all the features.
Files changed (281) hide show
  1. checksums.yaml +4 -4
  2. data/.simplecov +6 -0
  3. data/features/clean_build.feature +20 -3
  4. data/features/custom-source.feature +7 -0
  5. data/features/data.feature +27 -1
  6. data/features/front-matter-neighbor.feature +2 -2
  7. data/features/front-matter.feature +3 -3
  8. data/features/i18n_builder.feature +5 -1
  9. data/features/i18n_preview.feature +18 -0
  10. data/features/layouts_dir.feature +30 -0
  11. data/features/minify_javascript.feature +3 -3
  12. data/features/support/env.rb +6 -0
  13. data/fixtures/basic-data-app/source/data.html.erb +5 -1
  14. data/fixtures/basic-data-app/source/data3.html.erb +5 -1
  15. data/fixtures/chained-app/source/index.html.str.erb +1 -1
  16. data/fixtures/clean-nested-app/config.rb +1 -3
  17. data/fixtures/clean-nested-app/source/nested/nested.html +1 -0
  18. data/fixtures/custom-src-app/config.rb +1 -0
  19. data/fixtures/custom-src-app/src/index.html +0 -0
  20. data/fixtures/custom-src-app/src/layouts/layout.html.erb +1 -0
  21. data/fixtures/frontmatter-app/source/front-matter-2.php.erb +2 -2
  22. data/fixtures/frontmatter-app/source/front-matter-auto.erb +1 -1
  23. data/fixtures/frontmatter-app/source/front-matter-change.html.erb +1 -1
  24. data/fixtures/frontmatter-app/source/front-matter-encoding.html.erb +1 -1
  25. data/fixtures/frontmatter-app/source/front-matter-line-2.html.erb +1 -1
  26. data/fixtures/frontmatter-app/source/json-front-matter-2.php.erb +2 -2
  27. data/fixtures/frontmatter-app/source/json-front-matter-auto.erb +1 -1
  28. data/fixtures/frontmatter-app/source/json-front-matter-encoding.html.erb +1 -1
  29. data/fixtures/frontmatter-app/source/json-front-matter-line-2.html.erb +1 -1
  30. data/fixtures/frontmatter-app/source/json-front-matter.html.erb +1 -1
  31. data/fixtures/frontmatter-app/source/raw-front-matter.html +1 -1
  32. data/fixtures/frontmatter-neighbor-app/source/front-matter-2.php.erb +2 -2
  33. data/fixtures/frontmatter-neighbor-app/source/front-matter-auto.erb +1 -1
  34. data/fixtures/frontmatter-neighbor-app/source/front-matter-change.html.erb +1 -1
  35. data/fixtures/frontmatter-neighbor-app/source/front-matter-encoding.html.erb +1 -1
  36. data/fixtures/frontmatter-neighbor-app/source/json-front-matter-2.php.erb +2 -2
  37. data/fixtures/frontmatter-neighbor-app/source/json-front-matter-auto.erb +1 -1
  38. data/fixtures/frontmatter-neighbor-app/source/json-front-matter.html.erb +1 -1
  39. data/fixtures/frontmatter-neighbor-app/source/raw-front-matter.html +1 -1
  40. data/fixtures/i18n-nested-app/locales/en/more.yml +3 -0
  41. data/fixtures/i18n-nested-app/locales/en.yml +4 -0
  42. data/fixtures/i18n-nested-app/locales/es/mucho.yml +3 -0
  43. data/fixtures/i18n-nested-app/locales/es.yml +4 -0
  44. data/fixtures/i18n-nested-app/source/localizable/index.html.erb +3 -0
  45. data/fixtures/i18n-test-app/locales/es.yml +1 -0
  46. data/fixtures/i18n-test-app/source/one.en.md +1 -0
  47. data/fixtures/i18n-test-app/source/one.es.md +1 -0
  48. data/fixtures/layouts-dir-app/source/index.html.erb +2 -0
  49. data/fixtures/layouts-dir-app/source/layouts/layout.erb +3 -0
  50. data/fixtures/layouts-dir-app/source/layouts2/layout.erb +3 -0
  51. data/fixtures/layouts-dir-app/source/nested/layouts2/layout.erb +3 -0
  52. data/fixtures/nested-data-app/data/examples/deeper/stuff.yml +1 -0
  53. data/fixtures/nested-data-app/data/examples/more.yml +1 -0
  54. data/fixtures/nested-data-app/source/test.html.erb +3 -1
  55. data/fixtures/nested-layout-app/source/layouts/master.erb +2 -2
  56. data/fixtures/nested-layout-app/source/layouts/master_haml.haml +2 -2
  57. data/fixtures/nested-layout-app/source/layouts/master_slim.slim +2 -2
  58. data/lib/middleman-core/application.rb +20 -3
  59. data/lib/middleman-core/cli/build.rb +5 -8
  60. data/lib/middleman-core/configuration.rb +1 -1
  61. data/lib/middleman-core/core_extensions/extensions.rb +26 -9
  62. data/lib/middleman-core/core_extensions/file_watcher.rb +9 -1
  63. data/lib/middleman-core/core_extensions/front_matter.rb +145 -173
  64. data/lib/middleman-core/core_extensions/rendering.rb +4 -4
  65. data/lib/middleman-core/core_extensions.rb +63 -0
  66. data/lib/middleman-core/extensions.rb +61 -7
  67. data/lib/middleman-core/renderers/redcarpet.rb +2 -15
  68. data/lib/middleman-core/sitemap/extensions/ignores.rb +4 -1
  69. data/lib/middleman-core/sitemap/extensions/on_disk.rb +5 -1
  70. data/lib/middleman-core/sitemap/store.rb +10 -2
  71. data/lib/middleman-core/sitemap.rb +4 -4
  72. data/lib/middleman-core/templates/empty/Gemfile.tt +3 -0
  73. data/lib/middleman-core/templates/empty.rb +23 -0
  74. data/lib/middleman-core/templates/shared/Gemfile.tt +0 -2
  75. data/lib/middleman-core/templates.rb +13 -1
  76. data/lib/middleman-core/util.rb +0 -57
  77. data/lib/middleman-core/version.rb +1 -1
  78. data/lib/middleman-core.rb +0 -1
  79. data/lib/middleman-more/core_extensions/compass.rb +3 -3
  80. data/lib/middleman-more/core_extensions/default_helpers.rb +2 -1
  81. data/lib/middleman-more/core_extensions/i18n.rb +79 -57
  82. data/lib/middleman-more/extensions/asset_hash.rb +43 -30
  83. data/lib/middleman-more/extensions/automatic_image_sizes.rb +1 -1
  84. data/lib/middleman-more/extensions/directory_indexes.rb +1 -1
  85. data/lib/middleman-more/extensions/gzip.rb +17 -19
  86. data/lib/middleman-more/extensions/minify_css.rb +16 -16
  87. data/lib/middleman-more/extensions/minify_javascript.rb +26 -20
  88. data/lib/{middleman-more/extensions/automatic_image_sizes → vendored-middleman-deps}/fastimage.rb +0 -0
  89. data/lib/{middleman-core/vendor → vendored-middleman-deps}/hooks-0.2.0/CHANGES.textile +0 -0
  90. data/lib/{middleman-core/vendor → vendored-middleman-deps}/hooks-0.2.0/Gemfile +0 -0
  91. data/lib/{middleman-core/vendor → vendored-middleman-deps}/hooks-0.2.0/README.rdoc +0 -0
  92. data/lib/{middleman-core/vendor → vendored-middleman-deps}/hooks-0.2.0/Rakefile +0 -0
  93. data/lib/{middleman-core/vendor → vendored-middleman-deps}/hooks-0.2.0/hooks.gemspec +0 -0
  94. data/lib/{middleman-core/vendor → vendored-middleman-deps}/hooks-0.2.0/lib/hooks/inheritable_attribute.rb +0 -0
  95. data/lib/{middleman-core/vendor → vendored-middleman-deps}/hooks-0.2.0/lib/hooks.rb +0 -0
  96. data/lib/{middleman-core/vendor → vendored-middleman-deps}/hooks-0.2.0/test/hooks_test.rb +0 -0
  97. data/lib/{middleman-core/vendor → vendored-middleman-deps}/hooks-0.2.0/test/inheritable_attribute_test.rb +0 -0
  98. data/lib/{middleman-core/vendor → vendored-middleman-deps}/hooks-0.2.0/test/test_helper.rb +0 -0
  99. data/lib/vendored-middleman-deps/padrino-core-0.10.7/.document +5 -0
  100. data/lib/vendored-middleman-deps/padrino-core-0.10.7/.gitignore +22 -0
  101. data/lib/vendored-middleman-deps/padrino-core-0.10.7/.yardopts +1 -0
  102. data/lib/vendored-middleman-deps/padrino-core-0.10.7/LICENSE.txt +20 -0
  103. data/lib/vendored-middleman-deps/padrino-core-0.10.7/README.rdoc +294 -0
  104. data/lib/vendored-middleman-deps/padrino-core-0.10.7/Rakefile +5 -0
  105. data/lib/vendored-middleman-deps/padrino-core-0.10.7/bin/padrino +9 -0
  106. data/lib/vendored-middleman-deps/padrino-core-0.10.7/lib/padrino-core/application/rendering.rb +292 -0
  107. data/lib/vendored-middleman-deps/padrino-core-0.10.7/lib/padrino-core/application/routing.rb +943 -0
  108. data/lib/vendored-middleman-deps/padrino-core-0.10.7/lib/padrino-core/application/showexceptions.rb +20 -0
  109. data/lib/vendored-middleman-deps/padrino-core-0.10.7/lib/padrino-core/application.rb +269 -0
  110. data/lib/vendored-middleman-deps/padrino-core-0.10.7/lib/padrino-core/caller.rb +53 -0
  111. data/lib/vendored-middleman-deps/padrino-core-0.10.7/lib/padrino-core/cli/adapter.rb +24 -0
  112. data/lib/vendored-middleman-deps/padrino-core-0.10.7/lib/padrino-core/cli/base.rb +155 -0
  113. data/lib/vendored-middleman-deps/padrino-core-0.10.7/lib/padrino-core/cli/console.rb +20 -0
  114. data/lib/vendored-middleman-deps/padrino-core-0.10.7/lib/padrino-core/cli/rake.rb +25 -0
  115. data/lib/vendored-middleman-deps/padrino-core-0.10.7/lib/padrino-core/cli/rake_tasks.rb +59 -0
  116. data/lib/vendored-middleman-deps/padrino-core-0.10.7/lib/padrino-core/command.rb +38 -0
  117. data/lib/vendored-middleman-deps/padrino-core-0.10.7/lib/padrino-core/images/404.png +0 -0
  118. data/lib/vendored-middleman-deps/padrino-core-0.10.7/lib/padrino-core/images/500.png +0 -0
  119. data/lib/vendored-middleman-deps/padrino-core-0.10.7/lib/padrino-core/loader.rb +211 -0
  120. data/lib/vendored-middleman-deps/padrino-core-0.10.7/lib/padrino-core/locale/cs.yml +34 -0
  121. data/lib/vendored-middleman-deps/padrino-core-0.10.7/lib/padrino-core/locale/da.yml +34 -0
  122. data/lib/vendored-middleman-deps/padrino-core-0.10.7/lib/padrino-core/locale/de.yml +34 -0
  123. data/lib/vendored-middleman-deps/padrino-core-0.10.7/lib/padrino-core/locale/en.yml +34 -0
  124. data/lib/vendored-middleman-deps/padrino-core-0.10.7/lib/padrino-core/locale/es.yml +34 -0
  125. data/lib/vendored-middleman-deps/padrino-core-0.10.7/lib/padrino-core/locale/fr.yml +34 -0
  126. data/lib/vendored-middleman-deps/padrino-core-0.10.7/lib/padrino-core/locale/hu.yml +34 -0
  127. data/lib/vendored-middleman-deps/padrino-core-0.10.7/lib/padrino-core/locale/it.yml +40 -0
  128. data/lib/vendored-middleman-deps/padrino-core-0.10.7/lib/padrino-core/locale/ja.yml +34 -0
  129. data/lib/vendored-middleman-deps/padrino-core-0.10.7/lib/padrino-core/locale/lv.yml +34 -0
  130. data/lib/vendored-middleman-deps/padrino-core-0.10.7/lib/padrino-core/locale/nl.yml +34 -0
  131. data/lib/vendored-middleman-deps/padrino-core-0.10.7/lib/padrino-core/locale/no.yml +35 -0
  132. data/lib/vendored-middleman-deps/padrino-core-0.10.7/lib/padrino-core/locale/pl.yml +34 -0
  133. data/lib/vendored-middleman-deps/padrino-core-0.10.7/lib/padrino-core/locale/pt_br.yml +40 -0
  134. data/lib/vendored-middleman-deps/padrino-core-0.10.7/lib/padrino-core/locale/ro.yml +34 -0
  135. data/lib/vendored-middleman-deps/padrino-core-0.10.7/lib/padrino-core/locale/ru.yml +35 -0
  136. data/lib/vendored-middleman-deps/padrino-core-0.10.7/lib/padrino-core/locale/sv.yml +34 -0
  137. data/lib/vendored-middleman-deps/padrino-core-0.10.7/lib/padrino-core/locale/tr.yml +34 -0
  138. data/lib/vendored-middleman-deps/padrino-core-0.10.7/lib/padrino-core/locale/uk.yml +34 -0
  139. data/lib/vendored-middleman-deps/padrino-core-0.10.7/lib/padrino-core/locale/zh_cn.yml +34 -0
  140. data/lib/vendored-middleman-deps/padrino-core-0.10.7/lib/padrino-core/locale/zh_tw.yml +34 -0
  141. data/lib/vendored-middleman-deps/padrino-core-0.10.7/lib/padrino-core/logger.rb +428 -0
  142. data/lib/vendored-middleman-deps/padrino-core-0.10.7/lib/padrino-core/mounter.rb +224 -0
  143. data/lib/vendored-middleman-deps/padrino-core-0.10.7/lib/padrino-core/reloader.rb +254 -0
  144. data/lib/vendored-middleman-deps/padrino-core-0.10.7/lib/padrino-core/router.rb +98 -0
  145. data/lib/vendored-middleman-deps/padrino-core-0.10.7/lib/padrino-core/server.rb +79 -0
  146. data/lib/vendored-middleman-deps/padrino-core-0.10.7/lib/padrino-core/support_lite.rb +207 -0
  147. data/lib/vendored-middleman-deps/padrino-core-0.10.7/lib/padrino-core/tasks.rb +21 -0
  148. data/lib/vendored-middleman-deps/padrino-core-0.10.7/lib/padrino-core/version.rb +20 -0
  149. data/lib/vendored-middleman-deps/padrino-core-0.10.7/lib/padrino-core.rb +152 -0
  150. data/lib/vendored-middleman-deps/padrino-core-0.10.7/padrino-core.gemspec +38 -0
  151. data/lib/vendored-middleman-deps/padrino-core-0.10.7/test/fixtures/apps/.components +6 -0
  152. data/lib/vendored-middleman-deps/padrino-core-0.10.7/test/fixtures/apps/.gitignore +7 -0
  153. data/lib/vendored-middleman-deps/padrino-core-0.10.7/test/fixtures/apps/complex.rb +32 -0
  154. data/lib/vendored-middleman-deps/padrino-core-0.10.7/test/fixtures/apps/simple.rb +33 -0
  155. data/lib/vendored-middleman-deps/padrino-core-0.10.7/test/fixtures/dependencies/a.rb +9 -0
  156. data/lib/vendored-middleman-deps/padrino-core-0.10.7/test/fixtures/dependencies/b.rb +4 -0
  157. data/lib/vendored-middleman-deps/padrino-core-0.10.7/test/fixtures/dependencies/c.rb +1 -0
  158. data/lib/vendored-middleman-deps/padrino-core-0.10.7/test/fixtures/dependencies/circular/e.rb +13 -0
  159. data/lib/vendored-middleman-deps/padrino-core-0.10.7/test/fixtures/dependencies/circular/f.rb +2 -0
  160. data/lib/vendored-middleman-deps/padrino-core-0.10.7/test/fixtures/dependencies/circular/g.rb +2 -0
  161. data/lib/vendored-middleman-deps/padrino-core-0.10.7/test/fixtures/dependencies/d.rb +4 -0
  162. data/lib/vendored-middleman-deps/padrino-core-0.10.7/test/helper.rb +83 -0
  163. data/lib/vendored-middleman-deps/padrino-core-0.10.7/test/mini_shoulda.rb +45 -0
  164. data/lib/vendored-middleman-deps/padrino-core-0.10.7/test/test_application.rb +108 -0
  165. data/lib/vendored-middleman-deps/padrino-core-0.10.7/test/test_core.rb +77 -0
  166. data/lib/vendored-middleman-deps/padrino-core-0.10.7/test/test_dependencies.rb +44 -0
  167. data/lib/vendored-middleman-deps/padrino-core-0.10.7/test/test_filters.rb +278 -0
  168. data/lib/vendored-middleman-deps/padrino-core-0.10.7/test/test_locale.rb +21 -0
  169. data/lib/vendored-middleman-deps/padrino-core-0.10.7/test/test_logger.rb +154 -0
  170. data/lib/vendored-middleman-deps/padrino-core-0.10.7/test/test_mounter.rb +177 -0
  171. data/lib/vendored-middleman-deps/padrino-core-0.10.7/test/test_reloader_complex.rb +75 -0
  172. data/lib/vendored-middleman-deps/padrino-core-0.10.7/test/test_reloader_simple.rb +98 -0
  173. data/lib/vendored-middleman-deps/padrino-core-0.10.7/test/test_rendering.rb +461 -0
  174. data/lib/vendored-middleman-deps/padrino-core-0.10.7/test/test_restful_routing.rb +33 -0
  175. data/lib/vendored-middleman-deps/padrino-core-0.10.7/test/test_router.rb +146 -0
  176. data/lib/vendored-middleman-deps/padrino-core-0.10.7/test/test_routing.rb +1695 -0
  177. data/lib/vendored-middleman-deps/padrino-helpers-0.10.7/.document +5 -0
  178. data/lib/vendored-middleman-deps/padrino-helpers-0.10.7/.gitignore +21 -0
  179. data/lib/vendored-middleman-deps/padrino-helpers-0.10.7/.yardopts +1 -0
  180. data/lib/vendored-middleman-deps/padrino-helpers-0.10.7/LICENSE.txt +20 -0
  181. data/lib/vendored-middleman-deps/padrino-helpers-0.10.7/README.rdoc +239 -0
  182. data/lib/vendored-middleman-deps/padrino-helpers-0.10.7/Rakefile +5 -0
  183. data/lib/vendored-middleman-deps/padrino-helpers-0.10.7/lib/padrino-helpers/asset_tag_helpers.rb +417 -0
  184. data/lib/vendored-middleman-deps/padrino-helpers-0.10.7/lib/padrino-helpers/form_builder/abstract_form_builder.rb +251 -0
  185. data/lib/vendored-middleman-deps/padrino-helpers-0.10.7/lib/padrino-helpers/form_builder/standard_form_builder.rb +43 -0
  186. data/lib/vendored-middleman-deps/padrino-helpers-0.10.7/lib/padrino-helpers/form_helpers.rb +787 -0
  187. data/lib/vendored-middleman-deps/padrino-helpers-0.10.7/lib/padrino-helpers/format_helpers.rb +381 -0
  188. data/lib/vendored-middleman-deps/padrino-helpers-0.10.7/lib/padrino-helpers/locale/cs.yml +103 -0
  189. data/lib/vendored-middleman-deps/padrino-helpers-0.10.7/lib/padrino-helpers/locale/da.yml +91 -0
  190. data/lib/vendored-middleman-deps/padrino-helpers-0.10.7/lib/padrino-helpers/locale/de.yml +81 -0
  191. data/lib/vendored-middleman-deps/padrino-helpers-0.10.7/lib/padrino-helpers/locale/en.yml +103 -0
  192. data/lib/vendored-middleman-deps/padrino-helpers-0.10.7/lib/padrino-helpers/locale/es.yml +103 -0
  193. data/lib/vendored-middleman-deps/padrino-helpers-0.10.7/lib/padrino-helpers/locale/fr.yml +80 -0
  194. data/lib/vendored-middleman-deps/padrino-helpers-0.10.7/lib/padrino-helpers/locale/hu.yml +103 -0
  195. data/lib/vendored-middleman-deps/padrino-helpers-0.10.7/lib/padrino-helpers/locale/it.yml +89 -0
  196. data/lib/vendored-middleman-deps/padrino-helpers-0.10.7/lib/padrino-helpers/locale/ja.yml +103 -0
  197. data/lib/vendored-middleman-deps/padrino-helpers-0.10.7/lib/padrino-helpers/locale/lv.yml +103 -0
  198. data/lib/vendored-middleman-deps/padrino-helpers-0.10.7/lib/padrino-helpers/locale/nl.yml +82 -0
  199. data/lib/vendored-middleman-deps/padrino-helpers-0.10.7/lib/padrino-helpers/locale/no.yml +91 -0
  200. data/lib/vendored-middleman-deps/padrino-helpers-0.10.7/lib/padrino-helpers/locale/pl.yml +95 -0
  201. data/lib/vendored-middleman-deps/padrino-helpers-0.10.7/lib/padrino-helpers/locale/pt_br.yml +103 -0
  202. data/lib/vendored-middleman-deps/padrino-helpers-0.10.7/lib/padrino-helpers/locale/ro.yml +103 -0
  203. data/lib/vendored-middleman-deps/padrino-helpers-0.10.7/lib/padrino-helpers/locale/ru.yml +103 -0
  204. data/lib/vendored-middleman-deps/padrino-helpers-0.10.7/lib/padrino-helpers/locale/sv.yml +103 -0
  205. data/lib/vendored-middleman-deps/padrino-helpers-0.10.7/lib/padrino-helpers/locale/tr.yml +103 -0
  206. data/lib/vendored-middleman-deps/padrino-helpers-0.10.7/lib/padrino-helpers/locale/uk.yml +103 -0
  207. data/lib/vendored-middleman-deps/padrino-helpers-0.10.7/lib/padrino-helpers/locale/zh_cn.yml +104 -0
  208. data/lib/vendored-middleman-deps/padrino-helpers-0.10.7/lib/padrino-helpers/locale/zh_tw.yml +103 -0
  209. data/lib/vendored-middleman-deps/padrino-helpers-0.10.7/lib/padrino-helpers/number_helpers.rb +288 -0
  210. data/lib/vendored-middleman-deps/padrino-helpers-0.10.7/lib/padrino-helpers/output_helpers/abstract_handler.rb +98 -0
  211. data/lib/vendored-middleman-deps/padrino-helpers-0.10.7/lib/padrino-helpers/output_helpers/erb_handler.rb +79 -0
  212. data/lib/vendored-middleman-deps/padrino-helpers-0.10.7/lib/padrino-helpers/output_helpers/haml_handler.rb +63 -0
  213. data/lib/vendored-middleman-deps/padrino-helpers-0.10.7/lib/padrino-helpers/output_helpers/slim_handler.rb +81 -0
  214. data/lib/vendored-middleman-deps/padrino-helpers-0.10.7/lib/padrino-helpers/output_helpers.rb +175 -0
  215. data/lib/vendored-middleman-deps/padrino-helpers-0.10.7/lib/padrino-helpers/render_helpers.rb +60 -0
  216. data/lib/vendored-middleman-deps/padrino-helpers-0.10.7/lib/padrino-helpers/tag_helpers.rb +260 -0
  217. data/lib/vendored-middleman-deps/padrino-helpers-0.10.7/lib/padrino-helpers/translation_helpers.rb +38 -0
  218. data/lib/vendored-middleman-deps/padrino-helpers-0.10.7/lib/padrino-helpers.rb +59 -0
  219. data/lib/vendored-middleman-deps/padrino-helpers-0.10.7/padrino-helpers.gemspec +27 -0
  220. data/lib/vendored-middleman-deps/padrino-helpers-0.10.7/test/fixtures/markup_app/app.rb +73 -0
  221. data/lib/vendored-middleman-deps/padrino-helpers-0.10.7/test/fixtures/markup_app/views/capture_concat.erb +14 -0
  222. data/lib/vendored-middleman-deps/padrino-helpers-0.10.7/test/fixtures/markup_app/views/capture_concat.haml +12 -0
  223. data/lib/vendored-middleman-deps/padrino-helpers-0.10.7/test/fixtures/markup_app/views/capture_concat.slim +13 -0
  224. data/lib/vendored-middleman-deps/padrino-helpers-0.10.7/test/fixtures/markup_app/views/content_for.erb +14 -0
  225. data/lib/vendored-middleman-deps/padrino-helpers-0.10.7/test/fixtures/markup_app/views/content_for.haml +12 -0
  226. data/lib/vendored-middleman-deps/padrino-helpers-0.10.7/test/fixtures/markup_app/views/content_for.slim +12 -0
  227. data/lib/vendored-middleman-deps/padrino-helpers-0.10.7/test/fixtures/markup_app/views/content_tag.erb +11 -0
  228. data/lib/vendored-middleman-deps/padrino-helpers-0.10.7/test/fixtures/markup_app/views/content_tag.haml +9 -0
  229. data/lib/vendored-middleman-deps/padrino-helpers-0.10.7/test/fixtures/markup_app/views/content_tag.slim +9 -0
  230. data/lib/vendored-middleman-deps/padrino-helpers-0.10.7/test/fixtures/markup_app/views/current_engine.erb +5 -0
  231. data/lib/vendored-middleman-deps/padrino-helpers-0.10.7/test/fixtures/markup_app/views/current_engine.haml +5 -0
  232. data/lib/vendored-middleman-deps/padrino-helpers-0.10.7/test/fixtures/markup_app/views/current_engine.slim +5 -0
  233. data/lib/vendored-middleman-deps/padrino-helpers-0.10.7/test/fixtures/markup_app/views/fields_for.erb +20 -0
  234. data/lib/vendored-middleman-deps/padrino-helpers-0.10.7/test/fixtures/markup_app/views/fields_for.haml +15 -0
  235. data/lib/vendored-middleman-deps/padrino-helpers-0.10.7/test/fixtures/markup_app/views/fields_for.slim +15 -0
  236. data/lib/vendored-middleman-deps/padrino-helpers-0.10.7/test/fixtures/markup_app/views/form_for.erb +72 -0
  237. data/lib/vendored-middleman-deps/padrino-helpers-0.10.7/test/fixtures/markup_app/views/form_for.haml +59 -0
  238. data/lib/vendored-middleman-deps/padrino-helpers-0.10.7/test/fixtures/markup_app/views/form_for.slim +59 -0
  239. data/lib/vendored-middleman-deps/padrino-helpers-0.10.7/test/fixtures/markup_app/views/form_tag.erb +86 -0
  240. data/lib/vendored-middleman-deps/padrino-helpers-0.10.7/test/fixtures/markup_app/views/form_tag.haml +70 -0
  241. data/lib/vendored-middleman-deps/padrino-helpers-0.10.7/test/fixtures/markup_app/views/form_tag.slim +70 -0
  242. data/lib/vendored-middleman-deps/padrino-helpers-0.10.7/test/fixtures/markup_app/views/link_to.erb +5 -0
  243. data/lib/vendored-middleman-deps/padrino-helpers-0.10.7/test/fixtures/markup_app/views/link_to.haml +4 -0
  244. data/lib/vendored-middleman-deps/padrino-helpers-0.10.7/test/fixtures/markup_app/views/link_to.slim +4 -0
  245. data/lib/vendored-middleman-deps/padrino-helpers-0.10.7/test/fixtures/markup_app/views/mail_to.erb +3 -0
  246. data/lib/vendored-middleman-deps/padrino-helpers-0.10.7/test/fixtures/markup_app/views/mail_to.haml +3 -0
  247. data/lib/vendored-middleman-deps/padrino-helpers-0.10.7/test/fixtures/markup_app/views/mail_to.slim +3 -0
  248. data/lib/vendored-middleman-deps/padrino-helpers-0.10.7/test/fixtures/markup_app/views/meta_tag.erb +3 -0
  249. data/lib/vendored-middleman-deps/padrino-helpers-0.10.7/test/fixtures/markup_app/views/meta_tag.haml +3 -0
  250. data/lib/vendored-middleman-deps/padrino-helpers-0.10.7/test/fixtures/markup_app/views/meta_tag.slim +3 -0
  251. data/lib/vendored-middleman-deps/padrino-helpers-0.10.7/test/fixtures/markup_app/views/partials/_erb.erb +1 -0
  252. data/lib/vendored-middleman-deps/padrino-helpers-0.10.7/test/fixtures/markup_app/views/partials/_haml.haml +1 -0
  253. data/lib/vendored-middleman-deps/padrino-helpers-0.10.7/test/fixtures/markup_app/views/partials/_slim.slim +1 -0
  254. data/lib/vendored-middleman-deps/padrino-helpers-0.10.7/test/fixtures/markup_app/views/simple_partial.erb +1 -0
  255. data/lib/vendored-middleman-deps/padrino-helpers-0.10.7/test/fixtures/markup_app/views/simple_partial.haml +1 -0
  256. data/lib/vendored-middleman-deps/padrino-helpers-0.10.7/test/fixtures/markup_app/views/simple_partial.slim +1 -0
  257. data/lib/vendored-middleman-deps/padrino-helpers-0.10.7/test/fixtures/render_app/app.rb +50 -0
  258. data/lib/vendored-middleman-deps/padrino-helpers-0.10.7/test/fixtures/render_app/views/current_engine.haml +5 -0
  259. data/lib/vendored-middleman-deps/padrino-helpers-0.10.7/test/fixtures/render_app/views/current_engines/_erb.erb +1 -0
  260. data/lib/vendored-middleman-deps/padrino-helpers-0.10.7/test/fixtures/render_app/views/current_engines/_haml.haml +1 -0
  261. data/lib/vendored-middleman-deps/padrino-helpers-0.10.7/test/fixtures/render_app/views/current_engines/_slim.slim +1 -0
  262. data/lib/vendored-middleman-deps/padrino-helpers-0.10.7/test/fixtures/render_app/views/erb/test.erb +1 -0
  263. data/lib/vendored-middleman-deps/padrino-helpers-0.10.7/test/fixtures/render_app/views/explicit_engine.haml +5 -0
  264. data/lib/vendored-middleman-deps/padrino-helpers-0.10.7/test/fixtures/render_app/views/haml/test.haml +1 -0
  265. data/lib/vendored-middleman-deps/padrino-helpers-0.10.7/test/fixtures/render_app/views/template/_user.haml +7 -0
  266. data/lib/vendored-middleman-deps/padrino-helpers-0.10.7/test/fixtures/render_app/views/template/haml_template.haml +1 -0
  267. data/lib/vendored-middleman-deps/padrino-helpers-0.10.7/test/fixtures/render_app/views/template/some_template.haml +2 -0
  268. data/lib/vendored-middleman-deps/padrino-helpers-0.10.7/test/helper.rb +66 -0
  269. data/lib/vendored-middleman-deps/padrino-helpers-0.10.7/test/test_asset_tag_helpers.rb +334 -0
  270. data/lib/vendored-middleman-deps/padrino-helpers-0.10.7/test/test_form_builder.rb +1106 -0
  271. data/lib/vendored-middleman-deps/padrino-helpers-0.10.7/test/test_form_helpers.rb +776 -0
  272. data/lib/vendored-middleman-deps/padrino-helpers-0.10.7/test/test_format_helpers.rb +227 -0
  273. data/lib/vendored-middleman-deps/padrino-helpers-0.10.7/test/test_locale.rb +20 -0
  274. data/lib/vendored-middleman-deps/padrino-helpers-0.10.7/test/test_number_helpers.rb +139 -0
  275. data/lib/vendored-middleman-deps/padrino-helpers-0.10.7/test/test_output_helpers.rb +152 -0
  276. data/lib/vendored-middleman-deps/padrino-helpers-0.10.7/test/test_render_helpers.rb +76 -0
  277. data/lib/vendored-middleman-deps/padrino-helpers-0.10.7/test/test_tag_helpers.rb +106 -0
  278. data/middleman-core.gemspec +2 -2
  279. data/spec/spec_helper.rb +5 -0
  280. metadata +243 -18
  281. data/lib/middleman-more.rb +0 -102
@@ -0,0 +1,381 @@
1
+ module Padrino
2
+ module Helpers
3
+ ###
4
+ # Helpers related to formatting or manipulating text within templates.
5
+ #
6
+ module FormatHelpers
7
+ ##
8
+ # Returns escaped text to protect against malicious content
9
+ #
10
+ # @param [String] text
11
+ # Unsanitized HTML string that needs to be escaped.
12
+ #
13
+ # @return [String] HTML with escaped characters.
14
+ #
15
+ # @example
16
+ # escape_html("<b>Hey<b>") => "&lt;b&gt;Hey&lt;b;gt;"
17
+ # h("Me & Bob") => "Me &amp; Bob"
18
+ #
19
+ # @api public
20
+ def escape_html(text)
21
+ Rack::Utils.escape_html(text)
22
+ end
23
+ alias h escape_html
24
+ alias sanitize_html escape_html
25
+
26
+ ##
27
+ # Returns escaped text to protect against malicious content
28
+ # Returns blank if the text is empty
29
+ #
30
+ # @param [String] text
31
+ # Unsanitized HTML string that needs to be escaped.
32
+ # @param [String] blank_text
33
+ # Text to return if escaped text is blank.
34
+ #
35
+ # @return [String] HTML with escaped characters or the value specified if blank.
36
+ #
37
+ # @example
38
+ # h!("Me & Bob") => "Me &amp; Bob"
39
+ # h!("", "Whoops") => "Whoops"
40
+ #
41
+ # @api public
42
+ def h!(text, blank_text = '&nbsp;')
43
+ return blank_text if text.nil? || text.empty?
44
+ h text
45
+ end
46
+
47
+ ##
48
+ # Strips all HTML tags from the html
49
+ #
50
+ # @param [String] html
51
+ # The HTML for which to strip tags.
52
+ #
53
+ # @return [String] HTML with tags stripped.
54
+ #
55
+ # @example
56
+ # strip_tags("<b>Hey</b>") => "Hey"
57
+ #
58
+ # @api public
59
+ def strip_tags(html)
60
+ html.gsub(/<\/?[^>]*>/, "") if html
61
+ end
62
+
63
+ ##
64
+ # Returns text transformed into HTML using simple formatting rules. Two or more consecutive newlines(\n\n) are considered
65
+ # as a paragraph and wrapped in <p> or your own tags. One newline (\n) is considered as a linebreak and a <br /> tag is appended.
66
+ # This method does not remove the newlines from the text.
67
+ #
68
+ # @param [String] text
69
+ # The simple text to be formatted.
70
+ # @param [Hash] options
71
+ # Formatting options for the text. Can accept html options for the wrapper tag.
72
+ # @option options [Symbol] :tag (p)
73
+ # The html tag to use for formatting newlines.
74
+ #
75
+ # @return [String] The text formatted as simple HTML.
76
+ #
77
+ # @example
78
+ # simple_format("hello\nworld") # => "<p>hello<br/>world</p>"
79
+ # simple_format("hello\nworld", :tag => :div, :class => :foo) # => "<div class="foo">hello<br/>world</div>"
80
+ #
81
+ # @api public
82
+ def simple_format(text, options={})
83
+ t = options.delete(:tag) || :p
84
+ start_tag = tag(t, options, true)
85
+ text = text.to_s.dup
86
+ text.gsub!(/\r\n?/, "\n") # \r\n and \r -> \n
87
+ text.gsub!(/\n\n+/, "</#{t}>\n\n#{start_tag}") # 2+ newline -> paragraph
88
+ text.gsub!(/([^\n]\n)(?=[^\n])/, '\1<br />') # 1 newline -> br
89
+ text.insert 0, start_tag
90
+ text << "</#{t}>"
91
+ end
92
+
93
+ ##
94
+ # Attempts to pluralize the singular word unless count is 1. If plural is supplied, it will use that when count is > 1,
95
+ # otherwise it will use the Inflector to determine the plural form
96
+ #
97
+ # @param [Fixnum] count
98
+ # The count which determines pluralization.
99
+ # @param [String] singular
100
+ # The word to be pluralized if appropriate based on +count+.
101
+ # @param [String] plural
102
+ # Explicit pluralized word to be used; if not specified uses inflector.
103
+ #
104
+ # @return [String] The properly pluralized word.
105
+ #
106
+ # @example
107
+ # pluralize(2, 'person') => '2 people'
108
+ #
109
+ # @api public
110
+ def pluralize(count, singular, plural = nil)
111
+ "#{count || 0} " + ((count == 1 || count == '1') ? singular : (plural || singular.pluralize))
112
+ end
113
+
114
+ ##
115
+ # Truncates a given text after a given :length if text is longer than :length (defaults to 30).
116
+ # The last characters will be replaced with the :omission (defaults to "…") for a total length not exceeding :length.
117
+ #
118
+ # @param [String] text
119
+ # The text to be truncated.
120
+ # @param [Hash] options
121
+ # Formatting options for the truncation.
122
+ # @option options [Fixnum] :length (30)
123
+ # The number of characters before truncation occurs.
124
+ # @option options [String] :omission ("...")
125
+ # The characters that are placed after the truncated text.
126
+ #
127
+ # @return [String] The text truncated after the given number of characters.
128
+ #
129
+ # @example
130
+ # truncate("Once upon a time in a world far far away", :length => 8) => "Once upon..."
131
+ #
132
+ # @api public
133
+ def truncate(text, options={})
134
+ options.reverse_merge!(:length => 30, :omission => "...")
135
+ if text
136
+ len = options[:length] - options[:omission].length
137
+ chars = text
138
+ (chars.length > options[:length] ? chars[0...len] + options[:omission] : text).to_s
139
+ end
140
+ end
141
+
142
+ ##
143
+ # Truncates words of a given text after a given :length if number of words in text is more than :length (defaults to 30).
144
+ # The last words will be replaced with the :omission (defaults to "…") for a total number of words not exceeding :length.
145
+ #
146
+ # @param [String] text
147
+ # The text to be truncated.
148
+ # @param [Hash] options
149
+ # Formatting options for the truncation.
150
+ # @option options [Fixnum] :length (30)
151
+ # The number of words before truncation occurs.
152
+ # @option options [String] :omission ("...")
153
+ # The characters that are placed after the truncated text.
154
+ #
155
+ # @return [String] The text truncated after the given number of words.
156
+ #
157
+ # @example
158
+ # truncate_words("Once upon a time in a world far far away", :length => 8) => "Once upon a time in a world far..."
159
+ #
160
+ # @api public
161
+ def truncate_words(text, options={})
162
+ options.reverse_merge!(:length => 30, :omission => "...")
163
+ if text
164
+ words = text.split()
165
+ words[0..(options[:length]-1)].join(' ') + (words.length > options[:length] ? options[:omission] : '')
166
+ end
167
+ end
168
+
169
+ ##
170
+ # Wraps the text into lines no longer than line_width width.
171
+ # This method breaks on the first whitespace character that does not exceed line_width (which is 80 by default).
172
+ #
173
+ # @overload word_wrap(text, options={})
174
+ # @param [String] text
175
+ # The text to be wrapped.
176
+ # @param [Hash] options
177
+ # Formatting options for the wrapping.
178
+ # @option options [Fixnum] :line_width (80)
179
+ # The line width before a wrap should occur.
180
+ #
181
+ # @return [String] The text with line wraps for lines longer then +line_width+
182
+ #
183
+ # @example
184
+ # word_wrap('Once upon a time', :line_width => 8) => "Once upon\na time"
185
+ #
186
+ # @api public
187
+ def word_wrap(text, *args)
188
+ options = args.extract_options!
189
+ unless args.blank?
190
+ options[:line_width] = args[0] || 80
191
+ end
192
+ options.reverse_merge!(:line_width => 80)
193
+
194
+ text.split("\n").map do |line|
195
+ line.length > options[:line_width] ? line.gsub(/(.{1,#{options[:line_width]}})(\s+|$)/, "\\1\n").strip : line
196
+ end * "\n"
197
+ end
198
+
199
+ ##
200
+ # Highlights one or more words everywhere in text by inserting it into a :highlighter string.
201
+ #
202
+ # The highlighter can be customized by passing :+highlighter+ as a single-quoted string
203
+ # with \1 where the phrase is to be inserted.
204
+ #
205
+ # @overload highlight(text, words, options={})
206
+ # @param [String] text
207
+ # The text that will be searched.
208
+ # @param [String] words
209
+ # The words to be highlighted in the +text+.
210
+ # @param [Hash] options
211
+ # Formatting options for the highlight.
212
+ # @option options [String] :highlighter ('<strong class="highlight">\1</strong>')
213
+ # The html pattern for wrapping the highlighted words.
214
+ #
215
+ # @return [String] The text with the words specified wrapped with highlighted spans.
216
+ #
217
+ # @example
218
+ # highlight('Lorem ipsum dolor sit amet', 'dolor')
219
+ # # => Lorem ipsum <strong class="highlight">dolor</strong> sit amet
220
+ #
221
+ # highlight('Lorem ipsum dolor sit amet', 'dolor', :highlighter => '<span class="custom">\1</span>')
222
+ # # => Lorem ipsum <strong class="custom">dolor</strong> sit amet
223
+ #
224
+ # @api public
225
+ def highlight(text, words, *args)
226
+ options = args.extract_options!
227
+ options.reverse_merge!(:highlighter => '<strong class="highlight">\1</strong>')
228
+
229
+ if text.blank? || words.blank?
230
+ text
231
+ else
232
+ match = Array(words).map { |p| Regexp.escape(p) }.join('|')
233
+ text.gsub(/(#{match})(?!(?:[^<]*?)(?:["'])[^<>]*>)/i, options[:highlighter])
234
+ end
235
+ end
236
+
237
+ ##
238
+ # Reports the approximate distance in time between two Time or Date objects or integers as seconds.
239
+ # Set +include_seconds+ to true if you want more detailed approximations when distance < 1 min, 29 secs
240
+ # Distances are reported based on the following table:
241
+ #
242
+ # 0 <-> 29 secs # => less than a minute
243
+ # 30 secs <-> 1 min, 29 secs # => 1 minute
244
+ # 1 min, 30 secs <-> 44 mins, 29 secs # => [2..44] minutes
245
+ # 44 mins, 30 secs <-> 89 mins, 29 secs # => about 1 hour
246
+ # 89 mins, 29 secs <-> 23 hrs, 59 mins, 29 secs # => about [2..24] hours
247
+ # 23 hrs, 59 mins, 29 secs <-> 47 hrs, 59 mins, 29 secs # => 1 day
248
+ # 47 hrs, 59 mins, 29 secs <-> 29 days, 23 hrs, 59 mins, 29 secs # => [2..29] days
249
+ # 29 days, 23 hrs, 59 mins, 30 secs <-> 59 days, 23 hrs, 59 mins, 29 secs # => about 1 month
250
+ # 59 days, 23 hrs, 59 mins, 30 secs <-> 1 yr minus 1 sec # => [2..12] months
251
+ # 1 yr <-> 1 yr, 3 months # => about 1 year
252
+ # 1 yr, 3 months <-> 1 yr, 9 months # => over 1 year
253
+ # 1 yr, 9 months <-> 2 yr minus 1 sec # => almost 2 years
254
+ # 2 yrs <-> max time or date # => (same rules as 1 yr)
255
+ #
256
+ # With +include_seconds+ = true and the difference < 1 minute 29 seconds:
257
+ # 0-4 secs # => less than 5 seconds
258
+ # 5-9 secs # => less than 10 seconds
259
+ # 10-19 secs # => less than 20 seconds
260
+ # 20-39 secs # => half a minute
261
+ # 40-59 secs # => less than a minute
262
+ # 60-89 secs # => 1 minute
263
+ #
264
+ # @param [Time] from_time
265
+ # The time to be compared against +to_time+ in order to approximate the distance.
266
+ # @param [Time] to_time
267
+ # The time to be compared against +from_time+ in order to approximate the distance.
268
+ # @param [Boolean] include_seconds
269
+ # Set true for more detailed approximations.
270
+ # @param [Hash] options
271
+ # Flags for the approximation.
272
+ # @option options [String] :locale
273
+ # The translation locale to be used for approximating the time.
274
+ #
275
+ # @return [String] The time formatted as a relative string.
276
+ #
277
+ # @example
278
+ # from_time = Time.now
279
+ # distance_of_time_in_words(from_time, from_time + 50.minutes) # => about 1 hour
280
+ # distance_of_time_in_words(from_time, 50.minutes.from_now) # => about 1 hour
281
+ # distance_of_time_in_words(from_time, from_time + 15.seconds) # => less than a minute
282
+ # distance_of_time_in_words(from_time, from_time + 15.seconds, true) # => less than 20 seconds
283
+ # distance_of_time_in_words(from_time, 3.years.from_now) # => about 3 years
284
+ # distance_of_time_in_words(from_time, from_time + 60.hours) # => about 3 days
285
+ # distance_of_time_in_words(from_time, from_time + 45.seconds, true) # => less than a minute
286
+ # distance_of_time_in_words(from_time, from_time - 45.seconds, true) # => less than a minute
287
+ # distance_of_time_in_words(from_time, 76.seconds.from_now) # => 1 minute
288
+ # distance_of_time_in_words(from_time, from_time + 1.year + 3.days) # => about 1 year
289
+ # distance_of_time_in_words(from_time, from_time + 3.years + 6.months) # => over 3 years
290
+ # distance_of_time_in_words(from_time, from_time + 4.years + 9.days + 30.minutes + 5.seconds) # => about 4 years
291
+ # to_time = Time.now + 6.years + 19.days
292
+ # distance_of_time_in_words(from_time, to_time, true) # => about 6 years
293
+ # distance_of_time_in_words(to_time, from_time, true) # => about 6 years
294
+ # distance_of_time_in_words(Time.now, Time.now) # => less than a minute
295
+ #
296
+ # @api public
297
+ def distance_of_time_in_words(from_time, to_time = 0, include_seconds = false, options = {})
298
+ from_time = from_time.to_time if from_time.respond_to?(:to_time)
299
+ to_time = to_time.to_time if to_time.respond_to?(:to_time)
300
+ distance_in_minutes = (((to_time.to_i - from_time.to_i).abs)/60).round
301
+ distance_in_seconds = ((to_time.to_i - from_time.to_i).abs).round
302
+
303
+ I18n.with_options :locale => options[:locale], :scope => :'datetime.distance_in_words' do |locale|
304
+ case distance_in_minutes
305
+ when 0..1
306
+ return distance_in_minutes == 0 ?
307
+ locale.t(:less_than_x_minutes, :count => 1) :
308
+ locale.t(:x_minutes, :count => distance_in_minutes) unless include_seconds
309
+
310
+ case distance_in_seconds
311
+ when 0..4 then locale.t :less_than_x_seconds, :count => 5
312
+ when 5..9 then locale.t :less_than_x_seconds, :count => 10
313
+ when 10..19 then locale.t :less_than_x_seconds, :count => 20
314
+ when 20..39 then locale.t :half_a_minute
315
+ when 40..59 then locale.t :less_than_x_minutes, :count => 1
316
+ else locale.t :x_minutes, :count => 1
317
+ end
318
+
319
+ when 2..44 then locale.t :x_minutes, :count => distance_in_minutes
320
+ when 45..89 then locale.t :about_x_hours, :count => 1
321
+ when 90..1439 then locale.t :about_x_hours, :count => (distance_in_minutes.to_f / 60.0).round
322
+ when 1440..2529 then locale.t :x_days, :count => 1
323
+ when 2530..43199 then locale.t :x_days, :count => (distance_in_minutes.to_f / 1440.0).round
324
+ when 43200..86399 then locale.t :about_x_months, :count => 1
325
+ when 86400..525599 then locale.t :x_months, :count => (distance_in_minutes.to_f / 43200.0).round
326
+ else
327
+ distance_in_years = distance_in_minutes / 525600
328
+ minute_offset_for_leap_year = (distance_in_years / 4) * 1440
329
+ remainder = ((distance_in_minutes - minute_offset_for_leap_year) % 525600)
330
+ if remainder < 131400
331
+ locale.t(:about_x_years, :count => distance_in_years)
332
+ elsif remainder < 394200
333
+ locale.t(:over_x_years, :count => distance_in_years)
334
+ else
335
+ locale.t(:almost_x_years, :count => distance_in_years + 1)
336
+ end
337
+ end
338
+ end
339
+ end
340
+
341
+ ##
342
+ # Like distance_of_time_in_words, but where <tt>to_time</tt> is fixed to <tt>Time.now</tt>.
343
+ #
344
+ # @param [Time] from_time
345
+ # The time to be compared against now in order to approximate the distance.
346
+ # @param [Boolean] include_seconds
347
+ # Set true for more detailed approximations.
348
+ #
349
+ # @return [String] The time formatted as a relative string.
350
+ #
351
+ # @example
352
+ # time_ago_in_words(3.minutes.from_now) # => 3 minutes
353
+ # time_ago_in_words(Time.now - 15.hours) # => 15 hours
354
+ # time_ago_in_words(Time.now) # => less than a minute
355
+ #
356
+ # @api public
357
+ def time_ago_in_words(from_time, include_seconds = false)
358
+ distance_of_time_in_words(from_time, Time.now, include_seconds)
359
+ end
360
+
361
+ ##
362
+ # Used in xxxx.js.erb files to escape html so that it can be passed to javascript from Padrino
363
+ #
364
+ # @param [String] html
365
+ # The html content to be escaped into javascript compatible format.
366
+ #
367
+ # @return [String] The html escaped for javascript passing.
368
+ #
369
+ # @example
370
+ # js_escape_html("<h1>Hey</h1>")
371
+ #
372
+ # @api public
373
+ def js_escape_html(html_content)
374
+ return '' unless html_content
375
+ javascript_mapping = { '\\' => '\\\\', '</' => '<\/', "\r\n" => '\n', "\n" => '\n', "\r" => '\n', '"' => '\\"', "'" => "\\'" }
376
+ html_content.gsub(/(\\|<\/|\r\n|[\n\r"'])/) { javascript_mapping[$1] }
377
+ end
378
+ alias :escape_javascript :js_escape_html
379
+ end # FormatHelpers
380
+ end # Helpers
381
+ end # Padrino
@@ -0,0 +1,103 @@
1
+ cs:
2
+ number:
3
+ # Used in number_with_delimiter()
4
+ # These are also the defaults for 'currency', 'percentage', 'precision', and 'human'
5
+ format:
6
+ # Sets the separator between the units, for more precision (e.g. 1.0 / 2.0 == 0.5)
7
+ separator: ","
8
+ # Delimets thousands (e.g. 1,000,000 is a million) (always in groups of three)
9
+ delimiter: " "
10
+ # Number of decimals, behind the separator (the number 1 with a precision of 2 gives: 1.00)
11
+ precision: 3
12
+
13
+ # Used in number_to_currency()
14
+ currency:
15
+ format:
16
+ # Where is the currency sign? %u is the currency unit, %n the number (default: $5.00)
17
+ format: "%n %u"
18
+ unit: "Kč"
19
+ # These three are to override number.format and are optional
20
+ separator: ","
21
+ delimiter: " "
22
+ precision: 2
23
+
24
+ # Used in number_to_percentage()
25
+ percentage:
26
+ format:
27
+ # These three are to override number.format and are optional
28
+ # separator:
29
+ delimiter: ""
30
+ # precision:
31
+
32
+ # Used in number_to_precision()
33
+ precision:
34
+ format:
35
+ # These three are to override number.format and are optional
36
+ # separator:
37
+ delimiter: ""
38
+ # precision:
39
+
40
+ # Used in number_to_human_size()
41
+ human:
42
+ format:
43
+ # These three are to override number.format and are optional
44
+ # separator:
45
+ delimiter: ""
46
+ precision: 1
47
+ storage_units:
48
+ # Storage units output formatting.
49
+ # %u is the storage unit, %n is the number (default: 2 MB)
50
+ format: "%n %u"
51
+ units:
52
+ byte:
53
+ one: "Byte"
54
+ other: "Bytes"
55
+ kb: "KB"
56
+ mb: "MB"
57
+ gb: "GB"
58
+ tb: "TB"
59
+
60
+ # Used in distance_of_time_in_words(), distance_of_time_in_words_to_now(), time_ago_in_words()
61
+ datetime:
62
+ distance_in_words:
63
+ half_a_minute: "půl minutou"
64
+ less_than_x_seconds:
65
+ one: "asi před sekundou"
66
+ other: "asi před %{count} sekundami"
67
+ x_seconds:
68
+ one: "sekundou"
69
+ other: "%{count} sekundami"
70
+ less_than_x_minutes:
71
+ one: "před necelou minutou"
72
+ other: "před ani ne %{count} minutami"
73
+ x_minutes:
74
+ one: "minutou"
75
+ other: "%{count} minutami"
76
+ about_x_hours:
77
+ one: "asi hodinou"
78
+ other: "asi %{count} hodinami"
79
+ x_days:
80
+ one: "24 hodinami"
81
+ other: "%{count} dny"
82
+ about_x_months:
83
+ one: "asi měsícem"
84
+ other: "asi %{count} měsíci"
85
+ x_months:
86
+ one: "měsícem"
87
+ other: "%{count} měsíci"
88
+ about_x_years:
89
+ one: "asi rokem"
90
+ other: "asi %{count} roky"
91
+ over_x_years:
92
+ one: "více než před rokem"
93
+ other: "více než %{count} roky"
94
+ almost_x_years:
95
+ one: "skoro rokem"
96
+ other: "almost %{count} roků"
97
+ models:
98
+ errors:
99
+ template:
100
+ header:
101
+ one: "Při ukládání %{model} došlo k chybě a nebylo jej možné uložit"
102
+ other: "Při ukládání %{model} došlo ke %{count} chybám a nebylo možné jej uložit"
103
+ body: "Následující pole obsahují chybně vyplněné údaje:"
@@ -0,0 +1,91 @@
1
+ da:
2
+ number:
3
+ format:
4
+ separator: ","
5
+ delimiter: "."
6
+ precision: 3
7
+ currency:
8
+ format:
9
+ format: "%u %n"
10
+ unit: "DKK"
11
+ separator: ","
12
+ delimiter: "."
13
+ precision: 2
14
+ precision:
15
+ format:
16
+ # separator:
17
+ delimiter: ""
18
+ # precision:
19
+ human:
20
+ format:
21
+ # separator:
22
+ delimiter: ""
23
+ precision: 1
24
+ storage_units:
25
+ # Storage units output formatting.
26
+ # %u is the storage unit, %n is the number (default: 2 MB)
27
+ format: "%n %u"
28
+ units:
29
+ byte:
30
+ one: "Byte"
31
+ other: "Bytes"
32
+ kb: "KB"
33
+ mb: "MB"
34
+ gb: "GB"
35
+ tb: "TB"
36
+ percentage:
37
+ format:
38
+ # separator:
39
+ delimiter: ""
40
+ # precision:
41
+
42
+ datetime:
43
+ distance_in_words:
44
+ half_a_minute: "et halvt minut"
45
+ less_than_x_seconds:
46
+ one: "mindre end et sekund"
47
+ other: "mindre end %{count} sekunder"
48
+ x_seconds:
49
+ one: "et sekund"
50
+ other: "%{count} sekunder"
51
+ less_than_x_minutes:
52
+ one: "mindre end et minut"
53
+ other: "mindre end %{count} minutter"
54
+ x_minutes:
55
+ one: "et minut"
56
+ other: "%{count} minutter"
57
+ about_x_hours:
58
+ one: "cirka en time"
59
+ other: "cirka %{count} timer"
60
+ x_days:
61
+ one: "en dag"
62
+ other: "%{count} dage"
63
+ about_x_months:
64
+ one: "cirka en måned"
65
+ other: "cirka %{count} måneder"
66
+ x_months:
67
+ one: "en måned"
68
+ other: "%{count} måneder"
69
+ about_x_years:
70
+ one: "cirka et år"
71
+ other: "cirka %{count} år"
72
+ over_x_years:
73
+ one: "mere end et år"
74
+ other: "mere end %{count} år"
75
+ almost_x_years:
76
+ one: "næsten et år"
77
+ other: "næsten %{count} years"
78
+ prompts:
79
+ second: "Sekund"
80
+ minute: "Minut"
81
+ hour: "Time"
82
+ day: "Dag"
83
+ month: "Måned"
84
+ year: "År"
85
+ models:
86
+ errors:
87
+ template:
88
+ header:
89
+ one: "En fejl forhindrede %{model} i at blive gemt"
90
+ other: "%{count} fejl forhindrede denne %{model} i at blive gemt"
91
+ body: "Der var problemer med følgende felter:"
@@ -0,0 +1,81 @@
1
+ de:
2
+ number:
3
+ format:
4
+ precision: 2
5
+ separator: ','
6
+ delimiter: '.'
7
+ currency:
8
+ format:
9
+ unit: '€'
10
+ format: '%n%u'
11
+ separator: ","
12
+ delimiter: "."
13
+ precision: 2
14
+ percentage:
15
+ format:
16
+ delimiter: ""
17
+ precision:
18
+ format:
19
+ delimiter: ""
20
+ human:
21
+ format:
22
+ delimiter: ""
23
+ precision: 1
24
+ storage_units:
25
+ # Storage units output formatting.
26
+ # %u is the storage unit, %n is the number (default: 2 MB)
27
+ format: "%n %u"
28
+ units:
29
+ byte:
30
+ one: "Byte"
31
+ other: "Bytes"
32
+ kb: "KB"
33
+ mb: "MB"
34
+ gb: "GB"
35
+ tb: "TB"
36
+
37
+ datetime:
38
+ distance_in_words:
39
+ half_a_minute: 'eine halbe Minute'
40
+ less_than_x_seconds:
41
+ zero: 'weniger als 1 Sekunde'
42
+ one: 'weniger als 1 Sekunde'
43
+ other: 'weniger als %{count} Sekunden'
44
+ x_seconds:
45
+ one: '1 Sekunde'
46
+ other: '%{count} Sekunden'
47
+ less_than_x_minutes:
48
+ zero: 'weniger als 1 Minute'
49
+ one: 'weniger als 1 Minute'
50
+ other: 'weniger als %{count} Minuten'
51
+ x_minutes:
52
+ one: '1 Minute'
53
+ other: '%{count} Minuten'
54
+ about_x_hours:
55
+ one: 'etwa 1 Stunde'
56
+ other: 'etwa %{count} Stunden'
57
+ x_days:
58
+ one: '1 Tag'
59
+ other: '%{count} Tage'
60
+ about_x_months:
61
+ one: 'etwa 1 Monat'
62
+ other: 'etwa %{count} Monate'
63
+ x_months:
64
+ one: '1 Monat'
65
+ other: '%{count} Monate'
66
+ about_x_years:
67
+ one: 'etwa 1 Jahr'
68
+ other: 'etwa %{count} Jahre'
69
+ over_x_years:
70
+ one: 'mehr als 1 Jahr'
71
+ other: 'mehr als %{count} Jahre'
72
+ almost_x_years:
73
+ one: 'fast ein Jahr'
74
+ other: 'fast %{count} Jahre'
75
+ models:
76
+ errors:
77
+ template:
78
+ header:
79
+ one: "1 Fehler verhindert, dass Objekt %{model} gesichert werden kann"
80
+ other: "%{count} Fehler verhindern, dass Objekt %{model} gesichert werden kann"
81
+ body: "Es existieren Probleme mit den folgenden Feldern:"