spree_core 0.30.0.beta1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (795) hide show
  1. data/LICENSE +26 -0
  2. data/README.md +19 -0
  3. data/app/controllers/admin/adjustments_controller.rb +25 -0
  4. data/app/controllers/admin/base_controller.rb +47 -0
  5. data/app/controllers/admin/checkouts_controller.rb +58 -0
  6. data/app/controllers/admin/configurations_controller.rb +26 -0
  7. data/app/controllers/admin/general_settings_controller.rb +13 -0
  8. data/app/controllers/admin/images_controller.rb +54 -0
  9. data/app/controllers/admin/inventory_settings_controller.rb +13 -0
  10. data/app/controllers/admin/inventory_units_controller.rb +2 -0
  11. data/app/controllers/admin/line_items_controller.rb +69 -0
  12. data/app/controllers/admin/mail_settings_controller.rb +14 -0
  13. data/app/controllers/admin/option_types_controller.rb +58 -0
  14. data/app/controllers/admin/orders_controller.rb +94 -0
  15. data/app/controllers/admin/overview_controller.rb +14 -0
  16. data/app/controllers/admin/payment_methods_controller.rb +31 -0
  17. data/app/controllers/admin/payments_controller.rb +105 -0
  18. data/app/controllers/admin/product_groups_controller.rb +45 -0
  19. data/app/controllers/admin/product_properties_controller.rb +14 -0
  20. data/app/controllers/admin/product_scopes_controller.rb +19 -0
  21. data/app/controllers/admin/products_controller.rb +115 -0
  22. data/app/controllers/admin/properties_controller.rb +27 -0
  23. data/app/controllers/admin/prototypes_controller.rb +52 -0
  24. data/app/controllers/admin/reports_controller.rb +44 -0
  25. data/app/controllers/admin/return_authorizations_controller.rb +36 -0
  26. data/app/controllers/admin/shipments_controller.rb +79 -0
  27. data/app/controllers/admin/shipping_categories_controller.rb +16 -0
  28. data/app/controllers/admin/shipping_methods_controller.rb +21 -0
  29. data/app/controllers/admin/states_controller.rb +30 -0
  30. data/app/controllers/admin/tax_categories_controller.rb +13 -0
  31. data/app/controllers/admin/tax_rates_controller.rb +32 -0
  32. data/app/controllers/admin/tax_settings_controller.rb +13 -0
  33. data/app/controllers/admin/taxonomies_controller.rb +17 -0
  34. data/app/controllers/admin/taxons_controller.rb +127 -0
  35. data/app/controllers/admin/trackers_controller.rb +7 -0
  36. data/app/controllers/admin/users_controller.rb +67 -0
  37. data/app/controllers/admin/variants_controller.rb +55 -0
  38. data/app/controllers/admin/zones_controller.rb +35 -0
  39. data/app/controllers/checkout_controller.rb +68 -0
  40. data/app/controllers/content_controller.rb +13 -0
  41. data/app/controllers/countries_controller.rb +11 -0
  42. data/app/controllers/locale_controller.rb +14 -0
  43. data/app/controllers/orders_controller.rb +49 -0
  44. data/app/controllers/password_resets_controller.rb +49 -0
  45. data/app/controllers/products_controller.rb +38 -0
  46. data/app/controllers/spree/base_controller.rb +111 -0
  47. data/app/controllers/states_controller.rb +16 -0
  48. data/app/controllers/taxons_controller.rb +23 -0
  49. data/app/helpers/account_helper.rb +2 -0
  50. data/app/helpers/admin/base_helper.rb +194 -0
  51. data/app/helpers/admin/inventory_settings_helper.rb +5 -0
  52. data/app/helpers/admin/navigation_helper.rb +140 -0
  53. data/app/helpers/admin/orders_helper.rb +22 -0
  54. data/app/helpers/admin/overview_helper.rb +12 -0
  55. data/app/helpers/admin/payments_helper.rb +7 -0
  56. data/app/helpers/admin/product_groups_helper.rb +11 -0
  57. data/app/helpers/admin/product_properties_helper.rb +21 -0
  58. data/app/helpers/admin/products_helper.rb +11 -0
  59. data/app/helpers/admin/taxons_helper.rb +5 -0
  60. data/app/helpers/admin/users_helper.rb +5 -0
  61. data/app/helpers/admin/zones_helper.rb +11 -0
  62. data/app/helpers/checkout_helper.rb +32 -0
  63. data/app/helpers/hook_helper.rb +20 -0
  64. data/app/helpers/orders_helper.rb +3 -0
  65. data/app/helpers/products_helper.rb +49 -0
  66. data/app/helpers/search_helper.rb +10 -0
  67. data/app/helpers/spree/base_helper.rb +91 -0
  68. data/app/helpers/taxons_helper.rb +32 -0
  69. data/app/helpers/trackers_helper.rb +2 -0
  70. data/app/helpers/users_helper.rb +13 -0
  71. data/app/models/address.rb +88 -0
  72. data/app/models/adjustment.rb +46 -0
  73. data/app/models/app_configuration.rb +54 -0
  74. data/app/models/asset.rb +4 -0
  75. data/app/models/billing_integration.rb +23 -0
  76. data/app/models/calculator/flat_percent_item_total.rb +18 -0
  77. data/app/models/calculator/flat_rate.rb +16 -0
  78. data/app/models/calculator/flexi_rate.rb +32 -0
  79. data/app/models/calculator/per_item.rb +16 -0
  80. data/app/models/calculator/price_bucket.rb +30 -0
  81. data/app/models/calculator/sales_tax.rb +48 -0
  82. data/app/models/calculator/vat.rb +63 -0
  83. data/app/models/calculator.rb +46 -0
  84. data/app/models/checkout.rb +141 -0
  85. data/app/models/configuration.rb +3 -0
  86. data/app/models/country.rb +17 -0
  87. data/app/models/creditcard.rb +240 -0
  88. data/app/models/gateway/authorize_net.rb +8 -0
  89. data/app/models/gateway/authorize_net_cim.rb +121 -0
  90. data/app/models/gateway/beanstream.rb +164 -0
  91. data/app/models/gateway/bogus.rb +80 -0
  92. data/app/models/gateway/eway.rb +11 -0
  93. data/app/models/gateway/linkpoint.rb +8 -0
  94. data/app/models/gateway/pay_pal.rb +11 -0
  95. data/app/models/gateway/sage_pay.rb +9 -0
  96. data/app/models/gateway.rb +48 -0
  97. data/app/models/image.rb +30 -0
  98. data/app/models/inventory_unit.rb +132 -0
  99. data/app/models/line_item.rb +67 -0
  100. data/app/models/option_type.rb +8 -0
  101. data/app/models/option_value.rb +5 -0
  102. data/app/models/order.rb +536 -0
  103. data/app/models/order_mailer.rb +24 -0
  104. data/app/models/payment.rb +136 -0
  105. data/app/models/payment_method/check.rb +2 -0
  106. data/app/models/payment_method.rb +54 -0
  107. data/app/models/preference.rb +51 -0
  108. data/app/models/product.rb +239 -0
  109. data/app/models/product_group.rb +208 -0
  110. data/app/models/product_option_type.rb +5 -0
  111. data/app/models/product_property.rb +15 -0
  112. data/app/models/product_scope.rb +58 -0
  113. data/app/models/property.rb +20 -0
  114. data/app/models/prototype.rb +5 -0
  115. data/app/models/return_authorization.rb +70 -0
  116. data/app/models/role.rb +3 -0
  117. data/app/models/shipment.rb +133 -0
  118. data/app/models/shipping_category.rb +3 -0
  119. data/app/models/shipping_method.rb +20 -0
  120. data/app/models/state.rb +17 -0
  121. data/app/models/state_event.rb +16 -0
  122. data/app/models/state_monitor.rb +25 -0
  123. data/app/models/tax_category.rb +14 -0
  124. data/app/models/tax_rate.rb +17 -0
  125. data/app/models/taxon.rb +51 -0
  126. data/app/models/taxonomy.rb +17 -0
  127. data/app/models/tracker.rb +5 -0
  128. data/app/models/user.rb +13 -0
  129. data/app/models/variant.rb +104 -0
  130. data/app/models/zone.rb +84 -0
  131. data/app/models/zone_member.rb +10 -0
  132. data/app/stylesheets/_buttons.less +80 -0
  133. data/app/stylesheets/_cart.less +24 -0
  134. data/app/stylesheets/_checkout.less +76 -0
  135. data/app/stylesheets/_checkout_progress.less +62 -0
  136. data/app/stylesheets/_colors.less +16 -0
  137. data/app/stylesheets/_forms.less +50 -0
  138. data/app/stylesheets/_layout.less +77 -0
  139. data/app/stylesheets/_messages.less +32 -0
  140. data/app/stylesheets/_mixins.less +71 -0
  141. data/app/stylesheets/_navigation.less +130 -0
  142. data/app/stylesheets/_prices.less +18 -0
  143. data/app/stylesheets/_product_details.less +56 -0
  144. data/app/stylesheets/_product_lists.less +66 -0
  145. data/app/stylesheets/_registration.less +24 -0
  146. data/app/stylesheets/_reset.less +69 -0
  147. data/app/stylesheets/_typography.less +158 -0
  148. data/app/stylesheets/screen.less +13 -0
  149. data/app/views/account/login.html.erb +4 -0
  150. data/app/views/admin/adjustments/_form.html.erb +12 -0
  151. data/app/views/admin/adjustments/edit.html.erb +13 -0
  152. data/app/views/admin/adjustments/index.html.erb +34 -0
  153. data/app/views/admin/adjustments/new.html.erb +13 -0
  154. data/app/views/admin/checkouts/_form.html.erb +42 -0
  155. data/app/views/admin/checkouts/edit.html.erb +21 -0
  156. data/app/views/admin/checkouts/show.html.erb +131 -0
  157. data/app/views/admin/configurations/index.html.erb +66 -0
  158. data/app/views/admin/configurations/new.html.erb +13 -0
  159. data/app/views/admin/extensions/index.html.erb +23 -0
  160. data/app/views/admin/general_settings/edit.html.erb +35 -0
  161. data/app/views/admin/general_settings/show.html.erb +28 -0
  162. data/app/views/admin/images/_form.html.erb +16 -0
  163. data/app/views/admin/images/edit.html.erb +19 -0
  164. data/app/views/admin/images/index.html.erb +66 -0
  165. data/app/views/admin/images/new.html.erb +22 -0
  166. data/app/views/admin/inventory_settings/edit.html.erb +27 -0
  167. data/app/views/admin/inventory_settings/show.html.erb +9 -0
  168. data/app/views/admin/inventory_units/adjust.html.erb +33 -0
  169. data/app/views/admin/mail_settings/edit.html.erb +114 -0
  170. data/app/views/admin/mail_settings/show.html.erb +59 -0
  171. data/app/views/admin/option_types/_available.html.erb +27 -0
  172. data/app/views/admin/option_types/_form.html.erb +11 -0
  173. data/app/views/admin/option_types/_option_value_fields.html.erb +5 -0
  174. data/app/views/admin/option_types/_selected.html.erb +26 -0
  175. data/app/views/admin/option_types/available.js.erb +2 -0
  176. data/app/views/admin/option_types/edit.html.erb +30 -0
  177. data/app/views/admin/option_types/index.html.erb +33 -0
  178. data/app/views/admin/option_types/new.html.erb +11 -0
  179. data/app/views/admin/option_types/select.js.erb +3 -0
  180. data/app/views/admin/option_types/selected.html.erb +6 -0
  181. data/app/views/admin/orders/_add_product.html.erb +20 -0
  182. data/app/views/admin/orders/_form.html.erb +66 -0
  183. data/app/views/admin/orders/_line_item.html.erb +16 -0
  184. data/app/views/admin/orders/edit.html.erb +30 -0
  185. data/app/views/admin/orders/history.html.erb +25 -0
  186. data/app/views/admin/orders/index.html.erb +96 -0
  187. data/app/views/admin/orders/new.html.erb +19 -0
  188. data/app/views/admin/orders/show.html.erb +32 -0
  189. data/app/views/admin/payment_methods/_form.html.erb +50 -0
  190. data/app/views/admin/payment_methods/edit.html.erb +10 -0
  191. data/app/views/admin/payment_methods/index.html.erb +47 -0
  192. data/app/views/admin/payment_methods/new.html.erb +11 -0
  193. data/app/views/admin/payments/_bill_address_form.html.erb +9 -0
  194. data/app/views/admin/payments/_card_form.html.erb +49 -0
  195. data/app/views/admin/payments/_form.html.erb +15 -0
  196. data/app/views/admin/payments/_list.html.erb +24 -0
  197. data/app/views/admin/payments/_transaction_list.html.erb +24 -0
  198. data/app/views/admin/payments/credit.html.erb +14 -0
  199. data/app/views/admin/payments/index.html.erb +27 -0
  200. data/app/views/admin/payments/new.html.erb +19 -0
  201. data/app/views/admin/payments/show.html.erb +10 -0
  202. data/app/views/admin/payments/source_forms/_check.html.erb +0 -0
  203. data/app/views/admin/payments/source_forms/_gateway.html.erb +43 -0
  204. data/app/views/admin/payments/source_views/_check.html.erb +0 -0
  205. data/app/views/admin/payments/source_views/_gateway.html.erb +35 -0
  206. data/app/views/admin/product_groups/_preview.html.erb +34 -0
  207. data/app/views/admin/product_groups/_product_scope.html.erb +24 -0
  208. data/app/views/admin/product_groups/edit.html.erb +56 -0
  209. data/app/views/admin/product_groups/index.html.erb +35 -0
  210. data/app/views/admin/product_groups/new.html.erb +12 -0
  211. data/app/views/admin/product_groups/show.html.erb +32 -0
  212. data/app/views/admin/product_groups/update.js.erb +7 -0
  213. data/app/views/admin/product_properties/_product_property_fields.html.erb +11 -0
  214. data/app/views/admin/product_properties/index.html.erb +50 -0
  215. data/app/views/admin/product_scopes/_form.html.erb +106 -0
  216. data/app/views/admin/product_scopes/create.js.erb +3 -0
  217. data/app/views/admin/product_scopes/destroy.js.erb +2 -0
  218. data/app/views/admin/product_scopes/new.html.erb +1 -0
  219. data/app/views/admin/products/_form.html.erb +106 -0
  220. data/app/views/admin/products/_option_types.html.erb +40 -0
  221. data/app/views/admin/products/_properties_form.erb +7 -0
  222. data/app/views/admin/products/edit.html.erb +10 -0
  223. data/app/views/admin/products/index.html.erb +81 -0
  224. data/app/views/admin/products/new.html.erb +53 -0
  225. data/app/views/admin/products/show.html.erb +4 -0
  226. data/app/views/admin/properties/_form.html.erb +12 -0
  227. data/app/views/admin/properties/edit.html.erb +10 -0
  228. data/app/views/admin/properties/filtered.html.erb +1 -0
  229. data/app/views/admin/properties/index.html.erb +40 -0
  230. data/app/views/admin/properties/new.html.erb +11 -0
  231. data/app/views/admin/prototypes/_form.html.erb +44 -0
  232. data/app/views/admin/prototypes/available.html.erb +22 -0
  233. data/app/views/admin/prototypes/edit.html.erb +9 -0
  234. data/app/views/admin/prototypes/index.html.erb +37 -0
  235. data/app/views/admin/prototypes/new.html.erb +11 -0
  236. data/app/views/admin/prototypes/select.js.erb +4 -0
  237. data/app/views/admin/reports/index.html.erb +19 -0
  238. data/app/views/admin/reports/sales_total.html.erb +27 -0
  239. data/app/views/admin/return_authorizations/_form.html.erb +64 -0
  240. data/app/views/admin/return_authorizations/edit.html.erb +27 -0
  241. data/app/views/admin/return_authorizations/index.html.erb +43 -0
  242. data/app/views/admin/return_authorizations/new.html.erb +13 -0
  243. data/app/views/admin/shared/_additional_field.html.erb +5 -0
  244. data/app/views/admin/shared/_address.html.erb +5 -0
  245. data/app/views/admin/shared/_address_form.html.erb +76 -0
  246. data/app/views/admin/shared/_calculator_fields.html.erb +19 -0
  247. data/app/views/admin/shared/_configuration_menu.html.erb +22 -0
  248. data/app/views/admin/shared/_edit_resource_links.html.erb +4 -0
  249. data/app/views/admin/shared/_group_from_products_form.html.erb +12 -0
  250. data/app/views/admin/shared/_new_resource_links.html.erb +4 -0
  251. data/app/views/admin/shared/_order_details.html.erb +3 -0
  252. data/app/views/admin/shared/_order_sub_menu.html.erb +0 -0
  253. data/app/views/admin/shared/_order_tabs.html.erb +60 -0
  254. data/app/views/admin/shared/_product_sub_menu.html.erb +11 -0
  255. data/app/views/admin/shared/_product_tabs.html.erb +34 -0
  256. data/app/views/admin/shared/_report_criteria.html.erb +15 -0
  257. data/app/views/admin/shared/_show_resource_links.html.erb +5 -0
  258. data/app/views/admin/shared/_tabs.html.erb +6 -0
  259. data/app/views/admin/shipments/_form.html.erb +79 -0
  260. data/app/views/admin/shipments/edit.html.erb +40 -0
  261. data/app/views/admin/shipments/index.html.erb +45 -0
  262. data/app/views/admin/shipments/new.html.erb +18 -0
  263. data/app/views/admin/shipping_categories/_form.html.erb +6 -0
  264. data/app/views/admin/shipping_categories/edit.html.erb +6 -0
  265. data/app/views/admin/shipping_categories/index.html.erb +29 -0
  266. data/app/views/admin/shipping_categories/new.html.erb +8 -0
  267. data/app/views/admin/shipping_methods/_form.html.erb +24 -0
  268. data/app/views/admin/shipping_methods/edit.html.erb +16 -0
  269. data/app/views/admin/shipping_methods/index.html.erb +48 -0
  270. data/app/views/admin/shipping_methods/new.html.erb +17 -0
  271. data/app/views/admin/states/_form.html.erb +9 -0
  272. data/app/views/admin/states/_state_list.html.erb +28 -0
  273. data/app/views/admin/states/edit.html.erb +10 -0
  274. data/app/views/admin/states/index.html.erb +16 -0
  275. data/app/views/admin/states/new.html.erb +8 -0
  276. data/app/views/admin/tax_categories/_form.html.erb +12 -0
  277. data/app/views/admin/tax_categories/edit.html.erb +10 -0
  278. data/app/views/admin/tax_categories/index.html.erb +39 -0
  279. data/app/views/admin/tax_categories/new.html.erb +10 -0
  280. data/app/views/admin/tax_categories/show.html.erb +1 -0
  281. data/app/views/admin/tax_rates/_form.html.erb +16 -0
  282. data/app/views/admin/tax_rates/edit.html.erb +6 -0
  283. data/app/views/admin/tax_rates/index.html.erb +34 -0
  284. data/app/views/admin/tax_rates/new.html.erb +8 -0
  285. data/app/views/admin/tax_settings/edit.html.erb +17 -0
  286. data/app/views/admin/tax_settings/show.html.erb +14 -0
  287. data/app/views/admin/taxonomies/_form.html.erb +7 -0
  288. data/app/views/admin/taxonomies/_js_head.html.erb +11 -0
  289. data/app/views/admin/taxonomies/_list.html.erb +17 -0
  290. data/app/views/admin/taxonomies/_taxon.html.erb +12 -0
  291. data/app/views/admin/taxonomies/edit.html.erb +49 -0
  292. data/app/views/admin/taxonomies/get_children.json.erb +9 -0
  293. data/app/views/admin/taxonomies/index.html.erb +16 -0
  294. data/app/views/admin/taxonomies/new.html.erb +12 -0
  295. data/app/views/admin/taxons/_form.html.erb +23 -0
  296. data/app/views/admin/taxons/_taxon_table.html.erb +28 -0
  297. data/app/views/admin/taxons/available.js.erb +36 -0
  298. data/app/views/admin/taxons/edit.html.erb +11 -0
  299. data/app/views/admin/taxons/remove.html.erb +1 -0
  300. data/app/views/admin/taxons/select.html.erb +1 -0
  301. data/app/views/admin/taxons/selected.html.erb +42 -0
  302. data/app/views/admin/trackers/_form.html.erb +26 -0
  303. data/app/views/admin/trackers/edit.html.erb +8 -0
  304. data/app/views/admin/trackers/index.html.erb +41 -0
  305. data/app/views/admin/trackers/new.html.erb +9 -0
  306. data/app/views/admin/users/_form.html.erb +36 -0
  307. data/app/views/admin/users/edit.html.erb +14 -0
  308. data/app/views/admin/users/index.html.erb +62 -0
  309. data/app/views/admin/users/new.html.erb +14 -0
  310. data/app/views/admin/users/show.html.erb +21 -0
  311. data/app/views/admin/variants/_form.html.erb +40 -0
  312. data/app/views/admin/variants/edit.html.erb +13 -0
  313. data/app/views/admin/variants/index.html.erb +51 -0
  314. data/app/views/admin/variants/new.html.erb +11 -0
  315. data/app/views/admin/zones/_country_member.html.erb +5 -0
  316. data/app/views/admin/zones/_form.html.erb +29 -0
  317. data/app/views/admin/zones/_member_type.html.erb +15 -0
  318. data/app/views/admin/zones/_state_member.html.erb +5 -0
  319. data/app/views/admin/zones/_zone_member.html.erb +5 -0
  320. data/app/views/admin/zones/edit.html.erb +10 -0
  321. data/app/views/admin/zones/index.html.erb +40 -0
  322. data/app/views/admin/zones/new.html.erb +10 -0
  323. data/app/views/checkout/_address.html.erb +161 -0
  324. data/app/views/checkout/_complete.html.erb +1 -0
  325. data/app/views/checkout/_confirm.html.erb +11 -0
  326. data/app/views/checkout/_delivery.html.erb +25 -0
  327. data/app/views/checkout/_payment.html.erb +28 -0
  328. data/app/views/checkout/_summary.html.erb +31 -0
  329. data/app/views/checkout/edit.html.erb +18 -0
  330. data/app/views/checkout/payment/_check.html.erb +0 -0
  331. data/app/views/checkout/payment/_gateway.html.erb +31 -0
  332. data/app/views/content/cvv.html.erb +13 -0
  333. data/app/views/countries/index.js.erb +1 -0
  334. data/app/views/layouts/admin.html.erb +79 -0
  335. data/app/views/layouts/spree_application.html.erb +52 -0
  336. data/app/views/order_mailer/cancel.html.erb +16 -0
  337. data/app/views/order_mailer/confirm.html.erb +19 -0
  338. data/app/views/orders/_form.html.erb +19 -0
  339. data/app/views/orders/_line_item.html.erb +43 -0
  340. data/app/views/orders/edit.html.erb +40 -0
  341. data/app/views/orders/new.html.erb +9 -0
  342. data/app/views/orders/show.html.erb +16 -0
  343. data/app/views/password_resets/edit.html.erb +12 -0
  344. data/app/views/password_resets/new.html.erb +12 -0
  345. data/app/views/products/_cart_form.html.erb +54 -0
  346. data/app/views/products/_image.html.erb +5 -0
  347. data/app/views/products/_properties.html.erb +8 -0
  348. data/app/views/products/_taxons.html.erb +16 -0
  349. data/app/views/products/_thumbnails.html.erb +40 -0
  350. data/app/views/products/index.html.erb +30 -0
  351. data/app/views/products/show.html.erb +31 -0
  352. data/app/views/shared/_additional_field.html.erb +7 -0
  353. data/app/views/shared/_admin_head.html.erb +34 -0
  354. data/app/views/shared/_edit_resource_links.html.erb +1 -0
  355. data/app/views/shared/_error_messages.html.erb +11 -0
  356. data/app/views/shared/_filters.html.erb +52 -0
  357. data/app/views/shared/_footer.html.erb +13 -0
  358. data/app/views/shared/_google_analytics.html.erb +39 -0
  359. data/app/views/shared/_head.html.erb +10 -0
  360. data/app/views/shared/_login.html.erb +21 -0
  361. data/app/views/shared/_method_error_message.html.erb +4 -0
  362. data/app/views/shared/_nav_bar.html.erb +5 -0
  363. data/app/views/shared/_new_resource_links.html.erb +1 -0
  364. data/app/views/shared/_order_details.html.erb +50 -0
  365. data/app/views/shared/_products.html.erb +35 -0
  366. data/app/views/shared/_search.html.erb +9 -0
  367. data/app/views/shared/_show_resource_links.html.erb +3 -0
  368. data/app/views/shared/_store_menu.html.erb +3 -0
  369. data/app/views/shared/_taxonomies.html.erb +10 -0
  370. data/app/views/shared/_test_hook.html.erb +1 -0
  371. data/app/views/shared/_user_form.html.erb +17 -0
  372. data/app/views/states/index.js.erb +1 -0
  373. data/app/views/taxons/_taxon.html.erb +4 -0
  374. data/app/views/taxons/show.html.erb +17 -0
  375. data/app/views/users/edit.html.erb +9 -0
  376. data/app/views/users/show.html.erb +46 -0
  377. data/config/initializers/form_builder.rb +23 -0
  378. data/config/initializers/load_unobtrusive_date_picker.rb +8 -0
  379. data/config/initializers/spree.rb +41 -0
  380. data/config/initializers/touch.rb +14 -0
  381. data/config/initializers/workarounds_for_ruby19.rb +72 -0
  382. data/config/locales/en_spree.yml +950 -0
  383. data/config/routes.rb +186 -0
  384. data/lib/active_merchant/billing/authorize_net_cim.rb +871 -0
  385. data/lib/custom_fixtures.rb +7 -0
  386. data/lib/generators/spree_core/extension_generator.rb +57 -0
  387. data/lib/generators/spree_core/install_generator.rb +59 -0
  388. data/lib/generators/templates/LICENSE +23 -0
  389. data/lib/generators/templates/README.md +13 -0
  390. data/lib/generators/templates/Rakefile +1 -0
  391. data/lib/generators/templates/application_controller.rb +4 -0
  392. data/lib/generators/templates/config/initializers/%file_name%.rb.tt +1 -0
  393. data/lib/generators/templates/config/locales/%current_locale%.yml.tt +2 -0
  394. data/lib/generators/templates/config/routes.rb +3 -0
  395. data/lib/generators/templates/db/default/countries.yml +1583 -0
  396. data/lib/generators/templates/db/default/roles.yml +7 -0
  397. data/lib/generators/templates/db/default/states.yml +256 -0
  398. data/lib/generators/templates/db/default/zone_members.yml +169 -0
  399. data/lib/generators/templates/db/default/zones.yml +13 -0
  400. data/lib/generators/templates/db/migrate/20090823005402_spree_zero_nine_zero.rb +442 -0
  401. data/lib/generators/templates/db/migrate/20090904192342_create_indexes_for_inventory_units.rb +12 -0
  402. data/lib/generators/templates/db/migrate/20090923100315_add_count_on_hand_to_variants_and_products.rb +36 -0
  403. data/lib/generators/templates/db/migrate/20091007134354_change_taxons_to_nested_set.rb +40 -0
  404. data/lib/generators/templates/db/migrate/20091008091614_move_to_configurable_gateways.rb +55 -0
  405. data/lib/generators/templates/db/migrate/20091012120519_product_groups_and_scopes.rb +25 -0
  406. data/lib/generators/templates/db/migrate/20091015110842_add_open_id_authentication_tables.rb +20 -0
  407. data/lib/generators/templates/db/migrate/20091015153048_add_openid_field_to_users.rb +19 -0
  408. data/lib/generators/templates/db/migrate/20091016174634_change_preference_value_type.rb +9 -0
  409. data/lib/generators/templates/db/migrate/20091017175558_create_billing_integrations.rb +16 -0
  410. data/lib/generators/templates/db/migrate/20091021133257_charge_refactoring.rb +32 -0
  411. data/lib/generators/templates/db/migrate/20091104151730_add_some_indexes.rb +21 -0
  412. data/lib/generators/templates/db/migrate/20091126190904_checkout_state_machine.rb +13 -0
  413. data/lib/generators/templates/db/migrate/20091209153045_state_for_shipments.rb +9 -0
  414. data/lib/generators/templates/db/migrate/20091209202200_make_state_events_polymorphic.rb +12 -0
  415. data/lib/generators/templates/db/migrate/20091211203813_ship_address_id_for_checkouts.rb +9 -0
  416. data/lib/generators/templates/db/migrate/20091212161118_shipping_method_id_for_checkouts.rb +9 -0
  417. data/lib/generators/templates/db/migrate/20091213222815_creditcard_last_four_digits.rb +19 -0
  418. data/lib/generators/templates/db/migrate/20091214183826_populate_legacy_shipment_state.rb +19 -0
  419. data/lib/generators/templates/db/migrate/20100105090147_add_cost_price.rb +9 -0
  420. data/lib/generators/templates/db/migrate/20100105132138_shipment_id_for_inventory_units.rb +21 -0
  421. data/lib/generators/templates/db/migrate/20100111205525_cim_fields_for_creditcards.rb +11 -0
  422. data/lib/generators/templates/db/migrate/20100112151511_create_return_authorizations.rb +16 -0
  423. data/lib/generators/templates/db/migrate/20100113090919_add_return_authorization_to_inventory_units.rb +9 -0
  424. data/lib/generators/templates/db/migrate/20100113203104_create_trackers.rb +14 -0
  425. data/lib/generators/templates/db/migrate/20100121160010_creditcard_id_for_creditcard_txns.rb +9 -0
  426. data/lib/generators/templates/db/migrate/20100121183934_original_creditcard_txn_id_for_creditcard_txns.rb +9 -0
  427. data/lib/generators/templates/db/migrate/20100125145351_add_test_mode_to_billing_integration.rb +11 -0
  428. data/lib/generators/templates/db/migrate/20100126103714_create_products_product_groups.rb +12 -0
  429. data/lib/generators/templates/db/migrate/20100209025806_create_payment_methods.rb +20 -0
  430. data/lib/generators/templates/db/migrate/20100209144531_polymorphic_payments.rb +29 -0
  431. data/lib/generators/templates/db/migrate/20100213103131_change_payments_payment_method_to_belongs_to.rb +11 -0
  432. data/lib/generators/templates/db/migrate/20100214212536_assign_creditcard_txns_to_payment.rb +16 -0
  433. data/lib/generators/templates/db/migrate/20100223170312_sti_for_transactions.rb +14 -0
  434. data/lib/generators/templates/db/migrate/20100223183812_drop_billing_integrations.rb +16 -0
  435. data/lib/generators/templates/db/migrate/20100224153127_deleted_at_for_payment_methods.rb +13 -0
  436. data/lib/generators/templates/db/migrate/20100301163454_add_adjustments_index.rb +10 -0
  437. data/lib/generators/templates/db/migrate/20100306153445_fix_by_popularity.rb +8 -0
  438. data/lib/generators/templates/db/migrate/20100317120946_add_alt_text_to_images.rb +9 -0
  439. data/lib/generators/templates/db/migrate/20100427121301_add_display_to_payment_methods.rb +9 -0
  440. data/lib/generators/templates/db/migrate/20100504142133_add_addresses_checkouts_indexes.rb +16 -0
  441. data/lib/generators/templates/db/migrate/20100506180619_add_icon_to_taxons.rb +18 -0
  442. data/lib/generators/templates/db/migrate/20100506185838_add_description_to_taxons.rb +11 -0
  443. data/lib/generators/templates/db/migrate/20100528155333_index_for_shipments_number.rb +9 -0
  444. data/lib/generators/templates/db/migrate/20100528185820_add_index_on_users_persistence_token.rb +9 -0
  445. data/lib/generators/templates/db/migrate/20100605152042_add_default_to_tax_categories.rb +9 -0
  446. data/lib/generators/templates/db/migrate/20100624110730_add_display_to_shipping_methods.rb +9 -0
  447. data/lib/generators/templates/db/migrate/20100624123336_rename_payment_method_display.rb +9 -0
  448. data/lib/generators/templates/db/migrate/20100624175547_rename_preferences_field.rb +8 -0
  449. data/lib/generators/templates/db/migrate/20100811163637_add_guest_flag.rb +13 -0
  450. data/lib/generators/templates/db/migrate/20100811205836_drop_order_token.rb +11 -0
  451. data/lib/generators/templates/db/migrate/20100812162326_payments_state_and_assigned_to_order_only.rb +11 -0
  452. data/lib/generators/templates/db/migrate/20100813023502_create_address_keys_for_order.rb +15 -0
  453. data/lib/generators/templates/db/migrate/20100813185745_payment_total_for_orders.rb +9 -0
  454. data/lib/generators/templates/db/migrate/20100816212146_shipping_method_id_for_orders.rb +9 -0
  455. data/lib/generators/templates/db/migrate/20100817152723_add_shipment_and_payment_state.rb +15 -0
  456. data/lib/generators/templates/db/migrate/20100819170125_refactor_adjustments.rb +19 -0
  457. data/lib/generators/templates/db/migrate/20100820135707_response_code_and_avs_response_for_payments.rb +11 -0
  458. data/lib/generators/templates/db/migrate/20100901171814_change_guest_flag_to_anonymous.rb +13 -0
  459. data/lib/generators/templates/db/sample/users.rb +61 -0
  460. data/lib/generators/templates/extension/engine.rb.tt +14 -0
  461. data/lib/generators/templates/extension/extension.rb.tt +1 -0
  462. data/lib/generators/templates/extension.gemspec.tt +21 -0
  463. data/lib/generators/templates/lib/tasks/%file_name%.rake.tt +1 -0
  464. data/lib/generators/templates/public/images/add-to-cart.png +0 -0
  465. data/lib/generators/templates/public/images/admin/bg/active-tab.png +0 -0
  466. data/lib/generators/templates/public/images/admin/bg/admin_tab_back.png +0 -0
  467. data/lib/generators/templates/public/images/admin/bg/admin_tab_selected_back.png +0 -0
  468. data/lib/generators/templates/public/images/admin/bg/content-back-blue.png +0 -0
  469. data/lib/generators/templates/public/images/admin/bg/content-back-green.png +0 -0
  470. data/lib/generators/templates/public/images/admin/bg/content-back.png +0 -0
  471. data/lib/generators/templates/public/images/admin/bg/flash-error.png +0 -0
  472. data/lib/generators/templates/public/images/admin/bg/flash-notice.png +0 -0
  473. data/lib/generators/templates/public/images/admin/bg/green-stripes.gif +0 -0
  474. data/lib/generators/templates/public/images/admin/bg/green-stripes.png +0 -0
  475. data/lib/generators/templates/public/images/admin/bg/grid_header_back.png +0 -0
  476. data/lib/generators/templates/public/images/admin/bg/grid_header_back_green.png +0 -0
  477. data/lib/generators/templates/public/images/admin/bg/header-bg.png +0 -0
  478. data/lib/generators/templates/public/images/admin/bg/header.png +0 -0
  479. data/lib/generators/templates/public/images/admin/bg/header_bg.jpg +0 -0
  480. data/lib/generators/templates/public/images/admin/bg/menu-current.png +0 -0
  481. data/lib/generators/templates/public/images/admin/bg/red-stripes.gif +0 -0
  482. data/lib/generators/templates/public/images/admin/bg/red-stripes.png +0 -0
  483. data/lib/generators/templates/public/images/admin/bg/spree_50.png +0 -0
  484. data/lib/generators/templates/public/images/admin/bg/subnav-divider.png +0 -0
  485. data/lib/generators/templates/public/images/admin/bg/subnav.png +0 -0
  486. data/lib/generators/templates/public/images/admin/bg/tab-back.png +0 -0
  487. data/lib/generators/templates/public/images/admin/buttons/blue/left_01.png +0 -0
  488. data/lib/generators/templates/public/images/admin/buttons/blue/right_01.png +0 -0
  489. data/lib/generators/templates/public/images/admin/buttons/drag-handle-green.png +0 -0
  490. data/lib/generators/templates/public/images/admin/buttons/green/left_01.png +0 -0
  491. data/lib/generators/templates/public/images/admin/buttons/green/right_01.png +0 -0
  492. data/lib/generators/templates/public/images/admin/buttons/left_01.png +0 -0
  493. data/lib/generators/templates/public/images/admin/buttons/left_01_small.png +0 -0
  494. data/lib/generators/templates/public/images/admin/buttons/orange/left_03.png +0 -0
  495. data/lib/generators/templates/public/images/admin/buttons/orange/right_03.png +0 -0
  496. data/lib/generators/templates/public/images/admin/buttons/right_01.png +0 -0
  497. data/lib/generators/templates/public/images/admin/buttons/right_01_small.png +0 -0
  498. data/lib/generators/templates/public/images/admin/icons/16x16/1.png +0 -0
  499. data/lib/generators/templates/public/images/admin/icons/16x16/10.png +0 -0
  500. data/lib/generators/templates/public/images/admin/icons/16x16/2.png +0 -0
  501. data/lib/generators/templates/public/images/admin/icons/16x16/3.png +0 -0
  502. data/lib/generators/templates/public/images/admin/icons/16x16/4.png +0 -0
  503. data/lib/generators/templates/public/images/admin/icons/16x16/5.png +0 -0
  504. data/lib/generators/templates/public/images/admin/icons/16x16/6.png +0 -0
  505. data/lib/generators/templates/public/images/admin/icons/16x16/7.png +0 -0
  506. data/lib/generators/templates/public/images/admin/icons/16x16/8.png +0 -0
  507. data/lib/generators/templates/public/images/admin/icons/16x16/9.png +0 -0
  508. data/lib/generators/templates/public/images/admin/icons/32x32/1.png +0 -0
  509. data/lib/generators/templates/public/images/admin/icons/32x32/10.png +0 -0
  510. data/lib/generators/templates/public/images/admin/icons/32x32/11.png +0 -0
  511. data/lib/generators/templates/public/images/admin/icons/32x32/2.png +0 -0
  512. data/lib/generators/templates/public/images/admin/icons/32x32/3.png +0 -0
  513. data/lib/generators/templates/public/images/admin/icons/32x32/4.png +0 -0
  514. data/lib/generators/templates/public/images/admin/icons/32x32/5.png +0 -0
  515. data/lib/generators/templates/public/images/admin/icons/32x32/6.png +0 -0
  516. data/lib/generators/templates/public/images/admin/icons/32x32/7.png +0 -0
  517. data/lib/generators/templates/public/images/admin/icons/32x32/8.png +0 -0
  518. data/lib/generators/templates/public/images/admin/icons/32x32/9.png +0 -0
  519. data/lib/generators/templates/public/images/admin/icons/accept.png +0 -0
  520. data/lib/generators/templates/public/images/admin/icons/add.gif +0 -0
  521. data/lib/generators/templates/public/images/admin/icons/add.png +0 -0
  522. data/lib/generators/templates/public/images/admin/icons/arrow-down.gif +0 -0
  523. data/lib/generators/templates/public/images/admin/icons/cross.png +0 -0
  524. data/lib/generators/templates/public/images/admin/icons/delete.gif +0 -0
  525. data/lib/generators/templates/public/images/admin/icons/delete.png +0 -0
  526. data/lib/generators/templates/public/images/admin/icons/drag.gif +0 -0
  527. data/lib/generators/templates/public/images/admin/icons/edit.gif +0 -0
  528. data/lib/generators/templates/public/images/admin/icons/edit.png +0 -0
  529. data/lib/generators/templates/public/images/admin/icons/email.png +0 -0
  530. data/lib/generators/templates/public/images/admin/icons/error.png +0 -0
  531. data/lib/generators/templates/public/images/admin/icons/exclamation.png +0 -0
  532. data/lib/generators/templates/public/images/admin/icons/feed.png +0 -0
  533. data/lib/generators/templates/public/images/admin/icons/pdf.png +0 -0
  534. data/lib/generators/templates/public/images/admin/icons/reorder.gif +0 -0
  535. data/lib/generators/templates/public/images/admin/icons/search.gif +0 -0
  536. data/lib/generators/templates/public/images/admin/icons/send-email.png +0 -0
  537. data/lib/generators/templates/public/images/admin/icons/stop.png +0 -0
  538. data/lib/generators/templates/public/images/admin/icons/tick.png +0 -0
  539. data/lib/generators/templates/public/images/admin/icons/up.gif +0 -0
  540. data/lib/generators/templates/public/images/admin/icons/xls.png +0 -0
  541. data/lib/generators/templates/public/images/admin/tabs/off-left.png +0 -0
  542. data/lib/generators/templates/public/images/admin/tabs/off-right.png +0 -0
  543. data/lib/generators/templates/public/images/admin/tabs/on-left.png +0 -0
  544. data/lib/generators/templates/public/images/admin/tabs/on-right.png +0 -0
  545. data/lib/generators/templates/public/images/ajax_loader.gif +0 -0
  546. data/lib/generators/templates/public/images/amex_cid.gif +0 -0
  547. data/lib/generators/templates/public/images/bg-button-hover.png +0 -0
  548. data/lib/generators/templates/public/images/bg-button-pressed.png +0 -0
  549. data/lib/generators/templates/public/images/bg-button.gif +0 -0
  550. data/lib/generators/templates/public/images/bg-button.png +0 -0
  551. data/lib/generators/templates/public/images/blue/left_01.png +0 -0
  552. data/lib/generators/templates/public/images/blue/right_01.png +0 -0
  553. data/lib/generators/templates/public/images/body-back.png +0 -0
  554. data/lib/generators/templates/public/images/bottom_shine.png +0 -0
  555. data/lib/generators/templates/public/images/breadcrumb.gif +0 -0
  556. data/lib/generators/templates/public/images/button-dark-hover.png +0 -0
  557. data/lib/generators/templates/public/images/button-dark.png +0 -0
  558. data/lib/generators/templates/public/images/buttons/bg-button-hover.png +0 -0
  559. data/lib/generators/templates/public/images/buttons/bg-button-pressed.png +0 -0
  560. data/lib/generators/templates/public/images/buttons/bg-button.gif +0 -0
  561. data/lib/generators/templates/public/images/buttons/bg-button.png +0 -0
  562. data/lib/generators/templates/public/images/buttons/blue/left_01.png +0 -0
  563. data/lib/generators/templates/public/images/buttons/blue/right_01.png +0 -0
  564. data/lib/generators/templates/public/images/buttons/button-dark-hover.png +0 -0
  565. data/lib/generators/templates/public/images/buttons/button-dark.png +0 -0
  566. data/lib/generators/templates/public/images/buttons/drag-handle-green.png +0 -0
  567. data/lib/generators/templates/public/images/buttons/green/left_01.png +0 -0
  568. data/lib/generators/templates/public/images/buttons/green/right_01.png +0 -0
  569. data/lib/generators/templates/public/images/buttons/left_01.png +0 -0
  570. data/lib/generators/templates/public/images/buttons/left_01_small.png +0 -0
  571. data/lib/generators/templates/public/images/buttons/orange/left_03.png +0 -0
  572. data/lib/generators/templates/public/images/buttons/orange/right_03.png +0 -0
  573. data/lib/generators/templates/public/images/buttons/right_01.png +0 -0
  574. data/lib/generators/templates/public/images/buttons/right_01_small.png +0 -0
  575. data/lib/generators/templates/public/images/buttons/sxsw-ribbon-v1.png +0 -0
  576. data/lib/generators/templates/public/images/buttons/top-shine.png +0 -0
  577. data/lib/generators/templates/public/images/calendar_date_select/calendar.gif +0 -0
  578. data/lib/generators/templates/public/images/cart-empty.png +0 -0
  579. data/lib/generators/templates/public/images/cart-empty_x32.png +0 -0
  580. data/lib/generators/templates/public/images/cart-full.png +0 -0
  581. data/lib/generators/templates/public/images/cart-full_x32.png +0 -0
  582. data/lib/generators/templates/public/images/checkout.png +0 -0
  583. data/lib/generators/templates/public/images/creditcard.gif +0 -0
  584. data/lib/generators/templates/public/images/datepicker/backstripes.gif +0 -0
  585. data/lib/generators/templates/public/images/datepicker/bg_header.jpg +0 -0
  586. data/lib/generators/templates/public/images/datepicker/bullet1.gif +0 -0
  587. data/lib/generators/templates/public/images/datepicker/bullet2.gif +0 -0
  588. data/lib/generators/templates/public/images/datepicker/cal.gif +0 -0
  589. data/lib/generators/templates/public/images/datepicker/gradient-e5e5e5-ffffff.gif +0 -0
  590. data/lib/generators/templates/public/images/discover_cid.gif +0 -0
  591. data/lib/generators/templates/public/images/drag-handle-green.png +0 -0
  592. data/lib/generators/templates/public/images/favicon.ico +0 -0
  593. data/lib/generators/templates/public/images/green/left_01.png +0 -0
  594. data/lib/generators/templates/public/images/green/right_01.png +0 -0
  595. data/lib/generators/templates/public/images/grid.png +0 -0
  596. data/lib/generators/templates/public/images/left_01.png +0 -0
  597. data/lib/generators/templates/public/images/left_01_small.png +0 -0
  598. data/lib/generators/templates/public/images/master_cid.jpg +0 -0
  599. data/lib/generators/templates/public/images/menu-current.png +0 -0
  600. data/lib/generators/templates/public/images/menu-hover.png +0 -0
  601. data/lib/generators/templates/public/images/noimage/mini.jpg +0 -0
  602. data/lib/generators/templates/public/images/noimage/product.jpg +0 -0
  603. data/lib/generators/templates/public/images/noimage/small.jpg +0 -0
  604. data/lib/generators/templates/public/images/openid-inputicon.gif +0 -0
  605. data/lib/generators/templates/public/images/orange/left_03.png +0 -0
  606. data/lib/generators/templates/public/images/orange/right_03.png +0 -0
  607. data/lib/generators/templates/public/images/progress.gif +0 -0
  608. data/lib/generators/templates/public/images/right_01.png +0 -0
  609. data/lib/generators/templates/public/images/right_01_small.png +0 -0
  610. data/lib/generators/templates/public/images/separator.png +0 -0
  611. data/lib/generators/templates/public/images/shadow-top.png +0 -0
  612. data/lib/generators/templates/public/images/shadow_top.png +0 -0
  613. data/lib/generators/templates/public/images/spinner.gif +0 -0
  614. data/lib/generators/templates/public/images/spree/progress.gif +0 -0
  615. data/lib/generators/templates/public/images/spree/spinner.gif +0 -0
  616. data/lib/generators/templates/public/images/spree/spree.jpg +0 -0
  617. data/lib/generators/templates/public/images/spree.jpg +0 -0
  618. data/lib/generators/templates/public/images/step-progress/completed-completed.gif +0 -0
  619. data/lib/generators/templates/public/images/step-progress/completed-current.gif +0 -0
  620. data/lib/generators/templates/public/images/step-progress/completed-first.gif +0 -0
  621. data/lib/generators/templates/public/images/step-progress/current-first.gif +0 -0
  622. data/lib/generators/templates/public/images/step-progress/current-incomplete.gif +0 -0
  623. data/lib/generators/templates/public/images/step-progress/current-right.gif +0 -0
  624. data/lib/generators/templates/public/images/step-progress/incomplete-incomplete.gif +0 -0
  625. data/lib/generators/templates/public/images/step-progress/incomplete-right.gif +0 -0
  626. data/lib/generators/templates/public/images/steps/1.png +0 -0
  627. data/lib/generators/templates/public/images/steps/1_small.png +0 -0
  628. data/lib/generators/templates/public/images/steps/2.png +0 -0
  629. data/lib/generators/templates/public/images/steps/2_small.png +0 -0
  630. data/lib/generators/templates/public/images/steps/3.png +0 -0
  631. data/lib/generators/templates/public/images/steps/3_small.png +0 -0
  632. data/lib/generators/templates/public/images/steps/4.png +0 -0
  633. data/lib/generators/templates/public/images/steps/4_small.png +0 -0
  634. data/lib/generators/templates/public/images/steps/5.png +0 -0
  635. data/lib/generators/templates/public/images/steps/5_small.png +0 -0
  636. data/lib/generators/templates/public/images/steps/6.png +0 -0
  637. data/lib/generators/templates/public/images/steps/6_small.png +0 -0
  638. data/lib/generators/templates/public/images/sxsw-ribbon-v1.png +0 -0
  639. data/lib/generators/templates/public/images/tab_bottom.gif +0 -0
  640. data/lib/generators/templates/public/images/tile-header.png +0 -0
  641. data/lib/generators/templates/public/images/tile-slider.png +0 -0
  642. data/lib/generators/templates/public/images/top-shine.png +0 -0
  643. data/lib/generators/templates/public/images/tree-nav-icons/bullet.gif +0 -0
  644. data/lib/generators/templates/public/images/tree-nav-icons/minus.gif +0 -0
  645. data/lib/generators/templates/public/images/tree-nav-icons/plus.gif +0 -0
  646. data/lib/generators/templates/public/images/tree-nav-icons/treeview-loading.gif +0 -0
  647. data/lib/generators/templates/public/images/tree-nav-icons/treeview-sprite.gif +0 -0
  648. data/lib/generators/templates/public/images/update.png +0 -0
  649. data/lib/generators/templates/public/images/visa_cid.gif +0 -0
  650. data/lib/generators/templates/public/images/wrapper-back-2.png +0 -0
  651. data/lib/generators/templates/public/images/wrapper-back.png +0 -0
  652. data/lib/generators/templates/public/images/yui-menubaritem_submenuindicator.png +0 -0
  653. data/lib/generators/templates/public/images/yui-menubaritem_submenuindicator_disabled.png +0 -0
  654. data/lib/generators/templates/public/images/yui-menuitem_checkbox.png +0 -0
  655. data/lib/generators/templates/public/images/yui-menuitem_checkbox_disabled.png +0 -0
  656. data/lib/generators/templates/public/images/yui-menuitem_submenuindicator.png +0 -0
  657. data/lib/generators/templates/public/images/yui-menuitem_submenuindicator_disabled.png +0 -0
  658. data/lib/generators/templates/public/images/yui-sprite.png +0 -0
  659. data/lib/generators/templates/public/javascripts/additional-methods.js +236 -0
  660. data/lib/generators/templates/public/javascripts/admin/address_states.js +25 -0
  661. data/lib/generators/templates/public/javascripts/admin/checkouts/edit.js +129 -0
  662. data/lib/generators/templates/public/javascripts/admin/orders/edit.js +23 -0
  663. data/lib/generators/templates/public/javascripts/admin/orders/edit_form.js +15 -0
  664. data/lib/generators/templates/public/javascripts/admin/payments/new.js +9 -0
  665. data/lib/generators/templates/public/javascripts/admin/unobtrusive_handlers.js +15 -0
  666. data/lib/generators/templates/public/javascripts/admin.js +226 -0
  667. data/lib/generators/templates/public/javascripts/application.js +12 -0
  668. data/lib/generators/templates/public/javascripts/calculator.js +15 -0
  669. data/lib/generators/templates/public/javascripts/checkout.js +64 -0
  670. data/lib/generators/templates/public/javascripts/datepicker.js +1445 -0
  671. data/lib/generators/templates/public/javascripts/gateway.js +13 -0
  672. data/lib/generators/templates/public/javascripts/jquery-1.3.2.min.js +19 -0
  673. data/lib/generators/templates/public/javascripts/jquery-1.4.2.min.js +154 -0
  674. data/lib/generators/templates/public/javascripts/jquery-and-plugins.js +36 -0
  675. data/lib/generators/templates/public/javascripts/jquery-ui.js +188 -0
  676. data/lib/generators/templates/public/javascripts/jquery.alerts/images/help.gif +0 -0
  677. data/lib/generators/templates/public/javascripts/jquery.alerts/images/important.gif +0 -0
  678. data/lib/generators/templates/public/javascripts/jquery.alerts/images/info.gif +0 -0
  679. data/lib/generators/templates/public/javascripts/jquery.alerts/images/title.gif +0 -0
  680. data/lib/generators/templates/public/javascripts/jquery.alerts/jquery.alerts.css +57 -0
  681. data/lib/generators/templates/public/javascripts/jquery.alerts/jquery.alerts.js +235 -0
  682. data/lib/generators/templates/public/javascripts/jquery.alerts/jquery.alerts.spree.css +30 -0
  683. data/lib/generators/templates/public/javascripts/jquery.autocomplete.min.js +13 -0
  684. data/lib/generators/templates/public/javascripts/jquery.js +19 -0
  685. data/lib/generators/templates/public/javascripts/jquery.suggest.js +276 -0
  686. data/lib/generators/templates/public/javascripts/jquery.template.js +255 -0
  687. data/lib/generators/templates/public/javascripts/jquery.tokeninput.js +618 -0
  688. data/lib/generators/templates/public/javascripts/jquery.validate.min.js +16 -0
  689. data/lib/generators/templates/public/javascripts/jrails.autocomplete.js +274 -0
  690. data/lib/generators/templates/public/javascripts/jrails.js +1 -0
  691. data/lib/generators/templates/public/javascripts/jsTree/jquery.tree.js +2058 -0
  692. data/lib/generators/templates/public/javascripts/jsTree/plugins/jquery.tree.contextmenu.js +129 -0
  693. data/lib/generators/templates/public/javascripts/jsTree/themes/apple/bg.jpg +0 -0
  694. data/lib/generators/templates/public/javascripts/jsTree/themes/apple/dot_for_ie.gif +0 -0
  695. data/lib/generators/templates/public/javascripts/jsTree/themes/apple/icons.png +0 -0
  696. data/lib/generators/templates/public/javascripts/jsTree/themes/apple/style.css +34 -0
  697. data/lib/generators/templates/public/javascripts/jsTree/themes/apple/throbber.gif +0 -0
  698. data/lib/generators/templates/public/javascripts/lang/af.js +40 -0
  699. data/lib/generators/templates/public/javascripts/lang/ar.js +50 -0
  700. data/lib/generators/templates/public/javascripts/lang/de.js +40 -0
  701. data/lib/generators/templates/public/javascripts/lang/du.js +40 -0
  702. data/lib/generators/templates/public/javascripts/lang/en.js +42 -0
  703. data/lib/generators/templates/public/javascripts/lang/es.js +41 -0
  704. data/lib/generators/templates/public/javascripts/lang/fi.js +40 -0
  705. data/lib/generators/templates/public/javascripts/lang/fr.js +44 -0
  706. data/lib/generators/templates/public/javascripts/lang/gr.js +40 -0
  707. data/lib/generators/templates/public/javascripts/lang/he.js +49 -0
  708. data/lib/generators/templates/public/javascripts/lang/it.js +13 -0
  709. data/lib/generators/templates/public/javascripts/lang/nl.js +40 -0
  710. data/lib/generators/templates/public/javascripts/lang/no.js +40 -0
  711. data/lib/generators/templates/public/javascripts/lang/pt.js +50 -0
  712. data/lib/generators/templates/public/javascripts/lang/ro.js +40 -0
  713. data/lib/generators/templates/public/javascripts/lang/ru.js +40 -0
  714. data/lib/generators/templates/public/javascripts/lang/sp.js +40 -0
  715. data/lib/generators/templates/public/javascripts/lang/sv.js +41 -0
  716. data/lib/generators/templates/public/javascripts/lang/ua.js +40 -0
  717. data/lib/generators/templates/public/javascripts/localization/messages_cn.js +24 -0
  718. data/lib/generators/templates/public/javascripts/localization/messages_cs.js +23 -0
  719. data/lib/generators/templates/public/javascripts/localization/messages_da.js +21 -0
  720. data/lib/generators/templates/public/javascripts/localization/messages_de.js +21 -0
  721. data/lib/generators/templates/public/javascripts/localization/messages_es.js +24 -0
  722. data/lib/generators/templates/public/javascripts/localization/messages_fr.js +23 -0
  723. data/lib/generators/templates/public/javascripts/localization/messages_hu.js +21 -0
  724. data/lib/generators/templates/public/javascripts/localization/messages_it.js +26 -0
  725. data/lib/generators/templates/public/javascripts/localization/messages_kk.js +23 -0
  726. data/lib/generators/templates/public/javascripts/localization/messages_nl.js +23 -0
  727. data/lib/generators/templates/public/javascripts/localization/messages_no.js +23 -0
  728. data/lib/generators/templates/public/javascripts/localization/messages_pl.js +23 -0
  729. data/lib/generators/templates/public/javascripts/localization/messages_ptbr.js +30 -0
  730. data/lib/generators/templates/public/javascripts/localization/messages_ro.js +24 -0
  731. data/lib/generators/templates/public/javascripts/localization/messages_ru.js +23 -0
  732. data/lib/generators/templates/public/javascripts/localization/messages_se.js +23 -0
  733. data/lib/generators/templates/public/javascripts/localization/messages_sk.js +21 -0
  734. data/lib/generators/templates/public/javascripts/localization/messages_tr.js +24 -0
  735. data/lib/generators/templates/public/javascripts/localization/messages_tw.js +24 -0
  736. data/lib/generators/templates/public/javascripts/localization/messages_ua.js +24 -0
  737. data/lib/generators/templates/public/javascripts/nested-attribute.js +26 -0
  738. data/lib/generators/templates/public/javascripts/open_id.js +15 -0
  739. data/lib/generators/templates/public/javascripts/product.js +49 -0
  740. data/lib/generators/templates/public/javascripts/rails.js +127 -0
  741. data/lib/generators/templates/public/javascripts/taxonomy.js +196 -0
  742. data/lib/generators/templates/public/javascripts/zone.js +40 -0
  743. data/lib/generators/templates/public/stylesheets/admin/admin-forms.css +159 -0
  744. data/lib/generators/templates/public/stylesheets/admin/admin-reset.css +67 -0
  745. data/lib/generators/templates/public/stylesheets/admin/admin-tables.css +39 -0
  746. data/lib/generators/templates/public/stylesheets/admin/admin-typography.css +117 -0
  747. data/lib/generators/templates/public/stylesheets/admin/admin.css +576 -0
  748. data/lib/generators/templates/public/stylesheets/admin/autocomplete.css +74 -0
  749. data/lib/generators/templates/public/stylesheets/admin/dashboard.css +143 -0
  750. data/lib/generators/templates/public/stylesheets/admin/edit_checkouts.css +57 -0
  751. data/lib/generators/templates/public/stylesheets/admin/grids.css +314 -0
  752. data/lib/generators/templates/public/stylesheets/admin/reset-fonts-grids-2-6-0.css +7 -0
  753. data/lib/generators/templates/public/stylesheets/admin/token-input.css +109 -0
  754. data/lib/generators/templates/public/stylesheets/admin/yui-includes.css +14 -0
  755. data/lib/generators/templates/public/stylesheets/datepicker.css +263 -0
  756. data/lib/generators/templates/public/stylesheets/jquery.autocomplete.css +48 -0
  757. data/lib/generators/templates/public/stylesheets/scaffold.css +54 -0
  758. data/lib/generators/templates/public/stylesheets/screen.css +1195 -0
  759. data/lib/generators/templates/spree_site.rb +8 -0
  760. data/lib/product_filters.rb +174 -0
  761. data/lib/redirect_legacy_product_url.rb +13 -0
  762. data/lib/scopes/dynamic.rb +38 -0
  763. data/lib/scopes/product.rb +242 -0
  764. data/lib/scopes/variant.rb +17 -0
  765. data/lib/scopes.rb +69 -0
  766. data/lib/seo_assist.rb +38 -0
  767. data/lib/spree/calculated_adjustments.rb +66 -0
  768. data/lib/spree/config.rb +31 -0
  769. data/lib/spree/current_order.rb +14 -0
  770. data/lib/spree/file_utilz.rb +73 -0
  771. data/lib/spree/gateway_error.rb +3 -0
  772. data/lib/spree/preference_access.rb +27 -0
  773. data/lib/spree/search/base.rb +21 -0
  774. data/lib/spree/search.rb +47 -0
  775. data/lib/spree_core/delegate_belongs_to.rb +95 -0
  776. data/lib/spree_core/enumerable_constants.rb +209 -0
  777. data/lib/spree_core/ext/active_record.rb +13 -0
  778. data/lib/spree_core/ext/array.rb +14 -0
  779. data/lib/spree_core/ext/string.rb +10 -0
  780. data/lib/spree_core/find_by_param.rb +117 -0
  781. data/lib/spree_core/preferences/mail_settings.rb +57 -0
  782. data/lib/spree_core/preferences/model_hooks.rb +293 -0
  783. data/lib/spree_core/preferences/preference_definition.rb +53 -0
  784. data/lib/spree_core/ssl_requirement.rb +109 -0
  785. data/lib/spree_core/theme_support/hook.rb +51 -0
  786. data/lib/spree_core/theme_support/hook_listener.rb +68 -0
  787. data/lib/spree_core/theme_support/hook_modifier.rb +35 -0
  788. data/lib/spree_core/theme_support/more_patches.rb +118 -0
  789. data/lib/spree_core/theme_support.rb +4 -0
  790. data/lib/spree_core/validation_group.rb +143 -0
  791. data/lib/spree_core.rb +144 -0
  792. data/lib/store_helpers.rb +10 -0
  793. data/lib/tasks/core.rake +112 -0
  794. data/lib/tasks/themes.rake +34 -0
  795. metadata +1027 -0
