zena 1.1.3 → 1.2.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (392) hide show
  1. data/History.txt +23 -1
  2. data/MIT-LICENSE +2 -2
  3. data/README.rdoc +2 -15
  4. data/app/controllers/acls_controller.rb +1 -1
  5. data/app/controllers/documents_controller.rb +12 -3
  6. data/app/controllers/nodes_controller.rb +1 -3
  7. data/app/controllers/sites_controller.rb +7 -0
  8. data/app/controllers/versions_controller.rb +1 -1
  9. data/app/controllers/virtual_classes_controller.rb +7 -8
  10. data/app/models/acl.rb +3 -2
  11. data/app/models/relation_proxy.rb +2 -1
  12. data/app/models/role.rb +16 -0
  13. data/app/models/site.rb +48 -0
  14. data/app/models/text_document.rb +2 -1
  15. data/app/models/user.rb +2 -1
  16. data/app/models/zip.rb +2 -1
  17. data/app/views/acls/index.rhtml +11 -1
  18. data/app/views/documents/show.rhtml +1 -1
  19. data/app/views/relations/_add.erb +2 -2
  20. data/app/views/relations/_form.erb +5 -2
  21. data/app/views/relations/_li.erb +4 -1
  22. data/app/views/relations/index.erb +3 -3
  23. data/app/views/sites/_form.erb +1 -1
  24. data/app/views/sites/_job.erb +4 -0
  25. data/app/views/sites/index.erb +1 -1
  26. data/app/views/sites/jobs.erb +10 -0
  27. data/app/views/templates/document_create_tabs/_file.rhtml +3 -0
  28. data/app/views/zafu/default/Node-+search.zafu +2 -2
  29. data/bricks/acls/zena/init.rb +2 -1
  30. data/bricks/acls/zena/test/integration/acl_integration_test.rb +5 -5
  31. data/bricks/acls/zena/test/sites/erebus/acls.yml +2 -2
  32. data/bricks/acls/zena/test/unit/acl_test.rb +2 -2
  33. data/bricks/grid/lib/bricks/grid.rb +110 -0
  34. data/bricks/grid/zena/init.rb +4 -0
  35. data/bricks/math/lib/bricks/math.rb +1 -0
  36. data/bricks/pdf/lib/bricks/pdf.rb +10 -1
  37. data/bricks/sphinx/zena/tasks.rb +8 -40
  38. data/bricks/spreadsheet/README +31 -0
  39. data/bricks/spreadsheet/lib/bricks/spreadsheet.rb +293 -0
  40. data/bricks/spreadsheet/zena/init.rb +3 -0
  41. data/bricks/spreadsheet/zena/test/sites/zena/links.yml +11 -0
  42. data/bricks/spreadsheet/zena/test/unit/xlsx_test.rb +5 -0
  43. data/bricks/spreadsheet/zena/test/zafu/README +27 -0
  44. data/bricks/spreadsheet/zena/test/zafu/spreadsheet.yml +19 -0
  45. data/bricks/worker/lib/bricks/worker.rb +11 -5
  46. data/bricks/worker/zena/init.rb +8 -0
  47. data/bricks/worker/zena/migrate/20120501091514_add_site_id_to_jobs.rb +9 -0
  48. data/bricks/zena/zena/migrate/01_base.rb +0 -7
  49. data/bricks/zena/zena/migrate/20111214112233_add_comment_to_relations.rb +9 -0
  50. data/config/bricks.yml +15 -1
  51. data/config/environments/production.rb +2 -2
  52. data/config/gems.yml +6 -1
  53. data/doc/zafu_changes.yml +1 -1
  54. data/lib/tasks/zena.rake +6 -2
  55. data/lib/zena/app.rb +1 -1
  56. data/lib/zena/code/default_syntax.rb +5 -1
  57. data/lib/zena/db_helper/mysql.rb +5 -1
  58. data/lib/zena/deploy/app_init.rhtml +11 -7
  59. data/lib/zena/deploy/awstats.conf.rhtml +1 -1
  60. data/lib/zena/deploy/start_stop.rhtml +5 -5
  61. data/lib/zena/deploy/vhost.rhtml +16 -2
  62. data/lib/zena/deploy.rb +5 -3
  63. data/lib/zena/info.rb +1 -1
  64. data/lib/zena/parser/zazen_rules.rb +7 -7
  65. data/lib/zena/remote/node.rb +7 -0
  66. data/lib/zena/routes.rb +4 -5
  67. data/lib/zena/test_controller.rb +18 -1
  68. data/lib/zena/use/action.rb +13 -4
  69. data/lib/zena/use/ajax.rb +10 -4
  70. data/lib/zena/use/authlogic.rb +1 -1
  71. data/lib/zena/use/calendar.rb +4 -0
  72. data/lib/zena/use/conditional.rb +3 -0
  73. data/lib/zena/use/dates.rb +44 -4
  74. data/lib/zena/use/display.rb +45 -15
  75. data/lib/zena/use/forms.rb +59 -30
  76. data/lib/zena/use/query_builder.rb +12 -12
  77. data/lib/zena/use/recursion.rb +1 -1
  78. data/lib/zena/use/rendering.rb +18 -17
  79. data/lib/zena/use/urls.rb +2 -1
  80. data/lib/zena/use/zafu_safe_definitions.rb +0 -9
  81. data/lib/zena/use/zafu_templates.rb +2 -2
  82. data/lib/zena/use/zazen.rb +1 -3
  83. data/lib/zena/use.rb +13 -2
  84. data/lib/zena.rb +8 -2
  85. data/public/images/bullet_back.png +0 -0
  86. data/public/javascripts/grid.js +535 -0
  87. data/public/javascripts/tablekit.js +0 -0
  88. data/public/javascripts/window.js +0 -0
  89. data/public/javascripts/zena.js +17 -7
  90. data/public/stylesheets/admin.css +5 -1
  91. data/public/stylesheets/grid.css +19 -0
  92. data/test/fixtures/files/TestNode.zafu +123 -311
  93. data/test/fixtures/files/translations_fr.yml +6 -1
  94. data/test/functional/acls_controller_test.rb +2 -2
  95. data/test/functional/nodes_controller_test.rb +17 -11
  96. data/test/functional/virtual_classes_controller_test.rb +1 -1
  97. data/test/integration/query_node/basic.yml +9 -0
  98. data/test/integration/query_node/dates.yml +1 -1
  99. data/test/integration/zafu_compiler/ajax.yml +9 -9
  100. data/test/integration/zafu_compiler/basic.yml +0 -24
  101. data/test/integration/zafu_compiler/dates.yml +24 -7
  102. data/test/integration/zafu_compiler/display.yml +45 -2
  103. data/test/integration/zafu_compiler/errors.yml +0 -6
  104. data/test/integration/zafu_compiler/forms.yml +41 -3
  105. data/test/integration/zafu_compiler/query.yml +29 -3
  106. data/test/integration/zafu_compiler/roles.yml +0 -4
  107. data/test/integration/zafu_compiler/safe_definitions.yml +1 -1
  108. data/test/integration/zafu_compiler_test.rb +11 -3
  109. data/test/selenium/Add/add3.rsel +8 -8
  110. data/test/selenium/Drop/drop1.rsel +12 -12
  111. data/test/selenium/Drop/drop2.rsel +14 -14
  112. data/test/selenium/Drop/drop3.rsel +21 -21
  113. data/test/selenium/Drop/drop4.rsel +1 -1
  114. data/test/selenium/Edit/edit2.rsel +9 -9
  115. data/test/selenium/Edit/edit4.rsel +55 -0
  116. data/test/selenium/Edit/edit5.rsel +41 -0
  117. data/test/selenium/Edit/edit6.rsel +53 -0
  118. data/test/selenium/Filter/0setup.rsel +12 -0
  119. data/test/selenium/Filter/filter1.rsel +9 -0
  120. data/test/selenium/Filter/filter2.rsel +9 -0
  121. data/test/selenium/Form/form1.rsel +1 -1
  122. data/test/selenium/Form/form2.rsel +1 -1
  123. data/test/selenium/Form/form3.rsel +15 -0
  124. data/test/selenium/Grid/0setup.rsel +13 -0
  125. data/test/selenium/Grid/grid1.rsel +11 -0
  126. data/test/selenium/Swap/0setup.rsel +12 -0
  127. data/test/selenium/Swap/swap1.rsel +13 -0
  128. data/test/selenium/Swap/swap2.rsel +11 -0
  129. data/test/selenium/Toggle/toggle1.rsel +6 -6
  130. data/test/sites/zena/versions.yml +1 -1
  131. data/test/unit/relation_proxy_test.rb +36 -0
  132. data/test/unit/site_test.rb +10 -2
  133. data/test/unit/zena/use/rendering_test.rb +7 -6
  134. data/test/unit/zena/use/zazen_test.rb +1 -2
  135. data/vendor/TextMate/Ruby Shoulda.tmbundle/Commands/Run 2.tmCommand +24 -0
  136. data/vendor/TextMate/Ruby Shoulda.tmbundle/Commands/Run Context.tmCommand +58 -0
  137. data/vendor/TextMate/Ruby Shoulda.tmbundle/Commands/Run Focused Should.tmCommand +88 -0
  138. data/vendor/TextMate/Ruby Shoulda.tmbundle/Commands/Run.tmCommand +27 -0
  139. data/vendor/TextMate/Ruby Shoulda.tmbundle/Commands/YAML to Shoulda.tmCommand +23 -0
  140. data/vendor/TextMate/Ruby Shoulda.tmbundle/Preferences/Symbol List: Context.tmPreferences +19 -0
  141. data/vendor/TextMate/Ruby Shoulda.tmbundle/Preferences/Symbol List: Should.tmPreferences +19 -0
  142. data/vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/Factory attributes for.tmSnippet +16 -0
  143. data/vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/Factory build.tmSnippet +16 -0
  144. data/vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/Factory.tmSnippet +16 -0
  145. data/vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/Factory_define with class.tmSnippet +18 -0
  146. data/vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/Factory_define.tmSnippet +18 -0
  147. data/vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/Factory_next.tmSnippet +16 -0
  148. data/vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/Factory_sequence.tmSnippet +18 -0
  149. data/vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/assert_bad_value.tmSnippet +16 -0
  150. data/vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/assert_contains.tmSnippet +16 -0
  151. data/vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/assert_does_not_contain.tmSnippet +16 -0
  152. data/vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/assert_good_value.tmSnippet +16 -0
  153. data/vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/assert_same_elements.tmSnippet +16 -0
  154. data/vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/assert_save.tmSnippet +16 -0
  155. data/vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/assert_sent_email.tmSnippet +18 -0
  156. data/vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/assert_valid.tmSnippet +16 -0
  157. data/vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/association.tmSnippet +17 -0
  158. data/vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/attribute.tmSnippet +17 -0
  159. data/vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/before_should block.tmSnippet +18 -0
  160. data/vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/context block get.tmSnippet +22 -0
  161. data/vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/context block post.tmSnippet +23 -0
  162. data/vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/context block with setup.tmSnippet +25 -0
  163. data/vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/setup.tmSnippet +18 -0
  164. data/vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/should block with before proc.tmSnippet +18 -0
  165. data/vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/should block.tmSnippet +18 -0
  166. data/vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/should_allow_values_for.tmSnippet +16 -0
  167. data/vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/should_assign_to.tmSnippet +16 -0
  168. data/vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/should_be_restful denied.tmSnippet +20 -0
  169. data/vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/should_be_restful.tmSnippet +20 -0
  170. data/vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/should_belong_to.tmSnippet +16 -0
  171. data/vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/should_change by.tmSnippet +16 -0
  172. data/vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/should_change from to.tmSnippet +16 -0
  173. data/vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/should_ensure_length_at_least.tmSnippet +16 -0
  174. data/vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/should_ensure_length_in_range.tmSnippet +16 -0
  175. data/vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/should_ensure_length_is.tmSnippet +16 -0
  176. data/vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/should_ensure_value_in_range.tmSnippet +16 -0
  177. data/vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/should_eventually.tmSnippet +18 -0
  178. data/vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/should_filter_params.tmSnippet +16 -0
  179. data/vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/should_have_and_belong_to_many.tmSnippet +16 -0
  180. data/vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/should_have_class_methods.tmSnippet +16 -0
  181. data/vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/should_have_db_column.tmSnippet +16 -0
  182. data/vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/should_have_db_columns.tmSnippet +16 -0
  183. data/vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/should_have_index.tmSnippet +16 -0
  184. data/vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/should_have_indices.tmSnippet +16 -0
  185. data/vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/should_have_instance_methods.tmSnippet +16 -0
  186. data/vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/should_have_many.tmSnippet +16 -0
  187. data/vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/should_have_named_scope.tmSnippet +16 -0
  188. data/vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/should_have_one.tmSnippet +16 -0
  189. data/vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/should_have_readonly_attributes.tmSnippet +16 -0
  190. data/vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/should_not_allow_mass_assignment_of.tmSnippet +16 -0
  191. data/vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/should_not_allow_values_for.tmSnippet +16 -0
  192. data/vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/should_not_assign_to.tmSnippet +16 -0
  193. data/vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/should_not_change.tmSnippet +16 -0
  194. data/vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/should_not_set_the_flash.tmSnippet +16 -0
  195. data/vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/should_redirect_to.tmSnippet +16 -0
  196. data/vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/should_render_a_form.tmSnippet +16 -0
  197. data/vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/should_render_template.tmSnippet +16 -0
  198. data/vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/should_render_with_layout.tmSnippet +16 -0
  199. data/vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/should_render_without_layout.tmSnippet +16 -0
  200. data/vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/should_respond_with.tmSnippet +16 -0
  201. data/vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/should_respond_with_content_type.tmSnippet +16 -0
  202. data/vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/should_return_from_session.tmSnippet +16 -0
  203. data/vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/should_route.tmSnippet +16 -0
  204. data/vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/should_set_the_flash_to.tmSnippet +16 -0
  205. data/vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/should_validate_acceptance_of.tmSnippet +16 -0
  206. data/vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/should_validate_numericality_of.tmSnippet +16 -0
  207. data/vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/should_validate_presence_of.tmSnippet +16 -0
  208. data/vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/should_validate_uniqueness_of with scope.tmSnippet +16 -0
  209. data/vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/should_validate_uniqueness_of.tmSnippet +16 -0
  210. data/vendor/TextMate/Ruby Shoulda.tmbundle/Support/RubyMate/catch_exception.rb +39 -0
  211. data/vendor/TextMate/Ruby Shoulda.tmbundle/Support/RubyMate/run_script.rb +104 -0
  212. data/vendor/TextMate/Ruby Shoulda.tmbundle/Support/RubyMate/stdin_dialog.rb +14 -0
  213. data/vendor/TextMate/Ruby Shoulda.tmbundle/Support/RubyMate/test.rb +17 -0
  214. data/vendor/TextMate/Ruby Shoulda.tmbundle/Support/RubyMate/todo.txt +13 -0
  215. data/vendor/TextMate/Ruby Shoulda.tmbundle/Support/bin/yaml_to_shoulda.rb +25 -0
  216. data/vendor/TextMate/Ruby Shoulda.tmbundle/Syntaxes/Ruby on Rails (Shoulda).tmLanguage +166 -0
  217. data/vendor/TextMate/Ruby Shoulda.tmbundle/info.plist +304 -0
  218. data/vendor/TextMate/Zena.tmbundle/Commands/Run all yaml tests.tmCommand +37 -0
  219. data/vendor/TextMate/Zena.tmbundle/Commands/Run focused yaml test.tmCommand +52 -0
  220. data/vendor/TextMate/Zena.tmbundle/Support/RubyMate/catch_exception.rb +39 -0
  221. data/vendor/TextMate/Zena.tmbundle/Support/RubyMate/run_script.rb +118 -0
  222. data/vendor/TextMate/Zena.tmbundle/Support/RubyMate/stdin_dialog.rb +14 -0
  223. data/vendor/TextMate/Zena.tmbundle/info.plist +17 -0
  224. data/vendor/plugins/selenium-on-rails/CHANGELOG +125 -0
  225. data/vendor/plugins/selenium-on-rails/LICENSE-2.0.txt +202 -0
  226. data/vendor/plugins/selenium-on-rails/README.md +202 -0
  227. data/vendor/plugins/selenium-on-rails/Rakefile +38 -0
  228. data/vendor/plugins/selenium-on-rails/doc/classes/SeleniumController.html +265 -0
  229. data/vendor/plugins/selenium-on-rails/doc/classes/SeleniumHelper.html +148 -0
  230. data/vendor/plugins/selenium-on-rails/doc/classes/SeleniumOnRails/FixtureLoader.html +231 -0
  231. data/vendor/plugins/selenium-on-rails/doc/classes/SeleniumOnRails/PartialsSupport.html +195 -0
  232. data/vendor/plugins/selenium-on-rails/doc/classes/SeleniumOnRails/Paths.html +295 -0
  233. data/vendor/plugins/selenium-on-rails/doc/classes/SeleniumOnRails/RSelenese.html +219 -0
  234. data/vendor/plugins/selenium-on-rails/doc/classes/SeleniumOnRails/Renderer.html +156 -0
  235. data/vendor/plugins/selenium-on-rails/doc/classes/SeleniumOnRails/Selenese.html +179 -0
  236. data/vendor/plugins/selenium-on-rails/doc/classes/SeleniumOnRails/SuiteRenderer.html +223 -0
  237. data/vendor/plugins/selenium-on-rails/doc/classes/SeleniumOnRails/TestBuilder.html +441 -0
  238. data/vendor/plugins/selenium-on-rails/doc/classes/SeleniumOnRails/TestBuilderAccessors.html +3098 -0
  239. data/vendor/plugins/selenium-on-rails/doc/classes/SeleniumOnRails/TestBuilderActions.html +2080 -0
  240. data/vendor/plugins/selenium-on-rails/doc/classes/SeleniumOnRails/TestBuilderUserAccessors.html +116 -0
  241. data/vendor/plugins/selenium-on-rails/doc/classes/SeleniumOnRails/TestBuilderUserActions.html +116 -0
  242. data/vendor/plugins/selenium-on-rails/doc/classes/SeleniumOnRails.html +126 -0
  243. data/vendor/plugins/selenium-on-rails/doc/classes/SeleniumOnRailsConfig.html +150 -0
  244. data/vendor/plugins/selenium-on-rails/doc/files/CHANGELOG.html +422 -0
  245. data/vendor/plugins/selenium-on-rails/doc/files/README.html +321 -0
  246. data/vendor/plugins/selenium-on-rails/doc/files/lib/controllers/selenium_controller_rb.html +108 -0
  247. data/vendor/plugins/selenium-on-rails/doc/files/lib/selenium_helper_rb.html +101 -0
  248. data/vendor/plugins/selenium-on-rails/doc/files/lib/selenium_on_rails/acceptance_test_runner_rb.html +222 -0
  249. data/vendor/plugins/selenium-on-rails/doc/files/lib/selenium_on_rails/fixture_loader_rb.html +109 -0
  250. data/vendor/plugins/selenium-on-rails/doc/files/lib/selenium_on_rails/partials_support_rb.html +111 -0
  251. data/vendor/plugins/selenium-on-rails/doc/files/lib/selenium_on_rails/paths_rb.html +101 -0
  252. data/vendor/plugins/selenium-on-rails/doc/files/lib/selenium_on_rails/renderer_rb.html +101 -0
  253. data/vendor/plugins/selenium-on-rails/doc/files/lib/selenium_on_rails/rselenese_rb.html +118 -0
  254. data/vendor/plugins/selenium-on-rails/doc/files/lib/selenium_on_rails/selenese_rb.html +101 -0
  255. data/vendor/plugins/selenium-on-rails/doc/files/lib/selenium_on_rails/suite_renderer_rb.html +101 -0
  256. data/vendor/plugins/selenium-on-rails/doc/files/lib/selenium_on_rails/test_builder_accessors_rb.html +114 -0
  257. data/vendor/plugins/selenium-on-rails/doc/files/lib/selenium_on_rails/test_builder_actions_rb.html +113 -0
  258. data/vendor/plugins/selenium-on-rails/doc/files/lib/selenium_on_rails/test_builder_rb.html +120 -0
  259. data/vendor/plugins/selenium-on-rails/doc/files/lib/selenium_on_rails_config_rb.html +108 -0
  260. data/vendor/plugins/selenium-on-rails/doc/files/lib/selenium_on_rails_rb.html +115 -0
  261. data/vendor/plugins/selenium-on-rails/doc/fr_class_index.html +42 -0
  262. data/vendor/plugins/selenium-on-rails/doc/fr_file_index.html +43 -0
  263. data/vendor/plugins/selenium-on-rails/doc/fr_method_index.html +182 -0
  264. data/vendor/plugins/selenium-on-rails/doc/index.html +24 -0
  265. data/vendor/plugins/selenium-on-rails/doc/rdoc-style.css +208 -0
  266. data/vendor/plugins/selenium-on-rails/generators/selenium/USAGE +19 -0
  267. data/vendor/plugins/selenium-on-rails/generators/selenium/selenium_generator.rb +50 -0
  268. data/vendor/plugins/selenium-on-rails/generators/selenium/templates/rhtml.rhtml +16 -0
  269. data/vendor/plugins/selenium-on-rails/generators/selenium/templates/rselenese.rhtml +14 -0
  270. data/vendor/plugins/selenium-on-rails/generators/selenium/templates/selenese.rhtml +11 -0
  271. data/vendor/plugins/selenium-on-rails/init.rb +15 -0
  272. data/vendor/plugins/selenium-on-rails/lib/controllers/selenium_controller.rb +122 -0
  273. data/vendor/plugins/selenium-on-rails/lib/controllers/switch_environment_controller.rb +16 -0
  274. data/vendor/plugins/selenium-on-rails/lib/selenium_helper.rb +8 -0
  275. data/vendor/plugins/selenium-on-rails/lib/selenium_on_rails/acceptance_test_runner.rb +215 -0
  276. data/vendor/plugins/selenium-on-rails/lib/selenium_on_rails/fixture_loader.rb +57 -0
  277. data/vendor/plugins/selenium-on-rails/lib/selenium_on_rails/partials_support.rb +36 -0
  278. data/vendor/plugins/selenium-on-rails/lib/selenium_on_rails/paths.rb +61 -0
  279. data/vendor/plugins/selenium-on-rails/lib/selenium_on_rails/renderer.rb +20 -0
  280. data/vendor/plugins/selenium-on-rails/lib/selenium_on_rails/rselenese.rb +44 -0
  281. data/vendor/plugins/selenium-on-rails/lib/selenium_on_rails/selenese.rb +87 -0
  282. data/vendor/plugins/selenium-on-rails/lib/selenium_on_rails/suite_renderer.rb +56 -0
  283. data/vendor/plugins/selenium-on-rails/lib/selenium_on_rails/test_builder.rb +116 -0
  284. data/vendor/plugins/selenium-on-rails/lib/selenium_on_rails/test_builder_accessors.rb +1002 -0
  285. data/vendor/plugins/selenium-on-rails/lib/selenium_on_rails/test_builder_actions.rb +514 -0
  286. data/vendor/plugins/selenium-on-rails/lib/selenium_on_rails/test_builder_user_accessors.rb.example +91 -0
  287. data/vendor/plugins/selenium-on-rails/lib/selenium_on_rails/test_builder_user_actions.rb.example +24 -0
  288. data/vendor/plugins/selenium-on-rails/lib/selenium_on_rails.rb +11 -0
  289. data/vendor/plugins/selenium-on-rails/lib/selenium_on_rails_config.rb +30 -0
  290. data/vendor/plugins/selenium-on-rails/lib/views/layouts/layout.rhtml +18 -0
  291. data/vendor/plugins/selenium-on-rails/lib/views/record.rhtml +5 -0
  292. data/vendor/plugins/selenium-on-rails/lib/views/selenium_helper.rb +9 -0
  293. data/vendor/plugins/selenium-on-rails/lib/views/setup.rhtml +67 -0
  294. data/vendor/plugins/selenium-on-rails/lib/views/test_suite.rhtml +26 -0
  295. data/vendor/plugins/selenium-on-rails/routes.rb +24 -0
  296. data/vendor/plugins/selenium-on-rails/selenium-core/Blank.html +7 -0
  297. data/vendor/plugins/selenium-on-rails/selenium-core/InjectedRemoteRunner.html +8 -0
  298. data/vendor/plugins/selenium-on-rails/selenium-core/RemoteRunner.html +110 -0
  299. data/vendor/plugins/selenium-on-rails/selenium-core/SeleniumLog.html +109 -0
  300. data/vendor/plugins/selenium-on-rails/selenium-core/TestPrompt.html +145 -0
  301. data/vendor/plugins/selenium-on-rails/selenium-core/TestRunner-splash.html +55 -0
  302. data/vendor/plugins/selenium-on-rails/selenium-core/TestRunner.hta +177 -0
  303. data/vendor/plugins/selenium-on-rails/selenium-core/TestRunner.html +177 -0
  304. data/vendor/plugins/selenium-on-rails/selenium-core/domviewer/butmin.gif +0 -0
  305. data/vendor/plugins/selenium-on-rails/selenium-core/domviewer/butplus.gif +0 -0
  306. data/vendor/plugins/selenium-on-rails/selenium-core/domviewer/domviewer.css +298 -0
  307. data/vendor/plugins/selenium-on-rails/selenium-core/domviewer/domviewer.html +16 -0
  308. data/vendor/plugins/selenium-on-rails/selenium-core/domviewer/selenium-domviewer.js +205 -0
  309. data/vendor/plugins/selenium-on-rails/selenium-core/icons/all.png +0 -0
  310. data/vendor/plugins/selenium-on-rails/selenium-core/icons/continue.png +0 -0
  311. data/vendor/plugins/selenium-on-rails/selenium-core/icons/continue_disabled.png +0 -0
  312. data/vendor/plugins/selenium-on-rails/selenium-core/icons/pause.png +0 -0
  313. data/vendor/plugins/selenium-on-rails/selenium-core/icons/pause_disabled.png +0 -0
  314. data/vendor/plugins/selenium-on-rails/selenium-core/icons/selected.png +0 -0
  315. data/vendor/plugins/selenium-on-rails/selenium-core/icons/step.png +0 -0
  316. data/vendor/plugins/selenium-on-rails/selenium-core/icons/step_disabled.png +0 -0
  317. data/vendor/plugins/selenium-on-rails/selenium-core/iedoc-core.xml +1759 -0
  318. data/vendor/plugins/selenium-on-rails/selenium-core/iedoc.xml +1800 -0
  319. data/vendor/plugins/selenium-on-rails/selenium-core/lib/cssQuery/cssQuery-p.js +6 -0
  320. data/vendor/plugins/selenium-on-rails/selenium-core/lib/cssQuery/src/cssQuery-level2.js +142 -0
  321. data/vendor/plugins/selenium-on-rails/selenium-core/lib/cssQuery/src/cssQuery-level3.js +150 -0
  322. data/vendor/plugins/selenium-on-rails/selenium-core/lib/cssQuery/src/cssQuery-standard.js +53 -0
  323. data/vendor/plugins/selenium-on-rails/selenium-core/lib/cssQuery/src/cssQuery.js +356 -0
  324. data/vendor/plugins/selenium-on-rails/selenium-core/lib/prototype.js +2006 -0
  325. data/vendor/plugins/selenium-on-rails/selenium-core/lib/scriptaculous/builder.js +101 -0
  326. data/vendor/plugins/selenium-on-rails/selenium-core/lib/scriptaculous/controls.js +815 -0
  327. data/vendor/plugins/selenium-on-rails/selenium-core/lib/scriptaculous/dragdrop.js +915 -0
  328. data/vendor/plugins/selenium-on-rails/selenium-core/lib/scriptaculous/effects.js +958 -0
  329. data/vendor/plugins/selenium-on-rails/selenium-core/lib/scriptaculous/scriptaculous.js +47 -0
  330. data/vendor/plugins/selenium-on-rails/selenium-core/lib/scriptaculous/slider.js +283 -0
  331. data/vendor/plugins/selenium-on-rails/selenium-core/lib/scriptaculous/unittest.js +383 -0
  332. data/vendor/plugins/selenium-on-rails/selenium-core/lib/snapsie.js +91 -0
  333. data/vendor/plugins/selenium-on-rails/selenium-core/scripts/find_matching_child.js +69 -0
  334. data/vendor/plugins/selenium-on-rails/selenium-core/scripts/htmlutils.js +1616 -0
  335. data/vendor/plugins/selenium-on-rails/selenium-core/scripts/injection.html +72 -0
  336. data/vendor/plugins/selenium-on-rails/selenium-core/scripts/selenium-api.js +3184 -0
  337. data/vendor/plugins/selenium-on-rails/selenium-core/scripts/selenium-browserbot.js +2300 -0
  338. data/vendor/plugins/selenium-on-rails/selenium-core/scripts/selenium-browserdetect.js +153 -0
  339. data/vendor/plugins/selenium-on-rails/selenium-core/scripts/selenium-commandhandlers.js +377 -0
  340. data/vendor/plugins/selenium-on-rails/selenium-core/scripts/selenium-executionloop.js +175 -0
  341. data/vendor/plugins/selenium-on-rails/selenium-core/scripts/selenium-logging.js +148 -0
  342. data/vendor/plugins/selenium-on-rails/selenium-core/scripts/selenium-remoterunner.js +695 -0
  343. data/vendor/plugins/selenium-on-rails/selenium-core/scripts/selenium-testrunner.js +1362 -0
  344. data/vendor/plugins/selenium-on-rails/selenium-core/scripts/selenium-version.js +5 -0
  345. data/vendor/plugins/selenium-on-rails/selenium-core/scripts/ui-doc.html +803 -0
  346. data/vendor/plugins/selenium-on-rails/selenium-core/scripts/ui-element.js +1537 -0
  347. data/vendor/plugins/selenium-on-rails/selenium-core/scripts/ui-map-sample.js +979 -0
  348. data/vendor/plugins/selenium-on-rails/selenium-core/scripts/user-extensions.js +3 -0
  349. data/vendor/plugins/selenium-on-rails/selenium-core/scripts/user-extensions.js.sample +75 -0
  350. data/vendor/plugins/selenium-on-rails/selenium-core/scripts/xmlextras.js +153 -0
  351. data/vendor/plugins/selenium-on-rails/selenium-core/selenium-logo.png +0 -0
  352. data/vendor/plugins/selenium-on-rails/selenium-core/selenium-test.css +43 -0
  353. data/vendor/plugins/selenium-on-rails/selenium-core/selenium.css +316 -0
  354. data/vendor/plugins/selenium-on-rails/selenium-core/xpath/dom.js +566 -0
  355. data/vendor/plugins/selenium-on-rails/selenium-core/xpath/javascript-xpath-0.1.11.js +2816 -0
  356. data/vendor/plugins/selenium-on-rails/selenium-core/xpath/util.js +549 -0
  357. data/vendor/plugins/selenium-on-rails/selenium-core/xpath/xmltoken.js +149 -0
  358. data/vendor/plugins/selenium-on-rails/selenium-core/xpath/xpath.js +2450 -0
  359. data/vendor/plugins/selenium-on-rails/tasks/test_acceptance.rake +8 -0
  360. data/vendor/plugins/selenium-on-rails/test/fixtures/config.yml +37 -0
  361. data/vendor/plugins/selenium-on-rails/test/fixtures/selenium.yml +27 -0
  362. data/vendor/plugins/selenium-on-rails/test/paths_test.rb +72 -0
  363. data/vendor/plugins/selenium-on-rails/test/renderer_test.rb +157 -0
  364. data/vendor/plugins/selenium-on-rails/test/rselenese_test.rb +708 -0
  365. data/vendor/plugins/selenium-on-rails/test/selenese_test.rb +242 -0
  366. data/vendor/plugins/selenium-on-rails/test/selenium_controller_test.rb +67 -0
  367. data/vendor/plugins/selenium-on-rails/test/selenium_on_rails_config_test.rb +43 -0
  368. data/vendor/plugins/selenium-on-rails/test/selenium_support_test.rb +35 -0
  369. data/vendor/plugins/selenium-on-rails/test/setup_test.rb +31 -0
  370. data/vendor/plugins/selenium-on-rails/test/suite_renderer_test.rb +109 -0
  371. data/vendor/plugins/selenium-on-rails/test/switch_environment_controller_test.rb +17 -0
  372. data/vendor/plugins/selenium-on-rails/test/test_builder_functions_authortest.rb +51 -0
  373. data/vendor/plugins/selenium-on-rails/test/test_helper.rb +101 -0
  374. data/vendor/plugins/selenium-on-rails/test_data/_partial.rsel +1 -0
  375. data/vendor/plugins/selenium-on-rails/test_data/own_layout.html +12 -0
  376. data/vendor/plugins/selenium-on-rails/test_data/partials/_html.html +6 -0
  377. data/vendor/plugins/selenium-on-rails/test_data/partials/_nesting.rsel +2 -0
  378. data/vendor/plugins/selenium-on-rails/test_data/partials/_rhtml.rhtml +6 -0
  379. data/vendor/plugins/selenium-on-rails/test_data/partials/_rsel.rsel +1 -0
  380. data/vendor/plugins/selenium-on-rails/test_data/partials/_sel.sel +5 -0
  381. data/vendor/plugins/selenium-on-rails/test_data/partials/all_partials.rsel +5 -0
  382. data/vendor/plugins/selenium-on-rails/test_data/rhtml.rhtml +7 -0
  383. data/vendor/plugins/selenium-on-rails/test_data/rselenese.rsel +8 -0
  384. data/vendor/plugins/selenium-on-rails/test_data/selenese.sel +7 -0
  385. data/vendor/plugins/selenium-on-rails/test_data/suite_one/subsuite/suite_one_subsuite_testcase.sel +1 -0
  386. data/vendor/plugins/selenium-on-rails/test_data/suite_one/suite_one_testcase1.sel +1 -0
  387. data/vendor/plugins/selenium-on-rails/test_data/suite_one/suite_one_testcase2.sel +1 -0
  388. data/vendor/plugins/selenium-on-rails/test_data/suite_two/suite_two_testcase.sel +1 -0
  389. data/zena.gemspec +290 -7
  390. metadata +346 -52
  391. data/app/views/nodes/_table.rhtml +0 -14
  392. data/lib/zena/use/grid.rb +0 -154
@@ -0,0 +1,958 @@
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();