tribeca_cms 0.1.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (565) hide show
  1. data/Gemfile +58 -0
  2. data/LICENSE +1 -0
  3. data/README.textile +0 -0
  4. data/app/assets/images/locomotive/background/body.png +0 -0
  5. data/app/assets/images/locomotive/datepicker/ui-widget-content-top.png +0 -0
  6. data/app/assets/images/locomotive/form/error-arrow.png +0 -0
  7. data/app/assets/images/locomotive/form/input-sep.png +0 -0
  8. data/app/assets/images/locomotive/icons/flags/de.png +0 -0
  9. data/app/assets/images/locomotive/icons/flags/en.png +0 -0
  10. data/app/assets/images/locomotive/icons/flags/es.png +0 -0
  11. data/app/assets/images/locomotive/icons/flags/et.png +0 -0
  12. data/app/assets/images/locomotive/icons/flags/fr.png +0 -0
  13. data/app/assets/images/locomotive/icons/flags/it.png +0 -0
  14. data/app/assets/images/locomotive/icons/flags/nb.png +0 -0
  15. data/app/assets/images/locomotive/icons/flags/nl.png +0 -0
  16. data/app/assets/images/locomotive/icons/flags/pl.png +0 -0
  17. data/app/assets/images/locomotive/icons/flags/pt-BR.png +0 -0
  18. data/app/assets/images/locomotive/icons/flags/ru.png +0 -0
  19. data/app/assets/images/locomotive/icons/start.png +0 -0
  20. data/app/assets/images/locomotive/list/empty.png +0 -0
  21. data/app/assets/images/locomotive/list/item-left.png +0 -0
  22. data/app/assets/images/locomotive/nocoffee.png +0 -0
  23. data/app/assets/images/locomotive/plugins/sites_picker_top_arrow.png +0 -0
  24. data/app/assets/images/locomotive/rails.png +0 -0
  25. data/app/assets/javascripts/aloha/plugins/custom/locomotive_media/css/image.css +3 -0
  26. data/app/assets/javascripts/aloha/plugins/custom/locomotive_media/img/image.gif +0 -0
  27. data/app/assets/javascripts/aloha/plugins/custom/locomotive_media/lib/locomotive_media-plugin.js +96 -0
  28. data/app/assets/javascripts/aloha/plugins/custom/locomotive_media/nls/fr/i18n.js +1 -0
  29. data/app/assets/javascripts/aloha/plugins/custom/locomotive_media/nls/i18n.js +4 -0
  30. data/app/assets/javascripts/aloha/plugins/custom/locomotive_media/package.json +1 -0
  31. data/app/assets/javascripts/locomotive.js +25 -0
  32. data/app/assets/javascripts/locomotive/aloha.js.coffee +2 -0
  33. data/app/assets/javascripts/locomotive/application.js.coffee +12 -0
  34. data/app/assets/javascripts/locomotive/inline_editor.js.coffee +22 -0
  35. data/app/assets/javascripts/locomotive/models/account.js.coffee +11 -0
  36. data/app/assets/javascripts/locomotive/models/content_asset.js.coffee +20 -0
  37. data/app/assets/javascripts/locomotive/models/content_entry.js.coffee +61 -0
  38. data/app/assets/javascripts/locomotive/models/content_type.js.coffee +26 -0
  39. data/app/assets/javascripts/locomotive/models/custom_field.js.coffee +38 -0
  40. data/app/assets/javascripts/locomotive/models/custom_field_select_option.js.coffee +16 -0
  41. data/app/assets/javascripts/locomotive/models/domain.js.coffee +3 -0
  42. data/app/assets/javascripts/locomotive/models/editable_element.js.coffee +27 -0
  43. data/app/assets/javascripts/locomotive/models/membership.js.coffee +13 -0
  44. data/app/assets/javascripts/locomotive/models/page.js.coffee +27 -0
  45. data/app/assets/javascripts/locomotive/models/site.js.coffee +34 -0
  46. data/app/assets/javascripts/locomotive/models/snippet.js.coffee +11 -0
  47. data/app/assets/javascripts/locomotive/models/theme_asset.js.coffee +11 -0
  48. data/app/assets/javascripts/locomotive/models/translation.js.coffee +5 -0
  49. data/app/assets/javascripts/locomotive/not_logged_in.js.coffee +1 -0
  50. data/app/assets/javascripts/locomotive/utils/aloha_settings.js.coffee +37 -0
  51. data/app/assets/javascripts/locomotive/utils/core_ext.js +75 -0
  52. data/app/assets/javascripts/locomotive/utils/growl.js +14 -0
  53. data/app/assets/javascripts/locomotive/utils/handlebar_helpers.js.coffee +9 -0
  54. data/app/assets/javascripts/locomotive/utils/tinymce_settings.js.coffee +48 -0
  55. data/app/assets/javascripts/locomotive/views/application_view.js.coffee +92 -0
  56. data/app/assets/javascripts/locomotive/views/content_assets/picker_item_view.js.coffee +30 -0
  57. data/app/assets/javascripts/locomotive/views/content_assets/picker_view.js.coffee +58 -0
  58. data/app/assets/javascripts/locomotive/views/content_entries/_form_view.js.coffee +144 -0
  59. data/app/assets/javascripts/locomotive/views/content_entries/_popup_form_view.js.coffee +90 -0
  60. data/app/assets/javascripts/locomotive/views/content_entries/edit_view.js.coffee +9 -0
  61. data/app/assets/javascripts/locomotive/views/content_entries/index_view.js.coffee +36 -0
  62. data/app/assets/javascripts/locomotive/views/content_entries/new_view.js.coffee +8 -0
  63. data/app/assets/javascripts/locomotive/views/content_types/_form_view.js.coffee +86 -0
  64. data/app/assets/javascripts/locomotive/views/content_types/custom_field_entry_view.js.coffee +104 -0
  65. data/app/assets/javascripts/locomotive/views/content_types/custom_fields_view.coffee +94 -0
  66. data/app/assets/javascripts/locomotive/views/content_types/edit_view.coffee +14 -0
  67. data/app/assets/javascripts/locomotive/views/content_types/new_view.js.coffee +11 -0
  68. data/app/assets/javascripts/locomotive/views/content_types/select_options_view.js.coffee +89 -0
  69. data/app/assets/javascripts/locomotive/views/current_site/edit_view.js.coffee +86 -0
  70. data/app/assets/javascripts/locomotive/views/editable_elements/control_view.js.coffee +24 -0
  71. data/app/assets/javascripts/locomotive/views/editable_elements/edit_all_view.js.coffee +83 -0
  72. data/app/assets/javascripts/locomotive/views/editable_elements/file_view.js.coffee +74 -0
  73. data/app/assets/javascripts/locomotive/views/editable_elements/long_text_view.js.coffee +36 -0
  74. data/app/assets/javascripts/locomotive/views/editable_elements/short_text_view.js.coffee +22 -0
  75. data/app/assets/javascripts/locomotive/views/inline_editor/application_view.js.coffee +124 -0
  76. data/app/assets/javascripts/locomotive/views/inline_editor/toolbar_view.js.coffee +145 -0
  77. data/app/assets/javascripts/locomotive/views/my_account/edit_view.js.coffee +24 -0
  78. data/app/assets/javascripts/locomotive/views/pages/_form_view.js.coffee +162 -0
  79. data/app/assets/javascripts/locomotive/views/pages/edit_view.js.coffee +31 -0
  80. data/app/assets/javascripts/locomotive/views/pages/index_view.js.coffee +11 -0
  81. data/app/assets/javascripts/locomotive/views/pages/list_view.js.coffee +40 -0
  82. data/app/assets/javascripts/locomotive/views/pages/new_view.js.coffee +8 -0
  83. data/app/assets/javascripts/locomotive/views/shared/asset_picker_view.js.coffee +92 -0
  84. data/app/assets/javascripts/locomotive/views/shared/fields/file_view.js.coffee +88 -0
  85. data/app/assets/javascripts/locomotive/views/shared/fields/has_many_view.js.coffee +125 -0
  86. data/app/assets/javascripts/locomotive/views/shared/fields/many_to_many_view.js.coffee +131 -0
  87. data/app/assets/javascripts/locomotive/views/shared/fields/select_view.js.coffee +83 -0
  88. data/app/assets/javascripts/locomotive/views/shared/form_view.js.coffee +138 -0
  89. data/app/assets/javascripts/locomotive/views/shared/list_item_view.js.coffee +22 -0
  90. data/app/assets/javascripts/locomotive/views/shared/list_view.js.coffee +53 -0
  91. data/app/assets/javascripts/locomotive/views/sites/domain_entry_view.js.coffee +26 -0
  92. data/app/assets/javascripts/locomotive/views/sites/domains_view.js.coffee +84 -0
  93. data/app/assets/javascripts/locomotive/views/sites/membership_entry_view.js.coffee +31 -0
  94. data/app/assets/javascripts/locomotive/views/sites/memberships_view.js.coffee +41 -0
  95. data/app/assets/javascripts/locomotive/views/sites/new_view.js.coffee +43 -0
  96. data/app/assets/javascripts/locomotive/views/snippets/_form_view.js.coffee +75 -0
  97. data/app/assets/javascripts/locomotive/views/snippets/edit_view.js.coffee +6 -0
  98. data/app/assets/javascripts/locomotive/views/snippets/list_item_view.js.coffee +8 -0
  99. data/app/assets/javascripts/locomotive/views/snippets/list_view.js.coffee +17 -0
  100. data/app/assets/javascripts/locomotive/views/snippets/new_view.js.coffee +8 -0
  101. data/app/assets/javascripts/locomotive/views/theme_assets/_form_view.js.coffee +104 -0
  102. data/app/assets/javascripts/locomotive/views/theme_assets/edit_view.js.coffee +16 -0
  103. data/app/assets/javascripts/locomotive/views/theme_assets/image_picker_view.js.coffee +48 -0
  104. data/app/assets/javascripts/locomotive/views/theme_assets/index_view.js.coffee +91 -0
  105. data/app/assets/javascripts/locomotive/views/theme_assets/list_item_view.js.coffee +8 -0
  106. data/app/assets/javascripts/locomotive/views/theme_assets/list_view.js.coffee +17 -0
  107. data/app/assets/javascripts/locomotive/views/theme_assets/new_view.js.coffee +8 -0
  108. data/app/assets/javascripts/locomotive/views/translations/_form_view.js.coffee +20 -0
  109. data/app/assets/javascripts/locomotive/views/translations/edit_view.js.coffee +6 -0
  110. data/app/assets/javascripts/locomotive/views/translations/new_view.js.coffee +8 -0
  111. data/app/assets/javascripts/tinymce/plugins/jqueryinlinepopups/editor_plugin.js +240 -0
  112. data/app/assets/javascripts/tinymce/plugins/locomotive_media/editor_plugin.js +78 -0
  113. data/app/assets/javascripts/tinymce/themes/advanced/skins/locomotive/content.css +66 -0
  114. data/app/assets/javascripts/tinymce/themes/advanced/skins/locomotive/dialog.css.scss +78 -0
  115. data/app/assets/javascripts/tinymce/themes/advanced/skins/locomotive/img/butt2.png +0 -0
  116. data/app/assets/javascripts/tinymce/themes/advanced/skins/locomotive/img/button-bg.png +0 -0
  117. data/app/assets/javascripts/tinymce/themes/advanced/skins/locomotive/img/buttons.png +0 -0
  118. data/app/assets/javascripts/tinymce/themes/advanced/skins/locomotive/img/down_arrow.gif +0 -0
  119. data/app/assets/javascripts/tinymce/themes/advanced/skins/locomotive/img/fade-butt.png +0 -0
  120. data/app/assets/javascripts/tinymce/themes/advanced/skins/locomotive/img/icons.png +0 -0
  121. data/app/assets/javascripts/tinymce/themes/advanced/skins/locomotive/img/items.gif +0 -0
  122. data/app/assets/javascripts/tinymce/themes/advanced/skins/locomotive/img/menu-arrow.png +0 -0
  123. data/app/assets/javascripts/tinymce/themes/advanced/skins/locomotive/img/menu-check.png +0 -0
  124. data/app/assets/javascripts/tinymce/themes/advanced/skins/locomotive/img/progress.gif +0 -0
  125. data/app/assets/javascripts/tinymce/themes/advanced/skins/locomotive/img/tabs.gif +0 -0
  126. data/app/assets/javascripts/tinymce/themes/advanced/skins/locomotive/img/toolbarbg.png +0 -0
  127. data/app/assets/javascripts/tinymce/themes/advanced/skins/locomotive/ui.css +1018 -0
  128. data/app/assets/stylesheets/locomotive.css +16 -0
  129. data/app/assets/stylesheets/locomotive/backoffice/_box.css.scss +157 -0
  130. data/app/assets/stylesheets/locomotive/backoffice/_buttons.css.scss +178 -0
  131. data/app/assets/stylesheets/locomotive/backoffice/application.css.scss +332 -0
  132. data/app/assets/stylesheets/locomotive/backoffice/codemirror_changes.css.scss +19 -0
  133. data/app/assets/stylesheets/locomotive/backoffice/content_assets.css.scss +130 -0
  134. data/app/assets/stylesheets/locomotive/backoffice/datepicker.css.scss +178 -0
  135. data/app/assets/stylesheets/locomotive/backoffice/dialog_changes.css.scss +141 -0
  136. data/app/assets/stylesheets/locomotive/backoffice/editable_elements.css.scss +71 -0
  137. data/app/assets/stylesheets/locomotive/backoffice/formtastic_changes.css.scss +735 -0
  138. data/app/assets/stylesheets/locomotive/backoffice/layout.css.scss +205 -0
  139. data/app/assets/stylesheets/locomotive/backoffice/menu.css +8 -0
  140. data/app/assets/stylesheets/locomotive/backoffice/menu/_colors.css.scss +125 -0
  141. data/app/assets/stylesheets/locomotive/backoffice/menu/_helpers.css.scss +6 -0
  142. data/app/assets/stylesheets/locomotive/backoffice/menu/default.css.scss +32 -0
  143. data/app/assets/stylesheets/locomotive/backoffice/menu/main.css.scss +127 -0
  144. data/app/assets/stylesheets/locomotive/backoffice/menu/sub.css.scss +276 -0
  145. data/app/assets/stylesheets/locomotive/backoffice/sites_picker.css.scss +12 -0
  146. data/app/assets/stylesheets/locomotive/inline_editor.css +13 -0
  147. data/app/assets/stylesheets/locomotive/inline_editor/_buttons.css.scss +60 -0
  148. data/app/assets/stylesheets/locomotive/inline_editor/layout.css.scss +22 -0
  149. data/app/assets/stylesheets/locomotive/inline_editor/toolbar.css.scss +114 -0
  150. data/app/assets/stylesheets/locomotive/not_logged_in.css +8 -0
  151. data/app/assets/stylesheets/locomotive/not_logged_in/installation.css.scss +62 -0
  152. data/app/assets/stylesheets/locomotive/not_logged_in/layout.css.scss +185 -0
  153. data/app/assets/stylesheets/locomotive/shared/_helpers.css.scss +150 -0
  154. data/app/assets/stylesheets/locomotive/shared/_picker.css.scss +73 -0
  155. data/app/assets/stylesheets/locomotive/shared/common.css.scss +34 -0
  156. data/app/assets/stylesheets/locomotive/shared/content_locale_picker.css.scss +80 -0
  157. data/app/assets/stylesheets/locomotive/shared/growl.css.scss +29 -0
  158. data/app/cells/locomotive/content_locale_picker/show.html.haml +7 -0
  159. data/app/cells/locomotive/content_locale_picker_cell.rb +21 -0
  160. data/app/cells/locomotive/global_actions/show.html.haml +12 -0
  161. data/app/cells/locomotive/global_actions_cell.rb +36 -0
  162. data/app/cells/locomotive/main_menu/show.html.haml +13 -0
  163. data/app/cells/locomotive/main_menu_cell.rb +12 -0
  164. data/app/cells/locomotive/menu/show.html.haml +1 -0
  165. data/app/cells/locomotive/menu_cell.rb +102 -0
  166. data/app/cells/locomotive/settings_menu_cell.rb +14 -0
  167. data/app/cells/locomotive/sub_menu/show.html.haml +4 -0
  168. data/app/cells/locomotive/sub_menu_cell.rb +13 -0
  169. data/app/controllers/locomotive/accounts_controller.rb +18 -0
  170. data/app/controllers/locomotive/api/accounts_controller.rb +79 -0
  171. data/app/controllers/locomotive/api/base_controller.rb +50 -0
  172. data/app/controllers/locomotive/api/content_assets_controller.rb +39 -0
  173. data/app/controllers/locomotive/api/content_entries_controller.rb +45 -0
  174. data/app/controllers/locomotive/api/content_types_controller.rb +39 -0
  175. data/app/controllers/locomotive/api/current_site_controller.rb +58 -0
  176. data/app/controllers/locomotive/api/documentation_controller.rb +15 -0
  177. data/app/controllers/locomotive/api/memberships_controller.rb +97 -0
  178. data/app/controllers/locomotive/api/my_account_controller.rb +35 -0
  179. data/app/controllers/locomotive/api/pages_controller.rb +41 -0
  180. data/app/controllers/locomotive/api/sites_controller.rb +93 -0
  181. data/app/controllers/locomotive/api/snippets_controller.rb +40 -0
  182. data/app/controllers/locomotive/api/theme_assets_controller.rb +39 -0
  183. data/app/controllers/locomotive/api/tokens_controller.rb +54 -0
  184. data/app/controllers/locomotive/api/translations_controller.rb +31 -0
  185. data/app/controllers/locomotive/base_controller.rb +61 -0
  186. data/app/controllers/locomotive/content_assets_controller.rb +23 -0
  187. data/app/controllers/locomotive/content_entries_controller.rb +71 -0
  188. data/app/controllers/locomotive/content_types_controller.rb +40 -0
  189. data/app/controllers/locomotive/current_site_controller.rb +52 -0
  190. data/app/controllers/locomotive/installation_controller.rb +72 -0
  191. data/app/controllers/locomotive/memberships_controller.rb +29 -0
  192. data/app/controllers/locomotive/my_account_controller.rb +24 -0
  193. data/app/controllers/locomotive/pages_controller.rb +63 -0
  194. data/app/controllers/locomotive/passwords_controller.rb +19 -0
  195. data/app/controllers/locomotive/public/base_controller.rb +22 -0
  196. data/app/controllers/locomotive/public/content_entries_controller.rb +55 -0
  197. data/app/controllers/locomotive/public/pages_controller.rb +50 -0
  198. data/app/controllers/locomotive/public/robots_controller.rb +16 -0
  199. data/app/controllers/locomotive/public/sitemaps_controller.rb +14 -0
  200. data/app/controllers/locomotive/sessions_controller.rb +29 -0
  201. data/app/controllers/locomotive/sites_controller.rb +33 -0
  202. data/app/controllers/locomotive/snippets_controller.rb +47 -0
  203. data/app/controllers/locomotive/theme_assets_controller.rb +52 -0
  204. data/app/controllers/locomotive/translations_controller.rb +32 -0
  205. data/app/helpers/locomotive/accounts_helper.rb +13 -0
  206. data/app/helpers/locomotive/base_helper.rb +182 -0
  207. data/app/helpers/locomotive/content_entries_helper.rb +15 -0
  208. data/app/helpers/locomotive/content_types_helper.rb +72 -0
  209. data/app/helpers/locomotive/custom_fields_helper.rb +70 -0
  210. data/app/helpers/locomotive/installation_helper.rb +9 -0
  211. data/app/helpers/locomotive/pages_helper.rb +95 -0
  212. data/app/helpers/locomotive/sites_helper.rb +15 -0
  213. data/app/helpers/locomotive/snippets_helper.rb +20 -0
  214. data/app/helpers/locomotive/theme_assets_helper.rb +30 -0
  215. data/app/helpers/locomotive/translations_helper.rb +19 -0
  216. data/app/inputs/locomotive/code_input.rb +51 -0
  217. data/app/inputs/locomotive/empty_input.rb +35 -0
  218. data/app/inputs/locomotive/file_input.rb +45 -0
  219. data/app/inputs/locomotive/locale_input.rb +40 -0
  220. data/app/inputs/locomotive/locales_input.rb +60 -0
  221. data/app/inputs/locomotive/rte_input.rb +13 -0
  222. data/app/inputs/locomotive/small_code_input.rb +22 -0
  223. data/app/inputs/locomotive/subdomain_input.rb +22 -0
  224. data/app/inputs/locomotive/toggle_input.rb +13 -0
  225. data/app/mailers/locomotive/devise_mailer.rb +10 -0
  226. data/app/mailers/locomotive/notifications.rb +15 -0
  227. data/app/models/locomotive/ability.rb +89 -0
  228. data/app/models/locomotive/account.rb +117 -0
  229. data/app/models/locomotive/content_asset.rb +40 -0
  230. data/app/models/locomotive/content_entry.rb +197 -0
  231. data/app/models/locomotive/content_type.rb +224 -0
  232. data/app/models/locomotive/editable_control.rb +52 -0
  233. data/app/models/locomotive/editable_element.rb +122 -0
  234. data/app/models/locomotive/editable_file.rb +85 -0
  235. data/app/models/locomotive/editable_long_text.rb +5 -0
  236. data/app/models/locomotive/editable_short_text.rb +66 -0
  237. data/app/models/locomotive/extensions/asset/types.rb +31 -0
  238. data/app/models/locomotive/extensions/asset/vignette.rb +19 -0
  239. data/app/models/locomotive/extensions/content_type/default_values.rb +57 -0
  240. data/app/models/locomotive/extensions/content_type/item_template.rb +49 -0
  241. data/app/models/locomotive/extensions/content_type/sync.rb +62 -0
  242. data/app/models/locomotive/extensions/page/editable_elements.rb +105 -0
  243. data/app/models/locomotive/extensions/page/listed.rb +18 -0
  244. data/app/models/locomotive/extensions/page/parse.rb +125 -0
  245. data/app/models/locomotive/extensions/page/redirect.rb +25 -0
  246. data/app/models/locomotive/extensions/page/render.rb +93 -0
  247. data/app/models/locomotive/extensions/page/templatized.rb +163 -0
  248. data/app/models/locomotive/extensions/page/tree.rb +133 -0
  249. data/app/models/locomotive/extensions/shared/seo.rb +16 -0
  250. data/app/models/locomotive/extensions/site/first_installation.rb +20 -0
  251. data/app/models/locomotive/extensions/site/locales.rb +112 -0
  252. data/app/models/locomotive/extensions/site/subdomain_domains.rb +91 -0
  253. data/app/models/locomotive/membership.rb +75 -0
  254. data/app/models/locomotive/page.rb +130 -0
  255. data/app/models/locomotive/site.rb +79 -0
  256. data/app/models/locomotive/snippet.rb +70 -0
  257. data/app/models/locomotive/theme_asset.rb +175 -0
  258. data/app/models/locomotive/translation.rb +32 -0
  259. data/app/presenters/locomotive/account_presenter.rb +19 -0
  260. data/app/presenters/locomotive/base_presenter.rb +99 -0
  261. data/app/presenters/locomotive/content_asset_presenter.rb +43 -0
  262. data/app/presenters/locomotive/content_entry_presenter.rb +217 -0
  263. data/app/presenters/locomotive/content_field_presenter.rb +71 -0
  264. data/app/presenters/locomotive/content_type_presenter.rb +68 -0
  265. data/app/presenters/locomotive/editable_control_presenter.rb +19 -0
  266. data/app/presenters/locomotive/editable_element_presenter.rb +40 -0
  267. data/app/presenters/locomotive/editable_file_presenter.rb +29 -0
  268. data/app/presenters/locomotive/editable_long_text_presenter.rb +5 -0
  269. data/app/presenters/locomotive/editable_short_text_presenter.rb +27 -0
  270. data/app/presenters/locomotive/membership_presenter.rb +36 -0
  271. data/app/presenters/locomotive/page_presenter.rb +58 -0
  272. data/app/presenters/locomotive/site_presenter.rb +36 -0
  273. data/app/presenters/locomotive/snippet_presenter.rb +22 -0
  274. data/app/presenters/locomotive/theme_asset_presenter.rb +61 -0
  275. data/app/presenters/locomotive/translation_presenter.rb +9 -0
  276. data/app/uploaders/locomotive/content_asset_uploader.rb +13 -0
  277. data/app/uploaders/locomotive/editable_file_uploader.rb +15 -0
  278. data/app/uploaders/locomotive/theme_asset_uploader.rb +28 -0
  279. data/app/views/locomotive/accounts/new.html.haml +21 -0
  280. data/app/views/locomotive/content_assets/_asset.html.haml +5 -0
  281. data/app/views/locomotive/content_assets/_picker.html.haml +33 -0
  282. data/app/views/locomotive/content_entries/_form.html.haml +22 -0
  283. data/app/views/locomotive/content_entries/_list.html.haml +18 -0
  284. data/app/views/locomotive/content_entries/edit.html.haml +21 -0
  285. data/app/views/locomotive/content_entries/index.html.haml +32 -0
  286. data/app/views/locomotive/content_entries/new.html.haml +19 -0
  287. data/app/views/locomotive/content_types/_form.html.haml +39 -0
  288. data/app/views/locomotive/content_types/edit.html.haml +19 -0
  289. data/app/views/locomotive/content_types/new.html.haml +15 -0
  290. data/app/views/locomotive/current_site/_form.html.haml +36 -0
  291. data/app/views/locomotive/current_site/edit.html.haml +19 -0
  292. data/app/views/locomotive/custom_fields/_form.html.haml +61 -0
  293. data/app/views/locomotive/custom_fields/_select_templates.html.haml +16 -0
  294. data/app/views/locomotive/custom_fields/types/_belongs_to.html.haml +5 -0
  295. data/app/views/locomotive/custom_fields/types/_boolean.html.haml +4 -0
  296. data/app/views/locomotive/custom_fields/types/_date.html.haml +5 -0
  297. data/app/views/locomotive/custom_fields/types/_file.html.haml +4 -0
  298. data/app/views/locomotive/custom_fields/types/_has_many.html.haml +70 -0
  299. data/app/views/locomotive/custom_fields/types/_many_to_many.html.haml +41 -0
  300. data/app/views/locomotive/custom_fields/types/_select.html.haml +34 -0
  301. data/app/views/locomotive/custom_fields/types/_string.html.haml +4 -0
  302. data/app/views/locomotive/custom_fields/types/_text.html.haml +5 -0
  303. data/app/views/locomotive/devise_mailer/reset_password_instructions.html.haml +12 -0
  304. data/app/views/locomotive/errors/404.html.haml +7 -0
  305. data/app/views/locomotive/errors/500.html.haml +7 -0
  306. data/app/views/locomotive/errors/no_page.html.haml +1 -0
  307. data/app/views/locomotive/errors/no_site.html.haml +1 -0
  308. data/app/views/locomotive/installation/step_1.html.haml +23 -0
  309. data/app/views/locomotive/installation/step_2.html.haml +24 -0
  310. data/app/views/locomotive/layouts/application.html.haml +34 -0
  311. data/app/views/locomotive/layouts/error.html.haml +1 -0
  312. data/app/views/locomotive/layouts/not_logged_in.html.haml +18 -0
  313. data/app/views/locomotive/memberships/new.html.haml +14 -0
  314. data/app/views/locomotive/my_account/edit.html.haml +40 -0
  315. data/app/views/locomotive/notifications/new_content_entry.html.haml +29 -0
  316. data/app/views/locomotive/pages/_editable_elements.html.haml +64 -0
  317. data/app/views/locomotive/pages/_form.html.haml +61 -0
  318. data/app/views/locomotive/pages/_page.html.haml +42 -0
  319. data/app/views/locomotive/pages/edit.html.haml +18 -0
  320. data/app/views/locomotive/pages/index.html.haml +19 -0
  321. data/app/views/locomotive/pages/new.html.haml +15 -0
  322. data/app/views/locomotive/passwords/edit.html.haml +18 -0
  323. data/app/views/locomotive/passwords/new.html.haml +17 -0
  324. data/app/views/locomotive/public/pages/show_toolbar.html.haml +64 -0
  325. data/app/views/locomotive/public/sitemaps/show.xml.builder +29 -0
  326. data/app/views/locomotive/sessions/new.html.haml +17 -0
  327. data/app/views/locomotive/shared/_footer.html.haml +1 -0
  328. data/app/views/locomotive/shared/_form_actions.html.haml +14 -0
  329. data/app/views/locomotive/shared/_head.html.haml +38 -0
  330. data/app/views/locomotive/shared/_header.html.haml +10 -0
  331. data/app/views/locomotive/shared/_locale_picker_link.html.haml +6 -0
  332. data/app/views/locomotive/shared/_main_app_head.html.haml +1 -0
  333. data/app/views/locomotive/shared/_site_picker.html.haml +10 -0
  334. data/app/views/locomotive/shared/actions/_contents.html.haml +7 -0
  335. data/app/views/locomotive/shared/menu/_contents.html.haml +51 -0
  336. data/app/views/locomotive/sites/_domains.html.haml +22 -0
  337. data/app/views/locomotive/sites/_form.html.haml +12 -0
  338. data/app/views/locomotive/sites/_memberships.html.haml +27 -0
  339. data/app/views/locomotive/sites/new.html.haml +12 -0
  340. data/app/views/locomotive/snippets/_form.html.haml +13 -0
  341. data/app/views/locomotive/snippets/_snippet.html.haml +8 -0
  342. data/app/views/locomotive/snippets/edit.html.haml +18 -0
  343. data/app/views/locomotive/snippets/new.html.haml +15 -0
  344. data/app/views/locomotive/theme_assets/_asset.html.haml +11 -0
  345. data/app/views/locomotive/theme_assets/_form.html.haml +35 -0
  346. data/app/views/locomotive/theme_assets/_list.html.haml +7 -0
  347. data/app/views/locomotive/theme_assets/_picker.html.haml +25 -0
  348. data/app/views/locomotive/theme_assets/edit.html.haml +21 -0
  349. data/app/views/locomotive/theme_assets/index.html.haml +50 -0
  350. data/app/views/locomotive/theme_assets/new.html.haml +12 -0
  351. data/app/views/locomotive/translations/_form.html.haml +12 -0
  352. data/app/views/locomotive/translations/edit.html.haml +15 -0
  353. data/app/views/locomotive/translations/index.html.haml +26 -0
  354. data/app/views/locomotive/translations/new.html.haml +12 -0
  355. data/config/cucumber.yml +8 -0
  356. data/config/initializers/deny_phantomjs_ttf.rb +29 -0
  357. data/config/initializers/devise.rb +15 -0
  358. data/config/initializers/formtastic.rb +4 -0
  359. data/config/initializers/haml.rb +2 -0
  360. data/config/initializers/locomotive_loaded_first.rb +19 -0
  361. data/config/locales/admin_ui.de.yml +316 -0
  362. data/config/locales/admin_ui.en.yml +332 -0
  363. data/config/locales/admin_ui.es.yml +296 -0
  364. data/config/locales/admin_ui.et.yml +315 -0
  365. data/config/locales/admin_ui.fr.yml +326 -0
  366. data/config/locales/admin_ui.it.yml +295 -0
  367. data/config/locales/admin_ui.nb.yml +314 -0
  368. data/config/locales/admin_ui.nl.yml +279 -0
  369. data/config/locales/admin_ui.pl.yml +319 -0
  370. data/config/locales/admin_ui.pt-BR.yml +274 -0
  371. data/config/locales/admin_ui.ru.yml +313 -0
  372. data/config/locales/carrierwave.de.yml +4 -0
  373. data/config/locales/carrierwave.en.yml +4 -0
  374. data/config/locales/carrierwave.es.yml +4 -0
  375. data/config/locales/carrierwave.et.yml +4 -0
  376. data/config/locales/carrierwave.fr.yml +4 -0
  377. data/config/locales/carrierwave.it.yml +4 -0
  378. data/config/locales/carrierwave.nb.yml +4 -0
  379. data/config/locales/carrierwave.nl.yml +4 -0
  380. data/config/locales/carrierwave.pl.yml +4 -0
  381. data/config/locales/carrierwave.pt-BR.yml +4 -0
  382. data/config/locales/carrierwave.ru.yml +4 -0
  383. data/config/locales/default.de.yml +244 -0
  384. data/config/locales/default.en.yml +43 -0
  385. data/config/locales/default.es.yml +216 -0
  386. data/config/locales/default.et.yml +240 -0
  387. data/config/locales/default.fr.yml +224 -0
  388. data/config/locales/default.it.yml +243 -0
  389. data/config/locales/default.nb.yml +313 -0
  390. data/config/locales/default.nl.yml +170 -0
  391. data/config/locales/default.pl.yml +317 -0
  392. data/config/locales/default.pt-BR.yml +211 -0
  393. data/config/locales/default.ru.yml +279 -0
  394. data/config/locales/devise.de.yml +62 -0
  395. data/config/locales/devise.en.yml +63 -0
  396. data/config/locales/devise.es.yml +63 -0
  397. data/config/locales/devise.et.yml +64 -0
  398. data/config/locales/devise.fr.yml +67 -0
  399. data/config/locales/devise.it.yml +63 -0
  400. data/config/locales/devise.nb.yml +63 -0
  401. data/config/locales/devise.nl.yml +63 -0
  402. data/config/locales/devise.pl.yml +63 -0
  403. data/config/locales/devise.pt-BR.yml +61 -0
  404. data/config/locales/devise.ru.yml +63 -0
  405. data/config/locales/flash.de.yml +106 -0
  406. data/config/locales/flash.en.yml +115 -0
  407. data/config/locales/flash.es.yml +106 -0
  408. data/config/locales/flash.et.yml +106 -0
  409. data/config/locales/flash.fr.yml +106 -0
  410. data/config/locales/flash.it.yml +106 -0
  411. data/config/locales/flash.nb.yml +106 -0
  412. data/config/locales/flash.nl.yml +106 -0
  413. data/config/locales/flash.pl.yml +106 -0
  414. data/config/locales/flash.pt-BR.yml +106 -0
  415. data/config/locales/flash.ru.yml +106 -0
  416. data/config/locales/formtastic.de.yml +97 -0
  417. data/config/locales/formtastic.en.yml +105 -0
  418. data/config/locales/formtastic.es.yml +84 -0
  419. data/config/locales/formtastic.et.yml +103 -0
  420. data/config/locales/formtastic.fr.yml +94 -0
  421. data/config/locales/formtastic.it.yml +99 -0
  422. data/config/locales/formtastic.nb.yml +103 -0
  423. data/config/locales/formtastic.nl.yml +85 -0
  424. data/config/locales/formtastic.pl.yml +105 -0
  425. data/config/locales/formtastic.pt-BR.yml +70 -0
  426. data/config/locales/formtastic.ru.yml +103 -0
  427. data/config/routes.rb +116 -0
  428. data/lib/generators/locomotive/install/install_generator.rb +35 -0
  429. data/lib/generators/locomotive/install/templates/README +26 -0
  430. data/lib/generators/locomotive/install/templates/carrierwave.rb +28 -0
  431. data/lib/generators/locomotive/install/templates/dragonfly.rb +22 -0
  432. data/lib/generators/locomotive/install/templates/locomotive.rb +69 -0
  433. data/lib/generators/locomotive/install/templates/mongoid.yml +34 -0
  434. data/lib/locomotive.rb +136 -0
  435. data/lib/locomotive/action_controller.rb +5 -0
  436. data/lib/locomotive/action_controller/locale_helpers.rb +61 -0
  437. data/lib/locomotive/action_controller/public_responder.rb +17 -0
  438. data/lib/locomotive/action_controller/responder.rb +78 -0
  439. data/lib/locomotive/action_controller/section_helpers.rb +29 -0
  440. data/lib/locomotive/action_controller/url_helpers.rb +38 -0
  441. data/lib/locomotive/carrierwave.rb +10 -0
  442. data/lib/locomotive/carrierwave/asset.rb +72 -0
  443. data/lib/locomotive/carrierwave/base.rb +15 -0
  444. data/lib/locomotive/carrierwave/patches.rb +32 -0
  445. data/lib/locomotive/configuration.rb +122 -0
  446. data/lib/locomotive/core_ext.rb +64 -0
  447. data/lib/locomotive/custom_fields.rb +66 -0
  448. data/lib/locomotive/dependencies.rb +30 -0
  449. data/lib/locomotive/devise.rb +1 -0
  450. data/lib/locomotive/dragonfly.rb +38 -0
  451. data/lib/locomotive/engine.rb +37 -0
  452. data/lib/locomotive/formtastic.rb +13 -0
  453. data/lib/locomotive/haml.rb +1 -0
  454. data/lib/locomotive/httparty.rb +2 -0
  455. data/lib/locomotive/httparty/patches.rb +18 -0
  456. data/lib/locomotive/httparty/webservice.rb +42 -0
  457. data/lib/locomotive/kaminari.rb +35 -0
  458. data/lib/locomotive/liquid.rb +7 -0
  459. data/lib/locomotive/liquid/drops/base.rb +42 -0
  460. data/lib/locomotive/liquid/drops/content_entry.rb +76 -0
  461. data/lib/locomotive/liquid/drops/content_types.rb +50 -0
  462. data/lib/locomotive/liquid/drops/current_user.rb +21 -0
  463. data/lib/locomotive/liquid/drops/page.rb +55 -0
  464. data/lib/locomotive/liquid/drops/proxy_collection.rb +56 -0
  465. data/lib/locomotive/liquid/drops/site.rb +19 -0
  466. data/lib/locomotive/liquid/drops/uploader.rb +15 -0
  467. data/lib/locomotive/liquid/errors.rb +7 -0
  468. data/lib/locomotive/liquid/filters/base.rb +47 -0
  469. data/lib/locomotive/liquid/filters/date.rb +54 -0
  470. data/lib/locomotive/liquid/filters/html.rb +115 -0
  471. data/lib/locomotive/liquid/filters/misc.rb +65 -0
  472. data/lib/locomotive/liquid/filters/resize.rb +16 -0
  473. data/lib/locomotive/liquid/filters/text.rb +45 -0
  474. data/lib/locomotive/liquid/filters/translate.rb +16 -0
  475. data/lib/locomotive/liquid/patches.rb +21 -0
  476. data/lib/locomotive/liquid/tags/consume.rb +67 -0
  477. data/lib/locomotive/liquid/tags/csrf.rb +40 -0
  478. data/lib/locomotive/liquid/tags/editable.rb +5 -0
  479. data/lib/locomotive/liquid/tags/editable/base.rb +88 -0
  480. data/lib/locomotive/liquid/tags/editable/control.rb +31 -0
  481. data/lib/locomotive/liquid/tags/editable/file.rb +39 -0
  482. data/lib/locomotive/liquid/tags/editable/long_text.rb +33 -0
  483. data/lib/locomotive/liquid/tags/editable/short_text.rb +41 -0
  484. data/lib/locomotive/liquid/tags/extends.rb +47 -0
  485. data/lib/locomotive/liquid/tags/google_analytics.rb +39 -0
  486. data/lib/locomotive/liquid/tags/inherited_block.rb +31 -0
  487. data/lib/locomotive/liquid/tags/inline_editor.rb +40 -0
  488. data/lib/locomotive/liquid/tags/locale_switcher.rb +83 -0
  489. data/lib/locomotive/liquid/tags/nav.rb +155 -0
  490. data/lib/locomotive/liquid/tags/paginate.rb +111 -0
  491. data/lib/locomotive/liquid/tags/seo.rb +72 -0
  492. data/lib/locomotive/liquid/tags/snippet.rb +75 -0
  493. data/lib/locomotive/liquid/tags/with_scope.rb +47 -0
  494. data/lib/locomotive/logger.rb +11 -0
  495. data/lib/locomotive/middlewares.rb +4 -0
  496. data/lib/locomotive/middlewares/cache.rb +27 -0
  497. data/lib/locomotive/middlewares/fonts.rb +42 -0
  498. data/lib/locomotive/middlewares/inline_editor.rb +36 -0
  499. data/lib/locomotive/middlewares/seo_trailing_slash.rb +24 -0
  500. data/lib/locomotive/misc/api_documentation.rb +96 -0
  501. data/lib/locomotive/misc/api_documentation/bootstrap.html.haml +119 -0
  502. data/lib/locomotive/mongoid.rb +4 -0
  503. data/lib/locomotive/mongoid/document.rb +19 -0
  504. data/lib/locomotive/mongoid/liquid.rb +39 -0
  505. data/lib/locomotive/mongoid/patches.rb +106 -0
  506. data/lib/locomotive/mongoid/presenter.rb +73 -0
  507. data/lib/locomotive/presentable.rb +212 -0
  508. data/lib/locomotive/rails.rb +1 -0
  509. data/lib/locomotive/rails/action_view.rb +9 -0
  510. data/lib/locomotive/regexps.rb +11 -0
  511. data/lib/locomotive/render.rb +177 -0
  512. data/lib/locomotive/routing.rb +2 -0
  513. data/lib/locomotive/routing/default_constraint.rb +42 -0
  514. data/lib/locomotive/routing/site_dispatcher.rb +54 -0
  515. data/lib/locomotive/session_store.rb +64 -0
  516. data/lib/locomotive/version.rb +3 -0
  517. data/lib/locomotive_cms.rb +1 -0
  518. data/lib/tasks/cucumber.rake +66 -0
  519. data/lib/tasks/locomotive.rake +220 -0
  520. data/public/favicon.ico +0 -0
  521. data/vendor/assets/fonts/locomotive/fontawesome-webfont.eot +0 -0
  522. data/vendor/assets/fonts/locomotive/fontawesome-webfont.svg +255 -0
  523. data/vendor/assets/fonts/locomotive/fontawesome-webfont.ttf +0 -0
  524. data/vendor/assets/fonts/locomotive/fontawesome-webfont.woff +0 -0
  525. data/vendor/assets/javascripts/locomotive/ICanHandlebarz.js +88 -0
  526. data/vendor/assets/javascripts/locomotive/backbone.modelbinding.js +565 -0
  527. data/vendor/assets/javascripts/locomotive/backbone.sync.js +113 -0
  528. data/vendor/assets/javascripts/locomotive/cmd.js +31 -0
  529. data/vendor/assets/javascripts/locomotive/cookies.js +96 -0
  530. data/vendor/assets/javascripts/locomotive/datepicker_i18n.js.erb +28 -0
  531. data/vendor/assets/javascripts/locomotive/editable_field.js +50 -0
  532. data/vendor/assets/javascripts/locomotive/form_submit_notification.js +39 -0
  533. data/vendor/assets/javascripts/locomotive/growl.js +143 -0
  534. data/vendor/assets/javascripts/locomotive/handlebars.js +1493 -0
  535. data/vendor/assets/javascripts/locomotive/liquid_mode.js +42 -0
  536. data/vendor/assets/javascripts/locomotive/menu_toggler.js +37 -0
  537. data/vendor/assets/javascripts/locomotive/resize.js +9 -0
  538. data/vendor/assets/javascripts/locomotive/slugify.js +31 -0
  539. data/vendor/assets/javascripts/locomotive/smartupdater.js +296 -0
  540. data/vendor/assets/javascripts/locomotive/subscribe.js +367 -0
  541. data/vendor/assets/javascripts/locomotive/toggle.js +143 -0
  542. data/vendor/assets/javascripts/locomotive/vendor.js +1 -0
  543. data/vendor/assets/stylesheets/locomotive/blueprint/ie.css +26 -0
  544. data/vendor/assets/stylesheets/locomotive/blueprint/print.css +30 -0
  545. data/vendor/assets/stylesheets/locomotive/blueprint/screen.css +253 -0
  546. data/vendor/assets/stylesheets/locomotive/font-awesome.scss +329 -0
  547. data/vendor/assets/stylesheets/locomotive/jquery.css +3 -0
  548. data/vendor/assets/stylesheets/locomotive/jquery/images/ui-bg_flat_0_aaaaaa_40x100.png +0 -0
  549. data/vendor/assets/stylesheets/locomotive/jquery/images/ui-bg_flat_75_ffffff_40x100.png +0 -0
  550. data/vendor/assets/stylesheets/locomotive/jquery/images/ui-bg_glass_55_fbf9ee_1x400.png +0 -0
  551. data/vendor/assets/stylesheets/locomotive/jquery/images/ui-bg_glass_65_ffffff_1x400.png +0 -0
  552. data/vendor/assets/stylesheets/locomotive/jquery/images/ui-bg_glass_75_dadada_1x400.png +0 -0
  553. data/vendor/assets/stylesheets/locomotive/jquery/images/ui-bg_glass_75_e6e6e6_1x400.png +0 -0
  554. data/vendor/assets/stylesheets/locomotive/jquery/images/ui-bg_glass_95_fef1ec_1x400.png +0 -0
  555. data/vendor/assets/stylesheets/locomotive/jquery/images/ui-bg_highlight-soft_75_cccccc_1x100.png +0 -0
  556. data/vendor/assets/stylesheets/locomotive/jquery/images/ui-icons_222222_256x240.png +0 -0
  557. data/vendor/assets/stylesheets/locomotive/jquery/images/ui-icons_2e83ff_256x240.png +0 -0
  558. data/vendor/assets/stylesheets/locomotive/jquery/images/ui-icons_454545_256x240.png +0 -0
  559. data/vendor/assets/stylesheets/locomotive/jquery/images/ui-icons_888888_256x240.png +0 -0
  560. data/vendor/assets/stylesheets/locomotive/jquery/images/ui-icons_cd0a0a_256x240.png +0 -0
  561. data/vendor/assets/stylesheets/locomotive/jquery/images/ui-icons_ffffff_256x240.png +0 -0
  562. data/vendor/assets/stylesheets/locomotive/jquery/ui.css +406 -0
  563. data/vendor/assets/stylesheets/locomotive/liquid_mode.css +7 -0
  564. data/vendor/assets/stylesheets/locomotive/toggle.css.scss +75 -0
  565. metadata +1171 -0
