locomotivecms_steam 0.1.2.pre.beta → 1.0.0.pre.alpha

Sign up to get free protection for your applications and to get access to all the features.
Files changed (355) hide show
  1. checksums.yaml +4 -4
  2. data/.gitignore +3 -0
  3. data/.travis.yml +8 -1
  4. data/Gemfile +17 -8
  5. data/Gemfile.lock +160 -113
  6. data/LICENSE +1 -1
  7. data/README.md +36 -15
  8. data/Rakefile +27 -1
  9. data/bin/steam.rb +97 -0
  10. data/config/locales/en.yml +2 -1
  11. data/config/locales/fr.yml +2 -1
  12. data/lib/locomotive/steam.rb +28 -19
  13. data/lib/locomotive/steam/adapters/concerns/key.rb +15 -0
  14. data/lib/locomotive/steam/adapters/filesystem.rb +124 -0
  15. data/lib/locomotive/steam/adapters/filesystem/sanitizer.rb +54 -0
  16. data/lib/locomotive/steam/adapters/filesystem/sanitizers/content_entry.rb +86 -0
  17. data/lib/locomotive/steam/adapters/filesystem/sanitizers/content_type.rb +21 -0
  18. data/lib/locomotive/steam/adapters/filesystem/sanitizers/page.rb +160 -0
  19. data/lib/locomotive/steam/adapters/filesystem/sanitizers/simple.rb +15 -0
  20. data/lib/locomotive/steam/adapters/filesystem/sanitizers/snippet.rb +33 -0
  21. data/lib/locomotive/steam/adapters/filesystem/simple_cache_store.rb +38 -0
  22. data/lib/locomotive/steam/adapters/filesystem/yaml_loader.rb +47 -0
  23. data/lib/locomotive/steam/adapters/filesystem/yaml_loaders/content_entry.rb +87 -0
  24. data/lib/locomotive/steam/adapters/filesystem/yaml_loaders/content_type.rb +96 -0
  25. data/lib/locomotive/steam/adapters/filesystem/yaml_loaders/page.rb +145 -0
  26. data/lib/locomotive/steam/adapters/filesystem/yaml_loaders/site.rb +25 -0
  27. data/lib/locomotive/steam/adapters/filesystem/yaml_loaders/snippet.rb +66 -0
  28. data/lib/locomotive/steam/adapters/filesystem/yaml_loaders/theme_asset.rb +21 -0
  29. data/lib/locomotive/steam/adapters/filesystem/yaml_loaders/translation.rb +72 -0
  30. data/lib/locomotive/steam/adapters/memory.rb +55 -0
  31. data/lib/locomotive/steam/adapters/memory/condition.rb +103 -0
  32. data/lib/locomotive/steam/adapters/memory/dataset.rb +77 -0
  33. data/lib/locomotive/steam/adapters/memory/order.rb +60 -0
  34. data/lib/locomotive/steam/adapters/memory/query.rb +116 -0
  35. data/lib/locomotive/steam/adapters/mongodb.rb +83 -0
  36. data/lib/locomotive/steam/adapters/mongodb/dataset.rb +20 -0
  37. data/lib/locomotive/steam/adapters/mongodb/origin.rb +3 -0
  38. data/lib/locomotive/steam/adapters/mongodb/query.rb +82 -0
  39. data/lib/locomotive/steam/configuration.rb +106 -2
  40. data/lib/locomotive/steam/core_ext.rb +2 -1
  41. data/lib/locomotive/steam/core_ext/hash.rb +31 -19
  42. data/lib/locomotive/steam/core_ext/kernel.rb +14 -0
  43. data/lib/locomotive/steam/core_ext/string.rb +35 -6
  44. data/lib/locomotive/steam/decorators/i18n_decorator.rb +99 -0
  45. data/lib/locomotive/steam/decorators/template_decorator.rb +37 -0
  46. data/lib/locomotive/steam/entities/content_entry.rb +151 -0
  47. data/lib/locomotive/steam/entities/content_type.rb +44 -6
  48. data/lib/locomotive/steam/entities/content_type_field.rb +71 -0
  49. data/lib/locomotive/steam/entities/editable_element.rb +21 -0
  50. data/lib/locomotive/steam/entities/page.rb +48 -127
  51. data/lib/locomotive/steam/entities/site.rb +36 -27
  52. data/lib/locomotive/steam/entities/snippet.rb +20 -0
  53. data/lib/locomotive/steam/entities/theme_asset.rb +9 -0
  54. data/lib/locomotive/steam/entities/translation.rb +15 -0
  55. data/lib/locomotive/steam/initializers.rb +0 -4
  56. data/lib/locomotive/steam/initializers/dragonfly.rb +51 -11
  57. data/lib/locomotive/steam/initializers/i18n.rb +6 -3
  58. data/lib/locomotive/steam/initializers/sprockets.rb +4 -1
  59. data/lib/locomotive/steam/liquid.rb +4 -7
  60. data/lib/locomotive/steam/liquid/drops/base.rb +0 -1
  61. data/lib/locomotive/steam/liquid/drops/content_entry.rb +37 -16
  62. data/lib/locomotive/steam/liquid/drops/content_entry_collection.rb +77 -0
  63. data/lib/locomotive/steam/liquid/drops/content_types.rb +5 -102
  64. data/lib/locomotive/steam/liquid/drops/current_user.rb +23 -0
  65. data/lib/locomotive/steam/liquid/drops/i18n_base.rb +39 -0
  66. data/lib/locomotive/steam/liquid/drops/page.rb +77 -11
  67. data/lib/locomotive/steam/liquid/drops/session_proxy.rb +1 -1
  68. data/lib/locomotive/steam/liquid/drops/site.rb +14 -8
  69. data/lib/locomotive/steam/liquid/drops/upload_file.rb +23 -0
  70. data/lib/locomotive/steam/liquid/errors.rb +3 -9
  71. data/lib/locomotive/steam/liquid/filters/base.rb +62 -0
  72. data/lib/locomotive/steam/liquid/filters/date.rb +85 -61
  73. data/lib/locomotive/steam/liquid/filters/html.rb +30 -115
  74. data/lib/locomotive/steam/liquid/filters/misc.rb +6 -5
  75. data/lib/locomotive/steam/liquid/filters/pagination.rb +55 -0
  76. data/lib/locomotive/steam/liquid/filters/resize.rb +2 -3
  77. data/lib/locomotive/steam/liquid/filters/text.rb +15 -15
  78. data/lib/locomotive/steam/liquid/filters/translate.rb +5 -14
  79. data/lib/locomotive/steam/liquid/patches.rb +29 -23
  80. data/lib/locomotive/steam/liquid/tags/concerns/i18n_page.rb +36 -0
  81. data/lib/locomotive/steam/liquid/tags/concerns/path.rb +114 -0
  82. data/lib/locomotive/steam/liquid/tags/consume.rb +39 -43
  83. data/lib/locomotive/steam/liquid/tags/csrf.rb +21 -12
  84. data/lib/locomotive/steam/liquid/tags/editable.rb +1 -3
  85. data/lib/locomotive/steam/liquid/tags/editable/base.rb +54 -15
  86. data/lib/locomotive/steam/liquid/tags/editable/control.rb +17 -4
  87. data/lib/locomotive/steam/liquid/tags/editable/file.rb +34 -2
  88. data/lib/locomotive/steam/liquid/tags/editable/text.rb +54 -2
  89. data/lib/locomotive/steam/liquid/tags/extends.rb +45 -8
  90. data/lib/locomotive/steam/liquid/tags/fetch_page.rb +38 -0
  91. data/lib/locomotive/steam/liquid/tags/google_analytics.rb +25 -12
  92. data/lib/locomotive/steam/liquid/tags/hybrid.rb +24 -12
  93. data/lib/locomotive/steam/liquid/tags/inherited_block.rb +39 -0
  94. data/lib/locomotive/steam/liquid/tags/inline_editor.rb +14 -4
  95. data/lib/locomotive/steam/liquid/tags/link_to.rb +16 -27
  96. data/lib/locomotive/steam/liquid/tags/locale_switcher.rb +45 -56
  97. data/lib/locomotive/steam/liquid/tags/model_form.rb +72 -0
  98. data/lib/locomotive/steam/liquid/tags/nav.rb +65 -57
  99. data/lib/locomotive/steam/liquid/tags/paginate.rb +79 -47
  100. data/lib/locomotive/steam/liquid/tags/path_to.rb +8 -20
  101. data/lib/locomotive/steam/liquid/tags/seo.rb +8 -8
  102. data/lib/locomotive/steam/liquid/tags/session_assign.rb +6 -8
  103. data/lib/locomotive/steam/liquid/tags/snippet.rb +26 -42
  104. data/lib/locomotive/steam/liquid/tags/with_scope.rb +44 -26
  105. data/lib/locomotive/steam/middlewares.rb +7 -13
  106. data/lib/locomotive/steam/middlewares/default_env.rb +25 -0
  107. data/lib/locomotive/steam/middlewares/dynamic_assets.rb +34 -17
  108. data/lib/locomotive/steam/middlewares/entry_submission.rb +117 -79
  109. data/lib/locomotive/steam/middlewares/favicon.rb +5 -2
  110. data/lib/locomotive/steam/middlewares/helpers.rb +44 -0
  111. data/lib/locomotive/steam/middlewares/locale.rb +25 -17
  112. data/lib/locomotive/steam/middlewares/locale_redirection.rb +62 -0
  113. data/lib/locomotive/steam/middlewares/logging.rb +7 -3
  114. data/lib/locomotive/steam/middlewares/page.rb +17 -48
  115. data/lib/locomotive/steam/middlewares/path.rb +5 -8
  116. data/lib/locomotive/steam/middlewares/renderer.rb +65 -106
  117. data/lib/locomotive/steam/middlewares/robots.rb +20 -0
  118. data/lib/locomotive/steam/middlewares/site.rb +42 -0
  119. data/lib/locomotive/steam/middlewares/sitemap.rb +94 -0
  120. data/lib/locomotive/steam/middlewares/stack_proxy.rb +46 -0
  121. data/lib/locomotive/steam/middlewares/templatized_page.rb +40 -14
  122. data/lib/locomotive/steam/middlewares/threadsafe.rb +65 -0
  123. data/lib/locomotive/steam/middlewares/timezone.rb +10 -6
  124. data/lib/locomotive/steam/models.rb +12 -0
  125. data/lib/locomotive/steam/models/associations/belongs_to.rb +18 -0
  126. data/lib/locomotive/steam/models/associations/embedded.rb +43 -0
  127. data/lib/locomotive/steam/models/associations/has_many.rb +22 -0
  128. data/lib/locomotive/steam/models/associations/many_to_many.rb +22 -0
  129. data/lib/locomotive/steam/models/associations/referenced.rb +48 -0
  130. data/lib/locomotive/steam/models/concerns/validation.rb +58 -0
  131. data/lib/locomotive/steam/models/entity.rb +40 -0
  132. data/lib/locomotive/steam/models/i18n_field.rb +42 -0
  133. data/lib/locomotive/steam/models/mapper.rb +119 -0
  134. data/lib/locomotive/steam/models/pager.rb +53 -0
  135. data/lib/locomotive/steam/models/repository.rb +101 -0
  136. data/lib/locomotive/steam/models/scope.rb +31 -0
  137. data/lib/locomotive/steam/repositories.rb +51 -0
  138. data/lib/locomotive/steam/repositories/content_entry_repository.rb +183 -0
  139. data/lib/locomotive/steam/repositories/content_type_field_repository.rb +50 -0
  140. data/lib/locomotive/steam/repositories/content_type_field_select_option_repository.rb +23 -0
  141. data/lib/locomotive/steam/repositories/content_type_repository.rb +38 -0
  142. data/lib/locomotive/steam/repositories/editable_element_repository.rb +20 -0
  143. data/lib/locomotive/steam/repositories/page_repository.rb +86 -0
  144. data/lib/locomotive/steam/repositories/site_repository.rb +29 -0
  145. data/lib/locomotive/steam/repositories/snippet_repository.rb +19 -0
  146. data/lib/locomotive/steam/repositories/theme_asset_repository.rb +24 -0
  147. data/lib/locomotive/steam/repositories/translation_repository.rb +17 -0
  148. data/lib/locomotive/steam/server.rb +61 -40
  149. data/lib/locomotive/steam/services.rb +120 -1
  150. data/lib/locomotive/steam/services/asset_host_service.rb +51 -0
  151. data/lib/locomotive/steam/services/concerns/decorator.rb +35 -0
  152. data/lib/locomotive/steam/services/csrf_protection_service.rb +13 -0
  153. data/lib/locomotive/steam/services/editable_element_service.rb +19 -0
  154. data/lib/locomotive/steam/services/entry_submission_service.rb +91 -0
  155. data/lib/locomotive/steam/services/external_api_service.rb +55 -0
  156. data/lib/locomotive/steam/services/image_resizer_service.rb +49 -0
  157. data/lib/locomotive/steam/services/liquid_parser_service.rb +23 -0
  158. data/lib/locomotive/steam/services/markdown_service.rb +17 -0
  159. data/lib/locomotive/steam/services/no_cache_service.rb +17 -0
  160. data/lib/locomotive/steam/services/page_finder_service.rb +44 -0
  161. data/lib/locomotive/steam/services/parent_finder_service.rb +23 -0
  162. data/lib/locomotive/steam/services/site_finder_service.rb +13 -0
  163. data/lib/locomotive/steam/services/snippet_finder_service.rb +17 -0
  164. data/lib/locomotive/steam/services/textile_service.rb +17 -0
  165. data/lib/locomotive/steam/services/theme_asset_url_service.rb +43 -0
  166. data/lib/locomotive/steam/services/translator_service.rb +34 -0
  167. data/lib/locomotive/steam/services/url_builder_service.rb +40 -0
  168. data/lib/locomotive/steam/version.rb +1 -1
  169. data/locomotivecms_steam.gemspec +34 -28
  170. data/script/ci/before_build.sh +4 -0
  171. data/spec/fixtures/default/app/content_types/bands.yml +3 -1
  172. data/spec/fixtures/default/app/content_types/events.yml +2 -2
  173. data/spec/fixtures/default/app/views/pages/about_us.liquid.haml +2 -1
  174. data/spec/fixtures/default/app/views/pages/archives.liquid.haml +6 -0
  175. data/spec/fixtures/default/app/views/pages/basic.liquid.haml +1 -0
  176. data/spec/fixtures/default/app/views/pages/contest.liquid.haml +2 -1
  177. data/spec/fixtures/default/app/views/pages/events.fr.liquid +4 -0
  178. data/spec/fixtures/default/app/views/pages/events.liquid.haml +23 -1
  179. data/spec/fixtures/default/app/views/pages/filtered.liquid.haml +16 -5
  180. data/spec/fixtures/default/app/views/pages/grunge_bands.liquid.haml +2 -1
  181. data/spec/fixtures/default/app/views/pages/index.liquid.haml +12 -11
  182. data/spec/fixtures/default/app/views/pages/music.liquid.haml +1 -1
  183. data/spec/fixtures/default/app/views/pages/songs.liquid +6 -0
  184. data/spec/fixtures/default/app/views/pages/songs/song-number-1.liquid.haml +5 -0
  185. data/spec/fixtures/default/app/views/pages/store.liquid +2 -1
  186. data/spec/fixtures/default/app/views/pages/tags.liquid +6 -0
  187. data/spec/fixtures/default/app/views/pages/unlisted_pages.liquid.haml +2 -1
  188. data/spec/fixtures/default/app/views/snippets/song.fr.liquid.haml +1 -1
  189. data/spec/fixtures/default/config/deploy.yml +2 -2
  190. data/spec/fixtures/default/config/site.yml +7 -1
  191. data/spec/fixtures/default/data/bands.yml +3 -0
  192. data/spec/fixtures/mongodb/locomotive_accounts.bson +0 -0
  193. data/spec/fixtures/mongodb/locomotive_accounts.metadata.json +1 -0
  194. data/spec/fixtures/mongodb/locomotive_content_assets.bson +0 -0
  195. data/spec/fixtures/mongodb/locomotive_content_assets.metadata.json +1 -0
  196. data/spec/fixtures/mongodb/locomotive_content_entries.bson +0 -0
  197. data/spec/fixtures/mongodb/locomotive_content_entries.metadata.json +1 -0
  198. data/spec/fixtures/mongodb/locomotive_content_types.bson +0 -0
  199. data/spec/fixtures/mongodb/locomotive_content_types.metadata.json +1 -0
  200. data/spec/fixtures/mongodb/locomotive_pages.bson +0 -0
  201. data/spec/fixtures/mongodb/locomotive_pages.metadata.json +1 -0
  202. data/spec/fixtures/mongodb/locomotive_sites.bson +0 -0
  203. data/spec/fixtures/mongodb/locomotive_sites.metadata.json +1 -0
  204. data/spec/fixtures/mongodb/locomotive_snippets.bson +0 -0
  205. data/spec/fixtures/mongodb/locomotive_snippets.metadata.json +1 -0
  206. data/spec/fixtures/mongodb/locomotive_theme_assets.bson +0 -0
  207. data/spec/fixtures/mongodb/locomotive_theme_assets.metadata.json +1 -0
  208. data/spec/fixtures/mongodb/locomotive_translations.bson +0 -0
  209. data/spec/fixtures/mongodb/locomotive_translations.metadata.json +1 -0
  210. data/spec/fixtures/mongodb/sessions.bson +0 -0
  211. data/spec/fixtures/mongodb/sessions.metadata.json +1 -0
  212. data/spec/fixtures/mongodb/system.indexes.bson +0 -0
  213. data/spec/integration/integration_helper.rb +2 -2
  214. data/spec/integration/liquid/tags/paginate_spec.rb +79 -0
  215. data/spec/integration/repositories/content_entry_repository_spec.rb +94 -0
  216. data/spec/integration/repositories/content_type_repository_spec.rb +69 -0
  217. data/spec/integration/repositories/page_repository_spec.rb +105 -0
  218. data/spec/integration/repositories/site_repository_spec.rb +45 -0
  219. data/spec/integration/repositories/snippet_repository_spec.rb +50 -0
  220. data/spec/integration/repositories/theme_asset_repository_spec.rb +48 -0
  221. data/spec/integration/repositories/translation_repository_spec.rb +50 -0
  222. data/spec/integration/server/assets_spec.rb +60 -0
  223. data/spec/integration/server/basic_spec.rb +100 -100
  224. data/spec/integration/server/contact_form_spec.rb +96 -25
  225. data/spec/integration/server/liquid_spec.rb +19 -41
  226. data/spec/integration/server/nav_spec.rb +49 -0
  227. data/spec/integration/server/session_spec.rb +33 -0
  228. data/spec/integration/server/sitemap_spec.rb +34 -0
  229. data/spec/integration/server/with_scope_spec.rb +28 -2
  230. data/spec/integration/services/external_api_service_spec.rb +20 -0
  231. data/spec/locales/locales_spec.rb +7 -7
  232. data/spec/spec_helper.rb +27 -13
  233. data/spec/support.rb +5 -1
  234. data/spec/support/cache_store.rb +3 -0
  235. data/spec/support/helpers.rb +20 -23
  236. data/spec/support/liquid.rb +29 -0
  237. data/spec/support/pry.rb +4 -0
  238. data/spec/support/time.rb +3 -0
  239. data/spec/unit/adapters/filesystem/yaml_loaders/content_entry_spec.rb +50 -0
  240. data/spec/unit/adapters/filesystem/yaml_loaders/content_type_spec.rb +25 -0
  241. data/spec/unit/adapters/filesystem/yaml_loaders/page_spec.rb +25 -0
  242. data/spec/unit/adapters/filesystem/yaml_loaders/site_spec.rb +19 -0
  243. data/spec/unit/adapters/filesystem/yaml_loaders/snippet_spec.rb +26 -0
  244. data/spec/unit/adapters/filesystem/yaml_loaders/translation_spec.rb +25 -0
  245. data/spec/unit/adapters/filesystem_adapter_spec.rb +53 -0
  246. data/spec/unit/adapters/memory/condition_spec.rb +125 -0
  247. data/spec/unit/adapters/memory/dataset_spec.rb +73 -0
  248. data/spec/unit/adapters/memory/order_spec.rb +67 -0
  249. data/spec/unit/adapters/memory/query_spec.rb +85 -0
  250. data/spec/unit/adapters/memory_adapter_spec.rb +36 -0
  251. data/spec/unit/adapters/mongodb/query_spec.rb +68 -0
  252. data/spec/unit/adapters/mongodb_adapter_spec.rb +17 -0
  253. data/spec/unit/configuration_spec.rb +29 -0
  254. data/spec/unit/core_ext/string_spec.rb +44 -0
  255. data/spec/unit/decorators/i18n_decorator_spec.rb +80 -0
  256. data/spec/unit/entities/content_entry_spec.rb +159 -0
  257. data/spec/unit/entities/content_type_field_spec.rb +67 -0
  258. data/spec/unit/entities/content_type_spec.rb +59 -0
  259. data/spec/unit/entities/page_spec.rb +40 -34
  260. data/spec/unit/entities/site_spec.rb +56 -5
  261. data/spec/unit/initializers/dragonfly_spec.rb +31 -0
  262. data/spec/unit/liquid/drops/content_entry_collection_spec.rb +81 -0
  263. data/spec/unit/liquid/drops/content_entry_spec.rb +99 -0
  264. data/spec/unit/liquid/drops/content_types_spec.rb +25 -0
  265. data/spec/unit/liquid/drops/current_user_spec.rb +45 -0
  266. data/spec/unit/liquid/drops/page_spec.rb +134 -0
  267. data/spec/unit/liquid/drops/session_proxy_spec.rb +13 -0
  268. data/spec/unit/liquid/drops/site_spec.rb +49 -0
  269. data/spec/unit/liquid/filters/date_spec.rb +160 -0
  270. data/spec/unit/liquid/filters/html_spec.rb +263 -0
  271. data/spec/unit/liquid/filters/misc_spec.rb +108 -0
  272. data/spec/unit/liquid/filters/pagination_spec.rb +42 -0
  273. data/spec/unit/liquid/filters/resize_spec.rb +36 -0
  274. data/spec/unit/liquid/filters/text_spec.rb +56 -0
  275. data/spec/unit/liquid/filters/translate_spec.rb +33 -0
  276. data/spec/unit/liquid/patches_spec.rb +50 -0
  277. data/spec/unit/liquid/tags/consume_spec.rb +87 -0
  278. data/spec/unit/liquid/tags/csrf_spec.rb +47 -0
  279. data/spec/unit/liquid/tags/editable/control_spec.rb +109 -0
  280. data/spec/unit/liquid/tags/editable/file_spec.rb +116 -0
  281. data/spec/unit/liquid/tags/editable/text_spec.rb +139 -0
  282. data/spec/unit/liquid/tags/extends_spec.rb +38 -0
  283. data/spec/unit/liquid/tags/fetch_page_spec.rb +39 -0
  284. data/spec/unit/liquid/tags/google_analytics_spec.rb +16 -0
  285. data/spec/unit/liquid/tags/inherited_block_spec.rb +33 -0
  286. data/spec/unit/liquid/tags/link_to_spec.rb +112 -0
  287. data/spec/unit/liquid/tags/locale_switcher_spec.rb +58 -0
  288. data/spec/unit/liquid/tags/model_form_spec.rb +35 -0
  289. data/spec/unit/liquid/tags/nav_spec.rb +184 -111
  290. data/spec/unit/liquid/tags/paginate_spec.rb +131 -0
  291. data/spec/unit/liquid/tags/path_to_spec.rb +100 -0
  292. data/spec/unit/liquid/tags/seo_spec.rb +85 -0
  293. data/spec/unit/liquid/tags/session_assign_spec.rb +51 -0
  294. data/spec/unit/liquid/tags/snippet_spec.rb +42 -0
  295. data/spec/unit/liquid/tags/with_scope_spec.rb +66 -0
  296. data/spec/unit/middlewares/dynamic_assets_spec.rb +25 -0
  297. data/spec/unit/middlewares/locale_redirection_spec.rb +105 -0
  298. data/spec/unit/middlewares/renderer_spec.rb +29 -0
  299. data/spec/unit/middlewares/stack_proxy_spec.rb +67 -0
  300. data/spec/unit/models/mapper_spec.rb +75 -0
  301. data/spec/unit/models/pager_spec.rb +82 -0
  302. data/spec/unit/models/repository_spec.rb +46 -0
  303. data/spec/unit/models/scope_spec.rb +27 -0
  304. data/spec/unit/repositories/content_entry_repository_spec.rb +347 -0
  305. data/spec/unit/repositories/content_type_repository_spec.rb +126 -0
  306. data/spec/unit/repositories/page_repository_spec.rb +365 -0
  307. data/spec/unit/repositories/site_repository_spec.rb +41 -0
  308. data/spec/unit/repositories/snippet_repository_spec.rb +37 -0
  309. data/spec/unit/repositories/theme_asset_repository_spec.rb +35 -0
  310. data/spec/unit/repositories/translation_repository_spec.rb +34 -0
  311. data/spec/unit/services/asset_host_service_spec.rb +79 -0
  312. data/spec/unit/services/entry_submission_service_spec.rb +143 -0
  313. data/spec/unit/services/external_api_service_spec.rb +80 -0
  314. data/spec/unit/services/image_resizer_service_spec.rb +75 -0
  315. data/spec/unit/services/markdown_service_spec.rb +36 -0
  316. data/spec/unit/services/parent_finder_service_spec.rb +41 -0
  317. data/spec/unit/services/textile_service_spec.rb +34 -0
  318. data/spec/unit/services/translator_service_spec.rb +65 -0
  319. data/spec/unit/services/url_builder_service_spec.rb +48 -0
  320. data/spec/unit/services_spec.rb +25 -0
  321. metadata +462 -119
  322. data/example/server.rb +0 -31
  323. data/lib/locomotive/steam/decorators.rb +0 -1
  324. data/lib/locomotive/steam/decorators/page_decorator.rb +0 -50
  325. data/lib/locomotive/steam/exceptions.rb +0 -62
  326. data/lib/locomotive/steam/liquid/scopeable.rb +0 -149
  327. data/lib/locomotive/steam/liquid/tags/editable/long_text.rb +0 -15
  328. data/lib/locomotive/steam/liquid/tags/editable/short_text.rb +0 -20
  329. data/lib/locomotive/steam/liquid/tags/path_helper.rb +0 -98
  330. data/lib/locomotive/steam/loaders/yml/pages_loader.rb +0 -193
  331. data/lib/locomotive/steam/loaders/yml/site_loader.rb +0 -49
  332. data/lib/locomotive/steam/loaders/yml/utils/localized_tree.rb +0 -33
  333. data/lib/locomotive/steam/loaders/yml/utils/yaml_front_matters_template.rb +0 -66
  334. data/lib/locomotive/steam/loaders/yml_loader.rb +0 -33
  335. data/lib/locomotive/steam/mapper.rb +0 -86
  336. data/lib/locomotive/steam/middlewares/base.rb +0 -65
  337. data/lib/locomotive/steam/middlewares/stack.rb +0 -66
  338. data/lib/locomotive/steam/middlewares/static_assets.rb +0 -25
  339. data/lib/locomotive/steam/monkey_patches.rb +0 -3
  340. data/lib/locomotive/steam/monkey_patches/haml.rb +0 -17
  341. data/lib/locomotive/steam/repositories/content_types_repository.rb +0 -14
  342. data/lib/locomotive/steam/repositories/pages_repository.rb +0 -23
  343. data/lib/locomotive/steam/repositories/sites_repository.rb +0 -16
  344. data/lib/locomotive/steam/services/dragonfly.rb +0 -49
  345. data/lib/locomotive/steam/services/external_api.rb +0 -47
  346. data/lib/locomotive/steam/services/markdown.rb +0 -20
  347. data/lib/locomotive/steam/standalone_server.rb +0 -30
  348. data/spec/unit/decorators/page_decorator_spec.rb +0 -55
  349. data/spec/unit/loaders/pages_loader_spec.rb +0 -42
  350. data/spec/unit/loaders/site_loader_spec.rb +0 -21
  351. data/spec/unit/loaders/utils/localized_tree_spec.rb +0 -33
  352. data/spec/unit/loaders/utils/yaml_front_matters_template_spec.rb +0 -39
  353. data/spec/unit/middlewares/base_spec.rb +0 -20
  354. data/spec/unit/middlewares/page_spec.rb +0 -51
  355. data/spec/unit/repositories/pages_spec.rb +0 -11
