zena 1.2.7 → 1.2.8

Sign up to get free protection for your applications and to get access to all the features.
Files changed (407) hide show
  1. data/History.txt +80 -25
  2. data/Rakefile +2 -2
  3. data/app/controllers/columns_controller.rb +2 -2
  4. data/app/controllers/nodes_controller.rb +22 -29
  5. data/app/controllers/user_sessions_controller.rb +35 -10
  6. data/app/controllers/users_controller.rb +2 -2
  7. data/app/controllers/versions_controller.rb +2 -2
  8. data/app/models/group.rb +15 -1
  9. data/app/models/node.rb +109 -8
  10. data/app/models/role.rb +4 -0
  11. data/app/models/site.rb +64 -58
  12. data/app/models/template.rb +1 -1
  13. data/app/models/user.rb +135 -29
  14. data/app/models/user_session.rb +0 -1
  15. data/app/models/virtual_class.rb +11 -6
  16. data/app/views/columns/_form.html.erb +3 -1
  17. data/app/views/columns/_li.html.erb +1 -1
  18. data/app/views/columns/create.rjs +1 -1
  19. data/app/views/groups/_form.rhtml +16 -13
  20. data/app/views/relations/_form.erb +18 -6
  21. data/app/views/sites/_form.erb +12 -6
  22. data/app/views/users/_form.rhtml +23 -8
  23. data/app/views/users/_li.rhtml +14 -3
  24. data/app/views/users/index.rhtml +1 -1
  25. data/app/views/virtual_classes/_form.erb +12 -2
  26. data/app/views/zafu/default/Node-+login.zafu +8 -1
  27. data/app/views/zafu/default/Node-+search.zafu +1 -1
  28. data/bricks/acls/lib/bricks/acls.rb +1 -0
  29. data/bricks/acls/zena/migrate/20130903150356_longer_names_for_acl.rb +9 -0
  30. data/bricks/acls/zena/test/integration/acl_integration_test.rb +2 -2
  31. data/bricks/currency/lib/bricks/currency.rb +120 -0
  32. data/bricks/currency/zena/test/unit/currency_test.rb +43 -0
  33. data/bricks/fs_skin/lib/bricks/fs_skin.rb +1 -1
  34. data/bricks/fs_skin/zena/skins/blog/Node-+search.zafu +1 -1
  35. data/bricks/fs_skin/zena/skins/blog/Node.zafu +1 -1
  36. data/bricks/fs_skin/zena/test/unit/fs_skin_view_test.rb +35 -0
  37. data/bricks/pdf/lib/bricks/pdf.rb +1 -1
  38. data/bricks/sphinx/lib/bricks/sphinx.rb +2 -0
  39. data/bricks/sphinx/zena/init.rb +14 -0
  40. data/bricks/tags/zena/test/zafu/tags.yml +5 -1
  41. data/bricks/worker/lib/bricks/worker.rb +3 -2
  42. data/bricks/zena/zena/migrate/20130829093753_add_versioned_flag_to_column.rb +10 -0
  43. data/bricks/zena/zena/migrate/20130903084909_count_login_attempts.rb +11 -0
  44. data/bricks/zena/zena/migrate/20131104153126_index_fullpath.rb +10 -0
  45. data/bricks/zena/zena/migrate/20131104210011_rebuild_fullpath_after_change.rb +10 -0
  46. data/bricks/zena/zena/migrate/20131105160420_add_skin_id_to_sites.rb +9 -0
  47. data/bricks/zena/zena/migrate/20131105175822_add_profile_to_users.rb +11 -0
  48. data/bricks/zena/zena/migrate/20140213120038_fix_idx_scope.rb +13 -0
  49. data/bricks/zena/zena/migrate/20140628140247_add_site_readonly.rb +9 -0
  50. data/config/bricks.yml +8 -4
  51. data/config/gems.yml +5 -3
  52. data/db/init/base/skins/default/Node-+login.zafu +8 -1
  53. data/db/init/base/skins/default/Node-+search.zafu +1 -1
  54. data/lib/bricks/loader.rb +5 -5
  55. data/lib/gettext_strings.rb +3 -0
  56. data/lib/tasks/zena.rake +25 -22
  57. data/lib/zafu/process/context.rb +4 -0
  58. data/lib/zena/acts/secure_node.rb +3 -3
  59. data/lib/zena/app.rb +1 -0
  60. data/lib/zena/deploy.rb +1 -1
  61. data/lib/zena/deploy/template.rb +1 -1
  62. data/lib/zena/foxy_parser.rb +5 -2
  63. data/lib/zena/info.rb +1 -1
  64. data/lib/zena/site_worker.rb +2 -2
  65. data/lib/zena/test_controller.rb +5 -2
  66. data/lib/zena/use/action.rb +9 -2
  67. data/lib/zena/use/ajax.rb +20 -4
  68. data/lib/zena/use/ancestry.rb +89 -15
  69. data/lib/zena/use/authlogic.rb +8 -2
  70. data/lib/zena/use/context.rb +1 -0
  71. data/lib/zena/use/display.rb +1 -97
  72. data/lib/zena/use/forms.rb +28 -8
  73. data/lib/zena/use/html_tags.rb +16 -7
  74. data/lib/zena/use/i18n.rb +1 -1
  75. data/lib/zena/use/prop_eval.rb +6 -1
  76. data/lib/zena/use/query_node.rb +69 -4
  77. data/lib/zena/use/recursion.rb +1 -1
  78. data/lib/zena/use/refactor.rb +5 -2
  79. data/lib/zena/use/relations.rb +1 -0
  80. data/lib/zena/use/rendering.rb +7 -4
  81. data/lib/zena/use/test_helper.rb +8 -4
  82. data/lib/zena/use/upload.rb +14 -0
  83. data/lib/zena/use/urls.rb +39 -23
  84. data/lib/zena/use/version_hash.rb +5 -2
  85. data/lib/zena/use/workflow.rb +116 -70
  86. data/lib/zena/use/zafu_eval.rb +41 -0
  87. data/lib/zena/use/zafu_safe_definitions.rb +1 -0
  88. data/lib/zena/use/zafu_templates.rb +32 -26
  89. data/lib/zena/use/zazen.rb +8 -7
  90. data/locale/app.pot +5 -1
  91. data/locale/de/LC_MESSAGES/zena.mo +0 -0
  92. data/locale/de/zena.po +385 -281
  93. data/locale/en/LC_MESSAGES/zena.mo +0 -0
  94. data/locale/en/zena.po +378 -271
  95. data/locale/fr/LC_MESSAGES/zena.mo +0 -0
  96. data/locale/fr/zena.po +387 -272
  97. data/locale/it/LC_MESSAGES/zena.mo +0 -0
  98. data/locale/it/zena.po +433 -404
  99. data/locale/zena.pot +362 -268
  100. data/public/javascripts/grid.js +280 -104
  101. data/public/javascripts/zena.js +43 -15
  102. data/public/stylesheets/admin.css +8 -2
  103. data/public/stylesheets/grid.css +5 -2
  104. data/public/stylesheets/popup.css +1 -1
  105. data/test/fixtures/files/TestNode.zafu +51 -0
  106. data/test/functional/nodes_controller_test.rb +20 -5
  107. data/test/functional/user_sessions_controller_test.rb +41 -6
  108. data/test/functional/users_controller_test.rb +1 -2
  109. data/test/integration/navigation_test.rb +22 -4
  110. data/test/integration/query_node/basic.yml +7 -0
  111. data/test/integration/query_node/complex.yml +1 -1
  112. data/test/integration/query_node/errors.yml +1 -1
  113. data/test/integration/query_node/filters.yml +34 -1
  114. data/test/integration/query_node/relations.yml +6 -13
  115. data/test/integration/query_node_test.rb +22 -3
  116. data/test/integration/zafu_compiler/action.yml +1 -1
  117. data/test/integration/zafu_compiler/alias_site.yml +52 -0
  118. data/test/integration/zafu_compiler/complex.yml +1 -1
  119. data/test/integration/zafu_compiler/complex_ok.yml +5 -5
  120. data/test/integration/zafu_compiler/context.yml +1 -1
  121. data/test/integration/zafu_compiler/display.yml +56 -5
  122. data/test/integration/zafu_compiler/forms.yml +35 -2
  123. data/test/integration/zafu_compiler/meta.yml +4 -0
  124. data/test/integration/zafu_compiler/rubyless.yml +1 -1
  125. data/test/integration/zafu_compiler/safe_definitions.yml +4 -0
  126. data/test/integration/zafu_compiler/security.yml +10 -0
  127. data/test/integration/zafu_compiler/site.yml +5 -1
  128. data/test/integration/zafu_compiler/urls.yml +8 -2
  129. data/test/integration/zafu_compiler/zafu_attributes.yml +2 -1
  130. data/test/integration/zafu_compiler/zazen.yml +4 -0
  131. data/test/integration/zafu_compiler_test.rb +47 -4
  132. data/test/selenium/Grid/grid1.rsel +8 -8
  133. data/test/sites/complex/sites.yml +2 -2
  134. data/test/sites/complex/users.yml +1 -0
  135. data/test/sites/zena/columns.yml +4 -0
  136. data/test/sites/zena/sites.yml +1 -0
  137. data/test/sites/zena/users.yml +1 -0
  138. data/test/unit/node_test.rb +53 -5
  139. data/test/unit/note_test.rb +1 -1
  140. data/test/unit/relation_proxy_test.rb +20 -0
  141. data/test/unit/role_test.rb +2 -0
  142. data/test/unit/site_test.rb +28 -6
  143. data/test/unit/user_test.rb +332 -1
  144. data/test/unit/virtual_class_test.rb +55 -0
  145. data/test/unit/workflow_test.rb +175 -0
  146. data/test/unit/zena/use/ancestry_test.rb +52 -10
  147. data/test/unit/zena/use/prop_eval_test.rb +44 -0
  148. data/test/unit/zena/use/rendering_test.rb +48 -2
  149. data/test/unit/zena/use/upload_test.rb +15 -13
  150. data/test/unit/zena/use/urls_test.rb +1 -0
  151. data/vendor/plugins/ar_mysql_full_text/lib/ar_mysql_full_text.rb +39 -25
  152. data/zena.gemspec +69 -307
  153. metadata +143 -368
  154. data/vendor/TextMate/Ruby Shoulda.tmbundle/Commands/Run 2.tmCommand +0 -24
  155. data/vendor/TextMate/Ruby Shoulda.tmbundle/Commands/Run Context.tmCommand +0 -58
  156. data/vendor/TextMate/Ruby Shoulda.tmbundle/Commands/Run Focused Should.tmCommand +0 -88
  157. data/vendor/TextMate/Ruby Shoulda.tmbundle/Commands/Run.tmCommand +0 -27
  158. data/vendor/TextMate/Ruby Shoulda.tmbundle/Commands/YAML to Shoulda.tmCommand +0 -23
  159. data/vendor/TextMate/Ruby Shoulda.tmbundle/Preferences/Symbol List: Context.tmPreferences +0 -19
  160. data/vendor/TextMate/Ruby Shoulda.tmbundle/Preferences/Symbol List: Should.tmPreferences +0 -19
  161. data/vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/Factory attributes for.tmSnippet +0 -16
  162. data/vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/Factory build.tmSnippet +0 -16
  163. data/vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/Factory.tmSnippet +0 -16
  164. data/vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/Factory_define with class.tmSnippet +0 -18
  165. data/vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/Factory_define.tmSnippet +0 -18
  166. data/vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/Factory_next.tmSnippet +0 -16
  167. data/vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/Factory_sequence.tmSnippet +0 -18
  168. data/vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/assert_bad_value.tmSnippet +0 -16
  169. data/vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/assert_contains.tmSnippet +0 -16
  170. data/vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/assert_does_not_contain.tmSnippet +0 -16
  171. data/vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/assert_good_value.tmSnippet +0 -16
  172. data/vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/assert_same_elements.tmSnippet +0 -16
  173. data/vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/assert_save.tmSnippet +0 -16
  174. data/vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/assert_sent_email.tmSnippet +0 -18
  175. data/vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/assert_valid.tmSnippet +0 -16
  176. data/vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/association.tmSnippet +0 -17
  177. data/vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/attribute.tmSnippet +0 -17
  178. data/vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/before_should block.tmSnippet +0 -18
  179. data/vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/context block get.tmSnippet +0 -22
  180. data/vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/context block post.tmSnippet +0 -23
  181. data/vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/context block with setup.tmSnippet +0 -25
  182. data/vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/setup.tmSnippet +0 -18
  183. data/vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/should block with before proc.tmSnippet +0 -18
  184. data/vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/should block.tmSnippet +0 -18
  185. data/vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/should_allow_values_for.tmSnippet +0 -16
  186. data/vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/should_assign_to.tmSnippet +0 -16
  187. data/vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/should_be_restful denied.tmSnippet +0 -20
  188. data/vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/should_be_restful.tmSnippet +0 -20
  189. data/vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/should_belong_to.tmSnippet +0 -16
  190. data/vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/should_change by.tmSnippet +0 -16
  191. data/vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/should_change from to.tmSnippet +0 -16
  192. data/vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/should_ensure_length_at_least.tmSnippet +0 -16
  193. data/vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/should_ensure_length_in_range.tmSnippet +0 -16
  194. data/vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/should_ensure_length_is.tmSnippet +0 -16
  195. data/vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/should_ensure_value_in_range.tmSnippet +0 -16
  196. data/vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/should_eventually.tmSnippet +0 -18
  197. data/vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/should_filter_params.tmSnippet +0 -16
  198. data/vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/should_have_and_belong_to_many.tmSnippet +0 -16
  199. data/vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/should_have_class_methods.tmSnippet +0 -16
  200. data/vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/should_have_db_column.tmSnippet +0 -16
  201. data/vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/should_have_db_columns.tmSnippet +0 -16
  202. data/vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/should_have_index.tmSnippet +0 -16
  203. data/vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/should_have_indices.tmSnippet +0 -16
  204. data/vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/should_have_instance_methods.tmSnippet +0 -16
  205. data/vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/should_have_many.tmSnippet +0 -16
  206. data/vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/should_have_named_scope.tmSnippet +0 -16
  207. data/vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/should_have_one.tmSnippet +0 -16
  208. data/vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/should_have_readonly_attributes.tmSnippet +0 -16
  209. data/vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/should_not_allow_mass_assignment_of.tmSnippet +0 -16
  210. data/vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/should_not_allow_values_for.tmSnippet +0 -16
  211. data/vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/should_not_assign_to.tmSnippet +0 -16
  212. data/vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/should_not_change.tmSnippet +0 -16
  213. data/vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/should_not_set_the_flash.tmSnippet +0 -16
  214. data/vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/should_redirect_to.tmSnippet +0 -16
  215. data/vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/should_render_a_form.tmSnippet +0 -16
  216. data/vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/should_render_template.tmSnippet +0 -16
  217. data/vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/should_render_with_layout.tmSnippet +0 -16
  218. data/vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/should_render_without_layout.tmSnippet +0 -16
  219. data/vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/should_respond_with.tmSnippet +0 -16
  220. data/vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/should_respond_with_content_type.tmSnippet +0 -16
  221. data/vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/should_return_from_session.tmSnippet +0 -16
  222. data/vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/should_route.tmSnippet +0 -16
  223. data/vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/should_set_the_flash_to.tmSnippet +0 -16
  224. data/vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/should_validate_acceptance_of.tmSnippet +0 -16
  225. data/vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/should_validate_numericality_of.tmSnippet +0 -16
  226. data/vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/should_validate_presence_of.tmSnippet +0 -16
  227. data/vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/should_validate_uniqueness_of with scope.tmSnippet +0 -16
  228. data/vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/should_validate_uniqueness_of.tmSnippet +0 -16
  229. data/vendor/TextMate/Ruby Shoulda.tmbundle/Support/RubyMate/catch_exception.rb +0 -39
  230. data/vendor/TextMate/Ruby Shoulda.tmbundle/Support/RubyMate/run_script.rb +0 -104
  231. data/vendor/TextMate/Ruby Shoulda.tmbundle/Support/RubyMate/stdin_dialog.rb +0 -14
  232. data/vendor/TextMate/Ruby Shoulda.tmbundle/Support/RubyMate/test.rb +0 -17
  233. data/vendor/TextMate/Ruby Shoulda.tmbundle/Support/RubyMate/todo.txt +0 -13
  234. data/vendor/TextMate/Ruby Shoulda.tmbundle/Support/bin/yaml_to_shoulda.rb +0 -25
  235. data/vendor/TextMate/Ruby Shoulda.tmbundle/Syntaxes/Ruby on Rails (Shoulda).tmLanguage +0 -166
  236. data/vendor/TextMate/Ruby Shoulda.tmbundle/info.plist +0 -304
  237. data/vendor/TextMate/Zena.tmbundle/Commands/Run all yaml tests.tmCommand +0 -37
  238. data/vendor/TextMate/Zena.tmbundle/Commands/Run focused yaml test.tmCommand +0 -52
  239. data/vendor/TextMate/Zena.tmbundle/Support/RubyMate/catch_exception.rb +0 -39
  240. data/vendor/TextMate/Zena.tmbundle/Support/RubyMate/run_script.rb +0 -118
  241. data/vendor/TextMate/Zena.tmbundle/Support/RubyMate/stdin_dialog.rb +0 -14
  242. data/vendor/TextMate/Zena.tmbundle/info.plist +0 -17
  243. data/vendor/plugins/selenium-on-rails/CHANGELOG +0 -125
  244. data/vendor/plugins/selenium-on-rails/LICENSE-2.0.txt +0 -202
  245. data/vendor/plugins/selenium-on-rails/README.md +0 -202
  246. data/vendor/plugins/selenium-on-rails/Rakefile +0 -38
  247. data/vendor/plugins/selenium-on-rails/doc/classes/SeleniumController.html +0 -265
  248. data/vendor/plugins/selenium-on-rails/doc/classes/SeleniumHelper.html +0 -148
  249. data/vendor/plugins/selenium-on-rails/doc/classes/SeleniumOnRails.html +0 -126
  250. data/vendor/plugins/selenium-on-rails/doc/classes/SeleniumOnRails/FixtureLoader.html +0 -231
  251. data/vendor/plugins/selenium-on-rails/doc/classes/SeleniumOnRails/PartialsSupport.html +0 -195
  252. data/vendor/plugins/selenium-on-rails/doc/classes/SeleniumOnRails/Paths.html +0 -295
  253. data/vendor/plugins/selenium-on-rails/doc/classes/SeleniumOnRails/RSelenese.html +0 -219
  254. data/vendor/plugins/selenium-on-rails/doc/classes/SeleniumOnRails/Renderer.html +0 -156
  255. data/vendor/plugins/selenium-on-rails/doc/classes/SeleniumOnRails/Selenese.html +0 -179
  256. data/vendor/plugins/selenium-on-rails/doc/classes/SeleniumOnRails/SuiteRenderer.html +0 -223
  257. data/vendor/plugins/selenium-on-rails/doc/classes/SeleniumOnRails/TestBuilder.html +0 -441
  258. data/vendor/plugins/selenium-on-rails/doc/classes/SeleniumOnRails/TestBuilderAccessors.html +0 -3098
  259. data/vendor/plugins/selenium-on-rails/doc/classes/SeleniumOnRails/TestBuilderActions.html +0 -2080
  260. data/vendor/plugins/selenium-on-rails/doc/classes/SeleniumOnRails/TestBuilderUserAccessors.html +0 -116
  261. data/vendor/plugins/selenium-on-rails/doc/classes/SeleniumOnRails/TestBuilderUserActions.html +0 -116
  262. data/vendor/plugins/selenium-on-rails/doc/classes/SeleniumOnRailsConfig.html +0 -150
  263. data/vendor/plugins/selenium-on-rails/doc/files/CHANGELOG.html +0 -422
  264. data/vendor/plugins/selenium-on-rails/doc/files/README.html +0 -321
  265. data/vendor/plugins/selenium-on-rails/doc/files/lib/controllers/selenium_controller_rb.html +0 -108
  266. data/vendor/plugins/selenium-on-rails/doc/files/lib/selenium_helper_rb.html +0 -101
  267. data/vendor/plugins/selenium-on-rails/doc/files/lib/selenium_on_rails/acceptance_test_runner_rb.html +0 -222
  268. data/vendor/plugins/selenium-on-rails/doc/files/lib/selenium_on_rails/fixture_loader_rb.html +0 -109
  269. data/vendor/plugins/selenium-on-rails/doc/files/lib/selenium_on_rails/partials_support_rb.html +0 -111
  270. data/vendor/plugins/selenium-on-rails/doc/files/lib/selenium_on_rails/paths_rb.html +0 -101
  271. data/vendor/plugins/selenium-on-rails/doc/files/lib/selenium_on_rails/renderer_rb.html +0 -101
  272. data/vendor/plugins/selenium-on-rails/doc/files/lib/selenium_on_rails/rselenese_rb.html +0 -118
  273. data/vendor/plugins/selenium-on-rails/doc/files/lib/selenium_on_rails/selenese_rb.html +0 -101
  274. data/vendor/plugins/selenium-on-rails/doc/files/lib/selenium_on_rails/suite_renderer_rb.html +0 -101
  275. data/vendor/plugins/selenium-on-rails/doc/files/lib/selenium_on_rails/test_builder_accessors_rb.html +0 -114
  276. data/vendor/plugins/selenium-on-rails/doc/files/lib/selenium_on_rails/test_builder_actions_rb.html +0 -113
  277. data/vendor/plugins/selenium-on-rails/doc/files/lib/selenium_on_rails/test_builder_rb.html +0 -120
  278. data/vendor/plugins/selenium-on-rails/doc/files/lib/selenium_on_rails_config_rb.html +0 -108
  279. data/vendor/plugins/selenium-on-rails/doc/files/lib/selenium_on_rails_rb.html +0 -115
  280. data/vendor/plugins/selenium-on-rails/doc/fr_class_index.html +0 -42
  281. data/vendor/plugins/selenium-on-rails/doc/fr_file_index.html +0 -43
  282. data/vendor/plugins/selenium-on-rails/doc/fr_method_index.html +0 -182
  283. data/vendor/plugins/selenium-on-rails/doc/index.html +0 -24
  284. data/vendor/plugins/selenium-on-rails/doc/rdoc-style.css +0 -208
  285. data/vendor/plugins/selenium-on-rails/generators/selenium/USAGE +0 -19
  286. data/vendor/plugins/selenium-on-rails/generators/selenium/selenium_generator.rb +0 -50
  287. data/vendor/plugins/selenium-on-rails/generators/selenium/templates/rhtml.rhtml +0 -16
  288. data/vendor/plugins/selenium-on-rails/generators/selenium/templates/rselenese.rhtml +0 -14
  289. data/vendor/plugins/selenium-on-rails/generators/selenium/templates/selenese.rhtml +0 -11
  290. data/vendor/plugins/selenium-on-rails/init.rb +0 -15
  291. data/vendor/plugins/selenium-on-rails/lib/controllers/selenium_controller.rb +0 -122
  292. data/vendor/plugins/selenium-on-rails/lib/controllers/switch_environment_controller.rb +0 -16
  293. data/vendor/plugins/selenium-on-rails/lib/selenium_helper.rb +0 -8
  294. data/vendor/plugins/selenium-on-rails/lib/selenium_on_rails.rb +0 -11
  295. data/vendor/plugins/selenium-on-rails/lib/selenium_on_rails/acceptance_test_runner.rb +0 -215
  296. data/vendor/plugins/selenium-on-rails/lib/selenium_on_rails/fixture_loader.rb +0 -57
  297. data/vendor/plugins/selenium-on-rails/lib/selenium_on_rails/partials_support.rb +0 -36
  298. data/vendor/plugins/selenium-on-rails/lib/selenium_on_rails/paths.rb +0 -61
  299. data/vendor/plugins/selenium-on-rails/lib/selenium_on_rails/renderer.rb +0 -20
  300. data/vendor/plugins/selenium-on-rails/lib/selenium_on_rails/rselenese.rb +0 -44
  301. data/vendor/plugins/selenium-on-rails/lib/selenium_on_rails/selenese.rb +0 -87
  302. data/vendor/plugins/selenium-on-rails/lib/selenium_on_rails/suite_renderer.rb +0 -56
  303. data/vendor/plugins/selenium-on-rails/lib/selenium_on_rails/test_builder.rb +0 -116
  304. data/vendor/plugins/selenium-on-rails/lib/selenium_on_rails/test_builder_accessors.rb +0 -1002
  305. data/vendor/plugins/selenium-on-rails/lib/selenium_on_rails/test_builder_actions.rb +0 -514
  306. data/vendor/plugins/selenium-on-rails/lib/selenium_on_rails/test_builder_user_accessors.rb.example +0 -91
  307. data/vendor/plugins/selenium-on-rails/lib/selenium_on_rails/test_builder_user_actions.rb.example +0 -24
  308. data/vendor/plugins/selenium-on-rails/lib/selenium_on_rails_config.rb +0 -30
  309. data/vendor/plugins/selenium-on-rails/lib/views/layouts/layout.rhtml +0 -18
  310. data/vendor/plugins/selenium-on-rails/lib/views/record.rhtml +0 -5
  311. data/vendor/plugins/selenium-on-rails/lib/views/selenium_helper.rb +0 -9
  312. data/vendor/plugins/selenium-on-rails/lib/views/setup.rhtml +0 -67
  313. data/vendor/plugins/selenium-on-rails/lib/views/test_suite.rhtml +0 -26
  314. data/vendor/plugins/selenium-on-rails/routes.rb +0 -24
  315. data/vendor/plugins/selenium-on-rails/selenium-core/Blank.html +0 -7
  316. data/vendor/plugins/selenium-on-rails/selenium-core/InjectedRemoteRunner.html +0 -8
  317. data/vendor/plugins/selenium-on-rails/selenium-core/RemoteRunner.html +0 -110
  318. data/vendor/plugins/selenium-on-rails/selenium-core/SeleniumLog.html +0 -109
  319. data/vendor/plugins/selenium-on-rails/selenium-core/TestPrompt.html +0 -145
  320. data/vendor/plugins/selenium-on-rails/selenium-core/TestRunner-splash.html +0 -55
  321. data/vendor/plugins/selenium-on-rails/selenium-core/TestRunner.hta +0 -177
  322. data/vendor/plugins/selenium-on-rails/selenium-core/TestRunner.html +0 -177
  323. data/vendor/plugins/selenium-on-rails/selenium-core/domviewer/butmin.gif +0 -0
  324. data/vendor/plugins/selenium-on-rails/selenium-core/domviewer/butplus.gif +0 -0
  325. data/vendor/plugins/selenium-on-rails/selenium-core/domviewer/domviewer.css +0 -298
  326. data/vendor/plugins/selenium-on-rails/selenium-core/domviewer/domviewer.html +0 -16
  327. data/vendor/plugins/selenium-on-rails/selenium-core/domviewer/selenium-domviewer.js +0 -205
  328. data/vendor/plugins/selenium-on-rails/selenium-core/icons/all.png +0 -0
  329. data/vendor/plugins/selenium-on-rails/selenium-core/icons/continue.png +0 -0
  330. data/vendor/plugins/selenium-on-rails/selenium-core/icons/continue_disabled.png +0 -0
  331. data/vendor/plugins/selenium-on-rails/selenium-core/icons/pause.png +0 -0
  332. data/vendor/plugins/selenium-on-rails/selenium-core/icons/pause_disabled.png +0 -0
  333. data/vendor/plugins/selenium-on-rails/selenium-core/icons/selected.png +0 -0
  334. data/vendor/plugins/selenium-on-rails/selenium-core/icons/step.png +0 -0
  335. data/vendor/plugins/selenium-on-rails/selenium-core/icons/step_disabled.png +0 -0
  336. data/vendor/plugins/selenium-on-rails/selenium-core/iedoc-core.xml +0 -1759
  337. data/vendor/plugins/selenium-on-rails/selenium-core/iedoc.xml +0 -1800
  338. data/vendor/plugins/selenium-on-rails/selenium-core/lib/cssQuery/cssQuery-p.js +0 -6
  339. data/vendor/plugins/selenium-on-rails/selenium-core/lib/cssQuery/src/cssQuery-level2.js +0 -142
  340. data/vendor/plugins/selenium-on-rails/selenium-core/lib/cssQuery/src/cssQuery-level3.js +0 -150
  341. data/vendor/plugins/selenium-on-rails/selenium-core/lib/cssQuery/src/cssQuery-standard.js +0 -53
  342. data/vendor/plugins/selenium-on-rails/selenium-core/lib/cssQuery/src/cssQuery.js +0 -356
  343. data/vendor/plugins/selenium-on-rails/selenium-core/lib/prototype.js +0 -2006
  344. data/vendor/plugins/selenium-on-rails/selenium-core/lib/scriptaculous/builder.js +0 -101
  345. data/vendor/plugins/selenium-on-rails/selenium-core/lib/scriptaculous/controls.js +0 -815
  346. data/vendor/plugins/selenium-on-rails/selenium-core/lib/scriptaculous/dragdrop.js +0 -915
  347. data/vendor/plugins/selenium-on-rails/selenium-core/lib/scriptaculous/effects.js +0 -958
  348. data/vendor/plugins/selenium-on-rails/selenium-core/lib/scriptaculous/scriptaculous.js +0 -47
  349. data/vendor/plugins/selenium-on-rails/selenium-core/lib/scriptaculous/slider.js +0 -283
  350. data/vendor/plugins/selenium-on-rails/selenium-core/lib/scriptaculous/unittest.js +0 -383
  351. data/vendor/plugins/selenium-on-rails/selenium-core/lib/snapsie.js +0 -91
  352. data/vendor/plugins/selenium-on-rails/selenium-core/scripts/find_matching_child.js +0 -69
  353. data/vendor/plugins/selenium-on-rails/selenium-core/scripts/htmlutils.js +0 -1616
  354. data/vendor/plugins/selenium-on-rails/selenium-core/scripts/injection.html +0 -72
  355. data/vendor/plugins/selenium-on-rails/selenium-core/scripts/selenium-api.js +0 -3184
  356. data/vendor/plugins/selenium-on-rails/selenium-core/scripts/selenium-browserbot.js +0 -2300
  357. data/vendor/plugins/selenium-on-rails/selenium-core/scripts/selenium-browserdetect.js +0 -153
  358. data/vendor/plugins/selenium-on-rails/selenium-core/scripts/selenium-commandhandlers.js +0 -377
  359. data/vendor/plugins/selenium-on-rails/selenium-core/scripts/selenium-executionloop.js +0 -175
  360. data/vendor/plugins/selenium-on-rails/selenium-core/scripts/selenium-logging.js +0 -148
  361. data/vendor/plugins/selenium-on-rails/selenium-core/scripts/selenium-remoterunner.js +0 -695
  362. data/vendor/plugins/selenium-on-rails/selenium-core/scripts/selenium-testrunner.js +0 -1362
  363. data/vendor/plugins/selenium-on-rails/selenium-core/scripts/selenium-version.js +0 -5
  364. data/vendor/plugins/selenium-on-rails/selenium-core/scripts/ui-doc.html +0 -803
  365. data/vendor/plugins/selenium-on-rails/selenium-core/scripts/ui-element.js +0 -1537
  366. data/vendor/plugins/selenium-on-rails/selenium-core/scripts/ui-map-sample.js +0 -979
  367. data/vendor/plugins/selenium-on-rails/selenium-core/scripts/user-extensions.js +0 -3
  368. data/vendor/plugins/selenium-on-rails/selenium-core/scripts/user-extensions.js.sample +0 -75
  369. data/vendor/plugins/selenium-on-rails/selenium-core/scripts/xmlextras.js +0 -153
  370. data/vendor/plugins/selenium-on-rails/selenium-core/selenium-logo.png +0 -0
  371. data/vendor/plugins/selenium-on-rails/selenium-core/selenium-test.css +0 -43
  372. data/vendor/plugins/selenium-on-rails/selenium-core/selenium.css +0 -316
  373. data/vendor/plugins/selenium-on-rails/selenium-core/xpath/dom.js +0 -566
  374. data/vendor/plugins/selenium-on-rails/selenium-core/xpath/javascript-xpath-0.1.11.js +0 -2816
  375. data/vendor/plugins/selenium-on-rails/selenium-core/xpath/util.js +0 -549
  376. data/vendor/plugins/selenium-on-rails/selenium-core/xpath/xmltoken.js +0 -149
  377. data/vendor/plugins/selenium-on-rails/selenium-core/xpath/xpath.js +0 -2450
  378. data/vendor/plugins/selenium-on-rails/tasks/test_acceptance.rake +0 -8
  379. data/vendor/plugins/selenium-on-rails/test/fixtures/config.yml +0 -37
  380. data/vendor/plugins/selenium-on-rails/test/fixtures/selenium.yml +0 -27
  381. data/vendor/plugins/selenium-on-rails/test/paths_test.rb +0 -72
  382. data/vendor/plugins/selenium-on-rails/test/renderer_test.rb +0 -157
  383. data/vendor/plugins/selenium-on-rails/test/rselenese_test.rb +0 -708
  384. data/vendor/plugins/selenium-on-rails/test/selenese_test.rb +0 -242
  385. data/vendor/plugins/selenium-on-rails/test/selenium_controller_test.rb +0 -67
  386. data/vendor/plugins/selenium-on-rails/test/selenium_on_rails_config_test.rb +0 -43
  387. data/vendor/plugins/selenium-on-rails/test/selenium_support_test.rb +0 -35
  388. data/vendor/plugins/selenium-on-rails/test/setup_test.rb +0 -31
  389. data/vendor/plugins/selenium-on-rails/test/suite_renderer_test.rb +0 -109
  390. data/vendor/plugins/selenium-on-rails/test/switch_environment_controller_test.rb +0 -17
  391. data/vendor/plugins/selenium-on-rails/test/test_builder_functions_authortest.rb +0 -51
  392. data/vendor/plugins/selenium-on-rails/test/test_helper.rb +0 -101
  393. data/vendor/plugins/selenium-on-rails/test_data/_partial.rsel +0 -1
  394. data/vendor/plugins/selenium-on-rails/test_data/own_layout.html +0 -12
  395. data/vendor/plugins/selenium-on-rails/test_data/partials/_html.html +0 -6
  396. data/vendor/plugins/selenium-on-rails/test_data/partials/_nesting.rsel +0 -2
  397. data/vendor/plugins/selenium-on-rails/test_data/partials/_rhtml.rhtml +0 -6
  398. data/vendor/plugins/selenium-on-rails/test_data/partials/_rsel.rsel +0 -1
  399. data/vendor/plugins/selenium-on-rails/test_data/partials/_sel.sel +0 -5
  400. data/vendor/plugins/selenium-on-rails/test_data/partials/all_partials.rsel +0 -5
  401. data/vendor/plugins/selenium-on-rails/test_data/rhtml.rhtml +0 -7
  402. data/vendor/plugins/selenium-on-rails/test_data/rselenese.rsel +0 -8
  403. data/vendor/plugins/selenium-on-rails/test_data/selenese.sel +0 -7
  404. data/vendor/plugins/selenium-on-rails/test_data/suite_one/subsuite/suite_one_subsuite_testcase.sel +0 -1
  405. data/vendor/plugins/selenium-on-rails/test_data/suite_one/suite_one_testcase1.sel +0 -1
  406. data/vendor/plugins/selenium-on-rails/test_data/suite_one/suite_one_testcase2.sel +0 -1
  407. data/vendor/plugins/selenium-on-rails/test_data/suite_two/suite_two_testcase.sel +0 -1
