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,2006 +0,0 @@
1
- /* Prototype JavaScript framework, version 1.5.0_rc0
2
- * (c) 2005 Sam Stephenson <sam@conio.net>
3
- *
4
- * Prototype is freely distributable under the terms of an MIT-style license.
5
- * For details, see the Prototype web site: http://prototype.conio.net/
6
- *
7
- /*--------------------------------------------------------------------------*/
8
-
9
- var Prototype = {
10
- Version: '1.5.0_rc0',
11
- ScriptFragment: '(?:<script.*?>)((\n|\r|.)*?)(?:<\/script>)',
12
-
13
- emptyFunction: function() {},
14
- K: function(x) {return x}
15
- }
16
-
17
- var Class = {
18
- create: function() {
19
- return function() {
20
- this.initialize.apply(this, arguments);
21
- }
22
- }
23
- }
24
-
25
- var Abstract = new Object();
26
-
27
- Object.extend = function(destination, source) {
28
- for (var property in source) {
29
- destination[property] = source[property];
30
- }
31
- return destination;
32
- }
33
-
34
- Object.inspect = function(object) {
35
- try {
36
- if (object == undefined) return 'undefined';
37
- if (object == null) return 'null';
38
- return object.inspect ? object.inspect() : object.toString();
39
- } catch (e) {
40
- if (e instanceof RangeError) return '...';
41
- throw e;
42
- }
43
- }
44
-
45
- Function.prototype.bind = function() {
46
- var __method = this, args = $A(arguments), object = args.shift();
47
- return function() {
48
- return __method.apply(object, args.concat($A(arguments)));
49
- }
50
- }
51
-
52
- Function.prototype.bindAsEventListener = function(object) {
53
- var __method = this;
54
- return function(event) {
55
- return __method.call(object, event || window.event);
56
- }
57
- }
58
-
59
- Object.extend(Number.prototype, {
60
- toColorPart: function() {
61
- var digits = this.toString(16);
62
- if (this < 16) return '0' + digits;
63
- return digits;
64
- },
65
-
66
- succ: function() {
67
- return this + 1;
68
- },
69
-
70
- times: function(iterator) {
71
- $R(0, this, true).each(iterator);
72
- return this;
73
- }
74
- });
75
-
76
- var Try = {
77
- these: function() {
78
- var returnValue;
79
-
80
- for (var i = 0; i < arguments.length; i++) {
81
- var lambda = arguments[i];
82
- try {
83
- returnValue = lambda();
84
- break;
85
- } catch (e) {}
86
- }
87
-
88
- return returnValue;
89
- }
90
- }
91
-
92
- /*--------------------------------------------------------------------------*/
93
-
94
- var PeriodicalExecuter = Class.create();
95
- PeriodicalExecuter.prototype = {
96
- initialize: function(callback, frequency) {
97
- this.callback = callback;
98
- this.frequency = frequency;
99
- this.currentlyExecuting = false;
100
-
101
- this.registerCallback();
102
- },
103
-
104
- registerCallback: function() {
105
- setInterval(this.onTimerEvent.bind(this), this.frequency * 1000);
106
- },
107
-
108
- onTimerEvent: function() {
109
- if (!this.currentlyExecuting) {
110
- try {
111
- this.currentlyExecuting = true;
112
- this.callback();
113
- } finally {
114
- this.currentlyExecuting = false;
115
- }
116
- }
117
- }
118
- }
119
- Object.extend(String.prototype, {
120
- gsub: function(pattern, replacement) {
121
- var result = '', source = this, match;
122
- replacement = arguments.callee.prepareReplacement(replacement);
123
-
124
- while (source.length > 0) {
125
- if (match = source.match(pattern)) {
126
- result += source.slice(0, match.index);
127
- result += (replacement(match) || '').toString();
128
- source = source.slice(match.index + match[0].length);
129
- } else {
130
- result += source, source = '';
131
- }
132
- }
133
- return result;
134
- },
135
-
136
- sub: function(pattern, replacement, count) {
137
- replacement = this.gsub.prepareReplacement(replacement);
138
- count = count === undefined ? 1 : count;
139
-
140
- return this.gsub(pattern, function(match) {
141
- if (--count < 0) return match[0];
142
- return replacement(match);
143
- });
144
- },
145
-
146
- scan: function(pattern, iterator) {
147
- this.gsub(pattern, iterator);
148
- return this;
149
- },
150
-
151
- truncate: function(length, truncation) {
152
- length = length || 30;
153
- truncation = truncation === undefined ? '...' : truncation;
154
- return this.length > length ?
155
- this.slice(0, length - truncation.length) + truncation : this;
156
- },
157
-
158
- strip: function() {
159
- return this.replace(/^\s+/, '').replace(/\s+$/, '');
160
- },
161
-
162
- stripTags: function() {
163
- return this.replace(/<\/?[^>]+>/gi, '');
164
- },
165
-
166
- stripScripts: function() {
167
- return this.replace(new RegExp(Prototype.ScriptFragment, 'img'), '');
168
- },
169
-
170
- extractScripts: function() {
171
- var matchAll = new RegExp(Prototype.ScriptFragment, 'img');
172
- var matchOne = new RegExp(Prototype.ScriptFragment, 'im');
173
- return (this.match(matchAll) || []).map(function(scriptTag) {
174
- return (scriptTag.match(matchOne) || ['', ''])[1];
175
- });
176
- },
177
-
178
- evalScripts: function() {
179
- return this.extractScripts().map(function(script) { return eval(script) });
180
- },
181
-
182
- escapeHTML: function() {
183
- var div = document.createElement('div');
184
- var text = document.createTextNode(this);
185
- div.appendChild(text);
186
- return div.innerHTML;
187
- },
188
-
189
- unescapeHTML: function() {
190
- var div = document.createElement('div');
191
- div.innerHTML = this.stripTags();
192
- return div.childNodes[0] ? div.childNodes[0].nodeValue : '';
193
- },
194
-
195
- toQueryParams: function() {
196
- var pairs = this.match(/^\??(.*)$/)[1].split('&');
197
- return pairs.inject({}, function(params, pairString) {
198
- var pair = pairString.split('=');
199
- params[pair[0]] = pair[1];
200
- return params;
201
- });
202
- },
203
-
204
- toArray: function() {
205
- return this.split('');
206
- },
207
-
208
- camelize: function() {
209
- var oStringList = this.split('-');
210
- if (oStringList.length == 1) return oStringList[0];
211
-
212
- var camelizedString = this.indexOf('-') == 0
213
- ? oStringList[0].charAt(0).toUpperCase() + oStringList[0].substring(1)
214
- : oStringList[0];
215
-
216
- for (var i = 1, len = oStringList.length; i < len; i++) {
217
- var s = oStringList[i];
218
- camelizedString += s.charAt(0).toUpperCase() + s.substring(1);
219
- }
220
-
221
- return camelizedString;
222
- },
223
-
224
- inspect: function() {
225
- return "'" + this.replace(/\\/g, '\\\\').replace(/'/g, '\\\'') + "'";
226
- }
227
- });
228
-
229
- String.prototype.gsub.prepareReplacement = function(replacement) {
230
- if (typeof replacement == 'function') return replacement;
231
- var template = new Template(replacement);
232
- return function(match) { return template.evaluate(match) };
233
- }
234
-
235
- String.prototype.parseQuery = String.prototype.toQueryParams;
236
-
237
- var Template = Class.create();
238
- Template.Pattern = /(^|.|\r|\n)(#\{(.*?)\})/;
239
- Template.prototype = {
240
- initialize: function(template, pattern) {
241
- this.template = template.toString();
242
- this.pattern = pattern || Template.Pattern;
243
- },
244
-
245
- evaluate: function(object) {
246
- return this.template.gsub(this.pattern, function(match) {
247
- var before = match[1];
248
- if (before == '\\') return match[2];
249
- return before + (object[match[3]] || '').toString();
250
- });
251
- }
252
- }
253
-
254
- var $break = new Object();
255
- var $continue = new Object();
256
-
257
- var Enumerable = {
258
- each: function(iterator) {
259
- var index = 0;
260
- try {
261
- this._each(function(value) {
262
- try {
263
- iterator(value, index++);
264
- } catch (e) {
265
- if (e != $continue) throw e;
266
- }
267
- });
268
- } catch (e) {
269
- if (e != $break) throw e;
270
- }
271
- },
272
-
273
- all: function(iterator) {
274
- var result = true;
275
- this.each(function(value, index) {
276
- result = result && !!(iterator || Prototype.K)(value, index);
277
- if (!result) throw $break;
278
- });
279
- return result;
280
- },
281
-
282
- any: function(iterator) {
283
- var result = true;
284
- this.each(function(value, index) {
285
- if (result = !!(iterator || Prototype.K)(value, index))
286
- throw $break;
287
- });
288
- return result;
289
- },
290
-
291
- collect: function(iterator) {
292
- var results = [];
293
- this.each(function(value, index) {
294
- results.push(iterator(value, index));
295
- });
296
- return results;
297
- },
298
-
299
- detect: function (iterator) {
300
- var result;
301
- this.each(function(value, index) {
302
- if (iterator(value, index)) {
303
- result = value;
304
- throw $break;
305
- }
306
- });
307
- return result;
308
- },
309
-
310
- findAll: function(iterator) {
311
- var results = [];
312
- this.each(function(value, index) {
313
- if (iterator(value, index))
314
- results.push(value);
315
- });
316
- return results;
317
- },
318
-
319
- grep: function(pattern, iterator) {
320
- var results = [];
321
- this.each(function(value, index) {
322
- var stringValue = value.toString();
323
- if (stringValue.match(pattern))
324
- results.push((iterator || Prototype.K)(value, index));
325
- })
326
- return results;
327
- },
328
-
329
- include: function(object) {
330
- var found = false;
331
- this.each(function(value) {
332
- if (value == object) {
333
- found = true;
334
- throw $break;
335
- }
336
- });
337
- return found;
338
- },
339
-
340
- inject: function(memo, iterator) {
341
- this.each(function(value, index) {
342
- memo = iterator(memo, value, index);
343
- });
344
- return memo;
345
- },
346
-
347
- invoke: function(method) {
348
- var args = $A(arguments).slice(1);
349
- return this.collect(function(value) {
350
- return value[method].apply(value, args);
351
- });
352
- },
353
-
354
- max: function(iterator) {
355
- var result;
356
- this.each(function(value, index) {
357
- value = (iterator || Prototype.K)(value, index);
358
- if (result == undefined || value >= result)
359
- result = value;
360
- });
361
- return result;
362
- },
363
-
364
- min: function(iterator) {
365
- var result;
366
- this.each(function(value, index) {
367
- value = (iterator || Prototype.K)(value, index);
368
- if (result == undefined || value < result)
369
- result = value;
370
- });
371
- return result;
372
- },
373
-
374
- partition: function(iterator) {
375
- var trues = [], falses = [];
376
- this.each(function(value, index) {
377
- ((iterator || Prototype.K)(value, index) ?
378
- trues : falses).push(value);
379
- });
380
- return [trues, falses];
381
- },
382
-
383
- pluck: function(property) {
384
- var results = [];
385
- this.each(function(value, index) {
386
- results.push(value[property]);
387
- });
388
- return results;
389
- },
390
-
391
- reject: function(iterator) {
392
- var results = [];
393
- this.each(function(value, index) {
394
- if (!iterator(value, index))
395
- results.push(value);
396
- });
397
- return results;
398
- },
399
-
400
- sortBy: function(iterator) {
401
- return this.collect(function(value, index) {
402
- return {value: value, criteria: iterator(value, index)};
403
- }).sort(function(left, right) {
404
- var a = left.criteria, b = right.criteria;
405
- return a < b ? -1 : a > b ? 1 : 0;
406
- }).pluck('value');
407
- },
408
-
409
- toArray: function() {
410
- return this.collect(Prototype.K);
411
- },
412
-
413
- zip: function() {
414
- var iterator = Prototype.K, args = $A(arguments);
415
- if (typeof args.last() == 'function')
416
- iterator = args.pop();
417
-
418
- var collections = [this].concat(args).map($A);
419
- return this.map(function(value, index) {
420
- return iterator(collections.pluck(index));
421
- });
422
- },
423
-
424
- inspect: function() {
425
- return '#<Enumerable:' + this.toArray().inspect() + '>';
426
- }
427
- }
428
-
429
- Object.extend(Enumerable, {
430
- map: Enumerable.collect,
431
- find: Enumerable.detect,
432
- select: Enumerable.findAll,
433
- member: Enumerable.include,
434
- entries: Enumerable.toArray
435
- });
436
- var $A = Array.from = function(iterable) {
437
- if (!iterable) return [];
438
- if (iterable.toArray) {
439
- return iterable.toArray();
440
- } else {
441
- var results = [];
442
- for (var i = 0; i < iterable.length; i++)
443
- results.push(iterable[i]);
444
- return results;
445
- }
446
- }
447
-
448
- Object.extend(Array.prototype, Enumerable);
449
-
450
- if (!Array.prototype._reverse)
451
- Array.prototype._reverse = Array.prototype.reverse;
452
-
453
- Object.extend(Array.prototype, {
454
- _each: function(iterator) {
455
- for (var i = 0; i < this.length; i++)
456
- iterator(this[i]);
457
- },
458
-
459
- clear: function() {
460
- this.length = 0;
461
- return this;
462
- },
463
-
464
- first: function() {
465
- return this[0];
466
- },
467
-
468
- last: function() {
469
- return this[this.length - 1];
470
- },
471
-
472
- compact: function() {
473
- return this.select(function(value) {
474
- return value != undefined || value != null;
475
- });
476
- },
477
-
478
- flatten: function() {
479
- return this.inject([], function(array, value) {
480
- return array.concat(value && value.constructor == Array ?
481
- value.flatten() : [value]);
482
- });
483
- },
484
-
485
- without: function() {
486
- var values = $A(arguments);
487
- return this.select(function(value) {
488
- return !values.include(value);
489
- });
490
- },
491
-
492
- indexOf: function(object) {
493
- for (var i = 0; i < this.length; i++)
494
- if (this[i] == object) return i;
495
- return -1;
496
- },
497
-
498
- reverse: function(inline) {
499
- return (inline !== false ? this : this.toArray())._reverse();
500
- },
501
-
502
- inspect: function() {
503
- return '[' + this.map(Object.inspect).join(', ') + ']';
504
- }
505
- });
506
- var Hash = {
507
- _each: function(iterator) {
508
- for (var key in this) {
509
- var value = this[key];
510
- if (typeof value == 'function') continue;
511
-
512
- var pair = [key, value];
513
- pair.key = key;
514
- pair.value = value;
515
- iterator(pair);
516
- }
517
- },
518
-
519
- keys: function() {
520
- return this.pluck('key');
521
- },
522
-
523
- values: function() {
524
- return this.pluck('value');
525
- },
526
-
527
- merge: function(hash) {
528
- return $H(hash).inject($H(this), function(mergedHash, pair) {
529
- mergedHash[pair.key] = pair.value;
530
- return mergedHash;
531
- });
532
- },
533
-
534
- toQueryString: function() {
535
- return this.map(function(pair) {
536
- return pair.map(encodeURIComponent).join('=');
537
- }).join('&');
538
- },
539
-
540
- inspect: function() {
541
- return '#<Hash:{' + this.map(function(pair) {
542
- return pair.map(Object.inspect).join(': ');
543
- }).join(', ') + '}>';
544
- }
545
- }
546
-
547
- function $H(object) {
548
- var hash = Object.extend({}, object || {});
549
- Object.extend(hash, Enumerable);
550
- Object.extend(hash, Hash);
551
- return hash;
552
- }
553
- ObjectRange = Class.create();
554
- Object.extend(ObjectRange.prototype, Enumerable);
555
- Object.extend(ObjectRange.prototype, {
556
- initialize: function(start, end, exclusive) {
557
- this.start = start;
558
- this.end = end;
559
- this.exclusive = exclusive;
560
- },
561
-
562
- _each: function(iterator) {
563
- var value = this.start;
564
- do {
565
- iterator(value);
566
- value = value.succ();
567
- } while (this.include(value));
568
- },
569
-
570
- include: function(value) {
571
- if (value < this.start)
572
- return false;
573
- if (this.exclusive)
574
- return value < this.end;
575
- return value <= this.end;
576
- }
577
- });
578
-
579
- var $R = function(start, end, exclusive) {
580
- return new ObjectRange(start, end, exclusive);
581
- }
582
-
583
- var Ajax = {
584
- getTransport: function() {
585
- return Try.these(
586
- function() {return new XMLHttpRequest()},
587
- function() {return new ActiveXObject('Msxml2.XMLHTTP')},
588
- function() {return new ActiveXObject('Microsoft.XMLHTTP')}
589
- ) || false;
590
- },
591
-
592
- activeRequestCount: 0
593
- }
594
-
595
- Ajax.Responders = {
596
- responders: [],
597
-
598
- _each: function(iterator) {
599
- this.responders._each(iterator);
600
- },
601
-
602
- register: function(responderToAdd) {
603
- if (!this.include(responderToAdd))
604
- this.responders.push(responderToAdd);
605
- },
606
-
607
- unregister: function(responderToRemove) {
608
- this.responders = this.responders.without(responderToRemove);
609
- },
610
-
611
- dispatch: function(callback, request, transport, json) {
612
- this.each(function(responder) {
613
- if (responder[callback] && typeof responder[callback] == 'function') {
614
- try {
615
- responder[callback].apply(responder, [request, transport, json]);
616
- } catch (e) {}
617
- }
618
- });
619
- }
620
- };
621
-
622
- Object.extend(Ajax.Responders, Enumerable);
623
-
624
- Ajax.Responders.register({
625
- onCreate: function() {
626
- Ajax.activeRequestCount++;
627
- },
628
-
629
- onComplete: function() {
630
- Ajax.activeRequestCount--;
631
- }
632
- });
633
-
634
- Ajax.Base = function() {};
635
- Ajax.Base.prototype = {
636
- setOptions: function(options) {
637
- this.options = {
638
- method: 'post',
639
- asynchronous: true,
640
- contentType: 'application/x-www-form-urlencoded',
641
- parameters: ''
642
- }
643
- Object.extend(this.options, options || {});
644
- },
645
-
646
- responseIsSuccess: function() {
647
- return this.transport.status == undefined
648
- || this.transport.status == 0
649
- || (this.transport.status >= 200 && this.transport.status < 300);
650
- },
651
-
652
- responseIsFailure: function() {
653
- return !this.responseIsSuccess();
654
- }
655
- }
656
-
657
- Ajax.Request = Class.create();
658
- Ajax.Request.Events =
659
- ['Uninitialized', 'Loading', 'Loaded', 'Interactive', 'Complete'];
660
-
661
- Ajax.Request.prototype = Object.extend(new Ajax.Base(), {
662
- initialize: function(url, options) {
663
- this.transport = Ajax.getTransport();
664
- this.setOptions(options);
665
- this.request(url);
666
- },
667
-
668
- request: function(url) {
669
- var parameters = this.options.parameters || '';
670
- if (parameters.length > 0) parameters += '&_=';
671
-
672
- try {
673
- this.url = url;
674
- if (this.options.method == 'get' && parameters.length > 0)
675
- this.url += (this.url.match(/\?/) ? '&' : '?') + parameters;
676
-
677
- Ajax.Responders.dispatch('onCreate', this, this.transport);
678
-
679
- this.transport.open(this.options.method, this.url,
680
- this.options.asynchronous);
681
-
682
- if (this.options.asynchronous) {
683
- this.transport.onreadystatechange = this.onStateChange.bind(this);
684
- setTimeout((function() {this.respondToReadyState(1)}).bind(this), 10);
685
- }
686
-
687
- this.setRequestHeaders();
688
-
689
- var body = this.options.postBody ? this.options.postBody : parameters;
690
- this.transport.send(this.options.method == 'post' ? body : null);
691
-
692
- } catch (e) {
693
- this.dispatchException(e);
694
- }
695
- },
696
-
697
- setRequestHeaders: function() {
698
- var requestHeaders =
699
- ['X-Requested-With', 'XMLHttpRequest',
700
- 'X-Prototype-Version', Prototype.Version,
701
- 'Accept', 'text/javascript, text/html, application/xml, text/xml, */*'];
702
-
703
- if (this.options.method == 'post') {
704
- requestHeaders.push('Content-type', this.options.contentType);
705
-
706
- /* Force "Connection: close" for Mozilla browsers to work around
707
- * a bug where XMLHttpReqeuest sends an incorrect Content-length
708
- * header. See Mozilla Bugzilla #246651.
709
- */
710
- if (this.transport.overrideMimeType)
711
- requestHeaders.push('Connection', 'close');
712
- }
713
-
714
- if (this.options.requestHeaders)
715
- requestHeaders.push.apply(requestHeaders, this.options.requestHeaders);
716
-
717
- for (var i = 0; i < requestHeaders.length; i += 2)
718
- this.transport.setRequestHeader(requestHeaders[i], requestHeaders[i+1]);
719
- },
720
-
721
- onStateChange: function() {
722
- var readyState = this.transport.readyState;
723
- if (readyState != 1)
724
- this.respondToReadyState(this.transport.readyState);
725
- },
726
-
727
- header: function(name) {
728
- try {
729
- return this.transport.getResponseHeader(name);
730
- } catch (e) {}
731
- },
732
-
733
- evalJSON: function() {
734
- try {
735
- return eval('(' + this.header('X-JSON') + ')');
736
- } catch (e) {}
737
- },
738
-
739
- evalResponse: function() {
740
- try {
741
- return eval(this.transport.responseText);
742
- } catch (e) {
743
- this.dispatchException(e);
744
- }
745
- },
746
-
747
- respondToReadyState: function(readyState) {
748
- var event = Ajax.Request.Events[readyState];
749
- var transport = this.transport, json = this.evalJSON();
750
-
751
- if (event == 'Complete') {
752
- try {
753
- (this.options['on' + this.transport.status]
754
- || this.options['on' + (this.responseIsSuccess() ? 'Success' : 'Failure')]
755
- || Prototype.emptyFunction)(transport, json);
756
- } catch (e) {
757
- this.dispatchException(e);
758
- }
759
-
760
- if ((this.header('Content-type') || '').match(/^text\/javascript/i))
761
- this.evalResponse();
762
- }
763
-
764
- try {
765
- (this.options['on' + event] || Prototype.emptyFunction)(transport, json);
766
- Ajax.Responders.dispatch('on' + event, this, transport, json);
767
- } catch (e) {
768
- this.dispatchException(e);
769
- }
770
-
771
- /* Avoid memory leak in MSIE: clean up the oncomplete event handler */
772
- if (event == 'Complete')
773
- this.transport.onreadystatechange = Prototype.emptyFunction;
774
- },
775
-
776
- dispatchException: function(exception) {
777
- (this.options.onException || Prototype.emptyFunction)(this, exception);
778
- Ajax.Responders.dispatch('onException', this, exception);
779
- }
780
- });
781
-
782
- Ajax.Updater = Class.create();
783
-
784
- Object.extend(Object.extend(Ajax.Updater.prototype, Ajax.Request.prototype), {
785
- initialize: function(container, url, options) {
786
- this.containers = {
787
- success: container.success ? $(container.success) : $(container),
788
- failure: container.failure ? $(container.failure) :
789
- (container.success ? null : $(container))
790
- }
791
-
792
- this.transport = Ajax.getTransport();
793
- this.setOptions(options);
794
-
795
- var onComplete = this.options.onComplete || Prototype.emptyFunction;
796
- this.options.onComplete = (function(transport, object) {
797
- this.updateContent();
798
- onComplete(transport, object);
799
- }).bind(this);
800
-
801
- this.request(url);
802
- },
803
-
804
- updateContent: function() {
805
- var receiver = this.responseIsSuccess() ?
806
- this.containers.success : this.containers.failure;
807
- var response = this.transport.responseText;
808
-
809
- if (!this.options.evalScripts)
810
- response = response.stripScripts();
811
-
812
- if (receiver) {
813
- if (this.options.insertion) {
814
- new this.options.insertion(receiver, response);
815
- } else {
816
- Element.update(receiver, response);
817
- }
818
- }
819
-
820
- if (this.responseIsSuccess()) {
821
- if (this.onComplete)
822
- setTimeout(this.onComplete.bind(this), 10);
823
- }
824
- }
825
- });
826
-
827
- Ajax.PeriodicalUpdater = Class.create();
828
- Ajax.PeriodicalUpdater.prototype = Object.extend(new Ajax.Base(), {
829
- initialize: function(container, url, options) {
830
- this.setOptions(options);
831
- this.onComplete = this.options.onComplete;
832
-
833
- this.frequency = (this.options.frequency || 2);
834
- this.decay = (this.options.decay || 1);
835
-
836
- this.updater = {};
837
- this.container = container;
838
- this.url = url;
839
-
840
- this.start();
841
- },
842
-
843
- start: function() {
844
- this.options.onComplete = this.updateComplete.bind(this);
845
- this.onTimerEvent();
846
- },
847
-
848
- stop: function() {
849
- this.updater.onComplete = undefined;
850
- clearTimeout(this.timer);
851
- (this.onComplete || Prototype.emptyFunction).apply(this, arguments);
852
- },
853
-
854
- updateComplete: function(request) {
855
- if (this.options.decay) {
856
- this.decay = (request.responseText == this.lastText ?
857
- this.decay * this.options.decay : 1);
858
-
859
- this.lastText = request.responseText;
860
- }
861
- this.timer = setTimeout(this.onTimerEvent.bind(this),
862
- this.decay * this.frequency * 1000);
863
- },
864
-
865
- onTimerEvent: function() {
866
- this.updater = new Ajax.Updater(this.container, this.url, this.options);
867
- }
868
- });
869
- function $() {
870
- var results = [], element;
871
- for (var i = 0; i < arguments.length; i++) {
872
- element = arguments[i];
873
- if (typeof element == 'string')
874
- element = document.getElementById(element);
875
- results.push(Element.extend(element));
876
- }
877
- return results.length < 2 ? results[0] : results;
878
- }
879
-
880
- document.getElementsByClassName = function(className, parentElement) {
881
- var children = ($(parentElement) || document.body).getElementsByTagName('*');
882
- return $A(children).inject([], function(elements, child) {
883
- if (child.className.match(new RegExp("(^|\\s)" + className + "(\\s|$)")))
884
- elements.push(Element.extend(child));
885
- return elements;
886
- });
887
- }
888
-
889
- /*--------------------------------------------------------------------------*/
890
-
891
- if (!window.Element)
892
- var Element = new Object();
893
-
894
- Element.extend = function(element) {
895
- if (!element) return;
896
- if (_nativeExtensions) return element;
897
-
898
- if (!element._extended && element.tagName && element != window) {
899
- var methods = Element.Methods, cache = Element.extend.cache;
900
- for (property in methods) {
901
- var value = methods[property];
902
- if (typeof value == 'function')
903
- element[property] = cache.findOrStore(value);
904
- }
905
- }
906
-
907
- element._extended = true;
908
- return element;
909
- }
910
-
911
- Element.extend.cache = {
912
- findOrStore: function(value) {
913
- return this[value] = this[value] || function() {
914
- return value.apply(null, [this].concat($A(arguments)));
915
- }
916
- }
917
- }
918
-
919
- Element.Methods = {
920
- visible: function(element) {
921
- return $(element).style.display != 'none';
922
- },
923
-
924
- toggle: function() {
925
- for (var i = 0; i < arguments.length; i++) {
926
- var element = $(arguments[i]);
927
- Element[Element.visible(element) ? 'hide' : 'show'](element);
928
- }
929
- },
930
-
931
- hide: function() {
932
- for (var i = 0; i < arguments.length; i++) {
933
- var element = $(arguments[i]);
934
- element.style.display = 'none';
935
- }
936
- },
937
-
938
- show: function() {
939
- for (var i = 0; i < arguments.length; i++) {
940
- var element = $(arguments[i]);
941
- element.style.display = '';
942
- }
943
- },
944
-
945
- remove: function(element) {
946
- element = $(element);
947
- element.parentNode.removeChild(element);
948
- },
949
-
950
- update: function(element, html) {
951
- $(element).innerHTML = html.stripScripts();
952
- setTimeout(function() {html.evalScripts()}, 10);
953
- },
954
-
955
- replace: function(element, html) {
956
- element = $(element);
957
- if (element.outerHTML) {
958
- element.outerHTML = html.stripScripts();
959
- } else {
960
- var range = element.ownerDocument.createRange();
961
- range.selectNodeContents(element);
962
- element.parentNode.replaceChild(
963
- range.createContextualFragment(html.stripScripts()), element);
964
- }
965
- setTimeout(function() {html.evalScripts()}, 10);
966
- },
967
-
968
- getHeight: function(element) {
969
- element = $(element);
970
- return element.offsetHeight;
971
- },
972
-
973
- classNames: function(element) {
974
- return new Element.ClassNames(element);
975
- },
976
-
977
- hasClassName: function(element, className) {
978
- if (!(element = $(element))) return;
979
- return Element.classNames(element).include(className);
980
- },
981
-
982
- addClassName: function(element, className) {
983
- if (!(element = $(element))) return;
984
- return Element.classNames(element).add(className);
985
- },
986
-
987
- removeClassName: function(element, className) {
988
- if (!(element = $(element))) return;
989
- return Element.classNames(element).remove(className);
990
- },
991
-
992
- // removes whitespace-only text node children
993
- cleanWhitespace: function(element) {
994
- element = $(element);
995
- for (var i = 0; i < element.childNodes.length; i++) {
996
- var node = element.childNodes[i];
997
- if (node.nodeType == 3 && !/\S/.test(node.nodeValue))
998
- Element.remove(node);
999
- }
1000
- },
1001
-
1002
- empty: function(element) {
1003
- return $(element).innerHTML.match(/^\s*$/);
1004
- },
1005
-
1006
- childOf: function(element, ancestor) {
1007
- element = $(element), ancestor = $(ancestor);
1008
- while (element = element.parentNode)
1009
- if (element == ancestor) return true;
1010
- return false;
1011
- },
1012
-
1013
- scrollTo: function(element) {
1014
- element = $(element);
1015
- var x = element.x ? element.x : element.offsetLeft,
1016
- y = element.y ? element.y : element.offsetTop;
1017
- window.scrollTo(x, y);
1018
- },
1019
-
1020
- getStyle: function(element, style) {
1021
- element = $(element);
1022
- var value = element.style[style.camelize()];
1023
- if (!value) {
1024
- if (document.defaultView && document.defaultView.getComputedStyle) {
1025
- var css = document.defaultView.getComputedStyle(element, null);
1026
- value = css ? css.getPropertyValue(style) : null;
1027
- } else if (element.currentStyle) {
1028
- value = element.currentStyle[style.camelize()];
1029
- }
1030
- }
1031
-
1032
- if (window.opera && ['left', 'top', 'right', 'bottom'].include(style))
1033
- if (Element.getStyle(element, 'position') == 'static') value = 'auto';
1034
-
1035
- return value == 'auto' ? null : value;
1036
- },
1037
-
1038
- setStyle: function(element, style) {
1039
- element = $(element);
1040
- for (var name in style)
1041
- element.style[name.camelize()] = style[name];
1042
- },
1043
-
1044
- getDimensions: function(element) {
1045
- element = $(element);
1046
- if (Element.getStyle(element, 'display') != 'none')
1047
- return {width: element.offsetWidth, height: element.offsetHeight};
1048
-
1049
- // All *Width and *Height properties give 0 on elements with display none,
1050
- // so enable the element temporarily
1051
- var els = element.style;
1052
- var originalVisibility = els.visibility;
1053
- var originalPosition = els.position;
1054
- els.visibility = 'hidden';
1055
- els.position = 'absolute';
1056
- els.display = '';
1057
- var originalWidth = element.clientWidth;
1058
- var originalHeight = element.clientHeight;
1059
- els.display = 'none';
1060
- els.position = originalPosition;
1061
- els.visibility = originalVisibility;
1062
- return {width: originalWidth, height: originalHeight};
1063
- },
1064
-
1065
- makePositioned: function(element) {
1066
- element = $(element);
1067
- var pos = Element.getStyle(element, 'position');
1068
- if (pos == 'static' || !pos) {
1069
- element._madePositioned = true;
1070
- element.style.position = 'relative';
1071
- // Opera returns the offset relative to the positioning context, when an
1072
- // element is position relative but top and left have not been defined
1073
- if (window.opera) {
1074
- element.style.top = 0;
1075
- element.style.left = 0;
1076
- }
1077
- }
1078
- },
1079
-
1080
- undoPositioned: function(element) {
1081
- element = $(element);
1082
- if (element._madePositioned) {
1083
- element._madePositioned = undefined;
1084
- element.style.position =
1085
- element.style.top =
1086
- element.style.left =
1087
- element.style.bottom =
1088
- element.style.right = '';
1089
- }
1090
- },
1091
-
1092
- makeClipping: function(element) {
1093
- element = $(element);
1094
- if (element._overflow) return;
1095
- element._overflow = element.style.overflow;
1096
- if ((Element.getStyle(element, 'overflow') || 'visible') != 'hidden')
1097
- element.style.overflow = 'hidden';
1098
- },
1099
-
1100
- undoClipping: function(element) {
1101
- element = $(element);
1102
- if (element._overflow) return;
1103
- element.style.overflow = element._overflow;
1104
- element._overflow = undefined;
1105
- }
1106
- }
1107
-
1108
- Object.extend(Element, Element.Methods);
1109
-
1110
- var _nativeExtensions = false;
1111
-
1112
- if(!HTMLElement && /Konqueror|Safari|KHTML/.test(navigator.userAgent)) {
1113
- var HTMLElement = {}
1114
- HTMLElement.prototype = document.createElement('div').__proto__;
1115
- }
1116
-
1117
- Element.addMethods = function(methods) {
1118
- Object.extend(Element.Methods, methods || {});
1119
-
1120
- if(typeof HTMLElement != 'undefined') {
1121
- var methods = Element.Methods, cache = Element.extend.cache;
1122
- for (property in methods) {
1123
- var value = methods[property];
1124
- if (typeof value == 'function')
1125
- HTMLElement.prototype[property] = cache.findOrStore(value);
1126
- }
1127
- _nativeExtensions = true;
1128
- }
1129
- }
1130
-
1131
- Element.addMethods();
1132
-
1133
- var Toggle = new Object();
1134
- Toggle.display = Element.toggle;
1135
-
1136
- /*--------------------------------------------------------------------------*/
1137
-
1138
- Abstract.Insertion = function(adjacency) {
1139
- this.adjacency = adjacency;
1140
- }
1141
-
1142
- Abstract.Insertion.prototype = {
1143
- initialize: function(element, content) {
1144
- this.element = $(element);
1145
- this.content = content.stripScripts();
1146
-
1147
- if (this.adjacency && this.element.insertAdjacentHTML) {
1148
- try {
1149
- this.element.insertAdjacentHTML(this.adjacency, this.content);
1150
- } catch (e) {
1151
- var tagName = this.element.tagName.toLowerCase();
1152
- if (tagName == 'tbody' || tagName == 'tr') {
1153
- this.insertContent(this.contentFromAnonymousTable());
1154
- } else {
1155
- throw e;
1156
- }
1157
- }
1158
- } else {
1159
- this.range = this.element.ownerDocument.createRange();
1160
- if (this.initializeRange) this.initializeRange();
1161
- this.insertContent([this.range.createContextualFragment(this.content)]);
1162
- }
1163
-
1164
- setTimeout(function() {content.evalScripts()}, 10);
1165
- },
1166
-
1167
- contentFromAnonymousTable: function() {
1168
- var div = document.createElement('div');
1169
- div.innerHTML = '<table><tbody>' + this.content + '</tbody></table>';
1170
- return $A(div.childNodes[0].childNodes[0].childNodes);
1171
- }
1172
- }
1173
-
1174
- var Insertion = new Object();
1175
-
1176
- Insertion.Before = Class.create();
1177
- Insertion.Before.prototype = Object.extend(new Abstract.Insertion('beforeBegin'), {
1178
- initializeRange: function() {
1179
- this.range.setStartBefore(this.element);
1180
- },
1181
-
1182
- insertContent: function(fragments) {
1183
- fragments.each((function(fragment) {
1184
- this.element.parentNode.insertBefore(fragment, this.element);
1185
- }).bind(this));
1186
- }
1187
- });
1188
-
1189
- Insertion.Top = Class.create();
1190
- Insertion.Top.prototype = Object.extend(new Abstract.Insertion('afterBegin'), {
1191
- initializeRange: function() {
1192
- this.range.selectNodeContents(this.element);
1193
- this.range.collapse(true);
1194
- },
1195
-
1196
- insertContent: function(fragments) {
1197
- fragments.reverse(false).each((function(fragment) {
1198
- this.element.insertBefore(fragment, this.element.firstChild);
1199
- }).bind(this));
1200
- }
1201
- });
1202
-
1203
- Insertion.Bottom = Class.create();
1204
- Insertion.Bottom.prototype = Object.extend(new Abstract.Insertion('beforeEnd'), {
1205
- initializeRange: function() {
1206
- this.range.selectNodeContents(this.element);
1207
- this.range.collapse(this.element);
1208
- },
1209
-
1210
- insertContent: function(fragments) {
1211
- fragments.each((function(fragment) {
1212
- this.element.appendChild(fragment);
1213
- }).bind(this));
1214
- }
1215
- });
1216
-
1217
- Insertion.After = Class.create();
1218
- Insertion.After.prototype = Object.extend(new Abstract.Insertion('afterEnd'), {
1219
- initializeRange: function() {
1220
- this.range.setStartAfter(this.element);
1221
- },
1222
-
1223
- insertContent: function(fragments) {
1224
- fragments.each((function(fragment) {
1225
- this.element.parentNode.insertBefore(fragment,
1226
- this.element.nextSibling);
1227
- }).bind(this));
1228
- }
1229
- });
1230
-
1231
- /*--------------------------------------------------------------------------*/
1232
-
1233
- Element.ClassNames = Class.create();
1234
- Element.ClassNames.prototype = {
1235
- initialize: function(element) {
1236
- this.element = $(element);
1237
- },
1238
-
1239
- _each: function(iterator) {
1240
- this.element.className.split(/\s+/).select(function(name) {
1241
- return name.length > 0;
1242
- })._each(iterator);
1243
- },
1244
-
1245
- set: function(className) {
1246
- this.element.className = className;
1247
- },
1248
-
1249
- add: function(classNameToAdd) {
1250
- if (this.include(classNameToAdd)) return;
1251
- this.set(this.toArray().concat(classNameToAdd).join(' '));
1252
- },
1253
-
1254
- remove: function(classNameToRemove) {
1255
- if (!this.include(classNameToRemove)) return;
1256
- this.set(this.select(function(className) {
1257
- return className != classNameToRemove;
1258
- }).join(' '));
1259
- },
1260
-
1261
- toString: function() {
1262
- return this.toArray().join(' ');
1263
- }
1264
- }
1265
-
1266
- Object.extend(Element.ClassNames.prototype, Enumerable);
1267
- var Selector = Class.create();
1268
- Selector.prototype = {
1269
- initialize: function(expression) {
1270
- this.params = {classNames: []};
1271
- this.expression = expression.toString().strip();
1272
- this.parseExpression();
1273
- this.compileMatcher();
1274
- },
1275
-
1276
- parseExpression: function() {
1277
- function abort(message) { throw 'Parse error in selector: ' + message; }
1278
-
1279
- if (this.expression == '') abort('empty expression');
1280
-
1281
- var params = this.params, expr = this.expression, match, modifier, clause, rest;
1282
- while (match = expr.match(/^(.*)\[([a-z0-9_:-]+?)(?:([~\|!]?=)(?:"([^"]*)"|([^\]\s]*)))?\]$/i)) {
1283
- params.attributes = params.attributes || [];
1284
- params.attributes.push({name: match[2], operator: match[3], value: match[4] || match[5] || ''});
1285
- expr = match[1];
1286
- }
1287
-
1288
- if (expr == '*') return this.params.wildcard = true;
1289
-
1290
- while (match = expr.match(/^([^a-z0-9_-])?([a-z0-9_-]+)(.*)/i)) {
1291
- modifier = match[1], clause = match[2], rest = match[3];
1292
- switch (modifier) {
1293
- case '#': params.id = clause; break;
1294
- case '.': params.classNames.push(clause); break;
1295
- case '':
1296
- case undefined: params.tagName = clause.toUpperCase(); break;
1297
- default: abort(expr.inspect());
1298
- }
1299
- expr = rest;
1300
- }
1301
-
1302
- if (expr.length > 0) abort(expr.inspect());
1303
- },
1304
-
1305
- buildMatchExpression: function() {
1306
- var params = this.params, conditions = [], clause;
1307
-
1308
- if (params.wildcard)
1309
- conditions.push('true');
1310
- if (clause = params.id)
1311
- conditions.push('element.id == ' + clause.inspect());
1312
- if (clause = params.tagName)
1313
- conditions.push('element.tagName.toUpperCase() == ' + clause.inspect());
1314
- if ((clause = params.classNames).length > 0)
1315
- for (var i = 0; i < clause.length; i++)
1316
- conditions.push('Element.hasClassName(element, ' + clause[i].inspect() + ')');
1317
- if (clause = params.attributes) {
1318
- clause.each(function(attribute) {
1319
- var value = 'element.getAttribute(' + attribute.name.inspect() + ')';
1320
- var splitValueBy = function(delimiter) {
1321
- return value + ' && ' + value + '.split(' + delimiter.inspect() + ')';
1322
- }
1323
-
1324
- switch (attribute.operator) {
1325
- case '=': conditions.push(value + ' == ' + attribute.value.inspect()); break;
1326
- case '~=': conditions.push(splitValueBy(' ') + '.include(' + attribute.value.inspect() + ')'); break;
1327
- case '|=': conditions.push(
1328
- splitValueBy('-') + '.first().toUpperCase() == ' + attribute.value.toUpperCase().inspect()
1329
- ); break;
1330
- case '!=': conditions.push(value + ' != ' + attribute.value.inspect()); break;
1331
- case '':
1332
- case undefined: conditions.push(value + ' != null'); break;
1333
- default: throw 'Unknown operator ' + attribute.operator + ' in selector';
1334
- }
1335
- });
1336
- }
1337
-
1338
- return conditions.join(' && ');
1339
- },
1340
-
1341
- compileMatcher: function() {
1342
- this.match = new Function('element', 'if (!element.tagName) return false; \n' +
1343
- 'return ' + this.buildMatchExpression());
1344
- },
1345
-
1346
- findElements: function(scope) {
1347
- var element;
1348
-
1349
- if (element = $(this.params.id))
1350
- if (this.match(element))
1351
- if (!scope || Element.childOf(element, scope))
1352
- return [element];
1353
-
1354
- scope = (scope || document).getElementsByTagName(this.params.tagName || '*');
1355
-
1356
- var results = [];
1357
- for (var i = 0; i < scope.length; i++)
1358
- if (this.match(element = scope[i]))
1359
- results.push(Element.extend(element));
1360
-
1361
- return results;
1362
- },
1363
-
1364
- toString: function() {
1365
- return this.expression;
1366
- }
1367
- }
1368
-
1369
- function $$() {
1370
- return $A(arguments).map(function(expression) {
1371
- return expression.strip().split(/\s+/).inject([null], function(results, expr) {
1372
- var selector = new Selector(expr);
1373
- return results.map(selector.findElements.bind(selector)).flatten();
1374
- });
1375
- }).flatten();
1376
- }
1377
- var Field = {
1378
- clear: function() {
1379
- for (var i = 0; i < arguments.length; i++)
1380
- $(arguments[i]).value = '';
1381
- },
1382
-
1383
- focus: function(element) {
1384
- $(element).focus();
1385
- },
1386
-
1387
- present: function() {
1388
- for (var i = 0; i < arguments.length; i++)
1389
- if ($(arguments[i]).value == '') return false;
1390
- return true;
1391
- },
1392
-
1393
- select: function(element) {
1394
- $(element).select();
1395
- },
1396
-
1397
- activate: function(element) {
1398
- element = $(element);
1399
- element.focus();
1400
- if (element.select)
1401
- element.select();
1402
- }
1403
- }
1404
-
1405
- /*--------------------------------------------------------------------------*/
1406
-
1407
- var Form = {
1408
- serialize: function(form) {
1409
- var elements = Form.getElements($(form));
1410
- var queryComponents = new Array();
1411
-
1412
- for (var i = 0; i < elements.length; i++) {
1413
- var queryComponent = Form.Element.serialize(elements[i]);
1414
- if (queryComponent)
1415
- queryComponents.push(queryComponent);
1416
- }
1417
-
1418
- return queryComponents.join('&');
1419
- },
1420
-
1421
- getElements: function(form) {
1422
- form = $(form);
1423
- var elements = new Array();
1424
-
1425
- for (var tagName in Form.Element.Serializers) {
1426
- var tagElements = form.getElementsByTagName(tagName);
1427
- for (var j = 0; j < tagElements.length; j++)
1428
- elements.push(tagElements[j]);
1429
- }
1430
- return elements;
1431
- },
1432
-
1433
- getInputs: function(form, typeName, name) {
1434
- form = $(form);
1435
- var inputs = form.getElementsByTagName('input');
1436
-
1437
- if (!typeName && !name)
1438
- return inputs;
1439
-
1440
- var matchingInputs = new Array();
1441
- for (var i = 0; i < inputs.length; i++) {
1442
- var input = inputs[i];
1443
- if ((typeName && input.type != typeName) ||
1444
- (name && input.name != name))
1445
- continue;
1446
- matchingInputs.push(input);
1447
- }
1448
-
1449
- return matchingInputs;
1450
- },
1451
-
1452
- disable: function(form) {
1453
- var elements = Form.getElements(form);
1454
- for (var i = 0; i < elements.length; i++) {
1455
- var element = elements[i];
1456
- element.blur();
1457
- element.disabled = 'true';
1458
- }
1459
- },
1460
-
1461
- enable: function(form) {
1462
- var elements = Form.getElements(form);
1463
- for (var i = 0; i < elements.length; i++) {
1464
- var element = elements[i];
1465
- element.disabled = '';
1466
- }
1467
- },
1468
-
1469
- findFirstElement: function(form) {
1470
- return Form.getElements(form).find(function(element) {
1471
- return element.type != 'hidden' && !element.disabled &&
1472
- ['input', 'select', 'textarea'].include(element.tagName.toLowerCase());
1473
- });
1474
- },
1475
-
1476
- focusFirstElement: function(form) {
1477
- Field.activate(Form.findFirstElement(form));
1478
- },
1479
-
1480
- reset: function(form) {
1481
- $(form).reset();
1482
- }
1483
- }
1484
-
1485
- Form.Element = {
1486
- serialize: function(element) {
1487
- element = $(element);
1488
- var method = element.tagName.toLowerCase();
1489
- var parameter = Form.Element.Serializers[method](element);
1490
-
1491
- if (parameter) {
1492
- var key = encodeURIComponent(parameter[0]);
1493
- if (key.length == 0) return;
1494
-
1495
- if (parameter[1].constructor != Array)
1496
- parameter[1] = [parameter[1]];
1497
-
1498
- return parameter[1].map(function(value) {
1499
- return key + '=' + encodeURIComponent(value);
1500
- }).join('&');
1501
- }
1502
- },
1503
-
1504
- getValue: function(element) {
1505
- element = $(element);
1506
- var method = element.tagName.toLowerCase();
1507
- var parameter = Form.Element.Serializers[method](element);
1508
-
1509
- if (parameter)
1510
- return parameter[1];
1511
- }
1512
- }
1513
-
1514
- Form.Element.Serializers = {
1515
- input: function(element) {
1516
- switch (element.type.toLowerCase()) {
1517
- case 'submit':
1518
- case 'hidden':
1519
- case 'password':
1520
- case 'text':
1521
- return Form.Element.Serializers.textarea(element);
1522
- case 'checkbox':
1523
- case 'radio':
1524
- return Form.Element.Serializers.inputSelector(element);
1525
- }
1526
- return false;
1527
- },
1528
-
1529
- inputSelector: function(element) {
1530
- if (element.checked)
1531
- return [element.name, element.value];
1532
- },
1533
-
1534
- textarea: function(element) {
1535
- return [element.name, element.value];
1536
- },
1537
-
1538
- select: function(element) {
1539
- return Form.Element.Serializers[element.type == 'select-one' ?
1540
- 'selectOne' : 'selectMany'](element);
1541
- },
1542
-
1543
- selectOne: function(element) {
1544
- var value = '', opt, index = element.selectedIndex;
1545
- if (index >= 0) {
1546
- opt = element.options[index];
1547
- value = opt.value || opt.text;
1548
- }
1549
- return [element.name, value];
1550
- },
1551
-
1552
- selectMany: function(element) {
1553
- var value = [];
1554
- for (var i = 0; i < element.length; i++) {
1555
- var opt = element.options[i];
1556
- if (opt.selected)
1557
- value.push(opt.value || opt.text);
1558
- }
1559
- return [element.name, value];
1560
- }
1561
- }
1562
-
1563
- /*--------------------------------------------------------------------------*/
1564
-
1565
- var $F = Form.Element.getValue;
1566
-
1567
- /*--------------------------------------------------------------------------*/
1568
-
1569
- Abstract.TimedObserver = function() {}
1570
- Abstract.TimedObserver.prototype = {
1571
- initialize: function(element, frequency, callback) {
1572
- this.frequency = frequency;
1573
- this.element = $(element);
1574
- this.callback = callback;
1575
-
1576
- this.lastValue = this.getValue();
1577
- this.registerCallback();
1578
- },
1579
-
1580
- registerCallback: function() {
1581
- setInterval(this.onTimerEvent.bind(this), this.frequency * 1000);
1582
- },
1583
-
1584
- onTimerEvent: function() {
1585
- var value = this.getValue();
1586
- if (this.lastValue != value) {
1587
- this.callback(this.element, value);
1588
- this.lastValue = value;
1589
- }
1590
- }
1591
- }
1592
-
1593
- Form.Element.Observer = Class.create();
1594
- Form.Element.Observer.prototype = Object.extend(new Abstract.TimedObserver(), {
1595
- getValue: function() {
1596
- return Form.Element.getValue(this.element);
1597
- }
1598
- });
1599
-
1600
- Form.Observer = Class.create();
1601
- Form.Observer.prototype = Object.extend(new Abstract.TimedObserver(), {
1602
- getValue: function() {
1603
- return Form.serialize(this.element);
1604
- }
1605
- });
1606
-
1607
- /*--------------------------------------------------------------------------*/
1608
-
1609
- Abstract.EventObserver = function() {}
1610
- Abstract.EventObserver.prototype = {
1611
- initialize: function(element, callback) {
1612
- this.element = $(element);
1613
- this.callback = callback;
1614
-
1615
- this.lastValue = this.getValue();
1616
- if (this.element.tagName.toLowerCase() == 'form')
1617
- this.registerFormCallbacks();
1618
- else
1619
- this.registerCallback(this.element);
1620
- },
1621
-
1622
- onElementEvent: function() {
1623
- var value = this.getValue();
1624
- if (this.lastValue != value) {
1625
- this.callback(this.element, value);
1626
- this.lastValue = value;
1627
- }
1628
- },
1629
-
1630
- registerFormCallbacks: function() {
1631
- var elements = Form.getElements(this.element);
1632
- for (var i = 0; i < elements.length; i++)
1633
- this.registerCallback(elements[i]);
1634
- },
1635
-
1636
- registerCallback: function(element) {
1637
- if (element.type) {
1638
- switch (element.type.toLowerCase()) {
1639
- case 'checkbox':
1640
- case 'radio':
1641
- Event.observe(element, 'click', this.onElementEvent.bind(this));
1642
- break;
1643
- case 'password':
1644
- case 'text':
1645
- case 'textarea':
1646
- case 'select-one':
1647
- case 'select-multiple':
1648
- Event.observe(element, 'change', this.onElementEvent.bind(this));
1649
- break;
1650
- }
1651
- }
1652
- }
1653
- }
1654
-
1655
- Form.Element.EventObserver = Class.create();
1656
- Form.Element.EventObserver.prototype = Object.extend(new Abstract.EventObserver(), {
1657
- getValue: function() {
1658
- return Form.Element.getValue(this.element);
1659
- }
1660
- });
1661
-
1662
- Form.EventObserver = Class.create();
1663
- Form.EventObserver.prototype = Object.extend(new Abstract.EventObserver(), {
1664
- getValue: function() {
1665
- return Form.serialize(this.element);
1666
- }
1667
- });
1668
- if (!window.Event) {
1669
- var Event = new Object();
1670
- }
1671
-
1672
- Object.extend(Event, {
1673
- KEY_BACKSPACE: 8,
1674
- KEY_TAB: 9,
1675
- KEY_RETURN: 13,
1676
- KEY_ESC: 27,
1677
- KEY_LEFT: 37,
1678
- KEY_UP: 38,
1679
- KEY_RIGHT: 39,
1680
- KEY_DOWN: 40,
1681
- KEY_DELETE: 46,
1682
-
1683
- element: function(event) {
1684
- return event.target || event.srcElement;
1685
- },
1686
-
1687
- isLeftClick: function(event) {
1688
- return (((event.which) && (event.which == 1)) ||
1689
- ((event.button) && (event.button == 1)));
1690
- },
1691
-
1692
- pointerX: function(event) {
1693
- return event.pageX || (event.clientX +
1694
- (document.documentElement.scrollLeft || document.body.scrollLeft));
1695
- },
1696
-
1697
- pointerY: function(event) {
1698
- return event.pageY || (event.clientY +
1699
- (document.documentElement.scrollTop || document.body.scrollTop));
1700
- },
1701
-
1702
- stop: function(event) {
1703
- if (event.preventDefault) {
1704
- event.preventDefault();
1705
- event.stopPropagation();
1706
- } else {
1707
- event.returnValue = false;
1708
- event.cancelBubble = true;
1709
- }
1710
- },
1711
-
1712
- // find the first node with the given tagName, starting from the
1713
- // node the event was triggered on; traverses the DOM upwards
1714
- findElement: function(event, tagName) {
1715
- var element = Event.element(event);
1716
- while (element.parentNode && (!element.tagName ||
1717
- (element.tagName.toUpperCase() != tagName.toUpperCase())))
1718
- element = element.parentNode;
1719
- return element;
1720
- },
1721
-
1722
- observers: false,
1723
-
1724
- _observeAndCache: function(element, name, observer, useCapture) {
1725
- if (!this.observers) this.observers = [];
1726
- if (element.addEventListener) {
1727
- this.observers.push([element, name, observer, useCapture]);
1728
- element.addEventListener(name, observer, useCapture);
1729
- } else if (element.attachEvent) {
1730
- this.observers.push([element, name, observer, useCapture]);
1731
- element.attachEvent('on' + name, observer);
1732
- }
1733
- },
1734
-
1735
- unloadCache: function() {
1736
- if (!Event.observers) return;
1737
- for (var i = 0; i < Event.observers.length; i++) {
1738
- Event.stopObserving.apply(this, Event.observers[i]);
1739
- Event.observers[i][0] = null;
1740
- }
1741
- Event.observers = false;
1742
- },
1743
-
1744
- observe: function(element, name, observer, useCapture) {
1745
- var element = $(element);
1746
- useCapture = useCapture || false;
1747
-
1748
- if (name == 'keypress' &&
1749
- (navigator.appVersion.match(/Konqueror|Safari|KHTML/)
1750
- || element.attachEvent))
1751
- name = 'keydown';
1752
-
1753
- this._observeAndCache(element, name, observer, useCapture);
1754
- },
1755
-
1756
- stopObserving: function(element, name, observer, useCapture) {
1757
- var element = $(element);
1758
- useCapture = useCapture || false;
1759
-
1760
- if (name == 'keypress' &&
1761
- (navigator.appVersion.match(/Konqueror|Safari|KHTML/)
1762
- || element.detachEvent))
1763
- name = 'keydown';
1764
-
1765
- if (element.removeEventListener) {
1766
- element.removeEventListener(name, observer, useCapture);
1767
- } else if (element.detachEvent) {
1768
- element.detachEvent('on' + name, observer);
1769
- }
1770
- }
1771
- });
1772
-
1773
- /* prevent memory leaks in IE */
1774
- if (navigator.appVersion.match(/\bMSIE\b/))
1775
- Event.observe(window, 'unload', Event.unloadCache, false);
1776
- var Position = {
1777
- // set to true if needed, warning: firefox performance problems
1778
- // NOT neeeded for page scrolling, only if draggable contained in
1779
- // scrollable elements
1780
- includeScrollOffsets: false,
1781
-
1782
- // must be called before calling withinIncludingScrolloffset, every time the
1783
- // page is scrolled
1784
- prepare: function() {
1785
- this.deltaX = window.pageXOffset
1786
- || document.documentElement.scrollLeft
1787
- || document.body.scrollLeft
1788
- || 0;
1789
- this.deltaY = window.pageYOffset
1790
- || document.documentElement.scrollTop
1791
- || document.body.scrollTop
1792
- || 0;
1793
- },
1794
-
1795
- realOffset: function(element) {
1796
- var valueT = 0, valueL = 0;
1797
- do {
1798
- valueT += element.scrollTop || 0;
1799
- valueL += element.scrollLeft || 0;
1800
- element = element.parentNode;
1801
- } while (element);
1802
- return [valueL, valueT];
1803
- },
1804
-
1805
- cumulativeOffset: function(element) {
1806
- var valueT = 0, valueL = 0;
1807
- do {
1808
- valueT += element.offsetTop || 0;
1809
- valueL += element.offsetLeft || 0;
1810
- element = element.offsetParent;
1811
- } while (element);
1812
- return [valueL, valueT];
1813
- },
1814
-
1815
- positionedOffset: function(element) {
1816
- var valueT = 0, valueL = 0;
1817
- do {
1818
- valueT += element.offsetTop || 0;
1819
- valueL += element.offsetLeft || 0;
1820
- element = element.offsetParent;
1821
- if (element) {
1822
- p = Element.getStyle(element, 'position');
1823
- if (p == 'relative' || p == 'absolute') break;
1824
- }
1825
- } while (element);
1826
- return [valueL, valueT];
1827
- },
1828
-
1829
- offsetParent: function(element) {
1830
- if (element.offsetParent) return element.offsetParent;
1831
- if (element == document.body) return element;
1832
-
1833
- while ((element = element.parentNode) && element != document.body)
1834
- if (Element.getStyle(element, 'position') != 'static')
1835
- return element;
1836
-
1837
- return document.body;
1838
- },
1839
-
1840
- // caches x/y coordinate pair to use with overlap
1841
- within: function(element, x, y) {
1842
- if (this.includeScrollOffsets)
1843
- return this.withinIncludingScrolloffsets(element, x, y);
1844
- this.xcomp = x;
1845
- this.ycomp = y;
1846
- this.offset = this.cumulativeOffset(element);
1847
-
1848
- return (y >= this.offset[1] &&
1849
- y < this.offset[1] + element.offsetHeight &&
1850
- x >= this.offset[0] &&
1851
- x < this.offset[0] + element.offsetWidth);
1852
- },
1853
-
1854
- withinIncludingScrolloffsets: function(element, x, y) {
1855
- var offsetcache = this.realOffset(element);
1856
-
1857
- this.xcomp = x + offsetcache[0] - this.deltaX;
1858
- this.ycomp = y + offsetcache[1] - this.deltaY;
1859
- this.offset = this.cumulativeOffset(element);
1860
-
1861
- return (this.ycomp >= this.offset[1] &&
1862
- this.ycomp < this.offset[1] + element.offsetHeight &&
1863
- this.xcomp >= this.offset[0] &&
1864
- this.xcomp < this.offset[0] + element.offsetWidth);
1865
- },
1866
-
1867
- // within must be called directly before
1868
- overlap: function(mode, element) {
1869
- if (!mode) return 0;
1870
- if (mode == 'vertical')
1871
- return ((this.offset[1] + element.offsetHeight) - this.ycomp) /
1872
- element.offsetHeight;
1873
- if (mode == 'horizontal')
1874
- return ((this.offset[0] + element.offsetWidth) - this.xcomp) /
1875
- element.offsetWidth;
1876
- },
1877
-
1878
- clone: function(source, target) {
1879
- source = $(source);
1880
- target = $(target);
1881
- target.style.position = 'absolute';
1882
- var offsets = this.cumulativeOffset(source);
1883
- target.style.top = offsets[1] + 'px';
1884
- target.style.left = offsets[0] + 'px';
1885
- target.style.width = source.offsetWidth + 'px';
1886
- target.style.height = source.offsetHeight + 'px';
1887
- },
1888
-
1889
- page: function(forElement) {
1890
- var valueT = 0, valueL = 0;
1891
-
1892
- var element = forElement;
1893
- do {
1894
- valueT += element.offsetTop || 0;
1895
- valueL += element.offsetLeft || 0;
1896
-
1897
- // Safari fix
1898
- if (element.offsetParent==document.body)
1899
- if (Element.getStyle(element,'position')=='absolute') break;
1900
-
1901
- } while (element = element.offsetParent);
1902
-
1903
- element = forElement;
1904
- do {
1905
- valueT -= element.scrollTop || 0;
1906
- valueL -= element.scrollLeft || 0;
1907
- } while (element = element.parentNode);
1908
-
1909
- return [valueL, valueT];
1910
- },
1911
-
1912
- clone: function(source, target) {
1913
- var options = Object.extend({
1914
- setLeft: true,
1915
- setTop: true,
1916
- setWidth: true,
1917
- setHeight: true,
1918
- offsetTop: 0,
1919
- offsetLeft: 0
1920
- }, arguments[2] || {})
1921
-
1922
- // find page position of source
1923
- source = $(source);
1924
- var p = Position.page(source);
1925
-
1926
- // find coordinate system to use
1927
- target = $(target);
1928
- var delta = [0, 0];
1929
- var parent = null;
1930
- // delta [0,0] will do fine with position: fixed elements,
1931
- // position:absolute needs offsetParent deltas
1932
- if (Element.getStyle(target,'position') == 'absolute') {
1933
- parent = Position.offsetParent(target);
1934
- delta = Position.page(parent);
1935
- }
1936
-
1937
- // correct by body offsets (fixes Safari)
1938
- if (parent == document.body) {
1939
- delta[0] -= document.body.offsetLeft;
1940
- delta[1] -= document.body.offsetTop;
1941
- }
1942
-
1943
- // set position
1944
- if(options.setLeft) target.style.left = (p[0] - delta[0] + options.offsetLeft) + 'px';
1945
- if(options.setTop) target.style.top = (p[1] - delta[1] + options.offsetTop) + 'px';
1946
- if(options.setWidth) target.style.width = source.offsetWidth + 'px';
1947
- if(options.setHeight) target.style.height = source.offsetHeight + 'px';
1948
- },
1949
-
1950
- absolutize: function(element) {
1951
- element = $(element);
1952
- if (element.style.position == 'absolute') return;
1953
- Position.prepare();
1954
-
1955
- var offsets = Position.positionedOffset(element);
1956
- var top = offsets[1];
1957
- var left = offsets[0];
1958
- var width = element.clientWidth;
1959
- var height = element.clientHeight;
1960
-
1961
- element._originalLeft = left - parseFloat(element.style.left || 0);
1962
- element._originalTop = top - parseFloat(element.style.top || 0);
1963
- element._originalWidth = element.style.width;
1964
- element._originalHeight = element.style.height;
1965
-
1966
- element.style.position = 'absolute';
1967
- element.style.top = top + 'px';;
1968
- element.style.left = left + 'px';;
1969
- element.style.width = width + 'px';;
1970
- element.style.height = height + 'px';;
1971
- },
1972
-
1973
- relativize: function(element) {
1974
- element = $(element);
1975
- if (element.style.position == 'relative') return;
1976
- Position.prepare();
1977
-
1978
- element.style.position = 'relative';
1979
- var top = parseFloat(element.style.top || 0) - (element._originalTop || 0);
1980
- var left = parseFloat(element.style.left || 0) - (element._originalLeft || 0);
1981
-
1982
- element.style.top = top + 'px';
1983
- element.style.left = left + 'px';
1984
- element.style.height = element._originalHeight;
1985
- element.style.width = element._originalWidth;
1986
- }
1987
- }
1988
-
1989
- // Safari returns margins on body which is incorrect if the child is absolutely
1990
- // positioned. For performance reasons, redefine Position.cumulativeOffset for
1991
- // KHTML/WebKit only.
1992
- if (/Konqueror|Safari|KHTML/.test(navigator.userAgent)) {
1993
- Position.cumulativeOffset = function(element) {
1994
- var valueT = 0, valueL = 0;
1995
- do {
1996
- valueT += element.offsetTop || 0;
1997
- valueL += element.offsetLeft || 0;
1998
- if (element.offsetParent == document.body)
1999
- if (Element.getStyle(element, 'position') == 'absolute') break;
2000
-
2001
- element = element.offsetParent;
2002
- } while (element);
2003
-
2004
- return [valueL, valueT];
2005
- }
2006
- }