@@ -0,0 +1,40 @@
1
+ module Locomotive
2
+ module Steam
3
+
4
+ class UrlBuilderService < Struct.new(:site, :current_locale)
5
+
6
+ def url_for(page, locale = nil)
7
+ [''].tap do |segments|
8
+ locale ||= current_locale
9
+ same_locale = locale.to_sym == site.default_locale.to_sym
10
+
11
+ # locale
12
+ segments << locale unless same_locale
13
+
14
+ # fullpath
15
+ segments << sanitized_fullpath(page, same_locale)
16
+ end.compact.join('/')
17
+ end
18
+
19
+ def public_submission_url_for(content_type)
20
+ "/entry_submissions/#{content_type.slug}"
21
+ end
22
+
23
+ private
24
+
25
+ def sanitized_fullpath(page, same_locale)
26
+ path = page.fullpath
27
+
28
+ if page.templatized? && page.content_entry
29
+ path.gsub(Locomotive::Steam::WILDCARD, page.content_entry._slug)
30
+ elsif path == 'index'
31
+ same_locale ? '' : nil
32
+ else
33
+ path
34
+ end
35
+ end
36
+
37
+ end
38
+
39
+ end
40
+ end
@@ -3,6 +3,6 @@
3
3
  # 1.0.0-alpha < 1.0.0-alpha.1 < 1.0.0-alpha.beta < 1.0.0-beta < 1.0.0-beta.2 < 1.0.0-beta.11 < 1.0.0-rc.1 < 1.0.0
