spree_essential_press 0.1.0.pre2

Sign up to get free protection for your applications and to get access to all the features.
Files changed (499) hide show
  1. data/.gitignore +8 -0
  2. data/Gemfile +4 -0
  3. data/LICENSE +23 -0
  4. data/README.md +26 -0
  5. data/Rakefile +40 -0
  6. data/Versionfile +2 -0
  7. data/app/controllers/admin/press_controller.rb +13 -0
  8. data/app/controllers/admin/press_images_controller.rb +37 -0
  9. data/app/controllers/admin/resource_controller.rb +225 -0
  10. data/app/controllers/press_controller.rb +7 -0
  11. data/app/models/press.rb +20 -0
  12. data/app/models/press_image.rb +41 -0
  13. data/app/validators/datetime_validator.rb +6 -0
  14. data/app/views/admin/hooks/_press_tab.html.erb +1 -0
  15. data/app/views/admin/press/_form.html.erb +40 -0
  16. data/app/views/admin/press/edit.html.erb +8 -0
  17. data/app/views/admin/press/index.html.erb +72 -0
  18. data/app/views/admin/press/new.html.erb +12 -0
  19. data/app/views/admin/press/show.html.erb +20 -0
  20. data/app/views/admin/press_images/_form.html.erb +8 -0
  21. data/app/views/admin/press_images/edit.html.erb +17 -0
  22. data/app/views/admin/press_images/index.html.erb +40 -0
  23. data/app/views/admin/press_images/new.html.erb +19 -0
  24. data/app/views/admin/shared/_press_tabs.html.erb +20 -0
  25. data/app/views/press/_press.html.erb +23 -0
  26. data/app/views/press/index.html.erb +15 -0
  27. data/config/locales/en.yml +47 -0
  28. data/config/routes.rb +11 -0
  29. data/lib/generators/essentials_base.rb +23 -0
  30. data/lib/generators/spree_essentials/press_generator.rb +16 -0
  31. data/lib/generators/templates/db/migrate/create_press.rb +16 -0
  32. data/lib/spree_core/action_callbacks.rb +26 -0
  33. data/lib/spree_essential_press.rb +32 -0
  34. data/lib/spree_essential_press/custom_hooks.rb +9 -0
  35. data/lib/spree_essential_press/inflection.rb +3 -0
  36. data/lib/spree_essential_press/version.rb +3 -0
  37. data/lib/tasks/sample.rake +35 -0
  38. data/lib/tasks/sample/sailing.jpg +0 -0
  39. data/lib/tasks/sample/sailing2.jpg +0 -0
  40. data/lib/tasks/sample/sailing3.jpg +0 -0
  41. data/public/javascripts/date.js +145 -0
  42. data/public/javascripts/jquery.autodate.js +112 -0
  43. data/spree_essential_press.gemspec +39 -0
  44. data/test/dummy/Rakefile +7 -0
  45. data/test/dummy/app/controllers/application_controller.rb +3 -0
  46. data/test/dummy/config.ru +4 -0
  47. data/test/dummy/config/application.rb +44 -0
  48. data/test/dummy/config/boot.rb +10 -0
  49. data/test/dummy/config/database.yml +22 -0
  50. data/test/dummy/config/environment.rb +5 -0
  51. data/test/dummy/config/environments/development.rb +26 -0
  52. data/test/dummy/config/environments/production.rb +49 -0
  53. data/test/dummy/config/environments/test.rb +35 -0
  54. data/test/dummy/config/initializers/backtrace_silencers.rb +7 -0
  55. data/test/dummy/config/initializers/inflections.rb +10 -0
  56. data/test/dummy/config/initializers/mime_types.rb +5 -0
  57. data/test/dummy/config/initializers/secret_token.rb +7 -0
  58. data/test/dummy/config/initializers/session_store.rb +8 -0
  59. data/test/dummy/config/locales/en.yml +5 -0
  60. data/test/dummy/config/routes.rb +58 -0
  61. data/test/dummy/db/default/countries.yml +1583 -0
  62. data/test/dummy/db/default/roles.yml +7 -0
  63. data/test/dummy/db/default/states.yml +256 -0
  64. data/test/dummy/db/default/zone_members.yml +169 -0
  65. data/test/dummy/db/default/zones.yml +13 -0
  66. data/test/dummy/db/migrate/20090823005402_spree_zero_nine_zero.rb +442 -0
  67. data/test/dummy/db/migrate/20090904192342_create_indexes_for_inventory_units.rb +12 -0
  68. data/test/dummy/db/migrate/20090923100315_add_count_on_hand_to_variants_and_products.rb +36 -0
  69. data/test/dummy/db/migrate/20091007134354_change_taxons_to_nested_set.rb +40 -0
  70. data/test/dummy/db/migrate/20091008091614_move_to_configurable_gateways.rb +55 -0
  71. data/test/dummy/db/migrate/20091012120519_product_groups_and_scopes.rb +25 -0
  72. data/test/dummy/db/migrate/20091015110842_add_open_id_authentication_tables.rb +20 -0
  73. data/test/dummy/db/migrate/20091015153048_add_openid_field_to_users.rb +19 -0
  74. data/test/dummy/db/migrate/20091016174634_change_preference_value_type.rb +10 -0
  75. data/test/dummy/db/migrate/20091017175558_create_billing_integrations.rb +16 -0
  76. data/test/dummy/db/migrate/20091021133257_charge_refactoring.rb +35 -0
  77. data/test/dummy/db/migrate/20091104151730_add_some_indexes.rb +21 -0
  78. data/test/dummy/db/migrate/20091126190904_checkout_state_machine.rb +13 -0
  79. data/test/dummy/db/migrate/20091209153045_state_for_shipments.rb +9 -0
  80. data/test/dummy/db/migrate/20091209202200_make_state_events_polymorphic.rb +12 -0
  81. data/test/dummy/db/migrate/20091211203813_ship_address_id_for_checkouts.rb +9 -0
  82. data/test/dummy/db/migrate/20091212161118_shipping_method_id_for_checkouts.rb +9 -0
  83. data/test/dummy/db/migrate/20091213222815_creditcard_last_four_digits.rb +19 -0
  84. data/test/dummy/db/migrate/20091214183826_populate_legacy_shipment_state.rb +19 -0
  85. data/test/dummy/db/migrate/20100105090147_add_cost_price.rb +9 -0
  86. data/test/dummy/db/migrate/20100105132138_shipment_id_for_inventory_units.rb +21 -0
  87. data/test/dummy/db/migrate/20100111205525_cim_fields_for_creditcards.rb +11 -0
  88. data/test/dummy/db/migrate/20100112151511_create_return_authorizations.rb +16 -0
  89. data/test/dummy/db/migrate/20100113090919_add_return_authorization_to_inventory_units.rb +9 -0
  90. data/test/dummy/db/migrate/20100113203104_create_trackers.rb +14 -0
  91. data/test/dummy/db/migrate/20100121160010_creditcard_id_for_creditcard_txns.rb +9 -0
  92. data/test/dummy/db/migrate/20100121183934_original_creditcard_txn_id_for_creditcard_txns.rb +9 -0
  93. data/test/dummy/db/migrate/20100125145351_add_test_mode_to_billing_integration.rb +11 -0
  94. data/test/dummy/db/migrate/20100126103714_create_products_product_groups.rb +12 -0
  95. data/test/dummy/db/migrate/20100209025806_create_payment_methods.rb +20 -0
  96. data/test/dummy/db/migrate/20100209144531_polymorphic_payments.rb +29 -0
  97. data/test/dummy/db/migrate/20100213103131_change_payments_payment_method_to_belongs_to.rb +11 -0
  98. data/test/dummy/db/migrate/20100214212536_assign_creditcard_txns_to_payment.rb +16 -0
  99. data/test/dummy/db/migrate/20100223170312_sti_for_transactions.rb +14 -0
  100. data/test/dummy/db/migrate/20100223183812_drop_billing_integrations.rb +16 -0
  101. data/test/dummy/db/migrate/20100224153127_deleted_at_for_payment_methods.rb +13 -0
  102. data/test/dummy/db/migrate/20100301163454_add_adjustments_index.rb +10 -0
  103. data/test/dummy/db/migrate/20100306153445_fix_by_popularity.rb +8 -0
  104. data/test/dummy/db/migrate/20100317120946_add_alt_text_to_images.rb +9 -0
  105. data/test/dummy/db/migrate/20100427121301_add_display_to_payment_methods.rb +9 -0
  106. data/test/dummy/db/migrate/20100504142133_add_addresses_checkouts_indexes.rb +16 -0
  107. data/test/dummy/db/migrate/20100506180619_add_icon_to_taxons.rb +18 -0
  108. data/test/dummy/db/migrate/20100506185838_add_description_to_taxons.rb +11 -0
  109. data/test/dummy/db/migrate/20100528155333_index_for_shipments_number.rb +9 -0
  110. data/test/dummy/db/migrate/20100528185820_add_index_on_users_persistence_token.rb +9 -0
  111. data/test/dummy/db/migrate/20100605152042_add_default_to_tax_categories.rb +9 -0
  112. data/test/dummy/db/migrate/20100624110730_add_display_to_shipping_methods.rb +9 -0
  113. data/test/dummy/db/migrate/20100624123336_rename_payment_method_display.rb +9 -0
  114. data/test/dummy/db/migrate/20100624175547_rename_preferences_field.rb +8 -0
  115. data/test/dummy/db/migrate/20100811163637_add_guest_flag.rb +13 -0
  116. data/test/dummy/db/migrate/20100811205836_drop_order_token.rb +11 -0
  117. data/test/dummy/db/migrate/20100812162326_payments_state_and_assigned_to_order_only.rb +11 -0
  118. data/test/dummy/db/migrate/20100813023502_create_address_keys_for_order.rb +15 -0
  119. data/test/dummy/db/migrate/20100813185745_payment_total_for_orders.rb +9 -0
  120. data/test/dummy/db/migrate/20100816212146_shipping_method_id_for_orders.rb +9 -0
  121. data/test/dummy/db/migrate/20100817152723_add_shipment_and_payment_state.rb +15 -0
  122. data/test/dummy/db/migrate/20100819170125_refactor_adjustments.rb +19 -0
  123. data/test/dummy/db/migrate/20100820135707_response_code_and_avs_response_for_payments.rb +11 -0
  124. data/test/dummy/db/migrate/20100901171814_change_guest_flag_to_anonymous.rb +13 -0
  125. data/test/dummy/db/migrate/20100903203949_email_for_orders.rb +9 -0
  126. data/test/dummy/db/migrate/20100923162011_create_mail_methods.rb +12 -0
  127. data/test/dummy/db/migrate/20100929151905_rename_frozen_to_locked.rb +8 -0
  128. data/test/dummy/db/migrate/20101008190536_move_special_instructions_to_orders.rb +11 -0
  129. data/test/dummy/db/migrate/20101026184700_create_log_entries.rb +15 -0
  130. data/test/dummy/db/migrate/20101026184714_migrate_transactions_to_payment_state.rb +94 -0
  131. data/test/dummy/db/migrate/20101026184746_delete_in_progress_orders.rb +18 -0
  132. data/test/dummy/db/migrate/20101026184808_migrate_checkout_to_orders.rb +27 -0
  133. data/test/dummy/db/migrate/20101026184833_migrate_adjustments.rb +9 -0
  134. data/test/dummy/db/migrate/20101026184855_remove_shipped_state.rb +14 -0
  135. data/test/dummy/db/migrate/20101026184916_prevent_nil_payment_total.rb +8 -0
  136. data/test/dummy/db/migrate/20101026184932_prevent_nil_email.rb +9 -0
  137. data/test/dummy/db/migrate/20101026184959_generate_anonymous_users.rb +14 -0
  138. data/test/dummy/db/migrate/20101026185022_update_order_state.rb +8 -0
  139. data/test/dummy/db/migrate/20101026192225_cleanup_legacy_tables.rb +11 -0
  140. data/test/dummy/db/migrate/20101028151745_remove_number_and_cvv_from_credicard.rb +9 -0
  141. data/test/dummy/db/migrate/20101101185116_rename_columns_for_devise.rb +38 -0
  142. data/test/dummy/db/migrate/20101103212716_drop_anonymous_field_for_user.rb +8 -0
  143. data/test/dummy/db/migrate/20101111133551_renamed_rma_cancelled_state.rb +10 -0
  144. data/test/dummy/db/migrate/20101117031806_fix_problematic_index_names.rb +13 -0
  145. data/test/dummy/db/migrate/20101214150824_convert_user_remember_field.rb +11 -0
  146. data/test/dummy/db/migrate/20101217012656_create_tokenized_permissions.rb +18 -0
  147. data/test/dummy/db/migrate/20101219201531_tokens_for_legacy_orders.rb +12 -0
  148. data/test/dummy/db/migrate/20110421185054_create_press.rb +16 -0
  149. data/test/dummy/db/sample/users.rb +53 -0
  150. data/test/dummy/db/schema.rb +548 -0
  151. data/test/dummy/db/seeds.rb +3 -0
  152. data/test/dummy/public/404.html +26 -0
  153. data/test/dummy/public/422.html +26 -0
  154. data/test/dummy/public/500.html +26 -0
  155. data/test/dummy/public/assets/posts/1/large/02tii.jpg +0 -0
  156. data/test/dummy/public/assets/posts/1/mini/02tii.jpg +0 -0
  157. data/test/dummy/public/assets/posts/1/original/02tii.jpg +0 -0
  158. data/test/dummy/public/assets/posts/1/preview/02tii.jpg +0 -0
  159. data/test/dummy/public/assets/posts/1/small/02tii.jpg +0 -0
  160. data/test/dummy/public/assets/posts/2/large/sailing-avatar.jpg +0 -0
  161. data/test/dummy/public/assets/posts/2/mini/sailing-avatar.jpg +0 -0
  162. data/test/dummy/public/assets/posts/2/original/sailing-avatar.jpg +0 -0
  163. data/test/dummy/public/assets/posts/2/preview/sailing-avatar.jpg +0 -0
  164. data/test/dummy/public/assets/posts/2/small/sailing-avatar.jpg +0 -0
  165. data/test/dummy/public/assets/posts/3/large/fractals_generative.jpg +0 -0
  166. data/test/dummy/public/assets/posts/3/mini/fractals_generative.jpg +0 -0
  167. data/test/dummy/public/assets/posts/3/original/fractals_generative.jpg +0 -0
  168. data/test/dummy/public/assets/posts/3/preview/fractals_generative.jpg +0 -0
  169. data/test/dummy/public/assets/posts/3/small/fractals_generative.jpg +0 -0
  170. data/test/dummy/public/assets/products/4/large/bmw2002tii.jpg +0 -0
  171. data/test/dummy/public/assets/products/4/mini/bmw2002tii.jpg +0 -0
  172. data/test/dummy/public/assets/products/4/original/bmw2002tii.jpg +0 -0
  173. data/test/dummy/public/assets/products/4/product/bmw2002tii.jpg +0 -0
  174. data/test/dummy/public/assets/products/4/small/bmw2002tii.jpg +0 -0
  175. data/test/dummy/public/favicon.ico +0 -0
  176. data/test/dummy/public/images/add-to-cart.png +0 -0
  177. data/test/dummy/public/images/admin/bg/active-tab.png +0 -0
  178. data/test/dummy/public/images/admin/bg/admin_tab_back.png +0 -0
  179. data/test/dummy/public/images/admin/bg/admin_tab_selected_back.png +0 -0
  180. data/test/dummy/public/images/admin/bg/content-back-blue.png +0 -0
  181. data/test/dummy/public/images/admin/bg/content-back-green.png +0 -0
  182. data/test/dummy/public/images/admin/bg/content-back.png +0 -0
  183. data/test/dummy/public/images/admin/bg/flash-error.png +0 -0
  184. data/test/dummy/public/images/admin/bg/flash-notice.png +0 -0
  185. data/test/dummy/public/images/admin/bg/green-stripes.gif +0 -0
  186. data/test/dummy/public/images/admin/bg/green-stripes.png +0 -0
  187. data/test/dummy/public/images/admin/bg/grid_header_back.png +0 -0
  188. data/test/dummy/public/images/admin/bg/grid_header_back_green.png +0 -0
  189. data/test/dummy/public/images/admin/bg/header-bg.png +0 -0
  190. data/test/dummy/public/images/admin/bg/header.png +0 -0
  191. data/test/dummy/public/images/admin/bg/header_bg.jpg +0 -0
  192. data/test/dummy/public/images/admin/bg/menu-current.png +0 -0
  193. data/test/dummy/public/images/admin/bg/red-stripes.gif +0 -0
  194. data/test/dummy/public/images/admin/bg/red-stripes.png +0 -0
  195. data/test/dummy/public/images/admin/bg/spree_50.png +0 -0
  196. data/test/dummy/public/images/admin/bg/subnav-divider.png +0 -0
  197. data/test/dummy/public/images/admin/bg/subnav.png +0 -0
  198. data/test/dummy/public/images/admin/bg/tab-back.png +0 -0
  199. data/test/dummy/public/images/admin/buttons/blue/left_01.png +0 -0
  200. data/test/dummy/public/images/admin/buttons/blue/right_01.png +0 -0
  201. data/test/dummy/public/images/admin/buttons/drag-handle-green.png +0 -0
  202. data/test/dummy/public/images/admin/buttons/green/left_01.png +0 -0
  203. data/test/dummy/public/images/admin/buttons/green/right_01.png +0 -0
  204. data/test/dummy/public/images/admin/buttons/left_01.png +0 -0
  205. data/test/dummy/public/images/admin/buttons/left_01_small.png +0 -0
  206. data/test/dummy/public/images/admin/buttons/orange/left_03.png +0 -0
  207. data/test/dummy/public/images/admin/buttons/orange/right_03.png +0 -0
  208. data/test/dummy/public/images/admin/buttons/right_01.png +0 -0
  209. data/test/dummy/public/images/admin/buttons/right_01_small.png +0 -0
  210. data/test/dummy/public/images/admin/icons/16x16/1.png +0 -0
  211. data/test/dummy/public/images/admin/icons/16x16/10.png +0 -0
  212. data/test/dummy/public/images/admin/icons/16x16/2.png +0 -0
  213. data/test/dummy/public/images/admin/icons/16x16/3.png +0 -0
  214. data/test/dummy/public/images/admin/icons/16x16/4.png +0 -0
  215. data/test/dummy/public/images/admin/icons/16x16/5.png +0 -0
  216. data/test/dummy/public/images/admin/icons/16x16/6.png +0 -0
  217. data/test/dummy/public/images/admin/icons/16x16/7.png +0 -0
  218. data/test/dummy/public/images/admin/icons/16x16/8.png +0 -0
  219. data/test/dummy/public/images/admin/icons/16x16/9.png +0 -0
  220. data/test/dummy/public/images/admin/icons/32x32/1.png +0 -0
  221. data/test/dummy/public/images/admin/icons/32x32/10.png +0 -0
  222. data/test/dummy/public/images/admin/icons/32x32/11.png +0 -0
  223. data/test/dummy/public/images/admin/icons/32x32/2.png +0 -0
  224. data/test/dummy/public/images/admin/icons/32x32/3.png +0 -0
  225. data/test/dummy/public/images/admin/icons/32x32/4.png +0 -0
  226. data/test/dummy/public/images/admin/icons/32x32/5.png +0 -0
  227. data/test/dummy/public/images/admin/icons/32x32/6.png +0 -0
  228. data/test/dummy/public/images/admin/icons/32x32/7.png +0 -0
  229. data/test/dummy/public/images/admin/icons/32x32/8.png +0 -0
  230. data/test/dummy/public/images/admin/icons/32x32/9.png +0 -0
  231. data/test/dummy/public/images/admin/icons/accept.png +0 -0
  232. data/test/dummy/public/images/admin/icons/add.gif +0 -0
  233. data/test/dummy/public/images/admin/icons/add.png +0 -0
  234. data/test/dummy/public/images/admin/icons/arrow-down.gif +0 -0
  235. data/test/dummy/public/images/admin/icons/cross.png +0 -0
  236. data/test/dummy/public/images/admin/icons/delete.gif +0 -0
  237. data/test/dummy/public/images/admin/icons/delete.png +0 -0
  238. data/test/dummy/public/images/admin/icons/drag.gif +0 -0
  239. data/test/dummy/public/images/admin/icons/edit.gif +0 -0
  240. data/test/dummy/public/images/admin/icons/edit.png +0 -0
  241. data/test/dummy/public/images/admin/icons/email.png +0 -0
  242. data/test/dummy/public/images/admin/icons/error.png +0 -0
  243. data/test/dummy/public/images/admin/icons/exclamation.png +0 -0
  244. data/test/dummy/public/images/admin/icons/feed.png +0 -0
  245. data/test/dummy/public/images/admin/icons/pdf.png +0 -0
  246. data/test/dummy/public/images/admin/icons/reorder.gif +0 -0
  247. data/test/dummy/public/images/admin/icons/search.gif +0 -0
  248. data/test/dummy/public/images/admin/icons/send-email.png +0 -0
  249. data/test/dummy/public/images/admin/icons/stop.png +0 -0
  250. data/test/dummy/public/images/admin/icons/tick.png +0 -0
  251. data/test/dummy/public/images/admin/icons/up.gif +0 -0
  252. data/test/dummy/public/images/admin/icons/xls.png +0 -0
  253. data/test/dummy/public/images/admin/tabs/off-left.png +0 -0
  254. data/test/dummy/public/images/admin/tabs/off-right.png +0 -0
  255. data/test/dummy/public/images/admin/tabs/on-left.png +0 -0
  256. data/test/dummy/public/images/admin/tabs/on-right.png +0 -0
  257. data/test/dummy/public/images/ajax_loader.gif +0 -0
  258. data/test/dummy/public/images/amex_cid.gif +0 -0
  259. data/test/dummy/public/images/bg-button-hover.png +0 -0
  260. data/test/dummy/public/images/bg-button-pressed.png +0 -0
  261. data/test/dummy/public/images/bg-button.gif +0 -0
  262. data/test/dummy/public/images/bg-button.png +0 -0
  263. data/test/dummy/public/images/blue/left_01.png +0 -0
  264. data/test/dummy/public/images/blue/right_01.png +0 -0
  265. data/test/dummy/public/images/body-back.png +0 -0
  266. data/test/dummy/public/images/bottom_shine.png +0 -0
  267. data/test/dummy/public/images/breadcrumb.gif +0 -0
  268. data/test/dummy/public/images/button-dark-hover.png +0 -0
  269. data/test/dummy/public/images/button-dark.png +0 -0
  270. data/test/dummy/public/images/buttons/bg-button-hover.png +0 -0
  271. data/test/dummy/public/images/buttons/bg-button-pressed.png +0 -0
  272. data/test/dummy/public/images/buttons/bg-button.gif +0 -0
  273. data/test/dummy/public/images/buttons/bg-button.png +0 -0
  274. data/test/dummy/public/images/buttons/blue/left_01.png +0 -0
  275. data/test/dummy/public/images/buttons/blue/right_01.png +0 -0
  276. data/test/dummy/public/images/buttons/button-dark-hover.png +0 -0
  277. data/test/dummy/public/images/buttons/button-dark.png +0 -0
  278. data/test/dummy/public/images/buttons/drag-handle-green.png +0 -0
  279. data/test/dummy/public/images/buttons/green/left_01.png +0 -0
  280. data/test/dummy/public/images/buttons/green/right_01.png +0 -0
  281. data/test/dummy/public/images/buttons/left_01.png +0 -0
  282. data/test/dummy/public/images/buttons/left_01_small.png +0 -0
  283. data/test/dummy/public/images/buttons/orange/left_03.png +0 -0
  284. data/test/dummy/public/images/buttons/orange/right_03.png +0 -0
  285. data/test/dummy/public/images/buttons/right_01.png +0 -0
  286. data/test/dummy/public/images/buttons/right_01_small.png +0 -0
  287. data/test/dummy/public/images/buttons/sxsw-ribbon-v1.png +0 -0
  288. data/test/dummy/public/images/buttons/top-shine.png +0 -0
  289. data/test/dummy/public/images/calendar_date_select/calendar.gif +0 -0
  290. data/test/dummy/public/images/cart-empty.png +0 -0
  291. data/test/dummy/public/images/cart-empty_x32.png +0 -0
  292. data/test/dummy/public/images/cart-full.png +0 -0
  293. data/test/dummy/public/images/cart-full_x32.png +0 -0
  294. data/test/dummy/public/images/checkout.png +0 -0
  295. data/test/dummy/public/images/creditcard.gif +0 -0
  296. data/test/dummy/public/images/datepicker/backstripes.gif +0 -0
  297. data/test/dummy/public/images/datepicker/bg_header.jpg +0 -0
  298. data/test/dummy/public/images/datepicker/bullet1.gif +0 -0
  299. data/test/dummy/public/images/datepicker/bullet2.gif +0 -0
  300. data/test/dummy/public/images/datepicker/cal.gif +0 -0
  301. data/test/dummy/public/images/datepicker/gradient-e5e5e5-ffffff.gif +0 -0
  302. data/test/dummy/public/images/discover_cid.gif +0 -0
  303. data/test/dummy/public/images/drag-handle-green.png +0 -0
  304. data/test/dummy/public/images/favicon.ico +0 -0
  305. data/test/dummy/public/images/green/left_01.png +0 -0
  306. data/test/dummy/public/images/green/right_01.png +0 -0
  307. data/test/dummy/public/images/grid.png +0 -0
  308. data/test/dummy/public/images/left_01.png +0 -0
  309. data/test/dummy/public/images/left_01_small.png +0 -0
  310. data/test/dummy/public/images/master_cid.jpg +0 -0
  311. data/test/dummy/public/images/menu-current.png +0 -0
  312. data/test/dummy/public/images/menu-hover.png +0 -0
  313. data/test/dummy/public/images/noimage/mini.jpg +0 -0
  314. data/test/dummy/public/images/noimage/product.jpg +0 -0
  315. data/test/dummy/public/images/noimage/small.jpg +0 -0
  316. data/test/dummy/public/images/openid-inputicon.gif +0 -0
  317. data/test/dummy/public/images/orange/left_03.png +0 -0
  318. data/test/dummy/public/images/orange/right_03.png +0 -0
  319. data/test/dummy/public/images/progress.gif +0 -0
  320. data/test/dummy/public/images/right_01.png +0 -0
  321. data/test/dummy/public/images/right_01_small.png +0 -0
  322. data/test/dummy/public/images/separator.png +0 -0
  323. data/test/dummy/public/images/shadow-top.png +0 -0
  324. data/test/dummy/public/images/shadow_top.png +0 -0
  325. data/test/dummy/public/images/spinner.gif +0 -0
  326. data/test/dummy/public/images/spree.jpg +0 -0
  327. data/test/dummy/public/images/spree/progress.gif +0 -0
  328. data/test/dummy/public/images/spree/spinner.gif +0 -0
  329. data/test/dummy/public/images/spree/spree.jpg +0 -0
  330. data/test/dummy/public/images/step-progress/completed-completed.gif +0 -0
  331. data/test/dummy/public/images/step-progress/completed-current.gif +0 -0
  332. data/test/dummy/public/images/step-progress/completed-first.gif +0 -0
  333. data/test/dummy/public/images/step-progress/current-first.gif +0 -0
  334. data/test/dummy/public/images/step-progress/current-incomplete.gif +0 -0
  335. data/test/dummy/public/images/step-progress/current-right.gif +0 -0
  336. data/test/dummy/public/images/step-progress/incomplete-incomplete.gif +0 -0
  337. data/test/dummy/public/images/step-progress/incomplete-right.gif +0 -0
  338. data/test/dummy/public/images/steps/1.png +0 -0
  339. data/test/dummy/public/images/steps/1_small.png +0 -0
  340. data/test/dummy/public/images/steps/2.png +0 -0
  341. data/test/dummy/public/images/steps/2_small.png +0 -0
  342. data/test/dummy/public/images/steps/3.png +0 -0
  343. data/test/dummy/public/images/steps/3_small.png +0 -0
  344. data/test/dummy/public/images/steps/4.png +0 -0
  345. data/test/dummy/public/images/steps/4_small.png +0 -0
  346. data/test/dummy/public/images/steps/5.png +0 -0
  347. data/test/dummy/public/images/steps/5_small.png +0 -0
  348. data/test/dummy/public/images/steps/6.png +0 -0
  349. data/test/dummy/public/images/steps/6_small.png +0 -0
  350. data/test/dummy/public/images/sxsw-ribbon-v1.png +0 -0
  351. data/test/dummy/public/images/tab_bottom.gif +0 -0
  352. data/test/dummy/public/images/tile-header.png +0 -0
  353. data/test/dummy/public/images/tile-slider.png +0 -0
  354. data/test/dummy/public/images/top-shine.png +0 -0
  355. data/test/dummy/public/images/tree-nav-icons/bullet.gif +0 -0
  356. data/test/dummy/public/images/tree-nav-icons/minus.gif +0 -0
  357. data/test/dummy/public/images/tree-nav-icons/plus.gif +0 -0
  358. data/test/dummy/public/images/tree-nav-icons/treeview-loading.gif +0 -0
  359. data/test/dummy/public/images/tree-nav-icons/treeview-sprite.gif +0 -0
  360. data/test/dummy/public/images/update.png +0 -0
  361. data/test/dummy/public/images/visa_cid.gif +0 -0
  362. data/test/dummy/public/images/wrapper-back-2.png +0 -0
  363. data/test/dummy/public/images/wrapper-back.png +0 -0
  364. data/test/dummy/public/images/yui-menubaritem_submenuindicator.png +0 -0
  365. data/test/dummy/public/images/yui-menubaritem_submenuindicator_disabled.png +0 -0
  366. data/test/dummy/public/images/yui-menuitem_checkbox.png +0 -0
  367. data/test/dummy/public/images/yui-menuitem_checkbox_disabled.png +0 -0
  368. data/test/dummy/public/images/yui-menuitem_submenuindicator.png +0 -0
  369. data/test/dummy/public/images/yui-menuitem_submenuindicator_disabled.png +0 -0
  370. data/test/dummy/public/images/yui-sprite.png +0 -0
  371. data/test/dummy/public/javascripts/additional-methods.js +236 -0
  372. data/test/dummy/public/javascripts/admin.js +226 -0
  373. data/test/dummy/public/javascripts/admin/address_states.js +25 -0
  374. data/test/dummy/public/javascripts/admin/checkouts/edit.js +130 -0
  375. data/test/dummy/public/javascripts/admin/orders/edit.js +23 -0
  376. data/test/dummy/public/javascripts/admin/orders/edit_form.js +16 -0
  377. data/test/dummy/public/javascripts/admin/payments/new.js +9 -0
  378. data/test/dummy/public/javascripts/admin/promotions.js +26 -0
  379. data/test/dummy/public/javascripts/admin/unobtrusive_handlers.js +15 -0
  380. data/test/dummy/public/javascripts/application.js +12 -0
  381. data/test/dummy/public/javascripts/calculator.js +15 -0
  382. data/test/dummy/public/javascripts/checkout.js +75 -0
  383. data/test/dummy/public/javascripts/controls.js +965 -0
  384. data/test/dummy/public/javascripts/dashboard.js +143 -0
  385. data/test/dummy/public/javascripts/datepicker.js +1445 -0
  386. data/test/dummy/public/javascripts/dragdrop.js +974 -0
  387. data/test/dummy/public/javascripts/effects.js +1123 -0
  388. data/test/dummy/public/javascripts/gateway.js +13 -0
  389. data/test/dummy/public/javascripts/jqPlot/excanvas.min.js +1 -0
  390. data/test/dummy/public/javascripts/jqPlot/jquery.jqplot.min.js +14 -0
  391. data/test/dummy/public/javascripts/jqPlot/plugins/jqplot.canvasAxisLabelRenderer.min.js +14 -0
  392. data/test/dummy/public/javascripts/jqPlot/plugins/jqplot.canvasAxisTickRenderer.min.js +14 -0
  393. data/test/dummy/public/javascripts/jqPlot/plugins/jqplot.canvasTextRenderer.min.js +14 -0
  394. data/test/dummy/public/javascripts/jqPlot/plugins/jqplot.categoryAxisRenderer.min.js +14 -0
  395. data/test/dummy/public/javascripts/jqPlot/plugins/jqplot.dateAxisRenderer.min.js +14 -0
  396. data/test/dummy/public/javascripts/jqPlot/plugins/jqplot.highlighter.min.js +14 -0
  397. data/test/dummy/public/javascripts/jqPlot/plugins/jqplot.pieRenderer.min.js +14 -0
  398. data/test/dummy/public/javascripts/jquery-1.4.2.min.js +154 -0
  399. data/test/dummy/public/javascripts/jquery-ui.js +188 -0
  400. data/test/dummy/public/javascripts/jquery.alerts/images/help.gif +0 -0
  401. data/test/dummy/public/javascripts/jquery.alerts/images/important.gif +0 -0
  402. data/test/dummy/public/javascripts/jquery.alerts/images/info.gif +0 -0
  403. data/test/dummy/public/javascripts/jquery.alerts/images/title.gif +0 -0
  404. data/test/dummy/public/javascripts/jquery.alerts/jquery.alerts.css +57 -0
  405. data/test/dummy/public/javascripts/jquery.alerts/jquery.alerts.js +235 -0
  406. data/test/dummy/public/javascripts/jquery.alerts/jquery.alerts.spree.css +30 -0
  407. data/test/dummy/public/javascripts/jquery.autocomplete.min.js +13 -0
  408. data/test/dummy/public/javascripts/jquery.cookie.js +96 -0
  409. data/test/dummy/public/javascripts/jquery.delayedobserver.js +35 -0
  410. data/test/dummy/public/javascripts/jquery.js +19 -0
  411. data/test/dummy/public/javascripts/jquery.suggest.js +276 -0
  412. data/test/dummy/public/javascripts/jquery.template.js +255 -0
  413. data/test/dummy/public/javascripts/jquery.tokeninput.js +618 -0
  414. data/test/dummy/public/javascripts/jquery.validate.min.js +16 -0
  415. data/test/dummy/public/javascripts/jrails.autocomplete.js +274 -0
  416. data/test/dummy/public/javascripts/jrails.js +1 -0
  417. data/test/dummy/public/javascripts/jsTree/jquery.jstree.js +3510 -0
  418. data/test/dummy/public/javascripts/jsTree/jquery.tree.js +2058 -0
  419. data/test/dummy/public/javascripts/jsTree/plugins/jquery.tree.contextmenu.js +129 -0
  420. data/test/dummy/public/javascripts/jsTree/themes/apple/bg.jpg +0 -0
  421. data/test/dummy/public/javascripts/jsTree/themes/apple/d.png +0 -0
  422. data/test/dummy/public/javascripts/jsTree/themes/apple/dot_for_ie.gif +0 -0
  423. data/test/dummy/public/javascripts/jsTree/themes/apple/icons.png +0 -0
  424. data/test/dummy/public/javascripts/jsTree/themes/apple/style.css +60 -0
  425. data/test/dummy/public/javascripts/jsTree/themes/apple/throbber.gif +0 -0
  426. data/test/dummy/public/javascripts/lang/af.js +40 -0
  427. data/test/dummy/public/javascripts/lang/ar.js +50 -0
  428. data/test/dummy/public/javascripts/lang/de.js +40 -0
  429. data/test/dummy/public/javascripts/lang/du.js +40 -0
  430. data/test/dummy/public/javascripts/lang/en.js +42 -0
  431. data/test/dummy/public/javascripts/lang/es.js +41 -0
  432. data/test/dummy/public/javascripts/lang/fi.js +40 -0
  433. data/test/dummy/public/javascripts/lang/fr.js +44 -0
  434. data/test/dummy/public/javascripts/lang/gr.js +40 -0
  435. data/test/dummy/public/javascripts/lang/he.js +49 -0
  436. data/test/dummy/public/javascripts/lang/it.js +13 -0
  437. data/test/dummy/public/javascripts/lang/nl.js +40 -0
  438. data/test/dummy/public/javascripts/lang/no.js +40 -0
  439. data/test/dummy/public/javascripts/lang/pt.js +50 -0
  440. data/test/dummy/public/javascripts/lang/ro.js +40 -0
  441. data/test/dummy/public/javascripts/lang/ru.js +40 -0
  442. data/test/dummy/public/javascripts/lang/sp.js +40 -0
  443. data/test/dummy/public/javascripts/lang/sv.js +41 -0
  444. data/test/dummy/public/javascripts/lang/ua.js +40 -0
  445. data/test/dummy/public/javascripts/localization/messages_cn.js +24 -0
  446. data/test/dummy/public/javascripts/localization/messages_cs.js +23 -0
  447. data/test/dummy/public/javascripts/localization/messages_da.js +21 -0
  448. data/test/dummy/public/javascripts/localization/messages_de.js +21 -0
  449. data/test/dummy/public/javascripts/localization/messages_es.js +24 -0
  450. data/test/dummy/public/javascripts/localization/messages_fr.js +23 -0
  451. data/test/dummy/public/javascripts/localization/messages_hu.js +21 -0
  452. data/test/dummy/public/javascripts/localization/messages_it.js +26 -0
  453. data/test/dummy/public/javascripts/localization/messages_kk.js +23 -0
  454. data/test/dummy/public/javascripts/localization/messages_nl.js +23 -0
  455. data/test/dummy/public/javascripts/localization/messages_no.js +23 -0
  456. data/test/dummy/public/javascripts/localization/messages_pl.js +23 -0
  457. data/test/dummy/public/javascripts/localization/messages_ptbr.js +30 -0
  458. data/test/dummy/public/javascripts/localization/messages_ro.js +24 -0
  459. data/test/dummy/public/javascripts/localization/messages_ru.js +23 -0
  460. data/test/dummy/public/javascripts/localization/messages_se.js +23 -0
  461. data/test/dummy/public/javascripts/localization/messages_sk.js +21 -0
  462. data/test/dummy/public/javascripts/localization/messages_tr.js +24 -0
  463. data/test/dummy/public/javascripts/localization/messages_tw.js +24 -0
  464. data/test/dummy/public/javascripts/localization/messages_ua.js +24 -0
  465. data/test/dummy/public/javascripts/nested-attribute.js +26 -0
  466. data/test/dummy/public/javascripts/open_id.js +15 -0
  467. data/test/dummy/public/javascripts/product.js +49 -0
  468. data/test/dummy/public/javascripts/prototype.js +6001 -0
  469. data/test/dummy/public/javascripts/rails.js +127 -0
  470. data/test/dummy/public/javascripts/taxonomy.js +197 -0
  471. data/test/dummy/public/javascripts/zone.js +40 -0
  472. data/test/dummy/public/stylesheets/.gitkeep +0 -0
  473. data/test/dummy/public/stylesheets/admin/admin-forms.css +159 -0
  474. data/test/dummy/public/stylesheets/admin/admin-reset.css +67 -0
  475. data/test/dummy/public/stylesheets/admin/admin-tables.css +39 -0
  476. data/test/dummy/public/stylesheets/admin/admin-typography.css +117 -0
  477. data/test/dummy/public/stylesheets/admin/admin.css +579 -0
  478. data/test/dummy/public/stylesheets/admin/autocomplete.css +73 -0
  479. data/test/dummy/public/stylesheets/admin/dashboard.css +143 -0
  480. data/test/dummy/public/stylesheets/admin/edit_checkouts.css +57 -0
  481. data/test/dummy/public/stylesheets/admin/grids.css +314 -0
  482. data/test/dummy/public/stylesheets/admin/promotions.css +54 -0
  483. data/test/dummy/public/stylesheets/admin/reset-fonts-grids-2-6-0.css +7 -0
  484. data/test/dummy/public/stylesheets/admin/token-input.css +109 -0
  485. data/test/dummy/public/stylesheets/admin/yui-includes.css +14 -0
  486. data/test/dummy/public/stylesheets/datepicker.css +263 -0
  487. data/test/dummy/public/stylesheets/jquery.autocomplete.css +48 -0
  488. data/test/dummy/public/stylesheets/scaffold.css +54 -0
  489. data/test/dummy/public/stylesheets/screen.css +1195 -0
  490. data/test/dummy/script/rails +6 -0
  491. data/test/functional/press_controller_test.rb +13 -0
  492. data/test/integration/admin/press_test.rb +15 -0
  493. data/test/support/factories.rb +15 -0
  494. data/test/support/helper_methods.rb +11 -0
  495. data/test/support/integration_case.rb +25 -0
  496. data/test/test_helper.rb +58 -0
  497. data/test/unit/press_image_test.rb +29 -0
  498. data/test/unit/press_test.rb +65 -0
  499. metadata +1151 -0