@@ -0,0 +1,7 @@
1
+ .cm-liquid-tag {
2
+ color: #660066;
3
+ }
4
+
5
+ .cm-liquid-variable {
6
+ color: #009999;
7
+ }
@@ -0,0 +1,75 @@
1
+ @import "compass/css3";
2
+
3
+ .toggleSwitch {
4
+ display: inline-block;
5
+ position: relative;
6
+ top: 0px;
7
+ line-height: 18px;
8
+
9
+ span.leftLabel.on {
10
+ width: 29px;
11
+ left: 0px;
12
+ padding-left: 1px;
13
+ color: #fff !important;
14
+ @include single-text-shadow(rgba(0, 0, 0, 0.3), 0, -1px, 0px);
15
+ }
16
+
17
+ span.rightLabel.on {
18
+ width: 27px;
19
+ right: 0px;
20
+ padding-right: 1px;
21
+ color: #888 !important;
22
+ }
23
+
24
+ span.leftLabel, span.rightLabel {
25
+ position: absolute;
26
+ top: 0px;
27
+ width: 27px;
28
+
29
+ line-height: 18px;
30
+ font-size: 10px;
31
+ font-weight: bold;
32
+ text-align: center;
33
+ text-transform: uppercase;
34
+
35
+ display: none;
36
+
37
+ &.on {
38
+ display: inline;
39
+ }
40
+ }
41
+
42
+ div.switchArea {
43
+ float: left;
44
+ width: 54px;
45
+ height: 16px;
46
+ cursor: pointer;
47
+
48
+ border: 1px solid #a3a3a3;
49
+ @include border-radius(3px);
50
+ @include background-image(linear-gradient(top, #d2d1d1, #eeeeee 20%, #f1f1f1 25%, #f1f1f1));
51
+ @include box-shadow(rgba(255, 255, 255, 0.8) 0px 1px 0px 0px);
52
+
53
+ &.on {
54
+ border-color: #1971af;
55
+ @include background-image(linear-gradient(#218bd9, #2abbf2));
56
+ }
57
+ }
58
+
59
+ span.switchHandle {
60
+ position: relative;
61
+ top: -1px;
62
+ display: block;
63
+ width: 25px;
64
+ height: 100%;
65
+ cursor: pointer;
66
+ cursor: hand;
67
+ margin-left: 0;
68
+
69
+ @include background-image(linear-gradient(#f4f4f4, #eeeeee));
70
+
71
+ border: 1px solid rgba(120, 120, 120, 1);
72
+ @include border-radius(3px);
73
+ @include box-shadow(rgba(255, 255, 255, 1) 0px 1px 0px 0px inset, rgba(0, 0, 0, 0.3) 0px 1px 1px 0px);
74
+ }
75
+ }
metadata ADDED
@@ -0,0 +1,1171 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: tribeca_cms
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.1.1
5
+ prerelease:
6
+ platform: ruby
7
+ authors:
8
+ - Brian Dear
9
+ autorequire:
10
+ bindir: bin
11
+ cert_chain: []
12
+ date: 2012-12-09 00:00:00.000000000 Z
13
+ dependencies:
14
+ - !ruby/object:Gem::Dependency
15
+ name: rake
16
+ requirement: !ruby/object:Gem::Requirement
17
+ none: false
18
+ requirements:
19
+ - - ~>
20
+ - !ruby/object:Gem::Version
21
+ version: 0.9.2
22
+ type: :runtime
23
+ prerelease: false
24
+ version_requirements: !ruby/object:Gem::Requirement
25
+ none: false
26
+ requirements:
27
+ - - ~>
28
+ - !ruby/object:Gem::Version
29
+ version: 0.9.2
30
+ - !ruby/object:Gem::Dependency
31
+ name: rails
32
+ requirement: !ruby/object:Gem::Requirement
33
+ none: false
34
+ requirements:
35
+ - - ~>
36
+ - !ruby/object:Gem::Version
37
+ version: 3.2.9
38
+ type: :runtime
39
+ prerelease: false
40
+ version_requirements: !ruby/object:Gem::Requirement
41
+ none: false
42
+ requirements:
43
+ - - ~>
44
+ - !ruby/object:Gem::Version
45
+ version: 3.2.9
46
+ - !ruby/object:Gem::Dependency
47
+ name: devise-encryptable
48
+ requirement: !ruby/object:Gem::Requirement
49
+ none: false
50
+ requirements:
51
+ - - ~>
52
+ - !ruby/object:Gem::Version
53
+ version: 0.1.1
54
+ type: :runtime
55
+ prerelease: false
56
+ version_requirements: !ruby/object:Gem::Requirement
57
+ none: false
58
+ requirements:
59
+ - - ~>
60
+ - !ruby/object:Gem::Version
61
+ version: 0.1.1
62
+ - !ruby/object:Gem::Dependency
63
+ name: devise
64
+ requirement: !ruby/object:Gem::Requirement
65
+ none: false
66
+ requirements:
67
+ - - ~>
68
+ - !ruby/object:Gem::Version
69
+ version: 2.1.2
70
+ type: :runtime
71
+ prerelease: false
72
+ version_requirements: !ruby/object:Gem::Requirement
73
+ none: false
74
+ requirements:
75
+ - - ~>
76
+ - !ruby/object:Gem::Version
77
+ version: 2.1.2
78
+ - !ruby/object:Gem::Dependency
79
+ name: cancan
80
+ requirement: !ruby/object:Gem::Requirement
81
+ none: false
82
+ requirements:
83
+ - - '='
84
+ - !ruby/object:Gem::Version
85
+ version: 1.6.7
86
+ type: :runtime
87
+ prerelease: false
88
+ version_requirements: !ruby/object:Gem::Requirement
89
+ none: false
90
+ requirements:
91
+ - - '='
92
+ - !ruby/object:Gem::Version
93
+ version: 1.6.7
94
+ - !ruby/object:Gem::Dependency
95
+ name: mongo
96
+ requirement: !ruby/object:Gem::Requirement
97
+ none: false
98
+ requirements:
99
+ - - ~>
100
+ - !ruby/object:Gem::Version
101
+ version: 1.5.2
102
+ type: :runtime
103
+ prerelease: false
104
+ version_requirements: !ruby/object:Gem::Requirement
105
+ none: false
106
+ requirements:
107
+ - - ~>
108
+ - !ruby/object:Gem::Version
109
+ version: 1.5.2
110
+ - !ruby/object:Gem::Dependency
111
+ name: bson_ext
112
+ requirement: !ruby/object:Gem::Requirement
113
+ none: false
114
+ requirements:
115
+ - - ~>
116
+ - !ruby/object:Gem::Version
117
+ version: 1.5.2
118
+ type: :runtime
119
+ prerelease: false
120
+ version_requirements: !ruby/object:Gem::Requirement
121
+ none: false
122
+ requirements:
123
+ - - ~>
124
+ - !ruby/object:Gem::Version
125
+ version: 1.5.2
126
+ - !ruby/object:Gem::Dependency
127
+ name: mongoid
128
+ requirement: !ruby/object:Gem::Requirement
129
+ none: false
130
+ requirements:
131
+ - - ~>
132
+ - !ruby/object:Gem::Version
133
+ version: 2.4.12
134
+ type: :runtime
135
+ prerelease: false
136
+ version_requirements: !ruby/object:Gem::Requirement
137
+ none: false
138
+ requirements:
139
+ - - ~>
140
+ - !ruby/object:Gem::Version
141
+ version: 2.4.12
142
+ - !ruby/object:Gem::Dependency
143
+ name: locomotive-mongoid-tree
144
+ requirement: !ruby/object:Gem::Requirement
145
+ none: false
146
+ requirements:
147
+ - - ~>
148
+ - !ruby/object:Gem::Version
149
+ version: 0.6.2
150
+ type: :runtime
151
+ prerelease: false
152
+ version_requirements: !ruby/object:Gem::Requirement
153
+ none: false
154
+ requirements:
155
+ - - ~>
156
+ - !ruby/object:Gem::Version
157
+ version: 0.6.2
158
+ - !ruby/object:Gem::Dependency
159
+ name: custom_fields
160
+ requirement: !ruby/object:Gem::Requirement
161
+ none: false
162
+ requirements:
163
+ - - ~>
164
+ - !ruby/object:Gem::Version
165
+ version: 2.0.0.rc13
166
+ type: :runtime
167
+ prerelease: false
168
+ version_requirements: !ruby/object:Gem::Requirement
169
+ none: false
170
+ requirements:
171
+ - - ~>
172
+ - !ruby/object:Gem::Version
173
+ version: 2.0.0.rc13
174
+ - !ruby/object:Gem::Dependency
175
+ name: kaminari
176
+ requirement: !ruby/object:Gem::Requirement
177
+ none: false
178
+ requirements:
179
+ - - ~>
180
+ - !ruby/object:Gem::Version
181
+ version: 0.13.0
182
+ type: :runtime
183
+ prerelease: false
184
+ version_requirements: !ruby/object:Gem::Requirement
185
+ none: false
186
+ requirements:
187
+ - - ~>
188
+ - !ruby/object:Gem::Version
189
+ version: 0.13.0
190
+ - !ruby/object:Gem::Dependency
191
+ name: haml
192
+ requirement: !ruby/object:Gem::Requirement
193
+ none: false
194
+ requirements:
195
+ - - ~>
196
+ - !ruby/object:Gem::Version
197
+ version: 3.1.7
198
+ type: :runtime
199
+ prerelease: false
200
+ version_requirements: !ruby/object:Gem::Requirement
201
+ none: false
202
+ requirements:
203
+ - - ~>
204
+ - !ruby/object:Gem::Version
205
+ version: 3.1.7
206
+ - !ruby/object:Gem::Dependency
207
+ name: jquery-rails
208
+ requirement: !ruby/object:Gem::Requirement
209
+ none: false
210
+ requirements:
211
+ - - ~>
212
+ - !ruby/object:Gem::Version
213
+ version: 1.0.19
214
+ type: :runtime
215
+ prerelease: false
216
+ version_requirements: !ruby/object:Gem::Requirement
217
+ none: false
218
+ requirements:
219
+ - - ~>
220
+ - !ruby/object:Gem::Version
221
+ version: 1.0.19
222
+ - !ruby/object:Gem::Dependency
223
+ name: rails-backbone
224
+ requirement: !ruby/object:Gem::Requirement
225
+ none: false
226
+ requirements:
227
+ - - ~>
228
+ - !ruby/object:Gem::Version
229
+ version: 0.6.1
230
+ type: :runtime
231
+ prerelease: false
232
+ version_requirements: !ruby/object:Gem::Requirement
233
+ none: false
234
+ requirements:
235
+ - - ~>
236
+ - !ruby/object:Gem::Version
237
+ version: 0.6.1
238
+ - !ruby/object:Gem::Dependency
239
+ name: codemirror-rails
240
+ requirement: !ruby/object:Gem::Requirement
241
+ none: false
242
+ requirements:
243
+ - - ~>
244
+ - !ruby/object:Gem::Version
245
+ version: '2.21'
246
+ type: :runtime
247
+ prerelease: false
248
+ version_requirements: !ruby/object:Gem::Requirement
249
+ none: false
250
+ requirements:
251
+ - - ~>
252
+ - !ruby/object:Gem::Version
253
+ version: '2.21'
254
+ - !ruby/object:Gem::Dependency
255
+ name: locomotive-tinymce-rails
256
+ requirement: !ruby/object:Gem::Requirement
257
+ none: false
258
+ requirements:
259
+ - - ~>
260
+ - !ruby/object:Gem::Version
261
+ version: 3.4.7.4
262
+ type: :runtime
263
+ prerelease: false
264
+ version_requirements: !ruby/object:Gem::Requirement
265
+ none: false
266
+ requirements:
267
+ - - ~>
268
+ - !ruby/object:Gem::Version
269
+ version: 3.4.7.4
270
+ - !ruby/object:Gem::Dependency
271
+ name: locomotive-aloha-rails
272
+ requirement: !ruby/object:Gem::Requirement
273
+ none: false
274
+ requirements:
275
+ - - ~>
276
+ - !ruby/object:Gem::Version
277
+ version: 0.20.1.4
278
+ type: :runtime
279
+ prerelease: false
280
+ version_requirements: !ruby/object:Gem::Requirement
281
+ none: false
282
+ requirements:
283
+ - - ~>
284
+ - !ruby/object:Gem::Version
285
+ version: 0.20.1.4
286
+ - !ruby/object:Gem::Dependency
287
+ name: flash_cookie_session
288
+ requirement: !ruby/object:Gem::Requirement
289
+ none: false
290
+ requirements:
291
+ - - ~>
292
+ - !ruby/object:Gem::Version
293
+ version: 1.1.1
294
+ type: :runtime
295
+ prerelease: false
296
+ version_requirements: !ruby/object:Gem::Requirement
297
+ none: false
298
+ requirements:
299
+ - - ~>
300
+ - !ruby/object:Gem::Version
301
+ version: 1.1.1
302
+ - !ruby/object:Gem::Dependency
303
+ name: locomotive_liquid
304
+ requirement: !ruby/object:Gem::Requirement
305
+ none: false
306
+ requirements:
307
+ - - ~>
308
+ - !ruby/object:Gem::Version
309
+ version: 2.4.1
310
+ type: :runtime
311
+ prerelease: false
312
+ version_requirements: !ruby/object:Gem::Requirement
313
+ none: false
314
+ requirements:
315
+ - - ~>
316
+ - !ruby/object:Gem::Version
317
+ version: 2.4.1
318
+ - !ruby/object:Gem::Dependency
319
+ name: formtastic
320
+ requirement: !ruby/object:Gem::Requirement
321
+ none: false
322
+ requirements:
323
+ - - ~>
324
+ - !ruby/object:Gem::Version
325
+ version: 2.0.2
326
+ type: :runtime
327
+ prerelease: false
328
+ version_requirements: !ruby/object:Gem::Requirement
329
+ none: false
330
+ requirements:
331
+ - - ~>
332
+ - !ruby/object:Gem::Version
333
+ version: 2.0.2
334
+ - !ruby/object:Gem::Dependency
335
+ name: responders
336
+ requirement: !ruby/object:Gem::Requirement
337
+ none: false
338
+ requirements:
339
+ - - ~>
340
+ - !ruby/object:Gem::Version
341
+ version: 0.9.2
342
+ type: :runtime
343
+ prerelease: false
344
+ version_requirements: !ruby/object:Gem::Requirement
345
+ none: false
346
+ requirements:
347
+ - - ~>
348
+ - !ruby/object:Gem::Version
349
+ version: 0.9.2
350
+ - !ruby/object:Gem::Dependency
351
+ name: cells
352
+ requirement: !ruby/object:Gem::Requirement
353
+ none: false
354
+ requirements:
355
+ - - ~>
356
+ - !ruby/object:Gem::Version
357
+ version: 3.8.0
358
+ type: :runtime
359
+ prerelease: false
360
+ version_requirements: !ruby/object:Gem::Requirement
361
+ none: false
362
+ requirements:
363
+ - - ~>
364
+ - !ruby/object:Gem::Version
365
+ version: 3.8.0
366
+ - !ruby/object:Gem::Dependency
367
+ name: RedCloth
368
+ requirement: !ruby/object:Gem::Requirement
369
+ none: false
370
+ requirements:
371
+ - - ~>
372
+ - !ruby/object:Gem::Version
373
+ version: 4.2.8
374
+ type: :runtime
375
+ prerelease: false
376
+ version_requirements: !ruby/object:Gem::Requirement
377
+ none: false
378
+ requirements:
379
+ - - ~>
380
+ - !ruby/object:Gem::Version
381
+ version: 4.2.8
382
+ - !ruby/object:Gem::Dependency
383
+ name: sanitize
384
+ requirement: !ruby/object:Gem::Requirement
385
+ none: false
386
+ requirements:
387
+ - - ~>
388
+ - !ruby/object:Gem::Version
389
+ version: 2.0.3
390
+ type: :runtime
391
+ prerelease: false
392
+ version_requirements: !ruby/object:Gem::Requirement
393
+ none: false
394
+ requirements:
395
+ - - ~>
396
+ - !ruby/object:Gem::Version
397
+ version: 2.0.3
398
+ - !ruby/object:Gem::Dependency
399
+ name: highline
400
+ requirement: !ruby/object:Gem::Requirement
401
+ none: false
402
+ requirements:
403
+ - - ~>
404
+ - !ruby/object:Gem::Version
405
+ version: 1.6.2
406
+ type: :runtime
407
+ prerelease: false
408
+ version_requirements: !ruby/object:Gem::Requirement
409
+ none: false
410
+ requirements:
411
+ - - ~>
412
+ - !ruby/object:Gem::Version
413
+ version: 1.6.2
414
+ - !ruby/object:Gem::Dependency
415
+ name: unidecoder
416
+ requirement: !ruby/object:Gem::Requirement
417
+ none: false
418
+ requirements:
419
+ - - ~>
420
+ - !ruby/object:Gem::Version
421
+ version: 1.1.1
422
+ type: :runtime
423
+ prerelease: false
424
+ version_requirements: !ruby/object:Gem::Requirement
425
+ none: false
426
+ requirements:
427
+ - - ~>
428
+ - !ruby/object:Gem::Version
429
+ version: 1.1.1
430
+ - !ruby/object:Gem::Dependency
431
+ name: rmagick
432
+ requirement: !ruby/object:Gem::Requirement
433
+ none: false
434
+ requirements:
435
+ - - ~>
436
+ - !ruby/object:Gem::Version
437
+ version: 2.12.2
438
+ type: :runtime
439
+ prerelease: false
440
+ version_requirements: !ruby/object:Gem::Requirement
441
+ none: false
442
+ requirements:
443
+ - - ~>
444
+ - !ruby/object:Gem::Version
445
+ version: 2.12.2
446
+ - !ruby/object:Gem::Dependency
447
+ name: carrierwave-mongoid
448
+ requirement: !ruby/object:Gem::Requirement
449
+ none: false
450
+ requirements:
451
+ - - ~>
452
+ - !ruby/object:Gem::Version
453
+ version: 0.2.1
454
+ type: :runtime
455
+ prerelease: false
456
+ version_requirements: !ruby/object:Gem::Requirement
457
+ none: false
458
+ requirements:
459
+ - - ~>
460
+ - !ruby/object:Gem::Version
461
+ version: 0.2.1
462
+ - !ruby/object:Gem::Dependency
463
+ name: fog
464
+ requirement: !ruby/object:Gem::Requirement
465
+ none: false
466
+ requirements:
467
+ - - ~>
468
+ - !ruby/object:Gem::Version
469
+ version: 1.3.1
470
+ type: :runtime
471
+ prerelease: false
472
+ version_requirements: !ruby/object:Gem::Requirement
473
+ none: false
474
+ requirements:
475
+ - - ~>
476
+ - !ruby/object:Gem::Version
477
+ version: 1.3.1
478
+ - !ruby/object:Gem::Dependency
479
+ name: dragonfly
480
+ requirement: !ruby/object:Gem::Requirement
481
+ none: false
482
+ requirements:
483
+ - - ~>
484
+ - !ruby/object:Gem::Version
485
+ version: 0.9.8
486
+ type: :runtime
487
+ prerelease: false
488
+ version_requirements: !ruby/object:Gem::Requirement
489
+ none: false
490
+ requirements:
491
+ - - ~>
492
+ - !ruby/object:Gem::Version
493
+ version: 0.9.8
494
+ - !ruby/object:Gem::Dependency
495
+ name: rack-cache
496
+ requirement: !ruby/object:Gem::Requirement
497
+ none: false
498
+ requirements:
499
+ - - ~>
500
+ - !ruby/object:Gem::Version
501
+ version: '1.1'
502
+ type: :runtime
503
+ prerelease: false
504
+ version_requirements: !ruby/object:Gem::Requirement
505
+ none: false
506
+ requirements:
507
+ - - ~>
508
+ - !ruby/object:Gem::Version
509
+ version: '1.1'
510
+ - !ruby/object:Gem::Dependency
511
+ name: mimetype-fu
512
+ requirement: !ruby/object:Gem::Requirement
513
+ none: false
514
+ requirements:
515
+ - - ~>
516
+ - !ruby/object:Gem::Version
517
+ version: 0.1.2
518
+ type: :runtime
519
+ prerelease: false
520
+ version_requirements: !ruby/object:Gem::Requirement
521
+ none: false
522
+ requirements:
523
+ - - ~>
524
+ - !ruby/object:Gem::Version
525
+ version: 0.1.2
526
+ - !ruby/object:Gem::Dependency
527
+ name: multi_json
528
+ requirement: !ruby/object:Gem::Requirement
529
+ none: false
530
+ requirements:
531
+ - - ~>
532
+ - !ruby/object:Gem::Version
533
+ version: 1.3.4
534
+ type: :runtime
535
+ prerelease: false
536
+ version_requirements: !ruby/object:Gem::Requirement
537
+ none: false
538
+ requirements:
539
+ - - ~>
540
+ - !ruby/object:Gem::Version
541
+ version: 1.3.4
542
+ - !ruby/object:Gem::Dependency
543
+ name: httparty
544
+ requirement: !ruby/object:Gem::Requirement
545
+ none: false
546
+ requirements:
547
+ - - ~>
548
+ - !ruby/object:Gem::Version
549
+ version: 0.8.1
550
+ type: :runtime
551
+ prerelease: false
552
+ version_requirements: !ruby/object:Gem::Requirement
553
+ none: false
554
+ requirements:
555
+ - - ~>
556
+ - !ruby/object:Gem::Version
557
+ version: 0.8.1
558
+ - !ruby/object:Gem::Dependency
559
+ name: actionmailer-with-request
560
+ requirement: !ruby/object:Gem::Requirement
561
+ none: false
562
+ requirements:
563
+ - - ~>
564
+ - !ruby/object:Gem::Version
565
+ version: 0.3.0
566
+ type: :runtime
567
+ prerelease: false
568
+ version_requirements: !ruby/object:Gem::Requirement
569
+ none: false
570
+ requirements:
571
+ - - ~>
572
+ - !ruby/object:Gem::Version
573
+ version: 0.3.0
574
+ description: A custom modification of locomotive
575
+ email:
576
+ - brian@icouch.me
577
+ executables: []
578
+ extensions: []
579
+ extra_rdoc_files:
580
+ - LICENSE
581
+ - README.textile
582
+ files:
583
+ - Gemfile
584
+ - app/assets/images/locomotive/background/body.png
585
+ - app/assets/images/locomotive/datepicker/ui-widget-content-top.png
586
+ - app/assets/images/locomotive/form/error-arrow.png
587
+ - app/assets/images/locomotive/form/input-sep.png
588
+ - app/assets/images/locomotive/icons/flags/de.png
589
+ - app/assets/images/locomotive/icons/flags/en.png
590
+ - app/assets/images/locomotive/icons/flags/es.png
591
+ - app/assets/images/locomotive/icons/flags/et.png
592
+ - app/assets/images/locomotive/icons/flags/fr.png
593
+ - app/assets/images/locomotive/icons/flags/it.png
594
+ - app/assets/images/locomotive/icons/flags/nb.png
595
+ - app/assets/images/locomotive/icons/flags/nl.png
596
+ - app/assets/images/locomotive/icons/flags/pl.png
597
+ - app/assets/images/locomotive/icons/flags/pt-BR.png
598
+ - app/assets/images/locomotive/icons/flags/ru.png
599
+ - app/assets/images/locomotive/icons/start.png
600
+ - app/assets/images/locomotive/list/empty.png
601
+ - app/assets/images/locomotive/list/item-left.png
602
+ - app/assets/images/locomotive/nocoffee.png
603
+ - app/assets/images/locomotive/plugins/sites_picker_top_arrow.png
604
+ - app/assets/images/locomotive/rails.png
605
+ - app/assets/javascripts/aloha/plugins/custom/locomotive_media/css/image.css
606
+ - app/assets/javascripts/aloha/plugins/custom/locomotive_media/img/image.gif
607
+ - app/assets/javascripts/aloha/plugins/custom/locomotive_media/lib/locomotive_media-plugin.js
608
+ - app/assets/javascripts/aloha/plugins/custom/locomotive_media/nls/fr/i18n.js
609
+ - app/assets/javascripts/aloha/plugins/custom/locomotive_media/nls/i18n.js
610
+ - app/assets/javascripts/aloha/plugins/custom/locomotive_media/package.json
611
+ - app/assets/javascripts/locomotive/aloha.js.coffee
612
+ - app/assets/javascripts/locomotive/application.js.coffee
613
+ - app/assets/javascripts/locomotive/inline_editor.js.coffee
614
+ - app/assets/javascripts/locomotive/models/account.js.coffee
615
+ - app/assets/javascripts/locomotive/models/content_asset.js.coffee
616
+ - app/assets/javascripts/locomotive/models/content_entry.js.coffee
617
+ - app/assets/javascripts/locomotive/models/content_type.js.coffee
618
+ - app/assets/javascripts/locomotive/models/custom_field.js.coffee
619
+ - app/assets/javascripts/locomotive/models/custom_field_select_option.js.coffee
620
+ - app/assets/javascripts/locomotive/models/domain.js.coffee
621
+ - app/assets/javascripts/locomotive/models/editable_element.js.coffee
622
+ - app/assets/javascripts/locomotive/models/membership.js.coffee
623
+ - app/assets/javascripts/locomotive/models/page.js.coffee
624
+ - app/assets/javascripts/locomotive/models/site.js.coffee
625
+ - app/assets/javascripts/locomotive/models/snippet.js.coffee
626
+ - app/assets/javascripts/locomotive/models/theme_asset.js.coffee
627
+ - app/assets/javascripts/locomotive/models/translation.js.coffee
628
+ - app/assets/javascripts/locomotive/not_logged_in.js.coffee
629
+ - app/assets/javascripts/locomotive/utils/aloha_settings.js.coffee
630
+ - app/assets/javascripts/locomotive/utils/core_ext.js
631
+ - app/assets/javascripts/locomotive/utils/growl.js
632
+ - app/assets/javascripts/locomotive/utils/handlebar_helpers.js.coffee
633
+ - app/assets/javascripts/locomotive/utils/tinymce_settings.js.coffee
634
+ - app/assets/javascripts/locomotive/views/application_view.js.coffee
635
+ - app/assets/javascripts/locomotive/views/content_assets/picker_item_view.js.coffee
636
+ - app/assets/javascripts/locomotive/views/content_assets/picker_view.js.coffee
637
+ - app/assets/javascripts/locomotive/views/content_entries/_form_view.js.coffee
638
+ - app/assets/javascripts/locomotive/views/content_entries/_popup_form_view.js.coffee
639
+ - app/assets/javascripts/locomotive/views/content_entries/edit_view.js.coffee
640
+ - app/assets/javascripts/locomotive/views/content_entries/index_view.js.coffee
641
+ - app/assets/javascripts/locomotive/views/content_entries/new_view.js.coffee
642
+ - app/assets/javascripts/locomotive/views/content_types/_form_view.js.coffee
643
+ - app/assets/javascripts/locomotive/views/content_types/custom_field_entry_view.js.coffee
644
+ - app/assets/javascripts/locomotive/views/content_types/custom_fields_view.coffee
645
+ - app/assets/javascripts/locomotive/views/content_types/edit_view.coffee
646
+ - app/assets/javascripts/locomotive/views/content_types/new_view.js.coffee
647
+ - app/assets/javascripts/locomotive/views/content_types/select_options_view.js.coffee
648
+ - app/assets/javascripts/locomotive/views/current_site/edit_view.js.coffee
649
+ - app/assets/javascripts/locomotive/views/editable_elements/control_view.js.coffee
650
+ - app/assets/javascripts/locomotive/views/editable_elements/edit_all_view.js.coffee
651
+ - app/assets/javascripts/locomotive/views/editable_elements/file_view.js.coffee
652
+ - app/assets/javascripts/locomotive/views/editable_elements/long_text_view.js.coffee
653
+ - app/assets/javascripts/locomotive/views/editable_elements/short_text_view.js.coffee
654
+ - app/assets/javascripts/locomotive/views/inline_editor/application_view.js.coffee
655
+ - app/assets/javascripts/locomotive/views/inline_editor/toolbar_view.js.coffee
656
+ - app/assets/javascripts/locomotive/views/my_account/edit_view.js.coffee
657
+ - app/assets/javascripts/locomotive/views/pages/_form_view.js.coffee
658
+ - app/assets/javascripts/locomotive/views/pages/edit_view.js.coffee
659
+ - app/assets/javascripts/locomotive/views/pages/index_view.js.coffee
660
+ - app/assets/javascripts/locomotive/views/pages/list_view.js.coffee
661
+ - app/assets/javascripts/locomotive/views/pages/new_view.js.coffee
662
+ - app/assets/javascripts/locomotive/views/shared/asset_picker_view.js.coffee
663
+ - app/assets/javascripts/locomotive/views/shared/fields/file_view.js.coffee
664
+ - app/assets/javascripts/locomotive/views/shared/fields/has_many_view.js.coffee
665
+ - app/assets/javascripts/locomotive/views/shared/fields/many_to_many_view.js.coffee
666
+ - app/assets/javascripts/locomotive/views/shared/fields/select_view.js.coffee
667
+ - app/assets/javascripts/locomotive/views/shared/form_view.js.coffee
668
+ - app/assets/javascripts/locomotive/views/shared/list_item_view.js.coffee
669
+ - app/assets/javascripts/locomotive/views/shared/list_view.js.coffee
670
+ - app/assets/javascripts/locomotive/views/sites/domain_entry_view.js.coffee
671
+ - app/assets/javascripts/locomotive/views/sites/domains_view.js.coffee
672
+ - app/assets/javascripts/locomotive/views/sites/membership_entry_view.js.coffee
673
+ - app/assets/javascripts/locomotive/views/sites/memberships_view.js.coffee
674
+ - app/assets/javascripts/locomotive/views/sites/new_view.js.coffee
675
+ - app/assets/javascripts/locomotive/views/snippets/_form_view.js.coffee
676
+ - app/assets/javascripts/locomotive/views/snippets/edit_view.js.coffee
677
+ - app/assets/javascripts/locomotive/views/snippets/list_item_view.js.coffee
678
+ - app/assets/javascripts/locomotive/views/snippets/list_view.js.coffee
679
+ - app/assets/javascripts/locomotive/views/snippets/new_view.js.coffee
680
+ - app/assets/javascripts/locomotive/views/theme_assets/_form_view.js.coffee
681
+ - app/assets/javascripts/locomotive/views/theme_assets/edit_view.js.coffee
682
+ - app/assets/javascripts/locomotive/views/theme_assets/image_picker_view.js.coffee
683
+ - app/assets/javascripts/locomotive/views/theme_assets/index_view.js.coffee
684
+ - app/assets/javascripts/locomotive/views/theme_assets/list_item_view.js.coffee
685
+ - app/assets/javascripts/locomotive/views/theme_assets/list_view.js.coffee
686
+ - app/assets/javascripts/locomotive/views/theme_assets/new_view.js.coffee
687
+ - app/assets/javascripts/locomotive/views/translations/_form_view.js.coffee
688
+ - app/assets/javascripts/locomotive/views/translations/edit_view.js.coffee
689
+ - app/assets/javascripts/locomotive/views/translations/new_view.js.coffee
690
+ - app/assets/javascripts/locomotive.js
691
+ - app/assets/javascripts/tinymce/plugins/jqueryinlinepopups/editor_plugin.js
692
+ - app/assets/javascripts/tinymce/plugins/locomotive_media/editor_plugin.js
693
+ - app/assets/javascripts/tinymce/themes/advanced/skins/locomotive/content.css
694
+ - app/assets/javascripts/tinymce/themes/advanced/skins/locomotive/dialog.css.scss
695
+ - app/assets/javascripts/tinymce/themes/advanced/skins/locomotive/img/butt2.png
696
+ - app/assets/javascripts/tinymce/themes/advanced/skins/locomotive/img/button-bg.png
697
+ - app/assets/javascripts/tinymce/themes/advanced/skins/locomotive/img/buttons.png
698
+ - app/assets/javascripts/tinymce/themes/advanced/skins/locomotive/img/down_arrow.gif
699
+ - app/assets/javascripts/tinymce/themes/advanced/skins/locomotive/img/fade-butt.png
700
+ - app/assets/javascripts/tinymce/themes/advanced/skins/locomotive/img/icons.png
701
+ - app/assets/javascripts/tinymce/themes/advanced/skins/locomotive/img/items.gif
702
+ - app/assets/javascripts/tinymce/themes/advanced/skins/locomotive/img/menu-arrow.png
703
+ - app/assets/javascripts/tinymce/themes/advanced/skins/locomotive/img/menu-check.png
704
+ - app/assets/javascripts/tinymce/themes/advanced/skins/locomotive/img/progress.gif
705
+ - app/assets/javascripts/tinymce/themes/advanced/skins/locomotive/img/tabs.gif
706
+ - app/assets/javascripts/tinymce/themes/advanced/skins/locomotive/img/toolbarbg.png
707
+ - app/assets/javascripts/tinymce/themes/advanced/skins/locomotive/ui.css
708
+ - app/assets/stylesheets/locomotive/backoffice/_box.css.scss
709
+ - app/assets/stylesheets/locomotive/backoffice/_buttons.css.scss
710
+ - app/assets/stylesheets/locomotive/backoffice/application.css.scss
711
+ - app/assets/stylesheets/locomotive/backoffice/codemirror_changes.css.scss
712
+ - app/assets/stylesheets/locomotive/backoffice/content_assets.css.scss
713
+ - app/assets/stylesheets/locomotive/backoffice/datepicker.css.scss
714
+ - app/assets/stylesheets/locomotive/backoffice/dialog_changes.css.scss
715
+ - app/assets/stylesheets/locomotive/backoffice/editable_elements.css.scss
716
+ - app/assets/stylesheets/locomotive/backoffice/formtastic_changes.css.scss
717
+ - app/assets/stylesheets/locomotive/backoffice/layout.css.scss
718
+ - app/assets/stylesheets/locomotive/backoffice/menu/_colors.css.scss
719
+ - app/assets/stylesheets/locomotive/backoffice/menu/_helpers.css.scss
720
+ - app/assets/stylesheets/locomotive/backoffice/menu/default.css.scss
721
+ - app/assets/stylesheets/locomotive/backoffice/menu/main.css.scss
722
+ - app/assets/stylesheets/locomotive/backoffice/menu/sub.css.scss
723
+ - app/assets/stylesheets/locomotive/backoffice/menu.css
724
+ - app/assets/stylesheets/locomotive/backoffice/sites_picker.css.scss
725
+ - app/assets/stylesheets/locomotive/inline_editor/_buttons.css.scss
726
+ - app/assets/stylesheets/locomotive/inline_editor/layout.css.scss
727
+ - app/assets/stylesheets/locomotive/inline_editor/toolbar.css.scss
728
+ - app/assets/stylesheets/locomotive/inline_editor.css
729
+ - app/assets/stylesheets/locomotive/not_logged_in/installation.css.scss
730
+ - app/assets/stylesheets/locomotive/not_logged_in/layout.css.scss
731
+ - app/assets/stylesheets/locomotive/not_logged_in.css
732
+ - app/assets/stylesheets/locomotive/shared/_helpers.css.scss
733
+ - app/assets/stylesheets/locomotive/shared/_picker.css.scss
734
+ - app/assets/stylesheets/locomotive/shared/common.css.scss
735
+ - app/assets/stylesheets/locomotive/shared/content_locale_picker.css.scss
736
+ - app/assets/stylesheets/locomotive/shared/growl.css.scss
737
+ - app/assets/stylesheets/locomotive.css
738
+ - app/cells/locomotive/content_locale_picker/show.html.haml
739
+ - app/cells/locomotive/content_locale_picker_cell.rb
740
+ - app/cells/locomotive/global_actions/show.html.haml
741
+ - app/cells/locomotive/global_actions_cell.rb
742
+ - app/cells/locomotive/main_menu/show.html.haml
743
+ - app/cells/locomotive/main_menu_cell.rb
744
+ - app/cells/locomotive/menu/show.html.haml
745
+ - app/cells/locomotive/menu_cell.rb
746
+ - app/cells/locomotive/settings_menu_cell.rb
747
+ - app/cells/locomotive/sub_menu/show.html.haml
748
+ - app/cells/locomotive/sub_menu_cell.rb
749
+ - app/controllers/locomotive/accounts_controller.rb
750
+ - app/controllers/locomotive/api/accounts_controller.rb
751
+ - app/controllers/locomotive/api/base_controller.rb
752
+ - app/controllers/locomotive/api/content_assets_controller.rb
753
+ - app/controllers/locomotive/api/content_entries_controller.rb
754
+ - app/controllers/locomotive/api/content_types_controller.rb
755
+ - app/controllers/locomotive/api/current_site_controller.rb
756
+ - app/controllers/locomotive/api/documentation_controller.rb
757
+ - app/controllers/locomotive/api/memberships_controller.rb
758
+ - app/controllers/locomotive/api/my_account_controller.rb
759
+ - app/controllers/locomotive/api/pages_controller.rb
760
+ - app/controllers/locomotive/api/sites_controller.rb
761
+ - app/controllers/locomotive/api/snippets_controller.rb
762
+ - app/controllers/locomotive/api/theme_assets_controller.rb
763
+ - app/controllers/locomotive/api/tokens_controller.rb
764
+ - app/controllers/locomotive/api/translations_controller.rb
765
+ - app/controllers/locomotive/base_controller.rb
766
+ - app/controllers/locomotive/content_assets_controller.rb
767
+ - app/controllers/locomotive/content_entries_controller.rb
768
+ - app/controllers/locomotive/content_types_controller.rb
769
+ - app/controllers/locomotive/current_site_controller.rb
770
+ - app/controllers/locomotive/installation_controller.rb
771
+ - app/controllers/locomotive/memberships_controller.rb
772
+ - app/controllers/locomotive/my_account_controller.rb
773
+ - app/controllers/locomotive/pages_controller.rb
774
+ - app/controllers/locomotive/passwords_controller.rb
775
+ - app/controllers/locomotive/public/base_controller.rb
776
+ - app/controllers/locomotive/public/content_entries_controller.rb
777
+ - app/controllers/locomotive/public/pages_controller.rb
778
+ - app/controllers/locomotive/public/robots_controller.rb
779
+ - app/controllers/locomotive/public/sitemaps_controller.rb
780
+ - app/controllers/locomotive/sessions_controller.rb
781
+ - app/controllers/locomotive/sites_controller.rb
782
+ - app/controllers/locomotive/snippets_controller.rb
783
+ - app/controllers/locomotive/theme_assets_controller.rb
784
+ - app/controllers/locomotive/translations_controller.rb
785
+ - app/helpers/locomotive/accounts_helper.rb
786
+ - app/helpers/locomotive/base_helper.rb
787
+ - app/helpers/locomotive/content_entries_helper.rb
788
+ - app/helpers/locomotive/content_types_helper.rb
789
+ - app/helpers/locomotive/custom_fields_helper.rb
790
+ - app/helpers/locomotive/installation_helper.rb
791
+ - app/helpers/locomotive/pages_helper.rb
792
+ - app/helpers/locomotive/sites_helper.rb
793
+ - app/helpers/locomotive/snippets_helper.rb
794
+ - app/helpers/locomotive/theme_assets_helper.rb
795
+ - app/helpers/locomotive/translations_helper.rb
796
+ - app/inputs/locomotive/code_input.rb
797
+ - app/inputs/locomotive/empty_input.rb
798
+ - app/inputs/locomotive/file_input.rb
799
+ - app/inputs/locomotive/locale_input.rb
800
+ - app/inputs/locomotive/locales_input.rb
801
+ - app/inputs/locomotive/rte_input.rb
802
+ - app/inputs/locomotive/small_code_input.rb
803
+ - app/inputs/locomotive/subdomain_input.rb
804
+ - app/inputs/locomotive/toggle_input.rb
805
+ - app/mailers/locomotive/devise_mailer.rb
806
+ - app/mailers/locomotive/notifications.rb
807
+ - app/models/locomotive/ability.rb
808
+ - app/models/locomotive/account.rb
809
+ - app/models/locomotive/content_asset.rb
810
+ - app/models/locomotive/content_entry.rb
811
+ - app/models/locomotive/content_type.rb
812
+ - app/models/locomotive/editable_control.rb
813
+ - app/models/locomotive/editable_element.rb
814
+ - app/models/locomotive/editable_file.rb
815
+ - app/models/locomotive/editable_long_text.rb
816
+ - app/models/locomotive/editable_short_text.rb
817
+ - app/models/locomotive/extensions/asset/types.rb
818
+ - app/models/locomotive/extensions/asset/vignette.rb
819
+ - app/models/locomotive/extensions/content_type/default_values.rb
820
+ - app/models/locomotive/extensions/content_type/item_template.rb
821
+ - app/models/locomotive/extensions/content_type/sync.rb
822
+ - app/models/locomotive/extensions/page/editable_elements.rb
823
+ - app/models/locomotive/extensions/page/listed.rb
824
+ - app/models/locomotive/extensions/page/parse.rb
825
+ - app/models/locomotive/extensions/page/redirect.rb
826
+ - app/models/locomotive/extensions/page/render.rb
827
+ - app/models/locomotive/extensions/page/templatized.rb
828
+ - app/models/locomotive/extensions/page/tree.rb
829
+ - app/models/locomotive/extensions/shared/seo.rb
830
+ - app/models/locomotive/extensions/site/first_installation.rb
831
+ - app/models/locomotive/extensions/site/locales.rb
832
+ - app/models/locomotive/extensions/site/subdomain_domains.rb
833
+ - app/models/locomotive/membership.rb
834
+ - app/models/locomotive/page.rb
835
+ - app/models/locomotive/site.rb
836
+ - app/models/locomotive/snippet.rb
837
+ - app/models/locomotive/theme_asset.rb
838
+ - app/models/locomotive/translation.rb
839
+ - app/presenters/locomotive/account_presenter.rb
840
+ - app/presenters/locomotive/base_presenter.rb
841
+ - app/presenters/locomotive/content_asset_presenter.rb
842
+ - app/presenters/locomotive/content_entry_presenter.rb
843
+ - app/presenters/locomotive/content_field_presenter.rb
844
+ - app/presenters/locomotive/content_type_presenter.rb
845
+ - app/presenters/locomotive/editable_control_presenter.rb
846
+ - app/presenters/locomotive/editable_element_presenter.rb
847
+ - app/presenters/locomotive/editable_file_presenter.rb
848
+ - app/presenters/locomotive/editable_long_text_presenter.rb
849
+ - app/presenters/locomotive/editable_short_text_presenter.rb
850
+ - app/presenters/locomotive/membership_presenter.rb
851
+ - app/presenters/locomotive/page_presenter.rb
852
+ - app/presenters/locomotive/site_presenter.rb
853
+ - app/presenters/locomotive/snippet_presenter.rb
854
+ - app/presenters/locomotive/theme_asset_presenter.rb
855
+ - app/presenters/locomotive/translation_presenter.rb
856
+ - app/uploaders/locomotive/content_asset_uploader.rb
857
+ - app/uploaders/locomotive/editable_file_uploader.rb
858
+ - app/uploaders/locomotive/theme_asset_uploader.rb
859
+ - app/views/locomotive/accounts/new.html.haml
860
+ - app/views/locomotive/content_assets/_asset.html.haml
861
+ - app/views/locomotive/content_assets/_picker.html.haml
862
+ - app/views/locomotive/content_entries/_form.html.haml
863
+ - app/views/locomotive/content_entries/_list.html.haml
864
+ - app/views/locomotive/content_entries/edit.html.haml
865
+ - app/views/locomotive/content_entries/index.html.haml
866
+ - app/views/locomotive/content_entries/new.html.haml
867
+ - app/views/locomotive/content_types/_form.html.haml
868
+ - app/views/locomotive/content_types/edit.html.haml
869
+ - app/views/locomotive/content_types/new.html.haml
870
+ - app/views/locomotive/current_site/_form.html.haml
871
+ - app/views/locomotive/current_site/edit.html.haml
872
+ - app/views/locomotive/custom_fields/_form.html.haml
873
+ - app/views/locomotive/custom_fields/_select_templates.html.haml
874
+ - app/views/locomotive/custom_fields/types/_belongs_to.html.haml
875
+ - app/views/locomotive/custom_fields/types/_boolean.html.haml
876
+ - app/views/locomotive/custom_fields/types/_date.html.haml
877
+ - app/views/locomotive/custom_fields/types/_file.html.haml
878
+ - app/views/locomotive/custom_fields/types/_has_many.html.haml
879
+ - app/views/locomotive/custom_fields/types/_many_to_many.html.haml
880
+ - app/views/locomotive/custom_fields/types/_select.html.haml
881
+ - app/views/locomotive/custom_fields/types/_string.html.haml
882
+ - app/views/locomotive/custom_fields/types/_text.html.haml
883
+ - app/views/locomotive/devise_mailer/reset_password_instructions.html.haml
884
+ - app/views/locomotive/errors/404.html.haml
885
+ - app/views/locomotive/errors/500.html.haml
886
+ - app/views/locomotive/errors/no_page.html.haml
887
+ - app/views/locomotive/errors/no_site.html.haml
888
+ - app/views/locomotive/installation/step_1.html.haml
889
+ - app/views/locomotive/installation/step_2.html.haml
890
+ - app/views/locomotive/layouts/application.html.haml
891
+ - app/views/locomotive/layouts/error.html.haml
892
+ - app/views/locomotive/layouts/not_logged_in.html.haml
893
+ - app/views/locomotive/memberships/new.html.haml
894
+ - app/views/locomotive/my_account/edit.html.haml
895
+ - app/views/locomotive/notifications/new_content_entry.html.haml
896
+ - app/views/locomotive/pages/_editable_elements.html.haml
897
+ - app/views/locomotive/pages/_form.html.haml
898
+ - app/views/locomotive/pages/_page.html.haml
899
+ - app/views/locomotive/pages/edit.html.haml
900
+ - app/views/locomotive/pages/index.html.haml
901
+ - app/views/locomotive/pages/new.html.haml
902
+ - app/views/locomotive/passwords/edit.html.haml
903
+ - app/views/locomotive/passwords/new.html.haml
904
+ - app/views/locomotive/public/pages/show_toolbar.html.haml
905
+ - app/views/locomotive/public/sitemaps/show.xml.builder
906
+ - app/views/locomotive/sessions/new.html.haml
907
+ - app/views/locomotive/shared/_footer.html.haml
908
+ - app/views/locomotive/shared/_form_actions.html.haml
909
+ - app/views/locomotive/shared/_head.html.haml
910
+ - app/views/locomotive/shared/_header.html.haml
911
+ - app/views/locomotive/shared/_locale_picker_link.html.haml
912
+ - app/views/locomotive/shared/_main_app_head.html.haml
913
+ - app/views/locomotive/shared/_site_picker.html.haml
914
+ - app/views/locomotive/shared/actions/_contents.html.haml
915
+ - app/views/locomotive/shared/menu/_contents.html.haml
916
+ - app/views/locomotive/sites/_domains.html.haml
917
+ - app/views/locomotive/sites/_form.html.haml
918
+ - app/views/locomotive/sites/_memberships.html.haml
919
+ - app/views/locomotive/sites/new.html.haml
920
+ - app/views/locomotive/snippets/_form.html.haml
921
+ - app/views/locomotive/snippets/_snippet.html.haml
922
+ - app/views/locomotive/snippets/edit.html.haml
923
+ - app/views/locomotive/snippets/new.html.haml
924
+ - app/views/locomotive/theme_assets/_asset.html.haml
925
+ - app/views/locomotive/theme_assets/_form.html.haml
926
+ - app/views/locomotive/theme_assets/_list.html.haml
927
+ - app/views/locomotive/theme_assets/_picker.html.haml
928
+ - app/views/locomotive/theme_assets/edit.html.haml
929
+ - app/views/locomotive/theme_assets/index.html.haml
930
+ - app/views/locomotive/theme_assets/new.html.haml
931
+ - app/views/locomotive/translations/_form.html.haml
932
+ - app/views/locomotive/translations/edit.html.haml
933
+ - app/views/locomotive/translations/index.html.haml
934
+ - app/views/locomotive/translations/new.html.haml
935
+ - config/cucumber.yml
936
+ - config/initializers/deny_phantomjs_ttf.rb
937
+ - config/initializers/devise.rb
938
+ - config/initializers/formtastic.rb
939
+ - config/initializers/haml.rb
940
+ - config/initializers/locomotive_loaded_first.rb
941
+ - config/locales/admin_ui.de.yml
942
+ - config/locales/admin_ui.en.yml
943
+ - config/locales/admin_ui.es.yml
944
+ - config/locales/admin_ui.et.yml
945
+ - config/locales/admin_ui.fr.yml
946
+ - config/locales/admin_ui.it.yml
947
+ - config/locales/admin_ui.nb.yml
948
+ - config/locales/admin_ui.nl.yml
949
+ - config/locales/admin_ui.pl.yml
950
+ - config/locales/admin_ui.pt-BR.yml
951
+ - config/locales/admin_ui.ru.yml
952
+ - config/locales/carrierwave.de.yml
953
+ - config/locales/carrierwave.en.yml
954
+ - config/locales/carrierwave.es.yml
955
+ - config/locales/carrierwave.et.yml
956
+ - config/locales/carrierwave.fr.yml
957
+ - config/locales/carrierwave.it.yml
958
+ - config/locales/carrierwave.nb.yml
959
+ - config/locales/carrierwave.nl.yml
960
+ - config/locales/carrierwave.pl.yml
961
+ - config/locales/carrierwave.pt-BR.yml
962
+ - config/locales/carrierwave.ru.yml
963
+ - config/locales/default.de.yml
964
+ - config/locales/default.en.yml
965
+ - config/locales/default.es.yml
966
+ - config/locales/default.et.yml
967
+ - config/locales/default.fr.yml
968
+ - config/locales/default.it.yml
969
+ - config/locales/default.nb.yml
970
+ - config/locales/default.nl.yml
971
+ - config/locales/default.pl.yml
972
+ - config/locales/default.pt-BR.yml
973
+ - config/locales/default.ru.yml
974
+ - config/locales/devise.de.yml
975
+ - config/locales/devise.en.yml
976
+ - config/locales/devise.es.yml
977
+ - config/locales/devise.et.yml
978
+ - config/locales/devise.fr.yml
979
+ - config/locales/devise.it.yml
980
+ - config/locales/devise.nb.yml
981
+ - config/locales/devise.nl.yml
982
+ - config/locales/devise.pl.yml
983
+ - config/locales/devise.pt-BR.yml
984
+ - config/locales/devise.ru.yml
985
+ - config/locales/flash.de.yml
986
+ - config/locales/flash.en.yml
987
+ - config/locales/flash.es.yml
988
+ - config/locales/flash.et.yml
989
+ - config/locales/flash.fr.yml
990
+ - config/locales/flash.it.yml
991
+ - config/locales/flash.nb.yml
992
+ - config/locales/flash.nl.yml
993
+ - config/locales/flash.pl.yml
994
+ - config/locales/flash.pt-BR.yml
995
+ - config/locales/flash.ru.yml
996
+ - config/locales/formtastic.de.yml
997
+ - config/locales/formtastic.en.yml
998
+ - config/locales/formtastic.es.yml
999
+ - config/locales/formtastic.et.yml
1000
+ - config/locales/formtastic.fr.yml
1001
+ - config/locales/formtastic.it.yml
1002
+ - config/locales/formtastic.nb.yml
1003
+ - config/locales/formtastic.nl.yml
1004
+ - config/locales/formtastic.pl.yml
1005
+ - config/locales/formtastic.pt-BR.yml
1006
+ - config/locales/formtastic.ru.yml
1007
+ - config/routes.rb
1008
+ - lib/generators/locomotive/install/install_generator.rb
1009
+ - lib/generators/locomotive/install/templates/carrierwave.rb
1010
+ - lib/generators/locomotive/install/templates/dragonfly.rb
1011
+ - lib/generators/locomotive/install/templates/locomotive.rb
1012
+ - lib/generators/locomotive/install/templates/mongoid.yml
1013
+ - lib/generators/locomotive/install/templates/README
1014
+ - lib/locomotive/action_controller/locale_helpers.rb
1015
+ - lib/locomotive/action_controller/public_responder.rb
1016
+ - lib/locomotive/action_controller/responder.rb
1017
+ - lib/locomotive/action_controller/section_helpers.rb
1018
+ - lib/locomotive/action_controller/url_helpers.rb
1019
+ - lib/locomotive/action_controller.rb
1020
+ - lib/locomotive/carrierwave/asset.rb
1021
+ - lib/locomotive/carrierwave/base.rb
1022
+ - lib/locomotive/carrierwave/patches.rb
1023
+ - lib/locomotive/carrierwave.rb
1024
+ - lib/locomotive/configuration.rb
1025
+ - lib/locomotive/core_ext.rb
1026
+ - lib/locomotive/custom_fields.rb
1027
+ - lib/locomotive/dependencies.rb
1028
+ - lib/locomotive/devise.rb
1029
+ - lib/locomotive/dragonfly.rb
1030
+ - lib/locomotive/engine.rb
1031
+ - lib/locomotive/formtastic.rb
1032
+ - lib/locomotive/haml.rb
1033
+ - lib/locomotive/httparty/patches.rb
1034
+ - lib/locomotive/httparty/webservice.rb
1035
+ - lib/locomotive/httparty.rb
1036
+ - lib/locomotive/kaminari.rb
1037
+ - lib/locomotive/liquid/drops/base.rb
1038
+ - lib/locomotive/liquid/drops/content_entry.rb
1039
+ - lib/locomotive/liquid/drops/content_types.rb
1040
+ - lib/locomotive/liquid/drops/current_user.rb
1041
+ - lib/locomotive/liquid/drops/page.rb
1042
+ - lib/locomotive/liquid/drops/proxy_collection.rb
1043
+ - lib/locomotive/liquid/drops/site.rb
1044
+ - lib/locomotive/liquid/drops/uploader.rb
1045
+ - lib/locomotive/liquid/errors.rb
1046
+ - lib/locomotive/liquid/filters/base.rb
1047
+ - lib/locomotive/liquid/filters/date.rb
1048
+ - lib/locomotive/liquid/filters/html.rb
1049
+ - lib/locomotive/liquid/filters/misc.rb
1050
+ - lib/locomotive/liquid/filters/resize.rb
1051
+ - lib/locomotive/liquid/filters/text.rb
1052
+ - lib/locomotive/liquid/filters/translate.rb
1053
+ - lib/locomotive/liquid/patches.rb
1054
+ - lib/locomotive/liquid/tags/consume.rb
1055
+ - lib/locomotive/liquid/tags/csrf.rb
1056
+ - lib/locomotive/liquid/tags/editable/base.rb
1057
+ - lib/locomotive/liquid/tags/editable/control.rb
1058
+ - lib/locomotive/liquid/tags/editable/file.rb
1059
+ - lib/locomotive/liquid/tags/editable/long_text.rb
1060
+ - lib/locomotive/liquid/tags/editable/short_text.rb
1061
+ - lib/locomotive/liquid/tags/editable.rb
1062
+ - lib/locomotive/liquid/tags/extends.rb
1063
+ - lib/locomotive/liquid/tags/google_analytics.rb
1064
+ - lib/locomotive/liquid/tags/inherited_block.rb
1065
+ - lib/locomotive/liquid/tags/inline_editor.rb
1066
+ - lib/locomotive/liquid/tags/locale_switcher.rb
1067
+ - lib/locomotive/liquid/tags/nav.rb
1068
+ - lib/locomotive/liquid/tags/paginate.rb
1069
+ - lib/locomotive/liquid/tags/seo.rb
1070
+ - lib/locomotive/liquid/tags/snippet.rb
1071
+ - lib/locomotive/liquid/tags/with_scope.rb
1072
+ - lib/locomotive/liquid.rb
1073
+ - lib/locomotive/logger.rb
1074
+ - lib/locomotive/middlewares/cache.rb
1075
+ - lib/locomotive/middlewares/fonts.rb
1076
+ - lib/locomotive/middlewares/inline_editor.rb
1077
+ - lib/locomotive/middlewares/seo_trailing_slash.rb
1078
+ - lib/locomotive/middlewares.rb
1079
+ - lib/locomotive/misc/api_documentation/bootstrap.html.haml
1080
+ - lib/locomotive/misc/api_documentation.rb
1081
+ - lib/locomotive/mongoid/document.rb
1082
+ - lib/locomotive/mongoid/liquid.rb
1083
+ - lib/locomotive/mongoid/patches.rb
1084
+ - lib/locomotive/mongoid/presenter.rb
1085
+ - lib/locomotive/mongoid.rb
1086
+ - lib/locomotive/presentable.rb
1087
+ - lib/locomotive/rails/action_view.rb
1088
+ - lib/locomotive/rails.rb
1089
+ - lib/locomotive/regexps.rb
1090
+ - lib/locomotive/render.rb
1091
+ - lib/locomotive/routing/default_constraint.rb
1092
+ - lib/locomotive/routing/site_dispatcher.rb
1093
+ - lib/locomotive/routing.rb
1094
+ - lib/locomotive/session_store.rb
1095
+ - lib/locomotive/version.rb
1096
+ - lib/locomotive.rb
1097
+ - lib/locomotive_cms.rb
1098
+ - lib/tasks/cucumber.rake
1099
+ - lib/tasks/locomotive.rake
1100
+ - public/favicon.ico
1101
+ - vendor/assets/fonts/locomotive/fontawesome-webfont.eot
1102
+ - vendor/assets/fonts/locomotive/fontawesome-webfont.svg
1103
+ - vendor/assets/fonts/locomotive/fontawesome-webfont.ttf
1104
+ - vendor/assets/fonts/locomotive/fontawesome-webfont.woff
1105
+ - vendor/assets/javascripts/locomotive/backbone.modelbinding.js
1106
+ - vendor/assets/javascripts/locomotive/backbone.sync.js
1107
+ - vendor/assets/javascripts/locomotive/cmd.js
1108
+ - vendor/assets/javascripts/locomotive/cookies.js
1109
+ - vendor/assets/javascripts/locomotive/datepicker_i18n.js.erb
1110
+ - vendor/assets/javascripts/locomotive/editable_field.js
1111
+ - vendor/assets/javascripts/locomotive/form_submit_notification.js
1112
+ - vendor/assets/javascripts/locomotive/growl.js
1113
+ - vendor/assets/javascripts/locomotive/handlebars.js
1114
+ - vendor/assets/javascripts/locomotive/ICanHandlebarz.js
1115
+ - vendor/assets/javascripts/locomotive/liquid_mode.js
1116
+ - vendor/assets/javascripts/locomotive/menu_toggler.js
1117
+ - vendor/assets/javascripts/locomotive/resize.js
1118
+ - vendor/assets/javascripts/locomotive/slugify.js
1119
+ - vendor/assets/javascripts/locomotive/smartupdater.js
1120
+ - vendor/assets/javascripts/locomotive/subscribe.js
1121
+ - vendor/assets/javascripts/locomotive/toggle.js
1122
+ - vendor/assets/javascripts/locomotive/vendor.js
1123
+ - vendor/assets/stylesheets/locomotive/blueprint/ie.css
1124
+ - vendor/assets/stylesheets/locomotive/blueprint/print.css
1125
+ - vendor/assets/stylesheets/locomotive/blueprint/screen.css
1126
+ - vendor/assets/stylesheets/locomotive/font-awesome.scss
1127
+ - vendor/assets/stylesheets/locomotive/jquery/images/ui-bg_flat_0_aaaaaa_40x100.png
1128
+ - vendor/assets/stylesheets/locomotive/jquery/images/ui-bg_flat_75_ffffff_40x100.png
1129
+ - vendor/assets/stylesheets/locomotive/jquery/images/ui-bg_glass_55_fbf9ee_1x400.png
1130
+ - vendor/assets/stylesheets/locomotive/jquery/images/ui-bg_glass_65_ffffff_1x400.png
1131
+ - vendor/assets/stylesheets/locomotive/jquery/images/ui-bg_glass_75_dadada_1x400.png
1132
+ - vendor/assets/stylesheets/locomotive/jquery/images/ui-bg_glass_75_e6e6e6_1x400.png
1133
+ - vendor/assets/stylesheets/locomotive/jquery/images/ui-bg_glass_95_fef1ec_1x400.png
1134
+ - vendor/assets/stylesheets/locomotive/jquery/images/ui-bg_highlight-soft_75_cccccc_1x100.png
1135
+ - vendor/assets/stylesheets/locomotive/jquery/images/ui-icons_222222_256x240.png
1136
+ - vendor/assets/stylesheets/locomotive/jquery/images/ui-icons_2e83ff_256x240.png
1137
+ - vendor/assets/stylesheets/locomotive/jquery/images/ui-icons_454545_256x240.png
1138
+ - vendor/assets/stylesheets/locomotive/jquery/images/ui-icons_888888_256x240.png
1139
+ - vendor/assets/stylesheets/locomotive/jquery/images/ui-icons_cd0a0a_256x240.png
1140
+ - vendor/assets/stylesheets/locomotive/jquery/images/ui-icons_ffffff_256x240.png
1141
+ - vendor/assets/stylesheets/locomotive/jquery/ui.css
1142
+ - vendor/assets/stylesheets/locomotive/jquery.css
1143
+ - vendor/assets/stylesheets/locomotive/liquid_mode.css
1144
+ - vendor/assets/stylesheets/locomotive/toggle.css.scss
1145
+ - LICENSE
1146
+ - README.textile
1147
+ homepage: http://www.example.com
1148
+ licenses: []
1149
+ post_install_message:
1150
+ rdoc_options: []
1151
+ require_paths:
1152
+ - lib
1153
+ required_ruby_version: !ruby/object:Gem::Requirement
1154
+ none: false
1155
+ requirements:
1156
+ - - ! '>='
1157
+ - !ruby/object:Gem::Version
1158
+ version: '0'
1159
+ required_rubygems_version: !ruby/object:Gem::Requirement
1160
+ none: false
1161
+ requirements:
1162
+ - - ! '>='
1163
+ - !ruby/object:Gem::Version
1164
+ version: 1.3.6
1165
+ requirements: []
1166
+ rubyforge_project:
1167
+ rubygems_version: 1.8.24
1168
+ signing_key:
1169
+ specification_version: 3
1170
+ summary: A Demo CMS for Rails 3
1171
+ test_files: []