4
4
  module Locomotive
5
5
  module Steam
6
- VERSION = '0.1.2-beta'
6
+ VERSION = '1.0.0-alpha'
7
7
  end
8
8
  end
@@ -16,32 +16,38 @@ Gem::Specification.new do |spec|
16
16
  spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
17
17
  spec.require_paths = ['lib']
18
18
 
19
- spec.add_development_dependency 'bundler', '~> 1.5'
20
- spec.add_development_dependency 'rake', '~> 10.1'
21
- spec.add_development_dependency 'rspec', '~> 2.14'
22
- spec.add_development_dependency 'launchy'
23
- spec.add_development_dependency 'vcr'
24
- spec.add_development_dependency 'webmock'
25
- spec.add_development_dependency 'rack-test'
26
- spec.add_development_dependency 'i18n-spec'
27
-
28
- spec.add_dependency 'httparty', '~> 0.13'
29
- spec.add_dependency 'httmultiparty', '~> 0.3.10'
30
- spec.add_dependency 'rack-cache', '~> 1.1'
31
- spec.add_dependency 'moneta', '~> 0.7.20'
32
- spec.add_dependency 'sprockets', '~> 2.0'
33
- spec.add_dependency 'sprockets-sass', '~> 1.0'
34
- spec.add_dependency 'dragonfly', '~> 1.0.3'
35
- spec.add_dependency 'will_paginate', '~> 3.0' # TODO: move to kaminari
36
- spec.add_dependency 'kramdown', '~> 1.3.3'
37
- spec.add_dependency 'coffee-script', '~> 2.2.0'
38
- spec.add_dependency 'haml', '~> 4.0.3'
39
- spec.add_dependency 'compass', '~> 0.12.2'
40
-
41
-
42
- spec.add_dependency 'locomotivecms_models', '~> 0.0.1.pre.alpha'
43
- spec.add_dependency 'locomotivecms-solid'
44
- spec.add_dependency 'locomotivecms_common', '~> 0.0.2'
45
-
46
- # spec.required_ruby_version = '~> 2.0'
19
+ spec.add_development_dependency 'bundler', '~> 1.7'
20
+ spec.add_development_dependency 'rake', '~> 10.4.2'
21
+
22
+ spec.add_development_dependency 'moped', '~> 2.0.4'
23
+ spec.add_development_dependency 'origin', '~> 2.1.1'
24
+
25
+ spec.add_dependency 'activesupport', '~> 4.2.1'
26
+ spec.add_dependency 'stringex', '~> 2.5.2'
27
+ spec.add_dependency 'sanitize', '~> 3.1.2'
28
+ spec.add_dependency 'morphine', '~> 0.1.1'
29
+ spec.add_dependency 'httparty', '~> 0.13.3'
30
+ spec.add_dependency 'chronic', '~> 0.10.2'
31
+
32
+ spec.add_dependency 'rack-rewrite', '~> 1.5.1'
33
+ spec.add_dependency 'rack-cache', '~> 1.2'
34
+ spec.add_dependency 'dragonfly', '~> 1.0.7'
35
+ spec.add_dependency 'moneta', '~> 0.8.0'
36
+ spec.add_dependency 'rack_csrf', '~> 2.5.0'
37
+
38
+ spec.add_dependency 'sprockets', '~> 2.12.3'
39
+ spec.add_dependency 'sprockets-sass', '~> 1.3.1'
40
+ spec.add_dependency 'coffee-script', '~> 2.3.0'
41
+ spec.add_dependency 'compass', '~> 1.0.3'
42
+
43
+ spec.add_dependency 'kramdown', '~> 1.6.0'
44
+ spec.add_dependency 'RedCloth', '~> 4.2.9'
45
+ spec.add_dependency 'haml', '~> 4.0.6'
46
+ spec.add_dependency 'mimetype-fu', '~> 0.1.2'
47
+ spec.add_dependency 'mime-types', '~> 2.4.3'
48
+
49
+ spec.add_dependency 'locomotivecms-solid', '~> 4.0.0.alpha2'
50
+ spec.add_dependency 'locomotivecms_common', '~> 0.0.2'
51
+
52
+ spec.required_ruby_version = '>= 2.0'
47
53
  end
