alchemy_cms 2.5.3.1 → 2.6.0.rc5

Sign up to get free protection for your applications and to get access to all the features.
Files changed (331) hide show
  1. data/.gitignore +1 -1
  2. data/.travis.yml +5 -13
  3. data/Gemfile +6 -3
  4. data/README.md +3 -2
  5. data/alchemy_cms.gemspec +22 -22
  6. data/app/assets/fonts/alchemy-icons.eot +0 -0
  7. data/app/assets/fonts/alchemy-icons.svg +54 -0
  8. data/app/assets/fonts/alchemy-icons.ttf +0 -0
  9. data/app/assets/fonts/alchemy-icons.woff +0 -0
  10. data/app/assets/images/alchemy/icons.png +0 -0
  11. data/app/assets/javascripts/alchemy/alchemy.base.js.coffee +151 -0
  12. data/app/assets/javascripts/alchemy/alchemy.buttons.js.coffee +3 -2
  13. data/app/assets/javascripts/alchemy/alchemy.datepicker.js.coffee +31 -0
  14. data/app/assets/javascripts/alchemy/alchemy.dragndrop.js +1 -1
  15. data/app/assets/javascripts/alchemy/alchemy.element_editors.js.coffee +98 -0
  16. data/app/assets/javascripts/alchemy/alchemy.elements_window.js.coffee +23 -24
  17. data/app/assets/javascripts/alchemy/alchemy.growler.js.coffee +27 -0
  18. data/app/assets/javascripts/alchemy/alchemy.gui.js.coffee +11 -8
  19. data/app/assets/javascripts/alchemy/alchemy.hotkeys.js.coffee +32 -0
  20. data/app/assets/javascripts/alchemy/alchemy.image_cropper.js.coffee +46 -0
  21. data/app/assets/javascripts/alchemy/alchemy.js +8 -2
  22. data/app/assets/javascripts/alchemy/alchemy.link_overlay.js.coffee +5 -4
  23. data/app/assets/javascripts/alchemy/alchemy.list_filter.js.coffee +49 -0
  24. data/app/assets/javascripts/alchemy/alchemy.onload.js.coffee +3 -0
  25. data/app/assets/javascripts/alchemy/alchemy.preview_window.js.coffee +71 -0
  26. data/app/assets/javascripts/alchemy/alchemy.sitemap.js.coffee +61 -0
  27. data/app/assets/javascripts/alchemy/alchemy.spinner.js.coffee +35 -0
  28. data/app/assets/javascripts/alchemy/alchemy.string_extension.js.coffee +11 -0
  29. data/app/assets/javascripts/alchemy/alchemy.windows.js.coffee +278 -0
  30. data/app/assets/stylesheets/alchemy/admin.css.scss +2 -0
  31. data/app/assets/stylesheets/alchemy/archive.scss +109 -65
  32. data/app/assets/stylesheets/alchemy/base.scss +16 -188
  33. data/app/assets/stylesheets/alchemy/dashboard.scss +2 -2
  34. data/app/assets/stylesheets/alchemy/defaults.scss +2 -1
  35. data/app/assets/stylesheets/alchemy/elements.scss +58 -94
  36. data/app/assets/stylesheets/alchemy/errors.scss +2 -2
  37. data/app/assets/stylesheets/alchemy/{mixins.scss → extends.scss} +104 -80
  38. data/app/assets/stylesheets/alchemy/flash.scss +4 -6
  39. data/app/assets/stylesheets/alchemy/fonts.scss +46 -0
  40. data/app/assets/stylesheets/alchemy/form_elements.scss +46 -45
  41. data/app/assets/stylesheets/alchemy/frame.scss +20 -15
  42. data/app/assets/stylesheets/alchemy/icons.scss +22 -9
  43. data/app/assets/stylesheets/alchemy/jquery-ui.scss +476 -399
  44. data/app/assets/stylesheets/alchemy/login.scss +1 -1
  45. data/app/assets/stylesheets/alchemy/menubar.css.scss +1 -1
  46. data/app/assets/stylesheets/alchemy/notices.scss +5 -5
  47. data/app/assets/stylesheets/alchemy/pagination.scss +25 -13
  48. data/app/assets/stylesheets/alchemy/search.scss +29 -17
  49. data/app/assets/stylesheets/alchemy/sitemap.scss +41 -36
  50. data/app/assets/stylesheets/alchemy/tables.scss +102 -50
  51. data/app/assets/stylesheets/alchemy/tinymce_dialog.css.scss +18 -16
  52. data/app/assets/stylesheets/alchemy/toolbar.scss +84 -24
  53. data/app/assets/stylesheets/alchemy/upload.scss +14 -9
  54. data/app/assets/stylesheets/alchemy/variables.scss +1 -0
  55. data/app/assets/stylesheets/tiny_mce/plugins/inlinepopups/skins/alchemy/window.css.scss +18 -21
  56. data/app/controllers/alchemy/admin/attachments_controller.rb +29 -39
  57. data/app/controllers/alchemy/admin/base_controller.rb +3 -9
  58. data/app/controllers/alchemy/admin/clipboard_controller.rb +1 -1
  59. data/app/controllers/alchemy/admin/contents_controller.rb +1 -1
  60. data/app/controllers/alchemy/admin/dashboard_controller.rb +1 -1
  61. data/app/controllers/alchemy/admin/elements_controller.rb +3 -3
  62. data/app/controllers/alchemy/admin/essence_files_controller.rb +1 -1
  63. data/app/controllers/alchemy/admin/essence_pictures_controller.rb +5 -5
  64. data/app/controllers/alchemy/admin/languages_controller.rb +1 -1
  65. data/app/controllers/alchemy/admin/pages_controller.rb +18 -16
  66. data/app/controllers/alchemy/admin/pictures_controller.rb +11 -10
  67. data/app/controllers/alchemy/admin/resources_controller.rb +87 -14
  68. data/app/controllers/alchemy/admin/tags_controller.rb +3 -3
  69. data/app/controllers/alchemy/admin/trash_controller.rb +3 -3
  70. data/app/controllers/alchemy/admin/users_controller.rb +6 -11
  71. data/app/controllers/alchemy/attachments_controller.rb +8 -9
  72. data/app/controllers/alchemy/base_controller.rb +17 -10
  73. data/app/controllers/alchemy/pages_controller.rb +7 -19
  74. data/app/controllers/alchemy/passwords_controller.rb +15 -3
  75. data/app/controllers/alchemy/user_sessions_controller.rb +5 -4
  76. data/app/controllers/alchemy/users_controller.rb +1 -1
  77. data/app/helpers/alchemy/admin/attachments_helper.rb +2 -2
  78. data/app/helpers/alchemy/admin/base_helper.rb +62 -90
  79. data/app/helpers/alchemy/admin/elements_helper.rb +13 -5
  80. data/app/helpers/alchemy/admin/essences_helper.rb +3 -5
  81. data/app/helpers/alchemy/admin/pages_helper.rb +6 -3
  82. data/app/helpers/alchemy/admin/tags_helper.rb +60 -0
  83. data/app/helpers/alchemy/base_helper.rb +16 -20
  84. data/app/helpers/alchemy/elements_helper.rb +7 -11
  85. data/app/helpers/alchemy/essences_helper.rb +2 -2
  86. data/app/helpers/alchemy/pages_helper.rb +31 -69
  87. data/app/helpers/alchemy/url_helper.rb +11 -3
  88. data/app/models/alchemy/attachment.rb +73 -45
  89. data/app/models/alchemy/cell.rb +1 -1
  90. data/app/models/alchemy/content.rb +20 -9
  91. data/app/models/alchemy/element.rb +9 -7
  92. data/app/models/alchemy/page.rb +15 -248
  93. data/app/models/alchemy/page/cells.rb +71 -0
  94. data/app/models/alchemy/page/elements.rb +147 -0
  95. data/app/models/alchemy/page/naming.rb +90 -0
  96. data/app/models/alchemy/picture.rb +18 -13
  97. data/app/models/alchemy/tag.rb +1 -1
  98. data/app/models/alchemy/user.rb +38 -6
  99. data/app/views/alchemy/admin/attachments/_archive_overlay.html.erb +14 -7
  100. data/app/views/alchemy/admin/attachments/_attachment.html.erb +17 -12
  101. data/app/views/alchemy/admin/attachments/_file_to_assign.html.erb +3 -8
  102. data/app/views/alchemy/admin/attachments/_files_list.html.erb +20 -12
  103. data/app/views/alchemy/admin/attachments/_overlay_file_list.html.erb +11 -0
  104. data/app/views/alchemy/admin/attachments/_tag_list.html.erb +31 -0
  105. data/app/views/alchemy/admin/attachments/archive_overlay.js.erb +4 -0
  106. data/app/views/alchemy/admin/attachments/edit.html.erb +8 -7
  107. data/app/views/alchemy/admin/attachments/index.html.erb +19 -12
  108. data/app/views/alchemy/admin/attachments/new.html.erb +2 -2
  109. data/app/views/alchemy/admin/attachments/show.html.erb +3 -0
  110. data/app/views/alchemy/admin/contents/_missing.html.erb +4 -4
  111. data/app/views/alchemy/admin/contents/create.js.erb +1 -1
  112. data/app/views/alchemy/admin/contents/new.html.erb +6 -3
  113. data/app/views/alchemy/admin/dashboard/_locked_pages.html.erb +1 -1
  114. data/app/views/alchemy/admin/dashboard/_users.html.erb +1 -1
  115. data/app/views/alchemy/admin/dashboard/index.html.erb +3 -3
  116. data/app/views/alchemy/admin/dashboard/info.html.erb +16 -13
  117. data/app/views/alchemy/admin/elements/_add_picture.html.erb +1 -1
  118. data/app/views/alchemy/admin/elements/_element_foot.html.erb +4 -4
  119. data/app/views/alchemy/admin/elements/_element_head.html.erb +1 -7
  120. data/app/views/alchemy/admin/elements/_elements_select.html.erb +2 -2
  121. data/app/views/alchemy/admin/elements/_new_element_form.html.erb +4 -4
  122. data/app/views/alchemy/admin/elements/_picture_gallery_editor.html.erb +1 -1
  123. data/app/views/alchemy/admin/elements/create.js.erb +2 -2
  124. data/app/views/alchemy/admin/elements/fold.js.erb +3 -6
  125. data/app/views/alchemy/admin/elements/new.html.erb +1 -1
  126. data/app/views/alchemy/admin/elements/order.js.erb +1 -1
  127. data/app/views/alchemy/admin/elements/trash.js.erb +1 -1
  128. data/app/views/alchemy/admin/elements/update.js.erb +2 -2
  129. data/app/views/alchemy/admin/essence_files/edit.html.erb +4 -4
  130. data/app/views/alchemy/admin/essence_pictures/crop.html.erb +17 -18
  131. data/app/views/alchemy/admin/essence_pictures/edit.html.erb +2 -2
  132. data/app/views/alchemy/admin/essence_pictures/update.js.erb +1 -0
  133. data/app/views/alchemy/admin/languages/_form.html.erb +12 -10
  134. data/app/views/alchemy/admin/languages/_language.html.erb +2 -1
  135. data/app/views/alchemy/admin/languages/_table.html.erb +3 -3
  136. data/app/views/alchemy/admin/languages/index.html.erb +15 -15
  137. data/app/views/alchemy/admin/layoutpages/_layoutpage.html.erb +6 -6
  138. data/app/views/alchemy/admin/layoutpages/index.html.erb +41 -40
  139. data/app/views/alchemy/admin/pages/_contactform_links.html.erb +4 -4
  140. data/app/views/alchemy/admin/pages/_create_language_form.html.erb +6 -6
  141. data/app/views/alchemy/admin/pages/_external_link.html.erb +2 -2
  142. data/app/views/alchemy/admin/pages/_file_link.html.erb +3 -3
  143. data/app/views/alchemy/admin/pages/_internal_link.html.erb +1 -1
  144. data/app/views/alchemy/admin/pages/_new_page_form.html.erb +1 -1
  145. data/app/views/alchemy/admin/pages/_page.html.erb +13 -13
  146. data/app/views/alchemy/admin/pages/_page_for_links.html.erb +2 -4
  147. data/app/views/alchemy/admin/pages/_sitemap.html.erb +5 -0
  148. data/app/views/alchemy/admin/pages/configure.html.erb +7 -7
  149. data/app/views/alchemy/admin/pages/configure_external.html.erb +4 -4
  150. data/app/views/alchemy/admin/pages/edit.html.erb +23 -30
  151. data/app/views/alchemy/admin/pages/index.html.erb +34 -23
  152. data/app/views/alchemy/admin/pages/new.html.erb +1 -1
  153. data/app/views/alchemy/admin/pages/sort.js.erb +1 -1
  154. data/app/views/alchemy/admin/partials/_flash_upload.html.erb +2 -3
  155. data/app/views/alchemy/admin/partials/_remote_search_form.html.erb +2 -2
  156. data/app/views/alchemy/admin/partials/_search_form.html.erb +3 -3
  157. data/app/views/alchemy/admin/partials/_upload_form.html.erb +2 -2
  158. data/app/views/alchemy/admin/pictures/_archive.html.erb +7 -7
  159. data/app/views/alchemy/admin/pictures/_archive_overlay.html.erb +1 -1
  160. data/app/views/alchemy/admin/pictures/_filter_and_size_bar.html.erb +6 -6
  161. data/app/views/alchemy/admin/pictures/_filter_bar.html.erb +4 -4
  162. data/app/views/alchemy/admin/pictures/_overlay_picture_list.html.erb +1 -1
  163. data/app/views/alchemy/admin/pictures/_picture.html.erb +3 -8
  164. data/app/views/alchemy/admin/pictures/_picture_to_assign.html.erb +9 -14
  165. data/app/views/alchemy/admin/pictures/_tag_list.html.erb +27 -25
  166. data/app/views/alchemy/admin/pictures/archive_overlay.js.erb +3 -1
  167. data/app/views/alchemy/admin/pictures/index.html.erb +49 -42
  168. data/app/views/alchemy/admin/pictures/new.html.erb +2 -2
  169. data/app/views/alchemy/admin/pictures/show.html.erb +11 -0
  170. data/app/views/alchemy/admin/resources/_boolean.html.erb +2 -2
  171. data/app/views/alchemy/admin/resources/_datetime.html.erb +2 -2
  172. data/app/views/alchemy/admin/resources/_form.html.erb +9 -8
  173. data/app/views/alchemy/admin/resources/_resource.html.erb +15 -21
  174. data/app/views/alchemy/admin/resources/_string.html.erb +2 -2
  175. data/app/views/alchemy/admin/resources/_table.html.erb +11 -13
  176. data/app/views/alchemy/admin/resources/_text.html.erb +2 -2
  177. data/app/views/alchemy/admin/resources/index.csv.erb +13 -0
  178. data/app/views/alchemy/admin/resources/index.html.erb +24 -15
  179. data/app/views/alchemy/admin/sites/index.html.erb +23 -0
  180. data/app/views/alchemy/admin/tags/_radio_tag.html.erb +1 -1
  181. data/app/views/alchemy/admin/tags/_tag.html.erb +2 -1
  182. data/app/views/alchemy/admin/tags/edit.html.erb +1 -1
  183. data/app/views/alchemy/admin/tags/index.html.erb +16 -11
  184. data/app/views/alchemy/admin/tags/new.html.erb +3 -3
  185. data/app/views/alchemy/admin/trash/clear.js.coffee +1 -1
  186. data/app/views/alchemy/admin/users/_table.html.erb +12 -5
  187. data/app/views/alchemy/admin/users/_user.html.erb +16 -16
  188. data/app/views/alchemy/admin/users/index.html.erb +28 -16
  189. data/app/views/alchemy/breadcrumb/_page.html.erb +15 -0
  190. data/app/views/alchemy/breadcrumb/_spacer.html.erb +1 -0
  191. data/app/views/alchemy/elements/_editor_not_found.html.erb +1 -1
  192. data/app/views/alchemy/essences/_essence_file_editor.html.erb +16 -16
  193. data/app/views/alchemy/essences/_essence_file_view.html.erb +8 -9
  194. data/app/views/alchemy/essences/_essence_picture_editor.html.erb +3 -6
  195. data/app/views/alchemy/essences/_essence_picture_tools.html.erb +9 -8
  196. data/app/views/alchemy/essences/_essence_richtext_editor.html.erb +0 -5
  197. data/app/views/alchemy/essences/_linkable_essence_tools.html.erb +2 -2
  198. data/app/views/alchemy/navigation/_link.html.erb +7 -7
  199. data/app/views/alchemy/navigation/_renderer.html.erb +29 -36
  200. data/app/views/alchemy/notifications/admin_user_created.de.text.erb +5 -1
  201. data/app/views/alchemy/notifications/admin_user_created.en.text.erb +5 -1
  202. data/app/views/alchemy/notifications/registered_user_created.de.text.erb +13 -0
  203. data/app/views/alchemy/notifications/registered_user_created.en.text.erb +13 -0
  204. data/app/views/alchemy/search/_result.html.erb +4 -6
  205. data/app/views/alchemy/search/_results.html.erb +4 -5
  206. data/app/views/alchemy/user_sessions/leave.html.erb +1 -1
  207. data/app/views/alchemy/user_sessions/new.html.erb +2 -2
  208. data/app/views/kaminari/_first_page.html.erb +11 -0
  209. data/app/views/kaminari/_gap.html.erb +1 -1
  210. data/app/views/kaminari/_last_page.html.erb +11 -0
  211. data/app/views/kaminari/_next_page.html.erb +2 -2
  212. data/app/views/kaminari/_page.html.erb +1 -1
  213. data/app/views/kaminari/_paginator.html.erb +2 -0
  214. data/app/views/kaminari/_prev_page.html.erb +2 -2
  215. data/app/views/layouts/alchemy/admin.html.erb +4 -5
  216. data/config/alchemy/config.yml +8 -12
  217. data/config/authorization_rules.rb +4 -3
  218. data/config/initializers/dragonfly.rb +20 -12
  219. data/config/locales/alchemy.de.yml +20 -15
  220. data/config/locales/alchemy.en.yml +15 -10
  221. data/config/locales/devise.de.yml +1 -0
  222. data/config/routes.rb +3 -3
  223. data/{spec/dummy/db/migrate/20121118000000_alchemy_two_point_four.rb → db/migrate/20130214233001_alchemy_two_point_five.rb} +50 -36
  224. data/db/migrate/20130221200514_migrate_attachments_to_dragonfly.rb +21 -0
  225. data/db/migrate/20130312205327_change_alchemy_users_role_to_roles.rb +11 -0
  226. data/lib/alchemy/capistrano.rb +10 -8
  227. data/lib/alchemy/errors.rb +7 -0
  228. data/lib/alchemy/filetypes.rb +33 -0
  229. data/lib/alchemy/i18n.rb +9 -1
  230. data/lib/alchemy/name_conversions.rb +28 -0
  231. data/lib/alchemy/page_layout.rb +5 -3
  232. data/lib/alchemy/resource.rb +132 -29
  233. data/lib/alchemy/resources_helper.rb +81 -12
  234. data/lib/alchemy/upgrader.rb +14 -276
  235. data/lib/alchemy/version.rb +1 -1
  236. data/lib/alchemy_cms.rb +17 -2
  237. data/lib/rails/generators/alchemy/deploy_script/templates/deploy.rb.tt +1 -1
  238. data/lib/rails/generators/alchemy/scaffold/scaffold_generator.rb +1 -1
  239. data/lib/tasks/alchemy/convert.rake +39 -0
  240. data/lib/tasks/alchemy/install.rake +4 -6
  241. data/lib/tasks/alchemy/upgrade.rake +18 -1
  242. data/spec/controllers/admin/clipboard_controller_spec.rb +4 -4
  243. data/spec/controllers/admin/elements_controller_spec.rb +23 -23
  244. data/spec/controllers/admin/pages_controller_spec.rb +15 -0
  245. data/spec/controllers/admin/resources_controller_spec.rb +1 -11
  246. data/spec/controllers/admin/trash_controller_spec.rb +9 -9
  247. data/spec/controllers/attachments_controller_spec.rb +3 -3
  248. data/spec/controllers/elements_controller_spec.rb +2 -2
  249. data/spec/controllers/pages_controller_spec.rb +160 -129
  250. data/spec/controllers/pictures_controller_spec.rb +2 -2
  251. data/spec/controllers/user_sessions_controller_spec.rb +3 -3
  252. data/spec/controllers/users_controller_spec.rb +2 -2
  253. data/spec/dummy/app/models/event.rb +2 -2
  254. data/spec/dummy/app/models/location.rb +4 -0
  255. data/spec/dummy/app/views/layouts/application.html.erb +6 -42
  256. data/spec/dummy/config/routes.rb +1 -1
  257. data/spec/dummy/db/migrate/20121026104128_create_events.rb +0 -1
  258. data/{db/migrate/20121118000000_alchemy_two_point_four.rb → spec/dummy/db/migrate/20130214233001_alchemy_two_point_five.rb} +50 -36
  259. data/spec/dummy/db/migrate/20130221200514_migrate_attachments_to_dragonfly.rb +21 -0
  260. data/spec/dummy/db/migrate/20130312205327_change_alchemy_users_role_to_roles.rb +11 -0
  261. data/spec/dummy/db/migrate/20130328101418_create_locations.rb +9 -0
  262. data/spec/dummy/db/schema.rb +15 -6
  263. data/spec/factories.rb +4 -4
  264. data/spec/{integration → features}/admin/link_overlay_spec.rb +0 -0
  265. data/spec/{integration → features}/admin/modules_integration_spec.rb +1 -1
  266. data/spec/{integration → features}/admin/pages_controller_spec.rb +9 -4
  267. data/spec/{integration → features}/admin/picture_library_integration_spec.rb +5 -5
  268. data/spec/{integration → features}/admin/resources_integration_spec.rb +1 -1
  269. data/spec/{integration → features}/navigation_spec.rb +0 -0
  270. data/spec/{integration → features}/pages_controller_spec.rb +42 -112
  271. data/spec/{integration → features}/picture_security_spec.rb +2 -2
  272. data/spec/{integration → features}/security_spec.rb +7 -7
  273. data/spec/{integration → features}/translation_integration_spec.rb +0 -0
  274. data/spec/helpers/admin/base_helper_spec.rb +0 -50
  275. data/spec/helpers/admin/tags_helper_spec.rb +53 -0
  276. data/spec/helpers/base_helper_spec.rb +19 -3
  277. data/spec/helpers/pages_helper_spec.rb +92 -44
  278. data/spec/{url_helpers_spec.rb → helpers/picture_url_helpers_spec.rb} +7 -7
  279. data/spec/helpers/url_helper_spec.rb +92 -72
  280. data/spec/{config_spec.rb → libraries/config_spec.rb} +0 -0
  281. data/spec/libraries/resource_spec.rb +215 -76
  282. data/spec/libraries/resources_helper_spec.rb +70 -28
  283. data/spec/models/attachment_spec.rb +75 -9
  284. data/spec/models/clipboard_spec.rb +1 -1
  285. data/spec/models/element_spec.rb +7 -0
  286. data/spec/models/page_spec.rb +144 -25
  287. data/spec/models/picture_spec.rb +5 -5
  288. data/spec/models/resource_spec.rb +47 -10
  289. data/spec/models/user_spec.rb +115 -3
  290. data/spec/{routing_spec.rb → routing/routing_spec.rb} +8 -20
  291. data/spec/spec_helper.rb +5 -6
  292. data/spec/support/alchemy/specs_helpers.rb +1 -1
  293. data/spec/support/ci/install_phantomjs +1 -1
  294. data/spec/support/image with spaces.png +0 -0
  295. data/vendor/assets/javascripts/jquery_plugins/jquery.Jcrop.min.js +18 -18
  296. data/vendor/assets/javascripts/jquery_plugins/{jquery.dialogextend.1_0_1.js → jquery.dialogextend.js} +25 -17
  297. data/vendor/assets/javascripts/jquery_plugins/jquery.scrollTo.min.js +7 -0
  298. data/vendor/assets/javascripts/jquery_plugins/jquery.ui.tabspaging.js +7 -7
  299. data/vendor/assets/javascripts/keymage.min.js +6 -0
  300. data/vendor/assets/javascripts/spin.min.js +1 -0
  301. metadata +122 -124
  302. data/app/assets/images/alchemy/ajax_loader.gif +0 -0
  303. data/app/assets/images/alchemy/gui/toggle.png +0 -0
  304. data/app/assets/images/alchemy/image_loader.gif +0 -0
  305. data/app/assets/images/alchemy/shading.png +0 -0
  306. data/app/assets/images/alchemy/tabs.gif +0 -0
  307. data/app/assets/javascripts/alchemy/alchemy.base.js +0 -172
  308. data/app/assets/javascripts/alchemy/alchemy.datepicker.js +0 -47
  309. data/app/assets/javascripts/alchemy/alchemy.element_editor_selector.js +0 -91
  310. data/app/assets/javascripts/alchemy/alchemy.growler.js +0 -46
  311. data/app/assets/javascripts/alchemy/alchemy.image_cropper.js +0 -60
  312. data/app/assets/javascripts/alchemy/alchemy.js_extensions.js +0 -15
  313. data/app/assets/javascripts/alchemy/alchemy.preview_window.js +0 -97
  314. data/app/assets/javascripts/alchemy/alchemy.windows.js +0 -321
  315. data/app/models/alchemy/clipboard_spec.rb +0 -0
  316. data/app/views/alchemy/admin/pictures/show_in_window.html.erb +0 -8
  317. data/app/views/alchemy/notifications/registered_user_created.text.erb +0 -11
  318. data/db/migrate/20121121162313_switch_from_fleximage_to_dragonfly.rb +0 -21
  319. data/db/migrate/20121205155004_create_alchemy_sites.rb +0 -14
  320. data/db/migrate/20121211163003_add_public_to_alchemy_sites.rb +0 -6
  321. data/db/migrate/20121220102223_add_aliases_to_site.rb +0 -6
  322. data/db/migrate/20130110212411_create_alchemy_legacy_page_urls.rb +0 -11
  323. data/db/migrate/20130121092645_migrate_to_devise.rb +0 -24
  324. data/spec/alchemy_spec.rb +0 -7
  325. data/spec/dummy/db/migrate/20121121162313_switch_from_fleximage_to_dragonfly.rb +0 -21
  326. data/spec/dummy/db/migrate/20121205155004_create_alchemy_sites.rb +0 -14
  327. data/spec/dummy/db/migrate/20121211163003_add_public_to_alchemy_sites.rb +0 -6
  328. data/spec/dummy/db/migrate/20121220102223_add_aliases_to_site.rb +0 -6
  329. data/spec/dummy/db/migrate/20130110212411_create_alchemy_legacy_page_urls.rb +0 -11
  330. data/spec/dummy/db/migrate/20130121092645_migrate_to_devise.rb +0 -24
  331. data/vendor/assets/javascripts/jquery_plugins/jquery.scrollTo-1.4.2-min.js +0 -11
