spree 0.0.9 → 0.2.0

Sign up to get free protection for your applications and to get access to all the features.

Potentially problematic release.


This version of spree might be problematic. Click here for more details.

Files changed (1006) hide show
  1. data/CHANGELOG +6 -0
  2. data/README.markdown +88 -0
  3. data/app/controllers/account_controller.rb +1 -4
  4. data/app/controllers/admin/base_controller.rb +1 -2
  5. data/app/controllers/admin/categories_controller.rb +1 -25
  6. data/app/controllers/admin/extensions_controller.rb +5 -0
  7. data/app/controllers/admin/inventory_units_controller.rb +1 -2
  8. data/app/controllers/admin/orders_controller.rb +0 -1
  9. data/app/controllers/admin/products_controller.rb +9 -19
  10. data/app/controllers/admin/reports_controller.rb +0 -1
  11. data/app/controllers/application.rb +2 -1
  12. data/app/controllers/checkout_controller.rb +11 -18
  13. data/app/controllers/spree/base_controller.rb +1 -16
  14. data/app/controllers/users_controller.rb +14 -0
  15. data/app/helpers/admin/extensions_helper.rb +2 -0
  16. data/app/helpers/application_helper.rb +13 -0
  17. data/app/helpers/spree/base_helper.rb +0 -13
  18. data/app/helpers/store_helper.rb +20 -1
  19. data/app/helpers/users_helper.rb +2 -0
  20. data/app/models/address.rb +1 -0
  21. data/app/models/cart_item.rb +1 -1
  22. data/app/models/category.rb +0 -28
  23. data/app/models/order.rb +13 -0
  24. data/app/models/product.rb +2 -30
  25. data/app/models/spree/extension_meta.rb +5 -0
  26. data/app/models/user.rb +37 -3
  27. data/app/models/variant.rb +14 -0
  28. data/app/views/admin/categories/_form.rhtml +0 -10
  29. data/app/views/admin/extensions/index.html.erb +23 -0
  30. data/app/views/admin/products/_form.rhtml +3 -14
  31. data/app/views/admin/products/_variants.rhtml +2 -0
  32. data/app/views/admin/products/index.rhtml +4 -3
  33. data/app/views/layouts/admin.rhtml +6 -5
  34. data/app/views/layouts/application.rhtml +20 -6
  35. data/app/views/store/list.rhtml +2 -4
  36. data/app/views/store/show.rhtml +4 -2
  37. data/app/views/{admin/users/_form.rhtml → users/_form.html.erb} +1 -8
  38. data/app/views/users/edit.html.erb +9 -0
  39. data/app/views/users/index.html.erb +21 -0
  40. data/app/views/users/new.html.erb +11 -0
  41. data/app/views/users/show.html.erb +11 -0
  42. data/config/database.yml +12 -12
  43. data/config/database.yml.example +13 -0
  44. data/config/environment.rb +1 -32
  45. data/config/routes.rb +3 -0
  46. data/db/development_structure.sql +81 -54
  47. data/db/migrate/001_create_addresses.rb +3 -3
  48. data/db/migrate/009_create_products.rb +1 -1
  49. data/db/migrate/011_create_variants.rb +1 -0
  50. data/db/migrate/012_create_tax_treatments.rb +4 -3
  51. data/db/migrate/024_create_extension_meta.rb +13 -0
  52. data/db/migrate/025_drop_tax_treatments.rb +11 -0
  53. data/db/migrate/026_add_user_to_address.rb +9 -0
  54. data/db/sample/addresses.yml +2 -1
  55. data/db/sample/products.yml +7 -7
  56. data/db/sample/users.yml +2 -3
  57. data/db/sample/variants.yml +16 -3
  58. data/foozah/CHANGELOG +47 -0
  59. data/foozah/CONTRIBUTORS +27 -0
  60. data/foozah/INSTALL +27 -0
  61. data/{vendor/extensions/bogus_gateway → foozah}/LICENSE +0 -0
  62. data/foozah/README +0 -0
  63. data/foozah/README.markdown +88 -0
  64. data/foozah/Rakefile +3 -0
  65. data/foozah/config/boot.rb +148 -0
  66. data/foozah/config/database.yml +16 -0
  67. data/foozah/config/environment.rb +106 -0
  68. data/foozah/config/environments/development.rb +24 -0
  69. data/foozah/config/environments/production.rb +21 -0
  70. data/foozah/config/environments/test.rb +19 -0
  71. data/foozah/config/routes.rb +1 -0
  72. data/foozah/db/development.sqlite3.db +0 -0
  73. data/foozah/public/404.html +30 -0
  74. data/foozah/public/500.html +30 -0
  75. data/foozah/public/dispatch.cgi +10 -0
  76. data/foozah/public/dispatch.fcgi +24 -0
  77. data/foozah/public/dispatch.rb +10 -0
  78. data/foozah/public/favicon.ico +0 -0
  79. data/foozah/public/images/amex_cid.gif +0 -0
  80. data/foozah/public/images/calendar_date_select/calendar.gif +0 -0
  81. data/foozah/public/images/creditcard.gif +0 -0
  82. data/foozah/public/images/discover_cid.gif +0 -0
  83. data/foozah/public/images/master_cid.jpg +0 -0
  84. data/foozah/public/images/rails.png +0 -0
  85. data/foozah/public/images/spinner.gif +0 -0
  86. data/foozah/public/images/spree.jpg +0 -0
  87. data/foozah/public/images/spree/progress.gif +0 -0
  88. data/foozah/public/images/spree/spinner.gif +0 -0
  89. data/foozah/public/images/spree/spree.jpg +0 -0
  90. data/foozah/public/images/visa_cid.gif +0 -0
  91. data/foozah/public/javascripts/application.js +2 -0
  92. data/foozah/public/javascripts/calendar_date_select/calendar_date_select.js +439 -0
  93. data/foozah/public/javascripts/calendar_date_select/format_american.js +34 -0
  94. data/foozah/public/javascripts/calendar_date_select/format_euro_24hr.js +7 -0
  95. data/foozah/public/javascripts/calendar_date_select/format_finnish.js +24 -0
  96. data/foozah/public/javascripts/calendar_date_select/format_hyphen_ampm.js +36 -0
  97. data/foozah/public/javascripts/calendar_date_select/format_italian.js +24 -0
  98. data/foozah/public/javascripts/controls.js +833 -0
  99. data/foozah/public/javascripts/dragdrop.js +942 -0
  100. data/foozah/public/javascripts/effects.js +1088 -0
  101. data/foozah/public/javascripts/prototype.js +4184 -0
  102. data/foozah/public/plugin_assets/README +5 -0
  103. data/foozah/public/plugin_assets/calendar_date_select/images/calendar_date_select/calendar.gif +0 -0
  104. data/foozah/public/plugin_assets/calendar_date_select/javascripts/calendar_date_select/calendar_date_select.js +439 -0
  105. data/foozah/public/plugin_assets/calendar_date_select/javascripts/calendar_date_select/format_american.js +34 -0
  106. data/foozah/public/plugin_assets/calendar_date_select/javascripts/calendar_date_select/format_euro_24hr.js +7 -0
  107. data/foozah/public/plugin_assets/calendar_date_select/javascripts/calendar_date_select/format_finnish.js +24 -0
  108. data/foozah/public/plugin_assets/calendar_date_select/javascripts/calendar_date_select/format_hyphen_ampm.js +36 -0
  109. data/foozah/public/plugin_assets/calendar_date_select/javascripts/calendar_date_select/format_italian.js +24 -0
  110. data/foozah/public/plugin_assets/calendar_date_select/javascripts/calendar_date_select/locale/fi.js +10 -0
  111. data/foozah/public/plugin_assets/calendar_date_select/stylesheets/calendar_date_select/blue.css +130 -0
  112. data/foozah/public/plugin_assets/calendar_date_select/stylesheets/calendar_date_select/default.css +135 -0
  113. data/foozah/public/plugin_assets/calendar_date_select/stylesheets/calendar_date_select/plain.css +128 -0
  114. data/foozah/public/plugin_assets/calendar_date_select/stylesheets/calendar_date_select/red.css +135 -0
  115. data/foozah/public/plugin_assets/calendar_date_select/stylesheets/calendar_date_select/silver.css +133 -0
  116. data/foozah/public/plugin_assets/spree/404.html +30 -0
  117. data/foozah/public/plugin_assets/spree/500.html +30 -0
  118. data/foozah/public/plugin_assets/spree/dispatch.cgi +10 -0
  119. data/foozah/public/plugin_assets/spree/dispatch.fcgi +24 -0
  120. data/foozah/public/plugin_assets/spree/dispatch.rb +10 -0
  121. data/foozah/public/plugin_assets/spree/favicon.ico +0 -0
  122. data/foozah/public/plugin_assets/spree/images/amex_cid.gif +0 -0
  123. data/foozah/public/plugin_assets/spree/images/creditcard.gif +0 -0
  124. data/foozah/public/plugin_assets/spree/images/discover_cid.gif +0 -0
  125. data/foozah/public/plugin_assets/spree/images/master_cid.jpg +0 -0
  126. data/foozah/public/plugin_assets/spree/images/products/ror_bag.jpg +0 -0
  127. data/foozah/public/plugin_assets/spree/images/products/ror_baseball_jersey.jpg +0 -0
  128. data/foozah/public/plugin_assets/spree/images/products/ror_jr_spaghetti.jpg +0 -0
  129. data/foozah/public/plugin_assets/spree/images/products/ror_mug.jpg +0 -0
  130. data/foozah/public/plugin_assets/spree/images/products/ror_ringer_tshirt.jpg +0 -0
  131. data/foozah/public/plugin_assets/spree/images/products/ror_stein.jpg +0 -0
  132. data/foozah/public/plugin_assets/spree/images/products/ror_tote.jpg +0 -0
  133. data/foozah/public/plugin_assets/spree/images/rails.png +0 -0
  134. data/foozah/public/plugin_assets/spree/images/spinner.gif +0 -0
  135. data/foozah/public/plugin_assets/spree/images/spree/progress.gif +0 -0
  136. data/foozah/public/plugin_assets/spree/images/spree/spinner.gif +0 -0
  137. data/foozah/public/plugin_assets/spree/images/spree/spree.jpg +0 -0
  138. data/foozah/public/plugin_assets/spree/images/spree/spree_logo142x65.gif +0 -0
  139. data/foozah/public/plugin_assets/spree/images/spree/spree_logo245x112.gif +0 -0
  140. data/foozah/public/plugin_assets/spree/images/visa_cid.gif +0 -0
  141. data/foozah/public/plugin_assets/spree/javascripts/application.js +2 -0
  142. data/foozah/public/plugin_assets/spree/javascripts/controls.js +833 -0
  143. data/foozah/public/plugin_assets/spree/javascripts/dragdrop.js +942 -0
  144. data/foozah/public/plugin_assets/spree/javascripts/effects.js +1088 -0
  145. data/foozah/public/plugin_assets/spree/javascripts/lowpro.js +307 -0
  146. data/foozah/public/plugin_assets/spree/javascripts/prototype.js +2515 -0
  147. data/foozah/public/plugin_assets/spree/robots.txt +1 -0
  148. data/foozah/public/plugin_assets/spree/stylesheets/cart/_controller.css +71 -0
  149. data/foozah/public/plugin_assets/spree/stylesheets/checkout/_controller.css +31 -0
  150. data/foozah/public/plugin_assets/spree/stylesheets/fullscreen.css +63 -0
  151. data/foozah/public/plugin_assets/spree/stylesheets/orders/_controller.css +3 -0
  152. data/foozah/public/plugin_assets/spree/stylesheets/products/_controller.css +38 -0
  153. data/foozah/public/plugin_assets/spree/stylesheets/spree-admin.css +355 -0
  154. data/foozah/public/plugin_assets/spree/stylesheets/spree.css +66 -0
  155. data/foozah/public/plugin_assets/spree/stylesheets/store/_controller.css +23 -0
  156. data/foozah/public/robots.txt +1 -0
  157. data/foozah/public/stylesheets/application.css +4 -0
  158. data/foozah/public/stylesheets/calendar_date_select/blue.css +130 -0
  159. data/foozah/public/stylesheets/calendar_date_select/default.css +135 -0
  160. data/foozah/public/stylesheets/calendar_date_select/plain.css +128 -0
  161. data/foozah/public/stylesheets/calendar_date_select/red.css +135 -0
  162. data/foozah/public/stylesheets/calendar_date_select/silver.css +133 -0
  163. data/foozah/public/stylesheets/cart/_controller.css +71 -0
  164. data/foozah/public/stylesheets/checkout/_controller-override.css +13 -0
  165. data/foozah/public/stylesheets/checkout/_controller.css +31 -0
  166. data/foozah/public/stylesheets/fullscreen.css +63 -0
  167. data/foozah/public/stylesheets/orders/_controller.css +3 -0
  168. data/foozah/public/stylesheets/products/_controller.css +38 -0
  169. data/foozah/public/stylesheets/spree-admin.css +355 -0
  170. data/foozah/public/stylesheets/spree.css +296 -0
  171. data/foozah/public/stylesheets/store/_controller.css +23 -0
  172. data/foozah/script/about +3 -0
  173. data/foozah/script/breakpointer +3 -0
  174. data/foozah/script/console +3 -0
  175. data/foozah/script/generate +16 -0
  176. data/foozah/script/performance/benchmarker +3 -0
  177. data/foozah/script/performance/profiler +3 -0
  178. data/foozah/script/process/inspector +3 -0
  179. data/foozah/script/process/reaper +3 -0
  180. data/foozah/script/process/spawner +3 -0
  181. data/foozah/script/runner +3 -0
  182. data/foozah/script/server +3 -0
  183. data/foozah/script/spec +4 -0
  184. data/foozah/script/spec_server +102 -0
  185. data/lib/RFC822.rb +30 -0
  186. data/lib/annotatable.rb +71 -0
  187. data/lib/easy_role_permissions.yml +76 -0
  188. data/lib/easy_role_requirement_system.rb +234 -0
  189. data/lib/generators/extension/extension_generator.rb +60 -0
  190. data/lib/generators/extension/templates/README +3 -0
  191. data/lib/generators/extension/templates/RSpecRakefile +120 -0
  192. data/lib/generators/extension/templates/Rakefile +25 -0
  193. data/lib/generators/extension/templates/extension.rb +23 -0
  194. data/lib/generators/extension/templates/functional_test.rb +15 -0
  195. data/lib/generators/extension/templates/migration.rb +9 -0
  196. data/lib/generators/extension/templates/spec.opts +6 -0
  197. data/lib/generators/extension/templates/spec_helper.rb +37 -0
  198. data/lib/generators/extension/templates/tasks.rake +28 -0
  199. data/lib/generators/extension/templates/test_helper.rb +26 -0
  200. data/lib/generators/extension_controller/USAGE +36 -0
  201. data/lib/generators/extension_controller/extension_controller_generator.rb +76 -0
  202. data/lib/generators/extension_controller/templates/controller.rb +12 -0
  203. data/lib/generators/extension_controller/templates/controller_spec.rb +23 -0
  204. data/lib/generators/extension_controller/templates/functional_test.rb +17 -0
  205. data/lib/generators/extension_controller/templates/helper.rb +2 -0
  206. data/lib/generators/extension_controller/templates/helper_spec.rb +11 -0
  207. data/lib/generators/extension_controller/templates/view.rhtml +2 -0
  208. data/lib/generators/extension_controller/templates/view_spec.rb +12 -0
  209. data/lib/generators/extension_model/USAGE +35 -0
  210. data/lib/generators/extension_model/extension_model_generator.rb +83 -0
  211. data/lib/generators/extension_model/templates/fixtures.yml +11 -0
  212. data/lib/generators/extension_model/templates/migration.rb +13 -0
  213. data/lib/generators/extension_model/templates/model.rb +2 -0
  214. data/lib/generators/extension_model/templates/model_spec.rb +11 -0
  215. data/lib/generators/extension_model/templates/unit_test.rb +10 -0
  216. data/lib/generators/generator_base_extension.rb +23 -0
  217. data/lib/generators/instance/instance_generator.rb +1 -1
  218. data/lib/generators/instance/templates/instance_environment.rb +1 -31
  219. data/lib/method_observer.rb +50 -0
  220. data/lib/plugins/extension_patches/lib/routing_extension.rb +12 -4
  221. data/lib/plugins/object_extensions/init.rb +1 -0
  222. data/lib/plugins/object_extensions/lib/object_extensions.rb +5 -0
  223. data/lib/plugins/string_extensions/init.rb +1 -0
  224. data/lib/plugins/string_extensions/lib/string_extensions.rb +15 -0
  225. data/lib/role_requirement_system.rb +7 -6
  226. data/lib/simpleton.rb +24 -0
  227. data/lib/spree.rb +2 -2
  228. data/lib/spree/extension.rb +65 -0
  229. data/lib/spree/extension_loader.rb +148 -0
  230. data/lib/spree/extension_migrator.rb +47 -0
  231. data/lib/spree/initializer.rb +10 -10
  232. data/lib/spree/setup.rb +1 -7
  233. data/lib/tasks/database.rake +35 -10
  234. data/lib/tasks/extensions.rake +104 -0
  235. data/lib/tasks/framework.rake +41 -0
  236. data/lib/tasks/release.rake +2 -5
  237. data/login.patch +55 -0
  238. data/public/stylesheets/application.css +4 -209
  239. data/public/stylesheets/spree.css +233 -3
  240. data/spec/fixtures/gateway_configurations.yml +3 -0
  241. data/spec/fixtures/gateways.yml +3 -0
  242. data/spec/fixtures/roles.yml +2 -0
  243. data/spec/fixtures/users.yml +6 -0
  244. data/spec/lib/easy_role_requirement_system_spec.rb +140 -0
  245. data/spec/models/cart_spec.rb +2 -2
  246. data/spec/models/order_spec.rb +34 -0
  247. data/spec/models/product_spec.rb +45 -35
  248. data/spec/models/variant_spec.rb +37 -0
  249. data/spec/spec.opts +1 -1
  250. data/spree.tmproj +427 -71
  251. data/vendor/extensions/README +1 -0
  252. data/vendor/extensions/payment_gateway/README.markdown +8 -0
  253. data/vendor/extensions/payment_gateway/Rakefile +120 -0
  254. data/vendor/extensions/payment_gateway/app/controllers/admin/gateway_configurations_controller.rb +24 -0
  255. data/vendor/extensions/payment_gateway/app/controllers/admin/gateway_option_values_controller.rb +22 -0
  256. data/vendor/extensions/payment_gateway/app/controllers/admin/gateways_controller.rb +8 -0
  257. data/vendor/extensions/payment_gateway/app/helpers/admin/gateways_helper.rb +2 -0
  258. data/vendor/extensions/payment_gateway/app/models/gateway.rb +3 -0
  259. data/vendor/extensions/payment_gateway/app/models/gateway_configuration.rb +4 -0
  260. data/vendor/extensions/payment_gateway/app/models/gateway_option.rb +3 -0
  261. data/vendor/extensions/payment_gateway/app/models/gateway_option_value.rb +4 -0
  262. data/vendor/extensions/payment_gateway/app/views/admin/gateway_configurations/_form.html.erb +20 -0
  263. data/vendor/extensions/payment_gateway/app/views/admin/gateway_configurations/edit.html.erb +8 -0
  264. data/vendor/extensions/payment_gateway/app/views/admin/gateway_option_values/_options.html.erb +28 -0
  265. data/vendor/extensions/payment_gateway/db/migrate/001_create_gateway_configurations.rb +12 -0
  266. data/vendor/extensions/payment_gateway/db/migrate/002_create_gateways.rb +15 -0
  267. data/vendor/extensions/payment_gateway/db/migrate/003_create_gateway_options.rb +15 -0
  268. data/vendor/extensions/payment_gateway/db/migrate/004_create_gateway_option_values.rb +14 -0
  269. data/vendor/extensions/payment_gateway/db/migrate/005_create_bogus_gateway.rb +14 -0
  270. data/vendor/extensions/payment_gateway/db/migrate/006_create_linkpoint_gateway.rb +18 -0
  271. data/{lib → vendor/extensions/payment_gateway/lib}/spree/bogus_gateway.rb +5 -0
  272. data/vendor/extensions/payment_gateway/lib/spree/payment_gateway.rb +19 -0
  273. data/vendor/extensions/payment_gateway/lib/tasks/payment_gateway_extension_tasks.rake +28 -0
  274. data/vendor/extensions/payment_gateway/payment_gateway_extension.rb +28 -0
  275. data/vendor/extensions/payment_gateway/spec/controllers/payment_gateway_spec.rb +19 -0
  276. data/vendor/extensions/payment_gateway/spec/helpers/admin/gateways_helper_spec.rb +11 -0
  277. data/vendor/extensions/payment_gateway/spec/models/gateway_configuration_spec.rb +11 -0
  278. data/vendor/extensions/payment_gateway/spec/models/gateway_option_spec.rb +11 -0
  279. data/vendor/extensions/payment_gateway/spec/models/gateway_option_value_spec.rb +11 -0
  280. data/vendor/extensions/payment_gateway/spec/models/gateway_spec.rb +11 -0
  281. data/vendor/extensions/payment_gateway/spec/spec.opts +6 -0
  282. data/vendor/extensions/payment_gateway/spec/spec_helper.rb +37 -0
  283. data/vendor/extensions/tax_calculator/README.markdown +8 -0
  284. data/vendor/extensions/tax_calculator/Rakefile +120 -0
  285. data/vendor/extensions/tax_calculator/app/controllers/admin/tax_rates_controller.rb +13 -0
  286. data/vendor/extensions/tax_calculator/app/helpers/admin/tax_rates_helper.rb +2 -0
  287. data/vendor/extensions/tax_calculator/app/models/tax_rate.rb +6 -0
  288. data/vendor/extensions/tax_calculator/app/views/admin/tax_rates/_form.html.erb +10 -0
  289. data/vendor/extensions/tax_calculator/app/views/admin/tax_rates/edit.html.erb +7 -0
  290. data/vendor/extensions/tax_calculator/app/views/admin/tax_rates/index.html.erb +26 -0
  291. data/vendor/extensions/tax_calculator/app/views/admin/tax_rates/new.html.erb +12 -0
  292. data/vendor/extensions/tax_calculator/app/views/admin/tax_rates/show.html.erb +4 -0
  293. data/vendor/extensions/tax_calculator/db/migrate/001_create_tax_rates.rb +13 -0
  294. data/vendor/extensions/tax_calculator/lib/spree/tax_calculator.rb +18 -0
  295. data/vendor/extensions/tax_calculator/lib/tasks/tax_calculator_extension_tasks.rake +28 -0
  296. data/vendor/extensions/tax_calculator/spec/controllers/admin/tax_rates_controller_spec.rb +22 -0
  297. data/vendor/extensions/tax_calculator/spec/controllers/tax_calculator_spec.rb +33 -0
  298. data/vendor/extensions/tax_calculator/spec/fixtures/tax_rates.yml +3 -0
  299. data/vendor/extensions/tax_calculator/spec/helpers/admin/tax_rates_helper_spec.rb +11 -0
  300. data/vendor/extensions/tax_calculator/spec/models/tax_rate_spec.rb +26 -0
  301. data/vendor/extensions/tax_calculator/spec/spec.opts +6 -0
  302. data/vendor/extensions/tax_calculator/spec/spec_helper.rb +42 -0
  303. data/vendor/extensions/tax_calculator/tax_calculator_extension.rb +24 -0
  304. data/vendor/plugins/active_merchant/CHANGELOG +345 -0
  305. data/vendor/plugins/active_merchant/CONTRIBUTERS +69 -0
  306. data/vendor/plugins/active_merchant/MIT-LICENSE +20 -0
  307. data/vendor/plugins/active_merchant/README +127 -0
  308. data/vendor/plugins/active_merchant/Rakefile +160 -0
  309. data/vendor/plugins/active_merchant/gem-public_cert.pem +20 -0
  310. data/vendor/plugins/active_merchant/generators/gateway/USAGE +5 -0
  311. data/vendor/plugins/active_merchant/generators/gateway/gateway_generator.rb +61 -0
  312. data/vendor/plugins/active_merchant/generators/gateway/templates/gateway.rb +77 -0
  313. data/vendor/plugins/active_merchant/generators/gateway/templates/gateway_test.rb +49 -0
  314. data/vendor/plugins/active_merchant/generators/gateway/templates/remote_gateway_test.rb +57 -0
  315. data/vendor/plugins/active_merchant/generators/integration/USAGE +5 -0
  316. data/vendor/plugins/active_merchant/generators/integration/integration_generator.rb +68 -0
  317. data/vendor/plugins/active_merchant/generators/integration/templates/helper.rb +34 -0
  318. data/vendor/plugins/active_merchant/generators/integration/templates/helper_test.rb +54 -0
  319. data/vendor/plugins/active_merchant/generators/integration/templates/integration.rb +18 -0
  320. data/vendor/plugins/active_merchant/generators/integration/templates/module_test.rb +9 -0
  321. data/vendor/plugins/active_merchant/generators/integration/templates/notification.rb +100 -0
  322. data/vendor/plugins/active_merchant/generators/integration/templates/notification_test.rb +41 -0
  323. data/vendor/plugins/active_merchant/init.rb +3 -0
  324. data/vendor/plugins/active_merchant/lib/active_merchant.rb +70 -0
  325. data/vendor/plugins/active_merchant/lib/active_merchant/billing/avs_result.rb +95 -0
  326. data/vendor/plugins/active_merchant/lib/active_merchant/billing/base.rb +57 -0
  327. data/vendor/plugins/active_merchant/lib/active_merchant/billing/check.rb +61 -0
  328. data/vendor/plugins/active_merchant/lib/active_merchant/billing/credit_card.rb +157 -0
  329. data/vendor/plugins/active_merchant/lib/active_merchant/billing/credit_card_formatting.rb +21 -0
  330. data/vendor/plugins/active_merchant/lib/active_merchant/billing/credit_card_methods.rb +125 -0
  331. data/vendor/plugins/active_merchant/lib/active_merchant/billing/cvv_result.rb +38 -0
  332. data/vendor/plugins/active_merchant/lib/active_merchant/billing/expiry_date.rb +28 -0
  333. data/vendor/plugins/active_merchant/lib/active_merchant/billing/gateway.rb +162 -0
  334. data/vendor/plugins/active_merchant/lib/active_merchant/billing/gateways.rb +3 -0
  335. data/vendor/plugins/active_merchant/lib/active_merchant/billing/gateways/authorize_net.rb +633 -0
  336. data/vendor/plugins/active_merchant/lib/active_merchant/billing/gateways/authorize_net_cim.rb +697 -0
  337. data/vendor/plugins/active_merchant/lib/active_merchant/billing/gateways/bogus.rb +86 -0
  338. data/vendor/plugins/active_merchant/lib/active_merchant/billing/gateways/braintree.rb +205 -0
  339. data/vendor/plugins/active_merchant/lib/active_merchant/billing/gateways/card_stream.rb +235 -0
  340. data/vendor/plugins/active_merchant/lib/active_merchant/billing/gateways/cyber_source.rb +406 -0
  341. data/vendor/plugins/active_merchant/lib/active_merchant/billing/gateways/data_cash.rb +595 -0
  342. data/vendor/plugins/active_merchant/lib/active_merchant/billing/gateways/efsnet.rb +229 -0
  343. data/vendor/plugins/active_merchant/lib/active_merchant/billing/gateways/eway.rb +272 -0
  344. data/vendor/plugins/active_merchant/lib/active_merchant/billing/gateways/exact.rb +222 -0
  345. data/vendor/plugins/active_merchant/lib/active_merchant/billing/gateways/linkpoint.rb +396 -0
  346. data/vendor/plugins/active_merchant/lib/active_merchant/billing/gateways/moneris.rb +205 -0
  347. data/vendor/plugins/active_merchant/lib/active_merchant/billing/gateways/net_registry.rb +189 -0
  348. data/vendor/plugins/active_merchant/lib/active_merchant/billing/gateways/netbilling.rb +168 -0
  349. data/vendor/plugins/active_merchant/lib/active_merchant/billing/gateways/pay_junction.rb +386 -0
  350. data/vendor/plugins/active_merchant/lib/active_merchant/billing/gateways/pay_secure.rb +120 -0
  351. data/vendor/plugins/active_merchant/lib/active_merchant/billing/gateways/payflow.rb +236 -0
  352. data/vendor/plugins/active_merchant/lib/active_merchant/billing/gateways/payflow/payflow_common_api.rb +213 -0
  353. data/vendor/plugins/active_merchant/lib/active_merchant/billing/gateways/payflow/payflow_express_response.rb +39 -0
  354. data/vendor/plugins/active_merchant/lib/active_merchant/billing/gateways/payflow/payflow_response.rb +13 -0
  355. data/vendor/plugins/active_merchant/lib/active_merchant/billing/gateways/payflow_express.rb +138 -0
  356. data/vendor/plugins/active_merchant/lib/active_merchant/billing/gateways/payflow_express_nv.rb +181 -0
  357. data/vendor/plugins/active_merchant/lib/active_merchant/billing/gateways/payflow_express_uk.rb +15 -0
  358. data/vendor/plugins/active_merchant/lib/active_merchant/billing/gateways/payflow_nv.rb +234 -0
  359. data/vendor/plugins/active_merchant/lib/active_merchant/billing/gateways/payflow_nv/payflow_express_nv_response.rb +39 -0
  360. data/vendor/plugins/active_merchant/lib/active_merchant/billing/gateways/payflow_nv/payflow_nv_common_api.rb +227 -0
  361. data/vendor/plugins/active_merchant/lib/active_merchant/billing/gateways/payflow_nv/payflow_nv_response.rb +28 -0
  362. data/vendor/plugins/active_merchant/lib/active_merchant/billing/gateways/payflow_uk.rb +21 -0
  363. data/vendor/plugins/active_merchant/lib/active_merchant/billing/gateways/payment_express.rb +242 -0
  364. data/vendor/plugins/active_merchant/lib/active_merchant/billing/gateways/paypal.rb +108 -0
  365. data/vendor/plugins/active_merchant/lib/active_merchant/billing/gateways/paypal/paypal_common_api.rb +314 -0
  366. data/vendor/plugins/active_merchant/lib/active_merchant/billing/gateways/paypal/paypal_express_response.rb +38 -0
  367. data/vendor/plugins/active_merchant/lib/active_merchant/billing/gateways/paypal_express.rb +130 -0
  368. data/vendor/plugins/active_merchant/lib/active_merchant/billing/gateways/paypal_express_common.rb +20 -0
  369. data/vendor/plugins/active_merchant/lib/active_merchant/billing/gateways/plugnpay.rb +292 -0
  370. data/vendor/plugins/active_merchant/lib/active_merchant/billing/gateways/protx.rb +284 -0
  371. data/vendor/plugins/active_merchant/lib/active_merchant/billing/gateways/psigate.rb +214 -0
  372. data/vendor/plugins/active_merchant/lib/active_merchant/billing/gateways/psl_card.rb +302 -0
  373. data/vendor/plugins/active_merchant/lib/active_merchant/billing/gateways/quickpay.rb +183 -0
  374. data/vendor/plugins/active_merchant/lib/active_merchant/billing/gateways/realex.rb +200 -0
  375. data/vendor/plugins/active_merchant/lib/active_merchant/billing/gateways/secure_pay.rb +31 -0
  376. data/vendor/plugins/active_merchant/lib/active_merchant/billing/gateways/secure_pay_au.rb +155 -0
  377. data/vendor/plugins/active_merchant/lib/active_merchant/billing/gateways/secure_pay_tech.rb +113 -0
  378. data/vendor/plugins/active_merchant/lib/active_merchant/billing/gateways/skip_jack.rb +437 -0
  379. data/vendor/plugins/active_merchant/lib/active_merchant/billing/gateways/trans_first.rb +127 -0
  380. data/vendor/plugins/active_merchant/lib/active_merchant/billing/gateways/trust_commerce.rb +414 -0
  381. data/vendor/plugins/active_merchant/lib/active_merchant/billing/gateways/usa_epay.rb +194 -0
  382. data/vendor/plugins/active_merchant/lib/active_merchant/billing/gateways/verifi.rb +228 -0
  383. data/vendor/plugins/active_merchant/lib/active_merchant/billing/gateways/viaklix.rb +165 -0
  384. data/vendor/plugins/active_merchant/lib/active_merchant/billing/integrations.rb +15 -0
  385. data/vendor/plugins/active_merchant/lib/active_merchant/billing/integrations/action_view_helper.rb +65 -0
  386. data/vendor/plugins/active_merchant/lib/active_merchant/billing/integrations/bogus.rb +22 -0
  387. data/vendor/plugins/active_merchant/lib/active_merchant/billing/integrations/bogus/helper.rb +17 -0
  388. data/vendor/plugins/active_merchant/lib/active_merchant/billing/integrations/bogus/notification.rb +11 -0
  389. data/vendor/plugins/active_merchant/lib/active_merchant/billing/integrations/bogus/return.rb +10 -0
  390. data/vendor/plugins/active_merchant/lib/active_merchant/billing/integrations/chronopay.rb +22 -0
  391. data/vendor/plugins/active_merchant/lib/active_merchant/billing/integrations/chronopay/helper.rb +81 -0
  392. data/vendor/plugins/active_merchant/lib/active_merchant/billing/integrations/chronopay/notification.rb +156 -0
  393. data/vendor/plugins/active_merchant/lib/active_merchant/billing/integrations/chronopay/return.rb +10 -0
  394. data/vendor/plugins/active_merchant/lib/active_merchant/billing/integrations/gestpay.rb +26 -0
  395. data/vendor/plugins/active_merchant/lib/active_merchant/billing/integrations/gestpay/common.rb +42 -0
  396. data/vendor/plugins/active_merchant/lib/active_merchant/billing/integrations/gestpay/helper.rb +70 -0
  397. data/vendor/plugins/active_merchant/lib/active_merchant/billing/integrations/gestpay/notification.rb +83 -0
  398. data/vendor/plugins/active_merchant/lib/active_merchant/billing/integrations/gestpay/return.rb +10 -0
  399. data/vendor/plugins/active_merchant/lib/active_merchant/billing/integrations/helper.rb +93 -0
  400. data/vendor/plugins/active_merchant/lib/active_merchant/billing/integrations/hi_trust.rb +26 -0
  401. data/vendor/plugins/active_merchant/lib/active_merchant/billing/integrations/hi_trust/helper.rb +58 -0
  402. data/vendor/plugins/active_merchant/lib/active_merchant/billing/integrations/hi_trust/notification.rb +57 -0
  403. data/vendor/plugins/active_merchant/lib/active_merchant/billing/integrations/hi_trust/return.rb +67 -0
  404. data/vendor/plugins/active_merchant/lib/active_merchant/billing/integrations/nochex.rb +87 -0
  405. data/vendor/plugins/active_merchant/lib/active_merchant/billing/integrations/nochex/helper.rb +68 -0
  406. data/vendor/plugins/active_merchant/lib/active_merchant/billing/integrations/nochex/notification.rb +94 -0
  407. data/vendor/plugins/active_merchant/lib/active_merchant/billing/integrations/nochex/return.rb +10 -0
  408. data/vendor/plugins/active_merchant/lib/active_merchant/billing/integrations/notification.rb +53 -0
  409. data/vendor/plugins/active_merchant/lib/active_merchant/billing/integrations/paypal.rb +40 -0
  410. data/vendor/plugins/active_merchant/lib/active_merchant/billing/integrations/paypal/helper.rb +118 -0
  411. data/vendor/plugins/active_merchant/lib/active_merchant/billing/integrations/paypal/notification.rb +154 -0
  412. data/vendor/plugins/active_merchant/lib/active_merchant/billing/integrations/paypal/return.rb +10 -0
  413. data/vendor/plugins/active_merchant/lib/active_merchant/billing/integrations/return.rb +35 -0
  414. data/vendor/plugins/active_merchant/lib/active_merchant/billing/integrations/two_checkout.rb +23 -0
  415. data/vendor/plugins/active_merchant/lib/active_merchant/billing/integrations/two_checkout/helper.rb +59 -0
  416. data/vendor/plugins/active_merchant/lib/active_merchant/billing/integrations/two_checkout/notification.rb +114 -0
  417. data/vendor/plugins/active_merchant/lib/active_merchant/billing/integrations/two_checkout/return.rb +17 -0
  418. data/vendor/plugins/active_merchant/lib/active_merchant/billing/response.rb +32 -0
  419. data/vendor/plugins/active_merchant/lib/active_merchant/lib/country.rb +298 -0
  420. data/vendor/plugins/active_merchant/lib/active_merchant/lib/error.rb +4 -0
  421. data/vendor/plugins/active_merchant/lib/active_merchant/lib/post_data.rb +22 -0
  422. data/vendor/plugins/active_merchant/lib/active_merchant/lib/posts_data.rb +80 -0
  423. data/vendor/plugins/active_merchant/lib/active_merchant/lib/requires_parameters.rb +16 -0
  424. data/vendor/plugins/active_merchant/lib/active_merchant/lib/utils.rb +18 -0
  425. data/vendor/plugins/active_merchant/lib/active_merchant/lib/validateable.rb +76 -0
  426. data/vendor/plugins/active_merchant/lib/certs/cacert.pem +7815 -0
  427. data/vendor/plugins/active_merchant/lib/support/gateway_support.rb +58 -0
  428. data/vendor/plugins/active_merchant/lib/tasks/cia.rb +90 -0
  429. data/vendor/plugins/active_merchant/script/destroy +14 -0
  430. data/vendor/plugins/active_merchant/script/generate +14 -0
  431. data/vendor/plugins/active_merchant/test/extra/binding_of_caller.rb +80 -0
  432. data/vendor/plugins/active_merchant/test/extra/breakpoint.rb +547 -0
  433. data/vendor/plugins/active_merchant/test/fixtures.yml +277 -0
  434. data/vendor/plugins/active_merchant/test/remote/gateways/remote_authorize_net_cim_test.rb +458 -0
  435. data/vendor/plugins/active_merchant/test/remote/gateways/remote_authorize_net_test.rb +145 -0
  436. data/vendor/plugins/active_merchant/test/remote/gateways/remote_braintree_test.rb +125 -0
  437. data/vendor/plugins/active_merchant/test/remote/gateways/remote_card_stream_test.rb +148 -0
  438. data/vendor/plugins/active_merchant/test/remote/gateways/remote_cyber_source_test.rb +144 -0
  439. data/vendor/plugins/active_merchant/test/remote/gateways/remote_data_cash_test.rb +357 -0
  440. data/vendor/plugins/active_merchant/test/remote/gateways/remote_efsnet_test.rb +81 -0
  441. data/vendor/plugins/active_merchant/test/remote/gateways/remote_eway_test.rb +74 -0
  442. data/vendor/plugins/active_merchant/test/remote/gateways/remote_exact_test.rb +60 -0
  443. data/vendor/plugins/active_merchant/test/remote/gateways/remote_linkpoint_test.rb +112 -0
  444. data/vendor/plugins/active_merchant/test/remote/gateways/remote_moneris_test.rb +82 -0
  445. data/vendor/plugins/active_merchant/test/remote/gateways/remote_net_registry_test.rb +85 -0
  446. data/vendor/plugins/active_merchant/test/remote/gateways/remote_netbilling_test.rb +70 -0
  447. data/vendor/plugins/active_merchant/test/remote/gateways/remote_pay_junction_test.rb +143 -0
  448. data/vendor/plugins/active_merchant/test/remote/gateways/remote_pay_secure_test.rb +39 -0
  449. data/vendor/plugins/active_merchant/test/remote/gateways/remote_payflow_express_nv_test.rb +51 -0
  450. data/vendor/plugins/active_merchant/test/remote/gateways/remote_payflow_express_test.rb +50 -0
  451. data/vendor/plugins/active_merchant/test/remote/gateways/remote_payflow_nv_test.rb +237 -0
  452. data/vendor/plugins/active_merchant/test/remote/gateways/remote_payflow_test.rb +237 -0
  453. data/vendor/plugins/active_merchant/test/remote/gateways/remote_payflow_uk_test.rb +173 -0
  454. data/vendor/plugins/active_merchant/test/remote/gateways/remote_payment_express_test.rb +126 -0
  455. data/vendor/plugins/active_merchant/test/remote/gateways/remote_paypal_express_test.rb +49 -0
  456. data/vendor/plugins/active_merchant/test/remote/gateways/remote_paypal_test.rb +167 -0
  457. data/vendor/plugins/active_merchant/test/remote/gateways/remote_plugnpay_test.rb +72 -0
  458. data/vendor/plugins/active_merchant/test/remote/gateways/remote_protx_test.rb +184 -0
  459. data/vendor/plugins/active_merchant/test/remote/gateways/remote_psigate_test.rb +50 -0
  460. data/vendor/plugins/active_merchant/test/remote/gateways/remote_psl_card_test.rb +106 -0
  461. data/vendor/plugins/active_merchant/test/remote/gateways/remote_quickpay_test.rb +182 -0
  462. data/vendor/plugins/active_merchant/test/remote/gateways/remote_realex_test.rb +224 -0
  463. data/vendor/plugins/active_merchant/test/remote/gateways/remote_secure_pay_au_test.rb +40 -0
  464. data/vendor/plugins/active_merchant/test/remote/gateways/remote_secure_pay_tech_test.rb +37 -0
  465. data/vendor/plugins/active_merchant/test/remote/gateways/remote_secure_pay_test.rb +28 -0
  466. data/vendor/plugins/active_merchant/test/remote/gateways/remote_skipjack_test.rb +105 -0
  467. data/vendor/plugins/active_merchant/test/remote/gateways/remote_trans_first_test.rb +34 -0
  468. data/vendor/plugins/active_merchant/test/remote/gateways/remote_trust_commerce_test.rb +152 -0
  469. data/vendor/plugins/active_merchant/test/remote/gateways/remote_usa_epay_test.rb +46 -0
  470. data/vendor/plugins/active_merchant/test/remote/gateways/remote_verifi_test.rb +107 -0
  471. data/vendor/plugins/active_merchant/test/remote/gateways/remote_viaklix_test.rb +43 -0
  472. data/vendor/plugins/active_merchant/test/remote/integrations/remote_gestpay_integration_test.rb +37 -0
  473. data/vendor/plugins/active_merchant/test/remote/integrations/remote_paypal_integration_test.rb +14 -0
  474. data/vendor/plugins/active_merchant/test/test_helper.rb +173 -0
  475. data/vendor/plugins/active_merchant/test/unit/avs_result_test.rb +59 -0
  476. data/vendor/plugins/active_merchant/test/unit/base_test.rb +55 -0
  477. data/vendor/plugins/active_merchant/test/unit/check_test.rb +76 -0
  478. data/vendor/plugins/active_merchant/test/unit/country_code_test.rb +33 -0
  479. data/vendor/plugins/active_merchant/test/unit/country_test.rb +64 -0
  480. data/vendor/plugins/active_merchant/test/unit/credit_card_formatting_test.rb +19 -0
  481. data/vendor/plugins/active_merchant/test/unit/credit_card_methods_test.rb +170 -0
  482. data/vendor/plugins/active_merchant/test/unit/credit_card_test.rb +311 -0
  483. data/vendor/plugins/active_merchant/test/unit/cvv_result_test.rb +33 -0
  484. data/vendor/plugins/active_merchant/test/unit/expiry_date_test.rb +21 -0
  485. data/vendor/plugins/active_merchant/test/unit/gateways/authorize_net_cim_test.rb +640 -0
  486. data/vendor/plugins/active_merchant/test/unit/gateways/authorize_net_test.rb +280 -0
  487. data/vendor/plugins/active_merchant/test/unit/gateways/bogus_test.rb +42 -0
  488. data/vendor/plugins/active_merchant/test/unit/gateways/braintree_test.rb +119 -0
  489. data/vendor/plugins/active_merchant/test/unit/gateways/card_stream_test.rb +90 -0
  490. data/vendor/plugins/active_merchant/test/unit/gateways/cyber_source_test.rb +188 -0
  491. data/vendor/plugins/active_merchant/test/unit/gateways/data_cash_test.rb +132 -0
  492. data/vendor/plugins/active_merchant/test/unit/gateways/efsnet_test.rb +123 -0
  493. data/vendor/plugins/active_merchant/test/unit/gateways/eway_test.rb +118 -0
  494. data/vendor/plugins/active_merchant/test/unit/gateways/exact_test.rb +156 -0
  495. data/vendor/plugins/active_merchant/test/unit/gateways/gateway_test.rb +41 -0
  496. data/vendor/plugins/active_merchant/test/unit/gateways/linkpoint_test.rb +167 -0
  497. data/vendor/plugins/active_merchant/test/unit/gateways/moneris_test.rb +158 -0
  498. data/vendor/plugins/active_merchant/test/unit/gateways/net_registry_test.rb +416 -0
  499. data/vendor/plugins/active_merchant/test/unit/gateways/netbilling_test.rb +54 -0
  500. data/vendor/plugins/active_merchant/test/unit/gateways/pay_junction_test.rb +123 -0
  501. data/vendor/plugins/active_merchant/test/unit/gateways/pay_secure_test.rb +71 -0
  502. data/vendor/plugins/active_merchant/test/unit/gateways/payflow_express_nv_test.rb +156 -0
  503. data/vendor/plugins/active_merchant/test/unit/gateways/payflow_express_test.rb +173 -0
  504. data/vendor/plugins/active_merchant/test/unit/gateways/payflow_express_uk_test.rb +14 -0
  505. data/vendor/plugins/active_merchant/test/unit/gateways/payflow_nv_test.rb +237 -0
  506. data/vendor/plugins/active_merchant/test/unit/gateways/payflow_test.rb +301 -0
  507. data/vendor/plugins/active_merchant/test/unit/gateways/payflow_uk_test.rb +30 -0
  508. data/vendor/plugins/active_merchant/test/unit/gateways/payment_express_test.rb +195 -0
  509. data/vendor/plugins/active_merchant/test/unit/gateways/paypal_express_test.rb +333 -0
  510. data/vendor/plugins/active_merchant/test/unit/gateways/paypal_test.rb +380 -0
  511. data/vendor/plugins/active_merchant/test/unit/gateways/plugnpay_test.rb +86 -0
  512. data/vendor/plugins/active_merchant/test/unit/gateways/protx_test.rb +122 -0
  513. data/vendor/plugins/active_merchant/test/unit/gateways/psigate_test.rb +169 -0
  514. data/vendor/plugins/active_merchant/test/unit/gateways/psl_card_test.rb +64 -0
  515. data/vendor/plugins/active_merchant/test/unit/gateways/quickpay_test.rb +112 -0
  516. data/vendor/plugins/active_merchant/test/unit/gateways/realex_test.rb +151 -0
  517. data/vendor/plugins/active_merchant/test/unit/gateways/secure_pay_au_test.rb +150 -0
  518. data/vendor/plugins/active_merchant/test/unit/gateways/secure_pay_tech_test.rb +44 -0
  519. data/vendor/plugins/active_merchant/test/unit/gateways/secure_pay_test.rb +87 -0
  520. data/vendor/plugins/active_merchant/test/unit/gateways/skip_jack_test.rb +125 -0
  521. data/vendor/plugins/active_merchant/test/unit/gateways/trans_first_test.rb +112 -0
  522. data/vendor/plugins/active_merchant/test/unit/gateways/trust_commerce_test.rb +78 -0
  523. data/vendor/plugins/active_merchant/test/unit/gateways/usa_epay_test.rb +128 -0
  524. data/vendor/plugins/active_merchant/test/unit/gateways/verifi_test.rb +96 -0
  525. data/vendor/plugins/active_merchant/test/unit/gateways/viaklix_test.rb +78 -0
  526. data/vendor/plugins/active_merchant/test/unit/generators/test_gateway_generator.rb +46 -0
  527. data/vendor/plugins/active_merchant/test/unit/generators/test_generator_helper.rb +20 -0
  528. data/vendor/plugins/active_merchant/test/unit/generators/test_integration_generator.rb +53 -0
  529. data/vendor/plugins/active_merchant/test/unit/integrations/action_view_helper_test.rb +47 -0
  530. data/vendor/plugins/active_merchant/test/unit/integrations/bogus_module_test.rb +20 -0
  531. data/vendor/plugins/active_merchant/test/unit/integrations/chronopay_module_test.rb +13 -0
  532. data/vendor/plugins/active_merchant/test/unit/integrations/gestpay_module_test.rb +14 -0
  533. data/vendor/plugins/active_merchant/test/unit/integrations/helpers/bogus_helper_test.rb +28 -0
  534. data/vendor/plugins/active_merchant/test/unit/integrations/helpers/chronopay_helper_test.rb +67 -0
  535. data/vendor/plugins/active_merchant/test/unit/integrations/helpers/gestpay_helper_test.rb +100 -0
  536. data/vendor/plugins/active_merchant/test/unit/integrations/helpers/hi_trust_helper_test.rb +16 -0
  537. data/vendor/plugins/active_merchant/test/unit/integrations/helpers/nochex_helper_test.rb +53 -0
  538. data/vendor/plugins/active_merchant/test/unit/integrations/helpers/paypal_helper_test.rb +162 -0
  539. data/vendor/plugins/active_merchant/test/unit/integrations/helpers/two_checkout_helper_test.rb +92 -0
  540. data/vendor/plugins/active_merchant/test/unit/integrations/hi_trust_module_test.rb +13 -0
  541. data/vendor/plugins/active_merchant/test/unit/integrations/nochex_module_test.rb +13 -0
  542. data/vendor/plugins/active_merchant/test/unit/integrations/notifications/chronopay_notification_test.rb +66 -0
  543. data/vendor/plugins/active_merchant/test/unit/integrations/notifications/gestpay_notification_test.rb +60 -0
  544. data/vendor/plugins/active_merchant/test/unit/integrations/notifications/hi_trust_notification_test.rb +38 -0
  545. data/vendor/plugins/active_merchant/test/unit/integrations/notifications/nochex_notification_test.rb +51 -0
  546. data/vendor/plugins/active_merchant/test/unit/integrations/notifications/notification_test.rb +41 -0
  547. data/vendor/plugins/active_merchant/test/unit/integrations/notifications/paypal_notification_test.rb +85 -0
  548. data/vendor/plugins/active_merchant/test/unit/integrations/notifications/two_checkout_notification_test.rb +55 -0
  549. data/vendor/plugins/active_merchant/test/unit/integrations/paypal_module_test.rb +28 -0
  550. data/vendor/plugins/active_merchant/test/unit/integrations/returns/chronopay_return_test.rb +11 -0
  551. data/vendor/plugins/active_merchant/test/unit/integrations/returns/gestpay_return_test.rb +10 -0
  552. data/vendor/plugins/active_merchant/test/unit/integrations/returns/hi_trust_return_test.rb +24 -0
  553. data/vendor/plugins/active_merchant/test/unit/integrations/returns/nochex_return_test.rb +10 -0
  554. data/vendor/plugins/active_merchant/test/unit/integrations/returns/paypal_return_test.rb +10 -0
  555. data/vendor/plugins/active_merchant/test/unit/integrations/returns/return_test.rb +11 -0
  556. data/vendor/plugins/active_merchant/test/unit/integrations/returns/two_checkout_return_test.rb +24 -0
  557. data/vendor/plugins/active_merchant/test/unit/integrations/two_checkout_module_test.rb +13 -0
  558. data/vendor/plugins/active_merchant/test/unit/post_data_test.rb +55 -0
  559. data/vendor/plugins/active_merchant/test/unit/posts_data_test.rb +86 -0
  560. data/vendor/plugins/active_merchant/test/unit/response_test.rb +28 -0
  561. data/vendor/plugins/active_merchant/test/unit/utils_test.rb +7 -0
  562. data/vendor/plugins/active_merchant/test/unit/validateable_test.rb +60 -0
  563. data/vendor/plugins/resource_controller/LICENSE +22 -0
  564. data/vendor/plugins/resource_controller/README +276 -0
  565. data/vendor/plugins/resource_controller/Rakefile +22 -0
  566. data/vendor/plugins/resource_controller/generators/scaffold_resource/USAGE +29 -0
  567. data/vendor/plugins/resource_controller/generators/scaffold_resource/scaffold_resource_generator.rb +114 -0
  568. data/vendor/plugins/resource_controller/generators/scaffold_resource/templates/controller.rb +2 -0
  569. data/vendor/plugins/resource_controller/generators/scaffold_resource/templates/fixtures.yml +10 -0
  570. data/vendor/plugins/resource_controller/generators/scaffold_resource/templates/functional_test.rb +57 -0
  571. data/vendor/plugins/resource_controller/generators/scaffold_resource/templates/helper.rb +2 -0
  572. data/vendor/plugins/resource_controller/generators/scaffold_resource/templates/migration.rb +15 -0
  573. data/vendor/plugins/resource_controller/generators/scaffold_resource/templates/model.rb +2 -0
  574. data/vendor/plugins/resource_controller/generators/scaffold_resource/templates/old_migration.rb +13 -0
  575. data/vendor/plugins/resource_controller/generators/scaffold_resource/templates/shoulda_functional_test.rb +19 -0
  576. data/vendor/plugins/resource_controller/generators/scaffold_resource/templates/unit_test.rb +7 -0
  577. data/vendor/plugins/resource_controller/generators/scaffold_resource/templates/view__form.erb +6 -0
  578. data/vendor/plugins/resource_controller/generators/scaffold_resource/templates/view__form.haml +5 -0
  579. data/vendor/plugins/resource_controller/generators/scaffold_resource/templates/view_edit.erb +16 -0
  580. data/vendor/plugins/resource_controller/generators/scaffold_resource/templates/view_edit.haml +11 -0
  581. data/vendor/plugins/resource_controller/generators/scaffold_resource/templates/view_index.erb +22 -0
  582. data/vendor/plugins/resource_controller/generators/scaffold_resource/templates/view_index.haml +19 -0
  583. data/vendor/plugins/resource_controller/generators/scaffold_resource/templates/view_new.erb +12 -0
  584. data/vendor/plugins/resource_controller/generators/scaffold_resource/templates/view_new.haml +9 -0
  585. data/vendor/plugins/resource_controller/generators/scaffold_resource/templates/view_show.erb +9 -0
  586. data/vendor/plugins/resource_controller/generators/scaffold_resource/templates/view_show.haml +9 -0
  587. data/vendor/plugins/resource_controller/init.rb +6 -0
  588. data/vendor/plugins/resource_controller/install.rb +1 -0
  589. data/vendor/plugins/resource_controller/lib/resource_controller.rb +11 -0
  590. data/vendor/plugins/resource_controller/lib/resource_controller/accessors.rb +80 -0
  591. data/vendor/plugins/resource_controller/lib/resource_controller/action_options.rb +28 -0
  592. data/vendor/plugins/resource_controller/lib/resource_controller/actions.rb +75 -0
  593. data/vendor/plugins/resource_controller/lib/resource_controller/base.rb +15 -0
  594. data/vendor/plugins/resource_controller/lib/resource_controller/class_methods.rb +22 -0
  595. data/vendor/plugins/resource_controller/lib/resource_controller/controller.rb +63 -0
  596. data/vendor/plugins/resource_controller/lib/resource_controller/failable_action_options.rb +17 -0
  597. data/vendor/plugins/resource_controller/lib/resource_controller/helpers.rb +28 -0
  598. data/vendor/plugins/resource_controller/lib/resource_controller/helpers/current_objects.rb +69 -0
  599. data/vendor/plugins/resource_controller/lib/resource_controller/helpers/internal.rb +59 -0
  600. data/vendor/plugins/resource_controller/lib/resource_controller/helpers/nested.rb +45 -0
  601. data/vendor/plugins/resource_controller/lib/resource_controller/helpers/urls.rb +124 -0
  602. data/vendor/plugins/resource_controller/lib/resource_controller/response_collector.rb +21 -0
  603. data/vendor/plugins/resource_controller/lib/urligence.rb +50 -0
  604. data/vendor/plugins/resource_controller/release.rb +24 -0
  605. data/vendor/plugins/resource_controller/uninstall.rb +1 -0
  606. data/vendor/plugins/rspec/CHANGES +1045 -0
  607. data/vendor/plugins/rspec/MIT-LICENSE +20 -0
  608. data/vendor/plugins/rspec/README +71 -0
  609. data/vendor/plugins/rspec/Rakefile +279 -0
  610. data/vendor/plugins/rspec/TODO +2 -0
  611. data/vendor/plugins/rspec/UPGRADE +31 -0
  612. data/vendor/plugins/rspec/autotest/discover.rb +6 -0
  613. data/vendor/plugins/rspec/autotest/rspec.rb +1 -0
  614. data/vendor/plugins/rspec/bin/spec +4 -0
  615. data/vendor/plugins/rspec/bin/spec_translator +8 -0
  616. data/vendor/plugins/rspec/examples/pure/autogenerated_docstrings_example.rb +19 -0
  617. data/vendor/plugins/rspec/examples/pure/before_and_after_example.rb +40 -0
  618. data/vendor/plugins/rspec/examples/pure/behave_as_example.rb +45 -0
  619. data/vendor/plugins/rspec/examples/pure/custom_expectation_matchers.rb +54 -0
  620. data/vendor/plugins/rspec/examples/pure/custom_formatter.rb +12 -0
  621. data/vendor/plugins/rspec/examples/pure/dynamic_spec.rb +9 -0
  622. data/vendor/plugins/rspec/examples/pure/file_accessor.rb +19 -0
  623. data/vendor/plugins/rspec/examples/pure/file_accessor_spec.rb +38 -0
  624. data/vendor/plugins/rspec/examples/pure/greeter_spec.rb +31 -0
  625. data/vendor/plugins/rspec/examples/pure/helper_method_example.rb +14 -0
  626. data/vendor/plugins/rspec/examples/pure/io_processor.rb +8 -0
  627. data/vendor/plugins/rspec/examples/pure/io_processor_spec.rb +21 -0
  628. data/vendor/plugins/rspec/examples/pure/legacy_spec.rb +11 -0
  629. data/vendor/plugins/rspec/examples/pure/mocking_example.rb +27 -0
  630. data/vendor/plugins/rspec/examples/pure/multi_threaded_behaviour_runner.rb +28 -0
  631. data/vendor/plugins/rspec/examples/pure/nested_classes_example.rb +36 -0
  632. data/vendor/plugins/rspec/examples/pure/partial_mock_example.rb +28 -0
  633. data/vendor/plugins/rspec/examples/pure/pending_example.rb +20 -0
  634. data/vendor/plugins/rspec/examples/pure/predicate_example.rb +27 -0
  635. data/vendor/plugins/rspec/examples/pure/priority.txt +1 -0
  636. data/vendor/plugins/rspec/examples/pure/shared_example_group_example.rb +81 -0
  637. data/vendor/plugins/rspec/examples/pure/shared_stack_examples.rb +38 -0
  638. data/vendor/plugins/rspec/examples/pure/spec_helper.rb +3 -0
  639. data/vendor/plugins/rspec/examples/pure/stack.rb +36 -0
  640. data/vendor/plugins/rspec/examples/pure/stack_spec.rb +63 -0
  641. data/vendor/plugins/rspec/examples/pure/stack_spec_with_nested_example_groups.rb +67 -0
  642. data/vendor/plugins/rspec/examples/pure/stubbing_example.rb +69 -0
  643. data/vendor/plugins/rspec/examples/stories/adder.rb +13 -0
  644. data/vendor/plugins/rspec/examples/stories/addition +34 -0
  645. data/vendor/plugins/rspec/examples/stories/addition.rb +9 -0
  646. data/vendor/plugins/rspec/examples/stories/calculator.rb +65 -0
  647. data/vendor/plugins/rspec/examples/stories/game-of-life/README.txt +21 -0
  648. data/vendor/plugins/rspec/examples/stories/game-of-life/behaviour/everything.rb +6 -0
  649. data/vendor/plugins/rspec/examples/stories/game-of-life/behaviour/examples/examples.rb +3 -0
  650. data/vendor/plugins/rspec/examples/stories/game-of-life/behaviour/examples/game_behaviour.rb +35 -0
  651. data/vendor/plugins/rspec/examples/stories/game-of-life/behaviour/examples/grid_behaviour.rb +66 -0
  652. data/vendor/plugins/rspec/examples/stories/game-of-life/behaviour/stories/CellsWithLessThanTwoNeighboursDie.story +21 -0
  653. data/vendor/plugins/rspec/examples/stories/game-of-life/behaviour/stories/CellsWithMoreThanThreeNeighboursDie.story +21 -0
  654. data/vendor/plugins/rspec/examples/stories/game-of-life/behaviour/stories/EmptySpacesWithThreeNeighboursCreateACell.story +42 -0
  655. data/vendor/plugins/rspec/examples/stories/game-of-life/behaviour/stories/ICanCreateACell.story +42 -0
  656. data/vendor/plugins/rspec/examples/stories/game-of-life/behaviour/stories/ICanKillACell.story +17 -0
  657. data/vendor/plugins/rspec/examples/stories/game-of-life/behaviour/stories/TheGridWraps.story +53 -0
  658. data/vendor/plugins/rspec/examples/stories/game-of-life/behaviour/stories/create_a_cell.rb +52 -0
  659. data/vendor/plugins/rspec/examples/stories/game-of-life/behaviour/stories/helper.rb +6 -0
  660. data/vendor/plugins/rspec/examples/stories/game-of-life/behaviour/stories/kill_a_cell.rb +26 -0
  661. data/vendor/plugins/rspec/examples/stories/game-of-life/behaviour/stories/steps.rb +5 -0
  662. data/vendor/plugins/rspec/examples/stories/game-of-life/behaviour/stories/stories.rb +3 -0
  663. data/vendor/plugins/rspec/examples/stories/game-of-life/behaviour/stories/stories.txt +22 -0
  664. data/vendor/plugins/rspec/examples/stories/game-of-life/life.rb +3 -0
  665. data/vendor/plugins/rspec/examples/stories/game-of-life/life/game.rb +23 -0
  666. data/vendor/plugins/rspec/examples/stories/game-of-life/life/grid.rb +43 -0
  667. data/vendor/plugins/rspec/examples/stories/helper.rb +9 -0
  668. data/vendor/plugins/rspec/examples/stories/steps/addition_steps.rb +18 -0
  669. data/vendor/plugins/rspec/failing_examples/README.txt +7 -0
  670. data/vendor/plugins/rspec/failing_examples/diffing_spec.rb +36 -0
  671. data/vendor/plugins/rspec/failing_examples/failing_autogenerated_docstrings_example.rb +19 -0
  672. data/vendor/plugins/rspec/failing_examples/failure_in_setup.rb +10 -0
  673. data/vendor/plugins/rspec/failing_examples/failure_in_teardown.rb +10 -0
  674. data/vendor/plugins/rspec/failing_examples/mocking_example.rb +40 -0
  675. data/vendor/plugins/rspec/failing_examples/mocking_with_flexmock.rb +26 -0
  676. data/vendor/plugins/rspec/failing_examples/mocking_with_mocha.rb +25 -0
  677. data/vendor/plugins/rspec/failing_examples/mocking_with_rr.rb +27 -0
  678. data/vendor/plugins/rspec/failing_examples/partial_mock_example.rb +20 -0
  679. data/vendor/plugins/rspec/failing_examples/predicate_example.rb +29 -0
  680. data/vendor/plugins/rspec/failing_examples/raising_example.rb +47 -0
  681. data/vendor/plugins/rspec/failing_examples/spec_helper.rb +3 -0
  682. data/vendor/plugins/rspec/failing_examples/syntax_error_example.rb +7 -0
  683. data/vendor/plugins/rspec/failing_examples/team_spec.rb +44 -0
  684. data/vendor/plugins/rspec/failing_examples/timeout_behaviour.rb +7 -0
  685. data/vendor/plugins/rspec/init.rb +9 -0
  686. data/vendor/plugins/rspec/lib/autotest/discover.rb +3 -0
  687. data/vendor/plugins/rspec/lib/autotest/rspec.rb +74 -0
  688. data/vendor/plugins/rspec/lib/spec.rb +30 -0
  689. data/vendor/plugins/rspec/lib/spec/example.rb +12 -0
  690. data/vendor/plugins/rspec/lib/spec/example/configuration.rb +144 -0
  691. data/vendor/plugins/rspec/lib/spec/example/errors.rb +9 -0
  692. data/vendor/plugins/rspec/lib/spec/example/example_group.rb +16 -0
  693. data/vendor/plugins/rspec/lib/spec/example/example_group_factory.rb +62 -0
  694. data/vendor/plugins/rspec/lib/spec/example/example_group_methods.rb +424 -0
  695. data/vendor/plugins/rspec/lib/spec/example/example_matcher.rb +42 -0
  696. data/vendor/plugins/rspec/lib/spec/example/example_methods.rb +106 -0
  697. data/vendor/plugins/rspec/lib/spec/example/module_reopening_fix.rb +21 -0
  698. data/vendor/plugins/rspec/lib/spec/example/pending.rb +18 -0
  699. data/vendor/plugins/rspec/lib/spec/example/shared_example_group.rb +58 -0
  700. data/vendor/plugins/rspec/lib/spec/expectations.rb +56 -0
  701. data/vendor/plugins/rspec/lib/spec/expectations/differs/default.rb +66 -0
  702. data/vendor/plugins/rspec/lib/spec/expectations/errors.rb +12 -0
  703. data/vendor/plugins/rspec/lib/spec/expectations/extensions.rb +2 -0
  704. data/vendor/plugins/rspec/lib/spec/expectations/extensions/object.rb +71 -0
  705. data/vendor/plugins/rspec/lib/spec/expectations/extensions/string_and_symbol.rb +17 -0
  706. data/vendor/plugins/rspec/lib/spec/expectations/handler.rb +52 -0
  707. data/vendor/plugins/rspec/lib/spec/extensions.rb +3 -0
  708. data/vendor/plugins/rspec/lib/spec/extensions/class.rb +24 -0
  709. data/vendor/plugins/rspec/lib/spec/extensions/main.rb +102 -0
  710. data/vendor/plugins/rspec/lib/spec/extensions/object.rb +10 -0
  711. data/vendor/plugins/rspec/lib/spec/interop/test.rb +12 -0
  712. data/vendor/plugins/rspec/lib/spec/interop/test/unit/autorunner.rb +6 -0
  713. data/vendor/plugins/rspec/lib/spec/interop/test/unit/testcase.rb +61 -0
  714. data/vendor/plugins/rspec/lib/spec/interop/test/unit/testresult.rb +6 -0
  715. data/vendor/plugins/rspec/lib/spec/interop/test/unit/testsuite_adapter.rb +34 -0
  716. data/vendor/plugins/rspec/lib/spec/interop/test/unit/ui/console/testrunner.rb +61 -0
  717. data/vendor/plugins/rspec/lib/spec/matchers.rb +156 -0
  718. data/vendor/plugins/rspec/lib/spec/matchers/be.rb +224 -0
  719. data/vendor/plugins/rspec/lib/spec/matchers/be_close.rb +37 -0
  720. data/vendor/plugins/rspec/lib/spec/matchers/change.rb +144 -0
  721. data/vendor/plugins/rspec/lib/spec/matchers/eql.rb +43 -0
  722. data/vendor/plugins/rspec/lib/spec/matchers/equal.rb +43 -0
  723. data/vendor/plugins/rspec/lib/spec/matchers/exist.rb +17 -0
  724. data/vendor/plugins/rspec/lib/spec/matchers/has.rb +44 -0
  725. data/vendor/plugins/rspec/lib/spec/matchers/have.rb +145 -0
  726. data/vendor/plugins/rspec/lib/spec/matchers/include.rb +70 -0
  727. data/vendor/plugins/rspec/lib/spec/matchers/match.rb +41 -0
  728. data/vendor/plugins/rspec/lib/spec/matchers/operator_matcher.rb +73 -0
  729. data/vendor/plugins/rspec/lib/spec/matchers/raise_error.rb +109 -0
  730. data/vendor/plugins/rspec/lib/spec/matchers/respond_to.rb +45 -0
  731. data/vendor/plugins/rspec/lib/spec/matchers/satisfy.rb +47 -0
  732. data/vendor/plugins/rspec/lib/spec/matchers/simple_matcher.rb +29 -0
  733. data/vendor/plugins/rspec/lib/spec/matchers/throw_symbol.rb +74 -0
  734. data/vendor/plugins/rspec/lib/spec/mocks.rb +211 -0
  735. data/vendor/plugins/rspec/lib/spec/mocks/argument_constraint_matchers.rb +27 -0
  736. data/vendor/plugins/rspec/lib/spec/mocks/argument_expectation.rb +183 -0
  737. data/vendor/plugins/rspec/lib/spec/mocks/error_generator.rb +84 -0
  738. data/vendor/plugins/rspec/lib/spec/mocks/errors.rb +10 -0
  739. data/vendor/plugins/rspec/lib/spec/mocks/extensions/object.rb +3 -0
  740. data/vendor/plugins/rspec/lib/spec/mocks/message_expectation.rb +267 -0
  741. data/vendor/plugins/rspec/lib/spec/mocks/methods.rb +39 -0
  742. data/vendor/plugins/rspec/lib/spec/mocks/mock.rb +50 -0
  743. data/vendor/plugins/rspec/lib/spec/mocks/order_group.rb +29 -0
  744. data/vendor/plugins/rspec/lib/spec/mocks/proxy.rb +170 -0
  745. data/vendor/plugins/rspec/lib/spec/mocks/space.rb +28 -0
  746. data/vendor/plugins/rspec/lib/spec/mocks/spec_methods.rb +38 -0
  747. data/vendor/plugins/rspec/lib/spec/rake/spectask.rb +235 -0
  748. data/vendor/plugins/rspec/lib/spec/rake/verify_rcov.rb +52 -0
  749. data/vendor/plugins/rspec/lib/spec/runner.rb +202 -0
  750. data/vendor/plugins/rspec/lib/spec/runner/backtrace_tweaker.rb +57 -0
  751. data/vendor/plugins/rspec/lib/spec/runner/class_and_arguments_parser.rb +16 -0
  752. data/vendor/plugins/rspec/lib/spec/runner/command_line.rb +28 -0
  753. data/vendor/plugins/rspec/lib/spec/runner/drb_command_line.rb +20 -0
  754. data/vendor/plugins/rspec/lib/spec/runner/example_group_runner.rb +59 -0
  755. data/vendor/plugins/rspec/lib/spec/runner/formatter/base_formatter.rb +78 -0
  756. data/vendor/plugins/rspec/lib/spec/runner/formatter/base_text_formatter.rb +130 -0
  757. data/vendor/plugins/rspec/lib/spec/runner/formatter/failing_example_groups_formatter.rb +31 -0
  758. data/vendor/plugins/rspec/lib/spec/runner/formatter/failing_examples_formatter.rb +20 -0
  759. data/vendor/plugins/rspec/lib/spec/runner/formatter/html_formatter.rb +333 -0
  760. data/vendor/plugins/rspec/lib/spec/runner/formatter/profile_formatter.rb +47 -0
  761. data/vendor/plugins/rspec/lib/spec/runner/formatter/progress_bar_formatter.rb +30 -0
  762. data/vendor/plugins/rspec/lib/spec/runner/formatter/snippet_extractor.rb +52 -0
  763. data/vendor/plugins/rspec/lib/spec/runner/formatter/specdoc_formatter.rb +39 -0
  764. data/vendor/plugins/rspec/lib/spec/runner/formatter/story/html_formatter.rb +128 -0
  765. data/vendor/plugins/rspec/lib/spec/runner/formatter/story/plain_text_formatter.rb +131 -0
  766. data/vendor/plugins/rspec/lib/spec/runner/formatter/text_mate_formatter.rb +16 -0
  767. data/vendor/plugins/rspec/lib/spec/runner/heckle_runner.rb +72 -0
  768. data/vendor/plugins/rspec/lib/spec/runner/heckle_runner_unsupported.rb +10 -0
  769. data/vendor/plugins/rspec/lib/spec/runner/option_parser.rb +201 -0
  770. data/vendor/plugins/rspec/lib/spec/runner/options.rb +286 -0
  771. data/vendor/plugins/rspec/lib/spec/runner/reporter.rb +143 -0
  772. data/vendor/plugins/rspec/lib/spec/runner/spec_parser.rb +71 -0
  773. data/vendor/plugins/rspec/lib/spec/story.rb +10 -0
  774. data/vendor/plugins/rspec/lib/spec/story/extensions.rb +3 -0
  775. data/vendor/plugins/rspec/lib/spec/story/extensions/main.rb +86 -0
  776. data/vendor/plugins/rspec/lib/spec/story/extensions/regexp.rb +9 -0
  777. data/vendor/plugins/rspec/lib/spec/story/extensions/string.rb +9 -0
  778. data/vendor/plugins/rspec/lib/spec/story/given_scenario.rb +14 -0
  779. data/vendor/plugins/rspec/lib/spec/story/runner.rb +56 -0
  780. data/vendor/plugins/rspec/lib/spec/story/runner/plain_text_story_runner.rb +48 -0
  781. data/vendor/plugins/rspec/lib/spec/story/runner/scenario_collector.rb +18 -0
  782. data/vendor/plugins/rspec/lib/spec/story/runner/scenario_runner.rb +46 -0
  783. data/vendor/plugins/rspec/lib/spec/story/runner/story_mediator.rb +123 -0
  784. data/vendor/plugins/rspec/lib/spec/story/runner/story_parser.rb +227 -0
  785. data/vendor/plugins/rspec/lib/spec/story/runner/story_runner.rb +68 -0
  786. data/vendor/plugins/rspec/lib/spec/story/scenario.rb +14 -0
  787. data/vendor/plugins/rspec/lib/spec/story/step.rb +58 -0
  788. data/vendor/plugins/rspec/lib/spec/story/step_group.rb +89 -0
  789. data/vendor/plugins/rspec/lib/spec/story/step_mother.rb +37 -0
  790. data/vendor/plugins/rspec/lib/spec/story/story.rb +42 -0
  791. data/vendor/plugins/rspec/lib/spec/story/world.rb +125 -0
  792. data/vendor/plugins/rspec/lib/spec/translator.rb +114 -0
  793. data/vendor/plugins/rspec/lib/spec/version.rb +22 -0
  794. data/vendor/plugins/rspec/plugins/mock_frameworks/flexmock.rb +23 -0
  795. data/vendor/plugins/rspec/plugins/mock_frameworks/mocha.rb +19 -0
  796. data/vendor/plugins/rspec/plugins/mock_frameworks/rr.rb +21 -0
  797. data/vendor/plugins/rspec/plugins/mock_frameworks/rspec.rb +18 -0
  798. data/vendor/plugins/rspec/pre_commit/lib/pre_commit.rb +4 -0
  799. data/vendor/plugins/rspec/pre_commit/lib/pre_commit/core.rb +50 -0
  800. data/vendor/plugins/rspec/pre_commit/lib/pre_commit/pre_commit.rb +54 -0
  801. data/vendor/plugins/rspec/pre_commit/lib/pre_commit/rspec.rb +111 -0
  802. data/vendor/plugins/rspec/pre_commit/lib/pre_commit/rspec_on_rails.rb +313 -0
  803. data/vendor/plugins/rspec/pre_commit/spec/pre_commit/pre_commit_spec.rb +15 -0
  804. data/vendor/plugins/rspec/pre_commit/spec/pre_commit/rspec_on_rails_spec.rb +36 -0
  805. data/vendor/plugins/rspec/pre_commit/spec/spec_helper.rb +3 -0
  806. data/vendor/plugins/rspec/pre_commit/spec/spec_suite.rb +11 -0
  807. data/vendor/plugins/rspec/rake_tasks/examples.rake +7 -0
  808. data/vendor/plugins/rspec/rake_tasks/examples_with_rcov.rake +9 -0
  809. data/vendor/plugins/rspec/rake_tasks/failing_examples_with_html.rake +9 -0
  810. data/vendor/plugins/rspec/rake_tasks/verify_rcov.rake +7 -0
  811. data/vendor/plugins/rspec/report.html +4358 -0
  812. data/vendor/plugins/rspec/spec/README.jruby +15 -0
  813. data/vendor/plugins/rspec/spec/autotest/discover_spec.rb +19 -0
  814. data/vendor/plugins/rspec/spec/autotest/rspec_spec.rb +195 -0
  815. data/vendor/plugins/rspec/spec/autotest_helper.rb +6 -0
  816. data/vendor/plugins/rspec/spec/autotest_matchers.rb +47 -0
  817. data/vendor/plugins/rspec/spec/rspec_suite.rb +7 -0
  818. data/vendor/plugins/rspec/spec/ruby_forker.rb +13 -0
  819. data/vendor/plugins/rspec/spec/spec.opts +6 -0
  820. data/vendor/plugins/rspec/spec/spec/example/configuration_spec.rb +282 -0
  821. data/vendor/plugins/rspec/spec/spec/example/example_group_class_definition_spec.rb +48 -0
  822. data/vendor/plugins/rspec/spec/spec/example/example_group_factory_spec.rb +129 -0
  823. data/vendor/plugins/rspec/spec/spec/example/example_group_methods_spec.rb +489 -0
  824. data/vendor/plugins/rspec/spec/spec/example/example_group_spec.rb +711 -0
  825. data/vendor/plugins/rspec/spec/spec/example/example_matcher_spec.rb +96 -0
  826. data/vendor/plugins/rspec/spec/spec/example/example_methods_spec.rb +104 -0
  827. data/vendor/plugins/rspec/spec/spec/example/example_runner_spec.rb +194 -0
  828. data/vendor/plugins/rspec/spec/spec/example/example_spec.rb +53 -0
  829. data/vendor/plugins/rspec/spec/spec/example/nested_example_group_spec.rb +59 -0
  830. data/vendor/plugins/rspec/spec/spec/example/pending_module_spec.rb +31 -0
  831. data/vendor/plugins/rspec/spec/spec/example/predicate_matcher_spec.rb +21 -0
  832. data/vendor/plugins/rspec/spec/spec/example/shared_example_group_spec.rb +265 -0
  833. data/vendor/plugins/rspec/spec/spec/example/subclassing_example_group_spec.rb +25 -0
  834. data/vendor/plugins/rspec/spec/spec/expectations/differs/default_spec.rb +109 -0
  835. data/vendor/plugins/rspec/spec/spec/expectations/extensions/object_spec.rb +107 -0
  836. data/vendor/plugins/rspec/spec/spec/expectations/fail_with_spec.rb +71 -0
  837. data/vendor/plugins/rspec/spec/spec/extensions/main_spec.rb +76 -0
  838. data/vendor/plugins/rspec/spec/spec/interop/test/unit/resources/spec_that_fails.rb +10 -0
  839. data/vendor/plugins/rspec/spec/spec/interop/test/unit/resources/spec_that_passes.rb +10 -0
  840. data/vendor/plugins/rspec/spec/spec/interop/test/unit/resources/spec_with_errors.rb +10 -0
  841. data/vendor/plugins/rspec/spec/spec/interop/test/unit/resources/test_case_that_fails.rb +10 -0
  842. data/vendor/plugins/rspec/spec/spec/interop/test/unit/resources/test_case_that_passes.rb +10 -0
  843. data/vendor/plugins/rspec/spec/spec/interop/test/unit/resources/test_case_with_errors.rb +10 -0
  844. data/vendor/plugins/rspec/spec/spec/interop/test/unit/resources/testsuite_adapter_spec_with_test_unit.rb +38 -0
  845. data/vendor/plugins/rspec/spec/spec/interop/test/unit/spec_spec.rb +45 -0
  846. data/vendor/plugins/rspec/spec/spec/interop/test/unit/test_unit_spec_helper.rb +14 -0
  847. data/vendor/plugins/rspec/spec/spec/interop/test/unit/testcase_spec.rb +45 -0
  848. data/vendor/plugins/rspec/spec/spec/interop/test/unit/testsuite_adapter_spec.rb +9 -0
  849. data/vendor/plugins/rspec/spec/spec/matchers/be_close_spec.rb +39 -0
  850. data/vendor/plugins/rspec/spec/spec/matchers/be_spec.rb +224 -0
  851. data/vendor/plugins/rspec/spec/spec/matchers/change_spec.rb +319 -0
  852. data/vendor/plugins/rspec/spec/spec/matchers/description_generation_spec.rb +153 -0
  853. data/vendor/plugins/rspec/spec/spec/matchers/eql_spec.rb +28 -0
  854. data/vendor/plugins/rspec/spec/spec/matchers/equal_spec.rb +28 -0
  855. data/vendor/plugins/rspec/spec/spec/matchers/exist_spec.rb +57 -0
  856. data/vendor/plugins/rspec/spec/spec/matchers/handler_spec.rb +129 -0
  857. data/vendor/plugins/rspec/spec/spec/matchers/has_spec.rb +37 -0
  858. data/vendor/plugins/rspec/spec/spec/matchers/have_spec.rb +291 -0
  859. data/vendor/plugins/rspec/spec/spec/matchers/include_spec.rb +45 -0
  860. data/vendor/plugins/rspec/spec/spec/matchers/match_spec.rb +37 -0
  861. data/vendor/plugins/rspec/spec/spec/matchers/matcher_methods_spec.rb +78 -0
  862. data/vendor/plugins/rspec/spec/spec/matchers/mock_constraint_matchers_spec.rb +24 -0
  863. data/vendor/plugins/rspec/spec/spec/matchers/operator_matcher_spec.rb +158 -0
  864. data/vendor/plugins/rspec/spec/spec/matchers/raise_error_spec.rb +191 -0
  865. data/vendor/plugins/rspec/spec/spec/matchers/respond_to_spec.rb +54 -0
  866. data/vendor/plugins/rspec/spec/spec/matchers/satisfy_spec.rb +36 -0
  867. data/vendor/plugins/rspec/spec/spec/matchers/simple_matcher_spec.rb +31 -0
  868. data/vendor/plugins/rspec/spec/spec/matchers/throw_symbol_spec.rb +54 -0
  869. data/vendor/plugins/rspec/spec/spec/mocks/any_number_of_times_spec.rb +29 -0
  870. data/vendor/plugins/rspec/spec/spec/mocks/argument_expectation_spec.rb +23 -0
  871. data/vendor/plugins/rspec/spec/spec/mocks/at_least_spec.rb +97 -0
  872. data/vendor/plugins/rspec/spec/spec/mocks/at_most_spec.rb +93 -0
  873. data/vendor/plugins/rspec/spec/spec/mocks/bug_report_10260_spec.rb +8 -0
  874. data/vendor/plugins/rspec/spec/spec/mocks/bug_report_10263.rb +24 -0
  875. data/vendor/plugins/rspec/spec/spec/mocks/bug_report_11545_spec.rb +31 -0
  876. data/vendor/plugins/rspec/spec/spec/mocks/bug_report_15719_spec.rb +30 -0
  877. data/vendor/plugins/rspec/spec/spec/mocks/bug_report_7611_spec.rb +19 -0
  878. data/vendor/plugins/rspec/spec/spec/mocks/bug_report_7805_spec.rb +22 -0
  879. data/vendor/plugins/rspec/spec/spec/mocks/bug_report_8165_spec.rb +31 -0
  880. data/vendor/plugins/rspec/spec/spec/mocks/bug_report_8302_spec.rb +26 -0
  881. data/vendor/plugins/rspec/spec/spec/mocks/failing_mock_argument_constraints_spec.rb +115 -0
  882. data/vendor/plugins/rspec/spec/spec/mocks/mock_ordering_spec.rb +84 -0
  883. data/vendor/plugins/rspec/spec/spec/mocks/mock_space_spec.rb +54 -0
  884. data/vendor/plugins/rspec/spec/spec/mocks/mock_spec.rb +475 -0
  885. data/vendor/plugins/rspec/spec/spec/mocks/multiple_return_value_spec.rb +113 -0
  886. data/vendor/plugins/rspec/spec/spec/mocks/null_object_mock_spec.rb +40 -0
  887. data/vendor/plugins/rspec/spec/spec/mocks/once_counts_spec.rb +53 -0
  888. data/vendor/plugins/rspec/spec/spec/mocks/options_hash_spec.rb +45 -0
  889. data/vendor/plugins/rspec/spec/spec/mocks/partial_mock_spec.rb +106 -0
  890. data/vendor/plugins/rspec/spec/spec/mocks/partial_mock_using_mocks_directly_spec.rb +66 -0
  891. data/vendor/plugins/rspec/spec/spec/mocks/passing_mock_argument_constraints_spec.rb +154 -0
  892. data/vendor/plugins/rspec/spec/spec/mocks/precise_counts_spec.rb +52 -0
  893. data/vendor/plugins/rspec/spec/spec/mocks/record_messages_spec.rb +26 -0
  894. data/vendor/plugins/rspec/spec/spec/mocks/stub_spec.rb +181 -0
  895. data/vendor/plugins/rspec/spec/spec/mocks/twice_counts_spec.rb +67 -0
  896. data/vendor/plugins/rspec/spec/spec/package/bin_spec_spec.rb +14 -0
  897. data/vendor/plugins/rspec/spec/spec/runner/class_and_argument_parser_spec.rb +23 -0
  898. data/vendor/plugins/rspec/spec/spec/runner/command_line_spec.rb +147 -0
  899. data/vendor/plugins/rspec/spec/spec/runner/drb_command_line_spec.rb +92 -0
  900. data/vendor/plugins/rspec/spec/spec/runner/empty_file.txt +0 -0
  901. data/vendor/plugins/rspec/spec/spec/runner/examples.txt +2 -0
  902. data/vendor/plugins/rspec/spec/spec/runner/execution_context_spec.rb +31 -0
  903. data/vendor/plugins/rspec/spec/spec/runner/failed.txt +3 -0
  904. data/vendor/plugins/rspec/spec/spec/runner/formatter/failing_example_groups_formatter_spec.rb +44 -0
  905. data/vendor/plugins/rspec/spec/spec/runner/formatter/failing_examples_formatter_spec.rb +33 -0
  906. data/vendor/plugins/rspec/spec/spec/runner/formatter/html_formatted-1.8.4.html +365 -0
  907. data/vendor/plugins/rspec/spec/spec/runner/formatter/html_formatted-1.8.5-jruby.html +387 -0
  908. data/vendor/plugins/rspec/spec/spec/runner/formatter/html_formatted-1.8.5.html +371 -0
  909. data/vendor/plugins/rspec/spec/spec/runner/formatter/html_formatted-1.8.6-jruby.html +381 -0
  910. data/vendor/plugins/rspec/spec/spec/runner/formatter/html_formatted-1.8.6.html +365 -0
  911. data/vendor/plugins/rspec/spec/spec/runner/formatter/html_formatter_spec.rb +66 -0
  912. data/vendor/plugins/rspec/spec/spec/runner/formatter/profile_formatter_spec.rb +65 -0
  913. data/vendor/plugins/rspec/spec/spec/runner/formatter/progress_bar_formatter_spec.rb +127 -0
  914. data/vendor/plugins/rspec/spec/spec/runner/formatter/snippet_extractor_spec.rb +18 -0
  915. data/vendor/plugins/rspec/spec/spec/runner/formatter/spec_mate_formatter_spec.rb +103 -0
  916. data/vendor/plugins/rspec/spec/spec/runner/formatter/specdoc_formatter_spec.rb +126 -0
  917. data/vendor/plugins/rspec/spec/spec/runner/formatter/story/html_formatter_spec.rb +61 -0
  918. data/vendor/plugins/rspec/spec/spec/runner/formatter/story/plain_text_formatter_spec.rb +335 -0
  919. data/vendor/plugins/rspec/spec/spec/runner/formatter/text_mate_formatted-1.8.4.html +365 -0
  920. data/vendor/plugins/rspec/spec/spec/runner/formatter/text_mate_formatted-1.8.6.html +365 -0
  921. data/vendor/plugins/rspec/spec/spec/runner/heckle_runner_spec.rb +78 -0
  922. data/vendor/plugins/rspec/spec/spec/runner/heckler_spec.rb +13 -0
  923. data/vendor/plugins/rspec/spec/spec/runner/noisy_backtrace_tweaker_spec.rb +45 -0
  924. data/vendor/plugins/rspec/spec/spec/runner/option_parser_spec.rb +378 -0
  925. data/vendor/plugins/rspec/spec/spec/runner/options_spec.rb +364 -0
  926. data/vendor/plugins/rspec/spec/spec/runner/output_one_time_fixture.rb +7 -0
  927. data/vendor/plugins/rspec/spec/spec/runner/output_one_time_fixture_runner.rb +8 -0
  928. data/vendor/plugins/rspec/spec/spec/runner/output_one_time_spec.rb +16 -0
  929. data/vendor/plugins/rspec/spec/spec/runner/quiet_backtrace_tweaker_spec.rb +56 -0
  930. data/vendor/plugins/rspec/spec/spec/runner/reporter_spec.rb +189 -0
  931. data/vendor/plugins/rspec/spec/spec/runner/resources/a_bar.rb +0 -0
  932. data/vendor/plugins/rspec/spec/spec/runner/resources/a_foo.rb +0 -0
  933. data/vendor/plugins/rspec/spec/spec/runner/resources/a_spec.rb +1 -0
  934. data/vendor/plugins/rspec/spec/spec/runner/spec.opts +2 -0
  935. data/vendor/plugins/rspec/spec/spec/runner/spec_parser/spec_parser_fixture.rb +70 -0
  936. data/vendor/plugins/rspec/spec/spec/runner/spec_parser_spec.rb +79 -0
  937. data/vendor/plugins/rspec/spec/spec/runner/spec_spaced.opts +2 -0
  938. data/vendor/plugins/rspec/spec/spec/runner_spec.rb +11 -0
  939. data/vendor/plugins/rspec/spec/spec/spec_classes.rb +133 -0
  940. data/vendor/plugins/rspec/spec/spec/story/builders.rb +46 -0
  941. data/vendor/plugins/rspec/spec/spec/story/extensions/main_spec.rb +161 -0
  942. data/vendor/plugins/rspec/spec/spec/story/extensions_spec.rb +14 -0
  943. data/vendor/plugins/rspec/spec/spec/story/given_scenario_spec.rb +27 -0
  944. data/vendor/plugins/rspec/spec/spec/story/runner/plain_text_story_runner_spec.rb +92 -0
  945. data/vendor/plugins/rspec/spec/spec/story/runner/scenario_collector_spec.rb +27 -0
  946. data/vendor/plugins/rspec/spec/spec/story/runner/scenario_runner_spec.rb +142 -0
  947. data/vendor/plugins/rspec/spec/spec/story/runner/story_mediator_spec.rb +133 -0
  948. data/vendor/plugins/rspec/spec/spec/story/runner/story_parser_spec.rb +384 -0
  949. data/vendor/plugins/rspec/spec/spec/story/runner/story_runner_spec.rb +256 -0
  950. data/vendor/plugins/rspec/spec/spec/story/runner_spec.rb +106 -0
  951. data/vendor/plugins/rspec/spec/spec/story/scenario_spec.rb +20 -0
  952. data/vendor/plugins/rspec/spec/spec/story/step_group_spec.rb +157 -0
  953. data/vendor/plugins/rspec/spec/spec/story/step_mother_spec.rb +72 -0
  954. data/vendor/plugins/rspec/spec/spec/story/step_spec.rb +200 -0
  955. data/vendor/plugins/rspec/spec/spec/story/story_helper.rb +2 -0
  956. data/vendor/plugins/rspec/spec/spec/story/story_spec.rb +86 -0
  957. data/vendor/plugins/rspec/spec/spec/story/world_spec.rb +423 -0
  958. data/vendor/plugins/rspec/spec/spec/translator_spec.rb +265 -0
  959. data/vendor/plugins/rspec/spec/spec_helper.rb +103 -0
  960. data/vendor/plugins/rspec/stories/all.rb +5 -0
  961. data/vendor/plugins/rspec/stories/example_groups/autogenerated_docstrings +45 -0
  962. data/vendor/plugins/rspec/stories/example_groups/example_group_with_should_methods +17 -0
  963. data/vendor/plugins/rspec/stories/example_groups/nested_groups +17 -0
  964. data/vendor/plugins/rspec/stories/example_groups/output +25 -0
  965. data/vendor/plugins/rspec/stories/example_groups/stories.rb +7 -0
  966. data/vendor/plugins/rspec/stories/helper.rb +6 -0
  967. data/vendor/plugins/rspec/stories/interop/examples_and_tests_together +30 -0
  968. data/vendor/plugins/rspec/stories/interop/stories.rb +7 -0
  969. data/vendor/plugins/rspec/stories/interop/test_case_with_should_methods +17 -0
  970. data/vendor/plugins/rspec/stories/pending_stories/README +3 -0
  971. data/vendor/plugins/rspec/stories/resources/helpers/cmdline.rb +9 -0
  972. data/vendor/plugins/rspec/stories/resources/helpers/story_helper.rb +16 -0
  973. data/vendor/plugins/rspec/stories/resources/matchers/smart_match.rb +37 -0
  974. data/vendor/plugins/rspec/stories/resources/spec/example_group_with_should_methods.rb +12 -0
  975. data/vendor/plugins/rspec/stories/resources/spec/simple_spec.rb +8 -0
  976. data/vendor/plugins/rspec/stories/resources/steps/running_rspec.rb +50 -0
  977. data/vendor/plugins/rspec/stories/resources/stories/failing_story.rb +15 -0
  978. data/vendor/plugins/rspec/stories/resources/test/spec_and_test_together.rb +57 -0
  979. data/vendor/plugins/rspec/stories/resources/test/test_case_with_should_methods.rb +30 -0
  980. data/vendor/plugins/rspec/story_server/prototype/javascripts/builder.js +136 -0
  981. data/vendor/plugins/rspec/story_server/prototype/javascripts/controls.js +972 -0
  982. data/vendor/plugins/rspec/story_server/prototype/javascripts/dragdrop.js +976 -0
  983. data/vendor/plugins/rspec/story_server/prototype/javascripts/effects.js +1117 -0
  984. data/vendor/plugins/rspec/story_server/prototype/javascripts/prototype.js +4140 -0
  985. data/vendor/plugins/rspec/story_server/prototype/javascripts/rspec.js +149 -0
  986. data/vendor/plugins/rspec/story_server/prototype/javascripts/scriptaculous.js +58 -0
  987. data/vendor/plugins/rspec/story_server/prototype/javascripts/slider.js +276 -0
  988. data/vendor/plugins/rspec/story_server/prototype/javascripts/sound.js +55 -0
  989. data/vendor/plugins/rspec/story_server/prototype/javascripts/unittest.js +568 -0
  990. data/vendor/plugins/rspec/story_server/prototype/lib/server.rb +24 -0
  991. data/vendor/plugins/rspec/story_server/prototype/stories.html +176 -0
  992. data/vendor/plugins/rspec/story_server/prototype/stylesheets/rspec.css +136 -0
  993. data/vendor/plugins/rspec/story_server/prototype/stylesheets/test.css +90 -0
  994. metadata +1172 -61
  995. data/README +0 -49
  996. data/app/controllers/admin/users_controller.rb +0 -45
  997. data/app/models/tax_treatment.rb +0 -2
  998. data/app/views/admin/users/_menu.rhtml +0 -5
  999. data/app/views/admin/users/edit.rhtml +0 -8
  1000. data/app/views/admin/users/index.rhtml +0 -26
  1001. data/app/views/admin/users/new.rhtml +0 -6
  1002. data/app/views/admin/users/show.rhtml +0 -9
  1003. data/app/views/layouts/simple.rhtml +0 -37
  1004. data/app/views/shared/_tax_treatments.rhtml +0 -12
  1005. data/lib/sales_tax.rb +0 -26
  1006. data/lib/tasks/spree_sample_data.rake +0 -38