@@ -0,0 +1,4 @@
1
+ #!/bin/sh
2
+ echo 'America/Chicago' | sudo tee /etc/timezone
3
+ sudo dpkg-reconfigure --frontend noninteractive tzdata
4
+ date
@@ -16,4 +16,6 @@ fields:
16
16
  type: has_many
17
17
  class_name: songs
18
18
  inverse_of: band
19
- ui_enabled: true
19
+ ui_enabled: true
20
+ - featured:
21
+ type: boolean
@@ -21,5 +21,5 @@ fields:
21
21
  type: tags
22
22
  label: List of tags
23
23
  - price:
24
- type: Float
25
- label: Price of the event
24
+ type: float
25
+ label: Price of the event
@@ -3,6 +3,7 @@ title: About Us
3
3
  listed: true
4
4
  position: 1
5
5
  handle: about-us
6
+ published: true
6
7
  editable_elements:
7
8
  'banner/page_image': "/samples/photo_2.jpg"
8
9
  'banner/pitch': "<h2>About us</h2><p>Lorem ipsum...</p>"
@@ -18,4 +19,4 @@ editable_elements:
18
19
 
19
20
  {% endeditable_long_text %}
20
21
 
21
- {% endblock %}
22
+ {% endblock %}
@@ -0,0 +1,6 @@
1
+ ---
2
+ title: Archives
3
+ listed: false
4
+ published: false
5
+ position: 13
6
+ ---
@@ -1,5 +1,6 @@
1
1
  ---