@@ -1,958 +0,0 @@
1
- // Copyright (c) 2005 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
- // See scriptaculous.js for full license.
8
-
9
- // converts rgb() and #xxx to #xxxxxx format,
10
- // returns self (or first argument) if not convertable
11
- String.prototype.parseColor = function() {
12
- var color = '#';
13
- if(this.slice(0,4) == 'rgb(') {
14
- var cols = this.slice(4,this.length-1).split(',');
15
- var i=0; do { color += parseInt(cols[i]).toColorPart() } while (++i<3);
16
- } else {
17
- if(this.slice(0,1) == '#') {
18
- if(this.length==4) for(var i=1;i<4;i++) color += (this.charAt(i) + this.charAt(i)).toLowerCase();
19
- if(this.length==7) color = this.toLowerCase();
20
- }
21
- }
22
- return(color.length==7 ? color : (arguments[0] || this));
23
- }
24
-
25
- /*--------------------------------------------------------------------------*/
26
-
27
- Element.collectTextNodes = function(element) {
28
- return $A($(element).childNodes).collect( function(node) {
29
- return (node.nodeType==3 ? node.nodeValue :
30
- (node.hasChildNodes() ? Element.collectTextNodes(node) : ''));
31
- }).flatten().join('');
32
- }
33
-
34
- Element.collectTextNodesIgnoreClass = function(element, className) {
35
- return $A($(element).childNodes).collect( function(node) {
36
- return (node.nodeType==3 ? node.nodeValue :
37
- ((node.hasChildNodes() && !Element.hasClassName(node,className)) ?
38
- Element.collectTextNodesIgnoreClass(node, className) : ''));
39
- }).flatten().join('');
40
- }
41
-
42
- Element.setContentZoom = function(element, percent) {
43
- element = $(element);
44
- Element.setStyle(element, {fontSize: (percent/100) + 'em'});
45
- if(navigator.appVersion.indexOf('AppleWebKit')>0) window.scrollBy(0,0);
46
- }
47
-
48
- Element.getOpacity = function(element){
49
- var opacity;
50
- if (opacity = Element.getStyle(element, 'opacity'))
51
- return parseFloat(opacity);
52
- if (opacity = (Element.getStyle(element, 'filter') || '').match(/alpha\(opacity=(.*)\)/))
53
- if(opacity[1]) return parseFloat(opacity[1]) / 100;
54
- return 1.0;
55
- }
56
-
57
- Element.setOpacity = function(element, value){
58
- element= $(element);
59
- if (value == 1){
60
- Element.setStyle(element, { opacity:
61
- (/Gecko/.test(navigator.userAgent) && !/Konqueror|Safari|KHTML/.test(navigator.userAgent)) ?
62
- 0.999999 : null });
63
- if(/MSIE/.test(navigator.userAgent))
64
- Element.setStyle(element, {filter: Element.getStyle(element,'filter').replace(/alpha\([^\)]*\)/gi,'')});
65
- } else {
66
- if(value < 0.00001) value = 0;
67
- Element.setStyle(element, {opacity: value});
68
- if(/MSIE/.test(navigator.userAgent))
69
- Element.setStyle(element,
70
- { filter: Element.getStyle(element,'filter').replace(/alpha\([^\)]*\)/gi,'') +
71
- 'alpha(opacity='+value*100+')' });
72
- }
73
- }
74
-
75
- Element.getInlineOpacity = function(element){
76
- return $(element).style.opacity || '';
77
- }
78
-
79
- Element.childrenWithClassName = function(element, className, findFirst) {
80
- var classNameRegExp = new RegExp("(^|\\s)" + className + "(\\s|$)");
81
- var results = $A($(element).getElementsByTagName('*'))[findFirst ? 'detect' : 'select']( function(c) {
82
- return (c.className && c.className.match(classNameRegExp));
83
- });
84
- if(!results) results = [];
85
- return results;
86
- }
87
-
88
- Element.forceRerendering = function(element) {
89
- try {
90
- element = $(element);
91
- var n = document.createTextNode(' ');
92
- element.appendChild(n);
93
- element.removeChild(n);
94
- } catch(e) { }
95
- };
96
-
97
- /*--------------------------------------------------------------------------*/
98
-
99
- Array.prototype.call = function() {
100
- var args = arguments;
101
- this.each(function(f){ f.apply(this, args) });
102
- }
103
-
104
- /*--------------------------------------------------------------------------*/
105
-
106
- var Effect = {
107
- tagifyText: function(element) {
108
- var tagifyStyle = 'position:relative';
109
- if(/MSIE/.test(navigator.userAgent)) tagifyStyle += ';zoom:1';
110
- element = $(element);
111
- $A(element.childNodes).each( function(child) {
112
- if(child.nodeType==3) {
113
- child.nodeValue.toArray().each( function(character) {
114
- element.insertBefore(
115
- Builder.node('span',{style: tagifyStyle},
116
- character == ' ' ? String.fromCharCode(160) : character),
117
- child);
118
- });
119
- Element.remove(child);
120
- }
121
- });
122
- },
123
- multiple: function(element, effect) {
124
- var elements;
125
- if(((typeof element == 'object') ||
126
- (typeof element == 'function')) &&
127
- (element.length))
128
- elements = element;
129
- else
130
- elements = $(element).childNodes;
131
-
132
- var options = Object.extend({
133
- speed: 0.1,
134
- delay: 0.0
135
- }, arguments[2] || {});
136
- var masterDelay = options.delay;
137
-
138
- $A(elements).each( function(element, index) {
139
- new effect(element, Object.extend(options, { delay: index * options.speed + masterDelay }));
140
- });
141
- },
142
- PAIRS: {
143
- 'slide': ['SlideDown','SlideUp'],
144
- 'blind': ['BlindDown','BlindUp'],
145
- 'appear': ['Appear','Fade']
146
- },
147
- toggle: function(element, effect) {
148
- element = $(element);
149
- effect = (effect || 'appear').toLowerCase();
150
- var options = Object.extend({
151
- queue: { position:'end', scope:(element.id || 'global'), limit: 1 }
152
- }, arguments[2] || {});
153
- Effect[element.visible() ?
154
- Effect.PAIRS[effect][1] : Effect.PAIRS[effect][0]](element, options);
155
- }
156
- };
157
-
158
- var Effect2 = Effect; // deprecated
159
-
160
- /* ------------- transitions ------------- */
161
-
162
- Effect.Transitions = {}
163
-
164
- Effect.Transitions.linear = function(pos) {
165
- return pos;
166
- }
167
- Effect.Transitions.sinoidal = function(pos) {
168
- return (-Math.cos(pos*Math.PI)/2) + 0.5;
169
- }
170
- Effect.Transitions.reverse = function(pos) {
171
- return 1-pos;
172
- }
173
- Effect.Transitions.flicker = function(pos) {
174
- return ((-Math.cos(pos*Math.PI)/4) + 0.75) + Math.random()/4;
175
- }
176
- Effect.Transitions.wobble = function(pos) {
177
- return (-Math.cos(pos*Math.PI*(9*pos))/2) + 0.5;
178
- }
179
- Effect.Transitions.pulse = function(pos) {
180
- return (Math.floor(pos*10) % 2 == 0 ?
181
- (pos*10-Math.floor(pos*10)) : 1-(pos*10-Math.floor(pos*10)));
182
- }
183
- Effect.Transitions.none = function(pos) {
184
- return 0;
185
- }
186
- Effect.Transitions.full = function(pos) {
187
- return 1;
188
- }
189
-
190
- /* ------------- core effects ------------- */
191
-
192
- Effect.ScopedQueue = Class.create();
193
- Object.extend(Object.extend(Effect.ScopedQueue.prototype, Enumerable), {
194
- initialize: function() {
195
- this.effects = [];
196
- this.interval = null;
197
- },
198
- _each: function(iterator) {
199
- this.effects._each(iterator);
200
- },
201
- add: function(effect) {
202
- var timestamp = new Date().getTime();
203
-
204
- var position = (typeof effect.options.queue == 'string') ?
205
- effect.options.queue : effect.options.queue.position;
206
-
207
- switch(position) {
208
- case 'front':
209
- // move unstarted effects after this effect
210
- this.effects.findAll(function(e){ return e.state=='idle' }).each( function(e) {
211
- e.startOn += effect.finishOn;
212
- e.finishOn += effect.finishOn;
213
- });
214
- break;
215
- case 'end':
216
- // start effect after last queued effect has finished
217
- timestamp = this.effects.pluck('finishOn').max() || timestamp;
218
- break;
219
- }
220
-
221
- effect.startOn += timestamp;
222
- effect.finishOn += timestamp;
223
-
224
- if(!effect.options.queue.limit || (this.effects.length < effect.options.queue.limit))
225
- this.effects.push(effect);
226
-
227
- if(!this.interval)
228
- this.interval = setInterval(this.loop.bind(this), 40);
229
- },
230
- remove: function(effect) {
231
- this.effects = this.effects.reject(function(e) { return e==effect });
232
- if(this.effects.length == 0) {
233
- clearInterval(this.interval);
234
- this.interval = null;
235
- }
236
- },
237
- loop: function() {
238
- var timePos = new Date().getTime();
239
- this.effects.invoke('loop', timePos);
240
- }
241
- });
242
-
243
- Effect.Queues = {
244
- instances: $H(),
245
- get: function(queueName) {
246
- if(typeof queueName != 'string') return queueName;
247
-
248
- if(!this.instances[queueName])
249
- this.instances[queueName] = new Effect.ScopedQueue();
250
-
251
- return this.instances[queueName];
252
- }
253
- }
254
- Effect.Queue = Effect.Queues.get('global');
255
-
256
- Effect.DefaultOptions = {
257
- transition: Effect.Transitions.sinoidal,
258
- duration: 1.0, // seconds
259
- fps: 25.0, // max. 25fps due to Effect.Queue implementation
260
- sync: false, // true for combining
261
- from: 0.0,
262
- to: 1.0,
263
- delay: 0.0,
264
- queue: 'parallel'
265
- }
266
-
267
- Effect.Base = function() {};
268
- Effect.Base.prototype = {
269
- position: null,
270
- start: function(options) {
271
- this.options = Object.extend(Object.extend({},Effect.DefaultOptions), options || {});
272
- this.currentFrame = 0;
273
- this.state = 'idle';
274
- this.startOn = this.options.delay*1000;
275
- this.finishOn = this.startOn + (this.options.duration*1000);
276
- this.event('beforeStart');
277
- if(!this.options.sync)
278
- Effect.Queues.get(typeof this.options.queue == 'string' ?
279
- 'global' : this.options.queue.scope).add(this);
280
- },
281
- loop: function(timePos) {
282
- if(timePos >= this.startOn) {
283
- if(timePos >= this.finishOn) {
284
- this.render(1.0);
285
- this.cancel();
286
- this.event('beforeFinish');
287
- if(this.finish) this.finish();
288
- this.event('afterFinish');
289
- return;
290
- }
291
- var pos = (timePos - this.startOn) / (this.finishOn - this.startOn);
292
- var frame = Math.round(pos * this.options.fps * this.options.duration);
293
- if(frame > this.currentFrame) {
294
- this.render(pos);
295
- this.currentFrame = frame;
296
- }
297
- }
298
- },
299
- render: function(pos) {
300
- if(this.state == 'idle') {
301
- this.state = 'running';
302
- this.event('beforeSetup');
303
- if(this.setup) this.setup();
304
- this.event('afterSetup');
305
- }
306
- if(this.state == 'running') {
307
- if(this.options.transition) pos = this.options.transition(pos);
308
- pos *= (this.options.to-this.options.from);
309
- pos += this.options.from;
310
- this.position = pos;
311
- this.event('beforeUpdate');
312
- if(this.update) this.update(pos);
313
- this.event('afterUpdate');
314
- }
315
- },
316
- cancel: function() {
317
- if(!this.options.sync)
318
- Effect.Queues.get(typeof this.options.queue == 'string' ?
319
- 'global' : this.options.queue.scope).remove(this);
320
- this.state = 'finished';
321
- },
322
- event: function(eventName) {
323
- if(this.options[eventName + 'Internal']) this.options[eventName + 'Internal'](this);
324
- if(this.options[eventName]) this.options[eventName](this);
325
- },
326
- inspect: function() {
327
- return '#<Effect:' + $H(this).inspect() + ',options:' + $H(this.options).inspect() + '>';
328
- }
329
- }
330
-
331
- Effect.Parallel = Class.create();
332
- Object.extend(Object.extend(Effect.Parallel.prototype, Effect.Base.prototype), {
333
- initialize: function(effects) {
334
- this.effects = effects || [];
335
- this.start(arguments[1]);
336
- },
337
- update: function(position) {
338
- this.effects.invoke('render', position);
339
- },
340
- finish: function(position) {
341
- this.effects.each( function(effect) {
342
- effect.render(1.0);
343
- effect.cancel();
344
- effect.event('beforeFinish');
345
- if(effect.finish) effect.finish(position);
346
- effect.event('afterFinish');
347
- });
348
- }
349
- });
350
-
351
- Effect.Opacity = Class.create();
352
- Object.extend(Object.extend(Effect.Opacity.prototype, Effect.Base.prototype), {
353
- initialize: function(element) {
354
- this.element = $(element);
355
- // make this work on IE on elements without 'layout'
356
- if(/MSIE/.test(navigator.userAgent) && (!this.element.hasLayout))
357
- this.element.setStyle({zoom: 1});
358
- var options = Object.extend({
359
- from: this.element.getOpacity() || 0.0,
360
- to: 1.0
361
- }, arguments[1] || {});
362
- this.start(options);
363
- },
364
- update: function(position) {
365
- this.element.setOpacity(position);
366
- }
367
- });
368
-
369
- Effect.Move = Class.create();
370
- Object.extend(Object.extend(Effect.Move.prototype, Effect.Base.prototype), {
371
- initialize: function(element) {
372
- this.element = $(element);
373
- var options = Object.extend({
374
- x: 0,
375
- y: 0,
376
- mode: 'relative'
377
- }, arguments[1] || {});
378
- this.start(options);
379
- },
380
- setup: function() {
381
- // Bug in Opera: Opera returns the "real" position of a static element or
382
- // relative element that does not have top/left explicitly set.
383
- // ==> Always set top and left for position relative elements in your stylesheets
384
- // (to 0 if you do not need them)
385
- this.element.makePositioned();
386
- this.originalLeft = parseFloat(this.element.getStyle('left') || '0');
387
- this.originalTop = parseFloat(this.element.getStyle('top') || '0');
388
- if(this.options.mode == 'absolute') {
389
- // absolute movement, so we need to calc deltaX and deltaY
390
- this.options.x = this.options.x - this.originalLeft;
391
- this.options.y = this.options.y - this.originalTop;
392
- }
393
- },
394
- update: function(position) {
395
- this.element.setStyle({
396
- left: this.options.x * position + this.originalLeft + 'px',
397
- top: this.options.y * position + this.originalTop + 'px'
398
- });
399
- }
400
- });
401
-
402
- // for backwards compatibility
403
- Effect.MoveBy = function(element, toTop, toLeft) {
404
- return new Effect.Move(element,
405
- Object.extend({ x: toLeft, y: toTop }, arguments[3] || {}));
406
- };
407
-
408
- Effect.Scale = Class.create();
409
- Object.extend(Object.extend(Effect.Scale.prototype, Effect.Base.prototype), {
410
- initialize: function(element, percent) {
411
- this.element = $(element)
412
- var options = Object.extend({
413
- scaleX: true,
414
- scaleY: true,
415
- scaleContent: true,
416
- scaleFromCenter: false,
417
- scaleMode: 'box', // 'box' or 'contents' or {} with provided values
418
- scaleFrom: 100.0,
419
- scaleTo: percent
420
- }, arguments[2] || {});
421
- this.start(options);
422
- },
423
- setup: function() {
424
- this.restoreAfterFinish = this.options.restoreAfterFinish || false;
425
- this.elementPositioning = this.element.getStyle('position');
426
-
427
- this.originalStyle = {};
428
- ['top','left','width','height','fontSize'].each( function(k) {
429
- this.originalStyle[k] = this.element.style[k];
430
- }.bind(this));
431
-
432
- this.originalTop = this.element.offsetTop;
433
- this.originalLeft = this.element.offsetLeft;
434
-
435
- var fontSize = this.element.getStyle('font-size') || '100%';
436
- ['em','px','%'].each( function(fontSizeType) {
437
- if(fontSize.indexOf(fontSizeType)>0) {
438
- this.fontSize = parseFloat(fontSize);
439
- this.fontSizeType = fontSizeType;
440
- }
441
- }.bind(this));
442
-
443
- this.factor = (this.options.scaleTo - this.options.scaleFrom)/100;
444
-
445
- this.dims = null;
446
- if(this.options.scaleMode=='box')
447
- this.dims = [this.element.offsetHeight, this.element.offsetWidth];
448
- if(/^content/.test(this.options.scaleMode))
449
- this.dims = [this.element.scrollHeight, this.element.scrollWidth];
450
- if(!this.dims)
451
- this.dims = [this.options.scaleMode.originalHeight,
452
- this.options.scaleMode.originalWidth];
453
- },
454
- update: function(position) {
455
- var currentScale = (this.options.scaleFrom/100.0) + (this.factor * position);
456
- if(this.options.scaleContent && this.fontSize)
457
- this.element.setStyle({fontSize: this.fontSize * currentScale + this.fontSizeType });
458
- this.setDimensions(this.dims[0] * currentScale, this.dims[1] * currentScale);
459
- },
460
- finish: function(position) {
461
- if (this.restoreAfterFinish) this.element.setStyle(this.originalStyle);
462
- },
463
- setDimensions: function(height, width) {
464
- var d = {};
465
- if(this.options.scaleX) d.width = width + 'px';
466
- if(this.options.scaleY) d.height = height + 'px';
467
- if(this.options.scaleFromCenter) {
468
- var topd = (height - this.dims[0])/2;
469
- var leftd = (width - this.dims[1])/2;
470
- if(this.elementPositioning == 'absolute') {
471
- if(this.options.scaleY) d.top = this.originalTop-topd + 'px';
472
- if(this.options.scaleX) d.left = this.originalLeft-leftd + 'px';
473
- } else {
474
- if(this.options.scaleY) d.top = -topd + 'px';
475
- if(this.options.scaleX) d.left = -leftd + 'px';
476
- }
477
- }
478
- this.element.setStyle(d);
479
- }
480
- });
481
-
482
- Effect.Highlight = Class.create();
483
- Object.extend(Object.extend(Effect.Highlight.prototype, Effect.Base.prototype), {
484
- initialize: function(element) {
485
- this.element = $(element);
486
- var options = Object.extend({ startcolor: '#ffff99' }, arguments[1] || {});
487
- this.start(options);
488
- },
489
- setup: function() {
490
- // Prevent executing on elements not in the layout flow
491
- if(this.element.getStyle('display')=='none') { this.cancel(); return; }
492
- // Disable background image during the effect
493
- this.oldStyle = {
494
- backgroundImage: this.element.getStyle('background-image') };
495
- this.element.setStyle({backgroundImage: 'none'});
496
- if(!this.options.endcolor)
497
- this.options.endcolor = this.element.getStyle('background-color').parseColor('#ffffff');
498
- if(!this.options.restorecolor)
499
- this.options.restorecolor = this.element.getStyle('background-color');
500
- // init color calculations
501
- this._base = $R(0,2).map(function(i){ return parseInt(this.options.startcolor.slice(i*2+1,i*2+3),16) }.bind(this));
502
- 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));
503
- },
504
- update: function(position) {
505
- this.element.setStyle({backgroundColor: $R(0,2).inject('#',function(m,v,i){
506
- return m+(Math.round(this._base[i]+(this._delta[i]*position)).toColorPart()); }.bind(this)) });
507
- },
508
- finish: function() {
509
- this.element.setStyle(Object.extend(this.oldStyle, {
510
- backgroundColor: this.options.restorecolor
511
- }));
512
- }
513
- });
514
-
515
- Effect.ScrollTo = Class.create();
516
- Object.extend(Object.extend(Effect.ScrollTo.prototype, Effect.Base.prototype), {
517
- initialize: function(element) {
518
- this.element = $(element);
519
- this.start(arguments[1] || {});
520
- },
521
- setup: function() {
522
- Position.prepare();
523
- var offsets = Position.cumulativeOffset(this.element);
524
- if(this.options.offset) offsets[1] += this.options.offset;
525
- var max = window.innerHeight ?
526
- window.height - window.innerHeight :
527
- document.body.scrollHeight -
528
- (document.documentElement.clientHeight ?
529
- document.documentElement.clientHeight : document.body.clientHeight);
530
- this.scrollStart = Position.deltaY;
531
- this.delta = (offsets[1] > max ? max : offsets[1]) - this.scrollStart;
532
- },
533
- update: function(position) {
534
- Position.prepare();
535
- window.scrollTo(Position.deltaX,
536
- this.scrollStart + (position*this.delta));
537
- }
538
- });
539
-
540
- /* ------------- combination effects ------------- */
541
-
542
- Effect.Fade = function(element) {
543
- element = $(element);
544
- var oldOpacity = element.getInlineOpacity();
545
- var options = Object.extend({
546
- from: element.getOpacity() || 1.0,
547
- to: 0.0,
548
- afterFinishInternal: function(effect) {
549
- if(effect.options.to!=0) return;
550
- effect.element.hide();
551
- effect.element.setStyle({opacity: oldOpacity});
552
- }}, arguments[1] || {});
553
- return new Effect.Opacity(element,options);
554
- }
555
-
556
- Effect.Appear = function(element) {
557
- element = $(element);
558
- var options = Object.extend({
559
- from: (element.getStyle('display') == 'none' ? 0.0 : element.getOpacity() || 0.0),
560
- to: 1.0,
561
- // force Safari to render floated elements properly
562
- afterFinishInternal: function(effect) {
563
- effect.element.forceRerendering();
564
- },
565
- beforeSetup: function(effect) {
566
- effect.element.setOpacity(effect.options.from);
567
- effect.element.show();
568
- }}, arguments[1] || {});
569
- return new Effect.Opacity(element,options);
570
- }
571
-
572
- Effect.Puff = function(element) {
573
- element = $(element);
574
- var oldStyle = { opacity: element.getInlineOpacity(), position: element.getStyle('position') };
575
- return new Effect.Parallel(
576
- [ new Effect.Scale(element, 200,
577
- { sync: true, scaleFromCenter: true, scaleContent: true, restoreAfterFinish: true }),
578
- new Effect.Opacity(element, { sync: true, to: 0.0 } ) ],
579
- Object.extend({ duration: 1.0,
580
- beforeSetupInternal: function(effect) {
581
- effect.effects[0].element.setStyle({position: 'absolute'}); },
582
- afterFinishInternal: function(effect) {
583
- effect.effects[0].element.hide();
584
- effect.effects[0].element.setStyle(oldStyle); }
585
- }, arguments[1] || {})
586
- );
587
- }
588
-
589
- Effect.BlindUp = function(element) {
590
- element = $(element);
591
- element.makeClipping();
592
- return new Effect.Scale(element, 0,
593
- Object.extend({ scaleContent: false,
594
- scaleX: false,
595
- restoreAfterFinish: true,
596
- afterFinishInternal: function(effect) {
597
- effect.element.hide();
598
- effect.element.undoClipping();
599
- }
600
- }, arguments[1] || {})
601
- );
602
- }
603
-
604
- Effect.BlindDown = function(element) {
605
- element = $(element);
606
- var elementDimensions = element.getDimensions();
607
- return new Effect.Scale(element, 100,
608
- Object.extend({ scaleContent: false,
609
- scaleX: false,
610
- scaleFrom: 0,
611
- scaleMode: {originalHeight: elementDimensions.height, originalWidth: elementDimensions.width},
612
- restoreAfterFinish: true,
613
- afterSetup: function(effect) {
614
- effect.element.makeClipping();
615
- effect.element.setStyle({height: '0px'});
616
- effect.element.show();
617
- },
618
- afterFinishInternal: function(effect) {
619
- effect.element.undoClipping();
620
- }
621
- }, arguments[1] || {})
622
- );
623
- }
624
-
625
- Effect.SwitchOff = function(element) {
626
- element = $(element);
627
- var oldOpacity = element.getInlineOpacity();
628
- return new Effect.Appear(element, {
629
- duration: 0.4,
630
- from: 0,
631
- transition: Effect.Transitions.flicker,
632
- afterFinishInternal: function(effect) {
633
- new Effect.Scale(effect.element, 1, {
634
- duration: 0.3, scaleFromCenter: true,
635
- scaleX: false, scaleContent: false, restoreAfterFinish: true,
636
- beforeSetup: function(effect) {
637
- effect.element.makePositioned();
638
- effect.element.makeClipping();
639
- },
640
- afterFinishInternal: function(effect) {
641
- effect.element.hide();
642
- effect.element.undoClipping();
643
- effect.element.undoPositioned();
644
- effect.element.setStyle({opacity: oldOpacity});
645
- }
646
- })
647
- }
648
- });
649
- }
650
-
651
- Effect.DropOut = function(element) {
652
- element = $(element);
653
- var oldStyle = {
654
- top: element.getStyle('top'),
655
- left: element.getStyle('left'),
656
- opacity: element.getInlineOpacity() };
657
- return new Effect.Parallel(
658
- [ new Effect.Move(element, {x: 0, y: 100, sync: true }),
659
- new Effect.Opacity(element, { sync: true, to: 0.0 }) ],
660
- Object.extend(
661
- { duration: 0.5,
662
- beforeSetup: function(effect) {
663
- effect.effects[0].element.makePositioned();
664
- },
665
- afterFinishInternal: function(effect) {
666
- effect.effects[0].element.hide();
667
- effect.effects[0].element.undoPositioned();
668
- effect.effects[0].element.setStyle(oldStyle);
669
- }
670
- }, arguments[1] || {}));
671
- }
672
-
673
- Effect.Shake = function(element) {
674
- element = $(element);
675
- var oldStyle = {
676
- top: element.getStyle('top'),
677
- left: element.getStyle('left') };
678
- return new Effect.Move(element,
679
- { x: 20, y: 0, duration: 0.05, afterFinishInternal: function(effect) {
680
- new Effect.Move(effect.element,
681
- { x: -40, y: 0, duration: 0.1, afterFinishInternal: function(effect) {
682
- new Effect.Move(effect.element,
683
- { x: 40, y: 0, duration: 0.1, afterFinishInternal: function(effect) {
684
- new Effect.Move(effect.element,
685
- { x: -40, y: 0, duration: 0.1, afterFinishInternal: function(effect) {
686
- new Effect.Move(effect.element,
687
- { x: 40, y: 0, duration: 0.1, afterFinishInternal: function(effect) {
688
- new Effect.Move(effect.element,
689
- { x: -20, y: 0, duration: 0.05, afterFinishInternal: function(effect) {
690
- effect.element.undoPositioned();
691
- effect.element.setStyle(oldStyle);
692
- }}) }}) }}) }}) }}) }});
693
- }
694
-
695
- Effect.SlideDown = function(element) {
696
- element = $(element);
697
- element.cleanWhitespace();
698
- // SlideDown need to have the content of the element wrapped in a container element with fixed height!
699
- var oldInnerBottom = $(element.firstChild).getStyle('bottom');
700
- var elementDimensions = element.getDimensions();
701
- return new Effect.Scale(element, 100, Object.extend({
702
- scaleContent: false,
703
- scaleX: false,
704
- scaleFrom: window.opera ? 0 : 1,
705
- scaleMode: {originalHeight: elementDimensions.height, originalWidth: elementDimensions.width},
706
- restoreAfterFinish: true,
707
- afterSetup: function(effect) {
708
- effect.element.makePositioned();
709
- effect.element.firstChild.makePositioned();
710
- if(window.opera) effect.element.setStyle({top: ''});
711
- effect.element.makeClipping();
712
- effect.element.setStyle({height: '0px'});
713
- effect.element.show(); },
714
- afterUpdateInternal: function(effect) {
715
- effect.element.firstChild.setStyle({bottom:
716
- (effect.dims[0] - effect.element.clientHeight) + 'px' });
717
- },
718
- afterFinishInternal: function(effect) {
719
- effect.element.undoClipping();
720
- // IE will crash if child is undoPositioned first
721
- if(/MSIE/.test(navigator.userAgent)){
722
- effect.element.undoPositioned();
723
- effect.element.firstChild.undoPositioned();
724
- }else{
725
- effect.element.firstChild.undoPositioned();
726
- effect.element.undoPositioned();
727
- }
728
- effect.element.firstChild.setStyle({bottom: oldInnerBottom}); }
729
- }, arguments[1] || {})
730
- );
731
- }
732
-
733
- Effect.SlideUp = function(element) {
734
- element = $(element);
735
- element.cleanWhitespace();
736
- var oldInnerBottom = $(element.firstChild).getStyle('bottom');
737
- return new Effect.Scale(element, window.opera ? 0 : 1,
738
- Object.extend({ scaleContent: false,
739
- scaleX: false,
740
- scaleMode: 'box',
741
- scaleFrom: 100,
742
- restoreAfterFinish: true,
743
- beforeStartInternal: function(effect) {
744
- effect.element.makePositioned();
745
- effect.element.firstChild.makePositioned();
746
- if(window.opera) effect.element.setStyle({top: ''});
747
- effect.element.makeClipping();
748
- effect.element.show(); },
749
- afterUpdateInternal: function(effect) {
750
- effect.element.firstChild.setStyle({bottom:
751
- (effect.dims[0] - effect.element.clientHeight) + 'px' }); },
752
- afterFinishInternal: function(effect) {
753
- effect.element.hide();
754
- effect.element.undoClipping();
755
- effect.element.firstChild.undoPositioned();
756
- effect.element.undoPositioned();
757
- effect.element.setStyle({bottom: oldInnerBottom}); }
758
- }, arguments[1] || {})
759
- );
760
- }
761
-
762
- // Bug in opera makes the TD containing this element expand for a instance after finish
763
- Effect.Squish = function(element) {
764
- return new Effect.Scale(element, window.opera ? 1 : 0,
765
- { restoreAfterFinish: true,
766
- beforeSetup: function(effect) {
767
- effect.element.makeClipping(effect.element); },
768
- afterFinishInternal: function(effect) {
769
- effect.element.hide(effect.element);
770
- effect.element.undoClipping(effect.element); }
771
- });
772
- }
773
-
774
- Effect.Grow = function(element) {
775
- element = $(element);
776
- var options = Object.extend({
777
- direction: 'center',
778
- moveTransition: Effect.Transitions.sinoidal,
779
- scaleTransition: Effect.Transitions.sinoidal,
780
- opacityTransition: Effect.Transitions.full
781
- }, arguments[1] || {});
782
- var oldStyle = {
783
- top: element.style.top,
784
- left: element.style.left,
785
- height: element.style.height,
786
- width: element.style.width,
787
- opacity: element.getInlineOpacity() };
788
-
789
- var dims = element.getDimensions();
790
- var initialMoveX, initialMoveY;
791
- var moveX, moveY;
792
-
793
- switch (options.direction) {
794
- case 'top-left':
795
- initialMoveX = initialMoveY = moveX = moveY = 0;
796
- break;
797
- case 'top-right':
798
- initialMoveX = dims.width;
799
- initialMoveY = moveY = 0;
800
- moveX = -dims.width;
801
- break;
802
- case 'bottom-left':
803
- initialMoveX = moveX = 0;
804
- initialMoveY = dims.height;
805
- moveY = -dims.height;
806
- break;
807
- case 'bottom-right':
808
- initialMoveX = dims.width;
809
- initialMoveY = dims.height;
810
- moveX = -dims.width;
811
- moveY = -dims.height;
812
- break;
813
- case 'center':
814
- initialMoveX = dims.width / 2;
815
- initialMoveY = dims.height / 2;
816
- moveX = -dims.width / 2;
817
- moveY = -dims.height / 2;
818
- break;
819
- }
820
-
821
- return new Effect.Move(element, {
822
- x: initialMoveX,
823
- y: initialMoveY,
824
- duration: 0.01,
825
- beforeSetup: function(effect) {
826
- effect.element.hide();
827
- effect.element.makeClipping();
828
- effect.element.makePositioned();
829
- },
830
- afterFinishInternal: function(effect) {
831
- new Effect.Parallel(
832
- [ new Effect.Opacity(effect.element, { sync: true, to: 1.0, from: 0.0, transition: options.opacityTransition }),
833
- new Effect.Move(effect.element, { x: moveX, y: moveY, sync: true, transition: options.moveTransition }),
834
- new Effect.Scale(effect.element, 100, {
835
- scaleMode: { originalHeight: dims.height, originalWidth: dims.width },
836
- sync: true, scaleFrom: window.opera ? 1 : 0, transition: options.scaleTransition, restoreAfterFinish: true})
837
- ], Object.extend({
838
- beforeSetup: function(effect) {
839
- effect.effects[0].element.setStyle({height: '0px'});
840
- effect.effects[0].element.show();
841
- },
842
- afterFinishInternal: function(effect) {
843
- effect.effects[0].element.undoClipping();
844
- effect.effects[0].element.undoPositioned();
845
- effect.effects[0].element.setStyle(oldStyle);
846
- }
847
- }, options)
848
- )
849
- }
850
- });
851
- }
852
-
853
- Effect.Shrink = function(element) {
854
- element = $(element);
855
- var options = Object.extend({
856
- direction: 'center',
857
- moveTransition: Effect.Transitions.sinoidal,
858
- scaleTransition: Effect.Transitions.sinoidal,
859
- opacityTransition: Effect.Transitions.none
860
- }, arguments[1] || {});
861
- var oldStyle = {
862
- top: element.style.top,
863
- left: element.style.left,
864
- height: element.style.height,
865
- width: element.style.width,
866
- opacity: element.getInlineOpacity() };
867
-
868
- var dims = element.getDimensions();
869
- var moveX, moveY;
870
-
871
- switch (options.direction) {
872
- case 'top-left':
873
- moveX = moveY = 0;
874
- break;
875
- case 'top-right':
876
- moveX = dims.width;
877
- moveY = 0;
878
- break;
879
- case 'bottom-left':
880
- moveX = 0;
881
- moveY = dims.height;
882
- break;
883
- case 'bottom-right':
884
- moveX = dims.width;
885
- moveY = dims.height;
886
- break;
887
- case 'center':
888
- moveX = dims.width / 2;
889
- moveY = dims.height / 2;
890
- break;
891
- }
892
-
893
- return new Effect.Parallel(
894
- [ new Effect.Opacity(element, { sync: true, to: 0.0, from: 1.0, transition: options.opacityTransition }),
895
- new Effect.Scale(element, window.opera ? 1 : 0, { sync: true, transition: options.scaleTransition, restoreAfterFinish: true}),
896
- new Effect.Move(element, { x: moveX, y: moveY, sync: true, transition: options.moveTransition })
897
- ], Object.extend({
898
- beforeStartInternal: function(effect) {
899
- effect.effects[0].element.makePositioned();
900
- effect.effects[0].element.makeClipping(); },
901
- afterFinishInternal: function(effect) {
902
- effect.effects[0].element.hide();
903
- effect.effects[0].element.undoClipping();
904
- effect.effects[0].element.undoPositioned();
905
- effect.effects[0].element.setStyle(oldStyle); }
906
- }, options)
907
- );
908
- }
909
-
910
- Effect.Pulsate = function(element) {
911
- element = $(element);
912
- var options = arguments[1] || {};
913
- var oldOpacity = element.getInlineOpacity();
914
- var transition = options.transition || Effect.Transitions.sinoidal;
915
- var reverser = function(pos){ return transition(1-Effect.Transitions.pulse(pos)) };
916
- reverser.bind(transition);
917
- return new Effect.Opacity(element,
918
- Object.extend(Object.extend({ duration: 3.0, from: 0,
919
- afterFinishInternal: function(effect) { effect.element.setStyle({opacity: oldOpacity}); }
920
- }, options), {transition: reverser}));
921
- }
922
-
923
- Effect.Fold = function(element) {
924
- element = $(element);
925
- var oldStyle = {
926
- top: element.style.top,
927
- left: element.style.left,
928
- width: element.style.width,
929
- height: element.style.height };
930
- Element.makeClipping(element);
931
- return new Effect.Scale(element, 5, Object.extend({
932
- scaleContent: false,
933
- scaleX: false,
934
- afterFinishInternal: function(effect) {
935
- new Effect.Scale(element, 1, {
936
- scaleContent: false,
937
- scaleY: false,
938
- afterFinishInternal: function(effect) {
939
- effect.element.hide();
940
- effect.element.undoClipping();
941
- effect.element.setStyle(oldStyle);
942
- } });
943
- }}, arguments[1] || {}));
944
- };
945
-
946
- ['setOpacity','getOpacity','getInlineOpacity','forceRerendering','setContentZoom',
947
- 'collectTextNodes','collectTextNodesIgnoreClass','childrenWithClassName'].each(
948
- function(f) { Element.Methods[f] = Element[f]; }
949
- );
950
-
951
- Element.Methods.visualEffect = function(element, effect, options) {
952
- s = effect.gsub(/_/, '-').camelize();
953
- effect_class = s.charAt(0).toUpperCase() + s.substring(1);
954
- new Effect[effect_class](element, options);
955
- return $(element);
956
- };
957
-
958
- Element.addMethods();