@@ -0,0 +1,8 @@
1
+ module SpreeSite
2
+ class Engine < Rails::Engine
3
+ def self.activate
4
+ # Add your custom site logic here
5
+ end
6
+ config.to_prepare &method(:activate).to_proc
7
+ end
8
+ end
@@ -0,0 +1,174 @@
1
+ # THIS FILE SHOULD BE OVER-RIDDEN IN YOUR SITE EXTENSION!
2
+ # the exact code probably won't be useful, though you're welcome to modify and reuse
3
+ # the current contents are mainly for testing and documentation
4
+
5
+ # set up some basic filters for use with products
6
+ #
7
+ # Each filter has two parts
8
+ # * a parametrized named scope which expects a list of labels
9
+ # * an object which describes/defines the filter
10
+ #
11
+ # The filter description has three components
12
+ # * a name, for displaying on pages
13
+ # * a named scope which will 'execute' the filter
14
+ # * a mapping of presentation labels to the relevant condition (in the context of the named scope)
15
+ # * an optional list of labels and values (for use with object selection - see taxons examples below)
16
+ #
17
+ # The named scopes here have a suffix '_any', following SearchLogic's convention for a
18
+ # scope which returns results which match any of the inputs. This is purely a convention,
19
+ # but might be a useful reminder.
20
+ #
21
+ # When creating a form, the name of the checkbox group for a filter F should be
22
+ # the name of F's scope with [] appended, eg "price_range_any[]", and for
23
+ # each label you should have a checkbox with the label as its value. On submission,
24
+ # Rails will send the action a hash containing (among other things) an array named
25
+ # after the scope whose values are the active labels.
26
+ #
27
+ # SearchLogic will then convert this array to a call to the named scope with the array
28
+ # contents, and the named scope will build a query with the disjunction of the conditions
29
+ # relating to the labels, all relative to the scope's context.
30
+ #
31
+ # The details of how/when filters are used is a detail for specific models (eg products
32
+ # or taxons), eg see the taxon model/controller.
33
+
34
+ # See specific filters below for concrete examples.
35
+
36
+
37
+ module ProductFilters
38
+
39
+ # Example: filtering by price
40
+ # The named scope just maps incoming labels onto their conditions, and builds the conjunction
41
+ # 'price' is in the base scope's context (ie, "select foo from products where ...") so
42
+ # we can access the field right away
43
+ # The filter identifies which scope to use, then sets the conditions for each price range
44
+ #
45
+ Product.scope :price_range_any,
46
+ lambda {|opts|
47
+ conds = opts.map {|o| ProductFilters.price_filter[:conds][o]}.reject {|c| c.nil?}
48
+ Product.scoped(:joins => :master).conditions_any(conds).scope :find
49
+ }
50
+
51
+ def ProductFilters.price_filter
52
+ conds = [ [ "Under $10", "price <= 10" ],
53
+ [ "$10 - $15", "price between 10 and 15" ],
54
+ [ "$15 - $18", "price between 15 and 18" ],
55
+ [ "$18 - $20", "price between 18 and 20" ],
56
+ [ "$20 or over", "price >= 20" ] ]
57
+ { :name => "Price Range",
58
+ :scope => :price_range_any,
59
+ :conds => Hash[*conds.flatten],
60
+ :labels => conds.map {|k,v| [k,k]}
61
+ }
62
+ end
63
+
64
+
65
+ # Example: filtering by possible brands
66
+ #
67
+ # First, we define the scope. Two interesting points here: (a) we run our conditions
68
+ # in the scope where the info for the 'brand' property has been loaded; and (b)
69
+ # because we may want to filter by other properties too, we give this part of the
70
+ # query a unique name (which must be used in the associated conditions too).
71
+ #
72
+ # Secondly, the filter. Instead of a static list of values, we pull out all existing
73
+ # brands from the db, and then build conditions which test for string equality on
74
+ # the (uniquely named) field "p_brand.value". There's also a test for brand info
75
+ # being blank: note that this relies on with_property doing a left outer join
76
+ # rather than an inner join.
77
+
78
+ if Property.table_exists? && @@brand_property = Property.find_by_name("brand")
79
+ Product.scope :brand_any,
80
+ lambda {|opts|
81
+ conds = opts.map {|o| ProductFilters.brand_filter[:conds][o]}.reject {|c| c.nil?}
82
+ Product.with_property(@@brand_property, "p_brand").conditions_any(conds).scope(:find)
83
+ }
84
+
85
+ def ProductFilters.brand_filter
86
+ brands = ProductProperty.find_all_by_property_id(@@brand_property).map(&:value).uniq
87
+ conds = Hash[*brands.map {|b| [b, "p_brand.value = '#{b}'"]}.flatten]
88
+ conds["No brand"] = "p_brand.value is NULL"
89
+ { :name => "All Brands",
90
+ :scope => :brand_any,
91
+ :conds => conds,
92
+ :labels => (brands.sort + ["No brand"]).map {|k| [k,k]}
93
+ }
94
+ end
95
+ end
96
+
97
+ # Example: a parametrized filter
98
+ # The filter above may show brands which aren't applicable to the current taxon,
99
+ # so this one only shows the brands that are relevant to a particular taxon and
100
+ # its descendents.
101
+ #
102
+ # We don't have to give a new scope since the conditions here are a subset of the
103
+ # more general filter, so decoding will still work - as long as the filters on a
104
+ # page all have unique names (ie, you can't use the two brand filters together
105
+ # if they use the same scope). To be safe, the code uses a copy of the scope.
106
+ #
107
+ # HOWEVER: what happens if we want a more precise scope? we can't pass
108
+ # parametrized scope names to SearchLogic, only atomic names, so couldn't ask
109
+ # for taxon T's customized filter to be used. BUT: we can arrange for the form
110
+ # to pass back a hash instead of an array, where the key acts as the (taxon)
111
+ # parameter and value is its label array, and then get a modified named scope
112
+ # to get its conditions from a particular filter.
113
+ #
114
+ # The brand-finding code can be simplified if a few more named scopes were added to
115
+ # the product properties model.
116
+
117
+ if Property.table_exists? && @@brand_property
118
+ Product.scope :selective_brand_any, lambda {|opts| Product.brand_any(opts).scope(:find) }
119
+
120
+ def ProductFilters.selective_brand_filter(taxon = nil)
121
+ if taxon.nil?
122
+ taxon = Taxonomy.first.root
123
+ end
124
+ all_brands = ProductProperty.find_all_by_property_id(@@brand_property).map(&:value).uniq
125
+ scope = ProductProperty.scoped(:conditions => ["property_id = ?", @@brand_property]).
126
+ scoped(:joins => {:product => :taxons},
127
+ :conditions => ["taxons.id in (?)", [taxon] + taxon.descendents])
128
+ brands = scope.map {|p| p.value}
129
+
130
+ { :name => "Applicable Brands",
131
+ :scope => :selective_brand_any,
132
+ :conds => Hash[*all_brands.map {|m| [m, "p_colour.value like '%#{m}%'"]}.flatten],
133
+ :labels => brands.sort.map {|k| [k,k]}
134
+ }
135
+ end
136
+ end
137
+
138
+
139
+ # Provide filtering on the immediate children of a taxon
140
+ #
141
+ # This doesn't fit the pattern of the examples above, so there's a few changes.
142
+ # Firstly, it uses an existing scope which was not built for filtering - and so
143
+ # has no need of a conditions mapping, and secondly, it has a mapping of name
144
+ # to the argument type expected by the other scope.
145
+ #
146
+ # This technique is useful for filtering on objects (by passing ids) or with a
147
+ # scope that can be used directly (eg. testing only ever on a single property).
148
+ #
149
+ # This scope selects products in any of the active taxons or their children.
150
+ #
151
+ def ProductFilters.taxons_below(taxon)
152
+ return ProductFilters.all_taxons if taxon.nil?
153
+ { :name => "Taxons under " + taxon.name,
154
+ :scope => :taxons_id_in_tree_any,
155
+ :labels => taxon.children.sort_by(&:position).map {|t| [t.name, t.id]},
156
+ :conds => nil
157
+ }
158
+ end
159
+
160
+ # Filtering by the list of all taxons
161
+ #
162
+ # Similar idea as above, but we don't want the descendents' products, hence
163
+ # it uses one of the auto-generated scopes from SearchLogic.
164
+ #
165
+ # idea: expand the format to allow nesting of labels?
166
+ def ProductFilters.all_taxons
167
+ taxons = Taxonomy.all.map {|t| [t.root] + t.root.descendents }.flatten
168
+ { :name => "All taxons",
169
+ :scope => :taxons_id_equals_any,
170
+ :labels => taxons.sort_by(&:name).map {|t| [t.name, t.id]},
171
+ :conds => nil # not needed
172
+ }
173
+ end
174
+ end
@@ -0,0 +1,13 @@
1
+ class RedirectLegacyProductUrl
2
+ def initialize(app)
3
+ @app = app
4
+ end
5
+
6
+ def call(env)
7
+ if env["PATH_INFO"] =~ %r{/t/.+/p/(.+)}
8
+ return [301, {'Location'=> "/products/#{$1}" }, []]
9
+ end
10
+ @app.call(env)
11
+ end
12
+
13
+ end
@@ -0,0 +1,38 @@
1
+ module Scopes::Dynamic
2
+ module_function
3
+
4
+ # Sample dynamic scope generating from set of products
5
+ # generates 0 or (2..scope_limit) scopes for prices, based
6
+ # on number of products (uses Math.log, to guess number of scopes)
7
+ def price_scopes_for(products, scope_limit=5)
8
+ scopes = []
9
+
10
+ # Price based scopes
11
+ all_prices = products.map(&:price).sort
12
+ ranges = [Math.log(products.length).floor, scope_limit].max
13
+ if ranges >= 2
14
+ l = all_prices.length / ranges
15
+ scopes << ProductScope.new({
16
+ :name => "master_price_lte",
17
+ :arguments => [all_prices[l]]
18
+ })
19
+ (ranges - 2).times do |x|
20
+ scopes << ProductScope.new({
21
+ :name => "price_between",
22
+ :arguments => [
23
+ all_prices[l*(x+1)+1],
24
+ all_prices[l*(x+2)]
25
+ ]
26
+ })
27
+ end
28
+ scopes << ProductScope.new({
29
+ :name => "master_price_gte",
30
+ :arguments => [all_prices[l*(ranges-1)+1]]
31
+ })
32
+ end
33
+
34
+ scopes
35
+ end
36
+
37
+
38
+ end
@@ -0,0 +1,242 @@
1
+ module Scopes::Product
2
+ #TODO: change this to array pairs so we preserve order?
3
+
4
+ SCOPES = {
5
+ # Scopes for selecting products based on taxon
6
+ :taxon => {
7
+ :taxons_name_eq => [:taxon_name],
8
+ :in_taxons => [:taxon_names],
9
+ },
10
+ # product selection based on name, or search
11
+ :search => {
12
+ :in_name => [:words],
13
+ :in_name_or_keywords => [:words],
14
+ :in_name_or_description => [:words],
15
+ :with_ids => [:ids]
16
+ },
17
+ # Scopes for selecting products based on option types and properties
18
+ :values => {
19
+ :with => [:value],
20
+ :with_property => [:property],
21
+ :with_property_value => [:property, :value],
22
+ :with_option => [:option],
23
+ :with_option_value => [:option, :value],
24
+ },
25
+ # product selection based upon master price
26
+ :price => {
27
+ :price_between => [:low, :high],
28
+ :master_price_lte => [:amount],
29
+ :master_price_gte => [:amount],
30
+ },
31
+ }
32
+
33
+ ORDERING = [
34
+ :ascend_by_updated_at,
35
+ :descend_by_updated_at,
36
+ :ascend_by_name,
37
+ :descend_by_name,
38
+ :ascend_by_master_price,
39
+ :descend_by_master_price,
40
+ :descend_by_popularity,
41
+ ]
42
+
43
+ ATTRIBUTE_HELPER_METHODS = {
44
+ :with_ids => :product_picker_field
45
+ }
46
+
47
+ #RAILS3 TODO - scopes are duplicated here and in model/product.rb - can we DRY it up?
48
+ # default product scope only lists available and non-deleted products
49
+ # ::Product.scope :not_deleted, lambda { where("products.deleted_at is null") }
50
+ # ::Product.scope :available, lambda { |*args|
51
+ # where("products.available_on <= ?", args.first || Time.zone.now)
52
+ # }
53
+ # ::Product.scope :active, lambda { |*args|
54
+ # Product.not_deleted.available(args.first).scope(:find)
55
+ # }
56
+
57
+ ::Product.scope :keywords, lambda{|query|
58
+ return {} if query.blank?
59
+ Spree::Config.searcher.get_products_conditions_for(query)
60
+ }
61
+
62
+ ::Product.scope :price_between, lambda {|low,high|
63
+ { :joins => :master, :conditions => ["variants.price BETWEEN ? AND ?", low, high] }
64
+ }
65
+
66
+ # This scope selects products in taxon AND all its descendants
67
+ # If you need products only within one taxon use
68
+ #
69
+ # Product.taxons_id_eq(x)
70
+ #
71
+ ::Product.scope :in_taxon, lambda {|taxon|
72
+ { :joins => :taxons, :conditions => ["taxons.id IN (?) ", taxon.self_and_descendants.map(&:id)]}
73
+ }
74
+
75
+ # This scope selects products in all taxons AND all its descendants
76
+ # If you need products only within one taxon use
77
+ #
78
+ # Product.taxons_id_eq([x,y])
79
+ #
80
+ Product.scope :in_taxons, lambda {|*taxons|
81
+ taxons = get_taxons(taxons)
82
+ taxons.first ? prepare_taxon_conditions(taxons) : {}
83
+ }
84
+
85
+ # for quick access to products in a group, WITHOUT using the association mechanism
86
+ Product.scope :in_cached_group, lambda {|product_group|
87
+ { :joins => "JOIN product_groups_products ON products.id = product_groups_products.product_id",
88
+ :conditions => ["product_groups_products.product_group_id = ?", product_group]
89
+ }
90
+ }
91
+
92
+
93
+ # a scope that finds all products having property specified by name, object or id
94
+ Product.scope :with_property, lambda {|property|
95
+ conditions = case property
96
+ when String then ["properties.name = ?", property]
97
+ when Property then ["properties.id = ?", property.id]
98
+ else ["properties.id = ?", property.to_i]
99
+ end
100
+
101
+ {
102
+ :joins => :properties,
103
+ :conditions => conditions
104
+ }
105
+ }
106
+
107
+ # a scope that finds all products having an option_type specified by name, object or id
108
+ Product.scope :with_option, lambda {|option|
109
+ conditions = case option
110
+ when String then ["option_types.name = ?", option]
111
+ when OptionType then ["option_types.id = ?", option.id]
112
+ else ["option_types.id = ?", option.to_i]
113
+ end
114
+
115
+ {
116
+ :joins => :option_types,
117
+ :conditions => conditions
118
+ }
119
+ }
120
+
121
+ # a simple test for product with a certain property-value pairing
122
+ # note that it can test for properties with NULL values, but not for absent values
123
+ Product.scope :with_property_value, lambda { |property, value|
124
+ conditions = case property
125
+ when String then ["properties.name = ?", property]
126
+ when Property then ["properties.id = ?", property.id]
127
+ else ["properties.id = ?", property.to_i]
128
+ end
129
+ conditions = ["product_properties.value = ? AND #{conditions[0]}", value, conditions[1]]
130
+
131
+ {
132
+ :joins => :properties,
133
+ :conditions => conditions
134
+ }
135
+ }
136
+
137
+ # a scope that finds all products having an option value specified by name, object or id
138
+ Product.scope :with_option_value, lambda {|option, value|
139
+ option_type_id = case option
140
+ when String
141
+ option_type = OptionType.find_by_name(option) || option.to_i
142
+ when OptionType
143
+ option.id
144
+ else
145
+ option.to_i
146
+ end
147
+ conditions = [
148
+ "option_values.name = ? AND option_values.option_type_id = ?",
149
+ value, option_type_id
150
+ ]
151
+
152
+ {
153
+ :joins => {:variants => :option_values},
154
+ :conditions => conditions
155
+ }
156
+ }
157
+
158
+ # finds product having option value OR product_property
159
+ Product.scope :with, lambda{|value|
160
+ {
161
+ :conditions => ["option_values.name = ? OR product_properties.value = ?", value, value],
162
+ :joins => {:variants => :option_values, :product_properties => []}
163
+ }
164
+ }
165
+
166
+ Product.scope :in_name, lambda{|words|
167
+ Product.like_any([:name], prepare_words(words))
168
+ }
169
+
170
+ Product.scope :in_name_or_keywords, lambda{|words|
171
+ Product.like_any([:name, :meta_keywords], prepare_words(words))
172
+ }
173
+
174
+ Product.scope :in_name_or_description, lambda{|words|
175
+ Product.like_any([:name, :description, :meta_description, :meta_keywords], prepare_words(words))
176
+ }
177
+
178
+ Product.scope :with_ids, lambda{|ids|
179
+ ids = ids.split(',') if ids.is_a?(String)
180
+ { :conditions => {:id => ids} }
181
+ }
182
+
183
+ # Sorts products from most popular (poularity is extracted from how many
184
+ # times use has put product in cart, not completed orders)
185
+ #
186
+ # there is alternative faster and more elegant solution, it has small drawback though,
187
+ # it doesn stack with other scopes :/
188
+ #
189
+ Product.scope :descend_by_popularity, lambda{
190
+ # :joins => "LEFT OUTER JOIN (SELECT line_items.variant_id as vid, COUNT(*) as cnt FROM line_items GROUP BY line_items.variant_id) AS popularity_count ON variants.id = vid",
191
+ # :order => 'COALESCE(cnt, 0) DESC'
192
+ {
193
+ :joins => :master,
194
+ :order => <<SQL
195
+ COALESCE((
196
+ SELECT
197
+ COUNT(line_items.id)
198
+ FROM
199
+ line_items
200
+ JOIN
201
+ variants as popular_variants
202
+ ON
203
+ popular_variants.id = line_items.variant_id
204
+ WHERE
205
+ popular_variants.product_id = products.id
206
+ ), 0) DESC
207
+ SQL
208
+ }
209
+ }
210
+
211
+ # Produce an array of keywords for use in scopes. Always return array with at least an empty string to avoid SQL errors
212
+ def self.prepare_words(words)
213
+ a = words.split(/[,\s]/).map(&:strip)
214
+ a.any? ? a : ['']
215
+ end
216
+
217
+ def self.arguments_for_scope_name(name)
218
+ if group = Scopes::Product::SCOPES.detect{|k,v| v[name.to_sym]}
219
+ group[1][name.to_sym]
220
+ end
221
+ end
222
+
223
+ def self.get_taxons(*ids_or_records_or_names)
224
+ ids_or_records_or_names.flatten.map { |t|
225
+ case t
226
+ when Integer then Taxon.find_by_id(t)
227
+ when ActiveRecord::Base then t
228
+ when String
229
+ Taxon.find_by_name(t) ||
230
+ Taxon.find(:first, :conditions => [
231
+ "taxons.permalink LIKE ? OR taxons.permalink = ?", "%/#{t}/", "#{t}/"
232
+ ])
233
+ end
234
+ }.compact.uniq
235
+ end
236
+
237
+ # specifically avoid having an order for taxon search (conflicts with main order)
238
+ def self.prepare_taxon_conditions(taxons)
239
+ ids = taxons.map{|taxon| taxon.self_and_descendants.map(&:id)}.flatten.uniq
240
+ { :joins => :taxons, :conditions => ["taxons.id IN (?)", ids] }
241
+ end
242
+ end
@@ -0,0 +1,17 @@
1
+ module Scopes::Variant
2
+ # WARNING tested only under sqlite and postgresql
3
+ Variant.scope :descend_by_popularity, lambda{
4
+ order('COALESCE((SELECT COUNT(*) FROM line_items GROUP BY line_items.variant_id HAVING line_items.variant_id = variants.id), 0) DESC')
5
+ }
6
+
7
+ # for selecting variants with an option value
8
+ # no option type given since the value implies an option type
9
+ # this scope can be chained repeatedly, since the join name is unique
10
+ Variant.scope :has_option, lambda {|opt|
11
+ tbl = 'o' + Time.now.to_i.to_s + Time.now.usec.to_s
12
+ { :joins => "inner join option_values_variants as #{tbl} on variants.id = #{tbl}.variant_id",
13
+ :conditions => ["#{tbl}.option_value_id = (?)", opt]
14
+ }
15
+ }
16
+
17
+ end
data/lib/scopes.rb ADDED
@@ -0,0 +1,69 @@
1
+ # This module contains all custom scopes created for selecting products.
2
+ #
3
+ # All usable scopes *should* be included in SCOPES constant, it represents
4
+ # all scopes that are selectable from user interface, extensions can extend
5
+ # and modify it, but should provide corresponding translations.
6
+ #
7
+ # Format of constant is following:
8
+ #
9
+ # {
10
+ # :namespace/grouping => {
11
+ # :name_of_the_scope => [:list, :of, :arguments]
12
+ # }
13
+ # }
14
+ #
15
+ # This values are used in translation file, to describe them in the interface.
16
+ # So for each scope you define here you have to provide following entry in translation file
17
+ # product_scopes:
18
+ # name_of_the_group:
19
+ # name: Translated name of the group
20
+ # description: Longer description of what this scope group does, inluding
21
+ # any possible help user may need
22
+ # scopes:
23
+ # name_of_the_scope:
24
+ # name: Short name of the scope
25
+ # description: What does this scope does exactly
26
+ # arguments:
27
+ # arg1: Description of argument
28
+ # arg2: Description of second Argument
29
+ #
30
+ module Scopes
31
+ module_function
32
+
33
+ def generate_translation(all_scopes)
34
+ result = {"groups" => {}, "scopes" => {}}
35
+ all_scopes.dup.each_pair do |group_name, scopes|
36
+ result["groups"][group_name.to_s] = {
37
+ 'name' => group_name.to_s.humanize,
38
+ 'description' => "Scopes for selecting products based on #{group_name.to_s}",
39
+ }
40
+
41
+ scopes.each_pair do |scope_name, targs|
42
+ hashed_args = {}
43
+ targs.each{|v| hashed_args[v.to_s] = v.to_s.humanize}
44
+
45
+ result['scopes'][scope_name.to_s] = {
46
+ 'name' => scope_name.to_s.humanize,
47
+ 'description' => "",
48
+ 'args' => hashed_args.dup
49
+ }
50
+ end
51
+ end
52
+
53
+ result
54
+ end
55
+
56
+ def generate_translations
57
+ require 'ya2yaml'
58
+ {
59
+ 'product_scopes' => generate_translation(Scopes::Product::SCOPES)
60
+ }.ya2yaml
61
+ end
62
+ end
63
+
64
+ # Rails 3 TODO
65
+ # ActiveRecord::NamedScope::Scope.class_eval do
66
+ # def to_sql
67
+ # construct_finder_sql({})
68
+ # end
69
+ # end
data/lib/seo_assist.rb ADDED
@@ -0,0 +1,38 @@
1
+ # Make redirects for SEO needs
2
+ class SeoAssist
3
+ def initialize(app)
4
+ @app = app
5
+ end
6
+
7
+ def call(env)
8
+ request = Rack::Request.new(env)
9
+ params = request.params
10
+ taxon_id = params['taxon']
11
+ if !taxon_id.blank? && !taxon_id.is_a?(Hash) && @taxon = Taxon.find(taxon_id)
12
+ params.delete('taxon')
13
+ query = build_query(params)
14
+ permalink = @taxon.permalink[0...-1] #ensures no trailing / for taxon urls
15
+ return [301, { 'Location'=> "/t/#{permalink}?#{query}" }, []]
16
+ elsif env["PATH_INFO"] =~ /^\/(t|products)(\/\S+)?\/$/
17
+ #ensures no trailing / for taxon and product urls
18
+ query = build_query(params)
19
+ new_location = env["PATH_INFO"][0...-1]
20
+ new_location += '?' + query unless query.blank?
21
+ return [301, { 'Location'=> new_location }, []]
22
+ end
23
+ @app.call(env)
24
+ end
25
+
26
+ private
27
+
28
+ def build_query(params)
29
+ params.map { |k, v|
30
+ if v.class == Array
31
+ build_query(v.map { |x| ["#{k}[]", x] })
32
+ else
33
+ k + "=" + Rack::Utils.escape(v)
34
+ end
35
+ }.join("&")
36
+ end
37
+
38
+ end
@@ -0,0 +1,66 @@
1
+ module Spree::CalculatedAdjustments
2
+ module ClassMethods
3
+ def calculated_adjustments(options = {})
4
+ has_one :calculator, :as => :calculable, :dependent => :destroy
5
+ accepts_nested_attributes_for :calculator
6
+ validates :calculator, :presence => true if options[:require]
7
+
8
+ class_inheritable_accessor :calculators
9
+ self.calculators = Set.new
10
+ # @available_calculators = []
11
+ def register_calculator(calculator)
12
+ self.calculators.add(calculator)
13
+ end
14
+ # def calculators
15
+ # @available_calculators
16
+ # end
17
+
18
+ if options[:default]
19
+ default_calculator_class = options[:default]
20
+ #if default_calculator_class.available?(self.new)
21
+ before_create :default_calculator
22
+ define_method(:default_calculator) do
23
+ self.calculator ||= default_calculator_class.new
24
+ end
25
+ # else
26
+ # raise(ArgumentError, "calculator #{default_calculator_class} can't be used with #{self}")
27
+ # end
28
+ else
29
+ define_method(:default_calculator) do
30
+ nil
31
+ end
32
+ end
33
+
34
+ include InstanceMethods
35
+ end
36
+ end
37
+
38
+ module InstanceMethods
39
+ def calculator_type
40
+ calculator.class.to_s if calculator
41
+ end
42
+
43
+ def calculator_type=(calculator_type)
44
+ clazz = calculator_type.constantize if calculator_type
45
+ self.calculator = clazz.new if clazz and not self.calculator.is_a? clazz
46
+ end
47
+
48
+ # Creates a new adjustment for the target object (which is any class that has_many :adjustments) and
49
+ # sets amount based on the calculator as applied to the calculable argument (Order, LineItems[], Shipment, etc.)
50
+ # By default the adjustment will not be considered mandatory
51
+ def create_adjustment(label, target, calculable, mandatory=false)
52
+ amount = self.calculator.compute(calculable)
53
+ target.adjustments.create(:amount => amount, :source => calculable, :originator => self, :label => label, :mandatory => mandatory)
54
+ end
55
+
56
+ # Updates the amount of the adjustment using our Calculator and calling the +compute+ method with the +calculable+
57
+ # referenced passed to the method.
58
+ def update_adjustment(adjustment, calculable)
59
+ adjustment.update_attribute_without_callbacks(:amount, self.calculator.compute(calculable))
60
+ end
61
+ end
62
+
63
+ def self.included(receiver)
64
+ receiver.extend Spree::CalculatedAdjustments::ClassMethods
65
+ end
66
+ end