2
2
  title: Basic page
3
+ position: 6
3
4
  ---
4
5
  !!! XML
5
6
  !!!
@@ -1,6 +1,7 @@
1
1
  ---
2
2
  title: A sample contest
3
3
  listed: false
4
+ position: 7
4
5
  ---
5
6
  {% extends 'parent' %}
6
7
 
@@ -15,4 +16,4 @@ listed: false
15
16
  {% session_assign already_participated = true %}
16
17
  {% endif %}
17
18
 
18
- {% endblock %}
19
+ {% endblock %}
@@ -0,0 +1,4 @@
1
+ ---
2
+ title: Evenements
3
+ slug: evenements
4
+ ---
@@ -18,6 +18,28 @@ position: 5
18
18
  {{ event.place }}, {{ event.city }}, {{ event.state }}
19
19
  {% endfor %}
20
20
 
21
+ #sidebar.unit.size1of3
22
+
23
+ {% model_form 'messages', id: 'contactform' %}
24
+ %p
25
+ %label{ :for => 'name' } Name
26
+ %input{ :type => 'text', :id => 'name', :name => 'content[name]', :placeholder => 'First and last name', :tabindex => '1', required: 'required', value: '{{ message.name }}' }
27
+ %span {{ message.errors.name }}
28
+
29
+ %p
30
+ %label{ :for => 'email' } Email
31
+ %input{ :type => 'text', :id => 'email', :name => 'content[email]', :placeholder => 'example@domain.com', :tabindex => '2', required: 'required', value: '{{ message.email }}' }
32
+ %span {{ message.errors.email }}
33
+
34
+ %p
35
+ %label{ :for => 'comment' } Your Message
36
+ %textarea{ :id => 'comment', :name => 'content[message]', :tabindex => '3', required: 'required' } {{ message.message }}
37
+ %span {{ message.errors.message }}
38
+
39
+ %p.action
40
+ %input{ :name => 'submit', :type => 'submit', :tabindex => '4', :value => 'Send Message' }
41
+ {% endmodel_form %}
42
+
21
43
  #sidebar.unit.size1of3