@@ -0,0 +1,25 @@
1
+ var update_state = function(region) {
2
+ var country = $('span#' + region + 'country :only-child').val();
3
+ var states = state_mapper[country];
4
+
5
+ var state_select = $('span#' + region + 'state select');
6
+ var state_input = $('span#' + region + 'state input');
7
+
8
+ if(states) {
9
+ state_select.html('');
10
+ var states_with_blank = [["",""]].concat(states);
11
+ $.each(states_with_blank, function(pos,id_nm) {
12
+ var opt = $(document.createElement('option'))
13
+ .attr('value', id_nm[0])
14
+ .html(id_nm[1]);
15
+ state_select.append(opt);
16
+ });
17
+ state_select.enable().show();;
18
+ state_input.hide().disable();
19
+
20
+ } else {
21
+ state_input.enable().show();
22
+ state_select.hide().disable();
23
+ }
24
+
25
+ };
@@ -0,0 +1,130 @@
1
+ jQuery(document).ready(function(){
2
+ add_address = function(addr){
3
+ var html = "";
4
+ if(addr!=undefined){
5
+ html += addr['firstname'] + " " + addr['lastname'] + ", ";
6
+ html += addr['address1'] + ", " + addr['address2'] + ", ";
7
+ html += addr['city'] + ", ";
8
+
9
+ if(addr['state_id']!=null){
10
+ html += addr['state']['name'] + ", ";
11
+ }else{
12
+ html += addr['state_name'] + ", ";
13
+ }
14
+
15
+ html += addr['country']['name'];
16
+ }
17
+ return html;
18
+ }
19
+
20
+ format_autocomplete = function(data){
21
+ var html = "<h4>" + data['email'] +"</h4>";
22
+ html += "<span><strong>Billing:</strong> ";
23
+ html += add_address(data['bill_address']);
24
+ html += "</span>";
25
+
26
+ html += "<span><strong>Shipping:</strong> ";
27
+ html += add_address(data['ship_address']);
28
+ html += "</span>";
29
+
30
+ return html
31
+ }
32
+
33
+ prep_autocomplete_data = function(data){
34
+ return $.map(eval(data), function(row) {
35
+ return {
36
+ data: row['user'],
37
+ value: row['user']['email'],
38
+ result: row['user']['email']
39
+ }
40
+ });
41
+ }
42
+
43
+ $("#customer_search").autocomplete("/admin/users.json?authenticity_token=" + $('meta[name=csrf-token]').attr("content"), {
44
+ minChars: 5,
45
+ delay: 1500,
46
+ parse: prep_autocomplete_data,
47
+ formatItem: function(item) {
48
+ return format_autocomplete(item);
49
+ }
50
+ }).result(function(event, data, formatted) {
51
+ $('#user_id').val(data['id']);
52
+ $('#guest_checkout_true').removeAttr("checked");
53
+ $('#guest_checkout_false').attr("checked", "checked");
54
+ $('#guest_checkout_false').removeAttr("disabled");
55
+ $('#order_email').val(data['email']);
56
+
57
+ var addr = data['bill_address'];
58
+ if(addr!=undefined){
59
+ $('#order_bill_address_attributes_firstname').val(addr['firstname']);
60
+ $('#order_bill_address_attributes_lastname').val(addr['lastname']);
61
+ $('#order_bill_address_attributes_address1').val(addr['address1']);
62
+ $('#order_bill_address_attributes_address2').val(addr['address2']);
63
+ $('#order_bill_address_attributes_city').val(addr['city']);
64
+ $('#order_bill_address_attributes_zipcode').val(addr['zipcode']);
65
+ $('#order_bill_address_attributes_state_id').val(addr['state_id']);
66
+ $('#order_bill_address_attributes_country_id').val(addr['country_id']);
67
+ $('#order_bill_address_attributes_phone').val(addr['phone']);
68
+ }
69
+
70
+ var addr = data['ship_address'];
71
+ if(addr!=undefined){
72
+ $('#order_ship_address_attributes_firstname').val(addr['firstname']);
73
+ $('#order_ship_address_attributes_lastname').val(addr['lastname']);
74
+ $('#order_ship_address_attributes_address1').val(addr['address1']);
75
+ $('#order_ship_address_attributes_address2').val(addr['address2']);
76
+ $('#order_ship_address_attributes_city').val(addr['city']);
77
+ $('#order_ship_address_attributes_zipcode').val(addr['zipcode']);
78
+ $('#order_ship_address_attributes_state_id').val(addr['state_id']);
79
+ $('#order_ship_address_attributes_country_id').val(addr['country_id']);
80
+ $('#order_ship_address_attributes_phone').val(addr['phone']);
81
+ }
82
+ });
83
+
84
+
85
+ $('input#order_use_billing').click(function() {
86
+ show_billing(!$(this).is(':checked'));
87
+ });
88
+
89
+ $('#guest_checkout_true').change(function() {
90
+ $('#customer_search').val("");
91
+ $('#user_id').val("");
92
+ $('#checkout_email').val("");
93
+ $('#guest_checkout_false').attr("disabled", "true");
94
+
95
+ $('#order_bill_address_attributes_firstname').val("");
96
+ $('#order_bill_address_attributes_lastname').val("");
97
+ $('#order_bill_address_attributes_address1').val("");
98
+ $('#order_bill_address_attributes_address2').val("");
99
+ $('#order_bill_address_attributes_city').val("");
100
+ $('#order_bill_address_attributes_zipcode').val("");
101
+ $('#order_bill_address_attributes_state_id').val("");
102
+ $('#order_bill_address_attributes_country_id').val("");
103
+ $('#order_bill_address_attributes_phone').val("");
104
+
105
+ $('#order_ship_address_attributes_firstname').val("");
106
+ $('#order_ship_address_attributes_lastname').val("");
107
+ $('#order_ship_address_attributes_address1').val("");
108
+ $('#order_ship_address_attributes_address2').val("");
109
+ $('#order_ship_address_attributes_city').val("");
110
+ $('#order_ship_address_attributes_zipcode').val("");
111
+ $('#order_ship_address_attributes_state_id').val("");
112
+ $('#order_ship_address_attributes_country_id').val("");
113
+ $('#order_ship_address_attributes_phone').val("");
114
+ });
115
+
116
+ var show_billing = function(show) {
117
+ if(show) {
118
+ $('#shipping').show();
119
+ $('#shipping input').removeAttr('disabled', 'disabled');
120
+ $('#shipping select').removeAttr('disabled', 'disabled');
121
+ } else {
122
+ $('#shipping').hide();
123
+ $('#shipping input').attr('disabled', 'disabled');
124
+ $('#shipping select').attr('disabled', 'disabled');
125
+ }
126
+ }
127
+
128
+ });
129
+
130
+
@@ -0,0 +1,23 @@
1
+ jQuery(document).ready(function(){
2
+
3
+ $("#add_product_name").product_autocomplete();
4
+
5
+ $("#add_line_item_to_order").live("click", function(){
6
+ if($('#add_variant_id').val() == ''){ return false; }
7
+ update_target = jQuery(this).attr("data-update");
8
+ jQuery.ajax({ dataType: 'script', url: this.href, type: "POST",
9
+ data: {"line_item[variant_id]": $('#add_variant_id').val(),
10
+ "line_item[quantity]": $('#add_quantity').val()},
11
+ success: function(data){
12
+ $("#"+update_target).html(data);
13
+ $('#add_product_name').val('');
14
+ $('#add_variant_id').val('');
15
+ $('#add_quantity').val(1)
16
+ }
17
+ });
18
+ return false;
19
+ });
20
+
21
+ });
22
+
23
+
@@ -0,0 +1,16 @@
1
+ $.each($('td.qty input'), function(i, inpt){
2
+
3
+ $(inpt).delayedObserver(function() {
4
+
5
+ var id = $(this).attr('id').replace("order_line_items_attributes_", "").replace("_quantity", "");
6
+ id = "#order_line_items_attributes_" + id + "_id";
7
+
8
+ jQuery.ajax({
9
+ type: "POST",
10
+ url: "/admin/orders/" + $('input#order_number').val() + "/line_items/" + $(id).val(),
11
+ data: ({_method: "put", "line_item[quantity]": $(this).val()}),
12
+ success: function(html){ $('#order-form-wrapper').html(html)}
13
+ });
14
+
15
+ }, 0,5);
16
+ });
@@ -0,0 +1,9 @@
1
+ $(document).ready(function(){
2
+
3
+ $("#card_new").radioControlsVisibilityOfElement('#card_form');
4
+
5
+ $('select.jump_menu').change(function(){
6
+ window.location = this.options[this.selectedIndex].value;
7
+ });
8
+
9
+ });
@@ -0,0 +1,26 @@
1
+ var initProductRuleSourceField = function(){
2
+
3
+ $products_source_field = jQuery('.products_rule_products_source_field input');
4
+ $products_source_field.click(function() {
5
+ $rule_container = jQuery(this).parents('.promotion-rule');
6
+ if(this.checked){
7
+ if(this.value == 'manual'){
8
+ $rule_container.find('.products_rule_products').show();
9
+ $rule_container.find('.products_rule_product_group').hide();
10
+ } else {
11
+ $rule_container.find('.products_rule_products').hide();
12
+ $rule_container.find('.products_rule_product_group').show();
13
+ }
14
+ }
15
+ });
16
+ $products_source_field.each(function() {
17
+ $(this).triggerHandler('click');
18
+ });
19
+
20
+ };
21
+
22
+
23
+ jQuery(document).ready(function() {
24
+ initProductRuleSourceField();
25
+ });
26
+
@@ -0,0 +1,15 @@
1
+ $(document).ready(function(){
2
+
3
+ $(".select_properties_from_prototype").live("click", function(){
4
+ $("#busy_indicator").show();
5
+ var clicked_link = $(this);
6
+ jQuery.ajax({ dataType: 'script', url: clicked_link.attr("href"), type: 'get',
7
+ success: function(data){
8
+ clicked_link.parent("td").parent("tr").hide();
9
+ $("#busy_indicator").hide();
10
+ }
11
+ });
12
+ return false;
13
+ });
14
+
15
+ });
@@ -0,0 +1,12 @@
1
+ (function($){
2
+ $(document).ready(function(){
3
+
4
+ // Remove an item from the cart by setting its quantity to zero and posting the update form
5
+ $('form#updatecart a.delete').show().click(function(){
6
+ $(this).parents('tr').find('input.line_item_quantity').val(0);
7
+ $(this).parents('form').submit();
8
+ return false;
9
+ });
10
+
11
+ });
12
+ })(jQuery);
@@ -0,0 +1,15 @@
1
+ $j(function() {
2
+ var original_calc_type = $j('#calc-type').attr('value');
3
+ $j('div#calculator-settings-warning').hide();
4
+ $j('#calc-type').change(function() {
5
+ if ($j('#calc-type').attr('value') == original_calc_type) {
6
+ $j('div.calculator-settings').show();
7
+ $j('div#calculator-settings-warning').hide();
8
+ $j('.calculator-settings input').removeAttr('disabled');
9
+ } else {
10
+ $j('div.calculator-settings').hide();
11
+ $j('div#calculator-settings-warning').show();
12
+ $j('.calculator-settings input').attr('disabled', 'disabled');
13
+ }
14
+ });
15
+ })
@@ -0,0 +1,75 @@
1
+ (function($){
2
+ $(document).ready(function(){
3
+
4
+ $('#checkout_form_address').validate();
5
+
6
+ var get_states = function(region){
7
+ var country = $('span#' + region + 'country :only-child').val();
8
+ return state_mapper[country];
9
+ }
10
+
11
+ var update_state = function(region) {
12
+ var states = get_states(region);
13
+
14
+ var state_select = $('span#' + region + 'state select');
15
+ var state_input = $('span#' + region + 'state input');
16
+
17
+ if(states) {
18
+ var selected = state_select.val();
19
+ state_select.html('');
20
+ var states_with_blank = [["",""]].concat(states);
21
+ $.each(states_with_blank, function(pos,id_nm) {
22
+ var opt = $(document.createElement('option'))
23
+ .attr('value', id_nm[0])
24
+ .html(id_nm[1]);
25
+ if(selected==id_nm[0]){
26
+ opt.attr('selected', 'selected');
27
+ }
28
+ state_select.append(opt);
29
+ });
30
+ state_select.removeAttr('disabled').show();
31
+ state_input.hide().attr('disabled', 'disabled');
32
+
33
+ } else {
34
+ state_input.removeAttr('disabled').show();
35
+ state_select.hide().attr('disabled', 'disabled');
36
+ }
37
+
38
+ };
39
+
40
+ // Show fields for the selected payment method
41
+ $("input[type='radio'][name='order[payments_attributes][][payment_method_id]']").click(function(){
42
+ $('#payment-methods li').hide();
43
+ if(this.checked){ $('#payment_method_'+this.value).show(); }
44
+ }).triggerHandler('click');
45
+
46
+ $('span#bcountry select').change(function() { update_state('b'); });
47
+ $('span#scountry select').change(function() { update_state('s'); });
48
+ update_state('b');
49
+ update_state('s');
50
+
51
+ $('input#order_use_billing').click(function() {
52
+ if($(this).is(':checked')) {
53
+ $('#shipping .inner input, #shipping .inner select, #shipping .inner label, #shipping .inner .req').hide();
54
+ $('#shipping .inner input, #shipping .inner select').attr('disabled', 'disabled');
55
+ } else {
56
+ $('#shipping .inner input, #shipping .inner select, #shipping .inner label, #shipping .inner .req').show();
57
+ $('#shipping .inner input, #shipping .inner select').removeAttr('disabled', 'disabled');
58
+
59
+ //only want to enable relevant field
60
+ if(get_states('s')){
61
+ $('span#sstate input').hide().attr('disabled', 'disabled');
62
+ }else{
63
+ $('span#sstate select').hide().attr('disabled', 'disabled');
64
+ }
65
+
66
+ }
67
+ }).triggerHandler('click');
68
+
69
+ $('form.edit_checkout').submit(function() {
70
+ $(this).find(':submit, :image').attr('disabled', true).removeClass('primary').addClass('disabled');
71
+ });
72
+
73
+
74
+ });
75
+ })(jQuery);
@@ -0,0 +1,965 @@
1
+ // script.aculo.us controls.js v1.8.3, Thu Oct 08 11:23:33 +0200 2009
2
+
3
+ // Copyright (c) 2005-2009 Thomas Fuchs (http://script.aculo.us, http://mir.aculo.us)
4
+ // (c) 2005-2009 Ivan Krstic (http://blogs.law.harvard.edu/ivan)
5
+ // (c) 2005-2009 Jon Tirsen (http://www.tirsen.com)
6
+ // Contributors:
7
+ // Richard Livsey
8
+ // Rahul Bhargava
9
+ // Rob Wills
10
+ //
11
+ // script.aculo.us is freely distributable under the terms of an MIT-style license.
12
+ // For details, see the script.aculo.us web site: http://script.aculo.us/
13
+
14
+ // Autocompleter.Base handles all the autocompletion functionality
15
+ // that's independent of the data source for autocompletion. This
16
+ // includes drawing the autocompletion menu, observing keyboard
17
+ // and mouse events, and similar.
18
+ //
19
+ // Specific autocompleters need to provide, at the very least,
20
+ // a getUpdatedChoices function that will be invoked every time
21
+ // the text inside the monitored textbox changes. This method
22
+ // should get the text for which to provide autocompletion by
23
+ // invoking this.getToken(), NOT by directly accessing
24
+ // this.element.value. This is to allow incremental tokenized
25
+ // autocompletion. Specific auto-completion logic (AJAX, etc)
26
+ // belongs in getUpdatedChoices.
27
+ //
28
+ // Tokenized incremental autocompletion is enabled automatically
29
+ // when an autocompleter is instantiated with the 'tokens' option
30
+ // in the options parameter, e.g.:
31
+ // new Ajax.Autocompleter('id','upd', '/url/', { tokens: ',' });
32
+ // will incrementally autocomplete with a comma as the token.
33
+ // Additionally, ',' in the above example can be replaced with
34
+ // a token array, e.g. { tokens: [',', '\n'] } which
35
+ // enables autocompletion on multiple tokens. This is most
36
+ // useful when one of the tokens is \n (a newline), as it
37
+ // allows smart autocompletion after linebreaks.
38
+
39
+ if(typeof Effect == 'undefined')
40
+ throw("controls.js requires including script.aculo.us' effects.js library");
41
+
42
+ var Autocompleter = { };
43
+ Autocompleter.Base = Class.create({
44
+ baseInitialize: function(element, update, options) {
45
+ element = $(element);
46
+ this.element = element;
47
+ this.update = $(update);
48
+ this.hasFocus = false;
49
+ this.changed = false;
50
+ this.active = false;
51
+ this.index = 0;
52
+ this.entryCount = 0;
53
+ this.oldElementValue = this.element.value;
54
+
55
+ if(this.setOptions)
56
+ this.setOptions(options);
57
+ else
58
+ this.options = options || { };
59
+
60
+ this.options.paramName = this.options.paramName || this.element.name;
61
+ this.options.tokens = this.options.tokens || [];
62
+ this.options.frequency = this.options.frequency || 0.4;
63
+ this.options.minChars = this.options.minChars || 1;
64
+ this.options.onShow = this.options.onShow ||
65
+ function(element, update){
66
+ if(!update.style.position || update.style.position=='absolute') {
67
+ update.style.position = 'absolute';
68
+ Position.clone(element, update, {
69
+ setHeight: false,
70
+ offsetTop: element.offsetHeight
71
+ });
72
+ }
73
+ Effect.Appear(update,{duration:0.15});
74
+ };
75
+ this.options.onHide = this.options.onHide ||
76
+ function(element, update){ new Effect.Fade(update,{duration:0.15}) };
77
+
78
+ if(typeof(this.options.tokens) == 'string')
79
+ this.options.tokens = new Array(this.options.tokens);
80
+ // Force carriage returns as token delimiters anyway
81
+ if (!this.options.tokens.include('\n'))
82
+ this.options.tokens.push('\n');
83
+
84
+ this.observer = null;
85
+
86
+ this.element.setAttribute('autocomplete','off');
87
+
88
+ Element.hide(this.update);
89
+
90
+ Event.observe(this.element, 'blur', this.onBlur.bindAsEventListener(this));
91
+ Event.observe(this.element, 'keydown', this.onKeyPress.bindAsEventListener(this));
92
+ },
93
+
94
+ show: function() {
95
+ if(Element.getStyle(this.update, 'display')=='none') this.options.onShow(this.element, this.update);
96
+ if(!this.iefix &&
97
+ (Prototype.Browser.IE) &&
98
+ (Element.getStyle(this.update, 'position')=='absolute')) {
99
+ new Insertion.After(this.update,
100
+ '<iframe id="' + this.update.id + '_iefix" '+
101
+ 'style="display:none;position:absolute;filter:progid:DXImageTransform.Microsoft.Alpha(opacity=0);" ' +
102
+ 'src="javascript:false;" frameborder="0" scrolling="no"></iframe>');
103
+ this.iefix = $(this.update.id+'_iefix');
104
+ }
105
+ if(this.iefix) setTimeout(this.fixIEOverlapping.bind(this), 50);
106
+ },
107
+
108
+ fixIEOverlapping: function() {
109
+ Position.clone(this.update, this.iefix, {setTop:(!this.update.style.height)});
110
+ this.iefix.style.zIndex = 1;
111
+ this.update.style.zIndex = 2;
112
+ Element.show(this.iefix);
113
+ },
114
+
115
+ hide: function() {
116
+ this.stopIndicator();
117
+ if(Element.getStyle(this.update, 'display')!='none') this.options.onHide(this.element, this.update);
118
+ if(this.iefix) Element.hide(this.iefix);
119
+ },
120
+
121
+ startIndicator: function() {
122
+ if(this.options.indicator) Element.show(this.options.indicator);
123
+ },
124
+
125
+ stopIndicator: function() {
126
+ if(this.options.indicator) Element.hide(this.options.indicator);
127
+ },
128
+
129
+ onKeyPress: function(event) {
130
+ if(this.active)
131
+ switch(event.keyCode) {
132
+ case Event.KEY_TAB:
133
+ case Event.KEY_RETURN:
134
+ this.selectEntry();
135
+ Event.stop(event);
136
+ case Event.KEY_ESC:
137
+ this.hide();
138
+ this.active = false;
139
+ Event.stop(event);
140
+ return;
141
+ case Event.KEY_LEFT:
142
+ case Event.KEY_RIGHT:
143
+ return;
144
+ case Event.KEY_UP:
145
+ this.markPrevious();
146
+ this.render();
147
+ Event.stop(event);
148
+ return;
149
+ case Event.KEY_DOWN:
150
+ this.markNext();
151
+ this.render();
152
+ Event.stop(event);
153
+ return;
154
+ }
155
+ else
156
+ if(event.keyCode==Event.KEY_TAB || event.keyCode==Event.KEY_RETURN ||
157
+ (Prototype.Browser.WebKit > 0 && event.keyCode == 0)) return;
158
+
159
+ this.changed = true;
160
+ this.hasFocus = true;
161
+
162
+ if(this.observer) clearTimeout(this.observer);
163
+ this.observer =
164
+ setTimeout(this.onObserverEvent.bind(this), this.options.frequency*1000);
165
+ },
166
+
167
+ activate: function() {
168
+ this.changed = false;
169
+ this.hasFocus = true;
170
+ this.getUpdatedChoices();
171
+ },
172
+
173
+ onHover: function(event) {
174
+ var element = Event.findElement(event, 'LI');
175
+ if(this.index != element.autocompleteIndex)
176
+ {
177
+ this.index = element.autocompleteIndex;
178
+ this.render();
179
+ }
180
+ Event.stop(event);
181
+ },
182
+
183
+ onClick: function(event) {
184
+ var element = Event.findElement(event, 'LI');
185
+ this.index = element.autocompleteIndex;
186
+ this.selectEntry();
187
+ this.hide();
188
+ },
189
+
190
+ onBlur: function(event) {
191
+ // needed to make click events working
192
+ setTimeout(this.hide.bind(this), 250);
193
+ this.hasFocus = false;
194
+ this.active = false;
195
+ },
196
+
197
+ render: function() {
198
+ if(this.entryCount > 0) {
199
+ for (var i = 0; i < this.entryCount; i++)
200
+ this.index==i ?
201
+ Element.addClassName(this.getEntry(i),"selected") :
202
+ Element.removeClassName(this.getEntry(i),"selected");
203
+ if(this.hasFocus) {
204
+ this.show();
205
+ this.active = true;
206
+ }
207
+ } else {
208
+ this.active = false;
209
+ this.hide();
210
+ }
211
+ },
212
+
213
+ markPrevious: function() {
214
+ if(this.index > 0) this.index--;
215
+ else this.index = this.entryCount-1;
216
+ this.getEntry(this.index).scrollIntoView(true);
217
+ },
218
+
219
+ markNext: function() {
220
+ if(this.index < this.entryCount-1) this.index++;
221
+ else this.index = 0;
222
+ this.getEntry(this.index).scrollIntoView(false);
223
+ },
224
+
225
+ getEntry: function(index) {
226
+ return this.update.firstChild.childNodes[index];
227
+ },
228
+
229
+ getCurrentEntry: function() {
230
+ return this.getEntry(this.index);
231
+ },
232
+
233
+ selectEntry: function() {
234
+ this.active = false;
235
+ this.updateElement(this.getCurrentEntry());
236
+ },
237
+
238
+ updateElement: function(selectedElement) {
239
+ if (this.options.updateElement) {
240
+ this.options.updateElement(selectedElement);
241
+ return;
242
+ }
243
+ var value = '';
244
+ if (this.options.select) {
245
+ var nodes = $(selectedElement).select('.' + this.options.select) || [];
246
+ if(nodes.length>0) value = Element.collectTextNodes(nodes[0], this.options.select);
247
+ } else
248
+ value = Element.collectTextNodesIgnoreClass(selectedElement, 'informal');
249
+
250
+ var bounds = this.getTokenBounds();
251
+ if (bounds[0] != -1) {
252
+ var newValue = this.element.value.substr(0, bounds[0]);
253
+ var whitespace = this.element.value.substr(bounds[0]).match(/^\s+/);
254
+ if (whitespace)
255
+ newValue += whitespace[0];
256
+ this.element.value = newValue + value + this.element.value.substr(bounds[1]);
257
+ } else {
258
+ this.element.value = value;
259
+ }
260
+ this.oldElementValue = this.element.value;
261
+ this.element.focus();
262
+
263
+ if (this.options.afterUpdateElement)
264
+ this.options.afterUpdateElement(this.element, selectedElement);
265
+ },
266
+
267
+ updateChoices: function(choices) {
268
+ if(!this.changed && this.hasFocus) {
269
+ this.update.innerHTML = choices;
270
+ Element.cleanWhitespace(this.update);
271
+ Element.cleanWhitespace(this.update.down());
272
+
273
+ if(this.update.firstChild && this.update.down().childNodes) {
274
+ this.entryCount =
275
+ this.update.down().childNodes.length;
276
+ for (var i = 0; i < this.entryCount; i++) {
277
+ var entry = this.getEntry(i);
278
+ entry.autocompleteIndex = i;
279
+ this.addObservers(entry);
280
+ }
281
+ } else {
282
+ this.entryCount = 0;
283
+ }
284
+
285
+ this.stopIndicator();
286
+ this.index = 0;
287
+
288
+ if(this.entryCount==1 && this.options.autoSelect) {
289
+ this.selectEntry();
290
+ this.hide();
291
+ } else {
292
+ this.render();
293
+ }
294
+ }
295
+ },
296
+
297
+ addObservers: function(element) {
298
+ Event.observe(element, "mouseover", this.onHover.bindAsEventListener(this));
299
+ Event.observe(element, "click", this.onClick.bindAsEventListener(this));
300
+ },
301
+
302
+ onObserverEvent: function() {
303
+ this.changed = false;
304
+ this.tokenBounds = null;
305
+ if(this.getToken().length>=this.options.minChars) {
306
+ this.getUpdatedChoices();
307
+ } else {
308
+ this.active = false;
309
+ this.hide();
310
+ }
311
+ this.oldElementValue = this.element.value;
312
+ },
313
+
314
+ getToken: function() {
315
+ var bounds = this.getTokenBounds();
316
+ return this.element.value.substring(bounds[0], bounds[1]).strip();
317
+ },
318
+
319
+ getTokenBounds: function() {
320
+ if (null != this.tokenBounds) return this.tokenBounds;
321
+ var value = this.element.value;
322
+ if (value.strip().empty()) return [-1, 0];
323
+ var diff = arguments.callee.getFirstDifferencePos(value, this.oldElementValue);
324
+ var offset = (diff == this.oldElementValue.length ? 1 : 0);
325
+ var prevTokenPos = -1, nextTokenPos = value.length;
326
+ var tp;
327
+ for (var index = 0, l = this.options.tokens.length; index < l; ++index) {
328
+ tp = value.lastIndexOf(this.options.tokens[index], diff + offset - 1);
329
+ if (tp > prevTokenPos) prevTokenPos = tp;
330
+ tp = value.indexOf(this.options.tokens[index], diff + offset);
331
+ if (-1 != tp && tp < nextTokenPos) nextTokenPos = tp;
332
+ }
333
+ return (this.tokenBounds = [prevTokenPos + 1, nextTokenPos]);
334
+ }
335
+ });
336
+
337
+ Autocompleter.Base.prototype.getTokenBounds.getFirstDifferencePos = function(newS, oldS) {
338
+ var boundary = Math.min(newS.length, oldS.length);
339
+ for (var index = 0; index < boundary; ++index)
340
+ if (newS[index] != oldS[index])
341
+ return index;
342
+ return boundary;
343
+ };
344
+
345
+ Ajax.Autocompleter = Class.create(Autocompleter.Base, {
346
+ initialize: function(element, update, url, options) {
347
+ this.baseInitialize(element, update, options);
348
+ this.options.asynchronous = true;
349
+ this.options.onComplete = this.onComplete.bind(this);
350
+ this.options.defaultParams = this.options.parameters || null;
351
+ this.url = url;
352
+ },
353
+
354
+ getUpdatedChoices: function() {
355
+ this.startIndicator();
356
+
357
+ var entry = encodeURIComponent(this.options.paramName) + '=' +
358
+ encodeURIComponent(this.getToken());
359
+
360
+ this.options.parameters = this.options.callback ?
361
+ this.options.callback(this.element, entry) : entry;
362
+
363
+ if(this.options.defaultParams)
364
+ this.options.parameters += '&' + this.options.defaultParams;
365
+
366
+ new Ajax.Request(this.url, this.options);
367
+ },
368
+
369
+ onComplete: function(request) {
370
+ this.updateChoices(request.responseText);
371
+ }
372
+ });
373
+
374
+ // The local array autocompleter. Used when you'd prefer to
375
+ // inject an array of autocompletion options into the page, rather
376
+ // than sending out Ajax queries, which can be quite slow sometimes.
377
+ //
378
+ // The constructor takes four parameters. The first two are, as usual,
379
+ // the id of the monitored textbox, and id of the autocompletion menu.
380
+ // The third is the array you want to autocomplete from, and the fourth
381
+ // is the options block.
382
+ //
383
+ // Extra local autocompletion options:
384
+ // - choices - How many autocompletion choices to offer
385
+ //
386
+ // - partialSearch - If false, the autocompleter will match entered
387
+ // text only at the beginning of strings in the
388
+ // autocomplete array. Defaults to true, which will
389
+ // match text at the beginning of any *word* in the
390
+ // strings in the autocomplete array. If you want to
391
+ // search anywhere in the string, additionally set
392
+ // the option fullSearch to true (default: off).
393
+ //
394
+ // - fullSsearch - Search anywhere in autocomplete array strings.
395
+ //
396
+ // - partialChars - How many characters to enter before triggering
397
+ // a partial match (unlike minChars, which defines
398
+ // how many characters are required to do any match
399
+ // at all). Defaults to 2.
400
+ //
401
+ // - ignoreCase - Whether to ignore case when autocompleting.
402
+ // Defaults to true.
403
+ //
404
+ // It's possible to pass in a custom function as the 'selector'
405
+ // option, if you prefer to write your own autocompletion logic.
406
+ // In that case, the other options above will not apply unless
407
+ // you support them.
408
+
409
+ Autocompleter.Local = Class.create(Autocompleter.Base, {
410
+ initialize: function(element, update, array, options) {
411
+ this.baseInitialize(element, update, options);
412
+ this.options.array = array;
413
+ },
414
+
415
+ getUpdatedChoices: function() {
416
+ this.updateChoices(this.options.selector(this));
417
+ },
418
+
419
+ setOptions: function(options) {
420
+ this.options = Object.extend({
421
+ choices: 10,
422
+ partialSearch: true,
423
+ partialChars: 2,
424
+ ignoreCase: true,
425
+ fullSearch: false,
426
+ selector: function(instance) {
427
+ var ret = []; // Beginning matches
428
+ var partial = []; // Inside matches
429
+ var entry = instance.getToken();
430
+ var count = 0;
431
+
432
+ for (var i = 0; i < instance.options.array.length &&
433
+ ret.length < instance.options.choices ; i++) {
434
+
435
+ var elem = instance.options.array[i];
436
+ var foundPos = instance.options.ignoreCase ?
437
+ elem.toLowerCase().indexOf(entry.toLowerCase()) :
438
+ elem.indexOf(entry);
439
+
440
+ while (foundPos != -1) {
441
+ if (foundPos == 0 && elem.length != entry.length) {
442
+ ret.push("<li><strong>" + elem.substr(0, entry.length) + "</strong>" +
443
+ elem.substr(entry.length) + "</li>");
444
+ break;
445
+ } else if (entry.length >= instance.options.partialChars &&
446
+ instance.options.partialSearch && foundPos != -1) {
447
+ if (instance.options.fullSearch || /\s/.test(elem.substr(foundPos-1,1))) {
448
+ partial.push("<li>" + elem.substr(0, foundPos) + "<strong>" +
449
+ elem.substr(foundPos, entry.length) + "</strong>" + elem.substr(
450
+ foundPos + entry.length) + "</li>");
451
+ break;
452
+ }
453
+ }
454
+
455
+ foundPos = instance.options.ignoreCase ?
456
+ elem.toLowerCase().indexOf(entry.toLowerCase(), foundPos + 1) :
457
+ elem.indexOf(entry, foundPos + 1);
458
+
459
+ }
460
+ }
461
+ if (partial.length)
462
+ ret = ret.concat(partial.slice(0, instance.options.choices - ret.length));
463
+ return "<ul>" + ret.join('') + "</ul>";
464
+ }
465
+ }, options || { });
466
+ }
467
+ });
468
+
469
+ // AJAX in-place editor and collection editor
470
+ // Full rewrite by Christophe Porteneuve <tdd@tddsworld.com> (April 2007).
471
+
472
+ // Use this if you notice weird scrolling problems on some browsers,
473
+ // the DOM might be a bit confused when this gets called so do this
474
+ // waits 1 ms (with setTimeout) until it does the activation
475
+ Field.scrollFreeActivate = function(field) {
476
+ setTimeout(function() {
477
+ Field.activate(field);
478
+ }, 1);
479
+ };
480
+
481
+ Ajax.InPlaceEditor = Class.create({
482
+ initialize: function(element, url, options) {
483
+ this.url = url;
484
+ this.element = element = $(element);
485
+ this.prepareOptions();
486
+ this._controls = { };
487
+ arguments.callee.dealWithDeprecatedOptions(options); // DEPRECATION LAYER!!!
488
+ Object.extend(this.options, options || { });
489
+ if (!this.options.formId && this.element.id) {
490
+ this.options.formId = this.element.id + '-inplaceeditor';
491
+ if ($(this.options.formId))
492
+ this.options.formId = '';
493
+ }
494
+ if (this.options.externalControl)
495
+ this.options.externalControl = $(this.options.externalControl);
496
+ if (!this.options.externalControl)
497
+ this.options.externalControlOnly = false;
498
+ this._originalBackground = this.element.getStyle('background-color') || 'transparent';
499
+ this.element.title = this.options.clickToEditText;
500
+ this._boundCancelHandler = this.handleFormCancellation.bind(this);
501
+ this._boundComplete = (this.options.onComplete || Prototype.emptyFunction).bind(this);
502
+ this._boundFailureHandler = this.handleAJAXFailure.bind(this);
503
+ this._boundSubmitHandler = this.handleFormSubmission.bind(this);
504
+ this._boundWrapperHandler = this.wrapUp.bind(this);
505
+ this.registerListeners();
506
+ },
507
+ checkForEscapeOrReturn: function(e) {
508
+ if (!this._editing || e.ctrlKey || e.altKey || e.shiftKey) return;
509
+ if (Event.KEY_ESC == e.keyCode)
510
+ this.handleFormCancellation(e);
511
+ else if (Event.KEY_RETURN == e.keyCode)
512
+ this.handleFormSubmission(e);
513
+ },
514
+ createControl: function(mode, handler, extraClasses) {
515
+ var control = this.options[mode + 'Control'];
516
+ var text = this.options[mode + 'Text'];
517
+ if ('button' == control) {
518
+ var btn = document.createElement('input');
519
+ btn.type = 'submit';
520
+ btn.value = text;
521
+ btn.className = 'editor_' + mode + '_button';
522
+ if ('cancel' == mode)
523
+ btn.onclick = this._boundCancelHandler;
524
+ this._form.appendChild(btn);
525
+ this._controls[mode] = btn;
526
+ } else if ('link' == control) {
527
+ var link = document.createElement('a');
528
+ link.href = '#';
529
+ link.appendChild(document.createTextNode(text));
530
+ link.onclick = 'cancel' == mode ? this._boundCancelHandler : this._boundSubmitHandler;
531
+ link.className = 'editor_' + mode + '_link';
532
+ if (extraClasses)
533
+ link.className += ' ' + extraClasses;
534
+ this._form.appendChild(link);
535
+ this._controls[mode] = link;
536
+ }
537
+ },
538
+ createEditField: function() {
539
+ var text = (this.options.loadTextURL ? this.options.loadingText : this.getText());
540
+ var fld;
541
+ if (1 >= this.options.rows && !/\r|\n/.test(this.getText())) {
542
+ fld = document.createElement('input');
543
+ fld.type = 'text';
544
+ var size = this.options.size || this.options.cols || 0;
545
+ if (0 < size) fld.size = size;
546
+ } else {
547
+ fld = document.createElement('textarea');
548
+ fld.rows = (1 >= this.options.rows ? this.options.autoRows : this.options.rows);
549
+ fld.cols = this.options.cols || 40;
550
+ }
551
+ fld.name = this.options.paramName;
552
+ fld.value = text; // No HTML breaks conversion anymore
553
+ fld.className = 'editor_field';
554
+ if (this.options.submitOnBlur)
555
+ fld.onblur = this._boundSubmitHandler;
556
+ this._controls.editor = fld;
557
+ if (this.options.loadTextURL)
558
+ this.loadExternalText();
559
+ this._form.appendChild(this._controls.editor);
560
+ },
561
+ createForm: function() {
562
+ var ipe = this;
563
+ function addText(mode, condition) {
564
+ var text = ipe.options['text' + mode + 'Controls'];
565
+ if (!text || condition === false) return;
566
+ ipe._form.appendChild(document.createTextNode(text));
567
+ };
568
+ this._form = $(document.createElement('form'));
569
+ this._form.id = this.options.formId;
570
+ this._form.addClassName(this.options.formClassName);
571
+ this._form.onsubmit = this._boundSubmitHandler;
572
+ this.createEditField();
573
+ if ('textarea' == this._controls.editor.tagName.toLowerCase())
574
+ this._form.appendChild(document.createElement('br'));
575
+ if (this.options.onFormCustomization)
576
+ this.options.onFormCustomization(this, this._form);
577
+ addText('Before', this.options.okControl || this.options.cancelControl);
578
+ this.createControl('ok', this._boundSubmitHandler);
579
+ addText('Between', this.options.okControl && this.options.cancelControl);
580
+ this.createControl('cancel', this._boundCancelHandler, 'editor_cancel');
581
+ addText('After', this.options.okControl || this.options.cancelControl);
582
+ },
583
+ destroy: function() {
584
+ if (this._oldInnerHTML)
585
+ this.element.innerHTML = this._oldInnerHTML;
586
+ this.leaveEditMode();
587
+ this.unregisterListeners();
588
+ },
589
+ enterEditMode: function(e) {
590
+ if (this._saving || this._editing) return;
591
+ this._editing = true;
592
+ this.triggerCallback('onEnterEditMode');
593
+ if (this.options.externalControl)
594
+ this.options.externalControl.hide();
595
+ this.element.hide();
596
+ this.createForm();
597
+ this.element.parentNode.insertBefore(this._form, this.element);
598
+ if (!this.options.loadTextURL)
599
+ this.postProcessEditField();
600
+ if (e) Event.stop(e);
601
+ },
602
+ enterHover: function(e) {
603
+ if (this.options.hoverClassName)
604
+ this.element.addClassName(this.options.hoverClassName);
605
+ if (this._saving) return;
606
+ this.triggerCallback('onEnterHover');
607
+ },
608
+ getText: function() {
609
+ return this.element.innerHTML.unescapeHTML();
610
+ },
611
+ handleAJAXFailure: function(transport) {
612
+ this.triggerCallback('onFailure', transport);
613
+ if (this._oldInnerHTML) {
614
+ this.element.innerHTML = this._oldInnerHTML;
615
+ this._oldInnerHTML = null;
616
+ }
617
+ },
618
+ handleFormCancellation: function(e) {
619
+ this.wrapUp();
620
+ if (e) Event.stop(e);
621
+ },
622
+ handleFormSubmission: function(e) {
623
+ var form = this._form;
624
+ var value = $F(this._controls.editor);
625
+ this.prepareSubmission();
626
+ var params = this.options.callback(form, value) || '';
627
+ if (Object.isString(params))
628
+ params = params.toQueryParams();
629
+ params.editorId = this.element.id;
630
+ if (this.options.htmlResponse) {
631
+ var options = Object.extend({ evalScripts: true }, this.options.ajaxOptions);
632
+ Object.extend(options, {
633
+ parameters: params,
634
+ onComplete: this._boundWrapperHandler,
635
+ onFailure: this._boundFailureHandler
636
+ });
637
+ new Ajax.Updater({ success: this.element }, this.url, options);
638
+ } else {
639
+ var options = Object.extend({ method: 'get' }, this.options.ajaxOptions);
640
+ Object.extend(options, {
641
+ parameters: params,
642
+ onComplete: this._boundWrapperHandler,
643
+ onFailure: this._boundFailureHandler
644
+ });
645
+ new Ajax.Request(this.url, options);
646
+ }
647
+ if (e) Event.stop(e);
648
+ },
649
+ leaveEditMode: function() {
650
+ this.element.removeClassName(this.options.savingClassName);
651
+ this.removeForm();
652
+ this.leaveHover();
653
+ this.element.style.backgroundColor = this._originalBackground;
654
+ this.element.show();
655
+ if (this.options.externalControl)
656
+ this.options.externalControl.show();
657
+ this._saving = false;
658
+ this._editing = false;
659
+ this._oldInnerHTML = null;
660
+ this.triggerCallback('onLeaveEditMode');
661
+ },
662
+ leaveHover: function(e) {
663
+ if (this.options.hoverClassName)
664
+ this.element.removeClassName(this.options.hoverClassName);
665
+ if (this._saving) return;
666
+ this.triggerCallback('onLeaveHover');
667
+ },
668
+ loadExternalText: function() {
669
+ this._form.addClassName(this.options.loadingClassName);
670
+ this._controls.editor.disabled = true;
671
+ var options = Object.extend({ method: 'get' }, this.options.ajaxOptions);
672
+ Object.extend(options, {
673
+ parameters: 'editorId=' + encodeURIComponent(this.element.id),
674
+ onComplete: Prototype.emptyFunction,
675
+ onSuccess: function(transport) {
676
+ this._form.removeClassName(this.options.loadingClassName);
677
+ var text = transport.responseText;
678
+ if (this.options.stripLoadedTextTags)
679
+ text = text.stripTags();
680
+ this._controls.editor.value = text;
681
+ this._controls.editor.disabled = false;
682
+ this.postProcessEditField();
683
+ }.bind(this),
684
+ onFailure: this._boundFailureHandler
685
+ });
686
+ new Ajax.Request(this.options.loadTextURL, options);
687
+ },
688
+ postProcessEditField: function() {
689
+ var fpc = this.options.fieldPostCreation;
690
+ if (fpc)
691
+ $(this._controls.editor)['focus' == fpc ? 'focus' : 'activate']();
692
+ },
693
+ prepareOptions: function() {
694
+ this.options = Object.clone(Ajax.InPlaceEditor.DefaultOptions);
695
+ Object.extend(this.options, Ajax.InPlaceEditor.DefaultCallbacks);
696
+ [this._extraDefaultOptions].flatten().compact().each(function(defs) {
697
+ Object.extend(this.options, defs);
698
+ }.bind(this));
699
+ },
700
+ prepareSubmission: function() {
701
+ this._saving = true;
702
+ this.removeForm();
703
+ this.leaveHover();
704
+ this.showSaving();
705
+ },
706
+ registerListeners: function() {
707
+ this._listeners = { };
708
+ var listener;
709
+ $H(Ajax.InPlaceEditor.Listeners).each(function(pair) {
710
+ listener = this[pair.value].bind(this);
711
+ this._listeners[pair.key] = listener;
712
+ if (!this.options.externalControlOnly)
713
+ this.element.observe(pair.key, listener);
714
+ if (this.options.externalControl)
715
+ this.options.externalControl.observe(pair.key, listener);
716
+ }.bind(this));
717
+ },
718
+ removeForm: function() {
719
+ if (!this._form) return;
720
+ this._form.remove();
721
+ this._form = null;
722
+ this._controls = { };
723
+ },
724
+ showSaving: function() {
725
+ this._oldInnerHTML = this.element.innerHTML;
726
+ this.element.innerHTML = this.options.savingText;
727
+ this.element.addClassName(this.options.savingClassName);
728
+ this.element.style.backgroundColor = this._originalBackground;
729
+ this.element.show();
730
+ },
731
+ triggerCallback: function(cbName, arg) {
732
+ if ('function' == typeof this.options[cbName]) {
733
+ this.options[cbName](this, arg);
734
+ }
735
+ },
736
+ unregisterListeners: function() {
737
+ $H(this._listeners).each(function(pair) {
738
+ if (!this.options.externalControlOnly)
739
+ this.element.stopObserving(pair.key, pair.value);
740
+ if (this.options.externalControl)
741
+ this.options.externalControl.stopObserving(pair.key, pair.value);
742
+ }.bind(this));
743
+ },
744
+ wrapUp: function(transport) {
745
+ this.leaveEditMode();
746
+ // Can't use triggerCallback due to backward compatibility: requires
747
+ // binding + direct element
748
+ this._boundComplete(transport, this.element);
749
+ }
750
+ });
751
+
752
+ Object.extend(Ajax.InPlaceEditor.prototype, {
753
+ dispose: Ajax.InPlaceEditor.prototype.destroy
754
+ });
755
+
756
+ Ajax.InPlaceCollectionEditor = Class.create(Ajax.InPlaceEditor, {
757
+ initialize: function($super, element, url, options) {
758
+ this._extraDefaultOptions = Ajax.InPlaceCollectionEditor.DefaultOptions;
759
+ $super(element, url, options);
760
+ },
761
+
762
+ createEditField: function() {
763
+ var list = document.createElement('select');
764
+ list.name = this.options.paramName;
765
+ list.size = 1;
766
+ this._controls.editor = list;
767
+ this._collection = this.options.collection || [];
768
+ if (this.options.loadCollectionURL)
769
+ this.loadCollection();
770
+ else
771
+ this.checkForExternalText();
772
+ this._form.appendChild(this._controls.editor);
773
+ },
774
+
775
+ loadCollection: function() {
776
+ this._form.addClassName(this.options.loadingClassName);
777
+ this.showLoadingText(this.options.loadingCollectionText);
778
+ var options = Object.extend({ method: 'get' }, this.options.ajaxOptions);
779
+ Object.extend(options, {
780
+ parameters: 'editorId=' + encodeURIComponent(this.element.id),
781
+ onComplete: Prototype.emptyFunction,
782
+ onSuccess: function(transport) {
783
+ var js = transport.responseText.strip();
784
+ if (!/^\[.*\]$/.test(js)) // TODO: improve sanity check
785
+ throw('Server returned an invalid collection representation.');
786
+ this._collection = eval(js);
787
+ this.checkForExternalText();
788
+ }.bind(this),
789
+ onFailure: this.onFailure
790
+ });
791
+ new Ajax.Request(this.options.loadCollectionURL, options);
792
+ },
793
+
794
+ showLoadingText: function(text) {
795
+ this._controls.editor.disabled = true;
796
+ var tempOption = this._controls.editor.firstChild;
797
+ if (!tempOption) {
798
+ tempOption = document.createElement('option');
799
+ tempOption.value = '';
800
+ this._controls.editor.appendChild(tempOption);
801
+ tempOption.selected = true;
802
+ }
803
+ tempOption.update((text || '').stripScripts().stripTags());
804
+ },
805
+
806
+ checkForExternalText: function() {
807
+ this._text = this.getText();
808
+ if (this.options.loadTextURL)
809
+ this.loadExternalText();
810
+ else
811
+ this.buildOptionList();
812
+ },
813
+
814
+ loadExternalText: function() {
815
+ this.showLoadingText(this.options.loadingText);
816
+ var options = Object.extend({ method: 'get' }, this.options.ajaxOptions);
817
+ Object.extend(options, {
818
+ parameters: 'editorId=' + encodeURIComponent(this.element.id),
819
+ onComplete: Prototype.emptyFunction,
820
+ onSuccess: function(transport) {
821
+ this._text = transport.responseText.strip();
822
+ this.buildOptionList();
823
+ }.bind(this),
824
+ onFailure: this.onFailure
825
+ });
826
+ new Ajax.Request(this.options.loadTextURL, options);
827
+ },
828
+
829
+ buildOptionList: function() {
830
+ this._form.removeClassName(this.options.loadingClassName);
831
+ this._collection = this._collection.map(function(entry) {
832
+ return 2 === entry.length ? entry : [entry, entry].flatten();
833
+ });
834
+ var marker = ('value' in this.options) ? this.options.value : this._text;
835
+ var textFound = this._collection.any(function(entry) {
836
+ return entry[0] == marker;
837
+ }.bind(this));
838
+ this._controls.editor.update('');
839
+ var option;
840
+ this._collection.each(function(entry, index) {
841
+ option = document.createElement('option');
842
+ option.value = entry[0];
843
+ option.selected = textFound ? entry[0] == marker : 0 == index;
844
+ option.appendChild(document.createTextNode(entry[1]));
845
+ this._controls.editor.appendChild(option);
846
+ }.bind(this));
847
+ this._controls.editor.disabled = false;
848
+ Field.scrollFreeActivate(this._controls.editor);
849
+ }
850
+ });
851
+
852
+ //**** DEPRECATION LAYER FOR InPlace[Collection]Editor! ****
853
+ //**** This only exists for a while, in order to let ****
854
+ //**** users adapt to the new API. Read up on the new ****
855
+ //**** API and convert your code to it ASAP! ****
856
+
857
+ Ajax.InPlaceEditor.prototype.initialize.dealWithDeprecatedOptions = function(options) {
858
+ if (!options) return;
859
+ function fallback(name, expr) {
860
+ if (name in options || expr === undefined) return;
861
+ options[name] = expr;
862
+ };
863
+ fallback('cancelControl', (options.cancelLink ? 'link' : (options.cancelButton ? 'button' :
864
+ options.cancelLink == options.cancelButton == false ? false : undefined)));
865
+ fallback('okControl', (options.okLink ? 'link' : (options.okButton ? 'button' :
866
+ options.okLink == options.okButton == false ? false : undefined)));
867
+ fallback('highlightColor', options.highlightcolor);
868
+ fallback('highlightEndColor', options.highlightendcolor);
869
+ };
870
+
871
+ Object.extend(Ajax.InPlaceEditor, {
872
+ DefaultOptions: {
873
+ ajaxOptions: { },
874
+ autoRows: 3, // Use when multi-line w/ rows == 1
875
+ cancelControl: 'link', // 'link'|'button'|false
876
+ cancelText: 'cancel',
877
+ clickToEditText: 'Click to edit',
878
+ externalControl: null, // id|elt
879
+ externalControlOnly: false,
880
+ fieldPostCreation: 'activate', // 'activate'|'focus'|false
881
+ formClassName: 'inplaceeditor-form',
882
+ formId: null, // id|elt
883
+ highlightColor: '#ffff99',
884
+ highlightEndColor: '#ffffff',
885
+ hoverClassName: '',
886
+ htmlResponse: true,
887
+ loadingClassName: 'inplaceeditor-loading',
888
+ loadingText: 'Loading...',
889
+ okControl: 'button', // 'link'|'button'|false
890
+ okText: 'ok',
891
+ paramName: 'value',
892
+ rows: 1, // If 1 and multi-line, uses autoRows
893
+ savingClassName: 'inplaceeditor-saving',
894
+ savingText: 'Saving...',
895
+ size: 0,
896
+ stripLoadedTextTags: false,
897
+ submitOnBlur: false,
898
+ textAfterControls: '',
899
+ textBeforeControls: '',
900
+ textBetweenControls: ''
901
+ },
902
+ DefaultCallbacks: {
903
+ callback: function(form) {
904
+ return Form.serialize(form);
905
+ },
906
+ onComplete: function(transport, element) {
907
+ // For backward compatibility, this one is bound to the IPE, and passes
908
+ // the element directly. It was too often customized, so we don't break it.
909
+ new Effect.Highlight(element, {
910
+ startcolor: this.options.highlightColor, keepBackgroundImage: true });
911
+ },
912
+ onEnterEditMode: null,
913
+ onEnterHover: function(ipe) {
914
+ ipe.element.style.backgroundColor = ipe.options.highlightColor;
915
+ if (ipe._effect)
916
+ ipe._effect.cancel();
917
+ },
918
+ onFailure: function(transport, ipe) {
919
+ alert('Error communication with the server: ' + transport.responseText.stripTags());
920
+ },
921
+ onFormCustomization: null, // Takes the IPE and its generated form, after editor, before controls.
922
+ onLeaveEditMode: null,
923
+ onLeaveHover: function(ipe) {
924
+ ipe._effect = new Effect.Highlight(ipe.element, {
925
+ startcolor: ipe.options.highlightColor, endcolor: ipe.options.highlightEndColor,
926
+ restorecolor: ipe._originalBackground, keepBackgroundImage: true
927
+ });
928
+ }
929
+ },
930
+ Listeners: {
931
+ click: 'enterEditMode',
932
+ keydown: 'checkForEscapeOrReturn',
933
+ mouseover: 'enterHover',
934
+ mouseout: 'leaveHover'
935
+ }
936
+ });
937
+
938
+ Ajax.InPlaceCollectionEditor.DefaultOptions = {
939
+ loadingCollectionText: 'Loading options...'
940
+ };
941
+
942
+ // Delayed observer, like Form.Element.Observer,
943
+ // but waits for delay after last key input
944
+ // Ideal for live-search fields
945
+
946
+ Form.Element.DelayedObserver = Class.create({
947
+ initialize: function(element, delay, callback) {
948
+ this.delay = delay || 0.5;
949
+ this.element = $(element);
950
+ this.callback = callback;
951
+ this.timer = null;
952
+ this.lastValue = $F(this.element);
953
+ Event.observe(this.element,'keyup',this.delayedListener.bindAsEventListener(this));
954
+ },
955
+ delayedListener: function(event) {
956
+ if(this.lastValue == $F(this.element)) return;
957
+ if(this.timer) clearTimeout(this.timer);
958
+ this.timer = setTimeout(this.onTimerEvent.bind(this), this.delay * 1000);
959
+ this.lastValue = $F(this.element);
960
+ },
961
+ onTimerEvent: function() {
962
+ this.timer = null;
963
+ this.callback(this.element, $F(this.element));
964
+ }
965
+ });