hydra-head 3.0.0pre3 → 3.0.0pre4

Sign up to get free protection for your applications and to get access to all the features.
Files changed (352) hide show
  1. data/.gitmodules +0 -3
  2. data/.rvmrc +6 -0
  3. data/BLACKLIGHT_CONFIG.textile +76 -0
  4. data/CREATE_RAILS_APP.textile +323 -0
  5. data/DEVELOP_PLUGIN.textile +90 -0
  6. data/GIT_WORKFLOW.textile +84 -0
  7. data/Gemfile.lock +82 -66
  8. data/HISTORY.textile +7 -0
  9. data/HOW_DO_I.textile +107 -0
  10. data/HOW_TO_DEFINE_A_HYDRA_CONTROLLER.textile +21 -0
  11. data/HOW_TO_DEFINE_A_HYDRA_MODEL.textile +64 -0
  12. data/HOW_TO_GET_STARTED.textile +100 -76
  13. data/INITIAL_APP_MODS.textile +60 -76
  14. data/INSTALL_PREREQ.textile +19 -0
  15. data/LICENSE +14 -0
  16. data/README.textile +89 -17
  17. data/README_RAKE_TASKS.textile +107 -0
  18. data/README_SUBTREE.textile +87 -0
  19. data/README_TERSE.textile +92 -0
  20. data/TESTING_PLUGIN.textile +134 -0
  21. data/app/controllers/assets_controller.rb +34 -4
  22. data/app/controllers/contributors_controller.rb +49 -1
  23. data/app/controllers/downloads_controller.rb +36 -0
  24. data/app/controllers/file_assets_controller.rb +43 -21
  25. data/app/controllers/generic_content_objects_controller.rb +38 -0
  26. data/app/controllers/get_controller.rb +39 -0
  27. data/app/controllers/permissions_controller.rb +33 -4
  28. data/app/controllers/user_sessions_controller.rb +0 -1
  29. data/app/helpers/application_helper.rb +183 -0
  30. data/app/helpers/blacklight_helper.rb +13 -8
  31. data/app/helpers/hydra_assets_helper.rb +6 -15
  32. data/app/helpers/hydra_fedora_metadata_helper.rb +51 -67
  33. data/app/helpers/hydra_helper.rb +35 -11
  34. data/app/helpers/javascript_includes_helper.rb +2 -4
  35. data/app/helpers/personalization_helper.rb +44 -0
  36. data/app/models/generic_content.rb +6 -3
  37. data/app/models/generic_image.rb +3 -1
  38. data/app/models/mods_asset.rb +12 -1
  39. data/app/models/user_attribute.rb +25 -0
  40. data/app/models/uses_default_partials.rb +14 -0
  41. data/app/views/_add_assets_links.html.erb +1 -0
  42. data/app/views/catalog/_edit_partials/_default.html.erb +5 -5
  43. data/app/views/catalog/_home_text.html.erb +2 -2
  44. data/app/views/catalog/_index_partials/_default_details.html.erb +10 -7
  45. data/app/views/catalog/_opensearch_response_metadata.html.erb +2 -0
  46. data/app/views/catalog/_search_form.html.erb +1 -1
  47. data/app/views/catalog/_show_partials/_default.html.erb +4 -2
  48. data/app/views/catalog/_show_partials/_default_details.html.erb +10 -7
  49. data/app/views/catalog/show.html.erb +20 -28
  50. data/app/views/contributors/_edit_person.html.erb +26 -29
  51. data/app/views/contributors/_index.html.erb +6 -7
  52. data/app/views/contributors/_show_conference.html.erb +5 -15
  53. data/app/views/contributors/_show_organization.html.erb +8 -16
  54. data/app/views/file_assets/_file_assets_form.html.erb +11 -0
  55. data/app/views/file_assets/_index.html.erb +21 -6
  56. data/app/views/file_assets/_new.html.erb +6 -2
  57. data/app/views/file_assets/_result.html.erb +2 -2
  58. data/app/views/fluid_infusion/_uploader.html.erb +4 -5
  59. data/app/views/generic_content_objects/_contributor_form.html.erb +11 -0
  60. data/app/views/generic_content_objects/_description_form.html.erb +7 -0
  61. data/app/views/generic_content_objects/_edit_description.html.erb +14 -41
  62. data/app/views/generic_content_objects/_show_description.html.erb +38 -63
  63. data/app/views/generic_contents/_edit.html.erb +1 -45
  64. data/app/views/generic_contents/_edit.html.erb_ +39 -0
  65. data/app/views/generic_contents/_index.html.erb +1 -3
  66. data/app/views/generic_contents/_show.html.erb +4 -14
  67. data/app/views/generic_contents/_show_content.html.erb +7 -4
  68. data/app/views/generic_images/_edit.html.erb +26 -32
  69. data/app/views/generic_images/_show.html.erb +7 -10
  70. data/app/views/generic_images/_show_all.html.erb +1 -1
  71. data/app/views/generic_images/_show_content.html.erb +7 -7
  72. data/app/views/layouts/application.html.erb +33 -41
  73. data/app/views/layouts/hydra-head.html.erb +52 -7
  74. data/app/views/mods_assets/_additional_info_form.html.erb +44 -0
  75. data/app/views/mods_assets/_contributor_form.html.erb +14 -0
  76. data/app/views/mods_assets/_edit.html.erb +8 -32
  77. data/app/views/mods_assets/_edit.html.erb_ +63 -0
  78. data/app/views/mods_assets/_edit_description.html.erb +52 -61
  79. data/app/views/mods_assets/_edit_journal.html.erb +49 -64
  80. data/app/views/mods_assets/_publication_form.html.erb +13 -0
  81. data/app/views/mods_assets/_show.html.erb +18 -23
  82. data/app/views/mods_assets/_show_additional_info.html.erb +17 -0
  83. data/app/views/mods_assets/_show_contributors.html.erb +7 -0
  84. data/app/views/mods_assets/_show_description.html.erb +3 -13
  85. data/app/views/mods_assets/_show_file_assets.html.erb +22 -0
  86. data/app/views/mods_assets/_show_journal.html.erb +3 -3
  87. data/app/views/mods_assets/_show_permissions.html.erb +1 -0
  88. data/app/views/mods_assets/_show_publication.html.erb +8 -0
  89. data/app/views/permissions/_edit_person_permissions.html.erb +4 -9
  90. data/app/views/permissions/_index.html.erb +9 -18
  91. data/app/views/permissions/_new.html.erb +13 -17
  92. data/app/views/permissions/_permissions_form.html.erb +24 -0
  93. data/app/views/user_sessions/_login_form.html.erb +1 -1
  94. data/assets/images/hydra/powered_by_hydra.png +0 -0
  95. data/assets/images/hydra/search-button.png +0 -0
  96. data/assets/javascripts/date-picker/booking/index.html +368 -0
  97. data/assets/javascripts/date-picker/calendarHTML.txt +84 -0
  98. data/assets/javascripts/date-picker/css/datepicker.css +511 -0
  99. data/assets/javascripts/date-picker/css/demo.css +229 -0
  100. data/assets/javascripts/date-picker/index.html +798 -0
  101. data/assets/javascripts/date-picker/js/datepicker.js +2898 -0
  102. data/assets/javascripts/date-picker/js/datepicker.packed.js +1 -0
  103. data/assets/javascripts/date-picker/js/lang/ar.js +9 -0
  104. data/assets/javascripts/date-picker/js/lang/cs.js +9 -0
  105. data/assets/javascripts/date-picker/js/lang/da.js +10 -0
  106. data/assets/javascripts/date-picker/js/lang/de.js +10 -0
  107. data/assets/javascripts/date-picker/js/lang/en.js +9 -0
  108. data/assets/javascripts/date-picker/js/lang/eo.js +13 -0
  109. data/assets/javascripts/date-picker/js/lang/es.js +9 -0
  110. data/assets/javascripts/date-picker/js/lang/et.js +23 -0
  111. data/assets/javascripts/date-picker/js/lang/fi.js +7 -0
  112. data/assets/javascripts/date-picker/js/lang/fr.js +69 -0
  113. data/assets/javascripts/date-picker/js/lang/he.js +9 -0
  114. data/assets/javascripts/date-picker/js/lang/hu.js +9 -0
  115. data/assets/javascripts/date-picker/js/lang/id.js +9 -0
  116. data/assets/javascripts/date-picker/js/lang/it.js +11 -0
  117. data/assets/javascripts/date-picker/js/lang/kr.js +9 -0
  118. data/assets/javascripts/date-picker/js/lang/lt.js +8 -0
  119. data/assets/javascripts/date-picker/js/lang/lv.js +9 -0
  120. data/assets/javascripts/date-picker/js/lang/nl.js +9 -0
  121. data/assets/javascripts/date-picker/js/lang/no.js +9 -0
  122. data/assets/javascripts/date-picker/js/lang/pl.js +10 -0
  123. data/assets/javascripts/date-picker/js/lang/pt-br.js +11 -0
  124. data/assets/javascripts/date-picker/js/lang/pt.js +9 -0
  125. data/assets/javascripts/date-picker/js/lang/ru.js +11 -0
  126. data/assets/javascripts/date-picker/js/lang/se.js +9 -0
  127. data/assets/javascripts/date-picker/js/lang/si.js +9 -0
  128. data/assets/javascripts/date-picker/js/lang/tr.js +9 -0
  129. data/assets/javascripts/date-picker/language/index.html +240 -0
  130. data/assets/javascripts/date-picker/media/Thumbs.db +0 -0
  131. data/assets/javascripts/date-picker/media/backstripes.gif +0 -0
  132. data/assets/javascripts/date-picker/media/bg_header.jpg +0 -0
  133. data/assets/javascripts/date-picker/media/bullet1.gif +0 -0
  134. data/assets/javascripts/date-picker/media/bullet2.gif +0 -0
  135. data/assets/javascripts/date-picker/media/cal-grey.gif +0 -0
  136. data/assets/javascripts/date-picker/media/cal.gif +0 -0
  137. data/assets/javascripts/date-picker/media/gradient-e5e5e5-ffffff.gif +0 -0
  138. data/assets/javascripts/hydra/hydra-head.js +195 -0
  139. data/assets/javascripts/hydra/mediashelf.datepicker.js +39 -0
  140. data/assets/javascripts/hydra/mediashelf.placeholder.js +67 -0
  141. data/assets/javascripts/jquery.form.js +675 -0
  142. data/assets/javascripts/jquery.ui.datepicker.js +1793 -0
  143. data/assets/javascripts/spin.min.js +2 -0
  144. data/assets/stylesheets/hydra/html_refactor.css +115 -0
  145. data/assets/stylesheets/hydra/hydrangea-split-button.css +18 -0
  146. data/assets/stylesheets/hydra/hydrangea.css +292 -0
  147. data/assets/stylesheets/hydra/ie-styles.css +240 -0
  148. data/assets/stylesheets/hydra/styles.css +2224 -0
  149. data/assets/stylesheets/redmond/images/ui-bg_flat_0_aaaaaa_40x100.png +0 -0
  150. data/assets/stylesheets/redmond/images/ui-bg_flat_55_fbec88_40x100.png +0 -0
  151. data/assets/stylesheets/redmond/images/ui-bg_glass_75_d0e5f5_1x400.png +0 -0
  152. data/assets/stylesheets/redmond/images/ui-bg_glass_85_dfeffc_1x400.png +0 -0
  153. data/assets/stylesheets/redmond/images/ui-bg_glass_95_fef1ec_1x400.png +0 -0
  154. data/assets/stylesheets/redmond/images/ui-bg_gloss-wave_55_5c9ccc_500x100.png +0 -0
  155. data/assets/stylesheets/redmond/images/ui-bg_inset-hard_100_f5f8f9_1x100.png +0 -0
  156. data/assets/stylesheets/redmond/images/ui-bg_inset-hard_100_fcfdfd_1x100.png +0 -0
  157. data/assets/stylesheets/redmond/images/ui-icons_217bc0_256x240.png +0 -0
  158. data/assets/stylesheets/redmond/images/ui-icons_2e83ff_256x240.png +0 -0
  159. data/assets/stylesheets/redmond/images/ui-icons_469bdd_256x240.png +0 -0
  160. data/assets/stylesheets/redmond/images/ui-icons_6da8d5_256x240.png +0 -0
  161. data/assets/stylesheets/redmond/images/ui-icons_cd0a0a_256x240.png +0 -0
  162. data/assets/stylesheets/redmond/images/ui-icons_d8e7f3_256x240.png +0 -0
  163. data/assets/stylesheets/redmond/images/ui-icons_f9bd01_256x240.png +0 -0
  164. data/assets/stylesheets/redmond/jquery-ui-1.8.5.custom.css +572 -0
  165. data/config/fedora.yml +17 -0
  166. data/config/role_map_cucumber.yml +10 -0
  167. data/config/role_map_development.yml +12 -0
  168. data/config/role_map_production.yml +2 -0
  169. data/config/role_map_test.yml +14 -0
  170. data/config/solr.yml +10 -0
  171. data/config/solr_mappings.yml +22 -0
  172. data/db/migrate/20101105214243_add_user_attributes_table.rb +15 -0
  173. data/db/migrate/20101108192527_create_superusers.rb +12 -0
  174. data/fedora/conf/fedora.fcfg +1021 -0
  175. data/hydra-head.gemspec +7 -4
  176. data/init.rb +4 -0
  177. data/install.rb +1 -0
  178. data/lib/blacklight/catalog_helper.rb +44 -0
  179. data/lib/blacklight.rb +40 -0
  180. data/lib/block_mapper.rb +52 -0
  181. data/lib/djatoka.rb +59 -0
  182. data/lib/ead_mapper.rb +7 -0
  183. data/lib/field_maps.rb +507 -0
  184. data/lib/generators/hydra/assets_generator.rb +51 -0
  185. data/lib/generators/hydra/head_generator.rb +23 -4
  186. data/lib/generators/hydra/templates/config/initializers/blacklight_config.rb +2 -2
  187. data/lib/generators/hydra/templates/config/initializers/hydra_config.rb +26 -0
  188. data/lib/hydra/access_controls_enforcement.rb +3 -2
  189. data/lib/hydra/assets_controller_helper.rb +6 -0
  190. data/lib/hydra/catalog.rb +7 -3
  191. data/lib/hydra/controller.rb +27 -0
  192. data/lib/hydra/file_assets_helper.rb +25 -8
  193. data/lib/hydra/generic_user_attributes.rb +34 -0
  194. data/lib/hydra/model_methods.rb +4 -2
  195. data/lib/hydra/mods_article.rb +5 -2
  196. data/lib/hydra/submission_workflow.rb +137 -0
  197. data/lib/hydra-head/controller.rb +30 -0
  198. data/lib/hydra-head/engine.rb +22 -1
  199. data/lib/hydra-head/routes.rb +14 -3
  200. data/lib/hydra-head/version.rb +1 -1
  201. data/lib/hydra-head.rb +3 -3
  202. data/lib/hydra.rb +1 -1
  203. data/lib/jetty_cleaner.rb +27 -0
  204. data/lib/marc_mapper.rb +131 -0
  205. data/lib/marc_record_ext.rb +97 -0
  206. data/lib/mediashelf/active_fedora_helper.rb +7 -1
  207. data/lib/prev_next_links.rb +22 -0
  208. data/lib/railties/hydra-fixtures.rake +6 -1
  209. data/lib/railties/hyhead_cucumber.rake +1 -2
  210. data/lib/railties/hyhead_rspec.rake +7 -7
  211. data/lib/stanford_blacklight_extensions.rb +6 -0
  212. data/lib/user_attributes_loader.rb +17 -0
  213. data/solr/conf/schema.xml +116 -0
  214. data/solr/conf/solrconfig.xml +311 -0
  215. data/solr/solr.xml +35 -0
  216. data/spec/controllers/catalog_valid_html_spec.rb +128 -0
  217. data/spec-rails2/helpers/hydra_fedora_metadata_helper_spec.rb +219 -0
  218. data/spec-rails2/spec_helper.rb +88 -0
  219. data/tasks/hydra-head.rake +2 -4
  220. data/test_support/etc/Gemfile +6 -5
  221. data/test_support/features/absent_model_edit.feature +27 -0
  222. data/test_support/features/absent_model_search_result.feature +24 -0
  223. data/test_support/features/absent_model_show.feature +27 -0
  224. data/test_support/features/button_add_assets.feature +2 -2
  225. data/test_support/features/contributor_add.feature +21 -16
  226. data/test_support/features/default_partials_edit.feature +27 -0
  227. data/test_support/features/default_partials_search_result.feature +22 -0
  228. data/test_support/features/default_partials_show.feature +24 -0
  229. data/test_support/features/file_upload.feature +55 -22
  230. data/test_support/features/generic_content_create.feature +7 -0
  231. data/test_support/features/generic_content_edit.feature +21 -0
  232. data/test_support/features/generic_content_search_result.feature +22 -0
  233. data/test_support/features/generic_content_show.feature +20 -0
  234. data/test_support/features/generic_image_create.feature +7 -0
  235. data/test_support/features/generic_image_edit.feature +21 -0
  236. data/test_support/features/generic_image_search_result.feature +22 -0
  237. data/test_support/features/generic_image_show.feature +20 -0
  238. data/test_support/features/html_validity.feature +43 -0
  239. data/test_support/features/mods_asset_contributors_edit.feature +27 -19
  240. data/test_support/features/mods_asset_create.feature +13 -8
  241. data/test_support/features/mods_asset_edit.feature +48 -16
  242. data/test_support/features/mods_asset_edit_without_permission.feature +6 -1
  243. data/test_support/features/mods_asset_search_result.feature +15 -15
  244. data/test_support/features/mods_asset_show.feature +56 -5
  245. data/test_support/features/permissions_add.feature +5 -4
  246. data/test_support/features/permissions_edit.feature +9 -7
  247. data/test_support/features/step_definitions/html_validity_steps.rb +57 -0
  248. data/test_support/features/step_definitions/show_document_steps.rb +1 -1
  249. data/test_support/features/step_definitions/user_steps.rb +4 -4
  250. data/test_support/features/support/paths.rb +4 -1
  251. data/test_support/fixtures/hydra_test_default_partials.foxml.xml +80 -0
  252. data/test_support/fixtures/hydra_test_generic_content.foxml.xml +138 -0
  253. data/test_support/fixtures/hydra_test_generic_image.foxml.xml +395 -0
  254. data/test_support/fixtures/hydra_test_no_model.foxml.xml +79 -0
  255. data/test_support/fixtures/hydrus_admin_class1.foxml.xml +176 -0
  256. data/test_support/fixtures/libra-oa_7.foxml.xml +1735 -0
  257. data/test_support/spec/controllers/assets_controller_spec.rb +5 -4
  258. data/test_support/spec/controllers/catalog_controller_spec.rb +2 -2
  259. data/test_support/spec/controllers/file_assets_controller_spec.rb +16 -10
  260. data/test_support/spec/controllers/hydra_controller_spec.rb +2 -0
  261. data/test_support/spec/controllers/permissions_controller_spec.rb +1 -1
  262. data/test_support/spec/helpers/access_controls_enforcement_spec.rb +20 -219
  263. data/test_support/spec/helpers/blacklight_helper_spec.rb +3 -1
  264. data/test_support/spec/helpers/file_assets_helper_spec.rb +13 -10
  265. data/test_support/spec/helpers/hydra_assets_helper_spec.rb +5 -1
  266. data/test_support/spec/helpers/hydra_djatoka_helper_spec.rb +3 -1
  267. data/test_support/spec/helpers/hydra_fedora_metadata_helper_spec.rb +102 -69
  268. data/test_support/spec/helpers/hydra_helper_spec.rb +15 -0
  269. data/test_support/spec/lib/hydra_submission_workflow_spec.rb +141 -0
  270. data/test_support/spec/models/generic_image_spec.rb +6 -1
  271. data/uninstall.rb +1 -0
  272. data/vendor/cache/actionmailer-3.0.10.gem +0 -0
  273. data/vendor/cache/actionpack-3.0.10.gem +0 -0
  274. data/vendor/cache/activemodel-3.0.10.gem +0 -0
  275. data/vendor/cache/activerecord-3.0.10.gem +0 -0
  276. data/vendor/cache/activeresource-3.0.10.gem +0 -0
  277. data/vendor/cache/activesupport-3.0.10.gem +0 -0
  278. data/vendor/cache/capybara-1.1.1.gem +0 -0
  279. data/vendor/cache/childprocess-0.2.2.gem +0 -0
  280. data/vendor/cache/crack-0.3.1.gem +0 -0
  281. data/vendor/cache/cucumber-1.1.0.gem +0 -0
  282. data/vendor/cache/cucumber-rails-1.1.1.gem +0 -0
  283. data/vendor/cache/diff-lcs-1.1.3.gem +0 -0
  284. data/vendor/cache/equivalent-xml-0.2.8.gem +0 -0
  285. data/vendor/cache/factory_girl-2.1.2.gem +0 -0
  286. data/vendor/cache/gherkin-2.5.2.gem +0 -0
  287. data/vendor/cache/haml-3.1.3.gem +0 -0
  288. data/vendor/cache/httparty-0.8.1.gem +0 -0
  289. data/vendor/cache/json-1.6.1.gem +0 -0
  290. data/vendor/cache/json_pure-1.6.1.gem +0 -0
  291. data/vendor/cache/launchy-2.0.5.gem +0 -0
  292. data/vendor/cache/mediashelf-loggable-0.4.7.gem +0 -0
  293. data/vendor/cache/metaclass-0.0.1.gem +0 -0
  294. data/vendor/cache/mocha-0.10.0.gem +0 -0
  295. data/vendor/cache/multi_json-1.0.3.gem +0 -0
  296. data/vendor/cache/multi_xml-0.4.1.gem +0 -0
  297. data/vendor/cache/om-1.4.2.gem +0 -0
  298. data/vendor/cache/polyglot-0.3.2.gem +0 -0
  299. data/vendor/cache/rack-1.2.4.gem +0 -0
  300. data/vendor/cache/{rails-3.0.9.gem → rails-3.0.10.gem} +0 -0
  301. data/vendor/cache/railties-3.0.10.gem +0 -0
  302. data/vendor/cache/rcov-0.9.11.gem +0 -0
  303. data/vendor/cache/rdoc-3.10.gem +0 -0
  304. data/vendor/cache/rest-client-1.6.7.gem +0 -0
  305. data/vendor/cache/selenium-webdriver-2.8.0.gem +0 -0
  306. data/vendor/cache/solrizer-1.1.2.gem +0 -0
  307. data/vendor/cache/solrizer-fedora-1.1.2.gem +0 -0
  308. data/vendor/cache/sqlite3-1.3.4.gem +0 -0
  309. data/vendor/cache/term-ansicolor-1.0.7.gem +0 -0
  310. data/vendor/cache/treetop-1.4.10.gem +0 -0
  311. data/vendor/cache/tzinfo-0.3.30.gem +0 -0
  312. data/vendor/cache/will_paginate-3.0.2.gem +0 -0
  313. data/vendor/cache/xml-simple-1.1.1.gem +0 -0
  314. metadata +351 -121
  315. data/lib/engine.rb +0 -30
  316. data/test_support/features/file_assets_list.feature +0 -32
  317. data/vendor/cache/actionmailer-3.0.9.gem +0 -0
  318. data/vendor/cache/actionpack-3.0.9.gem +0 -0
  319. data/vendor/cache/activemodel-3.0.9.gem +0 -0
  320. data/vendor/cache/activerecord-3.0.9.gem +0 -0
  321. data/vendor/cache/activeresource-3.0.9.gem +0 -0
  322. data/vendor/cache/activesupport-3.0.9.gem +0 -0
  323. data/vendor/cache/capybara-1.0.0.gem +0 -0
  324. data/vendor/cache/childprocess-0.2.0.gem +0 -0
  325. data/vendor/cache/crack-0.1.8.gem +0 -0
  326. data/vendor/cache/cucumber-1.0.2.gem +0 -0
  327. data/vendor/cache/cucumber-rails-1.0.2.gem +0 -0
  328. data/vendor/cache/diff-lcs-1.1.2.gem +0 -0
  329. data/vendor/cache/equivalent-xml-0.2.7.gem +0 -0
  330. data/vendor/cache/factory_girl-1.3.3.gem +0 -0
  331. data/vendor/cache/gherkin-2.4.5.gem +0 -0
  332. data/vendor/cache/haml-3.1.2.gem +0 -0
  333. data/vendor/cache/httparty-0.7.8.gem +0 -0
  334. data/vendor/cache/json-1.5.3.gem +0 -0
  335. data/vendor/cache/json_pure-1.5.3.gem +0 -0
  336. data/vendor/cache/launchy-2.0.4.gem +0 -0
  337. data/vendor/cache/mediashelf-loggable-0.4.3.gem +0 -0
  338. data/vendor/cache/mocha-0.9.12.gem +0 -0
  339. data/vendor/cache/om-1.2.5.gem +0 -0
  340. data/vendor/cache/polyglot-0.3.1.gem +0 -0
  341. data/vendor/cache/rack-1.2.3.gem +0 -0
  342. data/vendor/cache/railties-3.0.9.gem +0 -0
  343. data/vendor/cache/rcov-0.9.9.gem +0 -0
  344. data/vendor/cache/rdoc-3.8.gem +0 -0
  345. data/vendor/cache/selenium-webdriver-0.2.2.gem +0 -0
  346. data/vendor/cache/solrizer-1.1.0.gem +0 -0
  347. data/vendor/cache/solrizer-fedora-1.1.0.gem +0 -0
  348. data/vendor/cache/term-ansicolor-1.0.5.gem +0 -0
  349. data/vendor/cache/treetop-1.4.9.gem +0 -0
  350. data/vendor/cache/tzinfo-0.3.29.gem +0 -0
  351. data/vendor/cache/will_paginate-2.3.15.gem +0 -0
  352. data/vendor/cache/xml-simple-1.1.0.gem +0 -0