22
44
  {% editable_long_text 'sidebar' %}
23
45
 
@@ -39,4 +61,4 @@ position: 5
39
61
  {% assign another_song = contents.songs.last %}
40
62
  %strong {% link_to another_song, with: a-song-template %}
41
63
 
42
- {% endblock %}
64
+ {% endblock %}
@@ -1,10 +1,21 @@
1
1
  ---
2
2
  title: Various uses of the with_scope tag
3
+ position: 8
3
4
  ---
4
- {% assign begin = '2012-06-01 00:00:00' %}
5
- {% assign end = '2012-06-10 23:59:59' %}
6
- {% assign prices = '5.0,5.5' | split: ',' | map: 'to_f' %}
5
+ {% assign begin_date = '2012-06-01 00:00:00' | parse_date_time %}
6
+ {% assign end_date = '2012-06-10 23:59:59' | parse_date_time %}
7
+ {% assign prices = '5.0,5.5' | split: ',' | map: 'to_f' %}
7
8
 
8
- {% with_scope date.gte: begin, date.lte: end, city: /Kansas/, state.ne: 'Illinois', tags: 'awesome', tags.nin: 'bad', price.in: prices %}
9
+ {% with_scope date.gte: begin_date, date.lte: end_date, city: /Kansas/, state.ne: 'Illinois', tags: 'awesome', tags.nin: 'bad', price.in: prices, order_by: 'price.desc' %}
9
10
  events={{ contents.events.count }}.