@@ -1,321 +0,0 @@
1
- if (typeof(Alchemy) === 'undefined') {
2
- var Alchemy = {};
3
- }
4
-
5
- (function($) {
6
-
7
- $.extend(Alchemy, {
8
-
9
- getOverlaySpinner: function(options) {
10
- var defaults = {
11
- x: '400',
12
- y: '300'
13
- };
14
- var settings = $.extend({}, defaults, options);
15
- var $spinner_container = $('<div class="spinner_container"/>').css({
16
- width: settings.x,
17
- height: settings.y
18
- });
19
- var $spinner = $('<img src="/assets/alchemy/ajax_loader.gif" />');
20
- $spinner_container.append($spinner);
21
- $spinner.css({
22
- position: 'absolute',
23
- width: 32,
24
- height: 32,
25
- left: '50%',
26
- top: '50%',
27
- marginLeft: '-16px',
28
- marginTop: '-16px'
29
- });
30
- return $spinner_container;
31
- },
32
-
33
- AjaxErrorHandler: function($dialog, status, textStatus, errorThrown) {
34
- var $div = $('<div class="with_padding" />');
35
- var $errorDiv = $('<div id="errorExplanation" class="ajax_status_code_' + status + '" />');
36
- $dialog.html($div);
37
- $div.append($errorDiv);
38
- if (status === 0) {
39
- $errorDiv.append('<h2>The server does not respond.</h2>');
40
- $errorDiv.append('<p>Please check server and try again.</p>');
41
- } else {
42
- $errorDiv.append('<h2>' + errorThrown + ' (' + status + ')</h2>');
43
- $errorDiv.append('<p>Please check log and try again.</p>');
44
- }
45
- },
46
-
47
- ToolbarButton: function(options) {
48
- var $btn = $('<div class="button_with_label"></div>'),
49
- $lnk;
50
- if (options.buttonId) $btn.attr({
51
- 'id': options.buttonId
52
- });
53
- $lnk = $('<a title="' + options.buttonTitle + '" class="icon_button" href="#"></a>');
54
- $lnk.click(options.onClick);
55
- $lnk.append('<span class="icon ' + options.iconClass + '"></span>');
56
- $btn.append($lnk);
57
- $btn.append('<br><label>' + options.buttonLabel + '</label>');
58
- return $btn;
59
- },
60
-
61
- openConfirmWindow: function(options) {
62
- var $confirmation = $('<div style="display:none" id="alchemyConfirmation"></div>');
63
- $confirmation.appendTo('body');
64
- $confirmation.html('<p>' + options.message + '</p>');
65
- Alchemy.ConfirmationWindow = $confirmation.dialog({
66
- resizable: false,
67
- minHeight: 100,
68
- minWidth: 300,
69
- modal: true,
70
- title: options.title,
71
- show: "fade",
72
- hide: "fade",
73
- buttons: [{
74
- text: options.cancelLabel,
75
- click: function() {
76
- $(this).dialog("close");
77
- Alchemy.Buttons.enable();
78
- }
79
- }, {
80
- text: options.okLabel,
81
- click: function() {
82
- $(this).dialog("close");
83
- options.okCallback();
84
- }
85
- }],
86
- open: function() {
87
- Alchemy.Buttons.observe('#alchemyConfirmation');
88
- },
89
- close: function() {
90
- $('#alchemyConfirmation').remove();
91
- }
92
- });
93
- },
94
-
95
- confirmToDeleteWindow: function(url, title, message, okLabel, cancelLabel) {
96
- Alchemy.openConfirmWindow({
97
- message: message,
98
- title: title,
99
- okLabel: okLabel,
100
- cancelLabel: cancelLabel,
101
- okCallback: function() {
102
- Alchemy.pleaseWaitOverlay();
103
- $.ajax({
104
- url: url,
105
- type: 'DELETE'
106
- });
107
- }
108
- });
109
- },
110
-
111
- openWindow: function(action_url, title, size_x, size_y, resizable, modal, overflow) {
112
- overflow == undefined ? overflow = true : overflow = overflow;
113
- if (size_x === 'fullscreen') {
114
- size_x = $(window).width() - 50;
115
- size_y = $(window).height() - 50;
116
- }
117
- var $dialog = $('<div style="display:none" id="alchemyOverlay"></div>');
118
- $dialog.appendTo('body');
119
- $dialog.html(Alchemy.getOverlaySpinner({
120
- x: size_x === 'auto' ? 400 : size_x,
121
- y: size_y === 'auto' ? 300 : size_y
122
- }));
123
- Alchemy.CurrentWindow = $dialog.dialog({
124
- modal: modal,
125
- minWidth: size_x === 'auto' ? 400 : size_x,
126
- minHeight: size_y === 'auto' ? 300 : size_y,
127
- title: title,
128
- resizable: resizable,
129
- show: "fade",
130
- hide: "fade",
131
- width: size_x,
132
- open: function(event, ui) {
133
- $.ajax({
134
- url: action_url,
135
- success: function(data, textStatus, XMLHttpRequest) {
136
- $dialog.html(data);
137
- $dialog.css({
138
- overflow: overflow ? 'visible' : 'auto'
139
- });
140
- $dialog.dialog('widget').css({
141
- overflow: overflow ? 'visible' : 'hidden'
142
- });
143
- if (size_x === 'auto') {
144
- $dialog.dialog('widget').css({
145
- left: (($(window).width() / 2) - ($dialog.width() / 2))
146
- });
147
- }
148
- if (size_y === 'auto') {
149
- $dialog.dialog('widget').css({
150
- top: ($(window).height() - $dialog.dialog('widget').height()) / 2
151
- });
152
- }
153
- Alchemy.SelectBox('#alchemyOverlay');
154
- Alchemy.Datepicker('#alchemyOverlay input.date, #alchemyOverlay input[type="date"]');
155
- Alchemy.Buttons.observe('#alchemyOverlay');
156
- Alchemy.overlayObserver('#alchemyOverlay');
157
- },
158
- error: function(XMLHttpRequest, textStatus, errorThrown) {
159
- Alchemy.AjaxErrorHandler($dialog, XMLHttpRequest.status, textStatus, errorThrown);
160
- },
161
- complete: function(jqXHR, textStatus) {
162
- Alchemy.Buttons.enable();
163
- }
164
- });
165
- },
166
- close: function() {
167
- $dialog.remove();
168
- }
169
- });
170
- },
171
-
172
- closeCurrentWindow: function() {
173
- if (Alchemy.CurrentWindow) {
174
- Alchemy.CurrentWindow.dialog('close');
175
- Alchemy.CurrentWindow = null;
176
- } else {
177
- $('#alchemyOverlay').dialog('close');
178
- }
179
- return true;
180
- },
181
-
182
- zoomImage: function(url, title, width, height) {
183
- var window_height = height;
184
- var window_width = width;
185
- var $doc_width = $(window).width();
186
- var $doc_height = $(window).height();
187
- if (width > $doc_width) {
188
- window_width = $doc_width - 50;
189
- }
190
- if (height > $doc_height) {
191
- window_height = $doc_height - 50;
192
- }
193
- var $dialog = $('<div style="display:none" id="alchemyOverlay"></div>');
194
- $dialog.appendTo('body');
195
- $dialog.html(Alchemy.getOverlaySpinner({
196
- x: width,
197
- y: height
198
- }));
199
- $dialog.dialog({
200
- modal: false,
201
- minWidth: window_width < 320 ? 320 : window_width,
202
- minHeight: window_height < 240 ? 240 : window_height,
203
- title: title,
204
- show: "fade",
205
- hide: "fade",
206
- open: function(event, ui) {
207
- $.ajax({
208
- url: url,
209
- success: function(data, textStatus, XMLHttpRequest) {
210
- $dialog.html(data);
211
- },
212
- error: function(XMLHttpRequest, textStatus, errorThrown) {
213
- Alchemy.AjaxErrorHandler($dialog, XMLHttpRequest.status, textStatus, errorThrown);
214
- }
215
- });
216
- },
217
- close: function() {
218
- $dialog.remove();
219
- }
220
- });
221
- return false;
222
- },
223
-
224
- openTrashWindow: function(page_id, title) {
225
- var size_x = 380,
226
- size_y = 270;
227
- if (size_x === 'fullscreen') {
228
- size_x = $(window).width() - 50;
229
- size_y = $(window).height() - 50;
230
- }
231
- var $dialog = $('<div style="display:none" id="alchemyTrashWindow"></div>');
232
- $dialog.appendTo('body');
233
- $dialog.html(Alchemy.getOverlaySpinner({
234
- x: size_x,
235
- y: size_y
236
- }));
237
-
238
- Alchemy.trashWindow = $dialog.dialog({
239
- modal: false,
240
- width: 380,
241
- minHeight: 450,
242
- maxHeight: $(window).height() - 50,
243
- title: title,
244
- resizable: false,
245
- show: "fade",
246
- hide: "fade",
247
- open: function(event, ui) {
248
- $.ajax({
249
- url: Alchemy.routes.admin_trash_path(page_id),
250
- success: function(data, textStatus, XMLHttpRequest) {
251
- $dialog.html(data);
252
- // Need this for DragnDrop elements into elements window.
253
- // Badly this is screwing up maxHeight option
254
- $dialog.css({
255
- overflow: 'visible'
256
- }).dialog('widget').css({
257
- overflow: 'visible'
258
- });
259
- Alchemy.overlayObserver('#alchemyTrashWindow');
260
- },
261
- error: function(XMLHttpRequest, textStatus, errorThrown) {
262
- Alchemy.AjaxErrorHandler($dialog, XMLHttpRequest.status, textStatus, errorThrown);
263
- }
264
- });
265
- },
266
- close: function() {
267
- $dialog.remove();
268
- }
269
- });
270
- },
271
-
272
- refreshTrashWindow: function(page_id) {
273
- if ($('#alchemyTrashWindow').length > 0) {
274
- $('#alchemyTrashWindow').html(Alchemy.getOverlaySpinner({
275
- x: 380,
276
- y: 270
277
- }));
278
- $.get(Alchemy.routes.admin_trash_path(page_id), function(html) {
279
- $('#alchemyTrashWindow').html(html);
280
- });
281
- }
282
- },
283
-
284
- overlayObserver: function(scope) {
285
- $('a[data-alchemy-overlay]', scope).on('click', function(event) {
286
- var $this = $(this);
287
- var options = $this.data('alchemy-overlay');
288
- event.preventDefault();
289
- Alchemy.openWindow($this.attr('href'), options.title, options.size_x, options.size_y, options.resizable, options.modal, options.overflow);
290
- return false;
291
- });
292
-
293
- $('a[data-alchemy-confirm-delete]', scope).on('click', function(event) {
294
- var $this = $(this);
295
- var options = $this.data('alchemy-confirm-delete');
296
- event.preventDefault();
297
- Alchemy.confirmToDeleteWindow($this.attr('href'), options.title, options.message, options.ok_label, options.cancel_label);
298
- return false;
299
- });
300
-
301
- $('input[data-alchemy-confirm], button[data-alchemy-confirm]', scope).on('click', function(event) {
302
- var $this = $(this), self = this;
303
- var options = $this.data('alchemy-confirm');
304
- event.preventDefault();
305
- Alchemy.openConfirmWindow($.extend(options, {
306
- okCallback: function() {
307
- Alchemy.pleaseWaitOverlay();
308
- self.form.submit();
309
- }
310
- }));
311
- return false;
312
- });
313
- }
314
-
315
- });
316
-
317
- $(document).ready(function() {
318
- Alchemy.overlayObserver();
319
- });
320
-
321
- })(jQuery);
File without changes
@@ -1,8 +0,0 @@
1
- <%= image_tag(
2
- alchemy.zoom_picture_path(
3
- :id => @picture.id,
4
- :name => @picture.urlname,
5
- :format => :png,
6
- :sh => @picture.security_token
7
- )
8
- ) %>
@@ -1,11 +0,0 @@
1
- <%= Alchemy::I18n.t('mailer.new_user_mail.welcome') %>!
2
-
3
- <%= Alchemy::I18n.t('mailer.new_user_mail.login_url_explanation') %>:
4
-
5
- <%= @url %>
6
-
7
- <%= Alchemy::I18n.t('mailer.new_user_mail.username') %>: <%= @user.login %>
8
-
9
- <%= Alchemy::I18n.t('mailer.new_user_mail.password_notice') % {:url => new_password_url(@user)}%>
10
-
11
- <%= Alchemy::I18n.t('mailer.new_user_mail.greeting') %>
@@ -1,21 +0,0 @@
1
- class SwitchFromFleximageToDragonfly < ActiveRecord::Migration
2
- def up
3
- change_table :alchemy_pictures do |t|
4
- t.string :image_file_uid
5
- t.integer :image_file_size
6
- t.rename :image_width, :image_file_width
7
- t.rename :image_height, :image_file_height
8
- t.rename :image_filename, :image_file_name
9
- end
10
- end
11
-
12
- def down
13
- change_table :alchemy_pictures do |t|
14
- t.remove :image_file_uid
15
- t.remove :image_file_size
16
- t.rename :image_file_width, :image_width
17
- t.rename :image_file_height, :image_height
18
- t.rename :image_file_name, :image_filename
19
- end
20
- end
21
- end
@@ -1,14 +0,0 @@
1
- class CreateAlchemySites < ActiveRecord::Migration
2
- def change
3
- create_table "alchemy_sites" do |t|
4
- t.string :host
5
- t.string :name
6
- t.timestamps
7
- end
8
- add_index :alchemy_sites, :host, uniq: true
9
-
10
- # add Language#site_id
11
- add_column :alchemy_languages, :site_id, :integer
12
- add_index :alchemy_languages, :site_id
13
- end
14
- end
@@ -1,6 +0,0 @@
1
- class AddPublicToAlchemySites < ActiveRecord::Migration
2
- def change
3
- add_column :alchemy_sites, :public, :boolean, :default => false
4
- add_index :alchemy_sites, [:host, :public], :name => 'alchemy_sites_public_hosts_idx'
5
- end
6
- end
@@ -1,6 +0,0 @@
1
- class AddAliasesToSite < ActiveRecord::Migration
2
- def change
3
- add_column :alchemy_sites, :aliases, :text
4
- add_column :alchemy_sites, :redirect_to_primary_host, :boolean
5
- end
6
- end
@@ -1,11 +0,0 @@
1
- class CreateAlchemyLegacyPageUrls < ActiveRecord::Migration
2
- def change
3
- create_table :alchemy_legacy_page_urls do |t|
4
- t.string :urlname, null: false
5
- t.integer :page_id, null: false
6
-
7
- t.timestamps
8
- end
9
- add_index :alchemy_legacy_page_urls, :urlname
10
- end
11
- end
@@ -1,24 +0,0 @@
1
- class MigrateToDevise < ActiveRecord::Migration
2
- def change
3
- change_table :alchemy_users do |t|
4
- t.rename :crypted_password, :encrypted_password
5
- t.rename :login_count, :sign_in_count
6
- t.rename :current_login_at, :current_sign_in_at
7
- t.rename :last_login_at, :last_sign_in_at
8
- t.rename :current_login_ip, :current_sign_in_ip
9
- t.rename :last_login_ip, :last_sign_in_ip
10
- t.rename :failed_login_count, :failed_attempts
11
-
12
- t.remove :persistence_token
13
- t.remove :perishable_token
14
- t.remove :single_access_token
15
-
16
- t.column :reset_password_token, :string
17
- t.column :reset_password_sent_at, :datetime
18
-
19
- t.index :email, :unique => true
20
- t.index :login, :unique => true
21
- t.index :reset_password_token, :unique => true
22
- end
23
- end
24
- end
@@ -1,7 +0,0 @@
1
- require 'spec_helper'
2
-
3
- describe Alchemy do
4
- it "should be valid" do
5
- Alchemy.should be_a(Module)
6
- end
7
- end
@@ -1,21 +0,0 @@
1
- class SwitchFromFleximageToDragonfly < ActiveRecord::Migration
2
- def up
3
- change_table :alchemy_pictures do |t|
4
- t.string :image_file_uid
5
- t.integer :image_file_size
6
- t.rename :image_width, :image_file_width
7
- t.rename :image_height, :image_file_height
8
- t.rename :image_filename, :image_file_name
9
- end
10
- end
11
-
12
- def down
13
- change_table :alchemy_pictures do |t|
14
- t.remove :image_file_uid
15
- t.remove :image_file_size
16
- t.rename :image_file_width, :image_width
17
- t.rename :image_file_height, :image_height
18
- t.rename :image_file_name, :image_filename
19
- end
20
- end
21
- end