@@ -0,0 +1,675 @@
1
+ /*!
2
+ * jQuery Form Plugin
3
+ * version: 2.43 (12-MAR-2010)
4
+ * @requires jQuery v1.3.2 or later
5
+ *
6
+ * Examples and documentation at: http://malsup.com/jquery/form/
7
+ * Dual licensed under the MIT and GPL licenses:
8
+ * http://www.opensource.org/licenses/mit-license.php
9
+ * http://www.gnu.org/licenses/gpl.html
10
+ */
11
+ ;(function($) {
12
+
13
+ /*
14
+ Usage Note:
15
+ -----------
16
+ Do not use both ajaxSubmit and ajaxForm on the same form. These
17
+ functions are intended to be exclusive. Use ajaxSubmit if you want
18
+ to bind your own submit handler to the form. For example,
19
+
20
+ $(document).ready(function() {
21
+ $('#myForm').bind('submit', function() {
22
+ $(this).ajaxSubmit({
23
+ target: '#output'
24
+ });
25
+ return false; // <-- important!
26
+ });
27
+ });
28
+
29
+ Use ajaxForm when you want the plugin to manage all the event binding
30
+ for you. For example,
31
+
32
+ $(document).ready(function() {
33
+ $('#myForm').ajaxForm({
34
+ target: '#output'
35
+ });
36
+ });
37
+
38
+ When using ajaxForm, the ajaxSubmit function will be invoked for you
39
+ at the appropriate time.
40
+ */
41
+
42
+ /**
43
+ * ajaxSubmit() provides a mechanism for immediately submitting
44
+ * an HTML form using AJAX.
45
+ */
46
+ $.fn.ajaxSubmit = function(options) {
47
+ // fast fail if nothing selected (http://dev.jquery.com/ticket/2752)
48
+ if (!this.length) {
49
+ log('ajaxSubmit: skipping submit process - no element selected');
50
+ return this;
51
+ }
52
+
53
+ if (typeof options == 'function')
54
+ options = { success: options };
55
+
56
+ var url = $.trim(this.attr('action'));
57
+ if (url) {
58
+ // clean url (don't include hash vaue)
59
+ url = (url.match(/^([^#]+)/)||[])[1];
60
+ }
61
+ url = url || window.location.href || '';
62
+
63
+ options = $.extend({
64
+ url: url,
65
+ type: this.attr('method') || 'GET',
66
+ iframeSrc: /^https/i.test(window.location.href || '') ? 'javascript:false' : 'about:blank'
67
+ }, options || {});
68
+
69
+ // hook for manipulating the form data before it is extracted;
70
+ // convenient for use with rich editors like tinyMCE or FCKEditor
71
+ var veto = {};
72
+ this.trigger('form-pre-serialize', [this, options, veto]);
73
+ if (veto.veto) {
74
+ log('ajaxSubmit: submit vetoed via form-pre-serialize trigger');
75
+ return this;
76
+ }
77
+
78
+ // provide opportunity to alter form data before it is serialized
79
+ if (options.beforeSerialize && options.beforeSerialize(this, options) === false) {
80
+ log('ajaxSubmit: submit aborted via beforeSerialize callback');
81
+ return this;
82
+ }
83
+
84
+ var a = this.formToArray(options.semantic);
85
+ if (options.data) {
86
+ options.extraData = options.data;
87
+ for (var n in options.data) {
88
+ if(options.data[n] instanceof Array) {
89
+ for (var k in options.data[n])
90
+ a.push( { name: n, value: options.data[n][k] } );
91
+ }
92
+ else
93
+ a.push( { name: n, value: options.data[n] } );
94
+ }
95
+ }
96
+
97
+ // give pre-submit callback an opportunity to abort the submit
98
+ if (options.beforeSubmit && options.beforeSubmit(a, this, options) === false) {
99
+ log('ajaxSubmit: submit aborted via beforeSubmit callback');
100
+ return this;
101
+ }
102
+
103
+ // fire vetoable 'validate' event
104
+ this.trigger('form-submit-validate', [a, this, options, veto]);
105
+ if (veto.veto) {
106
+ log('ajaxSubmit: submit vetoed via form-submit-validate trigger');
107
+ return this;
108
+ }
109
+
110
+ var q = $.param(a);
111
+
112
+ if (options.type.toUpperCase() == 'GET') {
113
+ options.url += (options.url.indexOf('?') >= 0 ? '&' : '?') + q;
114
+ options.data = null; // data is null for 'get'
115
+ }
116
+ else
117
+ options.data = q; // data is the query string for 'post'
118
+
119
+ var $form = this, callbacks = [];
120
+ if (options.resetForm) callbacks.push(function() { $form.resetForm(); });
121
+ if (options.clearForm) callbacks.push(function() { $form.clearForm(); });
122
+
123
+ // perform a load on the target only if dataType is not provided
124
+ if (!options.dataType && options.target) {
125
+ var oldSuccess = options.success || function(){};
126
+ callbacks.push(function(data) {
127
+ var fn = options.replaceTarget ? 'replaceWith' : 'html';
128
+ $(options.target)[fn](data).each(oldSuccess, arguments);
129
+ });
130
+ }
131
+ else if (options.success)
132
+ callbacks.push(options.success);
133
+
134
+ options.success = function(data, status, xhr) { // jQuery 1.4+ passes xhr as 3rd arg
135
+ for (var i=0, max=callbacks.length; i < max; i++)
136
+ callbacks[i].apply(options, [data, status, xhr || $form, $form]);
137
+ };
138
+
139
+ // are there files to upload?
140
+ var files = $('input:file', this).fieldValue();
141
+ var found = false;
142
+ for (var j=0; j < files.length; j++)
143
+ if (files[j])
144
+ found = true;
145
+
146
+ var multipart = false;
147
+ // var mp = 'multipart/form-data';
148
+ // multipart = ($form.attr('enctype') == mp || $form.attr('encoding') == mp);
149
+
150
+ // options.iframe allows user to force iframe mode
151
+ // 06-NOV-09: now defaulting to iframe mode if file input is detected
152
+ if ((files.length && options.iframe !== false) || options.iframe || found || multipart) {
153
+ // hack to fix Safari hang (thanks to Tim Molendijk for this)
154
+ // see: http://groups.google.com/group/jquery-dev/browse_thread/thread/36395b7ab510dd5d
155
+ if (options.closeKeepAlive)
156
+ $.get(options.closeKeepAlive, fileUpload);
157
+ else
158
+ fileUpload();
159
+ }
160
+ else
161
+ $.ajax(options);
162
+
163
+ // fire 'notify' event
164
+ this.trigger('form-submit-notify', [this, options]);
165
+ return this;
166
+
167
+
168
+ // private function for handling file uploads (hat tip to YAHOO!)
169
+ function fileUpload() {
170
+ var form = $form[0];
171
+
172
+ if ($(':input[name=submit]', form).length) {
173
+ alert('Error: Form elements must not be named "submit".');
174
+ return;
175
+ }
176
+
177
+ var opts = $.extend({}, $.ajaxSettings, options);
178
+ var s = $.extend(true, {}, $.extend(true, {}, $.ajaxSettings), opts);
179
+
180
+ var id = 'jqFormIO' + (new Date().getTime());
181
+ var $io = $('<iframe id="' + id + '" name="' + id + '" src="'+ opts.iframeSrc +'" onload="(jQuery(this).data(\'form-plugin-onload\'))()" />');
182
+ var io = $io[0];
183
+
184
+ $io.css({ position: 'absolute', top: '-1000px', left: '-1000px' });
185
+
186
+ var xhr = { // mock object
187
+ aborted: 0,
188
+ responseText: null,
189
+ responseXML: null,
190
+ status: 0,
191
+ statusText: 'n/a',
192
+ getAllResponseHeaders: function() {},
193
+ getResponseHeader: function() {},
194
+ setRequestHeader: function() {},
195
+ abort: function() {
196
+ this.aborted = 1;
197
+ $io.attr('src', opts.iframeSrc); // abort op in progress
198
+ }
199
+ };
200
+
201
+ var g = opts.global;
202
+ // trigger ajax global events so that activity/block indicators work like normal
203
+ if (g && ! $.active++) $.event.trigger("ajaxStart");
204
+ if (g) $.event.trigger("ajaxSend", [xhr, opts]);
205
+
206
+ if (s.beforeSend && s.beforeSend(xhr, s) === false) {
207
+ s.global && $.active--;
208
+ return;
209
+ }
210
+ if (xhr.aborted)
211
+ return;
212
+
213
+ var cbInvoked = false;
214
+ var timedOut = 0;
215
+
216
+ // add submitting element to data if we know it
217
+ var sub = form.clk;
218
+ if (sub) {
219
+ var n = sub.name;
220
+ if (n && !sub.disabled) {
221
+ opts.extraData = opts.extraData || {};
222
+ opts.extraData[n] = sub.value;
223
+ if (sub.type == "image") {
224
+ opts.extraData[n+'.x'] = form.clk_x;
225
+ opts.extraData[n+'.y'] = form.clk_y;
226
+ }
227
+ }
228
+ }
229
+
230
+ // take a breath so that pending repaints get some cpu time before the upload starts
231
+ function doSubmit() {
232
+ // make sure form attrs are set
233
+ var t = $form.attr('target'), a = $form.attr('action');
234
+
235
+ // update form attrs in IE friendly way
236
+ form.setAttribute('target',id);
237
+ if (form.getAttribute('method') != 'POST')
238
+ form.setAttribute('method', 'POST');
239
+ if (form.getAttribute('action') != opts.url)
240
+ form.setAttribute('action', opts.url);
241
+
242
+ // ie borks in some cases when setting encoding
243
+ if (! opts.skipEncodingOverride) {
244
+ $form.attr({
245
+ encoding: 'multipart/form-data',
246
+ enctype: 'multipart/form-data'
247
+ });
248
+ }
249
+
250
+ // support timout
251
+ if (opts.timeout)
252
+ setTimeout(function() { timedOut = true; cb(); }, opts.timeout);
253
+
254
+ // add "extra" data to form if provided in options
255
+ var extraInputs = [];
256
+ try {
257
+ if (opts.extraData)
258
+ for (var n in opts.extraData)
259
+ extraInputs.push(
260
+ $('<input type="hidden" name="'+n+'" value="'+opts.extraData[n]+'" />')
261
+ .appendTo(form)[0]);
262
+
263
+ // add iframe to doc and submit the form
264
+ $io.appendTo('body');
265
+ $io.data('form-plugin-onload', cb);
266
+ form.submit();
267
+ }
268
+ finally {
269
+ // reset attrs and remove "extra" input elements
270
+ form.setAttribute('action',a);
271
+ t ? form.setAttribute('target', t) : $form.removeAttr('target');
272
+ $(extraInputs).remove();
273
+ }
274
+ };
275
+
276
+ if (opts.forceSync)
277
+ doSubmit();
278
+ else
279
+ setTimeout(doSubmit, 10); // this lets dom updates render
280
+
281
+ var domCheckCount = 100;
282
+
283
+ function cb() {
284
+ if (cbInvoked)
285
+ return;
286
+
287
+ var ok = true;
288
+ try {
289
+ if (timedOut) throw 'timeout';
290
+ // extract the server response from the iframe
291
+ var data, doc;
292
+
293
+ doc = io.contentWindow ? io.contentWindow.document : io.contentDocument ? io.contentDocument : io.document;
294
+
295
+ var isXml = opts.dataType == 'xml' || doc.XMLDocument || $.isXMLDoc(doc);
296
+ log('isXml='+isXml);
297
+ if (!isXml && (doc.body == null || doc.body.innerHTML == '')) {
298
+ if (--domCheckCount) {
299
+ // in some browsers (Opera) the iframe DOM is not always traversable when
300
+ // the onload callback fires, so we loop a bit to accommodate
301
+ log('requeing onLoad callback, DOM not available');
302
+ setTimeout(cb, 250);
303
+ return;
304
+ }
305
+ log('Could not access iframe DOM after 100 tries.');
306
+ return;
307
+ }
308
+
309
+ log('response detected');
310
+ cbInvoked = true;
311
+ xhr.responseText = doc.body ? doc.body.innerHTML : null;
312
+ xhr.responseXML = doc.XMLDocument ? doc.XMLDocument : doc;
313
+ xhr.getResponseHeader = function(header){
314
+ var headers = {'content-type': opts.dataType};
315
+ return headers[header];
316
+ };
317
+
318
+ if (opts.dataType == 'json' || opts.dataType == 'script') {
319
+ // see if user embedded response in textarea
320
+ var ta = doc.getElementsByTagName('textarea')[0];
321
+ if (ta)
322
+ xhr.responseText = ta.value;
323
+ else {
324
+ // account for browsers injecting pre around json response
325
+ var pre = doc.getElementsByTagName('pre')[0];
326
+ if (pre)
327
+ xhr.responseText = pre.innerHTML;
328
+ }
329
+ }
330
+ else if (opts.dataType == 'xml' && !xhr.responseXML && xhr.responseText != null) {
331
+ xhr.responseXML = toXml(xhr.responseText);
332
+ }
333
+ data = $.httpData(xhr, opts.dataType);
334
+ }
335
+ catch(e){
336
+ log('error caught:',e);
337
+ ok = false;
338
+ xhr.error = e;
339
+ $.handleError(opts, xhr, 'error', e);
340
+ }
341
+
342
+ // ordering of these callbacks/triggers is odd, but that's how $.ajax does it
343
+ if (ok) {
344
+ opts.success(data, 'success');
345
+ if (g) $.event.trigger("ajaxSuccess", [xhr, opts]);
346
+ }
347
+ if (g) $.event.trigger("ajaxComplete", [xhr, opts]);
348
+ if (g && ! --$.active) $.event.trigger("ajaxStop");
349
+ if (opts.complete) opts.complete(xhr, ok ? 'success' : 'error');
350
+
351
+ // clean up
352
+ setTimeout(function() {
353
+ $io.removeData('form-plugin-onload');
354
+ $io.remove();
355
+ xhr.responseXML = null;
356
+ }, 100);
357
+ };
358
+
359
+ function toXml(s, doc) {
360
+ if (window.ActiveXObject) {
361
+ doc = new ActiveXObject('Microsoft.XMLDOM');
362
+ doc.async = 'false';
363
+ doc.loadXML(s);
364
+ }
365
+ else
366
+ doc = (new DOMParser()).parseFromString(s, 'text/xml');
367
+ return (doc && doc.documentElement && doc.documentElement.tagName != 'parsererror') ? doc : null;
368
+ };
369
+ };
370
+ };
371
+
372
+ /**
373
+ * ajaxForm() provides a mechanism for fully automating form submission.
374
+ *
375
+ * The advantages of using this method instead of ajaxSubmit() are:
376
+ *
377
+ * 1: This method will include coordinates for <input type="image" /> elements (if the element
378
+ * is used to submit the form).
379
+ * 2. This method will include the submit element's name/value data (for the element that was
380
+ * used to submit the form).
381
+ * 3. This method binds the submit() method to the form for you.
382
+ *
383
+ * The options argument for ajaxForm works exactly as it does for ajaxSubmit. ajaxForm merely
384
+ * passes the options argument along after properly binding events for submit elements and
385
+ * the form itself.
386
+ */
387
+ $.fn.ajaxForm = function(options) {
388
+ return this.ajaxFormUnbind().bind('submit.form-plugin', function(e) {
389
+ e.preventDefault();
390
+ $(this).ajaxSubmit(options);
391
+ }).bind('click.form-plugin', function(e) {
392
+ var target = e.target;
393
+ var $el = $(target);
394
+ if (!($el.is(":submit,input:image"))) {
395
+ // is this a child element of the submit el? (ex: a span within a button)
396
+ var t = $el.closest(':submit');
397
+ if (t.length == 0)
398
+ return;
399
+ target = t[0];
400
+ }
401
+ var form = this;
402
+ form.clk = target;
403
+ if (target.type == 'image') {
404
+ if (e.offsetX != undefined) {
405
+ form.clk_x = e.offsetX;
406
+ form.clk_y = e.offsetY;
407
+ } else if (typeof $.fn.offset == 'function') { // try to use dimensions plugin
408
+ var offset = $el.offset();
409
+ form.clk_x = e.pageX - offset.left;
410
+ form.clk_y = e.pageY - offset.top;
411
+ } else {
412
+ form.clk_x = e.pageX - target.offsetLeft;
413
+ form.clk_y = e.pageY - target.offsetTop;
414
+ }
415
+ }
416
+ // clear form vars
417
+ setTimeout(function() { form.clk = form.clk_x = form.clk_y = null; }, 100);
418
+ });
419
+ };
420
+
421
+ // ajaxFormUnbind unbinds the event handlers that were bound by ajaxForm
422
+ $.fn.ajaxFormUnbind = function() {
423
+ return this.unbind('submit.form-plugin click.form-plugin');
424
+ };
425
+
426
+ /**
427
+ * formToArray() gathers form element data into an array of objects that can
428
+ * be passed to any of the following ajax functions: $.get, $.post, or load.
429
+ * Each object in the array has both a 'name' and 'value' property. An example of
430
+ * an array for a simple login form might be:
431
+ *
432
+ * [ { name: 'username', value: 'jresig' }, { name: 'password', value: 'secret' } ]
433
+ *
434
+ * It is this array that is passed to pre-submit callback functions provided to the
435
+ * ajaxSubmit() and ajaxForm() methods.
436
+ */
437
+ $.fn.formToArray = function(semantic) {
438
+ var a = [];
439
+ if (this.length == 0) return a;
440
+
441
+ var form = this[0];
442
+ var els = semantic ? form.getElementsByTagName('*') : form.elements;
443
+ if (!els) return a;
444
+ for(var i=0, max=els.length; i < max; i++) {
445
+ var el = els[i];
446
+ var n = el.name;
447
+ if (!n) continue;
448
+
449
+ if (semantic && form.clk && el.type == "image") {
450
+ // handle image inputs on the fly when semantic == true
451
+ if(!el.disabled && form.clk == el) {
452
+ a.push({name: n, value: $(el).val()});
453
+ a.push({name: n+'.x', value: form.clk_x}, {name: n+'.y', value: form.clk_y});
454
+ }
455
+ continue;
456
+ }
457
+
458
+ var v = $.fieldValue(el, true);
459
+ if (v && v.constructor == Array) {
460
+ for(var j=0, jmax=v.length; j < jmax; j++)
461
+ a.push({name: n, value: v[j]});
462
+ }
463
+ else if (v !== null && typeof v != 'undefined')
464
+ a.push({name: n, value: v});
465
+ }
466
+
467
+ if (!semantic && form.clk) {
468
+ // input type=='image' are not found in elements array! handle it here
469
+ var $input = $(form.clk), input = $input[0], n = input.name;
470
+ if (n && !input.disabled && input.type == 'image') {
471
+ a.push({name: n, value: $input.val()});
472
+ a.push({name: n+'.x', value: form.clk_x}, {name: n+'.y', value: form.clk_y});
473
+ }
474
+ }
475
+ return a;
476
+ };
477
+
478
+ /**
479
+ * Serializes form data into a 'submittable' string. This method will return a string
480
+ * in the format: name1=value1&amp;name2=value2
481
+ */
482
+ $.fn.formSerialize = function(semantic) {
483
+ //hand off to jQuery.param for proper encoding
484
+ return $.param(this.formToArray(semantic));
485
+ };
486
+
487
+ /**
488
+ * Serializes all field elements in the jQuery object into a query string.
489
+ * This method will return a string in the format: name1=value1&amp;name2=value2
490
+ */
491
+ $.fn.fieldSerialize = function(successful) {
492
+ var a = [];
493
+ this.each(function() {
494
+ var n = this.name;
495
+ if (!n) return;
496
+ var v = $.fieldValue(this, successful);
497
+ if (v && v.constructor == Array) {
498
+ for (var i=0,max=v.length; i < max; i++)
499
+ a.push({name: n, value: v[i]});
500
+ }
501
+ else if (v !== null && typeof v != 'undefined')
502
+ a.push({name: this.name, value: v});
503
+ });
504
+ //hand off to jQuery.param for proper encoding
505
+ return $.param(a);
506
+ };
507
+
508
+ /**
509
+ * Returns the value(s) of the element in the matched set. For example, consider the following form:
510
+ *
511
+ * <form><fieldset>
512
+ * <input name="A" type="text" />
513
+ * <input name="A" type="text" />
514
+ * <input name="B" type="checkbox" value="B1" />
515
+ * <input name="B" type="checkbox" value="B2"/>
516
+ * <input name="C" type="radio" value="C1" />
517
+ * <input name="C" type="radio" value="C2" />
518
+ * </fieldset></form>
519
+ *
520
+ * var v = $(':text').fieldValue();
521
+ * // if no values are entered into the text inputs
522
+ * v == ['','']
523
+ * // if values entered into the text inputs are 'foo' and 'bar'
524
+ * v == ['foo','bar']
525
+ *
526
+ * var v = $(':checkbox').fieldValue();
527
+ * // if neither checkbox is checked
528
+ * v === undefined
529
+ * // if both checkboxes are checked
530
+ * v == ['B1', 'B2']
531
+ *
532
+ * var v = $(':radio').fieldValue();
533
+ * // if neither radio is checked
534
+ * v === undefined
535
+ * // if first radio is checked
536
+ * v == ['C1']
537
+ *
538
+ * The successful argument controls whether or not the field element must be 'successful'
539
+ * (per http://www.w3.org/TR/html4/interact/forms.html#successful-controls).
540
+ * The default value of the successful argument is true. If this value is false the value(s)
541
+ * for each element is returned.
542
+ *
543
+ * Note: This method *always* returns an array. If no valid value can be determined the
544
+ * array will be empty, otherwise it will contain one or more values.
545
+ */
546
+ $.fn.fieldValue = function(successful) {
547
+ for (var val=[], i=0, max=this.length; i < max; i++) {
548
+ var el = this[i];
549
+ var v = $.fieldValue(el, successful);
550
+ if (v === null || typeof v == 'undefined' || (v.constructor == Array && !v.length))
551
+ continue;
552
+ v.constructor == Array ? $.merge(val, v) : val.push(v);
553
+ }
554
+ return val;
555
+ };
556
+
557
+ /**
558
+ * Returns the value of the field element.
559
+ */
560
+ $.fieldValue = function(el, successful) {
561
+ var n = el.name, t = el.type, tag = el.tagName.toLowerCase();
562
+ if (typeof successful == 'undefined') successful = true;
563
+
564
+ if (successful && (!n || el.disabled || t == 'reset' || t == 'button' ||
565
+ (t == 'checkbox' || t == 'radio') && !el.checked ||
566
+ (t == 'submit' || t == 'image') && el.form && el.form.clk != el ||
567
+ tag == 'select' && el.selectedIndex == -1))
568
+ return null;
569
+
570
+ if (tag == 'select') {
571
+ var index = el.selectedIndex;
572
+ if (index < 0) return null;
573
+ var a = [], ops = el.options;
574
+ var one = (t == 'select-one');
575
+ var max = (one ? index+1 : ops.length);
576
+ for(var i=(one ? index : 0); i < max; i++) {
577
+ var op = ops[i];
578
+ if (op.selected) {
579
+ var v = op.value;
580
+ if (!v) // extra pain for IE...
581
+ v = (op.attributes && op.attributes['value'] && !(op.attributes['value'].specified)) ? op.text : op.value;
582
+ if (one) return v;
583
+ a.push(v);
584
+ }
585
+ }
586
+ return a;
587
+ }
588
+ return el.value;
589
+ };
590
+
591
+ /**
592
+ * Clears the form data. Takes the following actions on the form's input fields:
593
+ * - input text fields will have their 'value' property set to the empty string
594
+ * - select elements will have their 'selectedIndex' property set to -1
595
+ * - checkbox and radio inputs will have their 'checked' property set to false
596
+ * - inputs of type submit, button, reset, and hidden will *not* be effected
597
+ * - button elements will *not* be effected
598
+ */
599
+ $.fn.clearForm = function() {
600
+ return this.each(function() {
601
+ $('input,select,textarea', this).clearFields();
602
+ });
603
+ };
604
+
605
+ /**
606
+ * Clears the selected form elements.
607
+ */
608
+ $.fn.clearFields = $.fn.clearInputs = function() {
609
+ return this.each(function() {
610
+ var t = this.type, tag = this.tagName.toLowerCase();
611
+ if (t == 'text' || t == 'password' || tag == 'textarea')
612
+ this.value = '';
613
+ else if (t == 'checkbox' || t == 'radio')
614
+ this.checked = false;
615
+ else if (tag == 'select')
616
+ this.selectedIndex = -1;
617
+ });
618
+ };
619
+
620
+ /**
621
+ * Resets the form data. Causes all form elements to be reset to their original value.
622
+ */
623
+ $.fn.resetForm = function() {
624
+ return this.each(function() {
625
+ // guard against an input with the name of 'reset'
626
+ // note that IE reports the reset function as an 'object'
627
+ if (typeof this.reset == 'function' || (typeof this.reset == 'object' && !this.reset.nodeType))
628
+ this.reset();
629
+ });
630
+ };
631
+
632
+ /**
633
+ * Enables or disables any matching elements.
634
+ */
635
+ $.fn.enable = function(b) {
636
+ if (b == undefined) b = true;
637
+ return this.each(function() {
638
+ this.disabled = !b;
639
+ });
640
+ };
641
+
642
+ /**
643
+ * Checks/unchecks any matching checkboxes or radio buttons and
644
+ * selects/deselects and matching option elements.
645
+ */
646
+ $.fn.selected = function(select) {
647
+ if (select == undefined) select = true;
648
+ return this.each(function() {
649
+ var t = this.type;
650
+ if (t == 'checkbox' || t == 'radio')
651
+ this.checked = select;
652
+ else if (this.tagName.toLowerCase() == 'option') {
653
+ var $sel = $(this).parent('select');
654
+ if (select && $sel[0] && $sel[0].type == 'select-one') {
655
+ // deselect all other options
656
+ $sel.find('option').selected(false);
657
+ }
658
+ this.selected = select;
659
+ }
660
+ });
661
+ };
662
+
663
+ // helper fn for console logging
664
+ // set $.fn.ajaxSubmit.debug to true to enable debug logging
665
+ function log() {
666
+ if ($.fn.ajaxSubmit.debug) {
667
+ var msg = '[jquery.form] ' + Array.prototype.join.call(arguments,'');
668
+ if (window.console && window.console.log)
669
+ window.console.log(msg);
670
+ else if (window.opera && window.opera.postError)
671
+ window.opera.postError(msg);
672
+ }
673
+ };
674
+
675
+ })(jQuery);