10
- {% endwith_scope %}
11
+ {% endwith_scope %}
12
+
13
+ {% with_scope tags.in: 'awesome', order_by: 'price.desc' %}
14
+ first event={{ contents.events.first.place }}.
15
+ {% endwith_scope %}
16
+
17
+ {% assign featured = false %}
18
+
19
+ {% with_scope featured: featured %}
20
+ bands={{ contents.bands.count }}.
21
+ {% endwith_scope %}
@@ -1,8 +1,9 @@
1
1
  ---
2
2
  title: Grunge leaders
3
+ position: 9
3
4
  ---
4
5
  {% with_scope kind: "grunge" %}
5
6
  {% for band in contents.bands %}
6
7
  {{ band.leader }}
7
8
  {% endfor %}
8
- {% endwith_scope %}
9
+ {% endwith_scope %}
@@ -3,14 +3,14 @@ title: Home page
3
3
  ---
4
4
  !!! XML
5
5
  !!!
6
- %html{ :lang => "en" }
6
+ %html{ lang: "en" }
7
7
  %head
8
- %meta{ :charset => "utf-8" }
8
+ %meta{ charset: "utf-8" }
9
9
 
10
10
  %title {{ site.name }}
11
11
 
12
- %meta{ :content => "{{ site.meta_description }}", :name => "description" }
13
- %meta{ :content => "{{ site.meta_keywords }}", :name => "keywords" }
12
+ %meta{ content: "{{ site.meta_description }}", name: "description" }
13
+ %meta{ content: "{{ site.meta_keywords }}", name: "keywords" }
14
14
 
15
15
  {{ '/foo/bar' | auto_discovery_link_tag: 'rel:alternate', 'type:application/atom+xml', 'title:A title' }}