@@ -0,0 +1,1088 @@
1
+ // Copyright (c) 2005, 2006 Thomas Fuchs (http://script.aculo.us, http://mir.aculo.us)
2
+ // Contributors:
3
+ // Justin Palmer (http://encytemedia.com/)
4
+ // Mark Pilgrim (http://diveintomark.org/)
5
+ // Martin Bialasinki
6
+ //
7
+ // script.aculo.us is freely distributable under the terms of an MIT-style license.
8
+ // For details, see the script.aculo.us web site: http://script.aculo.us/
9
+
10
+ // converts rgb() and #xxx to #xxxxxx format,
11
+ // returns self (or first argument) if not convertable
12
+ String.prototype.parseColor = function() {
13
+ var color = '#';
14
+ if(this.slice(0,4) == 'rgb(') {
15
+ var cols = this.slice(4,this.length-1).split(',');
16
+ var i=0; do { color += parseInt(cols[i]).toColorPart() } while (++i<3);
17
+ } else {
18
+ if(this.slice(0,1) == '#') {
19
+ if(this.length==4) for(var i=1;i<4;i++) color += (this.charAt(i) + this.charAt(i)).toLowerCase();
20
+ if(this.length==7) color = this.toLowerCase();
21
+ }
22
+ }
23
+ return(color.length==7 ? color : (arguments[0] || this));
24
+ }
25
+
26
+ /*--------------------------------------------------------------------------*/
27
+
28
+ Element.collectTextNodes = function(element) {
29
+ return $A($(element).childNodes).collect( function(node) {
30
+ return (node.nodeType==3 ? node.nodeValue :
31
+ (node.hasChildNodes() ? Element.collectTextNodes(node) : ''));
32
+ }).flatten().join('');
33
+ }
34
+
35
+ Element.collectTextNodesIgnoreClass = function(element, className) {
36
+ return $A($(element).childNodes).collect( function(node) {
37
+ return (node.nodeType==3 ? node.nodeValue :
38
+ ((node.hasChildNodes() && !Element.hasClassName(node,className)) ?
39
+ Element.collectTextNodesIgnoreClass(node, className) : ''));
40
+ }).flatten().join('');
41
+ }
42
+
43
+ Element.setContentZoom = function(element, percent) {
44
+ element = $(element);
45
+ element.setStyle({fontSize: (percent/100) + 'em'});
46
+ if(navigator.appVersion.indexOf('AppleWebKit')>0) window.scrollBy(0,0);
47
+ return element;
48
+ }
49
+
50
+ Element.getOpacity = function(element){
51
+ element = $(element);
52
+ var opacity;
53
+ if (opacity = element.getStyle('opacity'))
54
+ return parseFloat(opacity);
55
+ if (opacity = (element.getStyle('filter') || '').match(/alpha\(opacity=(.*)\)/))
56
+ if(opacity[1]) return parseFloat(opacity[1]) / 100;
57
+ return 1.0;
58
+ }
59
+
60
+ Element.setOpacity = function(element, value){
61
+ element= $(element);
62
+ if (value == 1){
63
+ element.setStyle({ opacity:
64
+ (/Gecko/.test(navigator.userAgent) && !/Konqueror|Safari|KHTML/.test(navigator.userAgent)) ?
65
+ 0.999999 : 1.0 });
66
+ if(/MSIE/.test(navigator.userAgent) && !window.opera)
67
+ element.setStyle({filter: Element.getStyle(element,'filter').replace(/alpha\([^\)]*\)/gi,'')});
68
+ } else {
69
+ if(value < 0.00001) value = 0;
70
+ element.setStyle({opacity: value});
71
+ if(/MSIE/.test(navigator.userAgent) && !window.opera)
72
+ element.setStyle(
73
+ { filter: element.getStyle('filter').replace(/alpha\([^\)]*\)/gi,'') +
74
+ 'alpha(opacity='+value*100+')' });
75
+ }
76
+ return element;
77
+ }
78
+
79
+ Element.getInlineOpacity = function(element){
80
+ return $(element).style.opacity || '';
81
+ }
82
+
83
+ Element.forceRerendering = function(element) {
84
+ try {
85
+ element = $(element);
86
+ var n = document.createTextNode(' ');
87
+ element.appendChild(n);
88
+ element.removeChild(n);
89
+ } catch(e) { }
90
+ };
91
+
92
+ /*--------------------------------------------------------------------------*/
93
+
94
+ Array.prototype.call = function() {
95
+ var args = arguments;
96
+ this.each(function(f){ f.apply(this, args) });
97
+ }
98
+
99
+ /*--------------------------------------------------------------------------*/
100
+
101
+ var Effect = {
102
+ _elementDoesNotExistError: {
103
+ name: 'ElementDoesNotExistError',
104
+ message: 'The specified DOM element does not exist, but is required for this effect to operate'
105
+ },
106
+ tagifyText: function(element) {
107
+ if(typeof Builder == 'undefined')
108
+ throw("Effect.tagifyText requires including script.aculo.us' builder.js library");
109
+
110
+ var tagifyStyle = 'position:relative';
111
+ if(/MSIE/.test(navigator.userAgent) && !window.opera) tagifyStyle += ';zoom:1';
112
+
113
+ element = $(element);
114
+ $A(element.childNodes).each( function(child) {
115
+ if(child.nodeType==3) {
116
+ child.nodeValue.toArray().each( function(character) {
117
+ element.insertBefore(
118
+ Builder.node('span',{style: tagifyStyle},
119
+ character == ' ' ? String.fromCharCode(160) : character),
120
+ child);
121
+ });
122
+ Element.remove(child);
123
+ }
124
+ });
125
+ },
126
+ multiple: function(element, effect) {
127
+ var elements;
128
+ if(((typeof element == 'object') ||
129
+ (typeof element == 'function')) &&
130
+ (element.length))
131
+ elements = element;
132
+ else
133
+ elements = $(element).childNodes;
134
+
135
+ var options = Object.extend({
136
+ speed: 0.1,
137
+ delay: 0.0
138
+ }, arguments[2] || {});
139
+ var masterDelay = options.delay;
140
+
141
+ $A(elements).each( function(element, index) {
142
+ new effect(element, Object.extend(options, { delay: index * options.speed + masterDelay }));
143
+ });
144
+ },
145
+ PAIRS: {
146
+ 'slide': ['SlideDown','SlideUp'],
147
+ 'blind': ['BlindDown','BlindUp'],
148
+ 'appear': ['Appear','Fade']
149
+ },
150
+ toggle: function(element, effect) {
151
+ element = $(element);
152
+ effect = (effect || 'appear').toLowerCase();
153
+ var options = Object.extend({
154
+ queue: { position:'end', scope:(element.id || 'global'), limit: 1 }
155
+ }, arguments[2] || {});
156
+ Effect[element.visible() ?
157
+ Effect.PAIRS[effect][1] : Effect.PAIRS[effect][0]](element, options);
158
+ }
159
+ };
160
+
161
+ var Effect2 = Effect; // deprecated
162
+
163
+ /* ------------- transitions ------------- */
164
+
165
+ Effect.Transitions = {
166
+ linear: Prototype.K,
167
+ sinoidal: function(pos) {
168
+ return (-Math.cos(pos*Math.PI)/2) + 0.5;
169
+ },
170
+ reverse: function(pos) {
171
+ return 1-pos;
172
+ },
173
+ flicker: function(pos) {
174
+ return ((-Math.cos(pos*Math.PI)/4) + 0.75) + Math.random()/4;
175
+ },
176
+ wobble: function(pos) {
177
+ return (-Math.cos(pos*Math.PI*(9*pos))/2) + 0.5;
178
+ },
179
+ pulse: function(pos, pulses) {
180
+ pulses = pulses || 5;
181
+ return (
182
+ Math.round((pos % (1/pulses)) * pulses) == 0 ?
183
+ ((pos * pulses * 2) - Math.floor(pos * pulses * 2)) :
184
+ 1 - ((pos * pulses * 2) - Math.floor(pos * pulses * 2))
185
+ );
186
+ },
187
+ none: function(pos) {
188
+ return 0;
189
+ },
190
+ full: function(pos) {
191
+ return 1;
192
+ }
193
+ };
194
+
195
+ /* ------------- core effects ------------- */
196
+
197
+ Effect.ScopedQueue = Class.create();
198
+ Object.extend(Object.extend(Effect.ScopedQueue.prototype, Enumerable), {
199
+ initialize: function() {
200
+ this.effects = [];
201
+ this.interval = null;
202
+ },
203
+ _each: function(iterator) {
204
+ this.effects._each(iterator);
205
+ },
206
+ add: function(effect) {
207
+ var timestamp = new Date().getTime();
208
+
209
+ var position = (typeof effect.options.queue == 'string') ?
210
+ effect.options.queue : effect.options.queue.position;
211
+
212
+ switch(position) {
213
+ case 'front':
214
+ // move unstarted effects after this effect
215
+ this.effects.findAll(function(e){ return e.state=='idle' }).each( function(e) {
216
+ e.startOn += effect.finishOn;
217
+ e.finishOn += effect.finishOn;
218
+ });
219
+ break;
220
+ case 'with-last':
221
+ timestamp = this.effects.pluck('startOn').max() || timestamp;
222
+ break;
223
+ case 'end':
224
+ // start effect after last queued effect has finished
225
+ timestamp = this.effects.pluck('finishOn').max() || timestamp;
226
+ break;
227
+ }
228
+
229
+ effect.startOn += timestamp;
230
+ effect.finishOn += timestamp;
231
+
232
+ if(!effect.options.queue.limit || (this.effects.length < effect.options.queue.limit))
233
+ this.effects.push(effect);
234
+
235
+ if(!this.interval)
236
+ this.interval = setInterval(this.loop.bind(this), 40);
237
+ },
238
+ remove: function(effect) {
239
+ this.effects = this.effects.reject(function(e) { return e==effect });
240
+ if(this.effects.length == 0) {
241
+ clearInterval(this.interval);
242
+ this.interval = null;
243
+ }
244
+ },
245
+ loop: function() {
246
+ var timePos = new Date().getTime();
247
+ this.effects.invoke('loop', timePos);
248
+ }
249
+ });
250
+
251
+ Effect.Queues = {
252
+ instances: $H(),
253
+ get: function(queueName) {
254
+ if(typeof queueName != 'string') return queueName;
255
+
256
+ if(!this.instances[queueName])
257
+ this.instances[queueName] = new Effect.ScopedQueue();
258
+
259
+ return this.instances[queueName];
260
+ }
261
+ }
262
+ Effect.Queue = Effect.Queues.get('global');
263
+
264
+ Effect.DefaultOptions = {
265
+ transition: Effect.Transitions.sinoidal,
266
+ duration: 1.0, // seconds
267
+ fps: 25.0, // max. 25fps due to Effect.Queue implementation
268
+ sync: false, // true for combining
269
+ from: 0.0,
270
+ to: 1.0,
271
+ delay: 0.0,
272
+ queue: 'parallel'
273
+ }
274
+
275
+ Effect.Base = function() {};
276
+ Effect.Base.prototype = {
277
+ position: null,
278
+ start: function(options) {
279
+ this.options = Object.extend(Object.extend({},Effect.DefaultOptions), options || {});
280
+ this.currentFrame = 0;
281
+ this.state = 'idle';
282
+ this.startOn = this.options.delay*1000;
283
+ this.finishOn = this.startOn + (this.options.duration*1000);
284
+ this.event('beforeStart');
285
+ if(!this.options.sync)
286
+ Effect.Queues.get(typeof this.options.queue == 'string' ?
287
+ 'global' : this.options.queue.scope).add(this);
288
+ },
289
+ loop: function(timePos) {
290
+ if(timePos >= this.startOn) {
291
+ if(timePos >= this.finishOn) {
292
+ this.render(1.0);
293
+ this.cancel();
294
+ this.event('beforeFinish');
295
+ if(this.finish) this.finish();
296
+ this.event('afterFinish');
297
+ return;
298
+ }
299
+ var pos = (timePos - this.startOn) / (this.finishOn - this.startOn);
300
+ var frame = Math.round(pos * this.options.fps * this.options.duration);
301
+ if(frame > this.currentFrame) {
302
+ this.render(pos);
303
+ this.currentFrame = frame;
304
+ }
305
+ }
306
+ },
307
+ render: function(pos) {
308
+ if(this.state == 'idle') {
309
+ this.state = 'running';
310
+ this.event('beforeSetup');
311
+ if(this.setup) this.setup();
312
+ this.event('afterSetup');
313
+ }
314
+ if(this.state == 'running') {
315
+ if(this.options.transition) pos = this.options.transition(pos);
316
+ pos *= (this.options.to-this.options.from);
317
+ pos += this.options.from;
318
+ this.position = pos;
319
+ this.event('beforeUpdate');
320
+ if(this.update) this.update(pos);
321
+ this.event('afterUpdate');
322
+ }
323
+ },
324
+ cancel: function() {
325
+ if(!this.options.sync)
326
+ Effect.Queues.get(typeof this.options.queue == 'string' ?
327
+ 'global' : this.options.queue.scope).remove(this);
328
+ this.state = 'finished';
329
+ },
330
+ event: function(eventName) {
331
+ if(this.options[eventName + 'Internal']) this.options[eventName + 'Internal'](this);
332
+ if(this.options[eventName]) this.options[eventName](this);
333
+ },
334
+ inspect: function() {
335
+ return '#<Effect:' + $H(this).inspect() + ',options:' + $H(this.options).inspect() + '>';
336
+ }
337
+ }
338
+
339
+ Effect.Parallel = Class.create();
340
+ Object.extend(Object.extend(Effect.Parallel.prototype, Effect.Base.prototype), {
341
+ initialize: function(effects) {
342
+ this.effects = effects || [];
343
+ this.start(arguments[1]);
344
+ },
345
+ update: function(position) {
346
+ this.effects.invoke('render', position);
347
+ },
348
+ finish: function(position) {
349
+ this.effects.each( function(effect) {
350
+ effect.render(1.0);
351
+ effect.cancel();
352
+ effect.event('beforeFinish');
353
+ if(effect.finish) effect.finish(position);
354
+ effect.event('afterFinish');
355
+ });
356
+ }
357
+ });
358
+
359
+ Effect.Event = Class.create();
360
+ Object.extend(Object.extend(Effect.Event.prototype, Effect.Base.prototype), {
361
+ initialize: function() {
362
+ var options = Object.extend({
363
+ duration: 0
364
+ }, arguments[0] || {});
365
+ this.start(options);
366
+ },
367
+ update: Prototype.emptyFunction
368
+ });
369
+
370
+ Effect.Opacity = Class.create();
371
+ Object.extend(Object.extend(Effect.Opacity.prototype, Effect.Base.prototype), {
372
+ initialize: function(element) {
373
+ this.element = $(element);
374
+ if(!this.element) throw(Effect._elementDoesNotExistError);
375
+ // make this work on IE on elements without 'layout'
376
+ if(/MSIE/.test(navigator.userAgent) && !window.opera && (!this.element.currentStyle.hasLayout))
377
+ this.element.setStyle({zoom: 1});
378
+ var options = Object.extend({
379
+ from: this.element.getOpacity() || 0.0,
380
+ to: 1.0
381
+ }, arguments[1] || {});
382
+ this.start(options);
383
+ },
384
+ update: function(position) {
385
+ this.element.setOpacity(position);
386
+ }
387
+ });
388
+
389
+ Effect.Move = Class.create();
390
+ Object.extend(Object.extend(Effect.Move.prototype, Effect.Base.prototype), {
391
+ initialize: function(element) {
392
+ this.element = $(element);
393
+ if(!this.element) throw(Effect._elementDoesNotExistError);
394
+ var options = Object.extend({
395
+ x: 0,
396
+ y: 0,
397
+ mode: 'relative'
398
+ }, arguments[1] || {});
399
+ this.start(options);
400
+ },
401
+ setup: function() {
402
+ // Bug in Opera: Opera returns the "real" position of a static element or
403
+ // relative element that does not have top/left explicitly set.
404
+ // ==> Always set top and left for position relative elements in your stylesheets
405
+ // (to 0 if you do not need them)
406
+ this.element.makePositioned();
407
+ this.originalLeft = parseFloat(this.element.getStyle('left') || '0');
408
+ this.originalTop = parseFloat(this.element.getStyle('top') || '0');
409
+ if(this.options.mode == 'absolute') {
410
+ // absolute movement, so we need to calc deltaX and deltaY
411
+ this.options.x = this.options.x - this.originalLeft;
412
+ this.options.y = this.options.y - this.originalTop;
413
+ }
414
+ },
415
+ update: function(position) {
416
+ this.element.setStyle({
417
+ left: Math.round(this.options.x * position + this.originalLeft) + 'px',
418
+ top: Math.round(this.options.y * position + this.originalTop) + 'px'
419
+ });
420
+ }
421
+ });
422
+
423
+ // for backwards compatibility
424
+ Effect.MoveBy = function(element, toTop, toLeft) {
425
+ return new Effect.Move(element,
426
+ Object.extend({ x: toLeft, y: toTop }, arguments[3] || {}));
427
+ };
428
+
429
+ Effect.Scale = Class.create();
430
+ Object.extend(Object.extend(Effect.Scale.prototype, Effect.Base.prototype), {
431
+ initialize: function(element, percent) {
432
+ this.element = $(element);
433
+ if(!this.element) throw(Effect._elementDoesNotExistError);
434
+ var options = Object.extend({
435
+ scaleX: true,
436
+ scaleY: true,
437
+ scaleContent: true,
438
+ scaleFromCenter: false,
439
+ scaleMode: 'box', // 'box' or 'contents' or {} with provided values
440
+ scaleFrom: 100.0,
441
+ scaleTo: percent
442
+ }, arguments[2] || {});
443
+ this.start(options);
444
+ },
445
+ setup: function() {
446
+ this.restoreAfterFinish = this.options.restoreAfterFinish || false;
447
+ this.elementPositioning = this.element.getStyle('position');
448
+
449
+ this.originalStyle = {};
450
+ ['top','left','width','height','fontSize'].each( function(k) {
451
+ this.originalStyle[k] = this.element.style[k];
452
+ }.bind(this));
453
+
454
+ this.originalTop = this.element.offsetTop;
455
+ this.originalLeft = this.element.offsetLeft;
456
+
457
+ var fontSize = this.element.getStyle('font-size') || '100%';
458
+ ['em','px','%','pt'].each( function(fontSizeType) {
459
+ if(fontSize.indexOf(fontSizeType)>0) {
460
+ this.fontSize = parseFloat(fontSize);
461
+ this.fontSizeType = fontSizeType;
462
+ }
463
+ }.bind(this));
464
+
465
+ this.factor = (this.options.scaleTo - this.options.scaleFrom)/100;
466
+
467
+ this.dims = null;
468
+ if(this.options.scaleMode=='box')
469
+ this.dims = [this.element.offsetHeight, this.element.offsetWidth];
470
+ if(/^content/.test(this.options.scaleMode))
471
+ this.dims = [this.element.scrollHeight, this.element.scrollWidth];
472
+ if(!this.dims)
473
+ this.dims = [this.options.scaleMode.originalHeight,
474
+ this.options.scaleMode.originalWidth];
475
+ },
476
+ update: function(position) {
477
+ var currentScale = (this.options.scaleFrom/100.0) + (this.factor * position);
478
+ if(this.options.scaleContent && this.fontSize)
479
+ this.element.setStyle({fontSize: this.fontSize * currentScale + this.fontSizeType });
480
+ this.setDimensions(this.dims[0] * currentScale, this.dims[1] * currentScale);
481
+ },
482
+ finish: function(position) {
483
+ if(this.restoreAfterFinish) this.element.setStyle(this.originalStyle);
484
+ },
485
+ setDimensions: function(height, width) {
486
+ var d = {};
487
+ if(this.options.scaleX) d.width = Math.round(width) + 'px';
488
+ if(this.options.scaleY) d.height = Math.round(height) + 'px';
489
+ if(this.options.scaleFromCenter) {
490
+ var topd = (height - this.dims[0])/2;
491
+ var leftd = (width - this.dims[1])/2;
492
+ if(this.elementPositioning == 'absolute') {
493
+ if(this.options.scaleY) d.top = this.originalTop-topd + 'px';
494
+ if(this.options.scaleX) d.left = this.originalLeft-leftd + 'px';
495
+ } else {
496
+ if(this.options.scaleY) d.top = -topd + 'px';
497
+ if(this.options.scaleX) d.left = -leftd + 'px';
498
+ }
499
+ }
500
+ this.element.setStyle(d);
501
+ }
502
+ });
503
+
504
+ Effect.Highlight = Class.create();
505
+ Object.extend(Object.extend(Effect.Highlight.prototype, Effect.Base.prototype), {
506
+ initialize: function(element) {
507
+ this.element = $(element);
508
+ if(!this.element) throw(Effect._elementDoesNotExistError);
509
+ var options = Object.extend({ startcolor: '#ffff99' }, arguments[1] || {});
510
+ this.start(options);
511
+ },
512
+ setup: function() {
513
+ // Prevent executing on elements not in the layout flow
514
+ if(this.element.getStyle('display')=='none') { this.cancel(); return; }
515
+ // Disable background image during the effect
516
+ this.oldStyle = {
517
+ backgroundImage: this.element.getStyle('background-image') };
518
+ this.element.setStyle({backgroundImage: 'none'});
519
+ if(!this.options.endcolor)
520
+ this.options.endcolor = this.element.getStyle('background-color').parseColor('#ffffff');
521
+ if(!this.options.restorecolor)
522
+ this.options.restorecolor = this.element.getStyle('background-color');
523
+ // init color calculations
524
+ this._base = $R(0,2).map(function(i){ return parseInt(this.options.startcolor.slice(i*2+1,i*2+3),16) }.bind(this));
525
+ this._delta = $R(0,2).map(function(i){ return parseInt(this.options.endcolor.slice(i*2+1,i*2+3),16)-this._base[i] }.bind(this));
526
+ },
527
+ update: function(position) {
528
+ this.element.setStyle({backgroundColor: $R(0,2).inject('#',function(m,v,i){
529
+ return m+(Math.round(this._base[i]+(this._delta[i]*position)).toColorPart()); }.bind(this)) });
530
+ },
531
+ finish: function() {
532
+ this.element.setStyle(Object.extend(this.oldStyle, {
533
+ backgroundColor: this.options.restorecolor
534
+ }));
535
+ }
536
+ });
537
+
538
+ Effect.ScrollTo = Class.create();
539
+ Object.extend(Object.extend(Effect.ScrollTo.prototype, Effect.Base.prototype), {
540
+ initialize: function(element) {
541
+ this.element = $(element);
542
+ this.start(arguments[1] || {});
543
+ },
544
+ setup: function() {
545
+ Position.prepare();
546
+ var offsets = Position.cumulativeOffset(this.element);
547
+ if(this.options.offset) offsets[1] += this.options.offset;
548
+ var max = window.innerHeight ?
549
+ window.height - window.innerHeight :
550
+ document.body.scrollHeight -
551
+ (document.documentElement.clientHeight ?
552
+ document.documentElement.clientHeight : document.body.clientHeight);
553
+ this.scrollStart = Position.deltaY;
554
+ this.delta = (offsets[1] > max ? max : offsets[1]) - this.scrollStart;
555
+ },
556
+ update: function(position) {
557
+ Position.prepare();
558
+ window.scrollTo(Position.deltaX,
559
+ this.scrollStart + (position*this.delta));
560
+ }
561
+ });
562
+
563
+ /* ------------- combination effects ------------- */
564
+
565
+ Effect.Fade = function(element) {
566
+ element = $(element);
567
+ var oldOpacity = element.getInlineOpacity();
568
+ var options = Object.extend({
569
+ from: element.getOpacity() || 1.0,
570
+ to: 0.0,
571
+ afterFinishInternal: function(effect) {
572
+ if(effect.options.to!=0) return;
573
+ effect.element.hide().setStyle({opacity: oldOpacity});
574
+ }}, arguments[1] || {});
575
+ return new Effect.Opacity(element,options);
576
+ }
577
+
578
+ Effect.Appear = function(element) {
579
+ element = $(element);
580
+ var options = Object.extend({
581
+ from: (element.getStyle('display') == 'none' ? 0.0 : element.getOpacity() || 0.0),
582
+ to: 1.0,
583
+ // force Safari to render floated elements properly
584
+ afterFinishInternal: function(effect) {
585
+ effect.element.forceRerendering();
586
+ },
587
+ beforeSetup: function(effect) {
588
+ effect.element.setOpacity(effect.options.from).show();
589
+ }}, arguments[1] || {});
590
+ return new Effect.Opacity(element,options);
591
+ }
592
+
593
+ Effect.Puff = function(element) {
594
+ element = $(element);
595
+ var oldStyle = {
596
+ opacity: element.getInlineOpacity(),
597
+ position: element.getStyle('position'),
598
+ top: element.style.top,
599
+ left: element.style.left,
600
+ width: element.style.width,
601
+ height: element.style.height
602
+ };
603
+ return new Effect.Parallel(
604
+ [ new Effect.Scale(element, 200,
605
+ { sync: true, scaleFromCenter: true, scaleContent: true, restoreAfterFinish: true }),
606
+ new Effect.Opacity(element, { sync: true, to: 0.0 } ) ],
607
+ Object.extend({ duration: 1.0,
608
+ beforeSetupInternal: function(effect) {
609
+ Position.absolutize(effect.effects[0].element)
610
+ },
611
+ afterFinishInternal: function(effect) {
612
+ effect.effects[0].element.hide().setStyle(oldStyle); }
613
+ }, arguments[1] || {})
614
+ );
615
+ }
616
+
617
+ Effect.BlindUp = function(element) {
618
+ element = $(element);
619
+ element.makeClipping();
620
+ return new Effect.Scale(element, 0,
621
+ Object.extend({ scaleContent: false,
622
+ scaleX: false,
623
+ restoreAfterFinish: true,
624
+ afterFinishInternal: function(effect) {
625
+ effect.element.hide().undoClipping();
626
+ }
627
+ }, arguments[1] || {})
628
+ );
629
+ }
630
+
631
+ Effect.BlindDown = function(element) {
632
+ element = $(element);
633
+ var elementDimensions = element.getDimensions();
634
+ return new Effect.Scale(element, 100, Object.extend({
635
+ scaleContent: false,
636
+ scaleX: false,
637
+ scaleFrom: 0,
638
+ scaleMode: {originalHeight: elementDimensions.height, originalWidth: elementDimensions.width},
639
+ restoreAfterFinish: true,
640
+ afterSetup: function(effect) {
641
+ effect.element.makeClipping().setStyle({height: '0px'}).show();
642
+ },
643
+ afterFinishInternal: function(effect) {
644
+ effect.element.undoClipping();
645
+ }
646
+ }, arguments[1] || {}));
647
+ }
648
+
649
+ Effect.SwitchOff = function(element) {
650
+ element = $(element);
651
+ var oldOpacity = element.getInlineOpacity();
652
+ return new Effect.Appear(element, Object.extend({
653
+ duration: 0.4,
654
+ from: 0,
655
+ transition: Effect.Transitions.flicker,
656
+ afterFinishInternal: function(effect) {
657
+ new Effect.Scale(effect.element, 1, {
658
+ duration: 0.3, scaleFromCenter: true,
659
+ scaleX: false, scaleContent: false, restoreAfterFinish: true,
660
+ beforeSetup: function(effect) {
661
+ effect.element.makePositioned().makeClipping();
662
+ },
663
+ afterFinishInternal: function(effect) {
664
+ effect.element.hide().undoClipping().undoPositioned().setStyle({opacity: oldOpacity});
665
+ }
666
+ })
667
+ }
668
+ }, arguments[1] || {}));
669
+ }
670
+
671
+ Effect.DropOut = function(element) {
672
+ element = $(element);
673
+ var oldStyle = {
674
+ top: element.getStyle('top'),
675
+ left: element.getStyle('left'),
676
+ opacity: element.getInlineOpacity() };
677
+ return new Effect.Parallel(
678
+ [ new Effect.Move(element, {x: 0, y: 100, sync: true }),
679
+ new Effect.Opacity(element, { sync: true, to: 0.0 }) ],
680
+ Object.extend(
681
+ { duration: 0.5,
682
+ beforeSetup: function(effect) {
683
+ effect.effects[0].element.makePositioned();
684
+ },
685
+ afterFinishInternal: function(effect) {
686
+ effect.effects[0].element.hide().undoPositioned().setStyle(oldStyle);
687
+ }
688
+ }, arguments[1] || {}));
689
+ }
690
+
691
+ Effect.Shake = function(element) {
692
+ element = $(element);
693
+ var oldStyle = {
694
+ top: element.getStyle('top'),
695
+ left: element.getStyle('left') };
696
+ return new Effect.Move(element,
697
+ { x: 20, y: 0, duration: 0.05, afterFinishInternal: function(effect) {
698
+ new Effect.Move(effect.element,
699
+ { x: -40, y: 0, duration: 0.1, afterFinishInternal: function(effect) {
700
+ new Effect.Move(effect.element,
701
+ { x: 40, y: 0, duration: 0.1, afterFinishInternal: function(effect) {
702
+ new Effect.Move(effect.element,
703
+ { x: -40, y: 0, duration: 0.1, afterFinishInternal: function(effect) {
704
+ new Effect.Move(effect.element,
705
+ { x: 40, y: 0, duration: 0.1, afterFinishInternal: function(effect) {
706
+ new Effect.Move(effect.element,
707
+ { x: -20, y: 0, duration: 0.05, afterFinishInternal: function(effect) {
708
+ effect.element.undoPositioned().setStyle(oldStyle);
709
+ }}) }}) }}) }}) }}) }});
710
+ }
711
+
712
+ Effect.SlideDown = function(element) {
713
+ element = $(element).cleanWhitespace();
714
+ // SlideDown need to have the content of the element wrapped in a container element with fixed height!
715
+ var oldInnerBottom = element.down().getStyle('bottom');
716
+ var elementDimensions = element.getDimensions();
717
+ return new Effect.Scale(element, 100, Object.extend({
718
+ scaleContent: false,
719
+ scaleX: false,
720
+ scaleFrom: window.opera ? 0 : 1,
721
+ scaleMode: {originalHeight: elementDimensions.height, originalWidth: elementDimensions.width},
722
+ restoreAfterFinish: true,
723
+ afterSetup: function(effect) {
724
+ effect.element.makePositioned();
725
+ effect.element.down().makePositioned();
726
+ if(window.opera) effect.element.setStyle({top: ''});
727
+ effect.element.makeClipping().setStyle({height: '0px'}).show();
728
+ },
729
+ afterUpdateInternal: function(effect) {
730
+ effect.element.down().setStyle({bottom:
731
+ (effect.dims[0] - effect.element.clientHeight) + 'px' });
732
+ },
733
+ afterFinishInternal: function(effect) {
734
+ effect.element.undoClipping().undoPositioned();
735
+ effect.element.down().undoPositioned().setStyle({bottom: oldInnerBottom}); }
736
+ }, arguments[1] || {})
737
+ );
738
+ }
739
+
740
+ Effect.SlideUp = function(element) {
741
+ element = $(element).cleanWhitespace();
742
+ var oldInnerBottom = element.down().getStyle('bottom');
743
+ return new Effect.Scale(element, window.opera ? 0 : 1,
744
+ Object.extend({ scaleContent: false,
745
+ scaleX: false,
746
+ scaleMode: 'box',
747
+ scaleFrom: 100,
748
+ restoreAfterFinish: true,
749
+ beforeStartInternal: function(effect) {
750
+ effect.element.makePositioned();
751
+ effect.element.down().makePositioned();
752
+ if(window.opera) effect.element.setStyle({top: ''});
753
+ effect.element.makeClipping().show();
754
+ },
755
+ afterUpdateInternal: function(effect) {
756
+ effect.element.down().setStyle({bottom:
757
+ (effect.dims[0] - effect.element.clientHeight) + 'px' });
758
+ },
759
+ afterFinishInternal: function(effect) {
760
+ effect.element.hide().undoClipping().undoPositioned().setStyle({bottom: oldInnerBottom});
761
+ effect.element.down().undoPositioned();
762
+ }
763
+ }, arguments[1] || {})
764
+ );
765
+ }
766
+
767
+ // Bug in opera makes the TD containing this element expand for a instance after finish
768
+ Effect.Squish = function(element) {
769
+ return new Effect.Scale(element, window.opera ? 1 : 0, {
770
+ restoreAfterFinish: true,
771
+ beforeSetup: function(effect) {
772
+ effect.element.makeClipping();
773
+ },
774
+ afterFinishInternal: function(effect) {
775
+ effect.element.hide().undoClipping();
776
+ }
777
+ });
778
+ }
779
+
780
+ Effect.Grow = function(element) {
781
+ element = $(element);
782
+ var options = Object.extend({
783
+ direction: 'center',
784
+ moveTransition: Effect.Transitions.sinoidal,
785
+ scaleTransition: Effect.Transitions.sinoidal,
786
+ opacityTransition: Effect.Transitions.full
787
+ }, arguments[1] || {});
788
+ var oldStyle = {
789
+ top: element.style.top,
790
+ left: element.style.left,
791
+ height: element.style.height,
792
+ width: element.style.width,
793
+ opacity: element.getInlineOpacity() };
794
+
795
+ var dims = element.getDimensions();
796
+ var initialMoveX, initialMoveY;
797
+ var moveX, moveY;
798
+
799
+ switch (options.direction) {
800
+ case 'top-left':
801
+ initialMoveX = initialMoveY = moveX = moveY = 0;
802
+ break;
803
+ case 'top-right':
804
+ initialMoveX = dims.width;
805
+ initialMoveY = moveY = 0;
806
+ moveX = -dims.width;
807
+ break;
808
+ case 'bottom-left':
809
+ initialMoveX = moveX = 0;
810
+ initialMoveY = dims.height;
811
+ moveY = -dims.height;
812
+ break;
813
+ case 'bottom-right':
814
+ initialMoveX = dims.width;
815
+ initialMoveY = dims.height;
816
+ moveX = -dims.width;
817
+ moveY = -dims.height;
818
+ break;
819
+ case 'center':
820
+ initialMoveX = dims.width / 2;
821
+ initialMoveY = dims.height / 2;
822
+ moveX = -dims.width / 2;
823
+ moveY = -dims.height / 2;
824
+ break;
825
+ }
826
+
827
+ return new Effect.Move(element, {
828
+ x: initialMoveX,
829
+ y: initialMoveY,
830
+ duration: 0.01,
831
+ beforeSetup: function(effect) {
832
+ effect.element.hide().makeClipping().makePositioned();
833
+ },
834
+ afterFinishInternal: function(effect) {
835
+ new Effect.Parallel(
836
+ [ new Effect.Opacity(effect.element, { sync: true, to: 1.0, from: 0.0, transition: options.opacityTransition }),
837
+ new Effect.Move(effect.element, { x: moveX, y: moveY, sync: true, transition: options.moveTransition }),
838
+ new Effect.Scale(effect.element, 100, {
839
+ scaleMode: { originalHeight: dims.height, originalWidth: dims.width },
840
+ sync: true, scaleFrom: window.opera ? 1 : 0, transition: options.scaleTransition, restoreAfterFinish: true})
841
+ ], Object.extend({
842
+ beforeSetup: function(effect) {
843
+ effect.effects[0].element.setStyle({height: '0px'}).show();
844
+ },
845
+ afterFinishInternal: function(effect) {
846
+ effect.effects[0].element.undoClipping().undoPositioned().setStyle(oldStyle);
847
+ }
848
+ }, options)
849
+ )
850
+ }
851
+ });
852
+ }
853
+
854
+ Effect.Shrink = function(element) {
855
+ element = $(element);
856
+ var options = Object.extend({
857
+ direction: 'center',
858
+ moveTransition: Effect.Transitions.sinoidal,
859
+ scaleTransition: Effect.Transitions.sinoidal,
860
+ opacityTransition: Effect.Transitions.none
861
+ }, arguments[1] || {});
862
+ var oldStyle = {
863
+ top: element.style.top,
864
+ left: element.style.left,
865
+ height: element.style.height,
866
+ width: element.style.width,
867
+ opacity: element.getInlineOpacity() };
868
+
869
+ var dims = element.getDimensions();
870
+ var moveX, moveY;
871
+
872
+ switch (options.direction) {
873
+ case 'top-left':
874
+ moveX = moveY = 0;
875
+ break;
876
+ case 'top-right':
877
+ moveX = dims.width;
878
+ moveY = 0;
879
+ break;
880
+ case 'bottom-left':
881
+ moveX = 0;
882
+ moveY = dims.height;
883
+ break;
884
+ case 'bottom-right':
885
+ moveX = dims.width;
886
+ moveY = dims.height;
887
+ break;
888
+ case 'center':
889
+ moveX = dims.width / 2;
890
+ moveY = dims.height / 2;
891
+ break;
892
+ }
893
+
894
+ return new Effect.Parallel(
895
+ [ new Effect.Opacity(element, { sync: true, to: 0.0, from: 1.0, transition: options.opacityTransition }),
896
+ new Effect.Scale(element, window.opera ? 1 : 0, { sync: true, transition: options.scaleTransition, restoreAfterFinish: true}),
897
+ new Effect.Move(element, { x: moveX, y: moveY, sync: true, transition: options.moveTransition })
898
+ ], Object.extend({
899
+ beforeStartInternal: function(effect) {
900
+ effect.effects[0].element.makePositioned().makeClipping();
901
+ },
902
+ afterFinishInternal: function(effect) {
903
+ effect.effects[0].element.hide().undoClipping().undoPositioned().setStyle(oldStyle); }
904
+ }, options)
905
+ );
906
+ }
907
+
908
+ Effect.Pulsate = function(element) {
909
+ element = $(element);
910
+ var options = arguments[1] || {};
911
+ var oldOpacity = element.getInlineOpacity();
912
+ var transition = options.transition || Effect.Transitions.sinoidal;
913
+ var reverser = function(pos){ return transition(1-Effect.Transitions.pulse(pos, options.pulses)) };
914
+ reverser.bind(transition);
915
+ return new Effect.Opacity(element,
916
+ Object.extend(Object.extend({ duration: 2.0, from: 0,
917
+ afterFinishInternal: function(effect) { effect.element.setStyle({opacity: oldOpacity}); }
918
+ }, options), {transition: reverser}));
919
+ }
920
+
921
+ Effect.Fold = function(element) {
922
+ element = $(element);
923
+ var oldStyle = {
924
+ top: element.style.top,
925
+ left: element.style.left,
926
+ width: element.style.width,
927
+ height: element.style.height };
928
+ element.makeClipping();
929
+ return new Effect.Scale(element, 5, Object.extend({
930
+ scaleContent: false,
931
+ scaleX: false,
932
+ afterFinishInternal: function(effect) {
933
+ new Effect.Scale(element, 1, {
934
+ scaleContent: false,
935
+ scaleY: false,
936
+ afterFinishInternal: function(effect) {
937
+ effect.element.hide().undoClipping().setStyle(oldStyle);
938
+ } });
939
+ }}, arguments[1] || {}));
940
+ };
941
+
942
+ Effect.Morph = Class.create();
943
+ Object.extend(Object.extend(Effect.Morph.prototype, Effect.Base.prototype), {
944
+ initialize: function(element) {
945
+ this.element = $(element);
946
+ if(!this.element) throw(Effect._elementDoesNotExistError);
947
+ var options = Object.extend({
948
+ style: ''
949
+ }, arguments[1] || {});
950
+ this.start(options);
951
+ },
952
+ setup: function(){
953
+ function parseColor(color){
954
+ if(!color || ['rgba(0, 0, 0, 0)','transparent'].include(color)) color = '#ffffff';
955
+ color = color.parseColor();
956
+ return $R(0,2).map(function(i){
957
+ return parseInt( color.slice(i*2+1,i*2+3), 16 )
958
+ });
959
+ }
960
+ this.transforms = this.options.style.parseStyle().map(function(property){
961
+ var originalValue = this.element.getStyle(property[0]);
962
+ return $H({
963
+ style: property[0],
964
+ originalValue: property[1].unit=='color' ?
965
+ parseColor(originalValue) : parseFloat(originalValue || 0),
966
+ targetValue: property[1].unit=='color' ?
967
+ parseColor(property[1].value) : property[1].value,
968
+ unit: property[1].unit
969
+ });
970
+ }.bind(this)).reject(function(transform){
971
+ return (
972
+ (transform.originalValue == transform.targetValue) ||
973
+ (
974
+ transform.unit != 'color' &&
975
+ (isNaN(transform.originalValue) || isNaN(transform.targetValue))
976
+ )
977
+ )
978
+ });
979
+ },
980
+ update: function(position) {
981
+ var style = $H(), value = null;
982
+ this.transforms.each(function(transform){
983
+ value = transform.unit=='color' ?
984
+ $R(0,2).inject('#',function(m,v,i){
985
+ return m+(Math.round(transform.originalValue[i]+
986
+ (transform.targetValue[i] - transform.originalValue[i])*position)).toColorPart() }) :
987
+ transform.originalValue + Math.round(
988
+ ((transform.targetValue - transform.originalValue) * position) * 1000)/1000 + transform.unit;
989
+ style[transform.style] = value;
990
+ });
991
+ this.element.setStyle(style);
992
+ }
993
+ });
994
+
995
+ Effect.Transform = Class.create();
996
+ Object.extend(Effect.Transform.prototype, {
997
+ initialize: function(tracks){
998
+ this.tracks = [];
999
+ this.options = arguments[1] || {};
1000
+ this.addTracks(tracks);
1001
+ },
1002
+ addTracks: function(tracks){
1003
+ tracks.each(function(track){
1004
+ var data = $H(track).values().first();
1005
+ this.tracks.push($H({
1006
+ ids: $H(track).keys().first(),
1007
+ effect: Effect.Morph,
1008
+ options: { style: data }
1009
+ }));
1010
+ }.bind(this));
1011
+ return this;
1012
+ },
1013
+ play: function(){
1014
+ return new Effect.Parallel(
1015
+ this.tracks.map(function(track){
1016
+ var elements = [$(track.ids) || $$(track.ids)].flatten();
1017
+ return elements.map(function(e){ return new track.effect(e, Object.extend({ sync:true }, track.options)) });
1018
+ }).flatten(),
1019
+ this.options
1020
+ );
1021
+ }
1022
+ });
1023
+
1024
+ Element.CSS_PROPERTIES = ['azimuth', 'backgroundAttachment', 'backgroundColor', 'backgroundImage',
1025
+ 'backgroundPosition', 'backgroundRepeat', 'borderBottomColor', 'borderBottomStyle',
1026
+ 'borderBottomWidth', 'borderCollapse', 'borderLeftColor', 'borderLeftStyle', 'borderLeftWidth',
1027
+ 'borderRightColor', 'borderRightStyle', 'borderRightWidth', 'borderSpacing', 'borderTopColor',
1028
+ 'borderTopStyle', 'borderTopWidth', 'bottom', 'captionSide', 'clear', 'clip', 'color', 'content',
1029
+ 'counterIncrement', 'counterReset', 'cssFloat', 'cueAfter', 'cueBefore', 'cursor', 'direction',
1030
+ 'display', 'elevation', 'emptyCells', 'fontFamily', 'fontSize', 'fontSizeAdjust', 'fontStretch',
1031
+ 'fontStyle', 'fontVariant', 'fontWeight', 'height', 'left', 'letterSpacing', 'lineHeight',
1032
+ 'listStyleImage', 'listStylePosition', 'listStyleType', 'marginBottom', 'marginLeft', 'marginRight',
1033
+ 'marginTop', 'markerOffset', 'marks', 'maxHeight', 'maxWidth', 'minHeight', 'minWidth', 'opacity',
1034
+ 'orphans', 'outlineColor', 'outlineOffset', 'outlineStyle', 'outlineWidth', 'overflowX', 'overflowY',
1035
+ 'paddingBottom', 'paddingLeft', 'paddingRight', 'paddingTop', 'page', 'pageBreakAfter', 'pageBreakBefore',
1036
+ 'pageBreakInside', 'pauseAfter', 'pauseBefore', 'pitch', 'pitchRange', 'position', 'quotes',
1037
+ 'richness', 'right', 'size', 'speakHeader', 'speakNumeral', 'speakPunctuation', 'speechRate', 'stress',
1038
+ 'tableLayout', 'textAlign', 'textDecoration', 'textIndent', 'textShadow', 'textTransform', 'top',
1039
+ 'unicodeBidi', 'verticalAlign', 'visibility', 'voiceFamily', 'volume', 'whiteSpace', 'widows',
1040
+ 'width', 'wordSpacing', 'zIndex'];
1041
+
1042
+ Element.CSS_LENGTH = /^(([\+\-]?[0-9\.]+)(em|ex|px|in|cm|mm|pt|pc|\%))|0$/;
1043
+
1044
+ String.prototype.parseStyle = function(){
1045
+ var element = Element.extend(document.createElement('div'));
1046
+ element.innerHTML = '<div style="' + this + '"></div>';
1047
+ var style = element.down().style, styleRules = $H();
1048
+
1049
+ Element.CSS_PROPERTIES.each(function(property){
1050
+ if(style[property]) styleRules[property] = style[property];
1051
+ });
1052
+
1053
+ var result = $H();
1054
+
1055
+ styleRules.each(function(pair){
1056
+ var property = pair[0], value = pair[1], unit = null;
1057
+
1058
+ if(value.parseColor('#zzzzzz') != '#zzzzzz') {
1059
+ value = value.parseColor();
1060
+ unit = 'color';
1061
+ } else if(Element.CSS_LENGTH.test(value))
1062
+ var components = value.match(/^([\+\-]?[0-9\.]+)(.*)$/),
1063
+ value = parseFloat(components[1]), unit = (components.length == 3) ? components[2] : null;
1064
+
1065
+ result[property.underscore().dasherize()] = $H({ value:value, unit:unit });
1066
+ }.bind(this));
1067
+
1068
+ return result;
1069
+ };
1070
+
1071
+ Element.morph = function(element, style) {
1072
+ new Effect.Morph(element, Object.extend({ style: style }, arguments[2] || {}));
1073
+ return element;
1074
+ };
1075
+
1076
+ ['setOpacity','getOpacity','getInlineOpacity','forceRerendering','setContentZoom',
1077
+ 'collectTextNodes','collectTextNodesIgnoreClass','morph'].each(
1078
+ function(f) { Element.Methods[f] = Element[f]; }
1079
+ );
1080
+
1081
+ Element.Methods.visualEffect = function(element, effect, options) {
1082
+ s = effect.gsub(/_/, '-').camelize();
1083
+ effect_class = s.charAt(0).toUpperCase() + s.substring(1);
1084
+ new Effect[effect_class](element, options);
1085
+ return $(element);
1086
+ };
1087
+
1088
+ Element.addMethods();