radiantcms-couchrest_model 0.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (2534) hide show
  1. data/CHANGELOG +544 -0
  2. data/CONTRIBUTORS +219 -0
  3. data/INSTALL +35 -0
  4. data/LICENSE +21 -0
  5. data/README +3 -0
  6. data/Rakefile +11 -0
  7. data/app/controllers/admin/extensions_controller.rb +11 -0
  8. data/app/controllers/admin/layouts_controller.rb +8 -0
  9. data/app/controllers/admin/page_parts_controller.rb +9 -0
  10. data/app/controllers/admin/pages_controller.rb +52 -0
  11. data/app/controllers/admin/preferences_controller.rb +46 -0
  12. data/app/controllers/admin/references_controller.rb +7 -0
  13. data/app/controllers/admin/resource_controller.rb +233 -0
  14. data/app/controllers/admin/snippets_controller.rb +8 -0
  15. data/app/controllers/admin/users_controller.rb +40 -0
  16. data/app/controllers/admin/welcome_controller.rb +43 -0
  17. data/app/controllers/application_controller.rb +88 -0
  18. data/app/controllers/site_controller.rb +77 -0
  19. data/app/helpers/admin/abstract_model_helper.rb +2 -0
  20. data/app/helpers/admin/export_helper.rb +2 -0
  21. data/app/helpers/admin/extensions_helper.rb +2 -0
  22. data/app/helpers/admin/layouts_helper.rb +21 -0
  23. data/app/helpers/admin/node_helper.rb +87 -0
  24. data/app/helpers/admin/pages_helper.rb +117 -0
  25. data/app/helpers/admin/preferences_helper.rb +3 -0
  26. data/app/helpers/admin/references_helper.rb +44 -0
  27. data/app/helpers/admin/regions_helper.rb +28 -0
  28. data/app/helpers/admin/snippets_helper.rb +41 -0
  29. data/app/helpers/admin/users_helper.rb +8 -0
  30. data/app/helpers/admin/welcome_helper.rb +2 -0
  31. data/app/helpers/application_helper.rb +249 -0
  32. data/app/helpers/site_helper.rb +2 -0
  33. data/app/models/file_not_found_page.rb +32 -0
  34. data/app/models/layout.rb +15 -0
  35. data/app/models/page.rb +353 -0
  36. data/app/models/page_context.rb +46 -0
  37. data/app/models/page_part.rb +21 -0
  38. data/app/models/radiant/config.rb +292 -0
  39. data/app/models/snippet.rb +19 -0
  40. data/app/models/standard_tags.rb +1321 -0
  41. data/app/models/status.rb +41 -0
  42. data/app/models/text_filter.rb +36 -0
  43. data/app/models/user.rb +97 -0
  44. data/app/models/user_action_observer.rb +13 -0
  45. data/app/views/admin/extensions/index.html.haml +41 -0
  46. data/app/views/admin/layouts/_form.html.haml +39 -0
  47. data/app/views/admin/layouts/edit.html.haml +9 -0
  48. data/app/views/admin/layouts/index.html.haml +36 -0
  49. data/app/views/admin/layouts/new.html.haml +7 -0
  50. data/app/views/admin/layouts/remove.html.haml +16 -0
  51. data/app/views/admin/page_parts/_page_part.html.haml +18 -0
  52. data/app/views/admin/pages/_fields.html.haml +61 -0
  53. data/app/views/admin/pages/_meta_row.html.haml +8 -0
  54. data/app/views/admin/pages/_node.html.haml +25 -0
  55. data/app/views/admin/pages/_popups.html.haml +27 -0
  56. data/app/views/admin/pages/children.html.haml +2 -0
  57. data/app/views/admin/pages/edit.html.haml +12 -0
  58. data/app/views/admin/pages/index.html.haml +26 -0
  59. data/app/views/admin/pages/new.html.haml +10 -0
  60. data/app/views/admin/pages/remove.html.haml +18 -0
  61. data/app/views/admin/preferences/edit.html.haml +44 -0
  62. data/app/views/admin/references/_tag_reference.haml +3 -0
  63. data/app/views/admin/references/filters.haml +6 -0
  64. data/app/views/admin/references/tags.haml +30 -0
  65. data/app/views/admin/snippets/_form.html.haml +33 -0
  66. data/app/views/admin/snippets/edit.html.haml +9 -0
  67. data/app/views/admin/snippets/index.html.haml +34 -0
  68. data/app/views/admin/snippets/new.html.haml +7 -0
  69. data/app/views/admin/snippets/remove.html.haml +17 -0
  70. data/app/views/admin/users/_avatar.html.haml +5 -0
  71. data/app/views/admin/users/_form.html.haml +53 -0
  72. data/app/views/admin/users/_password_fields.html.haml +18 -0
  73. data/app/views/admin/users/edit.html.haml +9 -0
  74. data/app/views/admin/users/index.html.haml +39 -0
  75. data/app/views/admin/users/new.html.haml +6 -0
  76. data/app/views/admin/users/remove.html.haml +16 -0
  77. data/app/views/admin/welcome/login.html.haml +23 -0
  78. data/app/views/layouts/application.html.haml +55 -0
  79. data/app/views/site/not_found.html.haml +3 -0
  80. data/bin/radiant +53 -0
  81. data/config/boot.rb +162 -0
  82. data/config/cucumber.yml +7 -0
  83. data/config/database.db2.yml +23 -0
  84. data/config/database.mysql.yml +28 -0
  85. data/config/database.postgresql.yml +28 -0
  86. data/config/database.sqlite.yml +19 -0
  87. data/config/database.sqlserver.yml +23 -0
  88. data/config/environment.rb +92 -0
  89. data/config/environments/cucumber.rb +29 -0
  90. data/config/environments/development.rb +17 -0
  91. data/config/environments/production.rb +24 -0
  92. data/config/environments/test.rb +38 -0
  93. data/config/initializers/haml.rb +2 -0
  94. data/config/locales/en.yml +227 -0
  95. data/config/locales/en_available_tags.yml +621 -0
  96. data/config/routes.rb +41 -0
  97. data/db/migrate/001_create_radiant_tables.rb +75 -0
  98. data/db/migrate/002_insert_initial_data.rb +12 -0
  99. data/db/migrate/003_rename_behavior_column.rb +9 -0
  100. data/db/migrate/004_rename_filter_column.rb +11 -0
  101. data/db/migrate/005_add_virtual_column_to_page.rb +9 -0
  102. data/db/migrate/006_integer_columns_to_boolean.rb +36 -0
  103. data/db/migrate/007_remove_virtual_column_from_page.rb +9 -0
  104. data/db/migrate/008_add_virtual_column_to_page_again.rb +9 -0
  105. data/db/migrate/009_add_content_type_field_to_layout.rb +9 -0
  106. data/db/migrate/010_merge_behaviors_and_pages.rb +57 -0
  107. data/db/migrate/011_rename_type_column_on_page_to_class_name.rb +9 -0
  108. data/db/migrate/012_create_extension_meta.rb +13 -0
  109. data/db/migrate/013_add_notes_field_to_user.rb +9 -0
  110. data/db/migrate/014_rename_config_default_parts_key.rb +17 -0
  111. data/db/migrate/015_add_optimistic_locking.rb +15 -0
  112. data/db/migrate/016_add_sessions.rb +16 -0
  113. data/db/migrate/017_rename_created_by_updated_by_columns.rb +15 -0
  114. data/db/migrate/018_add_description_and_keywords_to_pages.rb +11 -0
  115. data/db/migrate/019_add_salt_to_users.rb +11 -0
  116. data/db/migrate/020_add_session_info_to_users.rb +11 -0
  117. data/db/migrate/021_remove_session_expire_from_users.rb +9 -0
  118. data/db/migrate/20081203140407_add_indexes.rb +19 -0
  119. data/db/migrate/20090226140109_add_user_language.rb +9 -0
  120. data/db/migrate/20090929164633_rename_developer_role_to_designer.rb +9 -0
  121. data/db/migrate/20091003095744_change_user_language_to_locale.rb +9 -0
  122. data/db/schema.rb +119 -0
  123. data/features/admin/content_negotiation.feature +24 -0
  124. data/features/admin/layouts_management.feature +10 -0
  125. data/features/admin/pages_management.feature +78 -0
  126. data/features/admin/resource_pagination.feature +27 -0
  127. data/features/admin/snippets_management.feature +57 -0
  128. data/features/admin/user_permissions.feature +156 -0
  129. data/features/admin/user_preferences.feature +35 -0
  130. data/features/admin/users_management.feature +62 -0
  131. data/features/page_serving.feature +42 -0
  132. data/features/step_definitions/admin/admin_steps.rb +37 -0
  133. data/features/step_definitions/admin/content_negotiation_steps.rb +50 -0
  134. data/features/step_definitions/admin/pages_management_steps.rb +14 -0
  135. data/features/step_definitions/admin/pagination_steps.rb +44 -0
  136. data/features/step_definitions/admin/users_management_steps.rb +15 -0
  137. data/features/step_definitions/page_serving_steps.rb +46 -0
  138. data/features/step_definitions/web_steps.rb +273 -0
  139. data/features/support/dataset.rb +9 -0
  140. data/features/support/env.rb +58 -0
  141. data/features/support/paths.rb +61 -0
  142. data/lib/annotatable.rb +68 -0
  143. data/lib/autotest/discover.rb +3 -0
  144. data/lib/autotest/radiant_rails_rspec.rb +111 -0
  145. data/lib/generators/extension/USAGE +30 -0
  146. data/lib/generators/extension/extension_generator.rb +99 -0
  147. data/lib/generators/extension/templates/README +6 -0
  148. data/lib/generators/extension/templates/RSpecRakefile +117 -0
  149. data/lib/generators/extension/templates/Rakefile +25 -0
  150. data/lib/generators/extension/templates/cucumber.yml +1 -0
  151. data/lib/generators/extension/templates/cucumber_env.rb +16 -0
  152. data/lib/generators/extension/templates/cucumber_paths.rb +14 -0
  153. data/lib/generators/extension/templates/en.yml +3 -0
  154. data/lib/generators/extension/templates/extension.rb +23 -0
  155. data/lib/generators/extension/templates/functional_test.rb +15 -0
  156. data/lib/generators/extension/templates/migration.rb +9 -0
  157. data/lib/generators/extension/templates/routes.rb +5 -0
  158. data/lib/generators/extension/templates/spec.opts +6 -0
  159. data/lib/generators/extension/templates/spec_helper.rb +36 -0
  160. data/lib/generators/extension/templates/tasks.rake +55 -0
  161. data/lib/generators/extension/templates/test_helper.rb +26 -0
  162. data/lib/generators/extension_controller/USAGE +36 -0
  163. data/lib/generators/extension_controller/extension_controller_generator.rb +84 -0
  164. data/lib/generators/extension_controller/templates/controller.rb +10 -0
  165. data/lib/generators/extension_controller/templates/controller_spec.rb +23 -0
  166. data/lib/generators/extension_controller/templates/functional_test.rb +11 -0
  167. data/lib/generators/extension_controller/templates/helper.rb +2 -0
  168. data/lib/generators/extension_controller/templates/helper_spec.rb +11 -0
  169. data/lib/generators/extension_controller/templates/helper_test.rb +4 -0
  170. data/lib/generators/extension_controller/templates/view.html.erb +2 -0
  171. data/lib/generators/extension_controller/templates/view_spec.rb +12 -0
  172. data/lib/generators/extension_mailer/USAGE +17 -0
  173. data/lib/generators/extension_mailer/extension_mailer_generator.rb +68 -0
  174. data/lib/generators/extension_mailer/templates/fixture.erb +3 -0
  175. data/lib/generators/extension_mailer/templates/mailer.rb +15 -0
  176. data/lib/generators/extension_mailer/templates/unit_test.rb +21 -0
  177. data/lib/generators/extension_mailer/templates/view.erb +3 -0
  178. data/lib/generators/extension_migration/USAGE +34 -0
  179. data/lib/generators/extension_migration/extension_migration_generator.rb +25 -0
  180. data/lib/generators/extension_migration/templates/migration.rb +11 -0
  181. data/lib/generators/extension_model/USAGE +35 -0
  182. data/lib/generators/extension_model/extension_model_generator.rb +68 -0
  183. data/lib/generators/extension_model/templates/fixtures.yml +19 -0
  184. data/lib/generators/extension_model/templates/migration.rb +16 -0
  185. data/lib/generators/extension_model/templates/model.rb +2 -0
  186. data/lib/generators/extension_model/templates/model_spec.rb +11 -0
  187. data/lib/generators/extension_model/templates/unit_test.rb +8 -0
  188. data/lib/generators/generator_base_extension.rb +16 -0
  189. data/lib/generators/instance/instance_generator.rb +119 -0
  190. data/lib/generators/instance/templates/databases/db2.yml +40 -0
  191. data/lib/generators/instance/templates/databases/mysql.yml +47 -0
  192. data/lib/generators/instance/templates/databases/postgresql.yml +44 -0
  193. data/lib/generators/instance/templates/databases/sqlite3.yml +16 -0
  194. data/lib/generators/instance/templates/databases/sqlserver.yml +21 -0
  195. data/lib/generators/instance/templates/instance_boot.rb +161 -0
  196. data/lib/generators/instance/templates/instance_environment.rb +86 -0
  197. data/lib/generators/instance/templates/instance_generate +18 -0
  198. data/lib/generators/instance/templates/instance_rakefile +3 -0
  199. data/lib/generators/instance/templates/instance_routes.rb +1 -0
  200. data/lib/generators/language_extension/USAGE +27 -0
  201. data/lib/generators/language_extension/language_extension_generator.rb +49 -0
  202. data/lib/generators/language_extension/templates/README +3 -0
  203. data/lib/generators/language_extension/templates/RSpecRakefile +123 -0
  204. data/lib/generators/language_extension/templates/Rakefile +25 -0
  205. data/lib/generators/language_extension/templates/available_tags.yml +553 -0
  206. data/lib/generators/language_extension/templates/cucumber.yml +1 -0
  207. data/lib/generators/language_extension/templates/cucumber_env.rb +16 -0
  208. data/lib/generators/language_extension/templates/cucumber_paths.rb +14 -0
  209. data/lib/generators/language_extension/templates/extension.rb +8 -0
  210. data/lib/generators/language_extension/templates/functional_test.rb +15 -0
  211. data/lib/generators/language_extension/templates/lang.yml +181 -0
  212. data/lib/generators/language_extension/templates/spec.opts +6 -0
  213. data/lib/generators/language_extension/templates/spec_helper.rb +36 -0
  214. data/lib/generators/language_extension/templates/tasks.rake +28 -0
  215. data/lib/generators/language_extension/templates/test_helper.rb +26 -0
  216. data/lib/inheritable_class_attributes.rb +65 -0
  217. data/lib/local_time.rb +6 -0
  218. data/lib/login_system.rb +128 -0
  219. data/lib/method_observer.rb +50 -0
  220. data/lib/plugins/active_record_extensions/init.rb +1 -0
  221. data/lib/plugins/active_record_extensions/lib/active_record_extensions.rb +18 -0
  222. data/lib/plugins/extension_patches/init.rb +1 -0
  223. data/lib/plugins/extension_patches/lib/routing_extension.rb +31 -0
  224. data/lib/plugins/object_extensions/init.rb +1 -0
  225. data/lib/plugins/object_extensions/lib/object_extensions.rb +5 -0
  226. data/lib/plugins/response_cache_timeout/init.rb +3 -0
  227. data/lib/plugins/string_extensions/init.rb +1 -0
  228. data/lib/plugins/string_extensions/lib/string_extensions.rb +23 -0
  229. data/lib/plugins/symbol_extensions/init.rb +1 -0
  230. data/lib/plugins/symbol_extensions/lib/symbol_extensions.rb +5 -0
  231. data/lib/radiant.rb +19 -0
  232. data/lib/radiant/admin_ui.rb +257 -0
  233. data/lib/radiant/admin_ui/region_partials.rb +18 -0
  234. data/lib/radiant/admin_ui/region_set.rb +35 -0
  235. data/lib/radiant/available_locales.rb +31 -0
  236. data/lib/radiant/cache.rb +98 -0
  237. data/lib/radiant/extension.rb +132 -0
  238. data/lib/radiant/extension/script.rb +393 -0
  239. data/lib/radiant/extension_loader.rb +171 -0
  240. data/lib/radiant/extension_migrator.rb +86 -0
  241. data/lib/radiant/initializer.rb +296 -0
  242. data/lib/radiant/legacy_routes.rb +72 -0
  243. data/lib/radiant/pagination/controller.rb +34 -0
  244. data/lib/radiant/pagination/link_renderer.rb +34 -0
  245. data/lib/radiant/resource_responses.rb +115 -0
  246. data/lib/radiant/setup.rb +223 -0
  247. data/lib/radiant/taggable.rb +92 -0
  248. data/lib/simpleton.rb +21 -0
  249. data/lib/task_support.rb +64 -0
  250. data/lib/tasks/ci.rake +17 -0
  251. data/lib/tasks/cucumber.rake +47 -0
  252. data/lib/tasks/database.rake +31 -0
  253. data/lib/tasks/environments.rake +11 -0
  254. data/lib/tasks/extensions.rake +97 -0
  255. data/lib/tasks/framework.rake +213 -0
  256. data/lib/tasks/instance.rake +23 -0
  257. data/lib/tasks/prototype.rake +34 -0
  258. data/lib/tasks/radiant_config.rake +18 -0
  259. data/lib/tasks/release.rake +130 -0
  260. data/lib/tasks/rspec.rake +221 -0
  261. data/lib/tasks/translate.rake +59 -0
  262. data/lib/tasks/undefine.rake +28 -0
  263. data/lib/translation_support.rb +54 -0
  264. data/log/.keep +0 -0
  265. data/public/.htaccess +40 -0
  266. data/public/404.html +8 -0
  267. data/public/500.html +8 -0
  268. data/public/dispatch.cgi +10 -0
  269. data/public/dispatch.fcgi +24 -0
  270. data/public/dispatch.rb +10 -0
  271. data/public/favicon.ico +0 -0
  272. data/public/images/admin/add_tab.png +0 -0
  273. data/public/images/admin/avatar_32x32.png +0 -0
  274. data/public/images/admin/avatar_96x96.png +0 -0
  275. data/public/images/admin/brown_bottom_line.gif +0 -0
  276. data/public/images/admin/buttons_background.png +0 -0
  277. data/public/images/admin/calendar_down.gif +0 -0
  278. data/public/images/admin/collapse.png +0 -0
  279. data/public/images/admin/draft_page.png +0 -0
  280. data/public/images/admin/expand.png +0 -0
  281. data/public/images/admin/layout.png +0 -0
  282. data/public/images/admin/login_shadow.png +0 -0
  283. data/public/images/admin/metadata_toggle.png +0 -0
  284. data/public/images/admin/minus.png +0 -0
  285. data/public/images/admin/minus_disabled.png +0 -0
  286. data/public/images/admin/minus_grey.png +0 -0
  287. data/public/images/admin/navigation_background.gif +0 -0
  288. data/public/images/admin/navigation_secondary_background.png +0 -0
  289. data/public/images/admin/navigation_secondary_separator.gif +0 -0
  290. data/public/images/admin/navigation_shadow.png +0 -0
  291. data/public/images/admin/navigation_tabs.png +0 -0
  292. data/public/images/admin/new_homepage.png +0 -0
  293. data/public/images/admin/new_layout.png +0 -0
  294. data/public/images/admin/new_snippet.png +0 -0
  295. data/public/images/admin/new_user.png +0 -0
  296. data/public/images/admin/page.png +0 -0
  297. data/public/images/admin/plus.png +0 -0
  298. data/public/images/admin/plus_grey.png +0 -0
  299. data/public/images/admin/popup_border_background.png +0 -0
  300. data/public/images/admin/popup_border_bottom_left.png +0 -0
  301. data/public/images/admin/popup_border_bottom_right.png +0 -0
  302. data/public/images/admin/popup_border_top_left.png +0 -0
  303. data/public/images/admin/popup_border_top_right.png +0 -0
  304. data/public/images/admin/shadow.png +0 -0
  305. data/public/images/admin/shadow_grey.png +0 -0
  306. data/public/images/admin/single_form_shadow.png +0 -0
  307. data/public/images/admin/snippet.png +0 -0
  308. data/public/images/admin/spacer.gif +0 -0
  309. data/public/images/admin/spinner.gif +0 -0
  310. data/public/images/admin/status_background.png +0 -0
  311. data/public/images/admin/status_bottom_left.png +0 -0
  312. data/public/images/admin/status_bottom_right.png +0 -0
  313. data/public/images/admin/status_spinner.gif +0 -0
  314. data/public/images/admin/status_top_left.png +0 -0
  315. data/public/images/admin/status_top_right.png +0 -0
  316. data/public/images/admin/tab_close.png +0 -0
  317. data/public/images/admin/vertical_tan_gradient.png +0 -0
  318. data/public/images/admin/view_site.png +0 -0
  319. data/public/images/admin/virtual_page.png +0 -0
  320. data/public/images/radiant-badge-color.png +0 -0
  321. data/public/javascripts/admin/application.js +85 -0
  322. data/public/javascripts/admin/codearea.js +165 -0
  323. data/public/javascripts/admin/controls.js +965 -0
  324. data/public/javascripts/admin/cookie.js +80 -0
  325. data/public/javascripts/admin/dateinput.js +402 -0
  326. data/public/javascripts/admin/dragdrop.js +974 -0
  327. data/public/javascripts/admin/effects.js +1122 -0
  328. data/public/javascripts/admin/lowpro.js +340 -0
  329. data/public/javascripts/admin/overrides.js +1 -0
  330. data/public/javascripts/admin/pagestatus.js +17 -0
  331. data/public/javascripts/admin/popup.js +216 -0
  332. data/public/javascripts/admin/prototype.js +4874 -0
  333. data/public/javascripts/admin/ruledtable.js +13 -0
  334. data/public/javascripts/admin/shortcuts.js +27 -0
  335. data/public/javascripts/admin/sitemap.js +149 -0
  336. data/public/javascripts/admin/status.js +233 -0
  337. data/public/javascripts/admin/tabcontrol.js +122 -0
  338. data/public/javascripts/admin/toggle.js +430 -0
  339. data/public/javascripts/admin/utility.js +53 -0
  340. data/public/javascripts/admin/validationerror.js +18 -0
  341. data/public/robots.txt +1 -0
  342. data/public/stylesheets/admin/main.css +1 -0
  343. data/public/stylesheets/admin/overrides.css +0 -0
  344. data/public/stylesheets/sass/admin/main.sass +31 -0
  345. data/public/stylesheets/sass/admin/modules/_grid.sass +56 -0
  346. data/public/stylesheets/sass/admin/modules/_links.sass +18 -0
  347. data/public/stylesheets/sass/admin/modules/_opacity.sass +7 -0
  348. data/public/stylesheets/sass/admin/modules/_rounded.sass +41 -0
  349. data/public/stylesheets/sass/admin/modules/_shadow.sass +12 -0
  350. data/public/stylesheets/sass/admin/overrides.sass +2 -0
  351. data/public/stylesheets/sass/admin/partials/_actions.sass +98 -0
  352. data/public/stylesheets/sass/admin/partials/_avatars.sass +10 -0
  353. data/public/stylesheets/sass/admin/partials/_base.sass +7 -0
  354. data/public/stylesheets/sass/admin/partials/_content.sass +27 -0
  355. data/public/stylesheets/sass/admin/partials/_dateinput.sass +62 -0
  356. data/public/stylesheets/sass/admin/partials/_deprecated.sass +26 -0
  357. data/public/stylesheets/sass/admin/partials/_footer.sass +12 -0
  358. data/public/stylesheets/sass/admin/partials/_forms.sass +310 -0
  359. data/public/stylesheets/sass/admin/partials/_header.sass +112 -0
  360. data/public/stylesheets/sass/admin/partials/_layout.sass +10 -0
  361. data/public/stylesheets/sass/admin/partials/_messages.sass +10 -0
  362. data/public/stylesheets/sass/admin/partials/_popup.sass +117 -0
  363. data/public/stylesheets/sass/admin/partials/_reset.sass +36 -0
  364. data/public/stylesheets/sass/admin/partials/_tabcontrol.sass +71 -0
  365. data/public/stylesheets/sass/admin/partials/_toolbar.sass +31 -0
  366. data/public/stylesheets/sass/admin/partials/_validations.sass +21 -0
  367. data/script/about +3 -0
  368. data/script/autospec +5 -0
  369. data/script/breakpointer +3 -0
  370. data/script/console +3 -0
  371. data/script/cucumber +10 -0
  372. data/script/dbconsole +3 -0
  373. data/script/destroy +3 -0
  374. data/script/extension +5 -0
  375. data/script/generate +4 -0
  376. data/script/performance/benchmarker +3 -0
  377. data/script/performance/profiler +3 -0
  378. data/script/performance/request +3 -0
  379. data/script/plugin +3 -0
  380. data/script/process/inspector +3 -0
  381. data/script/process/reaper +3 -0
  382. data/script/process/spawner +3 -0
  383. data/script/process/spinner +3 -0
  384. data/script/runner +3 -0
  385. data/script/server +3 -0
  386. data/script/spec +5 -0
  387. data/script/spec_server +116 -0
  388. data/script/version +5 -0
  389. data/spec/controllers/admin/extensions_controller_spec.rb +36 -0
  390. data/spec/controllers/admin/layouts_controller_spec.rb +102 -0
  391. data/spec/controllers/admin/pages_controller_spec.rb +289 -0
  392. data/spec/controllers/admin/paginated_controller_spec.rb +26 -0
  393. data/spec/controllers/admin/preferences_controller_spec.rb +57 -0
  394. data/spec/controllers/admin/references_controller_spec.rb +15 -0
  395. data/spec/controllers/admin/snippets_controller_spec.rb +110 -0
  396. data/spec/controllers/admin/users_controller_spec.rb +101 -0
  397. data/spec/controllers/admin/welcome_controller_spec.rb +98 -0
  398. data/spec/controllers/application_controller_spec.rb +88 -0
  399. data/spec/controllers/site_controller_spec.rb +182 -0
  400. data/spec/datasets/config_dataset.rb +12 -0
  401. data/spec/datasets/file_not_found_dataset.rb +22 -0
  402. data/spec/datasets/home_page_dataset.rb +62 -0
  403. data/spec/datasets/layouts_dataset.rb +58 -0
  404. data/spec/datasets/markup_pages_dataset.rb +13 -0
  405. data/spec/datasets/pages_dataset.rb +65 -0
  406. data/spec/datasets/pages_with_layouts_dataset.rb +10 -0
  407. data/spec/datasets/snippets_dataset.rb +38 -0
  408. data/spec/datasets/users_and_pages_dataset.rb +9 -0
  409. data/spec/datasets/users_dataset.rb +56 -0
  410. data/spec/fixtures/example_extension/README +3 -0
  411. data/spec/fixtures/example_extension/Rakefile +120 -0
  412. data/spec/fixtures/example_extension/example_extension.rb +21 -0
  413. data/spec/fixtures/example_extension/lib/tasks/example_extension_tasks.rake +28 -0
  414. data/spec/fixtures/example_extension/spec/spec.opts +6 -0
  415. data/spec/fixtures/example_extension/spec/spec_helper.rb +36 -0
  416. data/spec/fixtures/radiant_config.yml +10 -0
  417. data/spec/fixtures/sample.txt +1 -0
  418. data/spec/generators/extension_controller_generator_spec.rb +95 -0
  419. data/spec/generators/extension_generator_spec.rb +235 -0
  420. data/spec/generators/extension_generators_spec_helper.rb +166 -0
  421. data/spec/generators/extension_mailer_generator_spec.rb +60 -0
  422. data/spec/generators/extension_migration_generator_spec.rb +21 -0
  423. data/spec/generators/extension_model_generator_spec.rb +61 -0
  424. data/spec/generators/instance_generator_spec.rb +159 -0
  425. data/spec/helpers/admin/abstract_model_helper_spec.rb +4 -0
  426. data/spec/helpers/admin/export_helper_spec.rb +4 -0
  427. data/spec/helpers/admin/extensions_helper_spec.rb +4 -0
  428. data/spec/helpers/admin/layouts_helper_spec.rb +4 -0
  429. data/spec/helpers/admin/node_helper_spec.rb +106 -0
  430. data/spec/helpers/admin/pages_helper_spec.rb +63 -0
  431. data/spec/helpers/admin/preferences_helper_spec.rb +11 -0
  432. data/spec/helpers/admin/references_helper_spec.rb +124 -0
  433. data/spec/helpers/admin/regions_helper_spec.rb +47 -0
  434. data/spec/helpers/admin/snippets_helper_spec.rb +4 -0
  435. data/spec/helpers/admin/users_helper_spec.rb +11 -0
  436. data/spec/helpers/admin/welcome_helper_spec.rb +4 -0
  437. data/spec/helpers/application_helper_spec.rb +263 -0
  438. data/spec/helpers/site_helper_spec.rb +4 -0
  439. data/spec/lib/annotatable_spec.rb +86 -0
  440. data/spec/lib/autotest_spec.rb +81 -0
  441. data/spec/lib/core_ext/string_ext_spec.rb +11 -0
  442. data/spec/lib/inheritable_class_attributes_spec.rb +90 -0
  443. data/spec/lib/login_system_spec.rb +195 -0
  444. data/spec/lib/method_observer_spec.rb +48 -0
  445. data/spec/lib/radiant/admin_ui/nav_tabs_spec.rb +139 -0
  446. data/spec/lib/radiant/admin_ui/region_partials_spec.rb +35 -0
  447. data/spec/lib/radiant/admin_ui/region_set_spec.rb +61 -0
  448. data/spec/lib/radiant/admin_ui_spec.rb +121 -0
  449. data/spec/lib/radiant/available_locales_spec.rb +13 -0
  450. data/spec/lib/radiant/extension/script_spec.rb +473 -0
  451. data/spec/lib/radiant/extension_loader_spec.rb +248 -0
  452. data/spec/lib/radiant/extension_migrator_spec.rb +46 -0
  453. data/spec/lib/radiant/extension_spec.rb +132 -0
  454. data/spec/lib/radiant/initializer_spec.rb +168 -0
  455. data/spec/lib/radiant/legacy_routes_spec.rb +14 -0
  456. data/spec/lib/radiant/resource_responses_spec.rb +207 -0
  457. data/spec/lib/radiant/taggable_spec.rb +188 -0
  458. data/spec/lib/radiant_spec.rb +30 -0
  459. data/spec/lib/simpleton_spec.rb +45 -0
  460. data/spec/lib/task_support_spec.rb +93 -0
  461. data/spec/lib/translation_support_spec.rb +16 -0
  462. data/spec/matchers/autotest_matchers.rb +47 -0
  463. data/spec/matchers/generator_matchers.rb +235 -0
  464. data/spec/matchers/login_system_matcher.rb +79 -0
  465. data/spec/matchers/render_form_errors_matcher.rb +62 -0
  466. data/spec/matchers/render_matcher.rb +133 -0
  467. data/spec/models/file_not_found_page_spec.rb +35 -0
  468. data/spec/models/layout_spec.rb +29 -0
  469. data/spec/models/page_context_spec.rb +66 -0
  470. data/spec/models/page_part_spec.rb +67 -0
  471. data/spec/models/page_spec.rb +687 -0
  472. data/spec/models/radiant/config_spec.rb +149 -0
  473. data/spec/models/snippet_spec.rb +41 -0
  474. data/spec/models/standard_tags_spec.rb +1146 -0
  475. data/spec/models/status_spec.rb +64 -0
  476. data/spec/models/text_filter_spec.rb +44 -0
  477. data/spec/models/user_action_observer_spec.rb +34 -0
  478. data/spec/models/user_spec.rb +209 -0
  479. data/spec/rcov.opts +2 -0
  480. data/spec/spec.opts +4 -0
  481. data/spec/spec_helper.rb +74 -0
  482. data/test/fixtures/extensions/basic/app/controllers/basic_extension_controller.rb +7 -0
  483. data/test/fixtures/extensions/basic/app/metal/basic_metal.rb +9 -0
  484. data/test/fixtures/extensions/basic/app/models/basic_extension_mailer.rb +4 -0
  485. data/test/fixtures/extensions/basic/app/models/basic_extension_model.rb +2 -0
  486. data/test/fixtures/extensions/basic/app/views/basic_extension/index.html.erb +1 -0
  487. data/test/fixtures/extensions/basic/app/views/basic_extension/override.html.erb +1 -0
  488. data/test/fixtures/extensions/basic/app/views/basic_extension_mailer/message.text.html.erb +1 -0
  489. data/test/fixtures/extensions/basic/basic_extension.rb +11 -0
  490. data/test/fixtures/extensions/basic/db/migrate/200812131420_create_initial_schema.rb +10 -0
  491. data/test/fixtures/extensions/basic/db/migrate/200812131421_modify_initial_schema.rb +10 -0
  492. data/test/fixtures/extensions/basic/lib/new_module.rb +2 -0
  493. data/test/fixtures/extensions/basic/vendor/plugins/multiple/init.rb +1 -0
  494. data/test/fixtures/extensions/basic/vendor/plugins/multiple/lib/multiple.rb +2 -0
  495. data/test/fixtures/extensions/basic/vendor/plugins/plugin_normal/init.rb +1 -0
  496. data/test/fixtures/extensions/basic/vendor/plugins/plugin_normal/lib/normal_plugin.rb +2 -0
  497. data/test/fixtures/extensions/load_order_blue/load_order_blue_extension.rb +8 -0
  498. data/test/fixtures/extensions/load_order_green/load_order_green_extension.rb +8 -0
  499. data/test/fixtures/extensions/load_order_red/load_order_red_extension.rb +8 -0
  500. data/test/fixtures/extensions/locale/config/locales/en-uk.yml +3 -0
  501. data/test/fixtures/extensions/locale/config/locales/en.yml +3 -0
  502. data/test/fixtures/extensions/locale/locale_extension.rb +5 -0
  503. data/test/fixtures/extensions/overriding/app/metal/basic_metal.rb +9 -0
  504. data/test/fixtures/extensions/overriding/app/views/basic_extension/override.html.erb +1 -0
  505. data/test/fixtures/extensions/overriding/overriding_extension.rb +8 -0
  506. data/test/fixtures/extensions/overriding/vendor/plugins/multiple/init.rb +1 -0
  507. data/test/fixtures/extensions/overriding/vendor/plugins/multiple/lib/multiple.rb +2 -0
  508. data/test/fixtures/extensions/routed/config/routes.rb +1 -0
  509. data/test/fixtures/extensions/routed/routed_extension.rb +2 -0
  510. data/test/fixtures/extensions/special_characters/db/migrate/001_create_initial_schema.rb +10 -0
  511. data/test/fixtures/extensions/special_characters/special_characters_extension.rb +3 -0
  512. data/test/fixtures/extensions/upgrading/db/migrate/01_first.rb +7 -0
  513. data/test/fixtures/extensions/upgrading/db/migrate/02_second.rb +7 -0
  514. data/test/fixtures/extensions/upgrading/db/migrate/03_pending.rb +7 -0
  515. data/test/fixtures/extensions/upgrading/db/migrate/04_dont_run.rb +7 -0
  516. data/test/fixtures/extensions/upgrading/upgrading_extension.rb +2 -0
  517. data/test/fixtures/gems/misnamed_ext-0.0.0/misnamed_ext_extension.rb +2 -0
  518. data/test/fixtures/gems/radiant-gem_ext-extension-0.0.0/gem_ext_extension.rb +2 -0
  519. data/test/fixtures/gems/radiant-gem_ext-extension-0.0.0/lib/gem_ext.rb +3 -0
  520. data/test/helpers/page_test_helper.rb +79 -0
  521. data/test/helpers/render_test_helper.rb +60 -0
  522. data/test/helpers/user_test_helper.rb +35 -0
  523. data/test/helpers/validation_test_helper.rb +42 -0
  524. data/test/test_helper.rb +64 -0
  525. data/vendor/highline/CHANGELOG +222 -0
  526. data/vendor/highline/INSTALL +35 -0
  527. data/vendor/highline/LICENSE +7 -0
  528. data/vendor/highline/README +63 -0
  529. data/vendor/highline/Rakefile +82 -0
  530. data/vendor/highline/TODO +6 -0
  531. data/vendor/highline/examples/ansi_colors.rb +38 -0
  532. data/vendor/highline/examples/asking_for_arrays.rb +18 -0
  533. data/vendor/highline/examples/basic_usage.rb +75 -0
  534. data/vendor/highline/examples/color_scheme.rb +32 -0
  535. data/vendor/highline/examples/limit.rb +12 -0
  536. data/vendor/highline/examples/menus.rb +65 -0
  537. data/vendor/highline/examples/overwrite.rb +19 -0
  538. data/vendor/highline/examples/page_and_wrap.rb +322 -0
  539. data/vendor/highline/examples/password.rb +7 -0
  540. data/vendor/highline/examples/trapping_eof.rb +22 -0
  541. data/vendor/highline/examples/using_readline.rb +17 -0
  542. data/vendor/highline/lib/highline.rb +758 -0
  543. data/vendor/highline/lib/highline/color_scheme.rb +120 -0
  544. data/vendor/highline/lib/highline/compatibility.rb +17 -0
  545. data/vendor/highline/lib/highline/import.rb +43 -0
  546. data/vendor/highline/lib/highline/menu.rb +395 -0
  547. data/vendor/highline/lib/highline/question.rb +463 -0
  548. data/vendor/highline/lib/highline/system_extensions.rb +193 -0
  549. data/vendor/highline/setup.rb +1360 -0
  550. data/vendor/highline/test/tc_color_scheme.rb +56 -0
  551. data/vendor/highline/test/tc_highline.rb +823 -0
  552. data/vendor/highline/test/tc_import.rb +54 -0
  553. data/vendor/highline/test/tc_menu.rb +429 -0
  554. data/vendor/highline/test/ts_all.rb +15 -0
  555. data/vendor/plugins/acts_as_tree/README +26 -0
  556. data/vendor/plugins/acts_as_tree/Rakefile +22 -0
  557. data/vendor/plugins/acts_as_tree/init.rb +1 -0
  558. data/vendor/plugins/acts_as_tree/lib/active_record/acts/tree.rb +96 -0
  559. data/vendor/plugins/acts_as_tree/test/abstract_unit.rb +0 -0
  560. data/vendor/plugins/acts_as_tree/test/acts_as_tree_test.rb +219 -0
  561. data/vendor/plugins/acts_as_tree/test/database.yml +0 -0
  562. data/vendor/plugins/acts_as_tree/test/fixtures/mixin.rb +0 -0
  563. data/vendor/plugins/acts_as_tree/test/fixtures/mixins.yml +0 -0
  564. data/vendor/plugins/acts_as_tree/test/schema.rb +0 -0
  565. data/vendor/plugins/dataset/CHANGELOG +59 -0
  566. data/vendor/plugins/dataset/LICENSE +19 -0
  567. data/vendor/plugins/dataset/README +111 -0
  568. data/vendor/plugins/dataset/Rakefile +31 -0
  569. data/vendor/plugins/dataset/TODO +15 -0
  570. data/vendor/plugins/dataset/VERSION.yml +4 -0
  571. data/vendor/plugins/dataset/dataset.gemspec +33 -0
  572. data/vendor/plugins/dataset/lib/dataset.rb +128 -0
  573. data/vendor/plugins/dataset/lib/dataset/base.rb +157 -0
  574. data/vendor/plugins/dataset/lib/dataset/collection.rb +19 -0
  575. data/vendor/plugins/dataset/lib/dataset/database/base.rb +30 -0
  576. data/vendor/plugins/dataset/lib/dataset/database/mysql.rb +34 -0
  577. data/vendor/plugins/dataset/lib/dataset/database/postgresql.rb +34 -0
  578. data/vendor/plugins/dataset/lib/dataset/database/sqlite3.rb +32 -0
  579. data/vendor/plugins/dataset/lib/dataset/extensions/cucumber.rb +21 -0
  580. data/vendor/plugins/dataset/lib/dataset/extensions/rspec.rb +21 -0
  581. data/vendor/plugins/dataset/lib/dataset/extensions/test_unit.rb +60 -0
  582. data/vendor/plugins/dataset/lib/dataset/instance_methods.rb +10 -0
  583. data/vendor/plugins/dataset/lib/dataset/load.rb +37 -0
  584. data/vendor/plugins/dataset/lib/dataset/record/fixture.rb +73 -0
  585. data/vendor/plugins/dataset/lib/dataset/record/meta.rb +66 -0
  586. data/vendor/plugins/dataset/lib/dataset/record/model.rb +50 -0
  587. data/vendor/plugins/dataset/lib/dataset/resolver.rb +110 -0
  588. data/vendor/plugins/dataset/lib/dataset/session.rb +35 -0
  589. data/vendor/plugins/dataset/lib/dataset/session_binding.rb +307 -0
  590. data/vendor/plugins/dataset/lib/dataset/version.rb +9 -0
  591. data/vendor/plugins/dataset/spec/dataset/cucumber_spec.rb +54 -0
  592. data/vendor/plugins/dataset/spec/dataset/database/base_spec.rb +21 -0
  593. data/vendor/plugins/dataset/spec/dataset/record/meta_spec.rb +14 -0
  594. data/vendor/plugins/dataset/spec/dataset/resolver_spec.rb +110 -0
  595. data/vendor/plugins/dataset/spec/dataset/rspec_spec.rb +133 -0
  596. data/vendor/plugins/dataset/spec/dataset/session_binding_spec.rb +198 -0
  597. data/vendor/plugins/dataset/spec/dataset/session_spec.rb +299 -0
  598. data/vendor/plugins/dataset/spec/dataset/test_unit_spec.rb +210 -0
  599. data/vendor/plugins/dataset/spec/fixtures/datasets/constant_not_defined.rb +0 -0
  600. data/vendor/plugins/dataset/spec/fixtures/datasets/ending_with_dataset.rb +2 -0
  601. data/vendor/plugins/dataset/spec/fixtures/datasets/exact_name.rb +2 -0
  602. data/vendor/plugins/dataset/spec/fixtures/datasets/not_a_dataset_base.rb +2 -0
  603. data/vendor/plugins/dataset/spec/fixtures/more_datasets/in_another_directory.rb +2 -0
  604. data/vendor/plugins/dataset/spec/models.rb +18 -0
  605. data/vendor/plugins/dataset/spec/schema.rb +26 -0
  606. data/vendor/plugins/dataset/spec/spec.opts +7 -0
  607. data/vendor/plugins/dataset/spec/spec_helper.rb +47 -0
  608. data/vendor/plugins/dataset/spec/stubs/mini_rails.rb +18 -0
  609. data/vendor/plugins/dataset/spec/stubs/test_help.rb +1 -0
  610. data/vendor/plugins/dataset/tasks/dataset.rake +19 -0
  611. data/vendor/plugins/haml/CONTRIBUTING +4 -0
  612. data/vendor/plugins/haml/MIT-LICENSE +20 -0
  613. data/vendor/plugins/haml/README.md +298 -0
  614. data/vendor/plugins/haml/Rakefile +436 -0
  615. data/vendor/plugins/haml/TODO +53 -0
  616. data/vendor/plugins/haml/VERSION +1 -0
  617. data/vendor/plugins/haml/VERSION_NAME +1 -0
  618. data/vendor/plugins/haml/bin/css2sass +13 -0
  619. data/vendor/plugins/haml/bin/haml +9 -0
  620. data/vendor/plugins/haml/bin/html2haml +7 -0
  621. data/vendor/plugins/haml/bin/sass +8 -0
  622. data/vendor/plugins/haml/doc-src/FAQ.md +187 -0
  623. data/vendor/plugins/haml/doc-src/HAML_CHANGELOG.md +1091 -0
  624. data/vendor/plugins/haml/doc-src/HAML_REFERENCE.md +1344 -0
  625. data/vendor/plugins/haml/doc-src/SASS_CHANGELOG.md +1914 -0
  626. data/vendor/plugins/haml/doc-src/SASS_REFERENCE.md +1680 -0
  627. data/vendor/plugins/haml/extra/haml-mode.el +753 -0
  628. data/vendor/plugins/haml/extra/sass-mode.el +207 -0
  629. data/vendor/plugins/haml/extra/update_watch.rb +13 -0
  630. data/vendor/plugins/haml/haml.gemspec +35 -0
  631. data/vendor/plugins/haml/init.rb +18 -0
  632. data/vendor/plugins/haml/lib/haml.rb +44 -0
  633. data/vendor/plugins/haml/lib/haml/buffer.rb +320 -0
  634. data/vendor/plugins/haml/lib/haml/engine.rb +308 -0
  635. data/vendor/plugins/haml/lib/haml/error.rb +22 -0
  636. data/vendor/plugins/haml/lib/haml/exec.rb +862 -0
  637. data/vendor/plugins/haml/lib/haml/filters.rb +371 -0
  638. data/vendor/plugins/haml/lib/haml/helpers.rb +605 -0
  639. data/vendor/plugins/haml/lib/haml/helpers/action_view_extensions.rb +57 -0
  640. data/vendor/plugins/haml/lib/haml/helpers/action_view_mods.rb +244 -0
  641. data/vendor/plugins/haml/lib/haml/helpers/xss_mods.rb +165 -0
  642. data/vendor/plugins/haml/lib/haml/html.rb +428 -0
  643. data/vendor/plugins/haml/lib/haml/precompiler.rb +1104 -0
  644. data/vendor/plugins/haml/lib/haml/railtie.rb +21 -0
  645. data/vendor/plugins/haml/lib/haml/shared.rb +78 -0
  646. data/vendor/plugins/haml/lib/haml/template.rb +97 -0
  647. data/vendor/plugins/haml/lib/haml/template/patch.rb +58 -0
  648. data/vendor/plugins/haml/lib/haml/template/plugin.rb +122 -0
  649. data/vendor/plugins/haml/lib/haml/util.rb +809 -0
  650. data/vendor/plugins/haml/lib/haml/version.rb +102 -0
  651. data/vendor/plugins/haml/lib/sass.rb +29 -0
  652. data/vendor/plugins/haml/lib/sass/css.rb +294 -0
  653. data/vendor/plugins/haml/lib/sass/engine.rb +720 -0
  654. data/vendor/plugins/haml/lib/sass/environment.rb +143 -0
  655. data/vendor/plugins/haml/lib/sass/error.rb +198 -0
  656. data/vendor/plugins/haml/lib/sass/files.rb +160 -0
  657. data/vendor/plugins/haml/lib/sass/plugin.rb +276 -0
  658. data/vendor/plugins/haml/lib/sass/plugin/merb.rb +37 -0
  659. data/vendor/plugins/haml/lib/sass/plugin/rack.rb +47 -0
  660. data/vendor/plugins/haml/lib/sass/plugin/rails.rb +32 -0
  661. data/vendor/plugins/haml/lib/sass/repl.rb +58 -0
  662. data/vendor/plugins/haml/lib/sass/script.rb +63 -0
  663. data/vendor/plugins/haml/lib/sass/script/bool.rb +18 -0
  664. data/vendor/plugins/haml/lib/sass/script/color.rb +491 -0
  665. data/vendor/plugins/haml/lib/sass/script/funcall.rb +77 -0
  666. data/vendor/plugins/haml/lib/sass/script/functions.rb +861 -0
  667. data/vendor/plugins/haml/lib/sass/script/lexer.rb +337 -0
  668. data/vendor/plugins/haml/lib/sass/script/literal.rb +236 -0
  669. data/vendor/plugins/haml/lib/sass/script/node.rb +112 -0
  670. data/vendor/plugins/haml/lib/sass/script/number.rb +423 -0
  671. data/vendor/plugins/haml/lib/sass/script/operation.rb +95 -0
  672. data/vendor/plugins/haml/lib/sass/script/parser.rb +401 -0
  673. data/vendor/plugins/haml/lib/sass/script/string.rb +67 -0
  674. data/vendor/plugins/haml/lib/sass/script/unary_operation.rb +57 -0
  675. data/vendor/plugins/haml/lib/sass/script/variable.rb +48 -0
  676. data/vendor/plugins/haml/lib/sass/tree/comment_node.rb +128 -0
  677. data/vendor/plugins/haml/lib/sass/tree/debug_node.rb +36 -0
  678. data/vendor/plugins/haml/lib/sass/tree/directive_node.rb +75 -0
  679. data/vendor/plugins/haml/lib/sass/tree/for_node.rb +67 -0
  680. data/vendor/plugins/haml/lib/sass/tree/if_node.rb +81 -0
  681. data/vendor/plugins/haml/lib/sass/tree/import_node.rb +102 -0
  682. data/vendor/plugins/haml/lib/sass/tree/mixin_def_node.rb +60 -0
  683. data/vendor/plugins/haml/lib/sass/tree/mixin_node.rb +123 -0
  684. data/vendor/plugins/haml/lib/sass/tree/node.rb +465 -0
  685. data/vendor/plugins/haml/lib/sass/tree/prop_node.rb +220 -0
  686. data/vendor/plugins/haml/lib/sass/tree/rule_node.rb +273 -0
  687. data/vendor/plugins/haml/lib/sass/tree/variable_node.rb +39 -0
  688. data/vendor/plugins/haml/lib/sass/tree/while_node.rb +48 -0
  689. data/vendor/plugins/haml/rails/init.rb +1 -0
  690. data/vendor/plugins/haml/test/benchmark.rb +99 -0
  691. data/vendor/plugins/haml/test/haml/engine_test.rb +1805 -0
  692. data/vendor/plugins/haml/test/haml/helper_test.rb +450 -0
  693. data/vendor/plugins/haml/test/haml/html2haml_test.rb +336 -0
  694. data/vendor/plugins/haml/test/haml/markaby/standard.mab +52 -0
  695. data/vendor/plugins/haml/test/haml/mocks/article.rb +6 -0
  696. data/vendor/plugins/haml/test/haml/results/content_for_layout.xhtml +12 -0
  697. data/vendor/plugins/haml/test/haml/results/eval_suppressed.xhtml +9 -0
  698. data/vendor/plugins/haml/test/haml/results/filters.xhtml +62 -0
  699. data/vendor/plugins/haml/test/haml/results/helpers.xhtml +70 -0
  700. data/vendor/plugins/haml/test/haml/results/helpful.xhtml +10 -0
  701. data/vendor/plugins/haml/test/haml/results/just_stuff.xhtml +70 -0
  702. data/vendor/plugins/haml/test/haml/results/list.xhtml +12 -0
  703. data/vendor/plugins/haml/test/haml/results/nuke_inner_whitespace.xhtml +40 -0
  704. data/vendor/plugins/haml/test/haml/results/nuke_outer_whitespace.xhtml +148 -0
  705. data/vendor/plugins/haml/test/haml/results/original_engine.xhtml +20 -0
  706. data/vendor/plugins/haml/test/haml/results/partial_layout.xhtml +5 -0
  707. data/vendor/plugins/haml/test/haml/results/partials.xhtml +21 -0
  708. data/vendor/plugins/haml/test/haml/results/render_layout.xhtml +3 -0
  709. data/vendor/plugins/haml/test/haml/results/silent_script.xhtml +74 -0
  710. data/vendor/plugins/haml/test/haml/results/standard.xhtml +162 -0
  711. data/vendor/plugins/haml/test/haml/results/tag_parsing.xhtml +23 -0
  712. data/vendor/plugins/haml/test/haml/results/very_basic.xhtml +5 -0
  713. data/vendor/plugins/haml/test/haml/results/whitespace_handling.xhtml +89 -0
  714. data/vendor/plugins/haml/test/haml/template_test.rb +417 -0
  715. data/vendor/plugins/haml/test/haml/templates/_av_partial_1.haml +9 -0
  716. data/vendor/plugins/haml/test/haml/templates/_av_partial_1_ugly.haml +9 -0
  717. data/vendor/plugins/haml/test/haml/templates/_av_partial_2.haml +5 -0
  718. data/vendor/plugins/haml/test/haml/templates/_av_partial_2_ugly.haml +5 -0
  719. data/vendor/plugins/haml/test/haml/templates/_layout.erb +3 -0
  720. data/vendor/plugins/haml/test/haml/templates/_layout_for_partial.haml +3 -0
  721. data/vendor/plugins/haml/test/haml/templates/_partial.haml +8 -0
  722. data/vendor/plugins/haml/test/haml/templates/_text_area.haml +3 -0
  723. data/vendor/plugins/haml/test/haml/templates/action_view.haml +47 -0
  724. data/vendor/plugins/haml/test/haml/templates/action_view_ugly.haml +47 -0
  725. data/vendor/plugins/haml/test/haml/templates/breakage.haml +8 -0
  726. data/vendor/plugins/haml/test/haml/templates/content_for_layout.haml +8 -0
  727. data/vendor/plugins/haml/test/haml/templates/eval_suppressed.haml +11 -0
  728. data/vendor/plugins/haml/test/haml/templates/filters.haml +66 -0
  729. data/vendor/plugins/haml/test/haml/templates/helpers.haml +55 -0
  730. data/vendor/plugins/haml/test/haml/templates/helpful.haml +11 -0
  731. data/vendor/plugins/haml/test/haml/templates/just_stuff.haml +85 -0
  732. data/vendor/plugins/haml/test/haml/templates/list.haml +12 -0
  733. data/vendor/plugins/haml/test/haml/templates/nuke_inner_whitespace.haml +32 -0
  734. data/vendor/plugins/haml/test/haml/templates/nuke_outer_whitespace.haml +144 -0
  735. data/vendor/plugins/haml/test/haml/templates/original_engine.haml +17 -0
  736. data/vendor/plugins/haml/test/haml/templates/partial_layout.haml +7 -0
  737. data/vendor/plugins/haml/test/haml/templates/partialize.haml +1 -0
  738. data/vendor/plugins/haml/test/haml/templates/partials.haml +12 -0
  739. data/vendor/plugins/haml/test/haml/templates/render_layout.haml +2 -0
  740. data/vendor/plugins/haml/test/haml/templates/silent_script.haml +40 -0
  741. data/vendor/plugins/haml/test/haml/templates/standard.haml +42 -0
  742. data/vendor/plugins/haml/test/haml/templates/standard_ugly.haml +42 -0
  743. data/vendor/plugins/haml/test/haml/templates/tag_parsing.haml +21 -0
  744. data/vendor/plugins/haml/test/haml/templates/very_basic.haml +4 -0
  745. data/vendor/plugins/haml/test/haml/templates/whitespace_handling.haml +87 -0
  746. data/vendor/plugins/haml/test/haml/util_test.rb +268 -0
  747. data/vendor/plugins/haml/test/linked_rails.rb +42 -0
  748. data/vendor/plugins/haml/test/sass/css2sass_test.rb +364 -0
  749. data/vendor/plugins/haml/test/sass/engine_test.rb +2263 -0
  750. data/vendor/plugins/haml/test/sass/functions_test.rb +556 -0
  751. data/vendor/plugins/haml/test/sass/more_results/more1.css +9 -0
  752. data/vendor/plugins/haml/test/sass/more_results/more1_with_line_comments.css +26 -0
  753. data/vendor/plugins/haml/test/sass/more_results/more_import.css +29 -0
  754. data/vendor/plugins/haml/test/sass/more_templates/_more_partial.sass +2 -0
  755. data/vendor/plugins/haml/test/sass/more_templates/more1.sass +23 -0
  756. data/vendor/plugins/haml/test/sass/more_templates/more_import.sass +11 -0
  757. data/vendor/plugins/haml/test/sass/plugin_test.rb +433 -0
  758. data/vendor/plugins/haml/test/sass/results/alt.css +4 -0
  759. data/vendor/plugins/haml/test/sass/results/basic.css +9 -0
  760. data/vendor/plugins/haml/test/sass/results/compact.css +5 -0
  761. data/vendor/plugins/haml/test/sass/results/complex.css +86 -0
  762. data/vendor/plugins/haml/test/sass/results/compressed.css +1 -0
  763. data/vendor/plugins/haml/test/sass/results/expanded.css +19 -0
  764. data/vendor/plugins/haml/test/sass/results/import.css +31 -0
  765. data/vendor/plugins/haml/test/sass/results/line_numbers.css +49 -0
  766. data/vendor/plugins/haml/test/sass/results/mixins.css +95 -0
  767. data/vendor/plugins/haml/test/sass/results/multiline.css +24 -0
  768. data/vendor/plugins/haml/test/sass/results/nested.css +22 -0
  769. data/vendor/plugins/haml/test/sass/results/parent_ref.css +13 -0
  770. data/vendor/plugins/haml/test/sass/results/script.css +16 -0
  771. data/vendor/plugins/haml/test/sass/results/subdir/nested_subdir/nested_subdir.css +1 -0
  772. data/vendor/plugins/haml/test/sass/results/subdir/subdir.css +3 -0
  773. data/vendor/plugins/haml/test/sass/results/units.css +11 -0
  774. data/vendor/plugins/haml/test/sass/script_test.rb +470 -0
  775. data/vendor/plugins/haml/test/sass/templates/_partial.sass +2 -0
  776. data/vendor/plugins/haml/test/sass/templates/alt.sass +16 -0
  777. data/vendor/plugins/haml/test/sass/templates/basic.sass +23 -0
  778. data/vendor/plugins/haml/test/sass/templates/bork2.sass +2 -0
  779. data/vendor/plugins/haml/test/sass/templates/compact.sass +17 -0
  780. data/vendor/plugins/haml/test/sass/templates/complex.sass +305 -0
  781. data/vendor/plugins/haml/test/sass/templates/compressed.sass +15 -0
  782. data/vendor/plugins/haml/test/sass/templates/expanded.sass +17 -0
  783. data/vendor/plugins/haml/test/sass/templates/import.sass +12 -0
  784. data/vendor/plugins/haml/test/sass/templates/importee.sass +19 -0
  785. data/vendor/plugins/haml/test/sass/templates/line_numbers.sass +13 -0
  786. data/vendor/plugins/haml/test/sass/templates/mixins.sass +76 -0
  787. data/vendor/plugins/haml/test/sass/templates/multiline.sass +20 -0
  788. data/vendor/plugins/haml/test/sass/templates/nested.sass +25 -0
  789. data/vendor/plugins/haml/test/sass/templates/parent_ref.sass +25 -0
  790. data/vendor/plugins/haml/test/sass/templates/script.sass +101 -0
  791. data/vendor/plugins/haml/test/sass/templates/subdir/nested_subdir/_nested_partial.sass +2 -0
  792. data/vendor/plugins/haml/test/sass/templates/subdir/nested_subdir/nested_subdir.sass +3 -0
  793. data/vendor/plugins/haml/test/sass/templates/subdir/subdir.sass +6 -0
  794. data/vendor/plugins/haml/test/sass/templates/units.sass +11 -0
  795. data/vendor/plugins/haml/test/test_helper.rb +98 -0
  796. data/vendor/plugins/haml/yard/default/fulldoc/html/css/common.sass +26 -0
  797. data/vendor/plugins/haml/yard/default/layout/html/footer.erb +12 -0
  798. data/vendor/plugins/haml/yard/inherited_hash.rb +41 -0
  799. data/vendor/rack-cache/CHANGES +128 -0
  800. data/vendor/rack-cache/COPYING +18 -0
  801. data/vendor/rack-cache/README +110 -0
  802. data/vendor/rack-cache/Rakefile +137 -0
  803. data/vendor/rack-cache/TODO +31 -0
  804. data/vendor/rack-cache/doc/configuration.markdown +86 -0
  805. data/vendor/rack-cache/doc/faq.markdown +141 -0
  806. data/vendor/rack-cache/doc/index.markdown +118 -0
  807. data/vendor/rack-cache/doc/layout.html.erb +34 -0
  808. data/vendor/rack-cache/doc/license.markdown +24 -0
  809. data/vendor/rack-cache/doc/rack-cache.css +362 -0
  810. data/vendor/rack-cache/doc/server.ru +34 -0
  811. data/vendor/rack-cache/doc/storage.markdown +162 -0
  812. data/vendor/rack-cache/example/sinatra/app.rb +25 -0
  813. data/vendor/rack-cache/example/sinatra/views/index.erb +44 -0
  814. data/vendor/rack-cache/lib/rack/cache.rb +45 -0
  815. data/vendor/rack-cache/lib/rack/cache/cachecontrol.rb +193 -0
  816. data/vendor/rack-cache/lib/rack/cache/context.rb +233 -0
  817. data/vendor/rack-cache/lib/rack/cache/entitystore.rb +253 -0
  818. data/vendor/rack-cache/lib/rack/cache/key.rb +52 -0
  819. data/vendor/rack-cache/lib/rack/cache/metastore.rb +328 -0
  820. data/vendor/rack-cache/lib/rack/cache/options.rb +150 -0
  821. data/vendor/rack-cache/lib/rack/cache/request.rb +33 -0
  822. data/vendor/rack-cache/lib/rack/cache/response.rb +267 -0
  823. data/vendor/rack-cache/lib/rack/cache/storage.rb +49 -0
  824. data/vendor/rack-cache/rack-cache.gemspec +69 -0
  825. data/vendor/rack-cache/test/cache_test.rb +38 -0
  826. data/vendor/rack-cache/test/cachecontrol_test.rb +139 -0
  827. data/vendor/rack-cache/test/context_test.rb +727 -0
  828. data/vendor/rack-cache/test/entitystore_test.rb +189 -0
  829. data/vendor/rack-cache/test/key_test.rb +50 -0
  830. data/vendor/rack-cache/test/metastore_test.rb +263 -0
  831. data/vendor/rack-cache/test/options_test.rb +78 -0
  832. data/vendor/rack-cache/test/pony.jpg +0 -0
  833. data/vendor/rack-cache/test/request_test.rb +19 -0
  834. data/vendor/rack-cache/test/response_test.rb +178 -0
  835. data/vendor/rack-cache/test/spec_setup.rb +202 -0
  836. data/vendor/rack-cache/test/storage_test.rb +94 -0
  837. data/vendor/radius/CHANGELOG +33 -0
  838. data/vendor/radius/LICENSE +19 -0
  839. data/vendor/radius/QUICKSTART.rdoc +322 -0
  840. data/vendor/radius/README.rdoc +102 -0
  841. data/vendor/radius/Rakefile +8 -0
  842. data/vendor/radius/VERSION +1 -0
  843. data/vendor/radius/lib/radius.rb +10 -0
  844. data/vendor/radius/lib/radius/context.rb +139 -0
  845. data/vendor/radius/lib/radius/delegating_open_struct.rb +31 -0
  846. data/vendor/radius/lib/radius/error.rb +43 -0
  847. data/vendor/radius/lib/radius/parse_tag.rb +24 -0
  848. data/vendor/radius/lib/radius/parser.rb +65 -0
  849. data/vendor/radius/lib/radius/parser/scan.rb +678 -0
  850. data/vendor/radius/lib/radius/parser/scan.rl +124 -0
  851. data/vendor/radius/lib/radius/tag_binding.rb +71 -0
  852. data/vendor/radius/lib/radius/tag_definitions.rb +78 -0
  853. data/vendor/radius/lib/radius/utility.rb +30 -0
  854. data/vendor/radius/lib/radius/version.rb +8 -0
  855. data/vendor/radius/radius.gemspec +71 -0
  856. data/vendor/radius/tasks/jeweler.rake +21 -0
  857. data/vendor/radius/tasks/rdoc.rake +13 -0
  858. data/vendor/radius/tasks/scan.rake +27 -0
  859. data/vendor/radius/tasks/test.rake +7 -0
  860. data/vendor/radius/test/context_test.rb +61 -0
  861. data/vendor/radius/test/parser_test.rb +295 -0
  862. data/vendor/radius/test/quickstart_test.rb +153 -0
  863. data/vendor/radius/test/test_helper.rb +29 -0
  864. data/vendor/rails/actionmailer/CHANGELOG +388 -0
  865. data/vendor/rails/actionmailer/MIT-LICENSE +21 -0
  866. data/vendor/rails/actionmailer/README +149 -0
  867. data/vendor/rails/actionmailer/Rakefile +99 -0
  868. data/vendor/rails/actionmailer/install.rb +30 -0
  869. data/vendor/rails/actionmailer/lib/action_mailer.rb +62 -0
  870. data/vendor/rails/actionmailer/lib/action_mailer/adv_attr_accessor.rb +30 -0
  871. data/vendor/rails/actionmailer/lib/action_mailer/base.rb +706 -0
  872. data/vendor/rails/actionmailer/lib/action_mailer/helpers.rb +113 -0
  873. data/vendor/rails/actionmailer/lib/action_mailer/mail_helper.rb +17 -0
  874. data/vendor/rails/actionmailer/lib/action_mailer/part.rb +107 -0
  875. data/vendor/rails/actionmailer/lib/action_mailer/part_container.rb +55 -0
  876. data/vendor/rails/actionmailer/lib/action_mailer/quoting.rb +62 -0
  877. data/vendor/rails/actionmailer/lib/action_mailer/test_case.rb +64 -0
  878. data/vendor/rails/actionmailer/lib/action_mailer/test_helper.rb +68 -0
  879. data/vendor/rails/actionmailer/lib/action_mailer/utils.rb +7 -0
  880. data/vendor/rails/actionmailer/lib/action_mailer/vendor/text-format-0.6.3/text/format.rb +1466 -0
  881. data/vendor/rails/actionmailer/lib/action_mailer/vendor/text_format.rb +10 -0
  882. data/vendor/rails/actionmailer/lib/action_mailer/vendor/tmail-1.2.7/tmail.rb +6 -0
  883. data/vendor/rails/actionmailer/lib/action_mailer/vendor/tmail-1.2.7/tmail/Makefile +18 -0
  884. data/vendor/rails/actionmailer/lib/action_mailer/vendor/tmail-1.2.7/tmail/address.rb +392 -0
  885. data/vendor/rails/actionmailer/lib/action_mailer/vendor/tmail-1.2.7/tmail/attachments.rb +65 -0
  886. data/vendor/rails/actionmailer/lib/action_mailer/vendor/tmail-1.2.7/tmail/base64.rb +46 -0
  887. data/vendor/rails/actionmailer/lib/action_mailer/vendor/tmail-1.2.7/tmail/compat.rb +41 -0
  888. data/vendor/rails/actionmailer/lib/action_mailer/vendor/tmail-1.2.7/tmail/config.rb +67 -0
  889. data/vendor/rails/actionmailer/lib/action_mailer/vendor/tmail-1.2.7/tmail/core_extensions.rb +63 -0
  890. data/vendor/rails/actionmailer/lib/action_mailer/vendor/tmail-1.2.7/tmail/encode.rb +590 -0
  891. data/vendor/rails/actionmailer/lib/action_mailer/vendor/tmail-1.2.7/tmail/header.rb +962 -0
  892. data/vendor/rails/actionmailer/lib/action_mailer/vendor/tmail-1.2.7/tmail/index.rb +9 -0
  893. data/vendor/rails/actionmailer/lib/action_mailer/vendor/tmail-1.2.7/tmail/interface.rb +1162 -0
  894. data/vendor/rails/actionmailer/lib/action_mailer/vendor/tmail-1.2.7/tmail/loader.rb +3 -0
  895. data/vendor/rails/actionmailer/lib/action_mailer/vendor/tmail-1.2.7/tmail/mail.rb +578 -0
  896. data/vendor/rails/actionmailer/lib/action_mailer/vendor/tmail-1.2.7/tmail/mailbox.rb +496 -0
  897. data/vendor/rails/actionmailer/lib/action_mailer/vendor/tmail-1.2.7/tmail/main.rb +6 -0
  898. data/vendor/rails/actionmailer/lib/action_mailer/vendor/tmail-1.2.7/tmail/mbox.rb +3 -0
  899. data/vendor/rails/actionmailer/lib/action_mailer/vendor/tmail-1.2.7/tmail/net.rb +250 -0
  900. data/vendor/rails/actionmailer/lib/action_mailer/vendor/tmail-1.2.7/tmail/obsolete.rb +132 -0
  901. data/vendor/rails/actionmailer/lib/action_mailer/vendor/tmail-1.2.7/tmail/parser.rb +1060 -0
  902. data/vendor/rails/actionmailer/lib/action_mailer/vendor/tmail-1.2.7/tmail/parser.y +416 -0
  903. data/vendor/rails/actionmailer/lib/action_mailer/vendor/tmail-1.2.7/tmail/port.rb +379 -0
  904. data/vendor/rails/actionmailer/lib/action_mailer/vendor/tmail-1.2.7/tmail/quoting.rb +164 -0
  905. data/vendor/rails/actionmailer/lib/action_mailer/vendor/tmail-1.2.7/tmail/require_arch.rb +58 -0
  906. data/vendor/rails/actionmailer/lib/action_mailer/vendor/tmail-1.2.7/tmail/scanner.rb +49 -0
  907. data/vendor/rails/actionmailer/lib/action_mailer/vendor/tmail-1.2.7/tmail/scanner_r.rb +262 -0
  908. data/vendor/rails/actionmailer/lib/action_mailer/vendor/tmail-1.2.7/tmail/stringio.rb +280 -0
  909. data/vendor/rails/actionmailer/lib/action_mailer/vendor/tmail-1.2.7/tmail/utils.rb +362 -0
  910. data/vendor/rails/actionmailer/lib/action_mailer/vendor/tmail-1.2.7/tmail/vendor/rchardet-1.3/COPYING +504 -0
  911. data/vendor/rails/actionmailer/lib/action_mailer/vendor/tmail-1.2.7/tmail/vendor/rchardet-1.3/README +12 -0
  912. data/vendor/rails/actionmailer/lib/action_mailer/vendor/tmail-1.2.7/tmail/vendor/rchardet-1.3/lib/rchardet.rb +67 -0
  913. data/vendor/rails/actionmailer/lib/action_mailer/vendor/tmail-1.2.7/tmail/vendor/rchardet-1.3/lib/rchardet/big5freq.rb +927 -0
  914. data/vendor/rails/actionmailer/lib/action_mailer/vendor/tmail-1.2.7/tmail/vendor/rchardet-1.3/lib/rchardet/big5prober.rb +42 -0
  915. data/vendor/rails/actionmailer/lib/action_mailer/vendor/tmail-1.2.7/tmail/vendor/rchardet-1.3/lib/rchardet/chardistribution.rb +238 -0
  916. data/vendor/rails/actionmailer/lib/action_mailer/vendor/tmail-1.2.7/tmail/vendor/rchardet-1.3/lib/rchardet/charsetgroupprober.rb +112 -0
  917. data/vendor/rails/actionmailer/lib/action_mailer/vendor/tmail-1.2.7/tmail/vendor/rchardet-1.3/lib/rchardet/charsetprober.rb +75 -0
  918. data/vendor/rails/actionmailer/lib/action_mailer/vendor/tmail-1.2.7/tmail/vendor/rchardet-1.3/lib/rchardet/codingstatemachine.rb +64 -0
  919. data/vendor/rails/actionmailer/lib/action_mailer/vendor/tmail-1.2.7/tmail/vendor/rchardet-1.3/lib/rchardet/constants.rb +42 -0
  920. data/vendor/rails/actionmailer/lib/action_mailer/vendor/tmail-1.2.7/tmail/vendor/rchardet-1.3/lib/rchardet/escprober.rb +89 -0
  921. data/vendor/rails/actionmailer/lib/action_mailer/vendor/tmail-1.2.7/tmail/vendor/rchardet-1.3/lib/rchardet/escsm.rb +244 -0
  922. data/vendor/rails/actionmailer/lib/action_mailer/vendor/tmail-1.2.7/tmail/vendor/rchardet-1.3/lib/rchardet/eucjpprober.rb +88 -0
  923. data/vendor/rails/actionmailer/lib/action_mailer/vendor/tmail-1.2.7/tmail/vendor/rchardet-1.3/lib/rchardet/euckrfreq.rb +596 -0
  924. data/vendor/rails/actionmailer/lib/action_mailer/vendor/tmail-1.2.7/tmail/vendor/rchardet-1.3/lib/rchardet/euckrprober.rb +42 -0
  925. data/vendor/rails/actionmailer/lib/action_mailer/vendor/tmail-1.2.7/tmail/vendor/rchardet-1.3/lib/rchardet/euctwfreq.rb +430 -0
  926. data/vendor/rails/actionmailer/lib/action_mailer/vendor/tmail-1.2.7/tmail/vendor/rchardet-1.3/lib/rchardet/euctwprober.rb +42 -0
  927. data/vendor/rails/actionmailer/lib/action_mailer/vendor/tmail-1.2.7/tmail/vendor/rchardet-1.3/lib/rchardet/gb2312freq.rb +474 -0
  928. data/vendor/rails/actionmailer/lib/action_mailer/vendor/tmail-1.2.7/tmail/vendor/rchardet-1.3/lib/rchardet/gb2312prober.rb +42 -0
  929. data/vendor/rails/actionmailer/lib/action_mailer/vendor/tmail-1.2.7/tmail/vendor/rchardet-1.3/lib/rchardet/hebrewprober.rb +289 -0
  930. data/vendor/rails/actionmailer/lib/action_mailer/vendor/tmail-1.2.7/tmail/vendor/rchardet-1.3/lib/rchardet/jisfreq.rb +570 -0
  931. data/vendor/rails/actionmailer/lib/action_mailer/vendor/tmail-1.2.7/tmail/vendor/rchardet-1.3/lib/rchardet/jpcntx.rb +229 -0
  932. data/vendor/rails/actionmailer/lib/action_mailer/vendor/tmail-1.2.7/tmail/vendor/rchardet-1.3/lib/rchardet/langbulgarianmodel.rb +229 -0
  933. data/vendor/rails/actionmailer/lib/action_mailer/vendor/tmail-1.2.7/tmail/vendor/rchardet-1.3/lib/rchardet/langcyrillicmodel.rb +330 -0
  934. data/vendor/rails/actionmailer/lib/action_mailer/vendor/tmail-1.2.7/tmail/vendor/rchardet-1.3/lib/rchardet/langgreekmodel.rb +227 -0
  935. data/vendor/rails/actionmailer/lib/action_mailer/vendor/tmail-1.2.7/tmail/vendor/rchardet-1.3/lib/rchardet/langhebrewmodel.rb +202 -0
  936. data/vendor/rails/actionmailer/lib/action_mailer/vendor/tmail-1.2.7/tmail/vendor/rchardet-1.3/lib/rchardet/langhungarianmodel.rb +226 -0
  937. data/vendor/rails/actionmailer/lib/action_mailer/vendor/tmail-1.2.7/tmail/vendor/rchardet-1.3/lib/rchardet/langthaimodel.rb +201 -0
  938. data/vendor/rails/actionmailer/lib/action_mailer/vendor/tmail-1.2.7/tmail/vendor/rchardet-1.3/lib/rchardet/latin1prober.rb +147 -0
  939. data/vendor/rails/actionmailer/lib/action_mailer/vendor/tmail-1.2.7/tmail/vendor/rchardet-1.3/lib/rchardet/mbcharsetprober.rb +89 -0
  940. data/vendor/rails/actionmailer/lib/action_mailer/vendor/tmail-1.2.7/tmail/vendor/rchardet-1.3/lib/rchardet/mbcsgroupprober.rb +45 -0
  941. data/vendor/rails/actionmailer/lib/action_mailer/vendor/tmail-1.2.7/tmail/vendor/rchardet-1.3/lib/rchardet/mbcssm.rb +542 -0
  942. data/vendor/rails/actionmailer/lib/action_mailer/vendor/tmail-1.2.7/tmail/vendor/rchardet-1.3/lib/rchardet/sbcharsetprober.rb +124 -0
  943. data/vendor/rails/actionmailer/lib/action_mailer/vendor/tmail-1.2.7/tmail/vendor/rchardet-1.3/lib/rchardet/sbcsgroupprober.rb +56 -0
  944. data/vendor/rails/actionmailer/lib/action_mailer/vendor/tmail-1.2.7/tmail/vendor/rchardet-1.3/lib/rchardet/sjisprober.rb +88 -0
  945. data/vendor/rails/actionmailer/lib/action_mailer/vendor/tmail-1.2.7/tmail/vendor/rchardet-1.3/lib/rchardet/universaldetector.rb +168 -0
  946. data/vendor/rails/actionmailer/lib/action_mailer/vendor/tmail-1.2.7/tmail/vendor/rchardet-1.3/lib/rchardet/utf8prober.rb +87 -0
  947. data/vendor/rails/actionmailer/lib/action_mailer/vendor/tmail-1.2.7/tmail/version.rb +39 -0
  948. data/vendor/rails/actionmailer/lib/action_mailer/vendor/tmail.rb +17 -0
  949. data/vendor/rails/actionmailer/lib/action_mailer/version.rb +9 -0
  950. data/vendor/rails/actionmailer/lib/actionmailer.rb +2 -0
  951. data/vendor/rails/actionmailer/test/abstract_unit.rb +62 -0
  952. data/vendor/rails/actionmailer/test/asset_host_test.rb +54 -0
  953. data/vendor/rails/actionmailer/test/delivery_method_test.rb +51 -0
  954. data/vendor/rails/actionmailer/test/fixtures/asset_host_mailer/email_with_asset.html.erb +1 -0
  955. data/vendor/rails/actionmailer/test/fixtures/auto_layout_mailer/hello.html.erb +1 -0
  956. data/vendor/rails/actionmailer/test/fixtures/auto_layout_mailer/multipart.text.html.erb +1 -0
  957. data/vendor/rails/actionmailer/test/fixtures/auto_layout_mailer/multipart.text.plain.erb +1 -0
  958. data/vendor/rails/actionmailer/test/fixtures/explicit_layout_mailer/logout.html.erb +1 -0
  959. data/vendor/rails/actionmailer/test/fixtures/explicit_layout_mailer/signup.html.erb +1 -0
  960. data/vendor/rails/actionmailer/test/fixtures/first_mailer/share.erb +1 -0
  961. data/vendor/rails/actionmailer/test/fixtures/helper_mailer/use_example_helper.erb +1 -0
  962. data/vendor/rails/actionmailer/test/fixtures/helper_mailer/use_helper.erb +1 -0
  963. data/vendor/rails/actionmailer/test/fixtures/helper_mailer/use_helper_method.erb +1 -0
  964. data/vendor/rails/actionmailer/test/fixtures/helper_mailer/use_mail_helper.erb +5 -0
  965. data/vendor/rails/actionmailer/test/fixtures/helpers/example_helper.rb +5 -0
  966. data/vendor/rails/actionmailer/test/fixtures/layouts/auto_layout_mailer.html.erb +1 -0
  967. data/vendor/rails/actionmailer/test/fixtures/layouts/auto_layout_mailer.text.erb +1 -0
  968. data/vendor/rails/actionmailer/test/fixtures/layouts/spam.html.erb +1 -0
  969. data/vendor/rails/actionmailer/test/fixtures/path.with.dots/funky_path_mailer/multipart_with_template_path_with_dots.erb +1 -0
  970. data/vendor/rails/actionmailer/test/fixtures/raw_email +14 -0
  971. data/vendor/rails/actionmailer/test/fixtures/raw_email10 +20 -0
  972. data/vendor/rails/actionmailer/test/fixtures/raw_email12 +32 -0
  973. data/vendor/rails/actionmailer/test/fixtures/raw_email13 +29 -0
  974. data/vendor/rails/actionmailer/test/fixtures/raw_email2 +114 -0
  975. data/vendor/rails/actionmailer/test/fixtures/raw_email3 +70 -0
  976. data/vendor/rails/actionmailer/test/fixtures/raw_email4 +59 -0
  977. data/vendor/rails/actionmailer/test/fixtures/raw_email5 +19 -0
  978. data/vendor/rails/actionmailer/test/fixtures/raw_email6 +20 -0
  979. data/vendor/rails/actionmailer/test/fixtures/raw_email7 +66 -0
  980. data/vendor/rails/actionmailer/test/fixtures/raw_email8 +47 -0
  981. data/vendor/rails/actionmailer/test/fixtures/raw_email9 +28 -0
  982. data/vendor/rails/actionmailer/test/fixtures/raw_email_quoted_with_0d0a +14 -0
  983. data/vendor/rails/actionmailer/test/fixtures/raw_email_with_invalid_characters_in_content_type +104 -0
  984. data/vendor/rails/actionmailer/test/fixtures/raw_email_with_nested_attachment +100 -0
  985. data/vendor/rails/actionmailer/test/fixtures/raw_email_with_partially_quoted_subject +14 -0
  986. data/vendor/rails/actionmailer/test/fixtures/second_mailer/share.erb +1 -0
  987. data/vendor/rails/actionmailer/test/fixtures/templates/signed_up.erb +3 -0
  988. data/vendor/rails/actionmailer/test/fixtures/test_mailer/_subtemplate.text.plain.erb +1 -0
  989. data/vendor/rails/actionmailer/test/fixtures/test_mailer/body_ivar.erb +2 -0
  990. data/vendor/rails/actionmailer/test/fixtures/test_mailer/custom_templating_extension.text.html.haml +6 -0
  991. data/vendor/rails/actionmailer/test/fixtures/test_mailer/custom_templating_extension.text.plain.haml +6 -0
  992. data/vendor/rails/actionmailer/test/fixtures/test_mailer/implicitly_multipart_example.ignored.erb +1 -0
  993. data/vendor/rails/actionmailer/test/fixtures/test_mailer/implicitly_multipart_example.text.html.erb +10 -0
  994. data/vendor/rails/actionmailer/test/fixtures/test_mailer/implicitly_multipart_example.text.plain.erb +2 -0
  995. data/vendor/rails/actionmailer/test/fixtures/test_mailer/implicitly_multipart_example.text.yaml.erb +1 -0
  996. data/vendor/rails/actionmailer/test/fixtures/test_mailer/included_subtemplate.text.plain.erb +1 -0
  997. data/vendor/rails/actionmailer/test/fixtures/test_mailer/rxml_template.builder +2 -0
  998. data/vendor/rails/actionmailer/test/fixtures/test_mailer/rxml_template.rxml +2 -0
  999. data/vendor/rails/actionmailer/test/fixtures/test_mailer/signed_up.html.erb +3 -0
  1000. data/vendor/rails/actionmailer/test/fixtures/test_mailer/signed_up_with_url.erb +5 -0
  1001. data/vendor/rails/actionmailer/test/mail_helper_test.rb +95 -0
  1002. data/vendor/rails/actionmailer/test/mail_layout_test.rb +123 -0
  1003. data/vendor/rails/actionmailer/test/mail_render_test.rb +116 -0
  1004. data/vendor/rails/actionmailer/test/mail_service_test.rb +1145 -0
  1005. data/vendor/rails/actionmailer/test/quoting_test.rb +105 -0
  1006. data/vendor/rails/actionmailer/test/test_helper_test.rb +129 -0
  1007. data/vendor/rails/actionmailer/test/tmail_test.rb +22 -0
  1008. data/vendor/rails/actionmailer/test/url_test.rb +76 -0
  1009. data/vendor/rails/actionpack/CHANGELOG +5239 -0
  1010. data/vendor/rails/actionpack/MIT-LICENSE +21 -0
  1011. data/vendor/rails/actionpack/README +409 -0
  1012. data/vendor/rails/actionpack/RUNNING_UNIT_TESTS +24 -0
  1013. data/vendor/rails/actionpack/Rakefile +160 -0
  1014. data/vendor/rails/actionpack/install.rb +30 -0
  1015. data/vendor/rails/actionpack/lib/action_controller.rb +113 -0
  1016. data/vendor/rails/actionpack/lib/action_controller/assertions/dom_assertions.rb +55 -0
  1017. data/vendor/rails/actionpack/lib/action_controller/assertions/model_assertions.rb +21 -0
  1018. data/vendor/rails/actionpack/lib/action_controller/assertions/response_assertions.rb +169 -0
  1019. data/vendor/rails/actionpack/lib/action_controller/assertions/routing_assertions.rb +146 -0
  1020. data/vendor/rails/actionpack/lib/action_controller/assertions/selector_assertions.rb +638 -0
  1021. data/vendor/rails/actionpack/lib/action_controller/assertions/tag_assertions.rb +127 -0
  1022. data/vendor/rails/actionpack/lib/action_controller/base.rb +1423 -0
  1023. data/vendor/rails/actionpack/lib/action_controller/benchmarking.rb +107 -0
  1024. data/vendor/rails/actionpack/lib/action_controller/caching.rb +71 -0
  1025. data/vendor/rails/actionpack/lib/action_controller/caching/actions.rb +177 -0
  1026. data/vendor/rails/actionpack/lib/action_controller/caching/fragments.rb +120 -0
  1027. data/vendor/rails/actionpack/lib/action_controller/caching/pages.rb +152 -0
  1028. data/vendor/rails/actionpack/lib/action_controller/caching/sweeper.rb +45 -0
  1029. data/vendor/rails/actionpack/lib/action_controller/caching/sweeping.rb +55 -0
  1030. data/vendor/rails/actionpack/lib/action_controller/cgi_ext.rb +15 -0
  1031. data/vendor/rails/actionpack/lib/action_controller/cgi_ext/cookie.rb +112 -0
  1032. data/vendor/rails/actionpack/lib/action_controller/cgi_ext/query_extension.rb +22 -0
  1033. data/vendor/rails/actionpack/lib/action_controller/cgi_ext/stdinput.rb +24 -0
  1034. data/vendor/rails/actionpack/lib/action_controller/cgi_process.rb +77 -0
  1035. data/vendor/rails/actionpack/lib/action_controller/cookies.rb +191 -0
  1036. data/vendor/rails/actionpack/lib/action_controller/dispatcher.rb +133 -0
  1037. data/vendor/rails/actionpack/lib/action_controller/failsafe.rb +87 -0
  1038. data/vendor/rails/actionpack/lib/action_controller/filters.rb +680 -0
  1039. data/vendor/rails/actionpack/lib/action_controller/flash.rb +213 -0
  1040. data/vendor/rails/actionpack/lib/action_controller/headers.rb +33 -0
  1041. data/vendor/rails/actionpack/lib/action_controller/helpers.rb +225 -0
  1042. data/vendor/rails/actionpack/lib/action_controller/http_authentication.rb +309 -0
  1043. data/vendor/rails/actionpack/lib/action_controller/integration.rb +696 -0
  1044. data/vendor/rails/actionpack/lib/action_controller/layout.rb +286 -0
  1045. data/vendor/rails/actionpack/lib/action_controller/middleware_stack.rb +119 -0
  1046. data/vendor/rails/actionpack/lib/action_controller/middlewares.rb +14 -0
  1047. data/vendor/rails/actionpack/lib/action_controller/mime_responds.rb +193 -0
  1048. data/vendor/rails/actionpack/lib/action_controller/mime_type.rb +212 -0
  1049. data/vendor/rails/actionpack/lib/action_controller/mime_types.rb +21 -0
  1050. data/vendor/rails/actionpack/lib/action_controller/params_parser.rb +77 -0
  1051. data/vendor/rails/actionpack/lib/action_controller/performance_test.rb +15 -0
  1052. data/vendor/rails/actionpack/lib/action_controller/polymorphic_routes.rb +189 -0
  1053. data/vendor/rails/actionpack/lib/action_controller/rack_lint_patch.rb +36 -0
  1054. data/vendor/rails/actionpack/lib/action_controller/record_identifier.rb +104 -0
  1055. data/vendor/rails/actionpack/lib/action_controller/reloader.rb +54 -0
  1056. data/vendor/rails/actionpack/lib/action_controller/request.rb +493 -0
  1057. data/vendor/rails/actionpack/lib/action_controller/request_forgery_protection.rb +113 -0
  1058. data/vendor/rails/actionpack/lib/action_controller/rescue.rb +183 -0
  1059. data/vendor/rails/actionpack/lib/action_controller/resources.rb +682 -0
  1060. data/vendor/rails/actionpack/lib/action_controller/response.rb +236 -0
  1061. data/vendor/rails/actionpack/lib/action_controller/routing.rb +388 -0
  1062. data/vendor/rails/actionpack/lib/action_controller/routing/builder.rb +197 -0
  1063. data/vendor/rails/actionpack/lib/action_controller/routing/optimisations.rb +130 -0
  1064. data/vendor/rails/actionpack/lib/action_controller/routing/recognition_optimisation.rb +167 -0
  1065. data/vendor/rails/actionpack/lib/action_controller/routing/route.rb +265 -0
  1066. data/vendor/rails/actionpack/lib/action_controller/routing/route_set.rb +503 -0
  1067. data/vendor/rails/actionpack/lib/action_controller/routing/routing_ext.rb +49 -0
  1068. data/vendor/rails/actionpack/lib/action_controller/routing/segments.rb +343 -0
  1069. data/vendor/rails/actionpack/lib/action_controller/session/abstract_store.rb +187 -0
  1070. data/vendor/rails/actionpack/lib/action_controller/session/cookie_store.rb +227 -0
  1071. data/vendor/rails/actionpack/lib/action_controller/session/mem_cache_store.rb +51 -0
  1072. data/vendor/rails/actionpack/lib/action_controller/session_management.rb +54 -0
  1073. data/vendor/rails/actionpack/lib/action_controller/status_codes.rb +88 -0
  1074. data/vendor/rails/actionpack/lib/action_controller/streaming.rb +181 -0
  1075. data/vendor/rails/actionpack/lib/action_controller/string_coercion.rb +29 -0
  1076. data/vendor/rails/actionpack/lib/action_controller/templates/rescues/_request_and_response.erb +24 -0
  1077. data/vendor/rails/actionpack/lib/action_controller/templates/rescues/_trace.erb +26 -0
  1078. data/vendor/rails/actionpack/lib/action_controller/templates/rescues/diagnostics.erb +11 -0
  1079. data/vendor/rails/actionpack/lib/action_controller/templates/rescues/layout.erb +29 -0
  1080. data/vendor/rails/actionpack/lib/action_controller/templates/rescues/missing_template.erb +2 -0
  1081. data/vendor/rails/actionpack/lib/action_controller/templates/rescues/routing_error.erb +10 -0
  1082. data/vendor/rails/actionpack/lib/action_controller/templates/rescues/template_error.erb +21 -0
  1083. data/vendor/rails/actionpack/lib/action_controller/templates/rescues/unknown_action.erb +2 -0
  1084. data/vendor/rails/actionpack/lib/action_controller/test_case.rb +209 -0
  1085. data/vendor/rails/actionpack/lib/action_controller/test_process.rb +580 -0
  1086. data/vendor/rails/actionpack/lib/action_controller/translation.rb +13 -0
  1087. data/vendor/rails/actionpack/lib/action_controller/uploaded_file.rb +44 -0
  1088. data/vendor/rails/actionpack/lib/action_controller/url_rewriter.rb +219 -0
  1089. data/vendor/rails/actionpack/lib/action_controller/vendor/html-scanner.rb +16 -0
  1090. data/vendor/rails/actionpack/lib/action_controller/vendor/html-scanner/html/document.rb +68 -0
  1091. data/vendor/rails/actionpack/lib/action_controller/vendor/html-scanner/html/node.rb +537 -0
  1092. data/vendor/rails/actionpack/lib/action_controller/vendor/html-scanner/html/sanitizer.rb +173 -0
  1093. data/vendor/rails/actionpack/lib/action_controller/vendor/html-scanner/html/selector.rb +828 -0
  1094. data/vendor/rails/actionpack/lib/action_controller/vendor/html-scanner/html/tokenizer.rb +105 -0
  1095. data/vendor/rails/actionpack/lib/action_controller/vendor/html-scanner/html/version.rb +11 -0
  1096. data/vendor/rails/actionpack/lib/action_controller/verification.rb +130 -0
  1097. data/vendor/rails/actionpack/lib/action_pack.rb +24 -0
  1098. data/vendor/rails/actionpack/lib/action_pack/version.rb +9 -0
  1099. data/vendor/rails/actionpack/lib/action_view.rb +58 -0
  1100. data/vendor/rails/actionpack/lib/action_view/base.rb +362 -0
  1101. data/vendor/rails/actionpack/lib/action_view/helpers.rb +59 -0
  1102. data/vendor/rails/actionpack/lib/action_view/helpers/active_record_helper.rb +305 -0
  1103. data/vendor/rails/actionpack/lib/action_view/helpers/asset_tag_helper.rb +694 -0
  1104. data/vendor/rails/actionpack/lib/action_view/helpers/atom_feed_helper.rb +198 -0
  1105. data/vendor/rails/actionpack/lib/action_view/helpers/benchmark_helper.rb +54 -0
  1106. data/vendor/rails/actionpack/lib/action_view/helpers/cache_helper.rb +39 -0
  1107. data/vendor/rails/actionpack/lib/action_view/helpers/capture_helper.rb +136 -0
  1108. data/vendor/rails/actionpack/lib/action_view/helpers/date_helper.rb +989 -0
  1109. data/vendor/rails/actionpack/lib/action_view/helpers/debug_helper.rb +38 -0
  1110. data/vendor/rails/actionpack/lib/action_view/helpers/form_helper.rb +1111 -0
  1111. data/vendor/rails/actionpack/lib/action_view/helpers/form_options_helper.rb +599 -0
  1112. data/vendor/rails/actionpack/lib/action_view/helpers/form_tag_helper.rb +490 -0
  1113. data/vendor/rails/actionpack/lib/action_view/helpers/javascript_helper.rb +208 -0
  1114. data/vendor/rails/actionpack/lib/action_view/helpers/number_helper.rb +308 -0
  1115. data/vendor/rails/actionpack/lib/action_view/helpers/prototype_helper.rb +1305 -0
  1116. data/vendor/rails/actionpack/lib/action_view/helpers/raw_output_helper.rb +9 -0
  1117. data/vendor/rails/actionpack/lib/action_view/helpers/record_identification_helper.rb +20 -0
  1118. data/vendor/rails/actionpack/lib/action_view/helpers/record_tag_helper.rb +58 -0
  1119. data/vendor/rails/actionpack/lib/action_view/helpers/sanitize_helper.rb +251 -0
  1120. data/vendor/rails/actionpack/lib/action_view/helpers/scriptaculous_helper.rb +226 -0
  1121. data/vendor/rails/actionpack/lib/action_view/helpers/tag_helper.rb +151 -0
  1122. data/vendor/rails/actionpack/lib/action_view/helpers/text_helper.rb +587 -0
  1123. data/vendor/rails/actionpack/lib/action_view/helpers/translation_helper.rb +67 -0
  1124. data/vendor/rails/actionpack/lib/action_view/helpers/url_helper.rb +636 -0
  1125. data/vendor/rails/actionpack/lib/action_view/inline_template.rb +19 -0
  1126. data/vendor/rails/actionpack/lib/action_view/locale/en.yml +117 -0
  1127. data/vendor/rails/actionpack/lib/action_view/partials.rb +241 -0
  1128. data/vendor/rails/actionpack/lib/action_view/paths.rb +77 -0
  1129. data/vendor/rails/actionpack/lib/action_view/reloadable_template.rb +117 -0
  1130. data/vendor/rails/actionpack/lib/action_view/renderable.rb +109 -0
  1131. data/vendor/rails/actionpack/lib/action_view/renderable_partial.rb +47 -0
  1132. data/vendor/rails/actionpack/lib/action_view/template.rb +252 -0
  1133. data/vendor/rails/actionpack/lib/action_view/template_error.rb +99 -0
  1134. data/vendor/rails/actionpack/lib/action_view/template_handler.rb +34 -0
  1135. data/vendor/rails/actionpack/lib/action_view/template_handlers.rb +48 -0
  1136. data/vendor/rails/actionpack/lib/action_view/template_handlers/builder.rb +17 -0
  1137. data/vendor/rails/actionpack/lib/action_view/template_handlers/erb.rb +25 -0
  1138. data/vendor/rails/actionpack/lib/action_view/template_handlers/rjs.rb +13 -0
  1139. data/vendor/rails/actionpack/lib/action_view/test_case.rb +162 -0
  1140. data/vendor/rails/actionpack/lib/actionpack.rb +2 -0
  1141. data/vendor/rails/actionpack/test/abstract_unit.rb +61 -0
  1142. data/vendor/rails/actionpack/test/active_record_unit.rb +104 -0
  1143. data/vendor/rails/actionpack/test/activerecord/active_record_store_test.rb +174 -0
  1144. data/vendor/rails/actionpack/test/activerecord/render_partial_with_record_identification_test.rb +188 -0
  1145. data/vendor/rails/actionpack/test/adv_attr_test.rb +20 -0
  1146. data/vendor/rails/actionpack/test/controller/action_pack_assertions_test.rb +545 -0
  1147. data/vendor/rails/actionpack/test/controller/addresses_render_test.rb +37 -0
  1148. data/vendor/rails/actionpack/test/controller/assert_select_test.rb +735 -0
  1149. data/vendor/rails/actionpack/test/controller/base_test.rb +217 -0
  1150. data/vendor/rails/actionpack/test/controller/benchmark_test.rb +32 -0
  1151. data/vendor/rails/actionpack/test/controller/caching_test.rb +743 -0
  1152. data/vendor/rails/actionpack/test/controller/capture_test.rb +66 -0
  1153. data/vendor/rails/actionpack/test/controller/content_type_test.rb +168 -0
  1154. data/vendor/rails/actionpack/test/controller/controller_fixtures/app/controllers/admin/user_controller.rb +0 -0
  1155. data/vendor/rails/actionpack/test/controller/controller_fixtures/app/controllers/user_controller.rb +0 -0
  1156. data/vendor/rails/actionpack/test/controller/controller_fixtures/vendor/plugins/bad_plugin/lib/plugin_controller.rb +0 -0
  1157. data/vendor/rails/actionpack/test/controller/cookie_test.rb +170 -0
  1158. data/vendor/rails/actionpack/test/controller/deprecation/deprecated_base_methods_test.rb +32 -0
  1159. data/vendor/rails/actionpack/test/controller/dispatcher_test.rb +144 -0
  1160. data/vendor/rails/actionpack/test/controller/dom_assertions_test.rb +53 -0
  1161. data/vendor/rails/actionpack/test/controller/failsafe_test.rb +60 -0
  1162. data/vendor/rails/actionpack/test/controller/fake_controllers.rb +33 -0
  1163. data/vendor/rails/actionpack/test/controller/fake_models.rb +19 -0
  1164. data/vendor/rails/actionpack/test/controller/filter_params_test.rb +52 -0
  1165. data/vendor/rails/actionpack/test/controller/filters_test.rb +885 -0
  1166. data/vendor/rails/actionpack/test/controller/flash_test.rb +174 -0
  1167. data/vendor/rails/actionpack/test/controller/header_test.rb +14 -0
  1168. data/vendor/rails/actionpack/test/controller/helper_test.rb +224 -0
  1169. data/vendor/rails/actionpack/test/controller/html-scanner/cdata_node_test.rb +15 -0
  1170. data/vendor/rails/actionpack/test/controller/html-scanner/document_test.rb +148 -0
  1171. data/vendor/rails/actionpack/test/controller/html-scanner/node_test.rb +89 -0
  1172. data/vendor/rails/actionpack/test/controller/html-scanner/sanitizer_test.rb +274 -0
  1173. data/vendor/rails/actionpack/test/controller/html-scanner/tag_node_test.rb +238 -0
  1174. data/vendor/rails/actionpack/test/controller/html-scanner/text_node_test.rb +50 -0
  1175. data/vendor/rails/actionpack/test/controller/html-scanner/tokenizer_test.rb +131 -0
  1176. data/vendor/rails/actionpack/test/controller/http_basic_authentication_test.rb +113 -0
  1177. data/vendor/rails/actionpack/test/controller/http_digest_authentication_test.rb +254 -0
  1178. data/vendor/rails/actionpack/test/controller/integration_test.rb +482 -0
  1179. data/vendor/rails/actionpack/test/controller/layout_test.rb +215 -0
  1180. data/vendor/rails/actionpack/test/controller/localized_templates_test.rb +24 -0
  1181. data/vendor/rails/actionpack/test/controller/logging_test.rb +46 -0
  1182. data/vendor/rails/actionpack/test/controller/middleware_stack_test.rb +90 -0
  1183. data/vendor/rails/actionpack/test/controller/mime_responds_test.rb +536 -0
  1184. data/vendor/rails/actionpack/test/controller/mime_type_test.rb +93 -0
  1185. data/vendor/rails/actionpack/test/controller/output_escaping_test.rb +19 -0
  1186. data/vendor/rails/actionpack/test/controller/polymorphic_routes_test.rb +297 -0
  1187. data/vendor/rails/actionpack/test/controller/rack_test.rb +308 -0
  1188. data/vendor/rails/actionpack/test/controller/record_identifier_test.rb +139 -0
  1189. data/vendor/rails/actionpack/test/controller/redirect_test.rb +285 -0
  1190. data/vendor/rails/actionpack/test/controller/reloader_test.rb +124 -0
  1191. data/vendor/rails/actionpack/test/controller/render_test.rb +1771 -0
  1192. data/vendor/rails/actionpack/test/controller/request/json_params_parsing_test.rb +65 -0
  1193. data/vendor/rails/actionpack/test/controller/request/multipart_params_parsing_test.rb +162 -0
  1194. data/vendor/rails/actionpack/test/controller/request/query_string_parsing_test.rb +120 -0
  1195. data/vendor/rails/actionpack/test/controller/request/test_request_test.rb +35 -0
  1196. data/vendor/rails/actionpack/test/controller/request/url_encoded_params_parsing_test.rb +146 -0
  1197. data/vendor/rails/actionpack/test/controller/request/xml_params_parsing_test.rb +103 -0
  1198. data/vendor/rails/actionpack/test/controller/request_forgery_protection_test.rb +265 -0
  1199. data/vendor/rails/actionpack/test/controller/request_test.rb +395 -0
  1200. data/vendor/rails/actionpack/test/controller/rescue_test.rb +542 -0
  1201. data/vendor/rails/actionpack/test/controller/resources_test.rb +1393 -0
  1202. data/vendor/rails/actionpack/test/controller/routing_test.rb +2592 -0
  1203. data/vendor/rails/actionpack/test/controller/selector_test.rb +628 -0
  1204. data/vendor/rails/actionpack/test/controller/send_file_test.rb +171 -0
  1205. data/vendor/rails/actionpack/test/controller/session/cookie_store_test.rb +216 -0
  1206. data/vendor/rails/actionpack/test/controller/session/mem_cache_store_test.rb +127 -0
  1207. data/vendor/rails/actionpack/test/controller/session/test_session_test.rb +58 -0
  1208. data/vendor/rails/actionpack/test/controller/test_test.rb +700 -0
  1209. data/vendor/rails/actionpack/test/controller/translation_test.rb +26 -0
  1210. data/vendor/rails/actionpack/test/controller/url_rewriter_test.rb +389 -0
  1211. data/vendor/rails/actionpack/test/controller/verification_test.rb +270 -0
  1212. data/vendor/rails/actionpack/test/controller/view_paths_test.rb +141 -0
  1213. data/vendor/rails/actionpack/test/controller/webservice_test.rb +260 -0
  1214. data/vendor/rails/actionpack/test/fixtures/_top_level_partial.html.erb +1 -0
  1215. data/vendor/rails/actionpack/test/fixtures/_top_level_partial_only.erb +1 -0
  1216. data/vendor/rails/actionpack/test/fixtures/addresses/list.erb +1 -0
  1217. data/vendor/rails/actionpack/test/fixtures/alternate_helpers/foo_helper.rb +3 -0
  1218. data/vendor/rails/actionpack/test/fixtures/bad_customers/_bad_customer.html.erb +1 -0
  1219. data/vendor/rails/actionpack/test/fixtures/companies.yml +24 -0
  1220. data/vendor/rails/actionpack/test/fixtures/company.rb +10 -0
  1221. data/vendor/rails/actionpack/test/fixtures/content_type/render_default_content_types_for_respond_to.rhtml +1 -0
  1222. data/vendor/rails/actionpack/test/fixtures/content_type/render_default_for_rhtml.rhtml +1 -0
  1223. data/vendor/rails/actionpack/test/fixtures/content_type/render_default_for_rjs.rjs +1 -0
  1224. data/vendor/rails/actionpack/test/fixtures/content_type/render_default_for_rxml.rxml +1 -0
  1225. data/vendor/rails/actionpack/test/fixtures/customers/_customer.html.erb +1 -0
  1226. data/vendor/rails/actionpack/test/fixtures/db_definitions/sqlite.sql +49 -0
  1227. data/vendor/rails/actionpack/test/fixtures/developer.rb +9 -0
  1228. data/vendor/rails/actionpack/test/fixtures/developers.yml +21 -0
  1229. data/vendor/rails/actionpack/test/fixtures/developers/_developer.erb +1 -0
  1230. data/vendor/rails/actionpack/test/fixtures/developers_projects.yml +13 -0
  1231. data/vendor/rails/actionpack/test/fixtures/failsafe/500.html +1 -0
  1232. data/vendor/rails/actionpack/test/fixtures/fun/games/_game.erb +1 -0
  1233. data/vendor/rails/actionpack/test/fixtures/fun/games/hello_world.erb +1 -0
  1234. data/vendor/rails/actionpack/test/fixtures/fun/serious/games/_game.erb +1 -0
  1235. data/vendor/rails/actionpack/test/fixtures/functional_caching/_partial.erb +3 -0
  1236. data/vendor/rails/actionpack/test/fixtures/functional_caching/formatted_fragment_cached.html.erb +3 -0
  1237. data/vendor/rails/actionpack/test/fixtures/functional_caching/formatted_fragment_cached.js.rjs +6 -0
  1238. data/vendor/rails/actionpack/test/fixtures/functional_caching/formatted_fragment_cached.xml.builder +5 -0
  1239. data/vendor/rails/actionpack/test/fixtures/functional_caching/fragment_cached.html.erb +2 -0
  1240. data/vendor/rails/actionpack/test/fixtures/functional_caching/html_fragment_cached_with_partial.html.erb +1 -0
  1241. data/vendor/rails/actionpack/test/fixtures/functional_caching/inline_fragment_cached.html.erb +2 -0
  1242. data/vendor/rails/actionpack/test/fixtures/functional_caching/js_fragment_cached_with_partial.js.rjs +1 -0
  1243. data/vendor/rails/actionpack/test/fixtures/good_customers/_good_customer.html.erb +1 -0
  1244. data/vendor/rails/actionpack/test/fixtures/helpers/abc_helper.rb +5 -0
  1245. data/vendor/rails/actionpack/test/fixtures/helpers/fun/games_helper.rb +3 -0
  1246. data/vendor/rails/actionpack/test/fixtures/helpers/fun/pdf_helper.rb +3 -0
  1247. data/vendor/rails/actionpack/test/fixtures/layout_tests/abs_path_layout.rhtml +1 -0
  1248. data/vendor/rails/actionpack/test/fixtures/layout_tests/alt/hello.rhtml +1 -0
  1249. data/vendor/rails/actionpack/test/fixtures/layout_tests/alt/layouts/alt.rhtml +0 -0
  1250. data/vendor/rails/actionpack/test/fixtures/layout_tests/layouts/controller_name_space/nested.rhtml +1 -0
  1251. data/vendor/rails/actionpack/test/fixtures/layout_tests/layouts/item.rhtml +1 -0
  1252. data/vendor/rails/actionpack/test/fixtures/layout_tests/layouts/layout_test.rhtml +1 -0
  1253. data/vendor/rails/actionpack/test/fixtures/layout_tests/layouts/multiple_extensions.html.erb +1 -0
  1254. data/vendor/rails/actionpack/test/fixtures/layout_tests/layouts/third_party_template_library.mab +1 -0
  1255. data/vendor/rails/actionpack/test/fixtures/layout_tests/views/hello.rhtml +1 -0
  1256. data/vendor/rails/actionpack/test/fixtures/layouts/_column.html.erb +2 -0
  1257. data/vendor/rails/actionpack/test/fixtures/layouts/block_with_layout.erb +3 -0
  1258. data/vendor/rails/actionpack/test/fixtures/layouts/builder.builder +3 -0
  1259. data/vendor/rails/actionpack/test/fixtures/layouts/default_html.html.erb +1 -0
  1260. data/vendor/rails/actionpack/test/fixtures/layouts/partial_with_layout.erb +3 -0
  1261. data/vendor/rails/actionpack/test/fixtures/layouts/standard.erb +1 -0
  1262. data/vendor/rails/actionpack/test/fixtures/layouts/talk_from_action.erb +2 -0
  1263. data/vendor/rails/actionpack/test/fixtures/layouts/xhr.html.erb +2 -0
  1264. data/vendor/rails/actionpack/test/fixtures/layouts/yield.erb +2 -0
  1265. data/vendor/rails/actionpack/test/fixtures/localized/hello_world.de.html +1 -0
  1266. data/vendor/rails/actionpack/test/fixtures/localized/hello_world.en.html +1 -0
  1267. data/vendor/rails/actionpack/test/fixtures/mascot.rb +3 -0
  1268. data/vendor/rails/actionpack/test/fixtures/mascots.yml +4 -0
  1269. data/vendor/rails/actionpack/test/fixtures/mascots/_mascot.html.erb +1 -0
  1270. data/vendor/rails/actionpack/test/fixtures/multipart/binary_file +0 -0
  1271. data/vendor/rails/actionpack/test/fixtures/multipart/boundary_problem_file +10 -0
  1272. data/vendor/rails/actionpack/test/fixtures/multipart/bracketed_param +5 -0
  1273. data/vendor/rails/actionpack/test/fixtures/multipart/empty +10 -0
  1274. data/vendor/rails/actionpack/test/fixtures/multipart/hello.txt +1 -0
  1275. data/vendor/rails/actionpack/test/fixtures/multipart/large_text_file +10 -0
  1276. data/vendor/rails/actionpack/test/fixtures/multipart/mixed_files +0 -0
  1277. data/vendor/rails/actionpack/test/fixtures/multipart/mona_lisa.jpg +0 -0
  1278. data/vendor/rails/actionpack/test/fixtures/multipart/none +9 -0
  1279. data/vendor/rails/actionpack/test/fixtures/multipart/single_parameter +5 -0
  1280. data/vendor/rails/actionpack/test/fixtures/multipart/text_file +10 -0
  1281. data/vendor/rails/actionpack/test/fixtures/override/test/hello_world.erb +1 -0
  1282. data/vendor/rails/actionpack/test/fixtures/override2/layouts/test/sub.erb +1 -0
  1283. data/vendor/rails/actionpack/test/fixtures/post_test/layouts/post.html.erb +1 -0
  1284. data/vendor/rails/actionpack/test/fixtures/post_test/layouts/super_post.iphone.erb +1 -0
  1285. data/vendor/rails/actionpack/test/fixtures/post_test/post/index.html.erb +1 -0
  1286. data/vendor/rails/actionpack/test/fixtures/post_test/post/index.iphone.erb +1 -0
  1287. data/vendor/rails/actionpack/test/fixtures/post_test/super_post/index.html.erb +1 -0
  1288. data/vendor/rails/actionpack/test/fixtures/post_test/super_post/index.iphone.erb +1 -0
  1289. data/vendor/rails/actionpack/test/fixtures/project.rb +3 -0
  1290. data/vendor/rails/actionpack/test/fixtures/projects.yml +7 -0
  1291. data/vendor/rails/actionpack/test/fixtures/projects/_project.erb +1 -0
  1292. data/vendor/rails/actionpack/test/fixtures/public/404.html +1 -0
  1293. data/vendor/rails/actionpack/test/fixtures/public/500.da.html +1 -0
  1294. data/vendor/rails/actionpack/test/fixtures/public/500.html +1 -0
  1295. data/vendor/rails/actionpack/test/fixtures/public/absolute/test.css +23 -0
  1296. data/vendor/rails/actionpack/test/fixtures/public/absolute/test.js +63 -0
  1297. data/vendor/rails/actionpack/test/fixtures/public/images/rails.png +0 -0
  1298. data/vendor/rails/actionpack/test/fixtures/public/javascripts/application.js +1 -0
  1299. data/vendor/rails/actionpack/test/fixtures/public/javascripts/bank.js +1 -0
  1300. data/vendor/rails/actionpack/test/fixtures/public/javascripts/controls.js +1 -0
  1301. data/vendor/rails/actionpack/test/fixtures/public/javascripts/dragdrop.js +1 -0
  1302. data/vendor/rails/actionpack/test/fixtures/public/javascripts/effects.js +1 -0
  1303. data/vendor/rails/actionpack/test/fixtures/public/javascripts/prototype.js +1 -0
  1304. data/vendor/rails/actionpack/test/fixtures/public/javascripts/robber.js +1 -0
  1305. data/vendor/rails/actionpack/test/fixtures/public/javascripts/subdir/subdir.js +1 -0
  1306. data/vendor/rails/actionpack/test/fixtures/public/javascripts/version.1.0.js +1 -0
  1307. data/vendor/rails/actionpack/test/fixtures/public/stylesheets/bank.css +1 -0
  1308. data/vendor/rails/actionpack/test/fixtures/public/stylesheets/robber.css +1 -0
  1309. data/vendor/rails/actionpack/test/fixtures/public/stylesheets/subdir/subdir.css +1 -0
  1310. data/vendor/rails/actionpack/test/fixtures/public/stylesheets/version.1.0.css +1 -0
  1311. data/vendor/rails/actionpack/test/fixtures/quiz/questions/_question.html.erb +1 -0
  1312. data/vendor/rails/actionpack/test/fixtures/replies.yml +15 -0
  1313. data/vendor/rails/actionpack/test/fixtures/replies/_reply.erb +1 -0
  1314. data/vendor/rails/actionpack/test/fixtures/reply.rb +7 -0
  1315. data/vendor/rails/actionpack/test/fixtures/respond_to/all_types_with_layout.html.erb +1 -0
  1316. data/vendor/rails/actionpack/test/fixtures/respond_to/all_types_with_layout.js.rjs +1 -0
  1317. data/vendor/rails/actionpack/test/fixtures/respond_to/custom_constant_handling_without_block.mobile.erb +1 -0
  1318. data/vendor/rails/actionpack/test/fixtures/respond_to/iphone_with_html_response_type.html.erb +1 -0
  1319. data/vendor/rails/actionpack/test/fixtures/respond_to/iphone_with_html_response_type.iphone.erb +1 -0
  1320. data/vendor/rails/actionpack/test/fixtures/respond_to/layouts/missing.html.erb +1 -0
  1321. data/vendor/rails/actionpack/test/fixtures/respond_to/layouts/standard.html.erb +1 -0
  1322. data/vendor/rails/actionpack/test/fixtures/respond_to/layouts/standard.iphone.erb +1 -0
  1323. data/vendor/rails/actionpack/test/fixtures/respond_to/using_defaults.html.erb +1 -0
  1324. data/vendor/rails/actionpack/test/fixtures/respond_to/using_defaults.js.rjs +1 -0
  1325. data/vendor/rails/actionpack/test/fixtures/respond_to/using_defaults.xml.builder +1 -0
  1326. data/vendor/rails/actionpack/test/fixtures/respond_to/using_defaults_with_type_list.html.erb +1 -0
  1327. data/vendor/rails/actionpack/test/fixtures/respond_to/using_defaults_with_type_list.js.rjs +1 -0
  1328. data/vendor/rails/actionpack/test/fixtures/respond_to/using_defaults_with_type_list.xml.builder +1 -0
  1329. data/vendor/rails/actionpack/test/fixtures/scope/test/modgreet.erb +1 -0
  1330. data/vendor/rails/actionpack/test/fixtures/shared.html.erb +1 -0
  1331. data/vendor/rails/actionpack/test/fixtures/symlink_parent/symlinked_layout.erb +5 -0
  1332. data/vendor/rails/actionpack/test/fixtures/test/_counter.html.erb +1 -0
  1333. data/vendor/rails/actionpack/test/fixtures/test/_customer.erb +1 -0
  1334. data/vendor/rails/actionpack/test/fixtures/test/_customer_counter.erb +1 -0
  1335. data/vendor/rails/actionpack/test/fixtures/test/_customer_counter_with_as.erb +1 -0
  1336. data/vendor/rails/actionpack/test/fixtures/test/_customer_greeting.erb +1 -0
  1337. data/vendor/rails/actionpack/test/fixtures/test/_customer_with_var.erb +1 -0
  1338. data/vendor/rails/actionpack/test/fixtures/test/_form.erb +1 -0
  1339. data/vendor/rails/actionpack/test/fixtures/test/_from_helper.erb +1 -0
  1340. data/vendor/rails/actionpack/test/fixtures/test/_hash_greeting.erb +1 -0
  1341. data/vendor/rails/actionpack/test/fixtures/test/_hash_object.erb +2 -0
  1342. data/vendor/rails/actionpack/test/fixtures/test/_hello.builder +1 -0
  1343. data/vendor/rails/actionpack/test/fixtures/test/_labelling_form.erb +1 -0
  1344. data/vendor/rails/actionpack/test/fixtures/test/_layout_for_block_with_args.html.erb +3 -0
  1345. data/vendor/rails/actionpack/test/fixtures/test/_layout_for_partial.html.erb +3 -0
  1346. data/vendor/rails/actionpack/test/fixtures/test/_local_inspector.html.erb +1 -0
  1347. data/vendor/rails/actionpack/test/fixtures/test/_one.html.erb +1 -0
  1348. data/vendor/rails/actionpack/test/fixtures/test/_partial.erb +1 -0
  1349. data/vendor/rails/actionpack/test/fixtures/test/_partial.html.erb +1 -0
  1350. data/vendor/rails/actionpack/test/fixtures/test/_partial.js.erb +1 -0
  1351. data/vendor/rails/actionpack/test/fixtures/test/_partial_for_use_in_layout.html.erb +1 -0
  1352. data/vendor/rails/actionpack/test/fixtures/test/_partial_only.erb +1 -0
  1353. data/vendor/rails/actionpack/test/fixtures/test/_partial_with_only_html_version.html.erb +1 -0
  1354. data/vendor/rails/actionpack/test/fixtures/test/_person.erb +2 -0
  1355. data/vendor/rails/actionpack/test/fixtures/test/_raise.html.erb +1 -0
  1356. data/vendor/rails/actionpack/test/fixtures/test/_two.html.erb +1 -0
  1357. data/vendor/rails/actionpack/test/fixtures/test/_utf8_partial.html.erb +1 -0
  1358. data/vendor/rails/actionpack/test/fixtures/test/_utf8_partial_magic.html.erb +2 -0
  1359. data/vendor/rails/actionpack/test/fixtures/test/action_talk_to_layout.erb +2 -0
  1360. data/vendor/rails/actionpack/test/fixtures/test/array_translation.erb +1 -0
  1361. data/vendor/rails/actionpack/test/fixtures/test/calling_partial_with_layout.html.erb +1 -0
  1362. data/vendor/rails/actionpack/test/fixtures/test/capturing.erb +4 -0
  1363. data/vendor/rails/actionpack/test/fixtures/test/content_for.erb +2 -0
  1364. data/vendor/rails/actionpack/test/fixtures/test/content_for_concatenated.erb +3 -0
  1365. data/vendor/rails/actionpack/test/fixtures/test/content_for_with_parameter.erb +2 -0
  1366. data/vendor/rails/actionpack/test/fixtures/test/delete_with_js.rjs +2 -0
  1367. data/vendor/rails/actionpack/test/fixtures/test/dont_pick_me +1 -0
  1368. data/vendor/rails/actionpack/test/fixtures/test/dot.directory/render_file_with_ivar.erb +1 -0
  1369. data/vendor/rails/actionpack/test/fixtures/test/enum_rjs_test.rjs +6 -0
  1370. data/vendor/rails/actionpack/test/fixtures/test/formatted_html_erb.html.erb +1 -0
  1371. data/vendor/rails/actionpack/test/fixtures/test/formatted_xml_erb.builder +1 -0
  1372. data/vendor/rails/actionpack/test/fixtures/test/formatted_xml_erb.html.erb +1 -0
  1373. data/vendor/rails/actionpack/test/fixtures/test/formatted_xml_erb.xml.erb +1 -0
  1374. data/vendor/rails/actionpack/test/fixtures/test/greeting.erb +1 -0
  1375. data/vendor/rails/actionpack/test/fixtures/test/greeting.js.rjs +1 -0
  1376. data/vendor/rails/actionpack/test/fixtures/test/hello.builder +4 -0
  1377. data/vendor/rails/actionpack/test/fixtures/test/hello_world.da.html.erb +1 -0
  1378. data/vendor/rails/actionpack/test/fixtures/test/hello_world.erb +1 -0
  1379. data/vendor/rails/actionpack/test/fixtures/test/hello_world.pt-BR.html.erb +1 -0
  1380. data/vendor/rails/actionpack/test/fixtures/test/hello_world_container.builder +3 -0
  1381. data/vendor/rails/actionpack/test/fixtures/test/hello_world_from_rxml.builder +4 -0
  1382. data/vendor/rails/actionpack/test/fixtures/test/hello_world_with_layout_false.erb +1 -0
  1383. data/vendor/rails/actionpack/test/fixtures/test/hello_xml_world.builder +11 -0
  1384. data/vendor/rails/actionpack/test/fixtures/test/hyphen-ated.erb +1 -0
  1385. data/vendor/rails/actionpack/test/fixtures/test/implicit_content_type.atom.builder +2 -0
  1386. data/vendor/rails/actionpack/test/fixtures/test/list.erb +1 -0
  1387. data/vendor/rails/actionpack/test/fixtures/test/nested_layout.erb +3 -0
  1388. data/vendor/rails/actionpack/test/fixtures/test/non_erb_block_content_for.builder +4 -0
  1389. data/vendor/rails/actionpack/test/fixtures/test/potential_conflicts.erb +4 -0
  1390. data/vendor/rails/actionpack/test/fixtures/test/render_explicit_html_template.js.rjs +1 -0
  1391. data/vendor/rails/actionpack/test/fixtures/test/render_file_from_template.html.erb +1 -0
  1392. data/vendor/rails/actionpack/test/fixtures/test/render_file_with_ivar.erb +1 -0
  1393. data/vendor/rails/actionpack/test/fixtures/test/render_file_with_locals.erb +1 -0
  1394. data/vendor/rails/actionpack/test/fixtures/test/render_implicit_html_template.js.rjs +1 -0
  1395. data/vendor/rails/actionpack/test/fixtures/test/render_implicit_html_template_from_xhr_request.da.html.erb +1 -0
  1396. data/vendor/rails/actionpack/test/fixtures/test/render_implicit_html_template_from_xhr_request.html.erb +1 -0
  1397. data/vendor/rails/actionpack/test/fixtures/test/render_implicit_js_template_without_layout.js.erb +1 -0
  1398. data/vendor/rails/actionpack/test/fixtures/test/render_to_string_test.erb +1 -0
  1399. data/vendor/rails/actionpack/test/fixtures/test/scoped_array_translation.erb +1 -0
  1400. data/vendor/rails/actionpack/test/fixtures/test/sub_template_raise.html.erb +1 -0
  1401. data/vendor/rails/actionpack/test/fixtures/test/template.erb +1 -0
  1402. data/vendor/rails/actionpack/test/fixtures/test/translation.erb +1 -0
  1403. data/vendor/rails/actionpack/test/fixtures/test/update_element_with_capture.erb +9 -0
  1404. data/vendor/rails/actionpack/test/fixtures/test/using_layout_around_block.html.erb +1 -0
  1405. data/vendor/rails/actionpack/test/fixtures/test/using_layout_around_block_with_args.html.erb +1 -0
  1406. data/vendor/rails/actionpack/test/fixtures/test/utf8.html.erb +4 -0
  1407. data/vendor/rails/actionpack/test/fixtures/test/utf8_magic.html.erb +5 -0
  1408. data/vendor/rails/actionpack/test/fixtures/test/utf8_magic_with_bare_partial.html.erb +5 -0
  1409. data/vendor/rails/actionpack/test/fixtures/topic.rb +3 -0
  1410. data/vendor/rails/actionpack/test/fixtures/topics.yml +22 -0
  1411. data/vendor/rails/actionpack/test/fixtures/topics/_topic.html.erb +1 -0
  1412. data/vendor/rails/actionpack/test/template/active_record_helper_i18n_test.rb +51 -0
  1413. data/vendor/rails/actionpack/test/template/active_record_helper_test.rb +302 -0
  1414. data/vendor/rails/actionpack/test/template/asset_tag_helper_test.rb +770 -0
  1415. data/vendor/rails/actionpack/test/template/atom_feed_helper_test.rb +315 -0
  1416. data/vendor/rails/actionpack/test/template/benchmark_helper_test.rb +86 -0
  1417. data/vendor/rails/actionpack/test/template/compiled_templates_test.rb +204 -0
  1418. data/vendor/rails/actionpack/test/template/date_helper_i18n_test.rb +121 -0
  1419. data/vendor/rails/actionpack/test/template/date_helper_test.rb +2603 -0
  1420. data/vendor/rails/actionpack/test/template/erb_util_test.rb +36 -0
  1421. data/vendor/rails/actionpack/test/template/form_helper_test.rb +1447 -0
  1422. data/vendor/rails/actionpack/test/template/form_options_helper_i18n_test.rb +27 -0
  1423. data/vendor/rails/actionpack/test/template/form_options_helper_test.rb +807 -0
  1424. data/vendor/rails/actionpack/test/template/form_tag_helper_test.rb +356 -0
  1425. data/vendor/rails/actionpack/test/template/javascript_helper_test.rb +106 -0
  1426. data/vendor/rails/actionpack/test/template/number_helper_i18n_test.rb +69 -0
  1427. data/vendor/rails/actionpack/test/template/number_helper_test.rb +132 -0
  1428. data/vendor/rails/actionpack/test/template/prototype_helper_test.rb +639 -0
  1429. data/vendor/rails/actionpack/test/template/raw_output_helper_test.rb +21 -0
  1430. data/vendor/rails/actionpack/test/template/record_tag_helper_test.rb +58 -0
  1431. data/vendor/rails/actionpack/test/template/render_test.rb +329 -0
  1432. data/vendor/rails/actionpack/test/template/sanitize_helper_test.rb +57 -0
  1433. data/vendor/rails/actionpack/test/template/scriptaculous_helper_test.rb +90 -0
  1434. data/vendor/rails/actionpack/test/template/tag_helper_test.rb +98 -0
  1435. data/vendor/rails/actionpack/test/template/template_test.rb +32 -0
  1436. data/vendor/rails/actionpack/test/template/test_test.rb +54 -0
  1437. data/vendor/rails/actionpack/test/template/text_helper_test.rb +568 -0
  1438. data/vendor/rails/actionpack/test/template/translation_helper_test.rb +95 -0
  1439. data/vendor/rails/actionpack/test/template/url_helper_test.rb +641 -0
  1440. data/vendor/rails/actionpack/test/testing_sandbox.rb +15 -0
  1441. data/vendor/rails/actionpack/test/view/test_case_test.rb +176 -0
  1442. data/vendor/rails/activerecord/CHANGELOG +5901 -0
  1443. data/vendor/rails/activerecord/README +351 -0
  1444. data/vendor/rails/activerecord/RUNNING_UNIT_TESTS +36 -0
  1445. data/vendor/rails/activerecord/Rakefile +270 -0
  1446. data/vendor/rails/activerecord/examples/associations.png +0 -0
  1447. data/vendor/rails/activerecord/examples/performance.rb +162 -0
  1448. data/vendor/rails/activerecord/examples/performance.sql +85 -0
  1449. data/vendor/rails/activerecord/install.rb +30 -0
  1450. data/vendor/rails/activerecord/lib/active_record.rb +83 -0
  1451. data/vendor/rails/activerecord/lib/active_record/aggregations.rb +261 -0
  1452. data/vendor/rails/activerecord/lib/active_record/association_preload.rb +396 -0
  1453. data/vendor/rails/activerecord/lib/active_record/associations.rb +2251 -0
  1454. data/vendor/rails/activerecord/lib/active_record/associations/association_collection.rb +479 -0
  1455. data/vendor/rails/activerecord/lib/active_record/associations/association_proxy.rb +288 -0
  1456. data/vendor/rails/activerecord/lib/active_record/associations/belongs_to_association.rb +86 -0
  1457. data/vendor/rails/activerecord/lib/active_record/associations/belongs_to_polymorphic_association.rb +77 -0
  1458. data/vendor/rails/activerecord/lib/active_record/associations/has_and_belongs_to_many_association.rb +143 -0
  1459. data/vendor/rails/activerecord/lib/active_record/associations/has_many_association.rb +127 -0
  1460. data/vendor/rails/activerecord/lib/active_record/associations/has_many_through_association.rb +266 -0
  1461. data/vendor/rails/activerecord/lib/active_record/associations/has_one_association.rb +142 -0
  1462. data/vendor/rails/activerecord/lib/active_record/associations/has_one_through_association.rb +37 -0
  1463. data/vendor/rails/activerecord/lib/active_record/attribute_methods.rb +392 -0
  1464. data/vendor/rails/activerecord/lib/active_record/autosave_association.rb +395 -0
  1465. data/vendor/rails/activerecord/lib/active_record/base.rb +3206 -0
  1466. data/vendor/rails/activerecord/lib/active_record/batches.rb +85 -0
  1467. data/vendor/rails/activerecord/lib/active_record/calculations.rb +314 -0
  1468. data/vendor/rails/activerecord/lib/active_record/callbacks.rb +360 -0
  1469. data/vendor/rails/activerecord/lib/active_record/connection_adapters/abstract/connection_pool.rb +371 -0
  1470. data/vendor/rails/activerecord/lib/active_record/connection_adapters/abstract/connection_specification.rb +139 -0
  1471. data/vendor/rails/activerecord/lib/active_record/connection_adapters/abstract/database_limits.rb +57 -0
  1472. data/vendor/rails/activerecord/lib/active_record/connection_adapters/abstract/database_statements.rb +289 -0
  1473. data/vendor/rails/activerecord/lib/active_record/connection_adapters/abstract/query_cache.rb +94 -0
  1474. data/vendor/rails/activerecord/lib/active_record/connection_adapters/abstract/quoting.rb +65 -0
  1475. data/vendor/rails/activerecord/lib/active_record/connection_adapters/abstract/schema_definitions.rb +722 -0
  1476. data/vendor/rails/activerecord/lib/active_record/connection_adapters/abstract/schema_statements.rb +488 -0
  1477. data/vendor/rails/activerecord/lib/active_record/connection_adapters/abstract_adapter.rb +243 -0
  1478. data/vendor/rails/activerecord/lib/active_record/connection_adapters/mysql_adapter.rb +660 -0
  1479. data/vendor/rails/activerecord/lib/active_record/connection_adapters/postgresql_adapter.rb +1078 -0
  1480. data/vendor/rails/activerecord/lib/active_record/connection_adapters/sqlite3_adapter.rb +34 -0
  1481. data/vendor/rails/activerecord/lib/active_record/connection_adapters/sqlite_adapter.rb +453 -0
  1482. data/vendor/rails/activerecord/lib/active_record/dirty.rb +183 -0
  1483. data/vendor/rails/activerecord/lib/active_record/dynamic_finder_match.rb +41 -0
  1484. data/vendor/rails/activerecord/lib/active_record/dynamic_scope_match.rb +25 -0
  1485. data/vendor/rails/activerecord/lib/active_record/fixtures.rb +997 -0
  1486. data/vendor/rails/activerecord/lib/active_record/locale/en.yml +58 -0
  1487. data/vendor/rails/activerecord/lib/active_record/locking/optimistic.rb +181 -0
  1488. data/vendor/rails/activerecord/lib/active_record/locking/pessimistic.rb +55 -0
  1489. data/vendor/rails/activerecord/lib/active_record/migration.rb +571 -0
  1490. data/vendor/rails/activerecord/lib/active_record/named_scope.rb +192 -0
  1491. data/vendor/rails/activerecord/lib/active_record/nested_attributes.rb +404 -0
  1492. data/vendor/rails/activerecord/lib/active_record/observer.rb +197 -0
  1493. data/vendor/rails/activerecord/lib/active_record/query_cache.rb +33 -0
  1494. data/vendor/rails/activerecord/lib/active_record/reflection.rb +385 -0
  1495. data/vendor/rails/activerecord/lib/active_record/schema.rb +55 -0
  1496. data/vendor/rails/activerecord/lib/active_record/schema_dumper.rb +185 -0
  1497. data/vendor/rails/activerecord/lib/active_record/serialization.rb +101 -0
  1498. data/vendor/rails/activerecord/lib/active_record/serializers/json_serializer.rb +91 -0
  1499. data/vendor/rails/activerecord/lib/active_record/serializers/xml_serializer.rb +357 -0
  1500. data/vendor/rails/activerecord/lib/active_record/session_store.rb +326 -0
  1501. data/vendor/rails/activerecord/lib/active_record/test_case.rb +66 -0
  1502. data/vendor/rails/activerecord/lib/active_record/timestamp.rb +71 -0
  1503. data/vendor/rails/activerecord/lib/active_record/transactions.rb +235 -0
  1504. data/vendor/rails/activerecord/lib/active_record/validations.rb +1147 -0
  1505. data/vendor/rails/activerecord/lib/active_record/version.rb +9 -0
  1506. data/vendor/rails/activerecord/lib/activerecord.rb +2 -0
  1507. data/vendor/rails/activerecord/test/assets/example.log +1 -0
  1508. data/vendor/rails/activerecord/test/assets/flowers.jpg +0 -0
  1509. data/vendor/rails/activerecord/test/cases/aaa_create_tables_test.rb +24 -0
  1510. data/vendor/rails/activerecord/test/cases/active_schema_test_mysql.rb +122 -0
  1511. data/vendor/rails/activerecord/test/cases/active_schema_test_postgresql.rb +24 -0
  1512. data/vendor/rails/activerecord/test/cases/adapter_test.rb +145 -0
  1513. data/vendor/rails/activerecord/test/cases/aggregations_test.rb +167 -0
  1514. data/vendor/rails/activerecord/test/cases/ar_schema_test.rb +32 -0
  1515. data/vendor/rails/activerecord/test/cases/associations/belongs_to_associations_test.rb +438 -0
  1516. data/vendor/rails/activerecord/test/cases/associations/callbacks_test.rb +161 -0
  1517. data/vendor/rails/activerecord/test/cases/associations/cascaded_eager_loading_test.rb +131 -0
  1518. data/vendor/rails/activerecord/test/cases/associations/eager_load_includes_full_sti_class_test.rb +36 -0
  1519. data/vendor/rails/activerecord/test/cases/associations/eager_load_nested_include_test.rb +131 -0
  1520. data/vendor/rails/activerecord/test/cases/associations/eager_singularization_test.rb +145 -0
  1521. data/vendor/rails/activerecord/test/cases/associations/eager_test.rb +840 -0
  1522. data/vendor/rails/activerecord/test/cases/associations/extension_test.rb +62 -0
  1523. data/vendor/rails/activerecord/test/cases/associations/habtm_join_table_test.rb +56 -0
  1524. data/vendor/rails/activerecord/test/cases/associations/has_and_belongs_to_many_associations_test.rb +822 -0
  1525. data/vendor/rails/activerecord/test/cases/associations/has_many_associations_test.rb +1160 -0
  1526. data/vendor/rails/activerecord/test/cases/associations/has_many_through_associations_test.rb +346 -0
  1527. data/vendor/rails/activerecord/test/cases/associations/has_one_associations_test.rb +330 -0
  1528. data/vendor/rails/activerecord/test/cases/associations/has_one_through_associations_test.rb +209 -0
  1529. data/vendor/rails/activerecord/test/cases/associations/inner_join_association_test.rb +93 -0
  1530. data/vendor/rails/activerecord/test/cases/associations/inverse_associations_test.rb +566 -0
  1531. data/vendor/rails/activerecord/test/cases/associations/join_model_test.rb +712 -0
  1532. data/vendor/rails/activerecord/test/cases/associations_test.rb +272 -0
  1533. data/vendor/rails/activerecord/test/cases/attribute_methods_test.rb +305 -0
  1534. data/vendor/rails/activerecord/test/cases/autosave_association_test.rb +1218 -0
  1535. data/vendor/rails/activerecord/test/cases/base_test.rb +2183 -0
  1536. data/vendor/rails/activerecord/test/cases/batches_test.rb +81 -0
  1537. data/vendor/rails/activerecord/test/cases/binary_test.rb +30 -0
  1538. data/vendor/rails/activerecord/test/cases/calculations_test.rb +347 -0
  1539. data/vendor/rails/activerecord/test/cases/callbacks_observers_test.rb +38 -0
  1540. data/vendor/rails/activerecord/test/cases/callbacks_test.rb +438 -0
  1541. data/vendor/rails/activerecord/test/cases/class_inheritable_attributes_test.rb +32 -0
  1542. data/vendor/rails/activerecord/test/cases/column_alias_test.rb +17 -0
  1543. data/vendor/rails/activerecord/test/cases/column_definition_test.rb +70 -0
  1544. data/vendor/rails/activerecord/test/cases/connection_pool_test.rb +25 -0
  1545. data/vendor/rails/activerecord/test/cases/connection_test_firebird.rb +8 -0
  1546. data/vendor/rails/activerecord/test/cases/connection_test_mysql.rb +64 -0
  1547. data/vendor/rails/activerecord/test/cases/copy_table_test_sqlite.rb +80 -0
  1548. data/vendor/rails/activerecord/test/cases/database_statements_test.rb +12 -0
  1549. data/vendor/rails/activerecord/test/cases/datatype_test_postgresql.rb +204 -0
  1550. data/vendor/rails/activerecord/test/cases/date_time_test.rb +37 -0
  1551. data/vendor/rails/activerecord/test/cases/default_test_firebird.rb +16 -0
  1552. data/vendor/rails/activerecord/test/cases/defaults_test.rb +111 -0
  1553. data/vendor/rails/activerecord/test/cases/deprecated_finder_test.rb +30 -0
  1554. data/vendor/rails/activerecord/test/cases/dirty_test.rb +316 -0
  1555. data/vendor/rails/activerecord/test/cases/encoding_test.rb +6 -0
  1556. data/vendor/rails/activerecord/test/cases/finder_respond_to_test.rb +76 -0
  1557. data/vendor/rails/activerecord/test/cases/finder_test.rb +1070 -0
  1558. data/vendor/rails/activerecord/test/cases/fixtures_test.rb +661 -0
  1559. data/vendor/rails/activerecord/test/cases/helper.rb +68 -0
  1560. data/vendor/rails/activerecord/test/cases/i18n_test.rb +46 -0
  1561. data/vendor/rails/activerecord/test/cases/inheritance_test.rb +262 -0
  1562. data/vendor/rails/activerecord/test/cases/invalid_date_test.rb +24 -0
  1563. data/vendor/rails/activerecord/test/cases/json_serialization_test.rb +219 -0
  1564. data/vendor/rails/activerecord/test/cases/lifecycle_test.rb +193 -0
  1565. data/vendor/rails/activerecord/test/cases/locking_test.rb +349 -0
  1566. data/vendor/rails/activerecord/test/cases/method_scoping_test.rb +704 -0
  1567. data/vendor/rails/activerecord/test/cases/migration_test.rb +1638 -0
  1568. data/vendor/rails/activerecord/test/cases/migration_test_firebird.rb +124 -0
  1569. data/vendor/rails/activerecord/test/cases/mixin_test.rb +96 -0
  1570. data/vendor/rails/activerecord/test/cases/modules_test.rb +109 -0
  1571. data/vendor/rails/activerecord/test/cases/multiple_db_test.rb +85 -0
  1572. data/vendor/rails/activerecord/test/cases/named_scope_test.rb +361 -0
  1573. data/vendor/rails/activerecord/test/cases/nested_attributes_test.rb +813 -0
  1574. data/vendor/rails/activerecord/test/cases/pk_test.rb +119 -0
  1575. data/vendor/rails/activerecord/test/cases/pooled_connections_test.rb +103 -0
  1576. data/vendor/rails/activerecord/test/cases/query_cache_test.rb +129 -0
  1577. data/vendor/rails/activerecord/test/cases/readonly_test.rb +107 -0
  1578. data/vendor/rails/activerecord/test/cases/reflection_test.rb +234 -0
  1579. data/vendor/rails/activerecord/test/cases/reload_models_test.rb +22 -0
  1580. data/vendor/rails/activerecord/test/cases/repair_helper.rb +50 -0
  1581. data/vendor/rails/activerecord/test/cases/reserved_word_test_mysql.rb +176 -0
  1582. data/vendor/rails/activerecord/test/cases/sanitize_test.rb +25 -0
  1583. data/vendor/rails/activerecord/test/cases/schema_authorization_test_postgresql.rb +75 -0
  1584. data/vendor/rails/activerecord/test/cases/schema_dumper_test.rb +211 -0
  1585. data/vendor/rails/activerecord/test/cases/schema_test_postgresql.rb +178 -0
  1586. data/vendor/rails/activerecord/test/cases/serialization_test.rb +47 -0
  1587. data/vendor/rails/activerecord/test/cases/synonym_test_oracle.rb +17 -0
  1588. data/vendor/rails/activerecord/test/cases/timestamp_test.rb +75 -0
  1589. data/vendor/rails/activerecord/test/cases/transactions_test.rb +522 -0
  1590. data/vendor/rails/activerecord/test/cases/unconnected_test.rb +32 -0
  1591. data/vendor/rails/activerecord/test/cases/validations_i18n_test.rb +925 -0
  1592. data/vendor/rails/activerecord/test/cases/validations_test.rb +1672 -0
  1593. data/vendor/rails/activerecord/test/cases/xml_serialization_test.rb +240 -0
  1594. data/vendor/rails/activerecord/test/cases/yaml_serialization_test.rb +11 -0
  1595. data/vendor/rails/activerecord/test/config.rb +5 -0
  1596. data/vendor/rails/activerecord/test/connections/jdbc_jdbcderby/connection.rb +18 -0
  1597. data/vendor/rails/activerecord/test/connections/jdbc_jdbch2/connection.rb +18 -0
  1598. data/vendor/rails/activerecord/test/connections/jdbc_jdbchsqldb/connection.rb +18 -0
  1599. data/vendor/rails/activerecord/test/connections/jdbc_jdbcmysql/connection.rb +26 -0
  1600. data/vendor/rails/activerecord/test/connections/jdbc_jdbcpostgresql/connection.rb +26 -0
  1601. data/vendor/rails/activerecord/test/connections/jdbc_jdbcsqlite3/connection.rb +25 -0
  1602. data/vendor/rails/activerecord/test/connections/native_db2/connection.rb +25 -0
  1603. data/vendor/rails/activerecord/test/connections/native_firebird/connection.rb +26 -0
  1604. data/vendor/rails/activerecord/test/connections/native_frontbase/connection.rb +27 -0
  1605. data/vendor/rails/activerecord/test/connections/native_mysql/connection.rb +25 -0
  1606. data/vendor/rails/activerecord/test/connections/native_openbase/connection.rb +21 -0
  1607. data/vendor/rails/activerecord/test/connections/native_oracle/connection.rb +27 -0
  1608. data/vendor/rails/activerecord/test/connections/native_postgresql/connection.rb +21 -0
  1609. data/vendor/rails/activerecord/test/connections/native_sqlite/connection.rb +25 -0
  1610. data/vendor/rails/activerecord/test/connections/native_sqlite3/connection.rb +25 -0
  1611. data/vendor/rails/activerecord/test/connections/native_sqlite3/in_memory_connection.rb +18 -0
  1612. data/vendor/rails/activerecord/test/connections/native_sybase/connection.rb +23 -0
  1613. data/vendor/rails/activerecord/test/fixtures/accounts.yml +29 -0
  1614. data/vendor/rails/activerecord/test/fixtures/all/developers.yml +0 -0
  1615. data/vendor/rails/activerecord/test/fixtures/all/people.csv +0 -0
  1616. data/vendor/rails/activerecord/test/fixtures/all/tasks.yml +0 -0
  1617. data/vendor/rails/activerecord/test/fixtures/author_addresses.yml +5 -0
  1618. data/vendor/rails/activerecord/test/fixtures/author_favorites.yml +4 -0
  1619. data/vendor/rails/activerecord/test/fixtures/authors.yml +9 -0
  1620. data/vendor/rails/activerecord/test/fixtures/binaries.yml +132 -0
  1621. data/vendor/rails/activerecord/test/fixtures/books.yml +7 -0
  1622. data/vendor/rails/activerecord/test/fixtures/categories.yml +14 -0
  1623. data/vendor/rails/activerecord/test/fixtures/categories/special_categories.yml +9 -0
  1624. data/vendor/rails/activerecord/test/fixtures/categories/subsubdir/arbitrary_filename.yml +4 -0
  1625. data/vendor/rails/activerecord/test/fixtures/categories_ordered.yml +7 -0
  1626. data/vendor/rails/activerecord/test/fixtures/categories_posts.yml +23 -0
  1627. data/vendor/rails/activerecord/test/fixtures/categorizations.yml +17 -0
  1628. data/vendor/rails/activerecord/test/fixtures/clubs.yml +6 -0
  1629. data/vendor/rails/activerecord/test/fixtures/comments.yml +59 -0
  1630. data/vendor/rails/activerecord/test/fixtures/companies.yml +56 -0
  1631. data/vendor/rails/activerecord/test/fixtures/computers.yml +4 -0
  1632. data/vendor/rails/activerecord/test/fixtures/courses.yml +7 -0
  1633. data/vendor/rails/activerecord/test/fixtures/customers.yml +26 -0
  1634. data/vendor/rails/activerecord/test/fixtures/developers.yml +21 -0
  1635. data/vendor/rails/activerecord/test/fixtures/developers_projects.yml +17 -0
  1636. data/vendor/rails/activerecord/test/fixtures/edges.yml +6 -0
  1637. data/vendor/rails/activerecord/test/fixtures/entrants.yml +14 -0
  1638. data/vendor/rails/activerecord/test/fixtures/faces.yml +11 -0
  1639. data/vendor/rails/activerecord/test/fixtures/fixture_database.sqlite +0 -0
  1640. data/vendor/rails/activerecord/test/fixtures/fixture_database.sqlite3 +0 -0
  1641. data/vendor/rails/activerecord/test/fixtures/fixture_database_2.sqlite +0 -0
  1642. data/vendor/rails/activerecord/test/fixtures/fixture_database_2.sqlite3 +0 -0
  1643. data/vendor/rails/activerecord/test/fixtures/fk_test_has_fk.yml +3 -0
  1644. data/vendor/rails/activerecord/test/fixtures/fk_test_has_pk.yml +2 -0
  1645. data/vendor/rails/activerecord/test/fixtures/funny_jokes.yml +10 -0
  1646. data/vendor/rails/activerecord/test/fixtures/interests.yml +33 -0
  1647. data/vendor/rails/activerecord/test/fixtures/items.yml +4 -0
  1648. data/vendor/rails/activerecord/test/fixtures/jobs.yml +7 -0
  1649. data/vendor/rails/activerecord/test/fixtures/legacy_things.yml +3 -0
  1650. data/vendor/rails/activerecord/test/fixtures/mateys.yml +4 -0
  1651. data/vendor/rails/activerecord/test/fixtures/member_types.yml +6 -0
  1652. data/vendor/rails/activerecord/test/fixtures/members.yml +6 -0
  1653. data/vendor/rails/activerecord/test/fixtures/memberships.yml +20 -0
  1654. data/vendor/rails/activerecord/test/fixtures/men.yml +5 -0
  1655. data/vendor/rails/activerecord/test/fixtures/minimalistics.yml +2 -0
  1656. data/vendor/rails/activerecord/test/fixtures/mixed_case_monkeys.yml +6 -0
  1657. data/vendor/rails/activerecord/test/fixtures/mixins.yml +29 -0
  1658. data/vendor/rails/activerecord/test/fixtures/movies.yml +7 -0
  1659. data/vendor/rails/activerecord/test/fixtures/naked/csv/accounts.csv +1 -0
  1660. data/vendor/rails/activerecord/test/fixtures/naked/yml/accounts.yml +1 -0
  1661. data/vendor/rails/activerecord/test/fixtures/naked/yml/companies.yml +1 -0
  1662. data/vendor/rails/activerecord/test/fixtures/naked/yml/courses.yml +1 -0
  1663. data/vendor/rails/activerecord/test/fixtures/organizations.yml +5 -0
  1664. data/vendor/rails/activerecord/test/fixtures/owners.yml +7 -0
  1665. data/vendor/rails/activerecord/test/fixtures/parrots.yml +27 -0
  1666. data/vendor/rails/activerecord/test/fixtures/parrots_pirates.yml +7 -0
  1667. data/vendor/rails/activerecord/test/fixtures/people.yml +15 -0
  1668. data/vendor/rails/activerecord/test/fixtures/pets.yml +14 -0
  1669. data/vendor/rails/activerecord/test/fixtures/pirates.yml +9 -0
  1670. data/vendor/rails/activerecord/test/fixtures/posts.yml +52 -0
  1671. data/vendor/rails/activerecord/test/fixtures/price_estimates.yml +7 -0
  1672. data/vendor/rails/activerecord/test/fixtures/projects.yml +7 -0
  1673. data/vendor/rails/activerecord/test/fixtures/readers.yml +9 -0
  1674. data/vendor/rails/activerecord/test/fixtures/references.yml +17 -0
  1675. data/vendor/rails/activerecord/test/fixtures/reserved_words/distinct.yml +5 -0
  1676. data/vendor/rails/activerecord/test/fixtures/reserved_words/distincts_selects.yml +11 -0
  1677. data/vendor/rails/activerecord/test/fixtures/reserved_words/group.yml +14 -0
  1678. data/vendor/rails/activerecord/test/fixtures/reserved_words/select.yml +8 -0
  1679. data/vendor/rails/activerecord/test/fixtures/reserved_words/values.yml +7 -0
  1680. data/vendor/rails/activerecord/test/fixtures/ships.yml +5 -0
  1681. data/vendor/rails/activerecord/test/fixtures/sponsors.yml +9 -0
  1682. data/vendor/rails/activerecord/test/fixtures/subscribers.yml +7 -0
  1683. data/vendor/rails/activerecord/test/fixtures/subscriptions.yml +12 -0
  1684. data/vendor/rails/activerecord/test/fixtures/taggings.yml +28 -0
  1685. data/vendor/rails/activerecord/test/fixtures/tags.yml +7 -0
  1686. data/vendor/rails/activerecord/test/fixtures/tasks.yml +7 -0
  1687. data/vendor/rails/activerecord/test/fixtures/topics.yml +42 -0
  1688. data/vendor/rails/activerecord/test/fixtures/toys.yml +4 -0
  1689. data/vendor/rails/activerecord/test/fixtures/treasures.yml +10 -0
  1690. data/vendor/rails/activerecord/test/fixtures/vertices.yml +4 -0
  1691. data/vendor/rails/activerecord/test/fixtures/warehouse-things.yml +3 -0
  1692. data/vendor/rails/activerecord/test/fixtures/zines.yml +5 -0
  1693. data/vendor/rails/activerecord/test/migrations/broken/100_migration_that_raises_exception.rb +10 -0
  1694. data/vendor/rails/activerecord/test/migrations/decimal/1_give_me_big_numbers.rb +15 -0
  1695. data/vendor/rails/activerecord/test/migrations/duplicate/1_people_have_last_names.rb +9 -0
  1696. data/vendor/rails/activerecord/test/migrations/duplicate/2_we_need_reminders.rb +12 -0
  1697. data/vendor/rails/activerecord/test/migrations/duplicate/3_foo.rb +7 -0
  1698. data/vendor/rails/activerecord/test/migrations/duplicate/3_innocent_jointable.rb +12 -0
  1699. data/vendor/rails/activerecord/test/migrations/duplicate_names/20080507052938_chunky.rb +7 -0
  1700. data/vendor/rails/activerecord/test/migrations/duplicate_names/20080507053028_chunky.rb +7 -0
  1701. data/vendor/rails/activerecord/test/migrations/interleaved/pass_1/3_innocent_jointable.rb +12 -0
  1702. data/vendor/rails/activerecord/test/migrations/interleaved/pass_2/1_people_have_last_names.rb +9 -0
  1703. data/vendor/rails/activerecord/test/migrations/interleaved/pass_2/3_innocent_jointable.rb +12 -0
  1704. data/vendor/rails/activerecord/test/migrations/interleaved/pass_3/1_people_have_last_names.rb +9 -0
  1705. data/vendor/rails/activerecord/test/migrations/interleaved/pass_3/2_i_raise_on_down.rb +8 -0
  1706. data/vendor/rails/activerecord/test/migrations/interleaved/pass_3/3_innocent_jointable.rb +12 -0
  1707. data/vendor/rails/activerecord/test/migrations/missing/1000_people_have_middle_names.rb +9 -0
  1708. data/vendor/rails/activerecord/test/migrations/missing/1_people_have_last_names.rb +9 -0
  1709. data/vendor/rails/activerecord/test/migrations/missing/3_we_need_reminders.rb +12 -0
  1710. data/vendor/rails/activerecord/test/migrations/missing/4_innocent_jointable.rb +12 -0
  1711. data/vendor/rails/activerecord/test/migrations/valid/1_people_have_last_names.rb +9 -0
  1712. data/vendor/rails/activerecord/test/migrations/valid/2_we_need_reminders.rb +12 -0
  1713. data/vendor/rails/activerecord/test/migrations/valid/3_innocent_jointable.rb +12 -0
  1714. data/vendor/rails/activerecord/test/models/author.rb +149 -0
  1715. data/vendor/rails/activerecord/test/models/auto_id.rb +4 -0
  1716. data/vendor/rails/activerecord/test/models/binary.rb +2 -0
  1717. data/vendor/rails/activerecord/test/models/bird.rb +9 -0
  1718. data/vendor/rails/activerecord/test/models/book.rb +4 -0
  1719. data/vendor/rails/activerecord/test/models/categorization.rb +5 -0
  1720. data/vendor/rails/activerecord/test/models/category.rb +34 -0
  1721. data/vendor/rails/activerecord/test/models/citation.rb +6 -0
  1722. data/vendor/rails/activerecord/test/models/club.rb +13 -0
  1723. data/vendor/rails/activerecord/test/models/column_name.rb +3 -0
  1724. data/vendor/rails/activerecord/test/models/comment.rb +29 -0
  1725. data/vendor/rails/activerecord/test/models/company.rb +171 -0
  1726. data/vendor/rails/activerecord/test/models/company_in_module.rb +78 -0
  1727. data/vendor/rails/activerecord/test/models/computer.rb +3 -0
  1728. data/vendor/rails/activerecord/test/models/contact.rb +16 -0
  1729. data/vendor/rails/activerecord/test/models/contract.rb +5 -0
  1730. data/vendor/rails/activerecord/test/models/course.rb +3 -0
  1731. data/vendor/rails/activerecord/test/models/customer.rb +73 -0
  1732. data/vendor/rails/activerecord/test/models/default.rb +2 -0
  1733. data/vendor/rails/activerecord/test/models/developer.rb +101 -0
  1734. data/vendor/rails/activerecord/test/models/edge.rb +5 -0
  1735. data/vendor/rails/activerecord/test/models/entrant.rb +3 -0
  1736. data/vendor/rails/activerecord/test/models/essay.rb +3 -0
  1737. data/vendor/rails/activerecord/test/models/event.rb +3 -0
  1738. data/vendor/rails/activerecord/test/models/event_author.rb +5 -0
  1739. data/vendor/rails/activerecord/test/models/face.rb +7 -0
  1740. data/vendor/rails/activerecord/test/models/guid.rb +2 -0
  1741. data/vendor/rails/activerecord/test/models/interest.rb +5 -0
  1742. data/vendor/rails/activerecord/test/models/invoice.rb +4 -0
  1743. data/vendor/rails/activerecord/test/models/item.rb +7 -0
  1744. data/vendor/rails/activerecord/test/models/job.rb +5 -0
  1745. data/vendor/rails/activerecord/test/models/joke.rb +3 -0
  1746. data/vendor/rails/activerecord/test/models/keyboard.rb +3 -0
  1747. data/vendor/rails/activerecord/test/models/legacy_thing.rb +3 -0
  1748. data/vendor/rails/activerecord/test/models/line_item.rb +3 -0
  1749. data/vendor/rails/activerecord/test/models/man.rb +9 -0
  1750. data/vendor/rails/activerecord/test/models/matey.rb +4 -0
  1751. data/vendor/rails/activerecord/test/models/member.rb +12 -0
  1752. data/vendor/rails/activerecord/test/models/member_detail.rb +5 -0
  1753. data/vendor/rails/activerecord/test/models/member_type.rb +3 -0
  1754. data/vendor/rails/activerecord/test/models/membership.rb +9 -0
  1755. data/vendor/rails/activerecord/test/models/minimalistic.rb +2 -0
  1756. data/vendor/rails/activerecord/test/models/mixed_case_monkey.rb +3 -0
  1757. data/vendor/rails/activerecord/test/models/movie.rb +5 -0
  1758. data/vendor/rails/activerecord/test/models/order.rb +4 -0
  1759. data/vendor/rails/activerecord/test/models/organization.rb +6 -0
  1760. data/vendor/rails/activerecord/test/models/owner.rb +5 -0
  1761. data/vendor/rails/activerecord/test/models/parrot.rb +22 -0
  1762. data/vendor/rails/activerecord/test/models/person.rb +16 -0
  1763. data/vendor/rails/activerecord/test/models/pet.rb +5 -0
  1764. data/vendor/rails/activerecord/test/models/pirate.rb +80 -0
  1765. data/vendor/rails/activerecord/test/models/post.rb +100 -0
  1766. data/vendor/rails/activerecord/test/models/price_estimate.rb +3 -0
  1767. data/vendor/rails/activerecord/test/models/project.rb +30 -0
  1768. data/vendor/rails/activerecord/test/models/reader.rb +4 -0
  1769. data/vendor/rails/activerecord/test/models/reference.rb +4 -0
  1770. data/vendor/rails/activerecord/test/models/reply.rb +46 -0
  1771. data/vendor/rails/activerecord/test/models/ship.rb +19 -0
  1772. data/vendor/rails/activerecord/test/models/ship_part.rb +7 -0
  1773. data/vendor/rails/activerecord/test/models/sponsor.rb +4 -0
  1774. data/vendor/rails/activerecord/test/models/subject.rb +4 -0
  1775. data/vendor/rails/activerecord/test/models/subscriber.rb +8 -0
  1776. data/vendor/rails/activerecord/test/models/subscription.rb +4 -0
  1777. data/vendor/rails/activerecord/test/models/tag.rb +7 -0
  1778. data/vendor/rails/activerecord/test/models/tagging.rb +10 -0
  1779. data/vendor/rails/activerecord/test/models/task.rb +3 -0
  1780. data/vendor/rails/activerecord/test/models/topic.rb +80 -0
  1781. data/vendor/rails/activerecord/test/models/toy.rb +6 -0
  1782. data/vendor/rails/activerecord/test/models/treasure.rb +8 -0
  1783. data/vendor/rails/activerecord/test/models/vertex.rb +9 -0
  1784. data/vendor/rails/activerecord/test/models/warehouse_thing.rb +5 -0
  1785. data/vendor/rails/activerecord/test/models/zine.rb +3 -0
  1786. data/vendor/rails/activerecord/test/schema/mysql_specific_schema.rb +24 -0
  1787. data/vendor/rails/activerecord/test/schema/postgresql_specific_schema.rb +114 -0
  1788. data/vendor/rails/activerecord/test/schema/schema.rb +534 -0
  1789. data/vendor/rails/activerecord/test/schema/schema2.rb +6 -0
  1790. data/vendor/rails/activerecord/test/schema/sqlite_specific_schema.rb +25 -0
  1791. data/vendor/rails/activeresource/CHANGELOG +307 -0
  1792. data/vendor/rails/activeresource/README +165 -0
  1793. data/vendor/rails/activeresource/Rakefile +139 -0
  1794. data/vendor/rails/activeresource/lib/active_resource.rb +44 -0
  1795. data/vendor/rails/activeresource/lib/active_resource/base.rb +1166 -0
  1796. data/vendor/rails/activeresource/lib/active_resource/connection.rb +283 -0
  1797. data/vendor/rails/activeresource/lib/active_resource/custom_methods.rb +120 -0
  1798. data/vendor/rails/activeresource/lib/active_resource/exceptions.rb +66 -0
  1799. data/vendor/rails/activeresource/lib/active_resource/formats.rb +14 -0
  1800. data/vendor/rails/activeresource/lib/active_resource/formats/json_format.rb +23 -0
  1801. data/vendor/rails/activeresource/lib/active_resource/formats/xml_format.rb +34 -0
  1802. data/vendor/rails/activeresource/lib/active_resource/http_mock.rb +207 -0
  1803. data/vendor/rails/activeresource/lib/active_resource/validations.rb +290 -0
  1804. data/vendor/rails/activeresource/lib/active_resource/version.rb +9 -0
  1805. data/vendor/rails/activeresource/lib/activeresource.rb +2 -0
  1806. data/vendor/rails/activeresource/test/abstract_unit.rb +21 -0
  1807. data/vendor/rails/activeresource/test/authorization_test.rb +122 -0
  1808. data/vendor/rails/activeresource/test/base/custom_methods_test.rb +100 -0
  1809. data/vendor/rails/activeresource/test/base/equality_test.rb +52 -0
  1810. data/vendor/rails/activeresource/test/base/load_test.rb +161 -0
  1811. data/vendor/rails/activeresource/test/base_errors_test.rb +98 -0
  1812. data/vendor/rails/activeresource/test/base_test.rb +1087 -0
  1813. data/vendor/rails/activeresource/test/connection_test.rb +238 -0
  1814. data/vendor/rails/activeresource/test/debug.log +80350 -0
  1815. data/vendor/rails/activeresource/test/fixtures/beast.rb +14 -0
  1816. data/vendor/rails/activeresource/test/fixtures/customer.rb +3 -0
  1817. data/vendor/rails/activeresource/test/fixtures/person.rb +3 -0
  1818. data/vendor/rails/activeresource/test/fixtures/proxy.rb +4 -0
  1819. data/vendor/rails/activeresource/test/fixtures/street_address.rb +4 -0
  1820. data/vendor/rails/activeresource/test/format_test.rb +112 -0
  1821. data/vendor/rails/activeresource/test/setter_trap.rb +26 -0
  1822. data/vendor/rails/activesupport/CHANGELOG +1367 -0
  1823. data/vendor/rails/activesupport/README +43 -0
  1824. data/vendor/rails/activesupport/lib/active_support.rb +60 -0
  1825. data/vendor/rails/activesupport/lib/active_support/all.rb +8 -0
  1826. data/vendor/rails/activesupport/lib/active_support/backtrace_cleaner.rb +72 -0
  1827. data/vendor/rails/activesupport/lib/active_support/base64.rb +33 -0
  1828. data/vendor/rails/activesupport/lib/active_support/basic_object.rb +24 -0
  1829. data/vendor/rails/activesupport/lib/active_support/buffered_logger.rb +127 -0
  1830. data/vendor/rails/activesupport/lib/active_support/cache.rb +248 -0
  1831. data/vendor/rails/activesupport/lib/active_support/cache/compressed_mem_cache_store.rb +20 -0
  1832. data/vendor/rails/activesupport/lib/active_support/cache/drb_store.rb +14 -0
  1833. data/vendor/rails/activesupport/lib/active_support/cache/file_store.rb +72 -0
  1834. data/vendor/rails/activesupport/lib/active_support/cache/mem_cache_store.rb +143 -0
  1835. data/vendor/rails/activesupport/lib/active_support/cache/memory_store.rb +58 -0
  1836. data/vendor/rails/activesupport/lib/active_support/cache/strategy/local_cache.rb +104 -0
  1837. data/vendor/rails/activesupport/lib/active_support/cache/synchronized_memory_store.rb +47 -0
  1838. data/vendor/rails/activesupport/lib/active_support/callbacks.rb +279 -0
  1839. data/vendor/rails/activesupport/lib/active_support/core_ext.rb +8 -0
  1840. data/vendor/rails/activesupport/lib/active_support/core_ext/array.rb +15 -0
  1841. data/vendor/rails/activesupport/lib/active_support/core_ext/array/access.rb +53 -0
  1842. data/vendor/rails/activesupport/lib/active_support/core_ext/array/conversions.rb +197 -0
  1843. data/vendor/rails/activesupport/lib/active_support/core_ext/array/extract_options.rb +20 -0
  1844. data/vendor/rails/activesupport/lib/active_support/core_ext/array/grouping.rb +106 -0
  1845. data/vendor/rails/activesupport/lib/active_support/core_ext/array/random_access.rb +22 -0
  1846. data/vendor/rails/activesupport/lib/active_support/core_ext/array/wrapper.rb +24 -0
  1847. data/vendor/rails/activesupport/lib/active_support/core_ext/base64.rb +4 -0
  1848. data/vendor/rails/activesupport/lib/active_support/core_ext/base64/encoding.rb +16 -0
  1849. data/vendor/rails/activesupport/lib/active_support/core_ext/benchmark.rb +19 -0
  1850. data/vendor/rails/activesupport/lib/active_support/core_ext/bigdecimal.rb +6 -0
  1851. data/vendor/rails/activesupport/lib/active_support/core_ext/bigdecimal/conversions.rb +37 -0
  1852. data/vendor/rails/activesupport/lib/active_support/core_ext/blank.rb +2 -0
  1853. data/vendor/rails/activesupport/lib/active_support/core_ext/cgi.rb +5 -0
  1854. data/vendor/rails/activesupport/lib/active_support/core_ext/cgi/escape_skipping_slashes.rb +23 -0
  1855. data/vendor/rails/activesupport/lib/active_support/core_ext/class.rb +4 -0
  1856. data/vendor/rails/activesupport/lib/active_support/core_ext/class/attribute_accessors.rb +61 -0
  1857. data/vendor/rails/activesupport/lib/active_support/core_ext/class/delegating_attributes.rb +47 -0
  1858. data/vendor/rails/activesupport/lib/active_support/core_ext/class/inheritable_attributes.rb +140 -0
  1859. data/vendor/rails/activesupport/lib/active_support/core_ext/class/removal.rb +50 -0
  1860. data/vendor/rails/activesupport/lib/active_support/core_ext/date.rb +10 -0
  1861. data/vendor/rails/activesupport/lib/active_support/core_ext/date/behavior.rb +42 -0
  1862. data/vendor/rails/activesupport/lib/active_support/core_ext/date/calculations.rb +241 -0
  1863. data/vendor/rails/activesupport/lib/active_support/core_ext/date/conversions.rb +107 -0
  1864. data/vendor/rails/activesupport/lib/active_support/core_ext/date_time.rb +12 -0
  1865. data/vendor/rails/activesupport/lib/active_support/core_ext/date_time/calculations.rb +126 -0
  1866. data/vendor/rails/activesupport/lib/active_support/core_ext/date_time/conversions.rb +107 -0
  1867. data/vendor/rails/activesupport/lib/active_support/core_ext/duplicable.rb +43 -0
  1868. data/vendor/rails/activesupport/lib/active_support/core_ext/enumerable.rb +120 -0
  1869. data/vendor/rails/activesupport/lib/active_support/core_ext/exception.rb +45 -0
  1870. data/vendor/rails/activesupport/lib/active_support/core_ext/file.rb +5 -0
  1871. data/vendor/rails/activesupport/lib/active_support/core_ext/file/atomic.rb +47 -0
  1872. data/vendor/rails/activesupport/lib/active_support/core_ext/float.rb +7 -0
  1873. data/vendor/rails/activesupport/lib/active_support/core_ext/float/rounding.rb +24 -0
  1874. data/vendor/rails/activesupport/lib/active_support/core_ext/float/time.rb +27 -0
  1875. data/vendor/rails/activesupport/lib/active_support/core_ext/hash.rb +14 -0
  1876. data/vendor/rails/activesupport/lib/active_support/core_ext/hash/conversions.rb +247 -0
  1877. data/vendor/rails/activesupport/lib/active_support/core_ext/hash/deep_merge.rb +23 -0
  1878. data/vendor/rails/activesupport/lib/active_support/core_ext/hash/diff.rb +19 -0
  1879. data/vendor/rails/activesupport/lib/active_support/core_ext/hash/except.rb +25 -0
  1880. data/vendor/rails/activesupport/lib/active_support/core_ext/hash/indifferent_access.rb +143 -0
  1881. data/vendor/rails/activesupport/lib/active_support/core_ext/hash/keys.rb +52 -0
  1882. data/vendor/rails/activesupport/lib/active_support/core_ext/hash/reverse_merge.rb +35 -0
  1883. data/vendor/rails/activesupport/lib/active_support/core_ext/hash/slice.rb +40 -0
  1884. data/vendor/rails/activesupport/lib/active_support/core_ext/integer.rb +9 -0
  1885. data/vendor/rails/activesupport/lib/active_support/core_ext/integer/even_odd.rb +29 -0
  1886. data/vendor/rails/activesupport/lib/active_support/core_ext/integer/inflections.rb +20 -0
  1887. data/vendor/rails/activesupport/lib/active_support/core_ext/integer/time.rb +45 -0
  1888. data/vendor/rails/activesupport/lib/active_support/core_ext/kernel.rb +5 -0
  1889. data/vendor/rails/activesupport/lib/active_support/core_ext/kernel/agnostics.rb +11 -0
  1890. data/vendor/rails/activesupport/lib/active_support/core_ext/kernel/daemonizing.rb +7 -0
  1891. data/vendor/rails/activesupport/lib/active_support/core_ext/kernel/debugger.rb +16 -0
  1892. data/vendor/rails/activesupport/lib/active_support/core_ext/kernel/reporting.rb +59 -0
  1893. data/vendor/rails/activesupport/lib/active_support/core_ext/kernel/requires.rb +24 -0
  1894. data/vendor/rails/activesupport/lib/active_support/core_ext/load_error.rb +38 -0
  1895. data/vendor/rails/activesupport/lib/active_support/core_ext/logger.rb +145 -0
  1896. data/vendor/rails/activesupport/lib/active_support/core_ext/module.rb +23 -0
  1897. data/vendor/rails/activesupport/lib/active_support/core_ext/module/aliasing.rb +74 -0
  1898. data/vendor/rails/activesupport/lib/active_support/core_ext/module/attr_accessor_with_default.rb +31 -0
  1899. data/vendor/rails/activesupport/lib/active_support/core_ext/module/attr_internal.rb +32 -0
  1900. data/vendor/rails/activesupport/lib/active_support/core_ext/module/attribute_accessors.rb +67 -0
  1901. data/vendor/rails/activesupport/lib/active_support/core_ext/module/delegation.rb +135 -0
  1902. data/vendor/rails/activesupport/lib/active_support/core_ext/module/inclusion.rb +30 -0
  1903. data/vendor/rails/activesupport/lib/active_support/core_ext/module/introspection.rb +90 -0
  1904. data/vendor/rails/activesupport/lib/active_support/core_ext/module/loading.rb +23 -0
  1905. data/vendor/rails/activesupport/lib/active_support/core_ext/module/model_naming.rb +25 -0
  1906. data/vendor/rails/activesupport/lib/active_support/core_ext/module/synchronization.rb +39 -0
  1907. data/vendor/rails/activesupport/lib/active_support/core_ext/name_error.rb +19 -0
  1908. data/vendor/rails/activesupport/lib/active_support/core_ext/numeric.rb +9 -0
  1909. data/vendor/rails/activesupport/lib/active_support/core_ext/numeric/bytes.rb +50 -0
  1910. data/vendor/rails/activesupport/lib/active_support/core_ext/numeric/conversions.rb +19 -0
  1911. data/vendor/rails/activesupport/lib/active_support/core_ext/numeric/time.rb +81 -0
  1912. data/vendor/rails/activesupport/lib/active_support/core_ext/object.rb +7 -0
  1913. data/vendor/rails/activesupport/lib/active_support/core_ext/object/blank.rb +76 -0
  1914. data/vendor/rails/activesupport/lib/active_support/core_ext/object/conversions.rb +15 -0
  1915. data/vendor/rails/activesupport/lib/active_support/core_ext/object/extending.rb +80 -0
  1916. data/vendor/rails/activesupport/lib/active_support/core_ext/object/instance_variables.rb +74 -0
  1917. data/vendor/rails/activesupport/lib/active_support/core_ext/object/metaclass.rb +14 -0
  1918. data/vendor/rails/activesupport/lib/active_support/core_ext/object/misc.rb +90 -0
  1919. data/vendor/rails/activesupport/lib/active_support/core_ext/object/singleton_class.rb +13 -0
  1920. data/vendor/rails/activesupport/lib/active_support/core_ext/pathname.rb +7 -0
  1921. data/vendor/rails/activesupport/lib/active_support/core_ext/pathname/clean_within.rb +14 -0
  1922. data/vendor/rails/activesupport/lib/active_support/core_ext/proc.rb +12 -0
  1923. data/vendor/rails/activesupport/lib/active_support/core_ext/process.rb +1 -0
  1924. data/vendor/rails/activesupport/lib/active_support/core_ext/process/daemon.rb +25 -0
  1925. data/vendor/rails/activesupport/lib/active_support/core_ext/range.rb +11 -0
  1926. data/vendor/rails/activesupport/lib/active_support/core_ext/range/blockless_step.rb +32 -0
  1927. data/vendor/rails/activesupport/lib/active_support/core_ext/range/conversions.rb +27 -0
  1928. data/vendor/rails/activesupport/lib/active_support/core_ext/range/include_range.rb +30 -0
  1929. data/vendor/rails/activesupport/lib/active_support/core_ext/range/overlaps.rb +15 -0
  1930. data/vendor/rails/activesupport/lib/active_support/core_ext/rexml.rb +41 -0
  1931. data/vendor/rails/activesupport/lib/active_support/core_ext/string.rb +24 -0
  1932. data/vendor/rails/activesupport/lib/active_support/core_ext/string/access.rb +106 -0
  1933. data/vendor/rails/activesupport/lib/active_support/core_ext/string/behavior.rb +13 -0
  1934. data/vendor/rails/activesupport/lib/active_support/core_ext/string/bytesize.rb +5 -0
  1935. data/vendor/rails/activesupport/lib/active_support/core_ext/string/conversions.rb +28 -0
  1936. data/vendor/rails/activesupport/lib/active_support/core_ext/string/filters.rb +26 -0
  1937. data/vendor/rails/activesupport/lib/active_support/core_ext/string/inflections.rb +167 -0
  1938. data/vendor/rails/activesupport/lib/active_support/core_ext/string/iterators.rb +23 -0
  1939. data/vendor/rails/activesupport/lib/active_support/core_ext/string/multibyte.rb +81 -0
  1940. data/vendor/rails/activesupport/lib/active_support/core_ext/string/output_safety.rb +112 -0
  1941. data/vendor/rails/activesupport/lib/active_support/core_ext/string/starts_ends_with.rb +33 -0
  1942. data/vendor/rails/activesupport/lib/active_support/core_ext/string/xchar.rb +11 -0
  1943. data/vendor/rails/activesupport/lib/active_support/core_ext/symbol.rb +14 -0
  1944. data/vendor/rails/activesupport/lib/active_support/core_ext/time.rb +46 -0
  1945. data/vendor/rails/activesupport/lib/active_support/core_ext/time/behavior.rb +13 -0
  1946. data/vendor/rails/activesupport/lib/active_support/core_ext/time/calculations.rb +313 -0
  1947. data/vendor/rails/activesupport/lib/active_support/core_ext/time/conversions.rb +90 -0
  1948. data/vendor/rails/activesupport/lib/active_support/core_ext/time/zones.rb +86 -0
  1949. data/vendor/rails/activesupport/lib/active_support/core_ext/try.rb +36 -0
  1950. data/vendor/rails/activesupport/lib/active_support/core_ext/uri.rb +16 -0
  1951. data/vendor/rails/activesupport/lib/active_support/dependencies.rb +625 -0
  1952. data/vendor/rails/activesupport/lib/active_support/deprecation.rb +197 -0
  1953. data/vendor/rails/activesupport/lib/active_support/duration.rb +100 -0
  1954. data/vendor/rails/activesupport/lib/active_support/gzip.rb +25 -0
  1955. data/vendor/rails/activesupport/lib/active_support/inflections.rb +56 -0
  1956. data/vendor/rails/activesupport/lib/active_support/inflector.rb +409 -0
  1957. data/vendor/rails/activesupport/lib/active_support/json.rb +2 -0
  1958. data/vendor/rails/activesupport/lib/active_support/json/backends/jsongem.rb +37 -0
  1959. data/vendor/rails/activesupport/lib/active_support/json/backends/yajl.rb +40 -0
  1960. data/vendor/rails/activesupport/lib/active_support/json/backends/yaml.rb +87 -0
  1961. data/vendor/rails/activesupport/lib/active_support/json/decoding.rb +50 -0
  1962. data/vendor/rails/activesupport/lib/active_support/json/encoders/date.rb +22 -0
  1963. data/vendor/rails/activesupport/lib/active_support/json/encoders/date_time.rb +22 -0
  1964. data/vendor/rails/activesupport/lib/active_support/json/encoders/enumerable.rb +17 -0
  1965. data/vendor/rails/activesupport/lib/active_support/json/encoders/false_class.rb +7 -0
  1966. data/vendor/rails/activesupport/lib/active_support/json/encoders/hash.rb +56 -0
  1967. data/vendor/rails/activesupport/lib/active_support/json/encoders/nil_class.rb +7 -0
  1968. data/vendor/rails/activesupport/lib/active_support/json/encoders/numeric.rb +21 -0
  1969. data/vendor/rails/activesupport/lib/active_support/json/encoders/object.rb +10 -0
  1970. data/vendor/rails/activesupport/lib/active_support/json/encoders/regexp.rb +9 -0
  1971. data/vendor/rails/activesupport/lib/active_support/json/encoders/string.rb +9 -0
  1972. data/vendor/rails/activesupport/lib/active_support/json/encoders/symbol.rb +5 -0
  1973. data/vendor/rails/activesupport/lib/active_support/json/encoders/time.rb +22 -0
  1974. data/vendor/rails/activesupport/lib/active_support/json/encoders/true_class.rb +7 -0
  1975. data/vendor/rails/activesupport/lib/active_support/json/encoding.rb +111 -0
  1976. data/vendor/rails/activesupport/lib/active_support/json/variable.rb +10 -0
  1977. data/vendor/rails/activesupport/lib/active_support/locale/en.yml +33 -0
  1978. data/vendor/rails/activesupport/lib/active_support/memoizable.rb +100 -0
  1979. data/vendor/rails/activesupport/lib/active_support/message_encryptor.rb +70 -0
  1980. data/vendor/rails/activesupport/lib/active_support/message_verifier.rb +79 -0
  1981. data/vendor/rails/activesupport/lib/active_support/multibyte.rb +57 -0
  1982. data/vendor/rails/activesupport/lib/active_support/multibyte/chars.rb +707 -0
  1983. data/vendor/rails/activesupport/lib/active_support/multibyte/exceptions.rb +8 -0
  1984. data/vendor/rails/activesupport/lib/active_support/multibyte/unicode_database.rb +71 -0
  1985. data/vendor/rails/activesupport/lib/active_support/multibyte/utils.rb +60 -0
  1986. data/vendor/rails/activesupport/lib/active_support/option_merger.rb +23 -0
  1987. data/vendor/rails/activesupport/lib/active_support/ordered_hash.rb +158 -0
  1988. data/vendor/rails/activesupport/lib/active_support/ordered_options.rb +19 -0
  1989. data/vendor/rails/activesupport/lib/active_support/rescuable.rb +108 -0
  1990. data/vendor/rails/activesupport/lib/active_support/secure_random.rb +199 -0
  1991. data/vendor/rails/activesupport/lib/active_support/string_inquirer.rb +21 -0
  1992. data/vendor/rails/activesupport/lib/active_support/test_case.rb +40 -0
  1993. data/vendor/rails/activesupport/lib/active_support/testing/assertions.rb +79 -0
  1994. data/vendor/rails/activesupport/lib/active_support/testing/declarative.rb +21 -0
  1995. data/vendor/rails/activesupport/lib/active_support/testing/default.rb +9 -0
  1996. data/vendor/rails/activesupport/lib/active_support/testing/deprecation.rb +57 -0
  1997. data/vendor/rails/activesupport/lib/active_support/testing/performance.rb +452 -0
  1998. data/vendor/rails/activesupport/lib/active_support/testing/setup_and_teardown.rb +91 -0
  1999. data/vendor/rails/activesupport/lib/active_support/time_with_zone.rb +335 -0
  2000. data/vendor/rails/activesupport/lib/active_support/values/time_zone.rb +412 -0
  2001. data/vendor/rails/activesupport/lib/active_support/values/unicode_tables.dat +0 -0
  2002. data/vendor/rails/activesupport/lib/active_support/vendor.rb +36 -0
  2003. data/vendor/rails/activesupport/lib/active_support/vendor/builder-2.1.2/blankslate.rb +113 -0
  2004. data/vendor/rails/activesupport/lib/active_support/vendor/builder-2.1.2/builder.rb +13 -0
  2005. data/vendor/rails/activesupport/lib/active_support/vendor/builder-2.1.2/builder/blankslate.rb +20 -0
  2006. data/vendor/rails/activesupport/lib/active_support/vendor/builder-2.1.2/builder/css.rb +250 -0
  2007. data/vendor/rails/activesupport/lib/active_support/vendor/builder-2.1.2/builder/xchar.rb +115 -0
  2008. data/vendor/rails/activesupport/lib/active_support/vendor/builder-2.1.2/builder/xmlbase.rb +139 -0
  2009. data/vendor/rails/activesupport/lib/active_support/vendor/builder-2.1.2/builder/xmlevents.rb +63 -0
  2010. data/vendor/rails/activesupport/lib/active_support/vendor/builder-2.1.2/builder/xmlmarkup.rb +328 -0
  2011. data/vendor/rails/activesupport/lib/active_support/vendor/i18n-0.3.7/i18n.rb +335 -0
  2012. data/vendor/rails/activesupport/lib/active_support/vendor/i18n-0.3.7/i18n/backend.rb +19 -0
  2013. data/vendor/rails/activesupport/lib/active_support/vendor/i18n-0.3.7/i18n/backend/active_record.rb +66 -0
  2014. data/vendor/rails/activesupport/lib/active_support/vendor/i18n-0.3.7/i18n/backend/active_record/missing.rb +67 -0
  2015. data/vendor/rails/activesupport/lib/active_support/vendor/i18n-0.3.7/i18n/backend/active_record/store_procs.rb +38 -0
  2016. data/vendor/rails/activesupport/lib/active_support/vendor/i18n-0.3.7/i18n/backend/active_record/translation.rb +88 -0
  2017. data/vendor/rails/activesupport/lib/active_support/vendor/i18n-0.3.7/i18n/backend/base.rb +266 -0
  2018. data/vendor/rails/activesupport/lib/active_support/vendor/i18n-0.3.7/i18n/backend/cache.rb +76 -0
  2019. data/vendor/rails/activesupport/lib/active_support/vendor/i18n-0.3.7/i18n/backend/cascade.rb +58 -0
  2020. data/vendor/rails/activesupport/lib/active_support/vendor/i18n-0.3.7/i18n/backend/chain.rb +75 -0
  2021. data/vendor/rails/activesupport/lib/active_support/vendor/i18n-0.3.7/i18n/backend/cldr.rb +100 -0
  2022. data/vendor/rails/activesupport/lib/active_support/vendor/i18n-0.3.7/i18n/backend/fallbacks.rb +69 -0
  2023. data/vendor/rails/activesupport/lib/active_support/vendor/i18n-0.3.7/i18n/backend/fast.rb +69 -0
  2024. data/vendor/rails/activesupport/lib/active_support/vendor/i18n-0.3.7/i18n/backend/gettext.rb +75 -0
  2025. data/vendor/rails/activesupport/lib/active_support/vendor/i18n-0.3.7/i18n/backend/helpers.rb +68 -0
  2026. data/vendor/rails/activesupport/lib/active_support/vendor/i18n-0.3.7/i18n/backend/interpolation_compiler.rb +119 -0
  2027. data/vendor/rails/activesupport/lib/active_support/vendor/i18n-0.3.7/i18n/backend/links.rb +34 -0
  2028. data/vendor/rails/activesupport/lib/active_support/vendor/i18n-0.3.7/i18n/backend/metadata.rb +73 -0
  2029. data/vendor/rails/activesupport/lib/active_support/vendor/i18n-0.3.7/i18n/backend/pluralization.rb +57 -0
  2030. data/vendor/rails/activesupport/lib/active_support/vendor/i18n-0.3.7/i18n/backend/simple.rb +22 -0
  2031. data/vendor/rails/activesupport/lib/active_support/vendor/i18n-0.3.7/i18n/core_ext/hash/except.rb +8 -0
  2032. data/vendor/rails/activesupport/lib/active_support/vendor/i18n-0.3.7/i18n/core_ext/hash/slice.rb +8 -0
  2033. data/vendor/rails/activesupport/lib/active_support/vendor/i18n-0.3.7/i18n/core_ext/object/meta_class.rb +5 -0
  2034. data/vendor/rails/activesupport/lib/active_support/vendor/i18n-0.3.7/i18n/core_ext/string/interpolate.rb +99 -0
  2035. data/vendor/rails/activesupport/lib/active_support/vendor/i18n-0.3.7/i18n/exceptions.rb +61 -0
  2036. data/vendor/rails/activesupport/lib/active_support/vendor/i18n-0.3.7/i18n/gettext.rb +25 -0
  2037. data/vendor/rails/activesupport/lib/active_support/vendor/i18n-0.3.7/i18n/gettext/po_parser.rb +329 -0
  2038. data/vendor/rails/activesupport/lib/active_support/vendor/i18n-0.3.7/i18n/helpers.rb +5 -0
  2039. data/vendor/rails/activesupport/lib/active_support/vendor/i18n-0.3.7/i18n/helpers/gettext.rb +65 -0
  2040. data/vendor/rails/activesupport/lib/active_support/vendor/i18n-0.3.7/i18n/locale.rb +6 -0
  2041. data/vendor/rails/activesupport/lib/active_support/vendor/i18n-0.3.7/i18n/locale/fallbacks.rb +98 -0
  2042. data/vendor/rails/activesupport/lib/active_support/vendor/i18n-0.3.7/i18n/locale/tag.rb +28 -0
  2043. data/vendor/rails/activesupport/lib/active_support/vendor/i18n-0.3.7/i18n/locale/tag/parents.rb +24 -0
  2044. data/vendor/rails/activesupport/lib/active_support/vendor/i18n-0.3.7/i18n/locale/tag/rfc4646.rb +76 -0
  2045. data/vendor/rails/activesupport/lib/active_support/vendor/i18n-0.3.7/i18n/locale/tag/simple.rb +41 -0
  2046. data/vendor/rails/activesupport/lib/active_support/vendor/i18n-0.3.7/i18n/version.rb +3 -0
  2047. data/vendor/rails/activesupport/lib/active_support/vendor/memcache-client-1.7.4/memcache.rb +1107 -0
  2048. data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo.rb +33 -0
  2049. data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/data_timezone.rb +47 -0
  2050. data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/data_timezone_info.rb +228 -0
  2051. data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Africa/Algiers.rb +55 -0
  2052. data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Africa/Cairo.rb +219 -0
  2053. data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Africa/Casablanca.rb +40 -0
  2054. data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Africa/Harare.rb +18 -0
  2055. data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Africa/Johannesburg.rb +25 -0
  2056. data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Africa/Monrovia.rb +22 -0
  2057. data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Africa/Nairobi.rb +23 -0
  2058. data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/America/Argentina/Buenos_Aires.rb +166 -0
  2059. data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/America/Argentina/San_Juan.rb +86 -0
  2060. data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/America/Bogota.rb +23 -0
  2061. data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/America/Caracas.rb +23 -0
  2062. data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/America/Chicago.rb +283 -0
  2063. data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/America/Chihuahua.rb +136 -0
  2064. data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/America/Denver.rb +204 -0
  2065. data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/America/Godthab.rb +161 -0
  2066. data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/America/Guatemala.rb +27 -0
  2067. data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/America/Halifax.rb +274 -0
  2068. data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/America/Indiana/Indianapolis.rb +149 -0
  2069. data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/America/Juneau.rb +194 -0
  2070. data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/America/La_Paz.rb +22 -0
  2071. data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/America/Lima.rb +35 -0
  2072. data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/America/Los_Angeles.rb +232 -0
  2073. data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/America/Mazatlan.rb +139 -0
  2074. data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/America/Mexico_City.rb +144 -0
  2075. data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/America/Monterrey.rb +131 -0
  2076. data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/America/New_York.rb +282 -0
  2077. data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/America/Phoenix.rb +30 -0
  2078. data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/America/Regina.rb +74 -0
  2079. data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/America/Santiago.rb +205 -0
  2080. data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/America/Sao_Paulo.rb +171 -0
  2081. data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/America/St_Johns.rb +288 -0
  2082. data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/America/Tijuana.rb +196 -0
  2083. data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Almaty.rb +67 -0
  2084. data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Baghdad.rb +73 -0
  2085. data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Baku.rb +161 -0
  2086. data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Bangkok.rb +20 -0
  2087. data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Chongqing.rb +33 -0
  2088. data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Colombo.rb +30 -0
  2089. data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Dhaka.rb +27 -0
  2090. data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Hong_Kong.rb +87 -0
  2091. data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Irkutsk.rb +165 -0
  2092. data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Jakarta.rb +30 -0
  2093. data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Jerusalem.rb +163 -0
  2094. data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Kabul.rb +20 -0
  2095. data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Kamchatka.rb +163 -0
  2096. data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Karachi.rb +30 -0
  2097. data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Katmandu.rb +20 -0
  2098. data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Kolkata.rb +25 -0
  2099. data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Krasnoyarsk.rb +163 -0
  2100. data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Kuala_Lumpur.rb +31 -0
  2101. data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Kuwait.rb +18 -0
  2102. data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Magadan.rb +163 -0
  2103. data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Muscat.rb +18 -0
  2104. data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Novosibirsk.rb +164 -0
  2105. data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Rangoon.rb +24 -0
  2106. data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Riyadh.rb +18 -0
  2107. data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Seoul.rb +34 -0
  2108. data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Shanghai.rb +35 -0
  2109. data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Singapore.rb +33 -0
  2110. data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Taipei.rb +59 -0
  2111. data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Tashkent.rb +47 -0
  2112. data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Tbilisi.rb +78 -0
  2113. data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Tehran.rb +121 -0
  2114. data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Tokyo.rb +30 -0
  2115. data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Ulaanbaatar.rb +65 -0
  2116. data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Urumqi.rb +33 -0
  2117. data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Vladivostok.rb +164 -0
  2118. data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Yakutsk.rb +163 -0
  2119. data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Yekaterinburg.rb +165 -0
  2120. data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Yerevan.rb +165 -0
  2121. data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Atlantic/Azores.rb +270 -0
  2122. data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Atlantic/Cape_Verde.rb +23 -0
  2123. data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Atlantic/South_Georgia.rb +18 -0
  2124. data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Australia/Adelaide.rb +187 -0
  2125. data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Australia/Brisbane.rb +35 -0
  2126. data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Australia/Darwin.rb +29 -0
  2127. data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Australia/Hobart.rb +193 -0
  2128. data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Australia/Melbourne.rb +185 -0
  2129. data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Australia/Perth.rb +37 -0
  2130. data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Australia/Sydney.rb +185 -0
  2131. data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Etc/UTC.rb +16 -0
  2132. data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Europe/Amsterdam.rb +228 -0
  2133. data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Europe/Athens.rb +185 -0
  2134. data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Europe/Belgrade.rb +163 -0
  2135. data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Europe/Berlin.rb +188 -0
  2136. data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Europe/Bratislava.rb +13 -0
  2137. data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Europe/Brussels.rb +232 -0
  2138. data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Europe/Bucharest.rb +181 -0
  2139. data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Europe/Budapest.rb +197 -0
  2140. data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Europe/Copenhagen.rb +179 -0
  2141. data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Europe/Dublin.rb +276 -0
  2142. data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Europe/Helsinki.rb +163 -0
  2143. data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Europe/Istanbul.rb +218 -0
  2144. data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Europe/Kiev.rb +168 -0
  2145. data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Europe/Lisbon.rb +268 -0
  2146. data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Europe/Ljubljana.rb +13 -0
  2147. data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Europe/London.rb +288 -0
  2148. data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Europe/Madrid.rb +211 -0
  2149. data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Europe/Minsk.rb +170 -0
  2150. data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Europe/Moscow.rb +181 -0
  2151. data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Europe/Paris.rb +232 -0
  2152. data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Europe/Prague.rb +187 -0
  2153. data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Europe/Riga.rb +176 -0
  2154. data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Europe/Rome.rb +215 -0
  2155. data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Europe/Sarajevo.rb +13 -0
  2156. data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Europe/Skopje.rb +13 -0
  2157. data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Europe/Sofia.rb +173 -0
  2158. data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Europe/Stockholm.rb +165 -0
  2159. data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Europe/Tallinn.rb +172 -0
  2160. data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Europe/Vienna.rb +183 -0
  2161. data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Europe/Vilnius.rb +170 -0
  2162. data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Europe/Warsaw.rb +212 -0
  2163. data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Europe/Zagreb.rb +13 -0
  2164. data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Pacific/Auckland.rb +202 -0
  2165. data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Pacific/Fiji.rb +23 -0
  2166. data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Pacific/Guam.rb +22 -0
  2167. data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Pacific/Honolulu.rb +28 -0
  2168. data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Pacific/Majuro.rb +20 -0
  2169. data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Pacific/Midway.rb +25 -0
  2170. data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Pacific/Noumea.rb +25 -0
  2171. data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Pacific/Pago_Pago.rb +26 -0
  2172. data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Pacific/Port_Moresby.rb +20 -0
  2173. data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Pacific/Tongatapu.rb +27 -0
  2174. data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/info_timezone.rb +52 -0
  2175. data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/linked_timezone.rb +51 -0
  2176. data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/linked_timezone_info.rb +44 -0
  2177. data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/offset_rationals.rb +98 -0
  2178. data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/ruby_core_support.rb +56 -0
  2179. data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/time_or_datetime.rb +292 -0
  2180. data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/timezone.rb +508 -0
  2181. data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/timezone_definition.rb +56 -0
  2182. data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/timezone_info.rb +40 -0
  2183. data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/timezone_offset_info.rb +94 -0
  2184. data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/timezone_period.rb +198 -0
  2185. data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/timezone_transition_info.rb +129 -0
  2186. data/vendor/rails/activesupport/lib/active_support/version.rb +9 -0
  2187. data/vendor/rails/activesupport/lib/active_support/whiny_nil.rb +64 -0
  2188. data/vendor/rails/activesupport/lib/active_support/xml_mini.rb +31 -0
  2189. data/vendor/rails/activesupport/lib/active_support/xml_mini/jdom.rb +162 -0
  2190. data/vendor/rails/activesupport/lib/active_support/xml_mini/libxml.rb +73 -0
  2191. data/vendor/rails/activesupport/lib/active_support/xml_mini/libxmlsax.rb +74 -0
  2192. data/vendor/rails/activesupport/lib/active_support/xml_mini/nokogiri.rb +72 -0
  2193. data/vendor/rails/activesupport/lib/active_support/xml_mini/nokogirisax.rb +73 -0
  2194. data/vendor/rails/activesupport/lib/active_support/xml_mini/rexml.rb +108 -0
  2195. data/vendor/rails/activesupport/lib/activesupport.rb +2 -0
  2196. data/vendor/rails/railties/CHANGELOG +2188 -0
  2197. data/vendor/rails/railties/MIT-LICENSE +20 -0
  2198. data/vendor/rails/railties/README +243 -0
  2199. data/vendor/rails/railties/Rakefile +368 -0
  2200. data/vendor/rails/railties/bin/about +4 -0
  2201. data/vendor/rails/railties/bin/console +3 -0
  2202. data/vendor/rails/railties/bin/dbconsole +3 -0
  2203. data/vendor/rails/railties/bin/destroy +3 -0
  2204. data/vendor/rails/railties/bin/generate +3 -0
  2205. data/vendor/rails/railties/bin/performance/benchmarker +3 -0
  2206. data/vendor/rails/railties/bin/performance/profiler +3 -0
  2207. data/vendor/rails/railties/bin/plugin +3 -0
  2208. data/vendor/rails/railties/bin/rails +21 -0
  2209. data/vendor/rails/railties/bin/runner +3 -0
  2210. data/vendor/rails/railties/bin/server +3 -0
  2211. data/vendor/rails/railties/builtin/rails_info/rails/info.rb +131 -0
  2212. data/vendor/rails/railties/builtin/rails_info/rails/info_controller.rb +9 -0
  2213. data/vendor/rails/railties/builtin/rails_info/rails/info_helper.rb +2 -0
  2214. data/vendor/rails/railties/builtin/rails_info/rails_info_controller.rb +2 -0
  2215. data/vendor/rails/railties/configs/databases/frontbase.yml +28 -0
  2216. data/vendor/rails/railties/configs/databases/ibm_db.yml +62 -0
  2217. data/vendor/rails/railties/configs/databases/mysql.yml +60 -0
  2218. data/vendor/rails/railties/configs/databases/oracle.yml +39 -0
  2219. data/vendor/rails/railties/configs/databases/postgresql.yml +51 -0
  2220. data/vendor/rails/railties/configs/databases/sqlite2.yml +19 -0
  2221. data/vendor/rails/railties/configs/databases/sqlite3.yml +22 -0
  2222. data/vendor/rails/railties/configs/empty.log +0 -0
  2223. data/vendor/rails/railties/configs/initializers/backtrace_silencers.rb +7 -0
  2224. data/vendor/rails/railties/configs/initializers/cookie_verification_secret.rb +7 -0
  2225. data/vendor/rails/railties/configs/initializers/inflections.rb +10 -0
  2226. data/vendor/rails/railties/configs/initializers/mime_types.rb +5 -0
  2227. data/vendor/rails/railties/configs/initializers/new_rails_defaults.rb +21 -0
  2228. data/vendor/rails/railties/configs/initializers/session_store.rb +15 -0
  2229. data/vendor/rails/railties/configs/locales/en.yml +5 -0
  2230. data/vendor/rails/railties/configs/routes.rb +43 -0
  2231. data/vendor/rails/railties/configs/seeds.rb +7 -0
  2232. data/vendor/rails/railties/dispatches/config.ru +7 -0
  2233. data/vendor/rails/railties/dispatches/dispatch.fcgi +24 -0
  2234. data/vendor/rails/railties/dispatches/dispatch.rb +10 -0
  2235. data/vendor/rails/railties/dispatches/gateway.cgi +97 -0
  2236. data/vendor/rails/railties/doc/README_FOR_APP +2 -0
  2237. data/vendor/rails/railties/environments/boot.rb +110 -0
  2238. data/vendor/rails/railties/environments/development.rb +17 -0
  2239. data/vendor/rails/railties/environments/environment.rb +41 -0
  2240. data/vendor/rails/railties/environments/production.rb +28 -0
  2241. data/vendor/rails/railties/environments/test.rb +28 -0
  2242. data/vendor/rails/railties/fresh_rakefile +10 -0
  2243. data/vendor/rails/railties/guides/files/javascripts/code_highlighter.js +188 -0
  2244. data/vendor/rails/railties/guides/files/javascripts/guides.js +8 -0
  2245. data/vendor/rails/railties/guides/files/javascripts/highlighters.js +90 -0
  2246. data/vendor/rails/railties/guides/files/stylesheets/main.css +441 -0
  2247. data/vendor/rails/railties/guides/files/stylesheets/print.css +52 -0
  2248. data/vendor/rails/railties/guides/files/stylesheets/reset.css +43 -0
  2249. data/vendor/rails/railties/guides/files/stylesheets/style.css +13 -0
  2250. data/vendor/rails/railties/guides/files/stylesheets/syntax.css +31 -0
  2251. data/vendor/rails/railties/guides/images/belongs_to.png +0 -0
  2252. data/vendor/rails/railties/guides/images/book_icon.gif +0 -0
  2253. data/vendor/rails/railties/guides/images/bullet.gif +0 -0
  2254. data/vendor/rails/railties/guides/images/chapters_icon.gif +0 -0
  2255. data/vendor/rails/railties/guides/images/check_bullet.gif +0 -0
  2256. data/vendor/rails/railties/guides/images/credits_pic_blank.gif +0 -0
  2257. data/vendor/rails/railties/guides/images/csrf.png +0 -0
  2258. data/vendor/rails/railties/guides/images/customized_error_messages.png +0 -0
  2259. data/vendor/rails/railties/guides/images/error_messages.png +0 -0
  2260. data/vendor/rails/railties/guides/images/feature_tile.gif +0 -0
  2261. data/vendor/rails/railties/guides/images/footer_tile.gif +0 -0
  2262. data/vendor/rails/railties/guides/images/fxn.jpg +0 -0
  2263. data/vendor/rails/railties/guides/images/grey_bullet.gif +0 -0
  2264. data/vendor/rails/railties/guides/images/habtm.png +0 -0
  2265. data/vendor/rails/railties/guides/images/has_many.png +0 -0
  2266. data/vendor/rails/railties/guides/images/has_many_through.png +0 -0
  2267. data/vendor/rails/railties/guides/images/has_one.png +0 -0
  2268. data/vendor/rails/railties/guides/images/has_one_through.png +0 -0
  2269. data/vendor/rails/railties/guides/images/header_backdrop.png +0 -0
  2270. data/vendor/rails/railties/guides/images/header_tile.gif +0 -0
  2271. data/vendor/rails/railties/guides/images/i18n/demo_localized_pirate.png +0 -0
  2272. data/vendor/rails/railties/guides/images/i18n/demo_translated_en.png +0 -0
  2273. data/vendor/rails/railties/guides/images/i18n/demo_translated_pirate.png +0 -0
  2274. data/vendor/rails/railties/guides/images/i18n/demo_translation_missing.png +0 -0
  2275. data/vendor/rails/railties/guides/images/i18n/demo_untranslated.png +0 -0
  2276. data/vendor/rails/railties/guides/images/icons/README +5 -0
  2277. data/vendor/rails/railties/guides/images/icons/callouts/1.png +0 -0
  2278. data/vendor/rails/railties/guides/images/icons/callouts/10.png +0 -0
  2279. data/vendor/rails/railties/guides/images/icons/callouts/11.png +0 -0
  2280. data/vendor/rails/railties/guides/images/icons/callouts/12.png +0 -0
  2281. data/vendor/rails/railties/guides/images/icons/callouts/13.png +0 -0
  2282. data/vendor/rails/railties/guides/images/icons/callouts/14.png +0 -0
  2283. data/vendor/rails/railties/guides/images/icons/callouts/15.png +0 -0
  2284. data/vendor/rails/railties/guides/images/icons/callouts/2.png +0 -0
  2285. data/vendor/rails/railties/guides/images/icons/callouts/3.png +0 -0
  2286. data/vendor/rails/railties/guides/images/icons/callouts/4.png +0 -0
  2287. data/vendor/rails/railties/guides/images/icons/callouts/5.png +0 -0
  2288. data/vendor/rails/railties/guides/images/icons/callouts/6.png +0 -0
  2289. data/vendor/rails/railties/guides/images/icons/callouts/7.png +0 -0
  2290. data/vendor/rails/railties/guides/images/icons/callouts/8.png +0 -0
  2291. data/vendor/rails/railties/guides/images/icons/callouts/9.png +0 -0
  2292. data/vendor/rails/railties/guides/images/icons/caution.png +0 -0
  2293. data/vendor/rails/railties/guides/images/icons/example.png +0 -0
  2294. data/vendor/rails/railties/guides/images/icons/home.png +0 -0
  2295. data/vendor/rails/railties/guides/images/icons/important.png +0 -0
  2296. data/vendor/rails/railties/guides/images/icons/next.png +0 -0
  2297. data/vendor/rails/railties/guides/images/icons/note.png +0 -0
  2298. data/vendor/rails/railties/guides/images/icons/prev.png +0 -0
  2299. data/vendor/rails/railties/guides/images/icons/tip.png +0 -0
  2300. data/vendor/rails/railties/guides/images/icons/up.png +0 -0
  2301. data/vendor/rails/railties/guides/images/icons/warning.png +0 -0
  2302. data/vendor/rails/railties/guides/images/nav_arrow.gif +0 -0
  2303. data/vendor/rails/railties/guides/images/polymorphic.png +0 -0
  2304. data/vendor/rails/railties/guides/images/posts_index.png +0 -0
  2305. data/vendor/rails/railties/guides/images/rails_guides_logo.gif +0 -0
  2306. data/vendor/rails/railties/guides/images/rails_logo_remix.gif +0 -0
  2307. data/vendor/rails/railties/guides/images/rails_welcome.png +0 -0
  2308. data/vendor/rails/railties/guides/images/session_fixation.png +0 -0
  2309. data/vendor/rails/railties/guides/images/tab_grey.gif +0 -0
  2310. data/vendor/rails/railties/guides/images/tab_info.gif +0 -0
  2311. data/vendor/rails/railties/guides/images/tab_note.gif +0 -0
  2312. data/vendor/rails/railties/guides/images/tab_red.gif +0 -0
  2313. data/vendor/rails/railties/guides/images/tab_yellow.gif +0 -0
  2314. data/vendor/rails/railties/guides/images/tab_yellow.png +0 -0
  2315. data/vendor/rails/railties/guides/images/validation_error_messages.png +0 -0
  2316. data/vendor/rails/railties/guides/rails_guides.rb +42 -0
  2317. data/vendor/rails/railties/guides/rails_guides/generator.rb +138 -0
  2318. data/vendor/rails/railties/guides/rails_guides/helpers.rb +34 -0
  2319. data/vendor/rails/railties/guides/rails_guides/indexer.rb +55 -0
  2320. data/vendor/rails/railties/guides/rails_guides/textile_extensions.rb +41 -0
  2321. data/vendor/rails/railties/guides/source/2_2_release_notes.textile +422 -0
  2322. data/vendor/rails/railties/guides/source/2_3_release_notes.textile +610 -0
  2323. data/vendor/rails/railties/guides/source/action_controller_overview.textile +776 -0
  2324. data/vendor/rails/railties/guides/source/action_mailer_basics.textile +424 -0
  2325. data/vendor/rails/railties/guides/source/active_record_basics.textile +135 -0
  2326. data/vendor/rails/railties/guides/source/active_record_querying.textile +969 -0
  2327. data/vendor/rails/railties/guides/source/activerecord_validations_callbacks.textile +1086 -0
  2328. data/vendor/rails/railties/guides/source/association_basics.textile +1781 -0
  2329. data/vendor/rails/railties/guides/source/caching_with_rails.textile +524 -0
  2330. data/vendor/rails/railties/guides/source/command_line.textile +589 -0
  2331. data/vendor/rails/railties/guides/source/configuring.textile +234 -0
  2332. data/vendor/rails/railties/guides/source/contribute.textile +71 -0
  2333. data/vendor/rails/railties/guides/source/contributing_to_rails.textile +239 -0
  2334. data/vendor/rails/railties/guides/source/credits.erb.textile +52 -0
  2335. data/vendor/rails/railties/guides/source/debugging_rails_applications.textile +709 -0
  2336. data/vendor/rails/railties/guides/source/form_helpers.textile +766 -0
  2337. data/vendor/rails/railties/guides/source/getting_started.textile +1297 -0
  2338. data/vendor/rails/railties/guides/source/i18n.textile +912 -0
  2339. data/vendor/rails/railties/guides/source/index.erb.textile +124 -0
  2340. data/vendor/rails/railties/guides/source/layout.html.erb +103 -0
  2341. data/vendor/rails/railties/guides/source/layouts_and_rendering.textile +979 -0
  2342. data/vendor/rails/railties/guides/source/migrations.textile +591 -0
  2343. data/vendor/rails/railties/guides/source/nested_model_forms.textile +222 -0
  2344. data/vendor/rails/railties/guides/source/performance_testing.textile +531 -0
  2345. data/vendor/rails/railties/guides/source/plugins.textile +1512 -0
  2346. data/vendor/rails/railties/guides/source/rails_on_rack.textile +309 -0
  2347. data/vendor/rails/railties/guides/source/routing.textile +903 -0
  2348. data/vendor/rails/railties/guides/source/security.textile +986 -0
  2349. data/vendor/rails/railties/guides/source/testing.textile +951 -0
  2350. data/vendor/rails/railties/helpers/application_controller.rb +10 -0
  2351. data/vendor/rails/railties/helpers/application_helper.rb +3 -0
  2352. data/vendor/rails/railties/helpers/performance_test.rb +9 -0
  2353. data/vendor/rails/railties/helpers/test_helper.rb +38 -0
  2354. data/vendor/rails/railties/html/404.html +30 -0
  2355. data/vendor/rails/railties/html/422.html +30 -0
  2356. data/vendor/rails/railties/html/500.html +30 -0
  2357. data/vendor/rails/railties/html/favicon.ico +0 -0
  2358. data/vendor/rails/railties/html/images/rails.png +0 -0
  2359. data/vendor/rails/railties/html/index.html +275 -0
  2360. data/vendor/rails/railties/html/javascripts/application.js +2 -0
  2361. data/vendor/rails/railties/html/javascripts/controls.js +963 -0
  2362. data/vendor/rails/railties/html/javascripts/dragdrop.js +973 -0
  2363. data/vendor/rails/railties/html/javascripts/effects.js +1128 -0
  2364. data/vendor/rails/railties/html/javascripts/prototype.js +4320 -0
  2365. data/vendor/rails/railties/html/robots.txt +5 -0
  2366. data/vendor/rails/railties/lib/code_statistics.rb +107 -0
  2367. data/vendor/rails/railties/lib/commands.rb +17 -0
  2368. data/vendor/rails/railties/lib/commands/about.rb +3 -0
  2369. data/vendor/rails/railties/lib/commands/console.rb +45 -0
  2370. data/vendor/rails/railties/lib/commands/dbconsole.rb +87 -0
  2371. data/vendor/rails/railties/lib/commands/destroy.rb +6 -0
  2372. data/vendor/rails/railties/lib/commands/generate.rb +6 -0
  2373. data/vendor/rails/railties/lib/commands/ncgi/listener +86 -0
  2374. data/vendor/rails/railties/lib/commands/ncgi/tracker +69 -0
  2375. data/vendor/rails/railties/lib/commands/performance/benchmarker.rb +24 -0
  2376. data/vendor/rails/railties/lib/commands/performance/profiler.rb +50 -0
  2377. data/vendor/rails/railties/lib/commands/plugin.rb +968 -0
  2378. data/vendor/rails/railties/lib/commands/runner.rb +54 -0
  2379. data/vendor/rails/railties/lib/commands/server.rb +114 -0
  2380. data/vendor/rails/railties/lib/commands/update.rb +4 -0
  2381. data/vendor/rails/railties/lib/console_app.rb +30 -0
  2382. data/vendor/rails/railties/lib/console_sandbox.rb +6 -0
  2383. data/vendor/rails/railties/lib/console_with_helpers.rb +5 -0
  2384. data/vendor/rails/railties/lib/dispatcher.rb +24 -0
  2385. data/vendor/rails/railties/lib/fcgi_handler.rb +239 -0
  2386. data/vendor/rails/railties/lib/initializer.rb +1128 -0
  2387. data/vendor/rails/railties/lib/performance_test_help.rb +5 -0
  2388. data/vendor/rails/railties/lib/rails/backtrace_cleaner.rb +54 -0
  2389. data/vendor/rails/railties/lib/rails/gem_builder.rb +21 -0
  2390. data/vendor/rails/railties/lib/rails/gem_dependency.rb +318 -0
  2391. data/vendor/rails/railties/lib/rails/plugin.rb +179 -0
  2392. data/vendor/rails/railties/lib/rails/plugin/loader.rb +198 -0
  2393. data/vendor/rails/railties/lib/rails/plugin/locator.rb +100 -0
  2394. data/vendor/rails/railties/lib/rails/rack.rb +8 -0
  2395. data/vendor/rails/railties/lib/rails/rack/debugger.rb +23 -0
  2396. data/vendor/rails/railties/lib/rails/rack/log_tailer.rb +35 -0
  2397. data/vendor/rails/railties/lib/rails/rack/metal.rb +51 -0
  2398. data/vendor/rails/railties/lib/rails/rack/static.rb +46 -0
  2399. data/vendor/rails/railties/lib/rails/vendor_gem_source_index.rb +140 -0
  2400. data/vendor/rails/railties/lib/rails/version.rb +9 -0
  2401. data/vendor/rails/railties/lib/rails_generator.rb +46 -0
  2402. data/vendor/rails/railties/lib/rails_generator/base.rb +266 -0
  2403. data/vendor/rails/railties/lib/rails_generator/commands.rb +621 -0
  2404. data/vendor/rails/railties/lib/rails_generator/generated_attribute.rb +47 -0
  2405. data/vendor/rails/railties/lib/rails_generator/generators/applications/app/USAGE +9 -0
  2406. data/vendor/rails/railties/lib/rails_generator/generators/applications/app/app_generator.rb +266 -0
  2407. data/vendor/rails/railties/lib/rails_generator/generators/applications/app/scm/scm.rb +8 -0
  2408. data/vendor/rails/railties/lib/rails_generator/generators/applications/app/scm/svn.rb +7 -0
  2409. data/vendor/rails/railties/lib/rails_generator/generators/applications/app/template_runner.rb +401 -0
  2410. data/vendor/rails/railties/lib/rails_generator/generators/components/controller/USAGE +30 -0
  2411. data/vendor/rails/railties/lib/rails_generator/generators/components/controller/controller_generator.rb +43 -0
  2412. data/vendor/rails/railties/lib/rails_generator/generators/components/controller/templates/controller.rb +7 -0
  2413. data/vendor/rails/railties/lib/rails_generator/generators/components/controller/templates/functional_test.rb +8 -0
  2414. data/vendor/rails/railties/lib/rails_generator/generators/components/controller/templates/helper.rb +2 -0
  2415. data/vendor/rails/railties/lib/rails_generator/generators/components/controller/templates/helper_test.rb +4 -0
  2416. data/vendor/rails/railties/lib/rails_generator/generators/components/controller/templates/view.html.erb +2 -0
  2417. data/vendor/rails/railties/lib/rails_generator/generators/components/helper/USAGE +24 -0
  2418. data/vendor/rails/railties/lib/rails_generator/generators/components/helper/helper_generator.rb +25 -0
  2419. data/vendor/rails/railties/lib/rails_generator/generators/components/helper/templates/helper.rb +2 -0
  2420. data/vendor/rails/railties/lib/rails_generator/generators/components/helper/templates/helper_test.rb +4 -0
  2421. data/vendor/rails/railties/lib/rails_generator/generators/components/integration_test/USAGE +8 -0
  2422. data/vendor/rails/railties/lib/rails_generator/generators/components/integration_test/integration_test_generator.rb +16 -0
  2423. data/vendor/rails/railties/lib/rails_generator/generators/components/integration_test/templates/integration_test.rb +10 -0
  2424. data/vendor/rails/railties/lib/rails_generator/generators/components/mailer/USAGE +16 -0
  2425. data/vendor/rails/railties/lib/rails_generator/generators/components/mailer/mailer_generator.rb +30 -0
  2426. data/vendor/rails/railties/lib/rails_generator/generators/components/mailer/templates/fixture.erb +3 -0
  2427. data/vendor/rails/railties/lib/rails_generator/generators/components/mailer/templates/fixture.rhtml +0 -0
  2428. data/vendor/rails/railties/lib/rails_generator/generators/components/mailer/templates/mailer.rb +15 -0
  2429. data/vendor/rails/railties/lib/rails_generator/generators/components/mailer/templates/unit_test.rb +20 -0
  2430. data/vendor/rails/railties/lib/rails_generator/generators/components/mailer/templates/view.erb +3 -0
  2431. data/vendor/rails/railties/lib/rails_generator/generators/components/mailer/templates/view.rhtml +0 -0
  2432. data/vendor/rails/railties/lib/rails_generator/generators/components/metal/USAGE +8 -0
  2433. data/vendor/rails/railties/lib/rails_generator/generators/components/metal/metal_generator.rb +8 -0
  2434. data/vendor/rails/railties/lib/rails_generator/generators/components/metal/templates/metal.rb +12 -0
  2435. data/vendor/rails/railties/lib/rails_generator/generators/components/migration/USAGE +29 -0
  2436. data/vendor/rails/railties/lib/rails_generator/generators/components/migration/migration_generator.rb +20 -0
  2437. data/vendor/rails/railties/lib/rails_generator/generators/components/migration/templates/migration.rb +11 -0
  2438. data/vendor/rails/railties/lib/rails_generator/generators/components/model/USAGE +27 -0
  2439. data/vendor/rails/railties/lib/rails_generator/generators/components/model/model_generator.rb +52 -0
  2440. data/vendor/rails/railties/lib/rails_generator/generators/components/model/templates/fixtures.yml +23 -0
  2441. data/vendor/rails/railties/lib/rails_generator/generators/components/model/templates/migration.rb +16 -0
  2442. data/vendor/rails/railties/lib/rails_generator/generators/components/model/templates/model.rb +5 -0
  2443. data/vendor/rails/railties/lib/rails_generator/generators/components/model/templates/unit_test.rb +8 -0
  2444. data/vendor/rails/railties/lib/rails_generator/generators/components/observer/USAGE +13 -0
  2445. data/vendor/rails/railties/lib/rails_generator/generators/components/observer/observer_generator.rb +16 -0
  2446. data/vendor/rails/railties/lib/rails_generator/generators/components/observer/templates/observer.rb +2 -0
  2447. data/vendor/rails/railties/lib/rails_generator/generators/components/observer/templates/unit_test.rb +8 -0
  2448. data/vendor/rails/railties/lib/rails_generator/generators/components/performance_test/USAGE +8 -0
  2449. data/vendor/rails/railties/lib/rails_generator/generators/components/performance_test/performance_test_generator.rb +16 -0
  2450. data/vendor/rails/railties/lib/rails_generator/generators/components/performance_test/templates/performance_test.rb +9 -0
  2451. data/vendor/rails/railties/lib/rails_generator/generators/components/plugin/USAGE +25 -0
  2452. data/vendor/rails/railties/lib/rails_generator/generators/components/plugin/plugin_generator.rb +39 -0
  2453. data/vendor/rails/railties/lib/rails_generator/generators/components/plugin/templates/MIT-LICENSE +20 -0
  2454. data/vendor/rails/railties/lib/rails_generator/generators/components/plugin/templates/README +13 -0
  2455. data/vendor/rails/railties/lib/rails_generator/generators/components/plugin/templates/Rakefile +23 -0
  2456. data/vendor/rails/railties/lib/rails_generator/generators/components/plugin/templates/USAGE +8 -0
  2457. data/vendor/rails/railties/lib/rails_generator/generators/components/plugin/templates/generator.rb +8 -0
  2458. data/vendor/rails/railties/lib/rails_generator/generators/components/plugin/templates/init.rb +1 -0
  2459. data/vendor/rails/railties/lib/rails_generator/generators/components/plugin/templates/install.rb +1 -0
  2460. data/vendor/rails/railties/lib/rails_generator/generators/components/plugin/templates/plugin.rb +1 -0
  2461. data/vendor/rails/railties/lib/rails_generator/generators/components/plugin/templates/tasks.rake +4 -0
  2462. data/vendor/rails/railties/lib/rails_generator/generators/components/plugin/templates/test_helper.rb +3 -0
  2463. data/vendor/rails/railties/lib/rails_generator/generators/components/plugin/templates/uninstall.rb +1 -0
  2464. data/vendor/rails/railties/lib/rails_generator/generators/components/plugin/templates/unit_test.rb +8 -0
  2465. data/vendor/rails/railties/lib/rails_generator/generators/components/resource/USAGE +23 -0
  2466. data/vendor/rails/railties/lib/rails_generator/generators/components/resource/resource_generator.rb +76 -0
  2467. data/vendor/rails/railties/lib/rails_generator/generators/components/resource/templates/controller.rb +2 -0
  2468. data/vendor/rails/railties/lib/rails_generator/generators/components/resource/templates/functional_test.rb +8 -0
  2469. data/vendor/rails/railties/lib/rails_generator/generators/components/resource/templates/helper.rb +2 -0
  2470. data/vendor/rails/railties/lib/rails_generator/generators/components/resource/templates/helper_test.rb +4 -0
  2471. data/vendor/rails/railties/lib/rails_generator/generators/components/scaffold/USAGE +29 -0
  2472. data/vendor/rails/railties/lib/rails_generator/generators/components/scaffold/scaffold_generator.rb +103 -0
  2473. data/vendor/rails/railties/lib/rails_generator/generators/components/scaffold/templates/controller.rb +83 -0
  2474. data/vendor/rails/railties/lib/rails_generator/generators/components/scaffold/templates/functional_test.rb +45 -0
  2475. data/vendor/rails/railties/lib/rails_generator/generators/components/scaffold/templates/helper.rb +2 -0
  2476. data/vendor/rails/railties/lib/rails_generator/generators/components/scaffold/templates/helper_test.rb +4 -0
  2477. data/vendor/rails/railties/lib/rails_generator/generators/components/scaffold/templates/layout.html.erb +17 -0
  2478. data/vendor/rails/railties/lib/rails_generator/generators/components/scaffold/templates/style.css +54 -0
  2479. data/vendor/rails/railties/lib/rails_generator/generators/components/scaffold/templates/view_edit.html.erb +18 -0
  2480. data/vendor/rails/railties/lib/rails_generator/generators/components/scaffold/templates/view_index.html.erb +24 -0
  2481. data/vendor/rails/railties/lib/rails_generator/generators/components/scaffold/templates/view_new.html.erb +17 -0
  2482. data/vendor/rails/railties/lib/rails_generator/generators/components/scaffold/templates/view_show.html.erb +10 -0
  2483. data/vendor/rails/railties/lib/rails_generator/generators/components/session_migration/USAGE +10 -0
  2484. data/vendor/rails/railties/lib/rails_generator/generators/components/session_migration/session_migration_generator.rb +18 -0
  2485. data/vendor/rails/railties/lib/rails_generator/generators/components/session_migration/templates/migration.rb +16 -0
  2486. data/vendor/rails/railties/lib/rails_generator/lookup.rb +249 -0
  2487. data/vendor/rails/railties/lib/rails_generator/manifest.rb +53 -0
  2488. data/vendor/rails/railties/lib/rails_generator/options.rb +150 -0
  2489. data/vendor/rails/railties/lib/rails_generator/scripts.rb +89 -0
  2490. data/vendor/rails/railties/lib/rails_generator/scripts/destroy.rb +29 -0
  2491. data/vendor/rails/railties/lib/rails_generator/scripts/generate.rb +7 -0
  2492. data/vendor/rails/railties/lib/rails_generator/scripts/update.rb +12 -0
  2493. data/vendor/rails/railties/lib/rails_generator/secret_key_generator.rb +24 -0
  2494. data/vendor/rails/railties/lib/rails_generator/simple_logger.rb +46 -0
  2495. data/vendor/rails/railties/lib/rails_generator/spec.rb +44 -0
  2496. data/vendor/rails/railties/lib/railties_path.rb +1 -0
  2497. data/vendor/rails/railties/lib/ruby_version_check.rb +17 -0
  2498. data/vendor/rails/railties/lib/rubyprof_ext.rb +35 -0
  2499. data/vendor/rails/railties/lib/source_annotation_extractor.rb +102 -0
  2500. data/vendor/rails/railties/lib/tasks/annotations.rake +20 -0
  2501. data/vendor/rails/railties/lib/tasks/databases.rake +436 -0
  2502. data/vendor/rails/railties/lib/tasks/documentation.rake +88 -0
  2503. data/vendor/rails/railties/lib/tasks/framework.rake +146 -0
  2504. data/vendor/rails/railties/lib/tasks/gems.rake +78 -0
  2505. data/vendor/rails/railties/lib/tasks/log.rake +9 -0
  2506. data/vendor/rails/railties/lib/tasks/middleware.rake +7 -0
  2507. data/vendor/rails/railties/lib/tasks/misc.rake +63 -0
  2508. data/vendor/rails/railties/lib/tasks/rails.rb +14 -0
  2509. data/vendor/rails/railties/lib/tasks/routes.rake +18 -0
  2510. data/vendor/rails/railties/lib/tasks/statistics.rake +17 -0
  2511. data/vendor/rails/railties/lib/tasks/testing.rake +139 -0
  2512. data/vendor/rails/railties/lib/test_help.rb +38 -0
  2513. data/vendor/rails/railties/lib/webrick_server.rb +156 -0
  2514. data/vendor/redcloth/Rakefile +196 -0
  2515. data/vendor/redcloth/bin/redcloth +3 -0
  2516. data/vendor/redcloth/doc/CHANGELOG +160 -0
  2517. data/vendor/redcloth/doc/COPYING +25 -0
  2518. data/vendor/redcloth/doc/README +106 -0
  2519. data/vendor/redcloth/doc/REFERENCE +216 -0
  2520. data/vendor/redcloth/doc/make.rb +359 -0
  2521. data/vendor/redcloth/lib/rctodb.rb +1107 -0
  2522. data/vendor/redcloth/lib/redcloth.rb +1130 -0
  2523. data/vendor/redcloth/run-tests.rb +28 -0
  2524. data/vendor/redcloth/setup.rb +1376 -0
  2525. data/vendor/redcloth/tests/code.yml +105 -0
  2526. data/vendor/redcloth/tests/images.yml +171 -0
  2527. data/vendor/redcloth/tests/instiki.yml +39 -0
  2528. data/vendor/redcloth/tests/links.yml +155 -0
  2529. data/vendor/redcloth/tests/lists.yml +77 -0
  2530. data/vendor/redcloth/tests/markdown.yml +218 -0
  2531. data/vendor/redcloth/tests/poignant.yml +64 -0
  2532. data/vendor/redcloth/tests/table.yml +198 -0
  2533. data/vendor/redcloth/tests/textism.yml +406 -0
  2534. metadata +2741 -0
@@ -0,0 +1,4874 @@
1
+ /* Prototype JavaScript framework, version 1.6.1
2
+ * (c) 2005-2009 Sam Stephenson
3
+ *
4
+ * Prototype is freely distributable under the terms of an MIT-style license.
5
+ * For details, see the Prototype web site: http://www.prototypejs.org/
6
+ *
7
+ *--------------------------------------------------------------------------*/
8
+
9
+ var Prototype = {
10
+ Version: '1.6.1',
11
+
12
+ Browser: (function(){
13
+ var ua = navigator.userAgent;
14
+ var isOpera = Object.prototype.toString.call(window.opera) == '[object Opera]';
15
+ return {
16
+ IE: !!window.attachEvent && !isOpera,
17
+ Opera: isOpera,
18
+ WebKit: ua.indexOf('AppleWebKit/') > -1,
19
+ Gecko: ua.indexOf('Gecko') > -1 && ua.indexOf('KHTML') === -1,
20
+ MobileSafari: /Apple.*Mobile.*Safari/.test(ua)
21
+ }
22
+ })(),
23
+
24
+ BrowserFeatures: {
25
+ XPath: !!document.evaluate,
26
+ SelectorsAPI: !!document.querySelector,
27
+ ElementExtensions: (function() {
28
+ var constructor = window.Element || window.HTMLElement;
29
+ return !!(constructor && constructor.prototype);
30
+ })(),
31
+ SpecificElementExtensions: (function() {
32
+ if (typeof window.HTMLDivElement !== 'undefined')
33
+ return true;
34
+
35
+ var div = document.createElement('div');
36
+ var form = document.createElement('form');
37
+ var isSupported = false;
38
+
39
+ if (div['__proto__'] && (div['__proto__'] !== form['__proto__'])) {
40
+ isSupported = true;
41
+ }
42
+
43
+ div = form = null;
44
+
45
+ return isSupported;
46
+ })()
47
+ },
48
+
49
+ ScriptFragment: '<script[^>]*>([\\S\\s]*?)<\/script>',
50
+ JSONFilter: /^\/\*-secure-([\s\S]*)\*\/\s*$/,
51
+
52
+ emptyFunction: function() { },
53
+ K: function(x) { return x }
54
+ };
55
+
56
+ if (Prototype.Browser.MobileSafari)
57
+ Prototype.BrowserFeatures.SpecificElementExtensions = false;
58
+
59
+
60
+ var Abstract = { };
61
+
62
+
63
+ var Try = {
64
+ these: function() {
65
+ var returnValue;
66
+
67
+ for (var i = 0, length = arguments.length; i < length; i++) {
68
+ var lambda = arguments[i];
69
+ try {
70
+ returnValue = lambda();
71
+ break;
72
+ } catch (e) { }
73
+ }
74
+
75
+ return returnValue;
76
+ }
77
+ };
78
+
79
+ /* Based on Alex Arnell's inheritance implementation. */
80
+
81
+ var Class = (function() {
82
+ function subclass() {};
83
+ function create() {
84
+ var parent = null, properties = $A(arguments);
85
+ if (Object.isFunction(properties[0]))
86
+ parent = properties.shift();
87
+
88
+ function klass() {
89
+ this.initialize.apply(this, arguments);
90
+ }
91
+
92
+ Object.extend(klass, Class.Methods);
93
+ klass.superclass = parent;
94
+ klass.subclasses = [];
95
+
96
+ if (parent) {
97
+ subclass.prototype = parent.prototype;
98
+ klass.prototype = new subclass;
99
+ parent.subclasses.push(klass);
100
+ }
101
+
102
+ for (var i = 0; i < properties.length; i++)
103
+ klass.addMethods(properties[i]);
104
+
105
+ if (!klass.prototype.initialize)
106
+ klass.prototype.initialize = Prototype.emptyFunction;
107
+
108
+ klass.prototype.constructor = klass;
109
+ return klass;
110
+ }
111
+
112
+ function addMethods(source) {
113
+ var ancestor = this.superclass && this.superclass.prototype;
114
+ var properties = Object.keys(source);
115
+
116
+ if (!Object.keys({ toString: true }).length) {
117
+ if (source.toString != Object.prototype.toString)
118
+ properties.push("toString");
119
+ if (source.valueOf != Object.prototype.valueOf)
120
+ properties.push("valueOf");
121
+ }
122
+
123
+ for (var i = 0, length = properties.length; i < length; i++) {
124
+ var property = properties[i], value = source[property];
125
+ if (ancestor && Object.isFunction(value) &&
126
+ value.argumentNames().first() == "$super") {
127
+ var method = value;
128
+ value = (function(m) {
129
+ return function() { return ancestor[m].apply(this, arguments); };
130
+ })(property).wrap(method);
131
+
132
+ value.valueOf = method.valueOf.bind(method);
133
+ value.toString = method.toString.bind(method);
134
+ }
135
+ this.prototype[property] = value;
136
+ }
137
+
138
+ return this;
139
+ }
140
+
141
+ return {
142
+ create: create,
143
+ Methods: {
144
+ addMethods: addMethods
145
+ }
146
+ };
147
+ })();
148
+ (function() {
149
+
150
+ var _toString = Object.prototype.toString;
151
+
152
+ function extend(destination, source) {
153
+ for (var property in source)
154
+ destination[property] = source[property];
155
+ return destination;
156
+ }
157
+
158
+ function inspect(object) {
159
+ try {
160
+ if (isUndefined(object)) return 'undefined';
161
+ if (object === null) return 'null';
162
+ return object.inspect ? object.inspect() : String(object);
163
+ } catch (e) {
164
+ if (e instanceof RangeError) return '...';
165
+ throw e;
166
+ }
167
+ }
168
+
169
+ function toJSON(object) {
170
+ var type = typeof object;
171
+ switch (type) {
172
+ case 'undefined':
173
+ case 'function':
174
+ case 'unknown': return;
175
+ case 'boolean': return object.toString();
176
+ }
177
+
178
+ if (object === null) return 'null';
179
+ if (object.toJSON) return object.toJSON();
180
+ if (isElement(object)) return;
181
+
182
+ var results = [];
183
+ for (var property in object) {
184
+ var value = toJSON(object[property]);
185
+ if (!isUndefined(value))
186
+ results.push(property.toJSON() + ': ' + value);
187
+ }
188
+
189
+ return '{' + results.join(', ') + '}';
190
+ }
191
+
192
+ function toQueryString(object) {
193
+ return $H(object).toQueryString();
194
+ }
195
+
196
+ function toHTML(object) {
197
+ return object && object.toHTML ? object.toHTML() : String.interpret(object);
198
+ }
199
+
200
+ function keys(object) {
201
+ var results = [];
202
+ for (var property in object)
203
+ results.push(property);
204
+ return results;
205
+ }
206
+
207
+ function values(object) {
208
+ var results = [];
209
+ for (var property in object)
210
+ results.push(object[property]);
211
+ return results;
212
+ }
213
+
214
+ function clone(object) {
215
+ return extend({ }, object);
216
+ }
217
+
218
+ function isElement(object) {
219
+ return !!(object && object.nodeType == 1);
220
+ }
221
+
222
+ function isArray(object) {
223
+ return _toString.call(object) == "[object Array]";
224
+ }
225
+
226
+
227
+ function isHash(object) {
228
+ return object instanceof Hash;
229
+ }
230
+
231
+ function isFunction(object) {
232
+ return typeof object === "function";
233
+ }
234
+
235
+ function isString(object) {
236
+ return _toString.call(object) == "[object String]";
237
+ }
238
+
239
+ function isNumber(object) {
240
+ return _toString.call(object) == "[object Number]";
241
+ }
242
+
243
+ function isUndefined(object) {
244
+ return typeof object === "undefined";
245
+ }
246
+
247
+ extend(Object, {
248
+ extend: extend,
249
+ inspect: inspect,
250
+ toJSON: toJSON,
251
+ toQueryString: toQueryString,
252
+ toHTML: toHTML,
253
+ keys: keys,
254
+ values: values,
255
+ clone: clone,
256
+ isElement: isElement,
257
+ isArray: isArray,
258
+ isHash: isHash,
259
+ isFunction: isFunction,
260
+ isString: isString,
261
+ isNumber: isNumber,
262
+ isUndefined: isUndefined
263
+ });
264
+ })();
265
+ Object.extend(Function.prototype, (function() {
266
+ var slice = Array.prototype.slice;
267
+
268
+ function update(array, args) {
269
+ var arrayLength = array.length, length = args.length;
270
+ while (length--) array[arrayLength + length] = args[length];
271
+ return array;
272
+ }
273
+
274
+ function merge(array, args) {
275
+ array = slice.call(array, 0);
276
+ return update(array, args);
277
+ }
278
+
279
+ function argumentNames() {
280
+ var names = this.toString().match(/^[\s\(]*function[^(]*\(([^)]*)\)/)[1]
281
+ .replace(/\/\/.*?[\r\n]|\/\*(?:.|[\r\n])*?\*\//g, '')
282
+ .replace(/\s+/g, '').split(',');
283
+ return names.length == 1 && !names[0] ? [] : names;
284
+ }
285
+
286
+ function bind(context) {
287
+ if (arguments.length < 2 && Object.isUndefined(arguments[0])) return this;
288
+ var __method = this, args = slice.call(arguments, 1);
289
+ return function() {
290
+ var a = merge(args, arguments);
291
+ return __method.apply(context, a);
292
+ }
293
+ }
294
+
295
+ function bindAsEventListener(context) {
296
+ var __method = this, args = slice.call(arguments, 1);
297
+ return function(event) {
298
+ var a = update([event || window.event], args);
299
+ return __method.apply(context, a);
300
+ }
301
+ }
302
+
303
+ function curry() {
304
+ if (!arguments.length) return this;
305
+ var __method = this, args = slice.call(arguments, 0);
306
+ return function() {
307
+ var a = merge(args, arguments);
308
+ return __method.apply(this, a);
309
+ }
310
+ }
311
+
312
+ function delay(timeout) {
313
+ var __method = this, args = slice.call(arguments, 1);
314
+ timeout = timeout * 1000
315
+ return window.setTimeout(function() {
316
+ return __method.apply(__method, args);
317
+ }, timeout);
318
+ }
319
+
320
+ function defer() {
321
+ var args = update([0.01], arguments);
322
+ return this.delay.apply(this, args);
323
+ }
324
+
325
+ function wrap(wrapper) {
326
+ var __method = this;
327
+ return function() {
328
+ var a = update([__method.bind(this)], arguments);
329
+ return wrapper.apply(this, a);
330
+ }
331
+ }
332
+
333
+ function methodize() {
334
+ if (this._methodized) return this._methodized;
335
+ var __method = this;
336
+ return this._methodized = function() {
337
+ var a = update([this], arguments);
338
+ return __method.apply(null, a);
339
+ };
340
+ }
341
+
342
+ return {
343
+ argumentNames: argumentNames,
344
+ bind: bind,
345
+ bindAsEventListener: bindAsEventListener,
346
+ curry: curry,
347
+ delay: delay,
348
+ defer: defer,
349
+ wrap: wrap,
350
+ methodize: methodize
351
+ }
352
+ })());
353
+
354
+
355
+ Date.prototype.toJSON = function() {
356
+ return '"' + this.getUTCFullYear() + '-' +
357
+ (this.getUTCMonth() + 1).toPaddedString(2) + '-' +
358
+ this.getUTCDate().toPaddedString(2) + 'T' +
359
+ this.getUTCHours().toPaddedString(2) + ':' +
360
+ this.getUTCMinutes().toPaddedString(2) + ':' +
361
+ this.getUTCSeconds().toPaddedString(2) + 'Z"';
362
+ };
363
+
364
+
365
+ RegExp.prototype.match = RegExp.prototype.test;
366
+
367
+ RegExp.escape = function(str) {
368
+ return String(str).replace(/([.*+?^=!:${}()|[\]\/\\])/g, '\\$1');
369
+ };
370
+ var PeriodicalExecuter = Class.create({
371
+ initialize: function(callback, frequency) {
372
+ this.callback = callback;
373
+ this.frequency = frequency;
374
+ this.currentlyExecuting = false;
375
+
376
+ this.registerCallback();
377
+ },
378
+
379
+ registerCallback: function() {
380
+ this.timer = setInterval(this.onTimerEvent.bind(this), this.frequency * 1000);
381
+ },
382
+
383
+ execute: function() {
384
+ this.callback(this);
385
+ },
386
+
387
+ stop: function() {
388
+ if (!this.timer) return;
389
+ clearInterval(this.timer);
390
+ this.timer = null;
391
+ },
392
+
393
+ onTimerEvent: function() {
394
+ if (!this.currentlyExecuting) {
395
+ try {
396
+ this.currentlyExecuting = true;
397
+ this.execute();
398
+ this.currentlyExecuting = false;
399
+ } catch(e) {
400
+ this.currentlyExecuting = false;
401
+ throw e;
402
+ }
403
+ }
404
+ }
405
+ });
406
+ Object.extend(String, {
407
+ interpret: function(value) {
408
+ return value == null ? '' : String(value);
409
+ },
410
+ specialChar: {
411
+ '\b': '\\b',
412
+ '\t': '\\t',
413
+ '\n': '\\n',
414
+ '\f': '\\f',
415
+ '\r': '\\r',
416
+ '\\': '\\\\'
417
+ }
418
+ });
419
+
420
+ Object.extend(String.prototype, (function() {
421
+
422
+ function prepareReplacement(replacement) {
423
+ if (Object.isFunction(replacement)) return replacement;
424
+ var template = new Template(replacement);
425
+ return function(match) { return template.evaluate(match) };
426
+ }
427
+
428
+ function gsub(pattern, replacement) {
429
+ var result = '', source = this, match;
430
+ replacement = prepareReplacement(replacement);
431
+
432
+ if (Object.isString(pattern))
433
+ pattern = RegExp.escape(pattern);
434
+
435
+ if (!(pattern.length || pattern.source)) {
436
+ replacement = replacement('');
437
+ return replacement + source.split('').join(replacement) + replacement;
438
+ }
439
+
440
+ while (source.length > 0) {
441
+ if (match = source.match(pattern)) {
442
+ result += source.slice(0, match.index);
443
+ result += String.interpret(replacement(match));
444
+ source = source.slice(match.index + match[0].length);
445
+ } else {
446
+ result += source, source = '';
447
+ }
448
+ }
449
+ return result;
450
+ }
451
+
452
+ function sub(pattern, replacement, count) {
453
+ replacement = prepareReplacement(replacement);
454
+ count = Object.isUndefined(count) ? 1 : count;
455
+
456
+ return this.gsub(pattern, function(match) {
457
+ if (--count < 0) return match[0];
458
+ return replacement(match);
459
+ });
460
+ }
461
+
462
+ function scan(pattern, iterator) {
463
+ this.gsub(pattern, iterator);
464
+ return String(this);
465
+ }
466
+
467
+ function truncate(length, truncation) {
468
+ length = length || 30;
469
+ truncation = Object.isUndefined(truncation) ? '...' : truncation;
470
+ return this.length > length ?
471
+ this.slice(0, length - truncation.length) + truncation : String(this);
472
+ }
473
+
474
+ function strip() {
475
+ return this.replace(/^\s+/, '').replace(/\s+$/, '');
476
+ }
477
+
478
+ function stripTags() {
479
+ return this.replace(/<\w+(\s+("[^"]*"|'[^']*'|[^>])+)?>|<\/\w+>/gi, '');
480
+ }
481
+
482
+ function stripScripts() {
483
+ return this.replace(new RegExp(Prototype.ScriptFragment, 'img'), '');
484
+ }
485
+
486
+ function extractScripts() {
487
+ var matchAll = new RegExp(Prototype.ScriptFragment, 'img');
488
+ var matchOne = new RegExp(Prototype.ScriptFragment, 'im');
489
+ return (this.match(matchAll) || []).map(function(scriptTag) {
490
+ return (scriptTag.match(matchOne) || ['', ''])[1];
491
+ });
492
+ }
493
+
494
+ function evalScripts() {
495
+ return this.extractScripts().map(function(script) { return eval(script) });
496
+ }
497
+
498
+ function escapeHTML() {
499
+ return this.replace(/&/g,'&amp;').replace(/</g,'&lt;').replace(/>/g,'&gt;');
500
+ }
501
+
502
+ function unescapeHTML() {
503
+ return this.stripTags().replace(/&lt;/g,'<').replace(/&gt;/g,'>').replace(/&amp;/g,'&');
504
+ }
505
+
506
+
507
+ function toQueryParams(separator) {
508
+ var match = this.strip().match(/([^?#]*)(#.*)?$/);
509
+ if (!match) return { };
510
+
511
+ return match[1].split(separator || '&').inject({ }, function(hash, pair) {
512
+ if ((pair = pair.split('='))[0]) {
513
+ var key = decodeURIComponent(pair.shift());
514
+ var value = pair.length > 1 ? pair.join('=') : pair[0];
515
+ if (value != undefined) value = decodeURIComponent(value);
516
+
517
+ if (key in hash) {
518
+ if (!Object.isArray(hash[key])) hash[key] = [hash[key]];
519
+ hash[key].push(value);
520
+ }
521
+ else hash[key] = value;
522
+ }
523
+ return hash;
524
+ });
525
+ }
526
+
527
+ function toArray() {
528
+ return this.split('');
529
+ }
530
+
531
+ function succ() {
532
+ return this.slice(0, this.length - 1) +
533
+ String.fromCharCode(this.charCodeAt(this.length - 1) + 1);
534
+ }
535
+
536
+ function times(count) {
537
+ return count < 1 ? '' : new Array(count + 1).join(this);
538
+ }
539
+
540
+ function camelize() {
541
+ var parts = this.split('-'), len = parts.length;
542
+ if (len == 1) return parts[0];
543
+
544
+ var camelized = this.charAt(0) == '-'
545
+ ? parts[0].charAt(0).toUpperCase() + parts[0].substring(1)
546
+ : parts[0];
547
+
548
+ for (var i = 1; i < len; i++)
549
+ camelized += parts[i].charAt(0).toUpperCase() + parts[i].substring(1);
550
+
551
+ return camelized;
552
+ }
553
+
554
+ function capitalize() {
555
+ return this.charAt(0).toUpperCase() + this.substring(1).toLowerCase();
556
+ }
557
+
558
+ function underscore() {
559
+ return this.replace(/::/g, '/')
560
+ .replace(/([A-Z]+)([A-Z][a-z])/g, '$1_$2')
561
+ .replace(/([a-z\d])([A-Z])/g, '$1_$2')
562
+ .replace(/-/g, '_')
563
+ .toLowerCase();
564
+ }
565
+
566
+ function dasherize() {
567
+ return this.replace(/_/g, '-');
568
+ }
569
+
570
+ function inspect(useDoubleQuotes) {
571
+ var escapedString = this.replace(/[\x00-\x1f\\]/g, function(character) {
572
+ if (character in String.specialChar) {
573
+ return String.specialChar[character];
574
+ }
575
+ return '\\u00' + character.charCodeAt().toPaddedString(2, 16);
576
+ });
577
+ if (useDoubleQuotes) return '"' + escapedString.replace(/"/g, '\\"') + '"';
578
+ return "'" + escapedString.replace(/'/g, '\\\'') + "'";
579
+ }
580
+
581
+ function toJSON() {
582
+ return this.inspect(true);
583
+ }
584
+
585
+ function unfilterJSON(filter) {
586
+ return this.replace(filter || Prototype.JSONFilter, '$1');
587
+ }
588
+
589
+ function isJSON() {
590
+ var str = this;
591
+ if (str.blank()) return false;
592
+ str = this.replace(/\\./g, '@').replace(/"[^"\\\n\r]*"/g, '');
593
+ return (/^[,:{}\[\]0-9.\-+Eaeflnr-u \n\r\t]*$/).test(str);
594
+ }
595
+
596
+ function evalJSON(sanitize) {
597
+ var json = this.unfilterJSON();
598
+ try {
599
+ if (!sanitize || json.isJSON()) return eval('(' + json + ')');
600
+ } catch (e) { }
601
+ throw new SyntaxError('Badly formed JSON string: ' + this.inspect());
602
+ }
603
+
604
+ function include(pattern) {
605
+ return this.indexOf(pattern) > -1;
606
+ }
607
+
608
+ function startsWith(pattern) {
609
+ return this.indexOf(pattern) === 0;
610
+ }
611
+
612
+ function endsWith(pattern) {
613
+ var d = this.length - pattern.length;
614
+ return d >= 0 && this.lastIndexOf(pattern) === d;
615
+ }
616
+
617
+ function empty() {
618
+ return this == '';
619
+ }
620
+
621
+ function blank() {
622
+ return /^\s*$/.test(this);
623
+ }
624
+
625
+ function interpolate(object, pattern) {
626
+ return new Template(this, pattern).evaluate(object);
627
+ }
628
+
629
+ return {
630
+ gsub: gsub,
631
+ sub: sub,
632
+ scan: scan,
633
+ truncate: truncate,
634
+ strip: String.prototype.trim ? String.prototype.trim : strip,
635
+ stripTags: stripTags,
636
+ stripScripts: stripScripts,
637
+ extractScripts: extractScripts,
638
+ evalScripts: evalScripts,
639
+ escapeHTML: escapeHTML,
640
+ unescapeHTML: unescapeHTML,
641
+ toQueryParams: toQueryParams,
642
+ parseQuery: toQueryParams,
643
+ toArray: toArray,
644
+ succ: succ,
645
+ times: times,
646
+ camelize: camelize,
647
+ capitalize: capitalize,
648
+ underscore: underscore,
649
+ dasherize: dasherize,
650
+ inspect: inspect,
651
+ toJSON: toJSON,
652
+ unfilterJSON: unfilterJSON,
653
+ isJSON: isJSON,
654
+ evalJSON: evalJSON,
655
+ include: include,
656
+ startsWith: startsWith,
657
+ endsWith: endsWith,
658
+ empty: empty,
659
+ blank: blank,
660
+ interpolate: interpolate
661
+ };
662
+ })());
663
+
664
+ var Template = Class.create({
665
+ initialize: function(template, pattern) {
666
+ this.template = template.toString();
667
+ this.pattern = pattern || Template.Pattern;
668
+ },
669
+
670
+ evaluate: function(object) {
671
+ if (object && Object.isFunction(object.toTemplateReplacements))
672
+ object = object.toTemplateReplacements();
673
+
674
+ return this.template.gsub(this.pattern, function(match) {
675
+ if (object == null) return (match[1] + '');
676
+
677
+ var before = match[1] || '';
678
+ if (before == '\\') return match[2];
679
+
680
+ var ctx = object, expr = match[3];
681
+ var pattern = /^([^.[]+|\[((?:.*?[^\\])?)\])(\.|\[|$)/;
682
+ match = pattern.exec(expr);
683
+ if (match == null) return before;
684
+
685
+ while (match != null) {
686
+ var comp = match[1].startsWith('[') ? match[2].replace(/\\\\]/g, ']') : match[1];
687
+ ctx = ctx[comp];
688
+ if (null == ctx || '' == match[3]) break;
689
+ expr = expr.substring('[' == match[3] ? match[1].length : match[0].length);
690
+ match = pattern.exec(expr);
691
+ }
692
+
693
+ return before + String.interpret(ctx);
694
+ });
695
+ }
696
+ });
697
+ Template.Pattern = /(^|.|\r|\n)(#\{(.*?)\})/;
698
+
699
+ var $break = { };
700
+
701
+ var Enumerable = (function() {
702
+ function each(iterator, context) {
703
+ var index = 0;
704
+ try {
705
+ this._each(function(value) {
706
+ iterator.call(context, value, index++);
707
+ });
708
+ } catch (e) {
709
+ if (e != $break) throw e;
710
+ }
711
+ return this;
712
+ }
713
+
714
+ function eachSlice(number, iterator, context) {
715
+ var index = -number, slices = [], array = this.toArray();
716
+ if (number < 1) return array;
717
+ while ((index += number) < array.length)
718
+ slices.push(array.slice(index, index+number));
719
+ return slices.collect(iterator, context);
720
+ }
721
+
722
+ function all(iterator, context) {
723
+ iterator = iterator || Prototype.K;
724
+ var result = true;
725
+ this.each(function(value, index) {
726
+ result = result && !!iterator.call(context, value, index);
727
+ if (!result) throw $break;
728
+ });
729
+ return result;
730
+ }
731
+
732
+ function any(iterator, context) {
733
+ iterator = iterator || Prototype.K;
734
+ var result = false;
735
+ this.each(function(value, index) {
736
+ if (result = !!iterator.call(context, value, index))
737
+ throw $break;
738
+ });
739
+ return result;
740
+ }
741
+
742
+ function collect(iterator, context) {
743
+ iterator = iterator || Prototype.K;
744
+ var results = [];
745
+ this.each(function(value, index) {
746
+ results.push(iterator.call(context, value, index));
747
+ });
748
+ return results;
749
+ }
750
+
751
+ function detect(iterator, context) {
752
+ var result;
753
+ this.each(function(value, index) {
754
+ if (iterator.call(context, value, index)) {
755
+ result = value;
756
+ throw $break;
757
+ }
758
+ });
759
+ return result;
760
+ }
761
+
762
+ function findAll(iterator, context) {
763
+ var results = [];
764
+ this.each(function(value, index) {
765
+ if (iterator.call(context, value, index))
766
+ results.push(value);
767
+ });
768
+ return results;
769
+ }
770
+
771
+ function grep(filter, iterator, context) {
772
+ iterator = iterator || Prototype.K;
773
+ var results = [];
774
+
775
+ if (Object.isString(filter))
776
+ filter = new RegExp(RegExp.escape(filter));
777
+
778
+ this.each(function(value, index) {
779
+ if (filter.match(value))
780
+ results.push(iterator.call(context, value, index));
781
+ });
782
+ return results;
783
+ }
784
+
785
+ function include(object) {
786
+ if (Object.isFunction(this.indexOf))
787
+ if (this.indexOf(object) != -1) return true;
788
+
789
+ var found = false;
790
+ this.each(function(value) {
791
+ if (value == object) {
792
+ found = true;
793
+ throw $break;
794
+ }
795
+ });
796
+ return found;
797
+ }
798
+
799
+ function inGroupsOf(number, fillWith) {
800
+ fillWith = Object.isUndefined(fillWith) ? null : fillWith;
801
+ return this.eachSlice(number, function(slice) {
802
+ while(slice.length < number) slice.push(fillWith);
803
+ return slice;
804
+ });
805
+ }
806
+
807
+ function inject(memo, iterator, context) {
808
+ this.each(function(value, index) {
809
+ memo = iterator.call(context, memo, value, index);
810
+ });
811
+ return memo;
812
+ }
813
+
814
+ function invoke(method) {
815
+ var args = $A(arguments).slice(1);
816
+ return this.map(function(value) {
817
+ return value[method].apply(value, args);
818
+ });
819
+ }
820
+
821
+ function max(iterator, context) {
822
+ iterator = iterator || Prototype.K;
823
+ var result;
824
+ this.each(function(value, index) {
825
+ value = iterator.call(context, value, index);
826
+ if (result == null || value >= result)
827
+ result = value;
828
+ });
829
+ return result;
830
+ }
831
+
832
+ function min(iterator, context) {
833
+ iterator = iterator || Prototype.K;
834
+ var result;
835
+ this.each(function(value, index) {
836
+ value = iterator.call(context, value, index);
837
+ if (result == null || value < result)
838
+ result = value;
839
+ });
840
+ return result;
841
+ }
842
+
843
+ function partition(iterator, context) {
844
+ iterator = iterator || Prototype.K;
845
+ var trues = [], falses = [];
846
+ this.each(function(value, index) {
847
+ (iterator.call(context, value, index) ?
848
+ trues : falses).push(value);
849
+ });
850
+ return [trues, falses];
851
+ }
852
+
853
+ function pluck(property) {
854
+ var results = [];
855
+ this.each(function(value) {
856
+ results.push(value[property]);
857
+ });
858
+ return results;
859
+ }
860
+
861
+ function reject(iterator, context) {
862
+ var results = [];
863
+ this.each(function(value, index) {
864
+ if (!iterator.call(context, value, index))
865
+ results.push(value);
866
+ });
867
+ return results;
868
+ }
869
+
870
+ function sortBy(iterator, context) {
871
+ return this.map(function(value, index) {
872
+ return {
873
+ value: value,
874
+ criteria: iterator.call(context, value, index)
875
+ };
876
+ }).sort(function(left, right) {
877
+ var a = left.criteria, b = right.criteria;
878
+ return a < b ? -1 : a > b ? 1 : 0;
879
+ }).pluck('value');
880
+ }
881
+
882
+ function toArray() {
883
+ return this.map();
884
+ }
885
+
886
+ function zip() {
887
+ var iterator = Prototype.K, args = $A(arguments);
888
+ if (Object.isFunction(args.last()))
889
+ iterator = args.pop();
890
+
891
+ var collections = [this].concat(args).map($A);
892
+ return this.map(function(value, index) {
893
+ return iterator(collections.pluck(index));
894
+ });
895
+ }
896
+
897
+ function size() {
898
+ return this.toArray().length;
899
+ }
900
+
901
+ function inspect() {
902
+ return '#<Enumerable:' + this.toArray().inspect() + '>';
903
+ }
904
+
905
+
906
+
907
+
908
+
909
+
910
+
911
+
912
+
913
+ return {
914
+ each: each,
915
+ eachSlice: eachSlice,
916
+ all: all,
917
+ every: all,
918
+ any: any,
919
+ some: any,
920
+ collect: collect,
921
+ map: collect,
922
+ detect: detect,
923
+ findAll: findAll,
924
+ select: findAll,
925
+ filter: findAll,
926
+ grep: grep,
927
+ include: include,
928
+ member: include,
929
+ inGroupsOf: inGroupsOf,
930
+ inject: inject,
931
+ invoke: invoke,
932
+ max: max,
933
+ min: min,
934
+ partition: partition,
935
+ pluck: pluck,
936
+ reject: reject,
937
+ sortBy: sortBy,
938
+ toArray: toArray,
939
+ entries: toArray,
940
+ zip: zip,
941
+ size: size,
942
+ inspect: inspect,
943
+ find: detect
944
+ };
945
+ })();
946
+ function $A(iterable) {
947
+ if (!iterable) return [];
948
+ if ('toArray' in Object(iterable)) return iterable.toArray();
949
+ var length = iterable.length || 0, results = new Array(length);
950
+ while (length--) results[length] = iterable[length];
951
+ return results;
952
+ }
953
+
954
+ function $w(string) {
955
+ if (!Object.isString(string)) return [];
956
+ string = string.strip();
957
+ return string ? string.split(/\s+/) : [];
958
+ }
959
+
960
+ Array.from = $A;
961
+
962
+
963
+ (function() {
964
+ var arrayProto = Array.prototype,
965
+ slice = arrayProto.slice,
966
+ _each = arrayProto.forEach; // use native browser JS 1.6 implementation if available
967
+
968
+ function each(iterator) {
969
+ for (var i = 0, length = this.length; i < length; i++)
970
+ iterator(this[i]);
971
+ }
972
+ if (!_each) _each = each;
973
+
974
+ function clear() {
975
+ this.length = 0;
976
+ return this;
977
+ }
978
+
979
+ function first() {
980
+ return this[0];
981
+ }
982
+
983
+ function last() {
984
+ return this[this.length - 1];
985
+ }
986
+
987
+ function compact() {
988
+ return this.select(function(value) {
989
+ return value != null;
990
+ });
991
+ }
992
+
993
+ function flatten() {
994
+ return this.inject([], function(array, value) {
995
+ if (Object.isArray(value))
996
+ return array.concat(value.flatten());
997
+ array.push(value);
998
+ return array;
999
+ });
1000
+ }
1001
+
1002
+ function without() {
1003
+ var values = slice.call(arguments, 0);
1004
+ return this.select(function(value) {
1005
+ return !values.include(value);
1006
+ });
1007
+ }
1008
+
1009
+ function reverse(inline) {
1010
+ return (inline !== false ? this : this.toArray())._reverse();
1011
+ }
1012
+
1013
+ function uniq(sorted) {
1014
+ return this.inject([], function(array, value, index) {
1015
+ if (0 == index || (sorted ? array.last() != value : !array.include(value)))
1016
+ array.push(value);
1017
+ return array;
1018
+ });
1019
+ }
1020
+
1021
+ function intersect(array) {
1022
+ return this.uniq().findAll(function(item) {
1023
+ return array.detect(function(value) { return item === value });
1024
+ });
1025
+ }
1026
+
1027
+
1028
+ function clone() {
1029
+ return slice.call(this, 0);
1030
+ }
1031
+
1032
+ function size() {
1033
+ return this.length;
1034
+ }
1035
+
1036
+ function inspect() {
1037
+ return '[' + this.map(Object.inspect).join(', ') + ']';
1038
+ }
1039
+
1040
+ function toJSON() {
1041
+ var results = [];
1042
+ this.each(function(object) {
1043
+ var value = Object.toJSON(object);
1044
+ if (!Object.isUndefined(value)) results.push(value);
1045
+ });
1046
+ return '[' + results.join(', ') + ']';
1047
+ }
1048
+
1049
+ function indexOf(item, i) {
1050
+ i || (i = 0);
1051
+ var length = this.length;
1052
+ if (i < 0) i = length + i;
1053
+ for (; i < length; i++)
1054
+ if (this[i] === item) return i;
1055
+ return -1;
1056
+ }
1057
+
1058
+ function lastIndexOf(item, i) {
1059
+ i = isNaN(i) ? this.length : (i < 0 ? this.length + i : i) + 1;
1060
+ var n = this.slice(0, i).reverse().indexOf(item);
1061
+ return (n < 0) ? n : i - n - 1;
1062
+ }
1063
+
1064
+ function concat() {
1065
+ var array = slice.call(this, 0), item;
1066
+ for (var i = 0, length = arguments.length; i < length; i++) {
1067
+ item = arguments[i];
1068
+ if (Object.isArray(item) && !('callee' in item)) {
1069
+ for (var j = 0, arrayLength = item.length; j < arrayLength; j++)
1070
+ array.push(item[j]);
1071
+ } else {
1072
+ array.push(item);
1073
+ }
1074
+ }
1075
+ return array;
1076
+ }
1077
+
1078
+ Object.extend(arrayProto, Enumerable);
1079
+
1080
+ if (!arrayProto._reverse)
1081
+ arrayProto._reverse = arrayProto.reverse;
1082
+
1083
+ Object.extend(arrayProto, {
1084
+ _each: _each,
1085
+ clear: clear,
1086
+ first: first,
1087
+ last: last,
1088
+ compact: compact,
1089
+ flatten: flatten,
1090
+ without: without,
1091
+ reverse: reverse,
1092
+ uniq: uniq,
1093
+ intersect: intersect,
1094
+ clone: clone,
1095
+ toArray: clone,
1096
+ size: size,
1097
+ inspect: inspect,
1098
+ toJSON: toJSON
1099
+ });
1100
+
1101
+ var CONCAT_ARGUMENTS_BUGGY = (function() {
1102
+ return [].concat(arguments)[0][0] !== 1;
1103
+ })(1,2)
1104
+
1105
+ if (CONCAT_ARGUMENTS_BUGGY) arrayProto.concat = concat;
1106
+
1107
+ if (!arrayProto.indexOf) arrayProto.indexOf = indexOf;
1108
+ if (!arrayProto.lastIndexOf) arrayProto.lastIndexOf = lastIndexOf;
1109
+ })();
1110
+ function $H(object) {
1111
+ return new Hash(object);
1112
+ };
1113
+
1114
+ var Hash = Class.create(Enumerable, (function() {
1115
+ function initialize(object) {
1116
+ this._object = Object.isHash(object) ? object.toObject() : Object.clone(object);
1117
+ }
1118
+
1119
+ function _each(iterator) {
1120
+ for (var key in this._object) {
1121
+ var value = this._object[key], pair = [key, value];
1122
+ pair.key = key;
1123
+ pair.value = value;
1124
+ iterator(pair);
1125
+ }
1126
+ }
1127
+
1128
+ function set(key, value) {
1129
+ return this._object[key] = value;
1130
+ }
1131
+
1132
+ function get(key) {
1133
+ if (this._object[key] !== Object.prototype[key])
1134
+ return this._object[key];
1135
+ }
1136
+
1137
+ function unset(key) {
1138
+ var value = this._object[key];
1139
+ delete this._object[key];
1140
+ return value;
1141
+ }
1142
+
1143
+ function toObject() {
1144
+ return Object.clone(this._object);
1145
+ }
1146
+
1147
+ function keys() {
1148
+ return this.pluck('key');
1149
+ }
1150
+
1151
+ function values() {
1152
+ return this.pluck('value');
1153
+ }
1154
+
1155
+ function index(value) {
1156
+ var match = this.detect(function(pair) {
1157
+ return pair.value === value;
1158
+ });
1159
+ return match && match.key;
1160
+ }
1161
+
1162
+ function merge(object) {
1163
+ return this.clone().update(object);
1164
+ }
1165
+
1166
+ function update(object) {
1167
+ return new Hash(object).inject(this, function(result, pair) {
1168
+ result.set(pair.key, pair.value);
1169
+ return result;
1170
+ });
1171
+ }
1172
+
1173
+ function toQueryPair(key, value) {
1174
+ if (Object.isUndefined(value)) return key;
1175
+ return key + '=' + encodeURIComponent(String.interpret(value));
1176
+ }
1177
+
1178
+ function toQueryString() {
1179
+ return this.inject([], function(results, pair) {
1180
+ var key = encodeURIComponent(pair.key), values = pair.value;
1181
+
1182
+ if (values && typeof values == 'object') {
1183
+ if (Object.isArray(values))
1184
+ return results.concat(values.map(toQueryPair.curry(key)));
1185
+ } else results.push(toQueryPair(key, values));
1186
+ return results;
1187
+ }).join('&');
1188
+ }
1189
+
1190
+ function inspect() {
1191
+ return '#<Hash:{' + this.map(function(pair) {
1192
+ return pair.map(Object.inspect).join(': ');
1193
+ }).join(', ') + '}>';
1194
+ }
1195
+
1196
+ function toJSON() {
1197
+ return Object.toJSON(this.toObject());
1198
+ }
1199
+
1200
+ function clone() {
1201
+ return new Hash(this);
1202
+ }
1203
+
1204
+ return {
1205
+ initialize: initialize,
1206
+ _each: _each,
1207
+ set: set,
1208
+ get: get,
1209
+ unset: unset,
1210
+ toObject: toObject,
1211
+ toTemplateReplacements: toObject,
1212
+ keys: keys,
1213
+ values: values,
1214
+ index: index,
1215
+ merge: merge,
1216
+ update: update,
1217
+ toQueryString: toQueryString,
1218
+ inspect: inspect,
1219
+ toJSON: toJSON,
1220
+ clone: clone
1221
+ };
1222
+ })());
1223
+
1224
+ Hash.from = $H;
1225
+ Object.extend(Number.prototype, (function() {
1226
+ function toColorPart() {
1227
+ return this.toPaddedString(2, 16);
1228
+ }
1229
+
1230
+ function succ() {
1231
+ return this + 1;
1232
+ }
1233
+
1234
+ function times(iterator, context) {
1235
+ $R(0, this, true).each(iterator, context);
1236
+ return this;
1237
+ }
1238
+
1239
+ function toPaddedString(length, radix) {
1240
+ var string = this.toString(radix || 10);
1241
+ return '0'.times(length - string.length) + string;
1242
+ }
1243
+
1244
+ function toJSON() {
1245
+ return isFinite(this) ? this.toString() : 'null';
1246
+ }
1247
+
1248
+ function abs() {
1249
+ return Math.abs(this);
1250
+ }
1251
+
1252
+ function round() {
1253
+ return Math.round(this);
1254
+ }
1255
+
1256
+ function ceil() {
1257
+ return Math.ceil(this);
1258
+ }
1259
+
1260
+ function floor() {
1261
+ return Math.floor(this);
1262
+ }
1263
+
1264
+ return {
1265
+ toColorPart: toColorPart,
1266
+ succ: succ,
1267
+ times: times,
1268
+ toPaddedString: toPaddedString,
1269
+ toJSON: toJSON,
1270
+ abs: abs,
1271
+ round: round,
1272
+ ceil: ceil,
1273
+ floor: floor
1274
+ };
1275
+ })());
1276
+
1277
+ function $R(start, end, exclusive) {
1278
+ return new ObjectRange(start, end, exclusive);
1279
+ }
1280
+
1281
+ var ObjectRange = Class.create(Enumerable, (function() {
1282
+ function initialize(start, end, exclusive) {
1283
+ this.start = start;
1284
+ this.end = end;
1285
+ this.exclusive = exclusive;
1286
+ }
1287
+
1288
+ function _each(iterator) {
1289
+ var value = this.start;
1290
+ while (this.include(value)) {
1291
+ iterator(value);
1292
+ value = value.succ();
1293
+ }
1294
+ }
1295
+
1296
+ function include(value) {
1297
+ if (value < this.start)
1298
+ return false;
1299
+ if (this.exclusive)
1300
+ return value < this.end;
1301
+ return value <= this.end;
1302
+ }
1303
+
1304
+ return {
1305
+ initialize: initialize,
1306
+ _each: _each,
1307
+ include: include
1308
+ };
1309
+ })());
1310
+
1311
+
1312
+
1313
+ var Ajax = {
1314
+ getTransport: function() {
1315
+ return Try.these(
1316
+ function() {return new XMLHttpRequest()},
1317
+ function() {return new ActiveXObject('Msxml2.XMLHTTP')},
1318
+ function() {return new ActiveXObject('Microsoft.XMLHTTP')}
1319
+ ) || false;
1320
+ },
1321
+
1322
+ activeRequestCount: 0
1323
+ };
1324
+
1325
+ Ajax.Responders = {
1326
+ responders: [],
1327
+
1328
+ _each: function(iterator) {
1329
+ this.responders._each(iterator);
1330
+ },
1331
+
1332
+ register: function(responder) {
1333
+ if (!this.include(responder))
1334
+ this.responders.push(responder);
1335
+ },
1336
+
1337
+ unregister: function(responder) {
1338
+ this.responders = this.responders.without(responder);
1339
+ },
1340
+
1341
+ dispatch: function(callback, request, transport, json) {
1342
+ this.each(function(responder) {
1343
+ if (Object.isFunction(responder[callback])) {
1344
+ try {
1345
+ responder[callback].apply(responder, [request, transport, json]);
1346
+ } catch (e) { }
1347
+ }
1348
+ });
1349
+ }
1350
+ };
1351
+
1352
+ Object.extend(Ajax.Responders, Enumerable);
1353
+
1354
+ Ajax.Responders.register({
1355
+ onCreate: function() { Ajax.activeRequestCount++ },
1356
+ onComplete: function() { Ajax.activeRequestCount-- }
1357
+ });
1358
+ Ajax.Base = Class.create({
1359
+ initialize: function(options) {
1360
+ this.options = {
1361
+ method: 'post',
1362
+ asynchronous: true,
1363
+ contentType: 'application/x-www-form-urlencoded',
1364
+ encoding: 'UTF-8',
1365
+ parameters: '',
1366
+ evalJSON: true,
1367
+ evalJS: true
1368
+ };
1369
+ Object.extend(this.options, options || { });
1370
+
1371
+ this.options.method = this.options.method.toLowerCase();
1372
+
1373
+ if (Object.isString(this.options.parameters))
1374
+ this.options.parameters = this.options.parameters.toQueryParams();
1375
+ else if (Object.isHash(this.options.parameters))
1376
+ this.options.parameters = this.options.parameters.toObject();
1377
+ }
1378
+ });
1379
+ Ajax.Request = Class.create(Ajax.Base, {
1380
+ _complete: false,
1381
+
1382
+ initialize: function($super, url, options) {
1383
+ $super(options);
1384
+ this.transport = Ajax.getTransport();
1385
+ this.request(url);
1386
+ },
1387
+
1388
+ request: function(url) {
1389
+ this.url = url;
1390
+ this.method = this.options.method;
1391
+ var params = Object.clone(this.options.parameters);
1392
+
1393
+ if (!['get', 'post'].include(this.method)) {
1394
+ params['_method'] = this.method;
1395
+ this.method = 'post';
1396
+ }
1397
+
1398
+ this.parameters = params;
1399
+
1400
+ if (params = Object.toQueryString(params)) {
1401
+ if (this.method == 'get')
1402
+ this.url += (this.url.include('?') ? '&' : '?') + params;
1403
+ else if (/Konqueror|Safari|KHTML/.test(navigator.userAgent))
1404
+ params += '&_=';
1405
+ }
1406
+
1407
+ try {
1408
+ var response = new Ajax.Response(this);
1409
+ if (this.options.onCreate) this.options.onCreate(response);
1410
+ Ajax.Responders.dispatch('onCreate', this, response);
1411
+
1412
+ this.transport.open(this.method.toUpperCase(), this.url,
1413
+ this.options.asynchronous);
1414
+
1415
+ if (this.options.asynchronous) this.respondToReadyState.bind(this).defer(1);
1416
+
1417
+ this.transport.onreadystatechange = this.onStateChange.bind(this);
1418
+ this.setRequestHeaders();
1419
+
1420
+ this.body = this.method == 'post' ? (this.options.postBody || params) : null;
1421
+ this.transport.send(this.body);
1422
+
1423
+ /* Force Firefox to handle ready state 4 for synchronous requests */
1424
+ if (!this.options.asynchronous && this.transport.overrideMimeType)
1425
+ this.onStateChange();
1426
+
1427
+ }
1428
+ catch (e) {
1429
+ this.dispatchException(e);
1430
+ }
1431
+ },
1432
+
1433
+ onStateChange: function() {
1434
+ var readyState = this.transport.readyState;
1435
+ if (readyState > 1 && !((readyState == 4) && this._complete))
1436
+ this.respondToReadyState(this.transport.readyState);
1437
+ },
1438
+
1439
+ setRequestHeaders: function() {
1440
+ var headers = {
1441
+ 'X-Requested-With': 'XMLHttpRequest',
1442
+ 'X-Prototype-Version': Prototype.Version,
1443
+ 'Accept': 'text/javascript, text/html, application/xml, text/xml, */*'
1444
+ };
1445
+
1446
+ if (this.method == 'post') {
1447
+ headers['Content-type'] = this.options.contentType +
1448
+ (this.options.encoding ? '; charset=' + this.options.encoding : '');
1449
+
1450
+ /* Force "Connection: close" for older Mozilla browsers to work
1451
+ * around a bug where XMLHttpRequest sends an incorrect
1452
+ * Content-length header. See Mozilla Bugzilla #246651.
1453
+ */
1454
+ if (this.transport.overrideMimeType &&
1455
+ (navigator.userAgent.match(/Gecko\/(\d{4})/) || [0,2005])[1] < 2005)
1456
+ headers['Connection'] = 'close';
1457
+ }
1458
+
1459
+ if (typeof this.options.requestHeaders == 'object') {
1460
+ var extras = this.options.requestHeaders;
1461
+
1462
+ if (Object.isFunction(extras.push))
1463
+ for (var i = 0, length = extras.length; i < length; i += 2)
1464
+ headers[extras[i]] = extras[i+1];
1465
+ else
1466
+ $H(extras).each(function(pair) { headers[pair.key] = pair.value });
1467
+ }
1468
+
1469
+ for (var name in headers)
1470
+ this.transport.setRequestHeader(name, headers[name]);
1471
+ },
1472
+
1473
+ success: function() {
1474
+ var status = this.getStatus();
1475
+ return !status || (status >= 200 && status < 300);
1476
+ },
1477
+
1478
+ getStatus: function() {
1479
+ try {
1480
+ return this.transport.status || 0;
1481
+ } catch (e) { return 0 }
1482
+ },
1483
+
1484
+ respondToReadyState: function(readyState) {
1485
+ var state = Ajax.Request.Events[readyState], response = new Ajax.Response(this);
1486
+
1487
+ if (state == 'Complete') {
1488
+ try {
1489
+ this._complete = true;
1490
+ (this.options['on' + response.status]
1491
+ || this.options['on' + (this.success() ? 'Success' : 'Failure')]
1492
+ || Prototype.emptyFunction)(response, response.headerJSON);
1493
+ } catch (e) {
1494
+ this.dispatchException(e);
1495
+ }
1496
+
1497
+ var contentType = response.getHeader('Content-type');
1498
+ if (this.options.evalJS == 'force'
1499
+ || (this.options.evalJS && this.isSameOrigin() && contentType
1500
+ && contentType.match(/^\s*(text|application)\/(x-)?(java|ecma)script(;.*)?\s*$/i)))
1501
+ this.evalResponse();
1502
+ }
1503
+
1504
+ try {
1505
+ (this.options['on' + state] || Prototype.emptyFunction)(response, response.headerJSON);
1506
+ Ajax.Responders.dispatch('on' + state, this, response, response.headerJSON);
1507
+ } catch (e) {
1508
+ this.dispatchException(e);
1509
+ }
1510
+
1511
+ if (state == 'Complete') {
1512
+ this.transport.onreadystatechange = Prototype.emptyFunction;
1513
+ }
1514
+ },
1515
+
1516
+ isSameOrigin: function() {
1517
+ var m = this.url.match(/^\s*https?:\/\/[^\/]*/);
1518
+ return !m || (m[0] == '#{protocol}//#{domain}#{port}'.interpolate({
1519
+ protocol: location.protocol,
1520
+ domain: document.domain,
1521
+ port: location.port ? ':' + location.port : ''
1522
+ }));
1523
+ },
1524
+
1525
+ getHeader: function(name) {
1526
+ try {
1527
+ return this.transport.getResponseHeader(name) || null;
1528
+ } catch (e) { return null; }
1529
+ },
1530
+
1531
+ evalResponse: function() {
1532
+ try {
1533
+ return eval((this.transport.responseText || '').unfilterJSON());
1534
+ } catch (e) {
1535
+ this.dispatchException(e);
1536
+ }
1537
+ },
1538
+
1539
+ dispatchException: function(exception) {
1540
+ (this.options.onException || Prototype.emptyFunction)(this, exception);
1541
+ Ajax.Responders.dispatch('onException', this, exception);
1542
+ }
1543
+ });
1544
+
1545
+ Ajax.Request.Events =
1546
+ ['Uninitialized', 'Loading', 'Loaded', 'Interactive', 'Complete'];
1547
+
1548
+
1549
+
1550
+
1551
+
1552
+
1553
+
1554
+
1555
+ Ajax.Response = Class.create({
1556
+ initialize: function(request){
1557
+ this.request = request;
1558
+ var transport = this.transport = request.transport,
1559
+ readyState = this.readyState = transport.readyState;
1560
+
1561
+ if((readyState > 2 && !Prototype.Browser.IE) || readyState == 4) {
1562
+ this.status = this.getStatus();
1563
+ this.statusText = this.getStatusText();
1564
+ this.responseText = String.interpret(transport.responseText);
1565
+ this.headerJSON = this._getHeaderJSON();
1566
+ }
1567
+
1568
+ if(readyState == 4) {
1569
+ var xml = transport.responseXML;
1570
+ this.responseXML = Object.isUndefined(xml) ? null : xml;
1571
+ this.responseJSON = this._getResponseJSON();
1572
+ }
1573
+ },
1574
+
1575
+ status: 0,
1576
+
1577
+ statusText: '',
1578
+
1579
+ getStatus: Ajax.Request.prototype.getStatus,
1580
+
1581
+ getStatusText: function() {
1582
+ try {
1583
+ return this.transport.statusText || '';
1584
+ } catch (e) { return '' }
1585
+ },
1586
+
1587
+ getHeader: Ajax.Request.prototype.getHeader,
1588
+
1589
+ getAllHeaders: function() {
1590
+ try {
1591
+ return this.getAllResponseHeaders();
1592
+ } catch (e) { return null }
1593
+ },
1594
+
1595
+ getResponseHeader: function(name) {
1596
+ return this.transport.getResponseHeader(name);
1597
+ },
1598
+
1599
+ getAllResponseHeaders: function() {
1600
+ return this.transport.getAllResponseHeaders();
1601
+ },
1602
+
1603
+ _getHeaderJSON: function() {
1604
+ var json = this.getHeader('X-JSON');
1605
+ if (!json) return null;
1606
+ json = decodeURIComponent(escape(json));
1607
+ try {
1608
+ return json.evalJSON(this.request.options.sanitizeJSON ||
1609
+ !this.request.isSameOrigin());
1610
+ } catch (e) {
1611
+ this.request.dispatchException(e);
1612
+ }
1613
+ },
1614
+
1615
+ _getResponseJSON: function() {
1616
+ var options = this.request.options;
1617
+ if (!options.evalJSON || (options.evalJSON != 'force' &&
1618
+ !(this.getHeader('Content-type') || '').include('application/json')) ||
1619
+ this.responseText.blank())
1620
+ return null;
1621
+ try {
1622
+ return this.responseText.evalJSON(options.sanitizeJSON ||
1623
+ !this.request.isSameOrigin());
1624
+ } catch (e) {
1625
+ this.request.dispatchException(e);
1626
+ }
1627
+ }
1628
+ });
1629
+
1630
+ Ajax.Updater = Class.create(Ajax.Request, {
1631
+ initialize: function($super, container, url, options) {
1632
+ this.container = {
1633
+ success: (container.success || container),
1634
+ failure: (container.failure || (container.success ? null : container))
1635
+ };
1636
+
1637
+ options = Object.clone(options);
1638
+ var onComplete = options.onComplete;
1639
+ options.onComplete = (function(response, json) {
1640
+ this.updateContent(response.responseText);
1641
+ if (Object.isFunction(onComplete)) onComplete(response, json);
1642
+ }).bind(this);
1643
+
1644
+ $super(url, options);
1645
+ },
1646
+
1647
+ updateContent: function(responseText) {
1648
+ var receiver = this.container[this.success() ? 'success' : 'failure'],
1649
+ options = this.options;
1650
+
1651
+ if (!options.evalScripts) responseText = responseText.stripScripts();
1652
+
1653
+ if (receiver = $(receiver)) {
1654
+ if (options.insertion) {
1655
+ if (Object.isString(options.insertion)) {
1656
+ var insertion = { }; insertion[options.insertion] = responseText;
1657
+ receiver.insert(insertion);
1658
+ }
1659
+ else options.insertion(receiver, responseText);
1660
+ }
1661
+ else receiver.update(responseText);
1662
+ }
1663
+ }
1664
+ });
1665
+
1666
+ Ajax.PeriodicalUpdater = Class.create(Ajax.Base, {
1667
+ initialize: function($super, container, url, options) {
1668
+ $super(options);
1669
+ this.onComplete = this.options.onComplete;
1670
+
1671
+ this.frequency = (this.options.frequency || 2);
1672
+ this.decay = (this.options.decay || 1);
1673
+
1674
+ this.updater = { };
1675
+ this.container = container;
1676
+ this.url = url;
1677
+
1678
+ this.start();
1679
+ },
1680
+
1681
+ start: function() {
1682
+ this.options.onComplete = this.updateComplete.bind(this);
1683
+ this.onTimerEvent();
1684
+ },
1685
+
1686
+ stop: function() {
1687
+ this.updater.options.onComplete = undefined;
1688
+ clearTimeout(this.timer);
1689
+ (this.onComplete || Prototype.emptyFunction).apply(this, arguments);
1690
+ },
1691
+
1692
+ updateComplete: function(response) {
1693
+ if (this.options.decay) {
1694
+ this.decay = (response.responseText == this.lastText ?
1695
+ this.decay * this.options.decay : 1);
1696
+
1697
+ this.lastText = response.responseText;
1698
+ }
1699
+ this.timer = this.onTimerEvent.bind(this).delay(this.decay * this.frequency);
1700
+ },
1701
+
1702
+ onTimerEvent: function() {
1703
+ this.updater = new Ajax.Updater(this.container, this.url, this.options);
1704
+ }
1705
+ });
1706
+
1707
+
1708
+
1709
+ function $(element) {
1710
+ if (arguments.length > 1) {
1711
+ for (var i = 0, elements = [], length = arguments.length; i < length; i++)
1712
+ elements.push($(arguments[i]));
1713
+ return elements;
1714
+ }
1715
+ if (Object.isString(element))
1716
+ element = document.getElementById(element);
1717
+ return Element.extend(element);
1718
+ }
1719
+
1720
+ if (Prototype.BrowserFeatures.XPath) {
1721
+ document._getElementsByXPath = function(expression, parentElement) {
1722
+ var results = [];
1723
+ var query = document.evaluate(expression, $(parentElement) || document,
1724
+ null, XPathResult.ORDERED_NODE_SNAPSHOT_TYPE, null);
1725
+ for (var i = 0, length = query.snapshotLength; i < length; i++)
1726
+ results.push(Element.extend(query.snapshotItem(i)));
1727
+ return results;
1728
+ };
1729
+ }
1730
+
1731
+ /*--------------------------------------------------------------------------*/
1732
+
1733
+ if (!window.Node) var Node = { };
1734
+
1735
+ if (!Node.ELEMENT_NODE) {
1736
+ Object.extend(Node, {
1737
+ ELEMENT_NODE: 1,
1738
+ ATTRIBUTE_NODE: 2,
1739
+ TEXT_NODE: 3,
1740
+ CDATA_SECTION_NODE: 4,
1741
+ ENTITY_REFERENCE_NODE: 5,
1742
+ ENTITY_NODE: 6,
1743
+ PROCESSING_INSTRUCTION_NODE: 7,
1744
+ COMMENT_NODE: 8,
1745
+ DOCUMENT_NODE: 9,
1746
+ DOCUMENT_TYPE_NODE: 10,
1747
+ DOCUMENT_FRAGMENT_NODE: 11,
1748
+ NOTATION_NODE: 12
1749
+ });
1750
+ }
1751
+
1752
+
1753
+ (function(global) {
1754
+
1755
+ var SETATTRIBUTE_IGNORES_NAME = (function(){
1756
+ var elForm = document.createElement("form");
1757
+ var elInput = document.createElement("input");
1758
+ var root = document.documentElement;
1759
+ elInput.setAttribute("name", "test");
1760
+ elForm.appendChild(elInput);
1761
+ root.appendChild(elForm);
1762
+ var isBuggy = elForm.elements
1763
+ ? (typeof elForm.elements.test == "undefined")
1764
+ : null;
1765
+ root.removeChild(elForm);
1766
+ elForm = elInput = null;
1767
+ return isBuggy;
1768
+ })();
1769
+
1770
+ var element = global.Element;
1771
+ global.Element = function(tagName, attributes) {
1772
+ attributes = attributes || { };
1773
+ tagName = tagName.toLowerCase();
1774
+ var cache = Element.cache;
1775
+ if (SETATTRIBUTE_IGNORES_NAME && attributes.name) {
1776
+ tagName = '<' + tagName + ' name="' + attributes.name + '">';
1777
+ delete attributes.name;
1778
+ return Element.writeAttribute(document.createElement(tagName), attributes);
1779
+ }
1780
+ if (!cache[tagName]) cache[tagName] = Element.extend(document.createElement(tagName));
1781
+ return Element.writeAttribute(cache[tagName].cloneNode(false), attributes);
1782
+ };
1783
+ Object.extend(global.Element, element || { });
1784
+ if (element) global.Element.prototype = element.prototype;
1785
+ })(this);
1786
+
1787
+ Element.cache = { };
1788
+ Element.idCounter = 1;
1789
+
1790
+ Element.Methods = {
1791
+ visible: function(element) {
1792
+ return $(element).style.display != 'none';
1793
+ },
1794
+
1795
+ toggle: function(element) {
1796
+ element = $(element);
1797
+ Element[Element.visible(element) ? 'hide' : 'show'](element);
1798
+ return element;
1799
+ },
1800
+
1801
+
1802
+ hide: function(element) {
1803
+ element = $(element);
1804
+ element.style.display = 'none';
1805
+ return element;
1806
+ },
1807
+
1808
+ show: function(element) {
1809
+ element = $(element);
1810
+ element.style.display = '';
1811
+ return element;
1812
+ },
1813
+
1814
+ remove: function(element) {
1815
+ element = $(element);
1816
+ element.parentNode.removeChild(element);
1817
+ return element;
1818
+ },
1819
+
1820
+ update: (function(){
1821
+
1822
+ var SELECT_ELEMENT_INNERHTML_BUGGY = (function(){
1823
+ var el = document.createElement("select"),
1824
+ isBuggy = true;
1825
+ el.innerHTML = "<option value=\"test\">test</option>";
1826
+ if (el.options && el.options[0]) {
1827
+ isBuggy = el.options[0].nodeName.toUpperCase() !== "OPTION";
1828
+ }
1829
+ el = null;
1830
+ return isBuggy;
1831
+ })();
1832
+
1833
+ var TABLE_ELEMENT_INNERHTML_BUGGY = (function(){
1834
+ try {
1835
+ var el = document.createElement("table");
1836
+ if (el && el.tBodies) {
1837
+ el.innerHTML = "<tbody><tr><td>test</td></tr></tbody>";
1838
+ var isBuggy = typeof el.tBodies[0] == "undefined";
1839
+ el = null;
1840
+ return isBuggy;
1841
+ }
1842
+ } catch (e) {
1843
+ return true;
1844
+ }
1845
+ })();
1846
+
1847
+ var SCRIPT_ELEMENT_REJECTS_TEXTNODE_APPENDING = (function () {
1848
+ var s = document.createElement("script"),
1849
+ isBuggy = false;
1850
+ try {
1851
+ s.appendChild(document.createTextNode(""));
1852
+ isBuggy = !s.firstChild ||
1853
+ s.firstChild && s.firstChild.nodeType !== 3;
1854
+ } catch (e) {
1855
+ isBuggy = true;
1856
+ }
1857
+ s = null;
1858
+ return isBuggy;
1859
+ })();
1860
+
1861
+ function update(element, content) {
1862
+ element = $(element);
1863
+
1864
+ if (content && content.toElement)
1865
+ content = content.toElement();
1866
+
1867
+ if (Object.isElement(content))
1868
+ return element.update().insert(content);
1869
+
1870
+ content = Object.toHTML(content);
1871
+
1872
+ var tagName = element.tagName.toUpperCase();
1873
+
1874
+ if (tagName === 'SCRIPT' && SCRIPT_ELEMENT_REJECTS_TEXTNODE_APPENDING) {
1875
+ element.text = content;
1876
+ return element;
1877
+ }
1878
+
1879
+ if (SELECT_ELEMENT_INNERHTML_BUGGY || TABLE_ELEMENT_INNERHTML_BUGGY) {
1880
+ if (tagName in Element._insertionTranslations.tags) {
1881
+ while (element.firstChild) {
1882
+ element.removeChild(element.firstChild);
1883
+ }
1884
+ Element._getContentFromAnonymousElement(tagName, content.stripScripts())
1885
+ .each(function(node) {
1886
+ element.appendChild(node)
1887
+ });
1888
+ }
1889
+ else {
1890
+ element.innerHTML = content.stripScripts();
1891
+ }
1892
+ }
1893
+ else {
1894
+ element.innerHTML = content.stripScripts();
1895
+ }
1896
+
1897
+ content.evalScripts.bind(content).defer();
1898
+ return element;
1899
+ }
1900
+
1901
+ return update;
1902
+ })(),
1903
+
1904
+ replace: function(element, content) {
1905
+ element = $(element);
1906
+ if (content && content.toElement) content = content.toElement();
1907
+ else if (!Object.isElement(content)) {
1908
+ content = Object.toHTML(content);
1909
+ var range = element.ownerDocument.createRange();
1910
+ range.selectNode(element);
1911
+ content.evalScripts.bind(content).defer();
1912
+ content = range.createContextualFragment(content.stripScripts());
1913
+ }
1914
+ element.parentNode.replaceChild(content, element);
1915
+ return element;
1916
+ },
1917
+
1918
+ insert: function(element, insertions) {
1919
+ element = $(element);
1920
+
1921
+ if (Object.isString(insertions) || Object.isNumber(insertions) ||
1922
+ Object.isElement(insertions) || (insertions && (insertions.toElement || insertions.toHTML)))
1923
+ insertions = {bottom:insertions};
1924
+
1925
+ var content, insert, tagName, childNodes;
1926
+
1927
+ for (var position in insertions) {
1928
+ content = insertions[position];
1929
+ position = position.toLowerCase();
1930
+ insert = Element._insertionTranslations[position];
1931
+
1932
+ if (content && content.toElement) content = content.toElement();
1933
+ if (Object.isElement(content)) {
1934
+ insert(element, content);
1935
+ continue;
1936
+ }
1937
+
1938
+ content = Object.toHTML(content);
1939
+
1940
+ tagName = ((position == 'before' || position == 'after')
1941
+ ? element.parentNode : element).tagName.toUpperCase();
1942
+
1943
+ childNodes = Element._getContentFromAnonymousElement(tagName, content.stripScripts());
1944
+
1945
+ if (position == 'top' || position == 'after') childNodes.reverse();
1946
+ childNodes.each(insert.curry(element));
1947
+
1948
+ content.evalScripts.bind(content).defer();
1949
+ }
1950
+
1951
+ return element;
1952
+ },
1953
+
1954
+ wrap: function(element, wrapper, attributes) {
1955
+ element = $(element);
1956
+ if (Object.isElement(wrapper))
1957
+ $(wrapper).writeAttribute(attributes || { });
1958
+ else if (Object.isString(wrapper)) wrapper = new Element(wrapper, attributes);
1959
+ else wrapper = new Element('div', wrapper);
1960
+ if (element.parentNode)
1961
+ element.parentNode.replaceChild(wrapper, element);
1962
+ wrapper.appendChild(element);
1963
+ return wrapper;
1964
+ },
1965
+
1966
+ inspect: function(element) {
1967
+ element = $(element);
1968
+ var result = '<' + element.tagName.toLowerCase();
1969
+ $H({'id': 'id', 'className': 'class'}).each(function(pair) {
1970
+ var property = pair.first(), attribute = pair.last();
1971
+ var value = (element[property] || '').toString();
1972
+ if (value) result += ' ' + attribute + '=' + value.inspect(true);
1973
+ });
1974
+ return result + '>';
1975
+ },
1976
+
1977
+ recursivelyCollect: function(element, property) {
1978
+ element = $(element);
1979
+ var elements = [];
1980
+ while (element = element[property])
1981
+ if (element.nodeType == 1)
1982
+ elements.push(Element.extend(element));
1983
+ return elements;
1984
+ },
1985
+
1986
+ ancestors: function(element) {
1987
+ return Element.recursivelyCollect(element, 'parentNode');
1988
+ },
1989
+
1990
+ descendants: function(element) {
1991
+ return Element.select(element, "*");
1992
+ },
1993
+
1994
+ firstDescendant: function(element) {
1995
+ element = $(element).firstChild;
1996
+ while (element && element.nodeType != 1) element = element.nextSibling;
1997
+ return $(element);
1998
+ },
1999
+
2000
+ immediateDescendants: function(element) {
2001
+ if (!(element = $(element).firstChild)) return [];
2002
+ while (element && element.nodeType != 1) element = element.nextSibling;
2003
+ if (element) return [element].concat($(element).nextSiblings());
2004
+ return [];
2005
+ },
2006
+
2007
+ previousSiblings: function(element) {
2008
+ return Element.recursivelyCollect(element, 'previousSibling');
2009
+ },
2010
+
2011
+ nextSiblings: function(element) {
2012
+ return Element.recursivelyCollect(element, 'nextSibling');
2013
+ },
2014
+
2015
+ siblings: function(element) {
2016
+ element = $(element);
2017
+ return Element.previousSiblings(element).reverse()
2018
+ .concat(Element.nextSiblings(element));
2019
+ },
2020
+
2021
+ match: function(element, selector) {
2022
+ if (Object.isString(selector))
2023
+ selector = new Selector(selector);
2024
+ return selector.match($(element));
2025
+ },
2026
+
2027
+ up: function(element, expression, index) {
2028
+ element = $(element);
2029
+ if (arguments.length == 1) return $(element.parentNode);
2030
+ var ancestors = Element.ancestors(element);
2031
+ return Object.isNumber(expression) ? ancestors[expression] :
2032
+ Selector.findElement(ancestors, expression, index);
2033
+ },
2034
+
2035
+ down: function(element, expression, index) {
2036
+ element = $(element);
2037
+ if (arguments.length == 1) return Element.firstDescendant(element);
2038
+ return Object.isNumber(expression) ? Element.descendants(element)[expression] :
2039
+ Element.select(element, expression)[index || 0];
2040
+ },
2041
+
2042
+ previous: function(element, expression, index) {
2043
+ element = $(element);
2044
+ if (arguments.length == 1) return $(Selector.handlers.previousElementSibling(element));
2045
+ var previousSiblings = Element.previousSiblings(element);
2046
+ return Object.isNumber(expression) ? previousSiblings[expression] :
2047
+ Selector.findElement(previousSiblings, expression, index);
2048
+ },
2049
+
2050
+ next: function(element, expression, index) {
2051
+ element = $(element);
2052
+ if (arguments.length == 1) return $(Selector.handlers.nextElementSibling(element));
2053
+ var nextSiblings = Element.nextSiblings(element);
2054
+ return Object.isNumber(expression) ? nextSiblings[expression] :
2055
+ Selector.findElement(nextSiblings, expression, index);
2056
+ },
2057
+
2058
+
2059
+ select: function(element) {
2060
+ var args = Array.prototype.slice.call(arguments, 1);
2061
+ return Selector.findChildElements(element, args);
2062
+ },
2063
+
2064
+ adjacent: function(element) {
2065
+ var args = Array.prototype.slice.call(arguments, 1);
2066
+ return Selector.findChildElements(element.parentNode, args).without(element);
2067
+ },
2068
+
2069
+ identify: function(element) {
2070
+ element = $(element);
2071
+ var id = Element.readAttribute(element, 'id');
2072
+ if (id) return id;
2073
+ do { id = 'anonymous_element_' + Element.idCounter++ } while ($(id));
2074
+ Element.writeAttribute(element, 'id', id);
2075
+ return id;
2076
+ },
2077
+
2078
+ readAttribute: function(element, name) {
2079
+ element = $(element);
2080
+ if (Prototype.Browser.IE) {
2081
+ var t = Element._attributeTranslations.read;
2082
+ if (t.values[name]) return t.values[name](element, name);
2083
+ if (t.names[name]) name = t.names[name];
2084
+ if (name.include(':')) {
2085
+ return (!element.attributes || !element.attributes[name]) ? null :
2086
+ element.attributes[name].value;
2087
+ }
2088
+ }
2089
+ return element.getAttribute(name);
2090
+ },
2091
+
2092
+ writeAttribute: function(element, name, value) {
2093
+ element = $(element);
2094
+ var attributes = { }, t = Element._attributeTranslations.write;
2095
+
2096
+ if (typeof name == 'object') attributes = name;
2097
+ else attributes[name] = Object.isUndefined(value) ? true : value;
2098
+
2099
+ for (var attr in attributes) {
2100
+ name = t.names[attr] || attr;
2101
+ value = attributes[attr];
2102
+ if (t.values[attr]) name = t.values[attr](element, value);
2103
+ if (value === false || value === null)
2104
+ element.removeAttribute(name);
2105
+ else if (value === true)
2106
+ element.setAttribute(name, name);
2107
+ else element.setAttribute(name, value);
2108
+ }
2109
+ return element;
2110
+ },
2111
+
2112
+ getHeight: function(element) {
2113
+ return Element.getDimensions(element).height;
2114
+ },
2115
+
2116
+ getWidth: function(element) {
2117
+ return Element.getDimensions(element).width;
2118
+ },
2119
+
2120
+ classNames: function(element) {
2121
+ return new Element.ClassNames(element);
2122
+ },
2123
+
2124
+ hasClassName: function(element, className) {
2125
+ if (!(element = $(element))) return;
2126
+ var elementClassName = element.className;
2127
+ return (elementClassName.length > 0 && (elementClassName == className ||
2128
+ new RegExp("(^|\\s)" + className + "(\\s|$)").test(elementClassName)));
2129
+ },
2130
+
2131
+ addClassName: function(element, className) {
2132
+ if (!(element = $(element))) return;
2133
+ if (!Element.hasClassName(element, className))
2134
+ element.className += (element.className ? ' ' : '') + className;
2135
+ return element;
2136
+ },
2137
+
2138
+ removeClassName: function(element, className) {
2139
+ if (!(element = $(element))) return;
2140
+ element.className = element.className.replace(
2141
+ new RegExp("(^|\\s+)" + className + "(\\s+|$)"), ' ').strip();
2142
+ return element;
2143
+ },
2144
+
2145
+ toggleClassName: function(element, className) {
2146
+ if (!(element = $(element))) return;
2147
+ return Element[Element.hasClassName(element, className) ?
2148
+ 'removeClassName' : 'addClassName'](element, className);
2149
+ },
2150
+
2151
+ cleanWhitespace: function(element) {
2152
+ element = $(element);
2153
+ var node = element.firstChild;
2154
+ while (node) {
2155
+ var nextNode = node.nextSibling;
2156
+ if (node.nodeType == 3 && !/\S/.test(node.nodeValue))
2157
+ element.removeChild(node);
2158
+ node = nextNode;
2159
+ }
2160
+ return element;
2161
+ },
2162
+
2163
+ empty: function(element) {
2164
+ return $(element).innerHTML.blank();
2165
+ },
2166
+
2167
+ descendantOf: function(element, ancestor) {
2168
+ element = $(element), ancestor = $(ancestor);
2169
+
2170
+ if (element.compareDocumentPosition)
2171
+ return (element.compareDocumentPosition(ancestor) & 8) === 8;
2172
+
2173
+ if (ancestor.contains)
2174
+ return ancestor.contains(element) && ancestor !== element;
2175
+
2176
+ while (element = element.parentNode)
2177
+ if (element == ancestor) return true;
2178
+
2179
+ return false;
2180
+ },
2181
+
2182
+ scrollTo: function(element) {
2183
+ element = $(element);
2184
+ var pos = Element.cumulativeOffset(element);
2185
+ window.scrollTo(pos[0], pos[1]);
2186
+ return element;
2187
+ },
2188
+
2189
+ getStyle: function(element, style) {
2190
+ element = $(element);
2191
+ style = style == 'float' ? 'cssFloat' : style.camelize();
2192
+ var value = element.style[style];
2193
+ if (!value || value == 'auto') {
2194
+ var css = document.defaultView.getComputedStyle(element, null);
2195
+ value = css ? css[style] : null;
2196
+ }
2197
+ if (style == 'opacity') return value ? parseFloat(value) : 1.0;
2198
+ return value == 'auto' ? null : value;
2199
+ },
2200
+
2201
+ getOpacity: function(element) {
2202
+ return $(element).getStyle('opacity');
2203
+ },
2204
+
2205
+ setStyle: function(element, styles) {
2206
+ element = $(element);
2207
+ var elementStyle = element.style, match;
2208
+ if (Object.isString(styles)) {
2209
+ element.style.cssText += ';' + styles;
2210
+ return styles.include('opacity') ?
2211
+ element.setOpacity(styles.match(/opacity:\s*(\d?\.?\d*)/)[1]) : element;
2212
+ }
2213
+ for (var property in styles)
2214
+ if (property == 'opacity') element.setOpacity(styles[property]);
2215
+ else
2216
+ elementStyle[(property == 'float' || property == 'cssFloat') ?
2217
+ (Object.isUndefined(elementStyle.styleFloat) ? 'cssFloat' : 'styleFloat') :
2218
+ property] = styles[property];
2219
+
2220
+ return element;
2221
+ },
2222
+
2223
+ setOpacity: function(element, value) {
2224
+ element = $(element);
2225
+ element.style.opacity = (value == 1 || value === '') ? '' :
2226
+ (value < 0.00001) ? 0 : value;
2227
+ return element;
2228
+ },
2229
+
2230
+ getDimensions: function(element) {
2231
+ element = $(element);
2232
+ var display = Element.getStyle(element, 'display');
2233
+ if (display != 'none' && display != null) // Safari bug
2234
+ return {width: element.offsetWidth, height: element.offsetHeight};
2235
+
2236
+ var els = element.style;
2237
+ var originalVisibility = els.visibility;
2238
+ var originalPosition = els.position;
2239
+ var originalDisplay = els.display;
2240
+ els.visibility = 'hidden';
2241
+ if (originalPosition != 'fixed') // Switching fixed to absolute causes issues in Safari
2242
+ els.position = 'absolute';
2243
+ els.display = 'block';
2244
+ var originalWidth = element.clientWidth;
2245
+ var originalHeight = element.clientHeight;
2246
+ els.display = originalDisplay;
2247
+ els.position = originalPosition;
2248
+ els.visibility = originalVisibility;
2249
+ return {width: originalWidth, height: originalHeight};
2250
+ },
2251
+
2252
+ makePositioned: function(element) {
2253
+ element = $(element);
2254
+ var pos = Element.getStyle(element, 'position');
2255
+ if (pos == 'static' || !pos) {
2256
+ element._madePositioned = true;
2257
+ element.style.position = 'relative';
2258
+ if (Prototype.Browser.Opera) {
2259
+ element.style.top = 0;
2260
+ element.style.left = 0;
2261
+ }
2262
+ }
2263
+ return element;
2264
+ },
2265
+
2266
+ undoPositioned: function(element) {
2267
+ element = $(element);
2268
+ if (element._madePositioned) {
2269
+ element._madePositioned = undefined;
2270
+ element.style.position =
2271
+ element.style.top =
2272
+ element.style.left =
2273
+ element.style.bottom =
2274
+ element.style.right = '';
2275
+ }
2276
+ return element;
2277
+ },
2278
+
2279
+ makeClipping: function(element) {
2280
+ element = $(element);
2281
+ if (element._overflow) return element;
2282
+ element._overflow = Element.getStyle(element, 'overflow') || 'auto';
2283
+ if (element._overflow !== 'hidden')
2284
+ element.style.overflow = 'hidden';
2285
+ return element;
2286
+ },
2287
+
2288
+ undoClipping: function(element) {
2289
+ element = $(element);
2290
+ if (!element._overflow) return element;
2291
+ element.style.overflow = element._overflow == 'auto' ? '' : element._overflow;
2292
+ element._overflow = null;
2293
+ return element;
2294
+ },
2295
+
2296
+ cumulativeOffset: function(element) {
2297
+ var valueT = 0, valueL = 0;
2298
+ do {
2299
+ valueT += element.offsetTop || 0;
2300
+ valueL += element.offsetLeft || 0;
2301
+ element = element.offsetParent;
2302
+ } while (element);
2303
+ return Element._returnOffset(valueL, valueT);
2304
+ },
2305
+
2306
+ positionedOffset: function(element) {
2307
+ var valueT = 0, valueL = 0;
2308
+ do {
2309
+ valueT += element.offsetTop || 0;
2310
+ valueL += element.offsetLeft || 0;
2311
+ element = element.offsetParent;
2312
+ if (element) {
2313
+ if (element.tagName.toUpperCase() == 'BODY') break;
2314
+ var p = Element.getStyle(element, 'position');
2315
+ if (p !== 'static') break;
2316
+ }
2317
+ } while (element);
2318
+ return Element._returnOffset(valueL, valueT);
2319
+ },
2320
+
2321
+ absolutize: function(element) {
2322
+ element = $(element);
2323
+ if (Element.getStyle(element, 'position') == 'absolute') return element;
2324
+
2325
+ var offsets = Element.positionedOffset(element);
2326
+ var top = offsets[1];
2327
+ var left = offsets[0];
2328
+ var width = element.clientWidth;
2329
+ var height = element.clientHeight;
2330
+
2331
+ element._originalLeft = left - parseFloat(element.style.left || 0);
2332
+ element._originalTop = top - parseFloat(element.style.top || 0);
2333
+ element._originalWidth = element.style.width;
2334
+ element._originalHeight = element.style.height;
2335
+
2336
+ element.style.position = 'absolute';
2337
+ element.style.top = top + 'px';
2338
+ element.style.left = left + 'px';
2339
+ element.style.width = width + 'px';
2340
+ element.style.height = height + 'px';
2341
+ return element;
2342
+ },
2343
+
2344
+ relativize: function(element) {
2345
+ element = $(element);
2346
+ if (Element.getStyle(element, 'position') == 'relative') return element;
2347
+
2348
+ element.style.position = 'relative';
2349
+ var top = parseFloat(element.style.top || 0) - (element._originalTop || 0);
2350
+ var left = parseFloat(element.style.left || 0) - (element._originalLeft || 0);
2351
+
2352
+ element.style.top = top + 'px';
2353
+ element.style.left = left + 'px';
2354
+ element.style.height = element._originalHeight;
2355
+ element.style.width = element._originalWidth;
2356
+ return element;
2357
+ },
2358
+
2359
+ cumulativeScrollOffset: function(element) {
2360
+ var valueT = 0, valueL = 0;
2361
+ do {
2362
+ valueT += element.scrollTop || 0;
2363
+ valueL += element.scrollLeft || 0;
2364
+ element = element.parentNode;
2365
+ } while (element);
2366
+ return Element._returnOffset(valueL, valueT);
2367
+ },
2368
+
2369
+ getOffsetParent: function(element) {
2370
+ if (element.offsetParent) return $(element.offsetParent);
2371
+ if (element == document.body) return $(element);
2372
+
2373
+ while ((element = element.parentNode) && element != document.body)
2374
+ if (Element.getStyle(element, 'position') != 'static')
2375
+ return $(element);
2376
+
2377
+ return $(document.body);
2378
+ },
2379
+
2380
+ viewportOffset: function(forElement) {
2381
+ var valueT = 0, valueL = 0;
2382
+
2383
+ var element = forElement;
2384
+ do {
2385
+ valueT += element.offsetTop || 0;
2386
+ valueL += element.offsetLeft || 0;
2387
+
2388
+ if (element.offsetParent == document.body &&
2389
+ Element.getStyle(element, 'position') == 'absolute') break;
2390
+
2391
+ } while (element = element.offsetParent);
2392
+
2393
+ element = forElement;
2394
+ do {
2395
+ if (!Prototype.Browser.Opera || (element.tagName && (element.tagName.toUpperCase() == 'BODY'))) {
2396
+ valueT -= element.scrollTop || 0;
2397
+ valueL -= element.scrollLeft || 0;
2398
+ }
2399
+ } while (element = element.parentNode);
2400
+
2401
+ return Element._returnOffset(valueL, valueT);
2402
+ },
2403
+
2404
+ clonePosition: function(element, source) {
2405
+ var options = Object.extend({
2406
+ setLeft: true,
2407
+ setTop: true,
2408
+ setWidth: true,
2409
+ setHeight: true,
2410
+ offsetTop: 0,
2411
+ offsetLeft: 0
2412
+ }, arguments[2] || { });
2413
+
2414
+ source = $(source);
2415
+ var p = Element.viewportOffset(source);
2416
+
2417
+ element = $(element);
2418
+ var delta = [0, 0];
2419
+ var parent = null;
2420
+ if (Element.getStyle(element, 'position') == 'absolute') {
2421
+ parent = Element.getOffsetParent(element);
2422
+ delta = Element.viewportOffset(parent);
2423
+ }
2424
+
2425
+ if (parent == document.body) {
2426
+ delta[0] -= document.body.offsetLeft;
2427
+ delta[1] -= document.body.offsetTop;
2428
+ }
2429
+
2430
+ if (options.setLeft) element.style.left = (p[0] - delta[0] + options.offsetLeft) + 'px';
2431
+ if (options.setTop) element.style.top = (p[1] - delta[1] + options.offsetTop) + 'px';
2432
+ if (options.setWidth) element.style.width = source.offsetWidth + 'px';
2433
+ if (options.setHeight) element.style.height = source.offsetHeight + 'px';
2434
+ return element;
2435
+ }
2436
+ };
2437
+
2438
+ Object.extend(Element.Methods, {
2439
+ getElementsBySelector: Element.Methods.select,
2440
+
2441
+ childElements: Element.Methods.immediateDescendants
2442
+ });
2443
+
2444
+ Element._attributeTranslations = {
2445
+ write: {
2446
+ names: {
2447
+ className: 'class',
2448
+ htmlFor: 'for'
2449
+ },
2450
+ values: { }
2451
+ }
2452
+ };
2453
+
2454
+ if (Prototype.Browser.Opera) {
2455
+ Element.Methods.getStyle = Element.Methods.getStyle.wrap(
2456
+ function(proceed, element, style) {
2457
+ switch (style) {
2458
+ case 'left': case 'top': case 'right': case 'bottom':
2459
+ if (proceed(element, 'position') === 'static') return null;
2460
+ case 'height': case 'width':
2461
+ if (!Element.visible(element)) return null;
2462
+
2463
+ var dim = parseInt(proceed(element, style), 10);
2464
+
2465
+ if (dim !== element['offset' + style.capitalize()])
2466
+ return dim + 'px';
2467
+
2468
+ var properties;
2469
+ if (style === 'height') {
2470
+ properties = ['border-top-width', 'padding-top',
2471
+ 'padding-bottom', 'border-bottom-width'];
2472
+ }
2473
+ else {
2474
+ properties = ['border-left-width', 'padding-left',
2475
+ 'padding-right', 'border-right-width'];
2476
+ }
2477
+ return properties.inject(dim, function(memo, property) {
2478
+ var val = proceed(element, property);
2479
+ return val === null ? memo : memo - parseInt(val, 10);
2480
+ }) + 'px';
2481
+ default: return proceed(element, style);
2482
+ }
2483
+ }
2484
+ );
2485
+
2486
+ Element.Methods.readAttribute = Element.Methods.readAttribute.wrap(
2487
+ function(proceed, element, attribute) {
2488
+ if (attribute === 'title') return element.title;
2489
+ return proceed(element, attribute);
2490
+ }
2491
+ );
2492
+ }
2493
+
2494
+ else if (Prototype.Browser.IE) {
2495
+ Element.Methods.getOffsetParent = Element.Methods.getOffsetParent.wrap(
2496
+ function(proceed, element) {
2497
+ element = $(element);
2498
+ try { element.offsetParent }
2499
+ catch(e) { return $(document.body) }
2500
+ var position = element.getStyle('position');
2501
+ if (position !== 'static') return proceed(element);
2502
+ element.setStyle({ position: 'relative' });
2503
+ var value = proceed(element);
2504
+ element.setStyle({ position: position });
2505
+ return value;
2506
+ }
2507
+ );
2508
+
2509
+ $w('positionedOffset viewportOffset').each(function(method) {
2510
+ Element.Methods[method] = Element.Methods[method].wrap(
2511
+ function(proceed, element) {
2512
+ element = $(element);
2513
+ try { element.offsetParent }
2514
+ catch(e) { return Element._returnOffset(0,0) }
2515
+ var position = element.getStyle('position');
2516
+ if (position !== 'static') return proceed(element);
2517
+ var offsetParent = element.getOffsetParent();
2518
+ if (offsetParent && offsetParent.getStyle('position') === 'fixed')
2519
+ offsetParent.setStyle({ zoom: 1 });
2520
+ element.setStyle({ position: 'relative' });
2521
+ var value = proceed(element);
2522
+ element.setStyle({ position: position });
2523
+ return value;
2524
+ }
2525
+ );
2526
+ });
2527
+
2528
+ Element.Methods.cumulativeOffset = Element.Methods.cumulativeOffset.wrap(
2529
+ function(proceed, element) {
2530
+ try { element.offsetParent }
2531
+ catch(e) { return Element._returnOffset(0,0) }
2532
+ return proceed(element);
2533
+ }
2534
+ );
2535
+
2536
+ Element.Methods.getStyle = function(element, style) {
2537
+ element = $(element);
2538
+ style = (style == 'float' || style == 'cssFloat') ? 'styleFloat' : style.camelize();
2539
+ var value = element.style[style];
2540
+ if (!value && element.currentStyle) value = element.currentStyle[style];
2541
+
2542
+ if (style == 'opacity') {
2543
+ if (value = (element.getStyle('filter') || '').match(/alpha\(opacity=(.*)\)/))
2544
+ if (value[1]) return parseFloat(value[1]) / 100;
2545
+ return 1.0;
2546
+ }
2547
+
2548
+ if (value == 'auto') {
2549
+ if ((style == 'width' || style == 'height') && (element.getStyle('display') != 'none'))
2550
+ return element['offset' + style.capitalize()] + 'px';
2551
+ return null;
2552
+ }
2553
+ return value;
2554
+ };
2555
+
2556
+ Element.Methods.setOpacity = function(element, value) {
2557
+ function stripAlpha(filter){
2558
+ return filter.replace(/alpha\([^\)]*\)/gi,'');
2559
+ }
2560
+ element = $(element);
2561
+ var currentStyle = element.currentStyle;
2562
+ if ((currentStyle && !currentStyle.hasLayout) ||
2563
+ (!currentStyle && element.style.zoom == 'normal'))
2564
+ element.style.zoom = 1;
2565
+
2566
+ var filter = element.getStyle('filter'), style = element.style;
2567
+ if (value == 1 || value === '') {
2568
+ (filter = stripAlpha(filter)) ?
2569
+ style.filter = filter : style.removeAttribute('filter');
2570
+ return element;
2571
+ } else if (value < 0.00001) value = 0;
2572
+ style.filter = stripAlpha(filter) +
2573
+ 'alpha(opacity=' + (value * 100) + ')';
2574
+ return element;
2575
+ };
2576
+
2577
+ Element._attributeTranslations = (function(){
2578
+
2579
+ var classProp = 'className';
2580
+ var forProp = 'for';
2581
+
2582
+ var el = document.createElement('div');
2583
+
2584
+ el.setAttribute(classProp, 'x');
2585
+
2586
+ if (el.className !== 'x') {
2587
+ el.setAttribute('class', 'x');
2588
+ if (el.className === 'x') {
2589
+ classProp = 'class';
2590
+ }
2591
+ }
2592
+ el = null;
2593
+
2594
+ el = document.createElement('label');
2595
+ el.setAttribute(forProp, 'x');
2596
+ if (el.htmlFor !== 'x') {
2597
+ el.setAttribute('htmlFor', 'x');
2598
+ if (el.htmlFor === 'x') {
2599
+ forProp = 'htmlFor';
2600
+ }
2601
+ }
2602
+ el = null;
2603
+
2604
+ return {
2605
+ read: {
2606
+ names: {
2607
+ 'class': classProp,
2608
+ 'className': classProp,
2609
+ 'for': forProp,
2610
+ 'htmlFor': forProp
2611
+ },
2612
+ values: {
2613
+ _getAttr: function(element, attribute) {
2614
+ return element.getAttribute(attribute);
2615
+ },
2616
+ _getAttr2: function(element, attribute) {
2617
+ return element.getAttribute(attribute, 2);
2618
+ },
2619
+ _getAttrNode: function(element, attribute) {
2620
+ var node = element.getAttributeNode(attribute);
2621
+ return node ? node.value : "";
2622
+ },
2623
+ _getEv: (function(){
2624
+
2625
+ var el = document.createElement('div');
2626
+ el.onclick = Prototype.emptyFunction;
2627
+ var value = el.getAttribute('onclick');
2628
+ var f;
2629
+
2630
+ if (String(value).indexOf('{') > -1) {
2631
+ f = function(element, attribute) {
2632
+ attribute = element.getAttribute(attribute);
2633
+ if (!attribute) return null;
2634
+ attribute = attribute.toString();
2635
+ attribute = attribute.split('{')[1];
2636
+ attribute = attribute.split('}')[0];
2637
+ return attribute.strip();
2638
+ };
2639
+ }
2640
+ else if (value === '') {
2641
+ f = function(element, attribute) {
2642
+ attribute = element.getAttribute(attribute);
2643
+ if (!attribute) return null;
2644
+ return attribute.strip();
2645
+ };
2646
+ }
2647
+ el = null;
2648
+ return f;
2649
+ })(),
2650
+ _flag: function(element, attribute) {
2651
+ return $(element).hasAttribute(attribute) ? attribute : null;
2652
+ },
2653
+ style: function(element) {
2654
+ return element.style.cssText.toLowerCase();
2655
+ },
2656
+ title: function(element) {
2657
+ return element.title;
2658
+ }
2659
+ }
2660
+ }
2661
+ }
2662
+ })();
2663
+
2664
+ Element._attributeTranslations.write = {
2665
+ names: Object.extend({
2666
+ cellpadding: 'cellPadding',
2667
+ cellspacing: 'cellSpacing'
2668
+ }, Element._attributeTranslations.read.names),
2669
+ values: {
2670
+ checked: function(element, value) {
2671
+ element.checked = !!value;
2672
+ },
2673
+
2674
+ style: function(element, value) {
2675
+ element.style.cssText = value ? value : '';
2676
+ }
2677
+ }
2678
+ };
2679
+
2680
+ Element._attributeTranslations.has = {};
2681
+
2682
+ $w('colSpan rowSpan vAlign dateTime accessKey tabIndex ' +
2683
+ 'encType maxLength readOnly longDesc frameBorder').each(function(attr) {
2684
+ Element._attributeTranslations.write.names[attr.toLowerCase()] = attr;
2685
+ Element._attributeTranslations.has[attr.toLowerCase()] = attr;
2686
+ });
2687
+
2688
+ (function(v) {
2689
+ Object.extend(v, {
2690
+ href: v._getAttr2,
2691
+ src: v._getAttr2,
2692
+ type: v._getAttr,
2693
+ action: v._getAttrNode,
2694
+ disabled: v._flag,
2695
+ checked: v._flag,
2696
+ readonly: v._flag,
2697
+ multiple: v._flag,
2698
+ onload: v._getEv,
2699
+ onunload: v._getEv,
2700
+ onclick: v._getEv,
2701
+ ondblclick: v._getEv,
2702
+ onmousedown: v._getEv,
2703
+ onmouseup: v._getEv,
2704
+ onmouseover: v._getEv,
2705
+ onmousemove: v._getEv,
2706
+ onmouseout: v._getEv,
2707
+ onfocus: v._getEv,
2708
+ onblur: v._getEv,
2709
+ onkeypress: v._getEv,
2710
+ onkeydown: v._getEv,
2711
+ onkeyup: v._getEv,
2712
+ onsubmit: v._getEv,
2713
+ onreset: v._getEv,
2714
+ onselect: v._getEv,
2715
+ onchange: v._getEv
2716
+ });
2717
+ })(Element._attributeTranslations.read.values);
2718
+
2719
+ if (Prototype.BrowserFeatures.ElementExtensions) {
2720
+ (function() {
2721
+ function _descendants(element) {
2722
+ var nodes = element.getElementsByTagName('*'), results = [];
2723
+ for (var i = 0, node; node = nodes[i]; i++)
2724
+ if (node.tagName !== "!") // Filter out comment nodes.
2725
+ results.push(node);
2726
+ return results;
2727
+ }
2728
+
2729
+ Element.Methods.down = function(element, expression, index) {
2730
+ element = $(element);
2731
+ if (arguments.length == 1) return element.firstDescendant();
2732
+ return Object.isNumber(expression) ? _descendants(element)[expression] :
2733
+ Element.select(element, expression)[index || 0];
2734
+ }
2735
+ })();
2736
+ }
2737
+
2738
+ }
2739
+
2740
+ else if (Prototype.Browser.Gecko && /rv:1\.8\.0/.test(navigator.userAgent)) {
2741
+ Element.Methods.setOpacity = function(element, value) {
2742
+ element = $(element);
2743
+ element.style.opacity = (value == 1) ? 0.999999 :
2744
+ (value === '') ? '' : (value < 0.00001) ? 0 : value;
2745
+ return element;
2746
+ };
2747
+ }
2748
+
2749
+ else if (Prototype.Browser.WebKit) {
2750
+ Element.Methods.setOpacity = function(element, value) {
2751
+ element = $(element);
2752
+ element.style.opacity = (value == 1 || value === '') ? '' :
2753
+ (value < 0.00001) ? 0 : value;
2754
+
2755
+ if (value == 1)
2756
+ if(element.tagName.toUpperCase() == 'IMG' && element.width) {
2757
+ element.width++; element.width--;
2758
+ } else try {
2759
+ var n = document.createTextNode(' ');
2760
+ element.appendChild(n);
2761
+ element.removeChild(n);
2762
+ } catch (e) { }
2763
+
2764
+ return element;
2765
+ };
2766
+
2767
+ Element.Methods.cumulativeOffset = function(element) {
2768
+ var valueT = 0, valueL = 0;
2769
+ do {
2770
+ valueT += element.offsetTop || 0;
2771
+ valueL += element.offsetLeft || 0;
2772
+ if (element.offsetParent == document.body)
2773
+ if (Element.getStyle(element, 'position') == 'absolute') break;
2774
+
2775
+ element = element.offsetParent;
2776
+ } while (element);
2777
+
2778
+ return Element._returnOffset(valueL, valueT);
2779
+ };
2780
+ }
2781
+
2782
+ if ('outerHTML' in document.documentElement) {
2783
+ Element.Methods.replace = function(element, content) {
2784
+ element = $(element);
2785
+
2786
+ if (content && content.toElement) content = content.toElement();
2787
+ if (Object.isElement(content)) {
2788
+ element.parentNode.replaceChild(content, element);
2789
+ return element;
2790
+ }
2791
+
2792
+ content = Object.toHTML(content);
2793
+ var parent = element.parentNode, tagName = parent.tagName.toUpperCase();
2794
+
2795
+ if (Element._insertionTranslations.tags[tagName]) {
2796
+ var nextSibling = element.next();
2797
+ var fragments = Element._getContentFromAnonymousElement(tagName, content.stripScripts());
2798
+ parent.removeChild(element);
2799
+ if (nextSibling)
2800
+ fragments.each(function(node) { parent.insertBefore(node, nextSibling) });
2801
+ else
2802
+ fragments.each(function(node) { parent.appendChild(node) });
2803
+ }
2804
+ else element.outerHTML = content.stripScripts();
2805
+
2806
+ content.evalScripts.bind(content).defer();
2807
+ return element;
2808
+ };
2809
+ }
2810
+
2811
+ Element._returnOffset = function(l, t) {
2812
+ var result = [l, t];
2813
+ result.left = l;
2814
+ result.top = t;
2815
+ return result;
2816
+ };
2817
+
2818
+ Element._getContentFromAnonymousElement = function(tagName, html) {
2819
+ var div = new Element('div'), t = Element._insertionTranslations.tags[tagName];
2820
+ if (t) {
2821
+ div.innerHTML = t[0] + html + t[1];
2822
+ t[2].times(function() { div = div.firstChild });
2823
+ } else div.innerHTML = html;
2824
+ return $A(div.childNodes);
2825
+ };
2826
+
2827
+ Element._insertionTranslations = {
2828
+ before: function(element, node) {
2829
+ element.parentNode.insertBefore(node, element);
2830
+ },
2831
+ top: function(element, node) {
2832
+ element.insertBefore(node, element.firstChild);
2833
+ },
2834
+ bottom: function(element, node) {
2835
+ element.appendChild(node);
2836
+ },
2837
+ after: function(element, node) {
2838
+ element.parentNode.insertBefore(node, element.nextSibling);
2839
+ },
2840
+ tags: {
2841
+ TABLE: ['<table>', '</table>', 1],
2842
+ TBODY: ['<table><tbody>', '</tbody></table>', 2],
2843
+ TR: ['<table><tbody><tr>', '</tr></tbody></table>', 3],
2844
+ TD: ['<table><tbody><tr><td>', '</td></tr></tbody></table>', 4],
2845
+ SELECT: ['<select>', '</select>', 1]
2846
+ }
2847
+ };
2848
+
2849
+ (function() {
2850
+ var tags = Element._insertionTranslations.tags;
2851
+ Object.extend(tags, {
2852
+ THEAD: tags.TBODY,
2853
+ TFOOT: tags.TBODY,
2854
+ TH: tags.TD
2855
+ });
2856
+ })();
2857
+
2858
+ Element.Methods.Simulated = {
2859
+ hasAttribute: function(element, attribute) {
2860
+ attribute = Element._attributeTranslations.has[attribute] || attribute;
2861
+ var node = $(element).getAttributeNode(attribute);
2862
+ return !!(node && node.specified);
2863
+ }
2864
+ };
2865
+
2866
+ Element.Methods.ByTag = { };
2867
+
2868
+ Object.extend(Element, Element.Methods);
2869
+
2870
+ (function(div) {
2871
+
2872
+ if (!Prototype.BrowserFeatures.ElementExtensions && div['__proto__']) {
2873
+ window.HTMLElement = { };
2874
+ window.HTMLElement.prototype = div['__proto__'];
2875
+ Prototype.BrowserFeatures.ElementExtensions = true;
2876
+ }
2877
+
2878
+ div = null;
2879
+
2880
+ })(document.createElement('div'))
2881
+
2882
+ Element.extend = (function() {
2883
+
2884
+ function checkDeficiency(tagName) {
2885
+ if (typeof window.Element != 'undefined') {
2886
+ var proto = window.Element.prototype;
2887
+ if (proto) {
2888
+ var id = '_' + (Math.random()+'').slice(2);
2889
+ var el = document.createElement(tagName);
2890
+ proto[id] = 'x';
2891
+ var isBuggy = (el[id] !== 'x');
2892
+ delete proto[id];
2893
+ el = null;
2894
+ return isBuggy;
2895
+ }
2896
+ }
2897
+ return false;
2898
+ }
2899
+
2900
+ function extendElementWith(element, methods) {
2901
+ for (var property in methods) {
2902
+ var value = methods[property];
2903
+ if (Object.isFunction(value) && !(property in element))
2904
+ element[property] = value.methodize();
2905
+ }
2906
+ }
2907
+
2908
+ var HTMLOBJECTELEMENT_PROTOTYPE_BUGGY = checkDeficiency('object');
2909
+
2910
+ if (Prototype.BrowserFeatures.SpecificElementExtensions) {
2911
+ if (HTMLOBJECTELEMENT_PROTOTYPE_BUGGY) {
2912
+ return function(element) {
2913
+ if (element && typeof element._extendedByPrototype == 'undefined') {
2914
+ var t = element.tagName;
2915
+ if (t && (/^(?:object|applet|embed)$/i.test(t))) {
2916
+ extendElementWith(element, Element.Methods);
2917
+ extendElementWith(element, Element.Methods.Simulated);
2918
+ extendElementWith(element, Element.Methods.ByTag[t.toUpperCase()]);
2919
+ }
2920
+ }
2921
+ return element;
2922
+ }
2923
+ }
2924
+ return Prototype.K;
2925
+ }
2926
+
2927
+ var Methods = { }, ByTag = Element.Methods.ByTag;
2928
+
2929
+ var extend = Object.extend(function(element) {
2930
+ if (!element || typeof element._extendedByPrototype != 'undefined' ||
2931
+ element.nodeType != 1 || element == window) return element;
2932
+
2933
+ var methods = Object.clone(Methods),
2934
+ tagName = element.tagName.toUpperCase();
2935
+
2936
+ if (ByTag[tagName]) Object.extend(methods, ByTag[tagName]);
2937
+
2938
+ extendElementWith(element, methods);
2939
+
2940
+ element._extendedByPrototype = Prototype.emptyFunction;
2941
+ return element;
2942
+
2943
+ }, {
2944
+ refresh: function() {
2945
+ if (!Prototype.BrowserFeatures.ElementExtensions) {
2946
+ Object.extend(Methods, Element.Methods);
2947
+ Object.extend(Methods, Element.Methods.Simulated);
2948
+ }
2949
+ }
2950
+ });
2951
+
2952
+ extend.refresh();
2953
+ return extend;
2954
+ })();
2955
+
2956
+ Element.hasAttribute = function(element, attribute) {
2957
+ if (element.hasAttribute) return element.hasAttribute(attribute);
2958
+ return Element.Methods.Simulated.hasAttribute(element, attribute);
2959
+ };
2960
+
2961
+ Element.addMethods = function(methods) {
2962
+ var F = Prototype.BrowserFeatures, T = Element.Methods.ByTag;
2963
+
2964
+ if (!methods) {
2965
+ Object.extend(Form, Form.Methods);
2966
+ Object.extend(Form.Element, Form.Element.Methods);
2967
+ Object.extend(Element.Methods.ByTag, {
2968
+ "FORM": Object.clone(Form.Methods),
2969
+ "INPUT": Object.clone(Form.Element.Methods),
2970
+ "SELECT": Object.clone(Form.Element.Methods),
2971
+ "TEXTAREA": Object.clone(Form.Element.Methods)
2972
+ });
2973
+ }
2974
+
2975
+ if (arguments.length == 2) {
2976
+ var tagName = methods;
2977
+ methods = arguments[1];
2978
+ }
2979
+
2980
+ if (!tagName) Object.extend(Element.Methods, methods || { });
2981
+ else {
2982
+ if (Object.isArray(tagName)) tagName.each(extend);
2983
+ else extend(tagName);
2984
+ }
2985
+
2986
+ function extend(tagName) {
2987
+ tagName = tagName.toUpperCase();
2988
+ if (!Element.Methods.ByTag[tagName])
2989
+ Element.Methods.ByTag[tagName] = { };
2990
+ Object.extend(Element.Methods.ByTag[tagName], methods);
2991
+ }
2992
+
2993
+ function copy(methods, destination, onlyIfAbsent) {
2994
+ onlyIfAbsent = onlyIfAbsent || false;
2995
+ for (var property in methods) {
2996
+ var value = methods[property];
2997
+ if (!Object.isFunction(value)) continue;
2998
+ if (!onlyIfAbsent || !(property in destination))
2999
+ destination[property] = value.methodize();
3000
+ }
3001
+ }
3002
+
3003
+ function findDOMClass(tagName) {
3004
+ var klass;
3005
+ var trans = {
3006
+ "OPTGROUP": "OptGroup", "TEXTAREA": "TextArea", "P": "Paragraph",
3007
+ "FIELDSET": "FieldSet", "UL": "UList", "OL": "OList", "DL": "DList",
3008
+ "DIR": "Directory", "H1": "Heading", "H2": "Heading", "H3": "Heading",
3009
+ "H4": "Heading", "H5": "Heading", "H6": "Heading", "Q": "Quote",
3010
+ "INS": "Mod", "DEL": "Mod", "A": "Anchor", "IMG": "Image", "CAPTION":
3011
+ "TableCaption", "COL": "TableCol", "COLGROUP": "TableCol", "THEAD":
3012
+ "TableSection", "TFOOT": "TableSection", "TBODY": "TableSection", "TR":
3013
+ "TableRow", "TH": "TableCell", "TD": "TableCell", "FRAMESET":
3014
+ "FrameSet", "IFRAME": "IFrame"
3015
+ };
3016
+ if (trans[tagName]) klass = 'HTML' + trans[tagName] + 'Element';
3017
+ if (window[klass]) return window[klass];
3018
+ klass = 'HTML' + tagName + 'Element';
3019
+ if (window[klass]) return window[klass];
3020
+ klass = 'HTML' + tagName.capitalize() + 'Element';
3021
+ if (window[klass]) return window[klass];
3022
+
3023
+ var element = document.createElement(tagName);
3024
+ var proto = element['__proto__'] || element.constructor.prototype;
3025
+ element = null;
3026
+ return proto;
3027
+ }
3028
+
3029
+ var elementPrototype = window.HTMLElement ? HTMLElement.prototype :
3030
+ Element.prototype;
3031
+
3032
+ if (F.ElementExtensions) {
3033
+ copy(Element.Methods, elementPrototype);
3034
+ copy(Element.Methods.Simulated, elementPrototype, true);
3035
+ }
3036
+
3037
+ if (F.SpecificElementExtensions) {
3038
+ for (var tag in Element.Methods.ByTag) {
3039
+ var klass = findDOMClass(tag);
3040
+ if (Object.isUndefined(klass)) continue;
3041
+ copy(T[tag], klass.prototype);
3042
+ }
3043
+ }
3044
+
3045
+ Object.extend(Element, Element.Methods);
3046
+ delete Element.ByTag;
3047
+
3048
+ if (Element.extend.refresh) Element.extend.refresh();
3049
+ Element.cache = { };
3050
+ };
3051
+
3052
+
3053
+ document.viewport = {
3054
+
3055
+ getDimensions: function() {
3056
+ return { width: this.getWidth(), height: this.getHeight() };
3057
+ },
3058
+
3059
+ getScrollOffsets: function() {
3060
+ return Element._returnOffset(
3061
+ window.pageXOffset || document.documentElement.scrollLeft || document.body.scrollLeft,
3062
+ window.pageYOffset || document.documentElement.scrollTop || document.body.scrollTop);
3063
+ }
3064
+ };
3065
+
3066
+ (function(viewport) {
3067
+ var B = Prototype.Browser, doc = document, element, property = {};
3068
+
3069
+ function getRootElement() {
3070
+ if (B.WebKit && !doc.evaluate)
3071
+ return document;
3072
+
3073
+ if (B.Opera && window.parseFloat(window.opera.version()) < 9.5)
3074
+ return document.body;
3075
+
3076
+ return document.documentElement;
3077
+ }
3078
+
3079
+ function define(D) {
3080
+ if (!element) element = getRootElement();
3081
+
3082
+ property[D] = 'client' + D;
3083
+
3084
+ viewport['get' + D] = function() { return element[property[D]] };
3085
+ return viewport['get' + D]();
3086
+ }
3087
+
3088
+ viewport.getWidth = define.curry('Width');
3089
+
3090
+ viewport.getHeight = define.curry('Height');
3091
+ })(document.viewport);
3092
+
3093
+
3094
+ Element.Storage = {
3095
+ UID: 1
3096
+ };
3097
+
3098
+ Element.addMethods({
3099
+ getStorage: function(element) {
3100
+ if (!(element = $(element))) return;
3101
+
3102
+ var uid;
3103
+ if (element === window) {
3104
+ uid = 0;
3105
+ } else {
3106
+ if (typeof element._prototypeUID === "undefined")
3107
+ element._prototypeUID = [Element.Storage.UID++];
3108
+ uid = element._prototypeUID[0];
3109
+ }
3110
+
3111
+ if (!Element.Storage[uid])
3112
+ Element.Storage[uid] = $H();
3113
+
3114
+ return Element.Storage[uid];
3115
+ },
3116
+
3117
+ store: function(element, key, value) {
3118
+ if (!(element = $(element))) return;
3119
+
3120
+ if (arguments.length === 2) {
3121
+ Element.getStorage(element).update(key);
3122
+ } else {
3123
+ Element.getStorage(element).set(key, value);
3124
+ }
3125
+
3126
+ return element;
3127
+ },
3128
+
3129
+ retrieve: function(element, key, defaultValue) {
3130
+ if (!(element = $(element))) return;
3131
+ var hash = Element.getStorage(element), value = hash.get(key);
3132
+
3133
+ if (Object.isUndefined(value)) {
3134
+ hash.set(key, defaultValue);
3135
+ value = defaultValue;
3136
+ }
3137
+
3138
+ return value;
3139
+ },
3140
+
3141
+ clone: function(element, deep) {
3142
+ if (!(element = $(element))) return;
3143
+ var clone = element.cloneNode(deep);
3144
+ clone._prototypeUID = void 0;
3145
+ if (deep) {
3146
+ var descendants = Element.select(clone, '*'),
3147
+ i = descendants.length;
3148
+ while (i--) {
3149
+ descendants[i]._prototypeUID = void 0;
3150
+ }
3151
+ }
3152
+ return Element.extend(clone);
3153
+ }
3154
+ });
3155
+ /* Portions of the Selector class are derived from Jack Slocum's DomQuery,
3156
+ * part of YUI-Ext version 0.40, distributed under the terms of an MIT-style
3157
+ * license. Please see http://www.yui-ext.com/ for more information. */
3158
+
3159
+ var Selector = Class.create({
3160
+ initialize: function(expression) {
3161
+ this.expression = expression.strip();
3162
+
3163
+ if (this.shouldUseSelectorsAPI()) {
3164
+ this.mode = 'selectorsAPI';
3165
+ } else if (this.shouldUseXPath()) {
3166
+ this.mode = 'xpath';
3167
+ this.compileXPathMatcher();
3168
+ } else {
3169
+ this.mode = "normal";
3170
+ this.compileMatcher();
3171
+ }
3172
+
3173
+ },
3174
+
3175
+ shouldUseXPath: (function() {
3176
+
3177
+ var IS_DESCENDANT_SELECTOR_BUGGY = (function(){
3178
+ var isBuggy = false;
3179
+ if (document.evaluate && window.XPathResult) {
3180
+ var el = document.createElement('div');
3181
+ el.innerHTML = '<ul><li></li></ul><div><ul><li></li></ul></div>';
3182
+
3183
+ var xpath = ".//*[local-name()='ul' or local-name()='UL']" +
3184
+ "//*[local-name()='li' or local-name()='LI']";
3185
+
3186
+ var result = document.evaluate(xpath, el, null,
3187
+ XPathResult.ORDERED_NODE_SNAPSHOT_TYPE, null);
3188
+
3189
+ isBuggy = (result.snapshotLength !== 2);
3190
+ el = null;
3191
+ }
3192
+ return isBuggy;
3193
+ })();
3194
+
3195
+ return function() {
3196
+ if (!Prototype.BrowserFeatures.XPath) return false;
3197
+
3198
+ var e = this.expression;
3199
+
3200
+ if (Prototype.Browser.WebKit &&
3201
+ (e.include("-of-type") || e.include(":empty")))
3202
+ return false;
3203
+
3204
+ if ((/(\[[\w-]*?:|:checked)/).test(e))
3205
+ return false;
3206
+
3207
+ if (IS_DESCENDANT_SELECTOR_BUGGY) return false;
3208
+
3209
+ return true;
3210
+ }
3211
+
3212
+ })(),
3213
+
3214
+ shouldUseSelectorsAPI: function() {
3215
+ if (!Prototype.BrowserFeatures.SelectorsAPI) return false;
3216
+
3217
+ if (Selector.CASE_INSENSITIVE_CLASS_NAMES) return false;
3218
+
3219
+ if (!Selector._div) Selector._div = new Element('div');
3220
+
3221
+ try {
3222
+ Selector._div.querySelector(this.expression);
3223
+ } catch(e) {
3224
+ return false;
3225
+ }
3226
+
3227
+ return true;
3228
+ },
3229
+
3230
+ compileMatcher: function() {
3231
+ var e = this.expression, ps = Selector.patterns, h = Selector.handlers,
3232
+ c = Selector.criteria, le, p, m, len = ps.length, name;
3233
+
3234
+ if (Selector._cache[e]) {
3235
+ this.matcher = Selector._cache[e];
3236
+ return;
3237
+ }
3238
+
3239
+ this.matcher = ["this.matcher = function(root) {",
3240
+ "var r = root, h = Selector.handlers, c = false, n;"];
3241
+
3242
+ while (e && le != e && (/\S/).test(e)) {
3243
+ le = e;
3244
+ for (var i = 0; i<len; i++) {
3245
+ p = ps[i].re;
3246
+ name = ps[i].name;
3247
+ if (m = e.match(p)) {
3248
+ this.matcher.push(Object.isFunction(c[name]) ? c[name](m) :
3249
+ new Template(c[name]).evaluate(m));
3250
+ e = e.replace(m[0], '');
3251
+ break;
3252
+ }
3253
+ }
3254
+ }
3255
+
3256
+ this.matcher.push("return h.unique(n);\n}");
3257
+ eval(this.matcher.join('\n'));
3258
+ Selector._cache[this.expression] = this.matcher;
3259
+ },
3260
+
3261
+ compileXPathMatcher: function() {
3262
+ var e = this.expression, ps = Selector.patterns,
3263
+ x = Selector.xpath, le, m, len = ps.length, name;
3264
+
3265
+ if (Selector._cache[e]) {
3266
+ this.xpath = Selector._cache[e]; return;
3267
+ }
3268
+
3269
+ this.matcher = ['.//*'];
3270
+ while (e && le != e && (/\S/).test(e)) {
3271
+ le = e;
3272
+ for (var i = 0; i<len; i++) {
3273
+ name = ps[i].name;
3274
+ if (m = e.match(ps[i].re)) {
3275
+ this.matcher.push(Object.isFunction(x[name]) ? x[name](m) :
3276
+ new Template(x[name]).evaluate(m));
3277
+ e = e.replace(m[0], '');
3278
+ break;
3279
+ }
3280
+ }
3281
+ }
3282
+
3283
+ this.xpath = this.matcher.join('');
3284
+ Selector._cache[this.expression] = this.xpath;
3285
+ },
3286
+
3287
+ findElements: function(root) {
3288
+ root = root || document;
3289
+ var e = this.expression, results;
3290
+
3291
+ switch (this.mode) {
3292
+ case 'selectorsAPI':
3293
+ if (root !== document) {
3294
+ var oldId = root.id, id = $(root).identify();
3295
+ id = id.replace(/([\.:])/g, "\\$1");
3296
+ e = "#" + id + " " + e;
3297
+ }
3298
+
3299
+ results = $A(root.querySelectorAll(e)).map(Element.extend);
3300
+ root.id = oldId;
3301
+
3302
+ return results;
3303
+ case 'xpath':
3304
+ return document._getElementsByXPath(this.xpath, root);
3305
+ default:
3306
+ return this.matcher(root);
3307
+ }
3308
+ },
3309
+
3310
+ match: function(element) {
3311
+ this.tokens = [];
3312
+
3313
+ var e = this.expression, ps = Selector.patterns, as = Selector.assertions;
3314
+ var le, p, m, len = ps.length, name;
3315
+
3316
+ while (e && le !== e && (/\S/).test(e)) {
3317
+ le = e;
3318
+ for (var i = 0; i<len; i++) {
3319
+ p = ps[i].re;
3320
+ name = ps[i].name;
3321
+ if (m = e.match(p)) {
3322
+ if (as[name]) {
3323
+ this.tokens.push([name, Object.clone(m)]);
3324
+ e = e.replace(m[0], '');
3325
+ } else {
3326
+ return this.findElements(document).include(element);
3327
+ }
3328
+ }
3329
+ }
3330
+ }
3331
+
3332
+ var match = true, name, matches;
3333
+ for (var i = 0, token; token = this.tokens[i]; i++) {
3334
+ name = token[0], matches = token[1];
3335
+ if (!Selector.assertions[name](element, matches)) {
3336
+ match = false; break;
3337
+ }
3338
+ }
3339
+
3340
+ return match;
3341
+ },
3342
+
3343
+ toString: function() {
3344
+ return this.expression;
3345
+ },
3346
+
3347
+ inspect: function() {
3348
+ return "#<Selector:" + this.expression.inspect() + ">";
3349
+ }
3350
+ });
3351
+
3352
+ if (Prototype.BrowserFeatures.SelectorsAPI &&
3353
+ document.compatMode === 'BackCompat') {
3354
+ Selector.CASE_INSENSITIVE_CLASS_NAMES = (function(){
3355
+ var div = document.createElement('div'),
3356
+ span = document.createElement('span');
3357
+
3358
+ div.id = "prototype_test_id";
3359
+ span.className = 'Test';
3360
+ div.appendChild(span);
3361
+ var isIgnored = (div.querySelector('#prototype_test_id .test') !== null);
3362
+ div = span = null;
3363
+ return isIgnored;
3364
+ })();
3365
+ }
3366
+
3367
+ Object.extend(Selector, {
3368
+ _cache: { },
3369
+
3370
+ xpath: {
3371
+ descendant: "//*",
3372
+ child: "/*",
3373
+ adjacent: "/following-sibling::*[1]",
3374
+ laterSibling: '/following-sibling::*',
3375
+ tagName: function(m) {
3376
+ if (m[1] == '*') return '';
3377
+ return "[local-name()='" + m[1].toLowerCase() +
3378
+ "' or local-name()='" + m[1].toUpperCase() + "']";
3379
+ },
3380
+ className: "[contains(concat(' ', @class, ' '), ' #{1} ')]",
3381
+ id: "[@id='#{1}']",
3382
+ attrPresence: function(m) {
3383
+ m[1] = m[1].toLowerCase();
3384
+ return new Template("[@#{1}]").evaluate(m);
3385
+ },
3386
+ attr: function(m) {
3387
+ m[1] = m[1].toLowerCase();
3388
+ m[3] = m[5] || m[6];
3389
+ return new Template(Selector.xpath.operators[m[2]]).evaluate(m);
3390
+ },
3391
+ pseudo: function(m) {
3392
+ var h = Selector.xpath.pseudos[m[1]];
3393
+ if (!h) return '';
3394
+ if (Object.isFunction(h)) return h(m);
3395
+ return new Template(Selector.xpath.pseudos[m[1]]).evaluate(m);
3396
+ },
3397
+ operators: {
3398
+ '=': "[@#{1}='#{3}']",
3399
+ '!=': "[@#{1}!='#{3}']",
3400
+ '^=': "[starts-with(@#{1}, '#{3}')]",
3401
+ '$=': "[substring(@#{1}, (string-length(@#{1}) - string-length('#{3}') + 1))='#{3}']",
3402
+ '*=': "[contains(@#{1}, '#{3}')]",
3403
+ '~=': "[contains(concat(' ', @#{1}, ' '), ' #{3} ')]",
3404
+ '|=': "[contains(concat('-', @#{1}, '-'), '-#{3}-')]"
3405
+ },
3406
+ pseudos: {
3407
+ 'first-child': '[not(preceding-sibling::*)]',
3408
+ 'last-child': '[not(following-sibling::*)]',
3409
+ 'only-child': '[not(preceding-sibling::* or following-sibling::*)]',
3410
+ 'empty': "[count(*) = 0 and (count(text()) = 0)]",
3411
+ 'checked': "[@checked]",
3412
+ 'disabled': "[(@disabled) and (@type!='hidden')]",
3413
+ 'enabled': "[not(@disabled) and (@type!='hidden')]",
3414
+ 'not': function(m) {
3415
+ var e = m[6], p = Selector.patterns,
3416
+ x = Selector.xpath, le, v, len = p.length, name;
3417
+
3418
+ var exclusion = [];
3419
+ while (e && le != e && (/\S/).test(e)) {
3420
+ le = e;
3421
+ for (var i = 0; i<len; i++) {
3422
+ name = p[i].name
3423
+ if (m = e.match(p[i].re)) {
3424
+ v = Object.isFunction(x[name]) ? x[name](m) : new Template(x[name]).evaluate(m);
3425
+ exclusion.push("(" + v.substring(1, v.length - 1) + ")");
3426
+ e = e.replace(m[0], '');
3427
+ break;
3428
+ }
3429
+ }
3430
+ }
3431
+ return "[not(" + exclusion.join(" and ") + ")]";
3432
+ },
3433
+ 'nth-child': function(m) {
3434
+ return Selector.xpath.pseudos.nth("(count(./preceding-sibling::*) + 1) ", m);
3435
+ },
3436
+ 'nth-last-child': function(m) {
3437
+ return Selector.xpath.pseudos.nth("(count(./following-sibling::*) + 1) ", m);
3438
+ },
3439
+ 'nth-of-type': function(m) {
3440
+ return Selector.xpath.pseudos.nth("position() ", m);
3441
+ },
3442
+ 'nth-last-of-type': function(m) {
3443
+ return Selector.xpath.pseudos.nth("(last() + 1 - position()) ", m);
3444
+ },
3445
+ 'first-of-type': function(m) {
3446
+ m[6] = "1"; return Selector.xpath.pseudos['nth-of-type'](m);
3447
+ },
3448
+ 'last-of-type': function(m) {
3449
+ m[6] = "1"; return Selector.xpath.pseudos['nth-last-of-type'](m);
3450
+ },
3451
+ 'only-of-type': function(m) {
3452
+ var p = Selector.xpath.pseudos; return p['first-of-type'](m) + p['last-of-type'](m);
3453
+ },
3454
+ nth: function(fragment, m) {
3455
+ var mm, formula = m[6], predicate;
3456
+ if (formula == 'even') formula = '2n+0';
3457
+ if (formula == 'odd') formula = '2n+1';
3458
+ if (mm = formula.match(/^(\d+)$/)) // digit only
3459
+ return '[' + fragment + "= " + mm[1] + ']';
3460
+ if (mm = formula.match(/^(-?\d*)?n(([+-])(\d+))?/)) { // an+b
3461
+ if (mm[1] == "-") mm[1] = -1;
3462
+ var a = mm[1] ? Number(mm[1]) : 1;
3463
+ var b = mm[2] ? Number(mm[2]) : 0;
3464
+ predicate = "[((#{fragment} - #{b}) mod #{a} = 0) and " +
3465
+ "((#{fragment} - #{b}) div #{a} >= 0)]";
3466
+ return new Template(predicate).evaluate({
3467
+ fragment: fragment, a: a, b: b });
3468
+ }
3469
+ }
3470
+ }
3471
+ },
3472
+
3473
+ criteria: {
3474
+ tagName: 'n = h.tagName(n, r, "#{1}", c); c = false;',
3475
+ className: 'n = h.className(n, r, "#{1}", c); c = false;',
3476
+ id: 'n = h.id(n, r, "#{1}", c); c = false;',
3477
+ attrPresence: 'n = h.attrPresence(n, r, "#{1}", c); c = false;',
3478
+ attr: function(m) {
3479
+ m[3] = (m[5] || m[6]);
3480
+ return new Template('n = h.attr(n, r, "#{1}", "#{3}", "#{2}", c); c = false;').evaluate(m);
3481
+ },
3482
+ pseudo: function(m) {
3483
+ if (m[6]) m[6] = m[6].replace(/"/g, '\\"');
3484
+ return new Template('n = h.pseudo(n, "#{1}", "#{6}", r, c); c = false;').evaluate(m);
3485
+ },
3486
+ descendant: 'c = "descendant";',
3487
+ child: 'c = "child";',
3488
+ adjacent: 'c = "adjacent";',
3489
+ laterSibling: 'c = "laterSibling";'
3490
+ },
3491
+
3492
+ patterns: [
3493
+ { name: 'laterSibling', re: /^\s*~\s*/ },
3494
+ { name: 'child', re: /^\s*>\s*/ },
3495
+ { name: 'adjacent', re: /^\s*\+\s*/ },
3496
+ { name: 'descendant', re: /^\s/ },
3497
+
3498
+ { name: 'tagName', re: /^\s*(\*|[\w\-]+)(\b|$)?/ },
3499
+ { name: 'id', re: /^#([\w\-\*]+)(\b|$)/ },
3500
+ { name: 'className', re: /^\.([\w\-\*]+)(\b|$)/ },
3501
+ { name: 'pseudo', re: /^:((first|last|nth|nth-last|only)(-child|-of-type)|empty|checked|(en|dis)abled|not)(\((.*?)\))?(\b|$|(?=\s|[:+~>]))/ },
3502
+ { name: 'attrPresence', re: /^\[((?:[\w-]+:)?[\w-]+)\]/ },
3503
+ { name: 'attr', re: /\[((?:[\w-]*:)?[\w-]+)\s*(?:([!^$*~|]?=)\s*((['"])([^\4]*?)\4|([^'"][^\]]*?)))?\]/ }
3504
+ ],
3505
+
3506
+ assertions: {
3507
+ tagName: function(element, matches) {
3508
+ return matches[1].toUpperCase() == element.tagName.toUpperCase();
3509
+ },
3510
+
3511
+ className: function(element, matches) {
3512
+ return Element.hasClassName(element, matches[1]);
3513
+ },
3514
+
3515
+ id: function(element, matches) {
3516
+ return element.id === matches[1];
3517
+ },
3518
+
3519
+ attrPresence: function(element, matches) {
3520
+ return Element.hasAttribute(element, matches[1]);
3521
+ },
3522
+
3523
+ attr: function(element, matches) {
3524
+ var nodeValue = Element.readAttribute(element, matches[1]);
3525
+ return nodeValue && Selector.operators[matches[2]](nodeValue, matches[5] || matches[6]);
3526
+ }
3527
+ },
3528
+
3529
+ handlers: {
3530
+ concat: function(a, b) {
3531
+ for (var i = 0, node; node = b[i]; i++)
3532
+ a.push(node);
3533
+ return a;
3534
+ },
3535
+
3536
+ mark: function(nodes) {
3537
+ var _true = Prototype.emptyFunction;
3538
+ for (var i = 0, node; node = nodes[i]; i++)
3539
+ node._countedByPrototype = _true;
3540
+ return nodes;
3541
+ },
3542
+
3543
+ unmark: (function(){
3544
+
3545
+ var PROPERTIES_ATTRIBUTES_MAP = (function(){
3546
+ var el = document.createElement('div'),
3547
+ isBuggy = false,
3548
+ propName = '_countedByPrototype',
3549
+ value = 'x'
3550
+ el[propName] = value;
3551
+ isBuggy = (el.getAttribute(propName) === value);
3552
+ el = null;
3553
+ return isBuggy;
3554
+ })();
3555
+
3556
+ return PROPERTIES_ATTRIBUTES_MAP ?
3557
+ function(nodes) {
3558
+ for (var i = 0, node; node = nodes[i]; i++)
3559
+ node.removeAttribute('_countedByPrototype');
3560
+ return nodes;
3561
+ } :
3562
+ function(nodes) {
3563
+ for (var i = 0, node; node = nodes[i]; i++)
3564
+ node._countedByPrototype = void 0;
3565
+ return nodes;
3566
+ }
3567
+ })(),
3568
+
3569
+ index: function(parentNode, reverse, ofType) {
3570
+ parentNode._countedByPrototype = Prototype.emptyFunction;
3571
+ if (reverse) {
3572
+ for (var nodes = parentNode.childNodes, i = nodes.length - 1, j = 1; i >= 0; i--) {
3573
+ var node = nodes[i];
3574
+ if (node.nodeType == 1 && (!ofType || node._countedByPrototype)) node.nodeIndex = j++;
3575
+ }
3576
+ } else {
3577
+ for (var i = 0, j = 1, nodes = parentNode.childNodes; node = nodes[i]; i++)
3578
+ if (node.nodeType == 1 && (!ofType || node._countedByPrototype)) node.nodeIndex = j++;
3579
+ }
3580
+ },
3581
+
3582
+ unique: function(nodes) {
3583
+ if (nodes.length == 0) return nodes;
3584
+ var results = [], n;
3585
+ for (var i = 0, l = nodes.length; i < l; i++)
3586
+ if (typeof (n = nodes[i])._countedByPrototype == 'undefined') {
3587
+ n._countedByPrototype = Prototype.emptyFunction;
3588
+ results.push(Element.extend(n));
3589
+ }
3590
+ return Selector.handlers.unmark(results);
3591
+ },
3592
+
3593
+ descendant: function(nodes) {
3594
+ var h = Selector.handlers;
3595
+ for (var i = 0, results = [], node; node = nodes[i]; i++)
3596
+ h.concat(results, node.getElementsByTagName('*'));
3597
+ return results;
3598
+ },
3599
+
3600
+ child: function(nodes) {
3601
+ var h = Selector.handlers;
3602
+ for (var i = 0, results = [], node; node = nodes[i]; i++) {
3603
+ for (var j = 0, child; child = node.childNodes[j]; j++)
3604
+ if (child.nodeType == 1 && child.tagName != '!') results.push(child);
3605
+ }
3606
+ return results;
3607
+ },
3608
+
3609
+ adjacent: function(nodes) {
3610
+ for (var i = 0, results = [], node; node = nodes[i]; i++) {
3611
+ var next = this.nextElementSibling(node);
3612
+ if (next) results.push(next);
3613
+ }
3614
+ return results;
3615
+ },
3616
+
3617
+ laterSibling: function(nodes) {
3618
+ var h = Selector.handlers;
3619
+ for (var i = 0, results = [], node; node = nodes[i]; i++)
3620
+ h.concat(results, Element.nextSiblings(node));
3621
+ return results;
3622
+ },
3623
+
3624
+ nextElementSibling: function(node) {
3625
+ while (node = node.nextSibling)
3626
+ if (node.nodeType == 1) return node;
3627
+ return null;
3628
+ },
3629
+
3630
+ previousElementSibling: function(node) {
3631
+ while (node = node.previousSibling)
3632
+ if (node.nodeType == 1) return node;
3633
+ return null;
3634
+ },
3635
+
3636
+ tagName: function(nodes, root, tagName, combinator) {
3637
+ var uTagName = tagName.toUpperCase();
3638
+ var results = [], h = Selector.handlers;
3639
+ if (nodes) {
3640
+ if (combinator) {
3641
+ if (combinator == "descendant") {
3642
+ for (var i = 0, node; node = nodes[i]; i++)
3643
+ h.concat(results, node.getElementsByTagName(tagName));
3644
+ return results;
3645
+ } else nodes = this[combinator](nodes);
3646
+ if (tagName == "*") return nodes;
3647
+ }
3648
+ for (var i = 0, node; node = nodes[i]; i++)
3649
+ if (node.tagName.toUpperCase() === uTagName) results.push(node);
3650
+ return results;
3651
+ } else return root.getElementsByTagName(tagName);
3652
+ },
3653
+
3654
+ id: function(nodes, root, id, combinator) {
3655
+ var targetNode = $(id), h = Selector.handlers;
3656
+
3657
+ if (root == document) {
3658
+ if (!targetNode) return [];
3659
+ if (!nodes) return [targetNode];
3660
+ } else {
3661
+ if (!root.sourceIndex || root.sourceIndex < 1) {
3662
+ var nodes = root.getElementsByTagName('*');
3663
+ for (var j = 0, node; node = nodes[j]; j++) {
3664
+ if (node.id === id) return [node];
3665
+ }
3666
+ }
3667
+ }
3668
+
3669
+ if (nodes) {
3670
+ if (combinator) {
3671
+ if (combinator == 'child') {
3672
+ for (var i = 0, node; node = nodes[i]; i++)
3673
+ if (targetNode.parentNode == node) return [targetNode];
3674
+ } else if (combinator == 'descendant') {
3675
+ for (var i = 0, node; node = nodes[i]; i++)
3676
+ if (Element.descendantOf(targetNode, node)) return [targetNode];
3677
+ } else if (combinator == 'adjacent') {
3678
+ for (var i = 0, node; node = nodes[i]; i++)
3679
+ if (Selector.handlers.previousElementSibling(targetNode) == node)
3680
+ return [targetNode];
3681
+ } else nodes = h[combinator](nodes);
3682
+ }
3683
+ for (var i = 0, node; node = nodes[i]; i++)
3684
+ if (node == targetNode) return [targetNode];
3685
+ return [];
3686
+ }
3687
+ return (targetNode && Element.descendantOf(targetNode, root)) ? [targetNode] : [];
3688
+ },
3689
+
3690
+ className: function(nodes, root, className, combinator) {
3691
+ if (nodes && combinator) nodes = this[combinator](nodes);
3692
+ return Selector.handlers.byClassName(nodes, root, className);
3693
+ },
3694
+
3695
+ byClassName: function(nodes, root, className) {
3696
+ if (!nodes) nodes = Selector.handlers.descendant([root]);
3697
+ var needle = ' ' + className + ' ';
3698
+ for (var i = 0, results = [], node, nodeClassName; node = nodes[i]; i++) {
3699
+ nodeClassName = node.className;
3700
+ if (nodeClassName.length == 0) continue;
3701
+ if (nodeClassName == className || (' ' + nodeClassName + ' ').include(needle))
3702
+ results.push(node);
3703
+ }
3704
+ return results;
3705
+ },
3706
+
3707
+ attrPresence: function(nodes, root, attr, combinator) {
3708
+ if (!nodes) nodes = root.getElementsByTagName("*");
3709
+ if (nodes && combinator) nodes = this[combinator](nodes);
3710
+ var results = [];
3711
+ for (var i = 0, node; node = nodes[i]; i++)
3712
+ if (Element.hasAttribute(node, attr)) results.push(node);
3713
+ return results;
3714
+ },
3715
+
3716
+ attr: function(nodes, root, attr, value, operator, combinator) {
3717
+ if (!nodes) nodes = root.getElementsByTagName("*");
3718
+ if (nodes && combinator) nodes = this[combinator](nodes);
3719
+ var handler = Selector.operators[operator], results = [];
3720
+ for (var i = 0, node; node = nodes[i]; i++) {
3721
+ var nodeValue = Element.readAttribute(node, attr);
3722
+ if (nodeValue === null) continue;
3723
+ if (handler(nodeValue, value)) results.push(node);
3724
+ }
3725
+ return results;
3726
+ },
3727
+
3728
+ pseudo: function(nodes, name, value, root, combinator) {
3729
+ if (nodes && combinator) nodes = this[combinator](nodes);
3730
+ if (!nodes) nodes = root.getElementsByTagName("*");
3731
+ return Selector.pseudos[name](nodes, value, root);
3732
+ }
3733
+ },
3734
+
3735
+ pseudos: {
3736
+ 'first-child': function(nodes, value, root) {
3737
+ for (var i = 0, results = [], node; node = nodes[i]; i++) {
3738
+ if (Selector.handlers.previousElementSibling(node)) continue;
3739
+ results.push(node);
3740
+ }
3741
+ return results;
3742
+ },
3743
+ 'last-child': function(nodes, value, root) {
3744
+ for (var i = 0, results = [], node; node = nodes[i]; i++) {
3745
+ if (Selector.handlers.nextElementSibling(node)) continue;
3746
+ results.push(node);
3747
+ }
3748
+ return results;
3749
+ },
3750
+ 'only-child': function(nodes, value, root) {
3751
+ var h = Selector.handlers;
3752
+ for (var i = 0, results = [], node; node = nodes[i]; i++)
3753
+ if (!h.previousElementSibling(node) && !h.nextElementSibling(node))
3754
+ results.push(node);
3755
+ return results;
3756
+ },
3757
+ 'nth-child': function(nodes, formula, root) {
3758
+ return Selector.pseudos.nth(nodes, formula, root);
3759
+ },
3760
+ 'nth-last-child': function(nodes, formula, root) {
3761
+ return Selector.pseudos.nth(nodes, formula, root, true);
3762
+ },
3763
+ 'nth-of-type': function(nodes, formula, root) {
3764
+ return Selector.pseudos.nth(nodes, formula, root, false, true);
3765
+ },
3766
+ 'nth-last-of-type': function(nodes, formula, root) {
3767
+ return Selector.pseudos.nth(nodes, formula, root, true, true);
3768
+ },
3769
+ 'first-of-type': function(nodes, formula, root) {
3770
+ return Selector.pseudos.nth(nodes, "1", root, false, true);
3771
+ },
3772
+ 'last-of-type': function(nodes, formula, root) {
3773
+ return Selector.pseudos.nth(nodes, "1", root, true, true);
3774
+ },
3775
+ 'only-of-type': function(nodes, formula, root) {
3776
+ var p = Selector.pseudos;
3777
+ return p['last-of-type'](p['first-of-type'](nodes, formula, root), formula, root);
3778
+ },
3779
+
3780
+ getIndices: function(a, b, total) {
3781
+ if (a == 0) return b > 0 ? [b] : [];
3782
+ return $R(1, total).inject([], function(memo, i) {
3783
+ if (0 == (i - b) % a && (i - b) / a >= 0) memo.push(i);
3784
+ return memo;
3785
+ });
3786
+ },
3787
+
3788
+ nth: function(nodes, formula, root, reverse, ofType) {
3789
+ if (nodes.length == 0) return [];
3790
+ if (formula == 'even') formula = '2n+0';
3791
+ if (formula == 'odd') formula = '2n+1';
3792
+ var h = Selector.handlers, results = [], indexed = [], m;
3793
+ h.mark(nodes);
3794
+ for (var i = 0, node; node = nodes[i]; i++) {
3795
+ if (!node.parentNode._countedByPrototype) {
3796
+ h.index(node.parentNode, reverse, ofType);
3797
+ indexed.push(node.parentNode);
3798
+ }
3799
+ }
3800
+ if (formula.match(/^\d+$/)) { // just a number
3801
+ formula = Number(formula);
3802
+ for (var i = 0, node; node = nodes[i]; i++)
3803
+ if (node.nodeIndex == formula) results.push(node);
3804
+ } else if (m = formula.match(/^(-?\d*)?n(([+-])(\d+))?/)) { // an+b
3805
+ if (m[1] == "-") m[1] = -1;
3806
+ var a = m[1] ? Number(m[1]) : 1;
3807
+ var b = m[2] ? Number(m[2]) : 0;
3808
+ var indices = Selector.pseudos.getIndices(a, b, nodes.length);
3809
+ for (var i = 0, node, l = indices.length; node = nodes[i]; i++) {
3810
+ for (var j = 0; j < l; j++)
3811
+ if (node.nodeIndex == indices[j]) results.push(node);
3812
+ }
3813
+ }
3814
+ h.unmark(nodes);
3815
+ h.unmark(indexed);
3816
+ return results;
3817
+ },
3818
+
3819
+ 'empty': function(nodes, value, root) {
3820
+ for (var i = 0, results = [], node; node = nodes[i]; i++) {
3821
+ if (node.tagName == '!' || node.firstChild) continue;
3822
+ results.push(node);
3823
+ }
3824
+ return results;
3825
+ },
3826
+
3827
+ 'not': function(nodes, selector, root) {
3828
+ var h = Selector.handlers, selectorType, m;
3829
+ var exclusions = new Selector(selector).findElements(root);
3830
+ h.mark(exclusions);
3831
+ for (var i = 0, results = [], node; node = nodes[i]; i++)
3832
+ if (!node._countedByPrototype) results.push(node);
3833
+ h.unmark(exclusions);
3834
+ return results;
3835
+ },
3836
+
3837
+ 'enabled': function(nodes, value, root) {
3838
+ for (var i = 0, results = [], node; node = nodes[i]; i++)
3839
+ if (!node.disabled && (!node.type || node.type !== 'hidden'))
3840
+ results.push(node);
3841
+ return results;
3842
+ },
3843
+
3844
+ 'disabled': function(nodes, value, root) {
3845
+ for (var i = 0, results = [], node; node = nodes[i]; i++)
3846
+ if (node.disabled) results.push(node);
3847
+ return results;
3848
+ },
3849
+
3850
+ 'checked': function(nodes, value, root) {
3851
+ for (var i = 0, results = [], node; node = nodes[i]; i++)
3852
+ if (node.checked) results.push(node);
3853
+ return results;
3854
+ }
3855
+ },
3856
+
3857
+ operators: {
3858
+ '=': function(nv, v) { return nv == v; },
3859
+ '!=': function(nv, v) { return nv != v; },
3860
+ '^=': function(nv, v) { return nv == v || nv && nv.startsWith(v); },
3861
+ '$=': function(nv, v) { return nv == v || nv && nv.endsWith(v); },
3862
+ '*=': function(nv, v) { return nv == v || nv && nv.include(v); },
3863
+ '~=': function(nv, v) { return (' ' + nv + ' ').include(' ' + v + ' '); },
3864
+ '|=': function(nv, v) { return ('-' + (nv || "").toUpperCase() +
3865
+ '-').include('-' + (v || "").toUpperCase() + '-'); }
3866
+ },
3867
+
3868
+ split: function(expression) {
3869
+ var expressions = [];
3870
+ expression.scan(/(([\w#:.~>+()\s-]+|\*|\[.*?\])+)\s*(,|$)/, function(m) {
3871
+ expressions.push(m[1].strip());
3872
+ });
3873
+ return expressions;
3874
+ },
3875
+
3876
+ matchElements: function(elements, expression) {
3877
+ var matches = $$(expression), h = Selector.handlers;
3878
+ h.mark(matches);
3879
+ for (var i = 0, results = [], element; element = elements[i]; i++)
3880
+ if (element._countedByPrototype) results.push(element);
3881
+ h.unmark(matches);
3882
+ return results;
3883
+ },
3884
+
3885
+ findElement: function(elements, expression, index) {
3886
+ if (Object.isNumber(expression)) {
3887
+ index = expression; expression = false;
3888
+ }
3889
+ return Selector.matchElements(elements, expression || '*')[index || 0];
3890
+ },
3891
+
3892
+ findChildElements: function(element, expressions) {
3893
+ expressions = Selector.split(expressions.join(','));
3894
+ var results = [], h = Selector.handlers;
3895
+ for (var i = 0, l = expressions.length, selector; i < l; i++) {
3896
+ selector = new Selector(expressions[i].strip());
3897
+ h.concat(results, selector.findElements(element));
3898
+ }
3899
+ return (l > 1) ? h.unique(results) : results;
3900
+ }
3901
+ });
3902
+
3903
+ if (Prototype.Browser.IE) {
3904
+ Object.extend(Selector.handlers, {
3905
+ concat: function(a, b) {
3906
+ for (var i = 0, node; node = b[i]; i++)
3907
+ if (node.tagName !== "!") a.push(node);
3908
+ return a;
3909
+ }
3910
+ });
3911
+ }
3912
+
3913
+ function $$() {
3914
+ return Selector.findChildElements(document, $A(arguments));
3915
+ }
3916
+
3917
+ var Form = {
3918
+ reset: function(form) {
3919
+ form = $(form);
3920
+ form.reset();
3921
+ return form;
3922
+ },
3923
+
3924
+ serializeElements: function(elements, options) {
3925
+ if (typeof options != 'object') options = { hash: !!options };
3926
+ else if (Object.isUndefined(options.hash)) options.hash = true;
3927
+ var key, value, submitted = false, submit = options.submit;
3928
+
3929
+ var data = elements.inject({ }, function(result, element) {
3930
+ if (!element.disabled && element.name) {
3931
+ key = element.name; value = $(element).getValue();
3932
+ if (value != null && element.type != 'file' && (element.type != 'submit' || (!submitted &&
3933
+ submit !== false && (!submit || key == submit) && (submitted = true)))) {
3934
+ if (key in result) {
3935
+ if (!Object.isArray(result[key])) result[key] = [result[key]];
3936
+ result[key].push(value);
3937
+ }
3938
+ else result[key] = value;
3939
+ }
3940
+ }
3941
+ return result;
3942
+ });
3943
+
3944
+ return options.hash ? data : Object.toQueryString(data);
3945
+ }
3946
+ };
3947
+
3948
+ Form.Methods = {
3949
+ serialize: function(form, options) {
3950
+ return Form.serializeElements(Form.getElements(form), options);
3951
+ },
3952
+
3953
+ getElements: function(form) {
3954
+ var elements = $(form).getElementsByTagName('*'),
3955
+ element,
3956
+ arr = [ ],
3957
+ serializers = Form.Element.Serializers;
3958
+ for (var i = 0; element = elements[i]; i++) {
3959
+ arr.push(element);
3960
+ }
3961
+ return arr.inject([], function(elements, child) {
3962
+ if (serializers[child.tagName.toLowerCase()])
3963
+ elements.push(Element.extend(child));
3964
+ return elements;
3965
+ })
3966
+ },
3967
+
3968
+ getInputs: function(form, typeName, name) {
3969
+ form = $(form);
3970
+ var inputs = form.getElementsByTagName('input');
3971
+
3972
+ if (!typeName && !name) return $A(inputs).map(Element.extend);
3973
+
3974
+ for (var i = 0, matchingInputs = [], length = inputs.length; i < length; i++) {
3975
+ var input = inputs[i];
3976
+ if ((typeName && input.type != typeName) || (name && input.name != name))
3977
+ continue;
3978
+ matchingInputs.push(Element.extend(input));
3979
+ }
3980
+
3981
+ return matchingInputs;
3982
+ },
3983
+
3984
+ disable: function(form) {
3985
+ form = $(form);
3986
+ Form.getElements(form).invoke('disable');
3987
+ return form;
3988
+ },
3989
+
3990
+ enable: function(form) {
3991
+ form = $(form);
3992
+ Form.getElements(form).invoke('enable');
3993
+ return form;
3994
+ },
3995
+
3996
+ findFirstElement: function(form) {
3997
+ var elements = $(form).getElements().findAll(function(element) {
3998
+ return 'hidden' != element.type && !element.disabled;
3999
+ });
4000
+ var firstByIndex = elements.findAll(function(element) {
4001
+ return element.hasAttribute('tabIndex') && element.tabIndex >= 0;
4002
+ }).sortBy(function(element) { return element.tabIndex }).first();
4003
+
4004
+ return firstByIndex ? firstByIndex : elements.find(function(element) {
4005
+ return /^(?:input|select|textarea)$/i.test(element.tagName);
4006
+ });
4007
+ },
4008
+
4009
+ focusFirstElement: function(form) {
4010
+ form = $(form);
4011
+ form.findFirstElement().activate();
4012
+ return form;
4013
+ },
4014
+
4015
+ request: function(form, options) {
4016
+ form = $(form), options = Object.clone(options || { });
4017
+
4018
+ var params = options.parameters, action = form.readAttribute('action') || '';
4019
+ if (action.blank()) action = window.location.href;
4020
+ options.parameters = form.serialize(true);
4021
+
4022
+ if (params) {
4023
+ if (Object.isString(params)) params = params.toQueryParams();
4024
+ Object.extend(options.parameters, params);
4025
+ }
4026
+
4027
+ if (form.hasAttribute('method') && !options.method)
4028
+ options.method = form.method;
4029
+
4030
+ return new Ajax.Request(action, options);
4031
+ }
4032
+ };
4033
+
4034
+ /*--------------------------------------------------------------------------*/
4035
+
4036
+
4037
+ Form.Element = {
4038
+ focus: function(element) {
4039
+ $(element).focus();
4040
+ return element;
4041
+ },
4042
+
4043
+ select: function(element) {
4044
+ $(element).select();
4045
+ return element;
4046
+ }
4047
+ };
4048
+
4049
+ Form.Element.Methods = {
4050
+
4051
+ serialize: function(element) {
4052
+ element = $(element);
4053
+ if (!element.disabled && element.name) {
4054
+ var value = element.getValue();
4055
+ if (value != undefined) {
4056
+ var pair = { };
4057
+ pair[element.name] = value;
4058
+ return Object.toQueryString(pair);
4059
+ }
4060
+ }
4061
+ return '';
4062
+ },
4063
+
4064
+ getValue: function(element) {
4065
+ element = $(element);
4066
+ var method = element.tagName.toLowerCase();
4067
+ return Form.Element.Serializers[method](element);
4068
+ },
4069
+
4070
+ setValue: function(element, value) {
4071
+ element = $(element);
4072
+ var method = element.tagName.toLowerCase();
4073
+ Form.Element.Serializers[method](element, value);
4074
+ return element;
4075
+ },
4076
+
4077
+ clear: function(element) {
4078
+ $(element).value = '';
4079
+ return element;
4080
+ },
4081
+
4082
+ present: function(element) {
4083
+ return $(element).value != '';
4084
+ },
4085
+
4086
+ activate: function(element) {
4087
+ element = $(element);
4088
+ try {
4089
+ element.focus();
4090
+ if (element.select && (element.tagName.toLowerCase() != 'input' ||
4091
+ !(/^(?:button|reset|submit)$/i.test(element.type))))
4092
+ element.select();
4093
+ } catch (e) { }
4094
+ return element;
4095
+ },
4096
+
4097
+ disable: function(element) {
4098
+ element = $(element);
4099
+ element.disabled = true;
4100
+ return element;
4101
+ },
4102
+
4103
+ enable: function(element) {
4104
+ element = $(element);
4105
+ element.disabled = false;
4106
+ return element;
4107
+ }
4108
+ };
4109
+
4110
+ /*--------------------------------------------------------------------------*/
4111
+
4112
+ var Field = Form.Element;
4113
+
4114
+ var $F = Form.Element.Methods.getValue;
4115
+
4116
+ /*--------------------------------------------------------------------------*/
4117
+
4118
+ Form.Element.Serializers = {
4119
+ input: function(element, value) {
4120
+ switch (element.type.toLowerCase()) {
4121
+ case 'checkbox':
4122
+ case 'radio':
4123
+ return Form.Element.Serializers.inputSelector(element, value);
4124
+ default:
4125
+ return Form.Element.Serializers.textarea(element, value);
4126
+ }
4127
+ },
4128
+
4129
+ inputSelector: function(element, value) {
4130
+ if (Object.isUndefined(value)) return element.checked ? element.value : null;
4131
+ else element.checked = !!value;
4132
+ },
4133
+
4134
+ textarea: function(element, value) {
4135
+ if (Object.isUndefined(value)) return element.value;
4136
+ else element.value = value;
4137
+ },
4138
+
4139
+ select: function(element, value) {
4140
+ if (Object.isUndefined(value))
4141
+ return this[element.type == 'select-one' ?
4142
+ 'selectOne' : 'selectMany'](element);
4143
+ else {
4144
+ var opt, currentValue, single = !Object.isArray(value);
4145
+ for (var i = 0, length = element.length; i < length; i++) {
4146
+ opt = element.options[i];
4147
+ currentValue = this.optionValue(opt);
4148
+ if (single) {
4149
+ if (currentValue == value) {
4150
+ opt.selected = true;
4151
+ return;
4152
+ }
4153
+ }
4154
+ else opt.selected = value.include(currentValue);
4155
+ }
4156
+ }
4157
+ },
4158
+
4159
+ selectOne: function(element) {
4160
+ var index = element.selectedIndex;
4161
+ return index >= 0 ? this.optionValue(element.options[index]) : null;
4162
+ },
4163
+
4164
+ selectMany: function(element) {
4165
+ var values, length = element.length;
4166
+ if (!length) return null;
4167
+
4168
+ for (var i = 0, values = []; i < length; i++) {
4169
+ var opt = element.options[i];
4170
+ if (opt.selected) values.push(this.optionValue(opt));
4171
+ }
4172
+ return values;
4173
+ },
4174
+
4175
+ optionValue: function(opt) {
4176
+ return Element.extend(opt).hasAttribute('value') ? opt.value : opt.text;
4177
+ }
4178
+ };
4179
+
4180
+ /*--------------------------------------------------------------------------*/
4181
+
4182
+
4183
+ Abstract.TimedObserver = Class.create(PeriodicalExecuter, {
4184
+ initialize: function($super, element, frequency, callback) {
4185
+ $super(callback, frequency);
4186
+ this.element = $(element);
4187
+ this.lastValue = this.getValue();
4188
+ },
4189
+
4190
+ execute: function() {
4191
+ var value = this.getValue();
4192
+ if (Object.isString(this.lastValue) && Object.isString(value) ?
4193
+ this.lastValue != value : String(this.lastValue) != String(value)) {
4194
+ this.callback(this.element, value);
4195
+ this.lastValue = value;
4196
+ }
4197
+ }
4198
+ });
4199
+
4200
+ Form.Element.Observer = Class.create(Abstract.TimedObserver, {
4201
+ getValue: function() {
4202
+ return Form.Element.getValue(this.element);
4203
+ }
4204
+ });
4205
+
4206
+ Form.Observer = Class.create(Abstract.TimedObserver, {
4207
+ getValue: function() {
4208
+ return Form.serialize(this.element);
4209
+ }
4210
+ });
4211
+
4212
+ /*--------------------------------------------------------------------------*/
4213
+
4214
+ Abstract.EventObserver = Class.create({
4215
+ initialize: function(element, callback) {
4216
+ this.element = $(element);
4217
+ this.callback = callback;
4218
+
4219
+ this.lastValue = this.getValue();
4220
+ if (this.element.tagName.toLowerCase() == 'form')
4221
+ this.registerFormCallbacks();
4222
+ else
4223
+ this.registerCallback(this.element);
4224
+ },
4225
+
4226
+ onElementEvent: function() {
4227
+ var value = this.getValue();
4228
+ if (this.lastValue != value) {
4229
+ this.callback(this.element, value);
4230
+ this.lastValue = value;
4231
+ }
4232
+ },
4233
+
4234
+ registerFormCallbacks: function() {
4235
+ Form.getElements(this.element).each(this.registerCallback, this);
4236
+ },
4237
+
4238
+ registerCallback: function(element) {
4239
+ if (element.type) {
4240
+ switch (element.type.toLowerCase()) {
4241
+ case 'checkbox':
4242
+ case 'radio':
4243
+ Event.observe(element, 'click', this.onElementEvent.bind(this));
4244
+ break;
4245
+ default:
4246
+ Event.observe(element, 'change', this.onElementEvent.bind(this));
4247
+ break;
4248
+ }
4249
+ }
4250
+ }
4251
+ });
4252
+
4253
+ Form.Element.EventObserver = Class.create(Abstract.EventObserver, {
4254
+ getValue: function() {
4255
+ return Form.Element.getValue(this.element);
4256
+ }
4257
+ });
4258
+
4259
+ Form.EventObserver = Class.create(Abstract.EventObserver, {
4260
+ getValue: function() {
4261
+ return Form.serialize(this.element);
4262
+ }
4263
+ });
4264
+ (function() {
4265
+
4266
+ var Event = {
4267
+ KEY_BACKSPACE: 8,
4268
+ KEY_TAB: 9,
4269
+ KEY_RETURN: 13,
4270
+ KEY_ESC: 27,
4271
+ KEY_LEFT: 37,
4272
+ KEY_UP: 38,
4273
+ KEY_RIGHT: 39,
4274
+ KEY_DOWN: 40,
4275
+ KEY_DELETE: 46,
4276
+ KEY_HOME: 36,
4277
+ KEY_END: 35,
4278
+ KEY_PAGEUP: 33,
4279
+ KEY_PAGEDOWN: 34,
4280
+ KEY_INSERT: 45,
4281
+
4282
+ cache: {}
4283
+ };
4284
+
4285
+ var docEl = document.documentElement;
4286
+ var MOUSEENTER_MOUSELEAVE_EVENTS_SUPPORTED = 'onmouseenter' in docEl
4287
+ && 'onmouseleave' in docEl;
4288
+
4289
+ var _isButton;
4290
+ if (Prototype.Browser.IE) {
4291
+ var buttonMap = { 0: 1, 1: 4, 2: 2 };
4292
+ _isButton = function(event, code) {
4293
+ return event.button === buttonMap[code];
4294
+ };
4295
+ } else if (Prototype.Browser.WebKit) {
4296
+ _isButton = function(event, code) {
4297
+ switch (code) {
4298
+ case 0: return event.which == 1 && !event.metaKey;
4299
+ case 1: return event.which == 1 && event.metaKey;
4300
+ default: return false;
4301
+ }
4302
+ };
4303
+ } else {
4304
+ _isButton = function(event, code) {
4305
+ return event.which ? (event.which === code + 1) : (event.button === code);
4306
+ };
4307
+ }
4308
+
4309
+ function isLeftClick(event) { return _isButton(event, 0) }
4310
+
4311
+ function isMiddleClick(event) { return _isButton(event, 1) }
4312
+
4313
+ function isRightClick(event) { return _isButton(event, 2) }
4314
+
4315
+ function element(event) {
4316
+ event = Event.extend(event);
4317
+
4318
+ var node = event.target, type = event.type,
4319
+ currentTarget = event.currentTarget;
4320
+
4321
+ if (currentTarget && currentTarget.tagName) {
4322
+ if (type === 'load' || type === 'error' ||
4323
+ (type === 'click' && currentTarget.tagName.toLowerCase() === 'input'
4324
+ && currentTarget.type === 'radio'))
4325
+ node = currentTarget;
4326
+ }
4327
+
4328
+ if (node.nodeType == Node.TEXT_NODE)
4329
+ node = node.parentNode;
4330
+
4331
+ return Element.extend(node);
4332
+ }
4333
+
4334
+ function findElement(event, expression) {
4335
+ var element = Event.element(event);
4336
+ if (!expression) return element;
4337
+ var elements = [element].concat(element.ancestors());
4338
+ return Selector.findElement(elements, expression, 0);
4339
+ }
4340
+
4341
+ function pointer(event) {
4342
+ return { x: pointerX(event), y: pointerY(event) };
4343
+ }
4344
+
4345
+ function pointerX(event) {
4346
+ var docElement = document.documentElement,
4347
+ body = document.body || { scrollLeft: 0 };
4348
+
4349
+ return event.pageX || (event.clientX +
4350
+ (docElement.scrollLeft || body.scrollLeft) -
4351
+ (docElement.clientLeft || 0));
4352
+ }
4353
+
4354
+ function pointerY(event) {
4355
+ var docElement = document.documentElement,
4356
+ body = document.body || { scrollTop: 0 };
4357
+
4358
+ return event.pageY || (event.clientY +
4359
+ (docElement.scrollTop || body.scrollTop) -
4360
+ (docElement.clientTop || 0));
4361
+ }
4362
+
4363
+
4364
+ function stop(event) {
4365
+ Event.extend(event);
4366
+ event.preventDefault();
4367
+ event.stopPropagation();
4368
+
4369
+ event.stopped = true;
4370
+ }
4371
+
4372
+ Event.Methods = {
4373
+ isLeftClick: isLeftClick,
4374
+ isMiddleClick: isMiddleClick,
4375
+ isRightClick: isRightClick,
4376
+
4377
+ element: element,
4378
+ findElement: findElement,
4379
+
4380
+ pointer: pointer,
4381
+ pointerX: pointerX,
4382
+ pointerY: pointerY,
4383
+
4384
+ stop: stop
4385
+ };
4386
+
4387
+
4388
+ var methods = Object.keys(Event.Methods).inject({ }, function(m, name) {
4389
+ m[name] = Event.Methods[name].methodize();
4390
+ return m;
4391
+ });
4392
+
4393
+ if (Prototype.Browser.IE) {
4394
+ function _relatedTarget(event) {
4395
+ var element;
4396
+ switch (event.type) {
4397
+ case 'mouseover': element = event.fromElement; break;
4398
+ case 'mouseout': element = event.toElement; break;
4399
+ default: return null;
4400
+ }
4401
+ return Element.extend(element);
4402
+ }
4403
+
4404
+ Object.extend(methods, {
4405
+ stopPropagation: function() { this.cancelBubble = true },
4406
+ preventDefault: function() { this.returnValue = false },
4407
+ inspect: function() { return '[object Event]' }
4408
+ });
4409
+
4410
+ Event.extend = function(event, element) {
4411
+ if (!event) return false;
4412
+ if (event._extendedByPrototype) return event;
4413
+
4414
+ event._extendedByPrototype = Prototype.emptyFunction;
4415
+ var pointer = Event.pointer(event);
4416
+
4417
+ Object.extend(event, {
4418
+ target: event.srcElement || element,
4419
+ relatedTarget: _relatedTarget(event),
4420
+ pageX: pointer.x,
4421
+ pageY: pointer.y
4422
+ });
4423
+
4424
+ return Object.extend(event, methods);
4425
+ };
4426
+ } else {
4427
+ Event.prototype = window.Event.prototype || document.createEvent('HTMLEvents').__proto__;
4428
+ Object.extend(Event.prototype, methods);
4429
+ Event.extend = Prototype.K;
4430
+ }
4431
+
4432
+ function _createResponder(element, eventName, handler) {
4433
+ var registry = Element.retrieve(element, 'prototype_event_registry');
4434
+
4435
+ if (Object.isUndefined(registry)) {
4436
+ CACHE.push(element);
4437
+ registry = Element.retrieve(element, 'prototype_event_registry', $H());
4438
+ }
4439
+
4440
+ var respondersForEvent = registry.get(eventName);
4441
+ if (Object.isUndefined(respondersForEvent)) {
4442
+ respondersForEvent = [];
4443
+ registry.set(eventName, respondersForEvent);
4444
+ }
4445
+
4446
+ if (respondersForEvent.pluck('handler').include(handler)) return false;
4447
+
4448
+ var responder;
4449
+ if (eventName.include(":")) {
4450
+ responder = function(event) {
4451
+ if (Object.isUndefined(event.eventName))
4452
+ return false;
4453
+
4454
+ if (event.eventName !== eventName)
4455
+ return false;
4456
+
4457
+ Event.extend(event, element);
4458
+ handler.call(element, event);
4459
+ };
4460
+ } else {
4461
+ if (!MOUSEENTER_MOUSELEAVE_EVENTS_SUPPORTED &&
4462
+ (eventName === "mouseenter" || eventName === "mouseleave")) {
4463
+ if (eventName === "mouseenter" || eventName === "mouseleave") {
4464
+ responder = function(event) {
4465
+ Event.extend(event, element);
4466
+
4467
+ var parent = event.relatedTarget;
4468
+ while (parent && parent !== element) {
4469
+ try { parent = parent.parentNode; }
4470
+ catch(e) { parent = element; }
4471
+ }
4472
+
4473
+ if (parent === element) return;
4474
+
4475
+ handler.call(element, event);
4476
+ };
4477
+ }
4478
+ } else {
4479
+ responder = function(event) {
4480
+ Event.extend(event, element);
4481
+ handler.call(element, event);
4482
+ };
4483
+ }
4484
+ }
4485
+
4486
+ responder.handler = handler;
4487
+ respondersForEvent.push(responder);
4488
+ return responder;
4489
+ }
4490
+
4491
+ function _destroyCache() {
4492
+ for (var i = 0, length = CACHE.length; i < length; i++) {
4493
+ Event.stopObserving(CACHE[i]);
4494
+ CACHE[i] = null;
4495
+ }
4496
+ }
4497
+
4498
+ var CACHE = [];
4499
+
4500
+ if (Prototype.Browser.IE)
4501
+ window.attachEvent('onunload', _destroyCache);
4502
+
4503
+ if (Prototype.Browser.WebKit)
4504
+ window.addEventListener('unload', Prototype.emptyFunction, false);
4505
+
4506
+
4507
+ var _getDOMEventName = Prototype.K;
4508
+
4509
+ if (!MOUSEENTER_MOUSELEAVE_EVENTS_SUPPORTED) {
4510
+ _getDOMEventName = function(eventName) {
4511
+ var translations = { mouseenter: "mouseover", mouseleave: "mouseout" };
4512
+ return eventName in translations ? translations[eventName] : eventName;
4513
+ };
4514
+ }
4515
+
4516
+ function observe(element, eventName, handler) {
4517
+ element = $(element);
4518
+
4519
+ var responder = _createResponder(element, eventName, handler);
4520
+
4521
+ if (!responder) return element;
4522
+
4523
+ if (eventName.include(':')) {
4524
+ if (element.addEventListener)
4525
+ element.addEventListener("dataavailable", responder, false);
4526
+ else {
4527
+ element.attachEvent("ondataavailable", responder);
4528
+ element.attachEvent("onfilterchange", responder);
4529
+ }
4530
+ } else {
4531
+ var actualEventName = _getDOMEventName(eventName);
4532
+
4533
+ if (element.addEventListener)
4534
+ element.addEventListener(actualEventName, responder, false);
4535
+ else
4536
+ element.attachEvent("on" + actualEventName, responder);
4537
+ }
4538
+
4539
+ return element;
4540
+ }
4541
+
4542
+ function stopObserving(element, eventName, handler) {
4543
+ element = $(element);
4544
+
4545
+ var registry = Element.retrieve(element, 'prototype_event_registry');
4546
+
4547
+ if (Object.isUndefined(registry)) return element;
4548
+
4549
+ if (eventName && !handler) {
4550
+ var responders = registry.get(eventName);
4551
+
4552
+ if (Object.isUndefined(responders)) return element;
4553
+
4554
+ responders.each( function(r) {
4555
+ Element.stopObserving(element, eventName, r.handler);
4556
+ });
4557
+ return element;
4558
+ } else if (!eventName) {
4559
+ registry.each( function(pair) {
4560
+ var eventName = pair.key, responders = pair.value;
4561
+
4562
+ responders.each( function(r) {
4563
+ Element.stopObserving(element, eventName, r.handler);
4564
+ });
4565
+ });
4566
+ return element;
4567
+ }
4568
+
4569
+ var responders = registry.get(eventName);
4570
+
4571
+ if (!responders) return;
4572
+
4573
+ var responder = responders.find( function(r) { return r.handler === handler; });
4574
+ if (!responder) return element;
4575
+
4576
+ var actualEventName = _getDOMEventName(eventName);
4577
+
4578
+ if (eventName.include(':')) {
4579
+ if (element.removeEventListener)
4580
+ element.removeEventListener("dataavailable", responder, false);
4581
+ else {
4582
+ element.detachEvent("ondataavailable", responder);
4583
+ element.detachEvent("onfilterchange", responder);
4584
+ }
4585
+ } else {
4586
+ if (element.removeEventListener)
4587
+ element.removeEventListener(actualEventName, responder, false);
4588
+ else
4589
+ element.detachEvent('on' + actualEventName, responder);
4590
+ }
4591
+
4592
+ registry.set(eventName, responders.without(responder));
4593
+
4594
+ return element;
4595
+ }
4596
+
4597
+ function fire(element, eventName, memo, bubble) {
4598
+ element = $(element);
4599
+
4600
+ if (Object.isUndefined(bubble))
4601
+ bubble = true;
4602
+
4603
+ if (element == document && document.createEvent && !element.dispatchEvent)
4604
+ element = document.documentElement;
4605
+
4606
+ var event;
4607
+ if (document.createEvent) {
4608
+ event = document.createEvent('HTMLEvents');
4609
+ event.initEvent('dataavailable', true, true);
4610
+ } else {
4611
+ event = document.createEventObject();
4612
+ event.eventType = bubble ? 'ondataavailable' : 'onfilterchange';
4613
+ }
4614
+
4615
+ event.eventName = eventName;
4616
+ event.memo = memo || { };
4617
+
4618
+ if (document.createEvent)
4619
+ element.dispatchEvent(event);
4620
+ else
4621
+ element.fireEvent(event.eventType, event);
4622
+
4623
+ return Event.extend(event);
4624
+ }
4625
+
4626
+
4627
+ Object.extend(Event, Event.Methods);
4628
+
4629
+ Object.extend(Event, {
4630
+ fire: fire,
4631
+ observe: observe,
4632
+ stopObserving: stopObserving
4633
+ });
4634
+
4635
+ Element.addMethods({
4636
+ fire: fire,
4637
+
4638
+ observe: observe,
4639
+
4640
+ stopObserving: stopObserving
4641
+ });
4642
+
4643
+ Object.extend(document, {
4644
+ fire: fire.methodize(),
4645
+
4646
+ observe: observe.methodize(),
4647
+
4648
+ stopObserving: stopObserving.methodize(),
4649
+
4650
+ loaded: false
4651
+ });
4652
+
4653
+ if (window.Event) Object.extend(window.Event, Event);
4654
+ else window.Event = Event;
4655
+ })();
4656
+
4657
+ (function() {
4658
+ /* Support for the DOMContentLoaded event is based on work by Dan Webb,
4659
+ Matthias Miller, Dean Edwards, John Resig, and Diego Perini. */
4660
+
4661
+ var timer;
4662
+
4663
+ function fireContentLoadedEvent() {
4664
+ if (document.loaded) return;
4665
+ if (timer) window.clearTimeout(timer);
4666
+ document.loaded = true;
4667
+ document.fire('dom:loaded');
4668
+ }
4669
+
4670
+ function checkReadyState() {
4671
+ if (document.readyState === 'complete') {
4672
+ document.stopObserving('readystatechange', checkReadyState);
4673
+ fireContentLoadedEvent();
4674
+ }
4675
+ }
4676
+
4677
+ function pollDoScroll() {
4678
+ try { document.documentElement.doScroll('left'); }
4679
+ catch(e) {
4680
+ timer = pollDoScroll.defer();
4681
+ return;
4682
+ }
4683
+ fireContentLoadedEvent();
4684
+ }
4685
+
4686
+ if (document.addEventListener) {
4687
+ document.addEventListener('DOMContentLoaded', fireContentLoadedEvent, false);
4688
+ } else {
4689
+ document.observe('readystatechange', checkReadyState);
4690
+ if (window == top)
4691
+ timer = pollDoScroll.defer();
4692
+ }
4693
+
4694
+ Event.observe(window, 'load', fireContentLoadedEvent);
4695
+ })();
4696
+
4697
+ Element.addMethods();
4698
+
4699
+ /*------------------------------- DEPRECATED -------------------------------*/
4700
+
4701
+ Hash.toQueryString = Object.toQueryString;
4702
+
4703
+ var Toggle = { display: Element.toggle };
4704
+
4705
+ Element.Methods.childOf = Element.Methods.descendantOf;
4706
+
4707
+ var Insertion = {
4708
+ Before: function(element, content) {
4709
+ return Element.insert(element, {before:content});
4710
+ },
4711
+
4712
+ Top: function(element, content) {
4713
+ return Element.insert(element, {top:content});
4714
+ },
4715
+
4716
+ Bottom: function(element, content) {
4717
+ return Element.insert(element, {bottom:content});
4718
+ },
4719
+
4720
+ After: function(element, content) {
4721
+ return Element.insert(element, {after:content});
4722
+ }
4723
+ };
4724
+
4725
+ var $continue = new Error('"throw $continue" is deprecated, use "return" instead');
4726
+
4727
+ var Position = {
4728
+ includeScrollOffsets: false,
4729
+
4730
+ prepare: function() {
4731
+ this.deltaX = window.pageXOffset
4732
+ || document.documentElement.scrollLeft
4733
+ || document.body.scrollLeft
4734
+ || 0;
4735
+ this.deltaY = window.pageYOffset
4736
+ || document.documentElement.scrollTop
4737
+ || document.body.scrollTop
4738
+ || 0;
4739
+ },
4740
+
4741
+ within: function(element, x, y) {
4742
+ if (this.includeScrollOffsets)
4743
+ return this.withinIncludingScrolloffsets(element, x, y);
4744
+ this.xcomp = x;
4745
+ this.ycomp = y;
4746
+ this.offset = Element.cumulativeOffset(element);
4747
+
4748
+ return (y >= this.offset[1] &&
4749
+ y < this.offset[1] + element.offsetHeight &&
4750
+ x >= this.offset[0] &&
4751
+ x < this.offset[0] + element.offsetWidth);
4752
+ },
4753
+
4754
+ withinIncludingScrolloffsets: function(element, x, y) {
4755
+ var offsetcache = Element.cumulativeScrollOffset(element);
4756
+
4757
+ this.xcomp = x + offsetcache[0] - this.deltaX;
4758
+ this.ycomp = y + offsetcache[1] - this.deltaY;
4759
+ this.offset = Element.cumulativeOffset(element);
4760
+
4761
+ return (this.ycomp >= this.offset[1] &&
4762
+ this.ycomp < this.offset[1] + element.offsetHeight &&
4763
+ this.xcomp >= this.offset[0] &&
4764
+ this.xcomp < this.offset[0] + element.offsetWidth);
4765
+ },
4766
+
4767
+ overlap: function(mode, element) {
4768
+ if (!mode) return 0;
4769
+ if (mode == 'vertical')
4770
+ return ((this.offset[1] + element.offsetHeight) - this.ycomp) /
4771
+ element.offsetHeight;
4772
+ if (mode == 'horizontal')
4773
+ return ((this.offset[0] + element.offsetWidth) - this.xcomp) /
4774
+ element.offsetWidth;
4775
+ },
4776
+
4777
+
4778
+ cumulativeOffset: Element.Methods.cumulativeOffset,
4779
+
4780
+ positionedOffset: Element.Methods.positionedOffset,
4781
+
4782
+ absolutize: function(element) {
4783
+ Position.prepare();
4784
+ return Element.absolutize(element);
4785
+ },
4786
+
4787
+ relativize: function(element) {
4788
+ Position.prepare();
4789
+ return Element.relativize(element);
4790
+ },
4791
+
4792
+ realOffset: Element.Methods.cumulativeScrollOffset,
4793
+
4794
+ offsetParent: Element.Methods.getOffsetParent,
4795
+
4796
+ page: Element.Methods.viewportOffset,
4797
+
4798
+ clone: function(source, target, options) {
4799
+ options = options || { };
4800
+ return Element.clonePosition(target, source, options);
4801
+ }
4802
+ };
4803
+
4804
+ /*--------------------------------------------------------------------------*/
4805
+
4806
+ if (!document.getElementsByClassName) document.getElementsByClassName = function(instanceMethods){
4807
+ function iter(name) {
4808
+ return name.blank() ? null : "[contains(concat(' ', @class, ' '), ' " + name + " ')]";
4809
+ }
4810
+
4811
+ instanceMethods.getElementsByClassName = Prototype.BrowserFeatures.XPath ?
4812
+ function(element, className) {
4813
+ className = className.toString().strip();
4814
+ var cond = /\s/.test(className) ? $w(className).map(iter).join('') : iter(className);
4815
+ return cond ? document._getElementsByXPath('.//*' + cond, element) : [];
4816
+ } : function(element, className) {
4817
+ className = className.toString().strip();
4818
+ var elements = [], classNames = (/\s/.test(className) ? $w(className) : null);
4819
+ if (!classNames && !className) return elements;
4820
+
4821
+ var nodes = $(element).getElementsByTagName('*');
4822
+ className = ' ' + className + ' ';
4823
+
4824
+ for (var i = 0, child, cn; child = nodes[i]; i++) {
4825
+ if (child.className && (cn = ' ' + child.className + ' ') && (cn.include(className) ||
4826
+ (classNames && classNames.all(function(name) {
4827
+ return !name.toString().blank() && cn.include(' ' + name + ' ');
4828
+ }))))
4829
+ elements.push(Element.extend(child));
4830
+ }
4831
+ return elements;
4832
+ };
4833
+
4834
+ return function(className, parentElement) {
4835
+ return $(parentElement || document.body).getElementsByClassName(className);
4836
+ };
4837
+ }(Element.Methods);
4838
+
4839
+ /*--------------------------------------------------------------------------*/
4840
+
4841
+ Element.ClassNames = Class.create();
4842
+ Element.ClassNames.prototype = {
4843
+ initialize: function(element) {
4844
+ this.element = $(element);
4845
+ },
4846
+
4847
+ _each: function(iterator) {
4848
+ this.element.className.split(/\s+/).select(function(name) {
4849
+ return name.length > 0;
4850
+ })._each(iterator);
4851
+ },
4852
+
4853
+ set: function(className) {
4854
+ this.element.className = className;
4855
+ },
4856
+
4857
+ add: function(classNameToAdd) {
4858
+ if (this.include(classNameToAdd)) return;
4859
+ this.set($A(this).concat(classNameToAdd).join(' '));
4860
+ },
4861
+
4862
+ remove: function(classNameToRemove) {
4863
+ if (!this.include(classNameToRemove)) return;
4864
+ this.set($A(this).without(classNameToRemove).join(' '));
4865
+ },
4866
+
4867
+ toString: function() {
4868
+ return $A(this).join(' ');
4869
+ }
4870
+ };
4871
+
4872
+ Object.extend(Element.ClassNames.prototype, Enumerable);
4873
+
4874
+ /*--------------------------------------------------------------------------*/