16
16
 
@@ -25,9 +25,10 @@ title: Home page
25
25
  {{ 'http://fonts.googleapis.com/css?family=Open+Sans:400,700' | stylesheet_tag }}
26
26
  {{ 'reboot' | stylesheet_tag }}
27
27
  {{ 'application' | stylesheet_tag }}
28
- %script{ :src => "{{ 'application.js' | javascript_url }}", :type => 'text/javascript' }
29
28
 
30
- %script{ :src => 'http://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js', :type => 'text/javascript' }
29
+ %script{ src: "{{ 'application.js' | javascript_url }}", type: "text/javascript" }
30
+
31
+ %script{ src: 'http://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js', type: 'text/javascript' }
31
32
 
32
33
  {% inline_editor %}
33
34
 
@@ -35,15 +36,15 @@ title: Home page
35
36
  .container
36
37
  #menu
37
38
  %ul#nav
38
- %li#home{ :class => "{% if page.fullpath == 'index' %}on{% endif %} link" }
39
- %a{ :href => '/' } Home
39
+ %li#home{ class: "{% if page.fullpath == 'index' %}on{% endif %} link" }
40
+ %a{ href: '/' } Home
40
41
  {% nav site, no_wrapper: true, exclude: 'events' %}
41
42
  .clear
42
43
 
43
44
  #banner
44
45
  {% block banner %}
45
46
  .photo
46
- %img{ :src => "{% editable_file 'Page image', hint: 'Top banner image in each page (602px by 397px)' %}/samples/photo.jpg{% endeditable_file %}" }
47
+ %img{ src: "{% editable_file 'Page image', hint: 'Top banner image in each page (602px by 397px)' %}/samples/photo.jpg{% endeditable_file %}" }
47
48
 
48
49
  .text
49
50
  {% editable_long_text 'pitch' %}
@@ -51,7 +52,7 @@ title: Home page
51
52
  %p
52
53
  Lorem ipsum dolor sit amet, consectetur adipiscing elit. Suspendisse vitae egestas neque. Proin ac ante ante, sit amet egestas purus. Fusce tincidunt mattis sapien eget sodales. Cras aliquet odio eu nisl dapibus placerat.
53
54
  %br
54
- %a{ :href => '/about_us' } read more...
55
+ %a{ href: '/about_us' } read more...
55
56
  {% endeditable_long_text %}
56
57
  {% endblock %}
57
58
 
@@ -72,7 +73,7 @@ title: Home page
72
73
  {% endfor %}
73
74
 
74
75
  %p.more
75
- %a{ :href => '/events' } See more events ...
76
+ %a{ href: '/events' } See more events ...
76
77
 
77
78
  #updates.unit.size1of2
78
79
  %h2 Site updates
@@ -39,4 +39,4 @@ position: 2
39
39
  {% endfor %}
40
40
  %p.collection_equality {{ contents.songs.all.size }}={{ contents.songs.size }}
41
41
 
42
- {% endblock %}
42
+ {% endblock %}
@@ -0,0 +1,6 @@
1
+ ---
2
+ title: Songs
3
+ listed: false
4
+ published: false
5
+ position: 14
6
+ ---
@@ -0,0 +1,5 @@
1
+ ---
2
+ title: Song #1
3
+ position: 1
4
+ ---
5
+ another version
@@ -1,5 +1,6 @@
1
1
  ---
2
2
  redirect_url: http://www.apple.com/en/itunes/
3
+ redirect_type: 301
3
4
  listed: true
4
5
  position: 3
5
- ---
6
+ ---
@@ -0,0 +1,6 @@
1
+ ---
2
+ title: Tags
3
+ listed: false
4
+ published: false
5
+ position: 10
6
+ ---
@@ -1,9 +1,10 @@
1
1
  ---
2
2
  title: Unlisted pages
3
+ position: 11
3
4
  ---
4
5
  %ul
5
6
  {% with_scope listed: false %}
6
7
  {% for page in site.pages %}
7
8
  %li {{ page.title }}
8
9
  {% endfor %}
9
- {% endwith_scope %}
10
+ {% endwith_scope %}
@@ -5,4 +5,4 @@
5
5
  {{ song.short_description }}
6
6
  %p.listen
7
7
  %a{ :href => "{{ song.audio_url }}" } &rarr; écouter ({{ song.duration }} min)
8
- .clear
8
+ .clear
@@ -1,7 +1,7 @@
1
1
  development:
2
- host: development.example.com
2
+ host: sample.lvh.me:3000
3
3
  email: john@doe.net
4
- password: easyone
4
+ api_key: a9ac1e08c2c22c1b6f3da6db77a70cac4a615bd7
5
5
  staging:
6
6
  host: staging.example.com
7
7
  email: john@doe.net
@@ -2,14 +2,20 @@ name: Sample website
2
2
 
3
3
  subdomain: sample
4
4
 
5
- domains: ['example.org', 'sample.example.com']
5
+ domains: ['example.org', 'sample.example.com', 'sample.lvh.me']
6
6
 
7
7
  locales: ['en', 'fr', 'nb']
8
8
 
9
+ timezone: 'America/Chicago'
10
+
9
11
  seo_title:
10
12
  en: A simple LocomotiveCMS website
11
13
  fr: Un simple LocomotiveCMS site web
14
+
12
15
  meta_keywords:
13
16
  en: some meta keywords
14
17
  fr: quelques mots cles
18
+
15
19
  meta_description: some meta description
20
+
21
+ robots_txt: "User-agent: *\nDisallow:"
@@ -1,10 +1,13 @@
1
1
  - Pearl Jam:
2
2
  leader: Eddie
3
3
  kind: grunge
4
+ featured: false
4
5
  - Alice in Chains:
5
6
  leader: Layne
6
7
  kind: grunge
8
+ featured: false
7
9
  - The who:
8
10
  leader: Peter
9
11
  kind: rock
12
+ featured: true
10
13