curation_concerns 0.1.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (424) hide show
  1. checksums.yaml +7 -0
  2. data/.gitignore +14 -0
  3. data/.rspec +2 -0
  4. data/.travis.yml +18 -0
  5. data/Gemfile +31 -0
  6. data/LICENSE.txt +15 -0
  7. data/README.md +46 -0
  8. data/RELEASING.md +2 -0
  9. data/Rakefile +26 -0
  10. data/VERSION +1 -0
  11. data/app/assets/images/default.png +0 -0
  12. data/app/assets/images/nope.png +0 -0
  13. data/app/assets/javascripts/.gitkeep +0 -0
  14. data/app/assets/javascripts/curation_concerns/.gitkeep +0 -0
  15. data/app/assets/javascripts/curation_concerns/application.js +18 -0
  16. data/app/assets/javascripts/curation_concerns/browse_everything_implement.js +7 -0
  17. data/app/assets/javascripts/curation_concerns/curation_concerns.js +28 -0
  18. data/app/assets/javascripts/curation_concerns/embargoes.js +17 -0
  19. data/app/assets/javascripts/curation_concerns/facet_mine.js +22 -0
  20. data/app/assets/javascripts/curation_concerns/help_modal.js +36 -0
  21. data/app/assets/javascripts/curation_concerns/link_groups.js.coffee +123 -0
  22. data/app/assets/javascripts/curation_concerns/link_users.js.coffee +126 -0
  23. data/app/assets/javascripts/curation_concerns/proxy_rights.js.coffee +95 -0
  24. data/app/assets/javascripts/curation_concerns/proxy_submission.js +23 -0
  25. data/app/assets/javascripts/curation_concerns/select_works.js.coffee +20 -0
  26. data/app/assets/javascripts/modernizr.js +3 -0
  27. data/app/assets/stylesheets/curation_concerns/_curation_concerns.scss +9 -0
  28. data/app/assets/stylesheets/curation_concerns/_global-variables.scss +5 -0
  29. data/app/assets/stylesheets/curation_concerns/_modules.scss +13 -0
  30. data/app/assets/stylesheets/curation_concerns/_positioning.scss +138 -0
  31. data/app/assets/stylesheets/curation_concerns/_theme.scss +46 -0
  32. data/app/assets/stylesheets/curation_concerns/_typography.scss +137 -0
  33. data/app/assets/stylesheets/curation_concerns/_variables_bootstrap.scss +7 -0
  34. data/app/assets/stylesheets/curation_concerns/downloads.scss +3 -0
  35. data/app/assets/stylesheets/curation_concerns/help_requests.scss +3 -0
  36. data/app/assets/stylesheets/curation_concerns/modules/accessibility.scss +50 -0
  37. data/app/assets/stylesheets/curation_concerns/modules/accordion.scss +33 -0
  38. data/app/assets/stylesheets/curation_concerns/modules/attributes.scss +31 -0
  39. data/app/assets/stylesheets/curation_concerns/modules/classify_work.scss +100 -0
  40. data/app/assets/stylesheets/curation_concerns/modules/embargoes.scss +15 -0
  41. data/app/assets/stylesheets/curation_concerns/modules/emphatic_action_area.scss +14 -0
  42. data/app/assets/stylesheets/curation_concerns/modules/forms.scss +116 -0
  43. data/app/assets/stylesheets/curation_concerns/modules/multi_value_fields.scss +52 -0
  44. data/app/assets/stylesheets/curation_concerns/modules/pagination.scss +4 -0
  45. data/app/assets/stylesheets/curation_concerns/modules/search_results.scss +55 -0
  46. data/app/assets/stylesheets/curation_concerns/modules/site_actions.scss +53 -0
  47. data/app/assets/stylesheets/curation_concerns/modules/site_search.scss +46 -0
  48. data/app/controllers/catalog_controller.rb +3 -0
  49. data/app/controllers/collections_controller.rb +3 -0
  50. data/app/controllers/concerns/curation_concerns/application_controller_behavior.rb +28 -0
  51. data/app/controllers/concerns/curation_concerns/catalog_controller.rb +321 -0
  52. data/app/controllers/concerns/curation_concerns/collections_controller_behavior.rb +76 -0
  53. data/app/controllers/concerns/curation_concerns/curation_concern_controller.rb +125 -0
  54. data/app/controllers/concerns/curation_concerns/download_behavior.rb +60 -0
  55. data/app/controllers/concerns/curation_concerns/embargoes_controller_behavior.rb +44 -0
  56. data/app/controllers/concerns/curation_concerns/generic_files_controller_behavior.rb +149 -0
  57. data/app/controllers/concerns/curation_concerns/leases_controller_behavior.rb +36 -0
  58. data/app/controllers/concerns/curation_concerns/manages_embargoes.rb +26 -0
  59. data/app/controllers/concerns/curation_concerns/parent_container.rb +33 -0
  60. data/app/controllers/concerns/curation_concerns/themed_layout_controller.rb +31 -0
  61. data/app/controllers/concerns/curation_concerns/without_namespace.rb +15 -0
  62. data/app/controllers/curation_concerns/application_controller.rb +7 -0
  63. data/app/controllers/curation_concerns/classify_concerns_controller.rb +35 -0
  64. data/app/controllers/curation_concerns/generic_files_controller.rb +13 -0
  65. data/app/controllers/curation_concerns/permissions_controller.rb +19 -0
  66. data/app/controllers/downloads_controller.rb +4 -0
  67. data/app/controllers/embargoes_controller.rb +5 -0
  68. data/app/controllers/leases_controller.rb +5 -0
  69. data/app/controllers/registrations_controller.rb +20 -0
  70. data/app/controllers/sessions_controller.rb +4 -0
  71. data/app/datastreams/curation_concerns/generic_work_rdf_properties.rb +57 -0
  72. data/app/datastreams/generic_work_metadata.rb +3 -0
  73. data/app/forms/curation_concerns/forms/collection_edit_form.rb +17 -0
  74. data/app/forms/curation_concerns/forms/generic_file_edit_form.rb +15 -0
  75. data/app/forms/curation_concerns/forms/generic_work_edit_form.rb +9 -0
  76. data/app/helpers/curation_concerns/ability_helper.rb +46 -0
  77. data/app/helpers/curation_concerns/attribute_helper.rb +67 -0
  78. data/app/helpers/curation_concerns/catalog_helper.rb +38 -0
  79. data/app/helpers/curation_concerns/collections_helper.rb +63 -0
  80. data/app/helpers/curation_concerns/embargo_helper.rb +17 -0
  81. data/app/helpers/curation_concerns/generic_file_helper.rb +19 -0
  82. data/app/helpers/curation_concerns/lease_helper.rb +18 -0
  83. data/app/helpers/curation_concerns/main_app_helpers.rb +13 -0
  84. data/app/helpers/curation_concerns/render_constraints_helper.rb +42 -0
  85. data/app/helpers/curation_concerns/search_paths_helper.rb +13 -0
  86. data/app/helpers/curation_concerns/thumbnail_helper.rb +11 -0
  87. data/app/helpers/curation_concerns/title_helper.rb +23 -0
  88. data/app/helpers/curation_concerns/url_helper.rb +29 -0
  89. data/app/presenters/curation_concerns/collection_presenter.rb +40 -0
  90. data/app/presenters/curation_concerns/generic_file_presenter.rb +14 -0
  91. data/app/presenters/curation_concerns/generic_work_presenter.rb +13 -0
  92. data/app/search_builders/curation_concerns/search_builder.rb +49 -0
  93. data/app/services/curation_concerns/curation_concern.rb +14 -0
  94. data/app/services/curation_concerns/embargo_service.rb +26 -0
  95. data/app/services/curation_concerns/lease_service.rb +23 -0
  96. data/app/views/catalog/_action_menu_partials/_collection.html.erb +27 -0
  97. data/app/views/catalog/_action_menu_partials/_default.html.erb +27 -0
  98. data/app/views/catalog/_document.html.erb +3 -0
  99. data/app/views/catalog/_document_list.html.erb +5 -0
  100. data/app/views/catalog/_home_text.html.erb +8 -0
  101. data/app/views/catalog/_index_default.html.erb +17 -0
  102. data/app/views/catalog/_index_header_list_default.html.erb +8 -0
  103. data/app/views/catalog/_navbar.html.erb +12 -0
  104. data/app/views/catalog/_show_partials/_default.html.erb +22 -0
  105. data/app/views/catalog/_show_partials/_default_details.html.erb +15 -0
  106. data/app/views/catalog/_show_partials/_facets.html.erb +52 -0
  107. data/app/views/catalog/index.html.erb +47 -0
  108. data/app/views/collections/_add_to_collection_modal.html.erb +15 -0
  109. data/app/views/collections/_batch_edits_actions.html.erb +3 -0
  110. data/app/views/collections/_button_for_creating_empty_collection.html.erb +3 -0
  111. data/app/views/collections/_collection.html.erb +1 -0
  112. data/app/views/collections/_dashboard_document_list.html.erb +6 -0
  113. data/app/views/collections/_document_list.html.erb +7 -0
  114. data/app/views/collections/_edit_actions.html.erb +5 -0
  115. data/app/views/collections/_edit_descriptions.html.erb +20 -0
  116. data/app/views/collections/_form.html.erb +26 -0
  117. data/app/views/collections/_form_additional_information.html.erb +6 -0
  118. data/app/views/collections/_form_for_select_collection.html.erb +34 -0
  119. data/app/views/collections/_form_permission.html.erb +36 -0
  120. data/app/views/collections/_form_representative_image.html.erb +13 -0
  121. data/app/views/collections/_form_required_information.html.erb +11 -0
  122. data/app/views/collections/_form_to_add_member.html.erb +21 -0
  123. data/app/views/collections/_identifier_and_action.html.erb +15 -0
  124. data/app/views/collections/_media_display.html.erb +1 -0
  125. data/app/views/collections/_paginate.html.erb +6 -0
  126. data/app/views/collections/_search_collection_dashboard_form.html.erb +10 -0
  127. data/app/views/collections/_show_actions.html.erb +8 -0
  128. data/app/views/collections/_show_descriptions.html.erb +10 -0
  129. data/app/views/collections/_show_fields.html.erb +0 -0
  130. data/app/views/collections/_single_item_action_fields.html.erb +6 -0
  131. data/app/views/collections/_sort_and_per_page.html.erb +29 -0
  132. data/app/views/collections/_view_type_group.html.erb +13 -0
  133. data/app/views/collections/edit.html.erb +17 -0
  134. data/app/views/collections/show.html.erb +24 -0
  135. data/app/views/curation_concerns/base/_attributes.html.erb +25 -0
  136. data/app/views/curation_concerns/base/_collections.html.erb +26 -0
  137. data/app/views/curation_concerns/base/_form.html.erb +25 -0
  138. data/app/views/curation_concerns/base/_form_additional_information.html.erb +7 -0
  139. data/app/views/curation_concerns/base/_form_content_license.html.erb +16 -0
  140. data/app/views/curation_concerns/base/_form_descriptive_fields.erb +11 -0
  141. data/app/views/curation_concerns/base/_form_editors.html.erb +15 -0
  142. data/app/views/curation_concerns/base/_form_files_and_links.html.erb +23 -0
  143. data/app/views/curation_concerns/base/_form_permission.html.erb +52 -0
  144. data/app/views/curation_concerns/base/_form_permission_embargo.html.erb +6 -0
  145. data/app/views/curation_concerns/base/_form_permission_lease.html.erb +6 -0
  146. data/app/views/curation_concerns/base/_form_permission_under_embargo.html.erb +16 -0
  147. data/app/views/curation_concerns/base/_form_permission_under_lease.html.erb +18 -0
  148. data/app/views/curation_concerns/base/_form_representative_image.html.erb +13 -0
  149. data/app/views/curation_concerns/base/_form_required_information.html.erb +11 -0
  150. data/app/views/curation_concerns/base/_form_supplementary_fields.html.erb +15 -0
  151. data/app/views/curation_concerns/base/_legally_binding_text.html.erb +33 -0
  152. data/app/views/curation_concerns/base/_related_files.html.erb +24 -0
  153. data/app/views/curation_concerns/base/_representative_media.html.erb +8 -0
  154. data/app/views/curation_concerns/base/edit.html.erb +13 -0
  155. data/app/views/curation_concerns/base/new.html.erb +12 -0
  156. data/app/views/curation_concerns/base/show.html.erb +21 -0
  157. data/app/views/curation_concerns/base/unauthorized.html.erb +3 -0
  158. data/app/views/curation_concerns/classify_concerns/new.html.erb +25 -0
  159. data/app/views/curation_concerns/collections/_form_additional_information.html.erb +6 -0
  160. data/app/views/curation_concerns/generic_files/_actions.html.erb +16 -0
  161. data/app/views/curation_concerns/generic_files/_form.html.erb +35 -0
  162. data/app/views/curation_concerns/generic_files/_generic_file.html.erb +12 -0
  163. data/app/views/curation_concerns/generic_files/_media_display.html.erb +19 -0
  164. data/app/views/curation_concerns/generic_files/edit.html.erb +5 -0
  165. data/app/views/curation_concerns/generic_files/jq_upload.json.jbuilder +8 -0
  166. data/app/views/curation_concerns/generic_files/show.html.erb +15 -0
  167. data/app/views/curation_concerns/permissions/confirm.html.erb +21 -0
  168. data/app/views/embargoes/_embargo_history.html.erb +7 -0
  169. data/app/views/embargoes/_list_active_embargoes.html.erb +16 -0
  170. data/app/views/embargoes/_list_deactivated_embargoes.html.erb +10 -0
  171. data/app/views/embargoes/_list_expired_active_embargoes.html.erb +44 -0
  172. data/app/views/embargoes/edit.html.erb +43 -0
  173. data/app/views/embargoes/index.html.erb +18 -0
  174. data/app/views/layouts/boilerplate.html.erb +22 -0
  175. data/app/views/layouts/curation_concerns/1_column.html.erb +11 -0
  176. data/app/views/layouts/curation_concerns/catalog.html.erb +37 -0
  177. data/app/views/layouts/curation_concerns.html.erb +22 -0
  178. data/app/views/leases/_lease_history.html.erb +7 -0
  179. data/app/views/leases/_list_active_leases.html.erb +16 -0
  180. data/app/views/leases/_list_deactivated_leases.html.erb +4 -0
  181. data/app/views/leases/_list_expired_active_leases.html.erb +38 -0
  182. data/app/views/leases/edit.html.erb +43 -0
  183. data/app/views/leases/index.html.erb +18 -0
  184. data/app/views/shared/_add_content.html.erb +32 -0
  185. data/app/views/shared/_brand_bar.html.erb +10 -0
  186. data/app/views/shared/_flash_message.html.erb +17 -0
  187. data/app/views/shared/_footer.html.erb +10 -0
  188. data/app/views/shared/_ga.html.erb +6 -0
  189. data/app/views/shared/_header.html.erb +12 -0
  190. data/app/views/shared/_my_actions.html.erb +21 -0
  191. data/app/views/shared/_site_actions.html.erb +7 -0
  192. data/app/views/shared/_site_search.html.erb +12 -0
  193. data/app/views/shared/_title_bar.html.erb +16 -0
  194. data/app/workers/visibility_copy_worker.rb +30 -0
  195. data/config/initializers/simple_form.rb +31 -0
  196. data/config/locales/curation_concerns.en.yml +96 -0
  197. data/config/routes.rb +4 -0
  198. data/curation_concerns-models/.gitignore +17 -0
  199. data/curation_concerns-models/Gemfile +4 -0
  200. data/curation_concerns-models/LICENSE.md +177 -0
  201. data/curation_concerns-models/README.md +42 -0
  202. data/curation_concerns-models/Rakefile +1 -0
  203. data/curation_concerns-models/app/actors/concerns/curation_concerns/manages_embargoes_actor.rb +99 -0
  204. data/curation_concerns-models/app/actors/curation_concerns/base_actor.rb +90 -0
  205. data/curation_concerns-models/app/actors/curation_concerns/generic_file_actor.rb +150 -0
  206. data/curation_concerns-models/app/actors/curation_concerns/work_actor_behavior.rb +88 -0
  207. data/curation_concerns-models/app/jobs/active_fedora_id_based_job.rb +22 -0
  208. data/curation_concerns-models/app/jobs/active_fedora_pid_based_job.rb +6 -0
  209. data/curation_concerns-models/app/jobs/audit_job.rb +58 -0
  210. data/curation_concerns-models/app/jobs/characterize_job.rb +11 -0
  211. data/curation_concerns-models/app/jobs/copy_permissions_job.rb +24 -0
  212. data/curation_concerns-models/app/jobs/create_derivatives_job.rb +15 -0
  213. data/curation_concerns-models/app/jobs/import_url_job.rb +56 -0
  214. data/curation_concerns-models/app/jobs/ingest_local_file_job.rb +48 -0
  215. data/curation_concerns-models/app/jobs/resolrize_job.rb +9 -0
  216. data/curation_concerns-models/app/models/checksum_audit_log.rb +21 -0
  217. data/curation_concerns-models/app/models/concerns/curation_concerns/ability.rb +34 -0
  218. data/curation_concerns-models/app/models/concerns/curation_concerns/basic_metadata.rb +87 -0
  219. data/curation_concerns-models/app/models/concerns/curation_concerns/collection_behavior.rb +47 -0
  220. data/curation_concerns-models/app/models/concerns/curation_concerns/generic_file/belongs_to_works.rb +53 -0
  221. data/curation_concerns-models/app/models/concerns/curation_concerns/generic_file/characterization.rb +89 -0
  222. data/curation_concerns-models/app/models/concerns/curation_concerns/generic_file/content.rb +8 -0
  223. data/curation_concerns-models/app/models/concerns/curation_concerns/generic_file/export.rb +343 -0
  224. data/curation_concerns-models/app/models/concerns/curation_concerns/generic_file/full_text_indexing.rb +12 -0
  225. data/curation_concerns-models/app/models/concerns/curation_concerns/generic_file/indexing.rb +14 -0
  226. data/curation_concerns-models/app/models/concerns/curation_concerns/generic_file/versions.rb +16 -0
  227. data/curation_concerns-models/app/models/concerns/curation_concerns/generic_file.rb +5 -0
  228. data/curation_concerns-models/app/models/concerns/curation_concerns/generic_file_behavior.rb +44 -0
  229. data/curation_concerns-models/app/models/concerns/curation_concerns/generic_work_behavior.rb +38 -0
  230. data/curation_concerns-models/app/models/concerns/curation_concerns/has_representative.rb +14 -0
  231. data/curation_concerns-models/app/models/concerns/curation_concerns/human_readable_type.rb +23 -0
  232. data/curation_concerns-models/app/models/concerns/curation_concerns/permissions/readable.rb +19 -0
  233. data/curation_concerns-models/app/models/concerns/curation_concerns/permissions/writable.rb +75 -0
  234. data/curation_concerns-models/app/models/concerns/curation_concerns/permissions.rb +7 -0
  235. data/curation_concerns-models/app/models/concerns/curation_concerns/serializers.rb +15 -0
  236. data/curation_concerns-models/app/models/concerns/curation_concerns/solr_document_behavior.rb +135 -0
  237. data/curation_concerns-models/app/models/concerns/curation_concerns/user.rb +65 -0
  238. data/curation_concerns-models/app/models/concerns/curation_concerns/with_basic_metadata.rb +98 -0
  239. data/curation_concerns-models/app/models/concerns/curation_concerns/with_generic_files.rb +29 -0
  240. data/curation_concerns-models/app/models/curation_concerns/classify_concern.rb +47 -0
  241. data/curation_concerns-models/app/models/curation_concerns/quick_classification_query.rb +31 -0
  242. data/curation_concerns-models/app/models/datastreams/fits_datastream.rb +148 -0
  243. data/curation_concerns-models/app/models/version_committer.rb +2 -0
  244. data/curation_concerns-models/app/services/curation_concerns/characterization_service.rb +71 -0
  245. data/curation_concerns-models/app/services/curation_concerns/full_text_extraction_service.rb +38 -0
  246. data/curation_concerns-models/app/services/curation_concerns/generic_file_audit_service.rb +85 -0
  247. data/curation_concerns-models/app/services/curation_concerns/generic_file_indexing_service.rb +14 -0
  248. data/curation_concerns-models/app/services/curation_concerns/generic_work_indexing_service.rb +16 -0
  249. data/curation_concerns-models/app/services/curation_concerns/noid.rb +23 -0
  250. data/curation_concerns-models/app/services/curation_concerns/repository_audit_service.rb +9 -0
  251. data/curation_concerns-models/app/services/curation_concerns/versioning_service.rb +27 -0
  252. data/curation_concerns-models/config/locales/curation_concerns.en.yml +6 -0
  253. data/curation_concerns-models/curation_concerns-models.gemspec +34 -0
  254. data/curation_concerns-models/lib/curation_concerns/messages.rb +66 -0
  255. data/curation_concerns-models/lib/curation_concerns/models/engine.rb +61 -0
  256. data/curation_concerns-models/lib/curation_concerns/models/resque.rb +36 -0
  257. data/curation_concerns-models/lib/curation_concerns/models/utils.rb +22 -0
  258. data/curation_concerns-models/lib/curation_concerns/models/version.rb +5 -0
  259. data/curation_concerns-models/lib/curation_concerns/models.rb +32 -0
  260. data/curation_concerns-models/lib/generators/curation_concerns/models/abstract_migration_generator.rb +30 -0
  261. data/curation_concerns-models/lib/generators/curation_concerns/models/clamav_generator.rb +19 -0
  262. data/curation_concerns-models/lib/generators/curation_concerns/models/fulltext_generator.rb +28 -0
  263. data/curation_concerns-models/lib/generators/curation_concerns/models/install_generator.rb +70 -0
  264. data/curation_concerns-models/lib/generators/curation_concerns/models/templates/app/models/collection.rb +4 -0
  265. data/curation_concerns-models/lib/generators/curation_concerns/models/templates/app/models/generic_file.rb +4 -0
  266. data/curation_concerns-models/lib/generators/curation_concerns/models/templates/config/clamav.rb +1 -0
  267. data/curation_concerns-models/lib/generators/curation_concerns/models/templates/config/curation_concerns.rb +123 -0
  268. data/curation_concerns-models/lib/generators/curation_concerns/models/templates/config/mime_types.rb +6 -0
  269. data/curation_concerns-models/lib/generators/curation_concerns/models/templates/config/redis.yml +9 -0
  270. data/curation_concerns-models/lib/generators/curation_concerns/models/templates/config/redis_config.rb +32 -0
  271. data/curation_concerns-models/lib/generators/curation_concerns/models/templates/config/resque-pool.yml +1 -0
  272. data/curation_concerns-models/lib/generators/curation_concerns/models/templates/config/resque_admin.rb +10 -0
  273. data/curation_concerns-models/lib/generators/curation_concerns/models/templates/config/resque_config.rb +5 -0
  274. data/curation_concerns-models/lib/generators/curation_concerns/models/templates/migrations/create_checksum_audit_logs.rb +19 -0
  275. data/curation_concerns-models/lib/generators/curation_concerns/models/templates/migrations/create_version_committers.rb +15 -0
  276. data/curation_concerns-models/lib/tasks/curation_concerns-models_tasks.rake +75 -0
  277. data/curation_concerns-models/lib/tasks/migrate.rake +13 -0
  278. data/curation_concerns-models/lib/tasks/resque.rake +13 -0
  279. data/curation_concerns-models/lib/tasks/solr_reindex.rake +8 -0
  280. data/curation_concerns.gemspec +46 -0
  281. data/lib/curation_concerns/configuration.rb +74 -0
  282. data/lib/curation_concerns/controller_resource.rb +10 -0
  283. data/lib/curation_concerns/engine.rb +20 -0
  284. data/lib/curation_concerns/rails/routes.rb +76 -0
  285. data/lib/curation_concerns/spec_support.rb +10 -0
  286. data/lib/curation_concerns/version.rb +3 -0
  287. data/lib/curation_concerns.rb +8 -0
  288. data/lib/generators/curation_concerns/install_generator.rb +103 -0
  289. data/lib/generators/curation_concerns/templates/curation_concerns.css.scss +3 -0
  290. data/lib/generators/curation_concerns/templates/curation_concerns.js +1 -0
  291. data/lib/generators/curation_concerns/templates/curation_concerns_config.rb +2 -0
  292. data/lib/generators/curation_concerns/templates/curation_concerns_helper.rb +4 -0
  293. data/lib/generators/curation_concerns/work/USAGE +19 -0
  294. data/lib/generators/curation_concerns/work/templates/README +13 -0
  295. data/lib/generators/curation_concerns/work/templates/actor.rb.erb +7 -0
  296. data/lib/generators/curation_concerns/work/templates/actor_spec.rb.erb +9 -0
  297. data/lib/generators/curation_concerns/work/templates/controller.rb.erb +7 -0
  298. data/lib/generators/curation_concerns/work/templates/controller_spec.rb.erb +9 -0
  299. data/lib/generators/curation_concerns/work/templates/model.rb.erb +7 -0
  300. data/lib/generators/curation_concerns/work/templates/model_spec.rb.erb +9 -0
  301. data/lib/generators/curation_concerns/work/work_generator.rb +78 -0
  302. data/solr_conf/conf/solrconfig.xml +223 -0
  303. data/spec/abilities/collection_abilities_spec.rb +48 -0
  304. data/spec/abilities/generic_file_abilities_spec.rb +62 -0
  305. data/spec/abilities/generic_work_abilities_spec.rb +58 -0
  306. data/spec/actors/curation_concerns/generic_file_actor_spec.rb +116 -0
  307. data/spec/actors/curation_concerns/manages_embargoes_actor_spec.rb +95 -0
  308. data/spec/actors/curation_concerns/work_actor_spec.rb +203 -0
  309. data/spec/controllers/catalog_controller_spec.rb +115 -0
  310. data/spec/controllers/curation_concerns/classify_concerns_controller_spec.rb +43 -0
  311. data/spec/controllers/curation_concerns/collections_controller_spec.rb +171 -0
  312. data/spec/controllers/curation_concerns/generic_files_controller_spec.rb +251 -0
  313. data/spec/controllers/curation_concerns/generic_works_controller_spec.rb +167 -0
  314. data/spec/controllers/curation_concerns/permissions_controller_spec.rb +29 -0
  315. data/spec/controllers/downloads_controller_spec.rb +51 -0
  316. data/spec/controllers/embargoes_controller_spec.rb +114 -0
  317. data/spec/controllers/leases_controller_spec.rb +94 -0
  318. data/spec/factories/collections.rb +15 -0
  319. data/spec/factories/create_curation_concern.rb +3 -0
  320. data/spec/factories/generic_files.rb +31 -0
  321. data/spec/factories/generic_works.rb +54 -0
  322. data/spec/factories/users.rb +28 -0
  323. data/spec/features/add_file_spec.rb +30 -0
  324. data/spec/features/collection_spec.rb +222 -0
  325. data/spec/features/create_work_spec.rb +43 -0
  326. data/spec/features/embargo_spec.rb +51 -0
  327. data/spec/features/lease_spec.rb +49 -0
  328. data/spec/features/update_file_spec.rb +32 -0
  329. data/spec/features/work_generator_spec.rb +58 -0
  330. data/spec/fixtures/Example.ogg +0 -0
  331. data/spec/fixtures/charter.docx +0 -0
  332. data/spec/fixtures/countdown.avi +0 -0
  333. data/spec/fixtures/curation_concerns_generic_stub.txt +1 -0
  334. data/spec/fixtures/files/image.png +0 -0
  335. data/spec/fixtures/image.jp2 +0 -0
  336. data/spec/fixtures/image.jpg +0 -0
  337. data/spec/fixtures/piano_note.wav +0 -0
  338. data/spec/fixtures/sample_mpeg4.mp4 +0 -0
  339. data/spec/fixtures/small_file.txt +1 -0
  340. data/spec/fixtures/spoken-text.m4a +0 -0
  341. data/spec/fixtures/test4.pdf +0 -0
  342. data/spec/fixtures/test5.mp3 +0 -0
  343. data/spec/fixtures/world.png +0 -0
  344. data/spec/forms/collection_edit_form_spec.rb +20 -0
  345. data/spec/forms/generic_file_edit_form_spec.rb +33 -0
  346. data/spec/helpers/catalog_helper_spec.rb +58 -0
  347. data/spec/helpers/configuration_helper_spec.rb +13 -0
  348. data/spec/helpers/curation_concerns/.keep +0 -0
  349. data/spec/helpers/curation_concerns/collections_helper_spec.rb +49 -0
  350. data/spec/helpers/render_constraints_helper_spec.rb +19 -0
  351. data/spec/helpers/thumbnail_helper_spec.rb +21 -0
  352. data/spec/helpers/url_helper_spec.rb +22 -0
  353. data/spec/jobs/active_fedora_id_based_job_spec.rb +14 -0
  354. data/spec/jobs/audit_job_spec.rb +53 -0
  355. data/spec/jobs/characterize_job_spec.rb +23 -0
  356. data/spec/jobs/copy_permissions_job_spec.rb +49 -0
  357. data/spec/jobs/create_derivatives_job_spec.rb +23 -0
  358. data/spec/jobs/curation_concerns_resque_queue_spec.rb +49 -0
  359. data/spec/jobs/import_url_job_spec.rb +45 -0
  360. data/spec/jobs/ingest_local_file_job_spec.rb +25 -0
  361. data/spec/lib/curation_concerns/messages_spec.rb +70 -0
  362. data/spec/lib/curation_concerns/readable_permissions_spec.rb +56 -0
  363. data/spec/lib/curation_concerns/writable_permissions_spec.rb +16 -0
  364. data/spec/matchers/metadata_field_matchers.rb +28 -0
  365. data/spec/matchers/response_matchers.rb +7 -0
  366. data/spec/matchers.rb +24 -0
  367. data/spec/models/checksum_audit_log_spec.rb +66 -0
  368. data/spec/models/curation_concerns/collection_behavior_spec.rb +107 -0
  369. data/spec/models/curation_concerns/generic_file/derivatives_spec.rb +88 -0
  370. data/spec/models/curation_concerns/generic_work_behavior_spec.rb +35 -0
  371. data/spec/models/fits_datastream_spec.rb +127 -0
  372. data/spec/models/generic_file_spec.rb +619 -0
  373. data/spec/models/generic_work_spec.rb +43 -0
  374. data/spec/models/user_spec.rb +23 -0
  375. data/spec/presenters/curation_concerns/collection_presenter_spec.rb +34 -0
  376. data/spec/presenters/curation_concerns/generic_file_presenter_spec.rb +16 -0
  377. data/spec/routing/curation_concerns/routes_spec.rb +36 -0
  378. data/spec/routing/route_spec.rb +86 -0
  379. data/spec/services/characterization_service_spec.rb +30 -0
  380. data/spec/services/embargo_service_spec.rb +38 -0
  381. data/spec/services/full_text_extraction_service_spec.rb +5 -0
  382. data/spec/services/generic_file_audit_service_spec.rb +71 -0
  383. data/spec/services/generic_file_indexing_service_spec.rb +57 -0
  384. data/spec/services/generic_work_indexing_service_spec.rb +18 -0
  385. data/spec/services/lease_service_spec.rb +53 -0
  386. data/spec/services/repository_audit_service_spec.rb +18 -0
  387. data/spec/services/versioning_service_spec.rb +32 -0
  388. data/spec/spec_helper.rb +94 -0
  389. data/spec/support/controllers/engine_helpers.rb +7 -0
  390. data/spec/support/curation_concerns/factory_helpers.rb +14 -0
  391. data/spec/support/features/fixture_file_upload.rb +14 -0
  392. data/spec/support/features/session_helpers.rb +41 -0
  393. data/spec/support/features.rb +19 -0
  394. data/spec/support/shared/shared_examples_has_dc_metadata.rb +17 -0
  395. data/spec/support/shared/shared_examples_is_embargoable.rb +8 -0
  396. data/spec/support/shared/shared_examples_with_access_rights.rb +63 -0
  397. data/spec/tasks/rake_spec.rb +24 -0
  398. data/spec/test_app_templates/Gemfile.extra +1 -0
  399. data/spec/test_app_templates/lib/generators/test_app_generator.rb +55 -0
  400. data/spec/views/catalog/index.html.erb_spec.rb +59 -0
  401. data/spec/views/curation_concerns/base/_attributes.html.erb_spec.rb +25 -0
  402. data/spec/views/curation_concerns/base/show.html.erb_spec.rb +29 -0
  403. data/spec/views/curation_concerns/permissions/confirm.html.erb_spec.rb +33 -0
  404. data/spec/views/shared/_add_content.html.erb_spec.rb +42 -0
  405. data/spec/views/shared/_my_actions.html.erb_spec.rb +23 -0
  406. data/spec/workers/visibility_copy_worker_spec.rb +70 -0
  407. data/tasks/jetty.rake +15 -0
  408. data/tasks/release.rake +93 -0
  409. data/vendor/assets/images/ui-bg_glass_100_fdf5ce_1x400.png +0 -0
  410. data/vendor/assets/images/ui-bg_highlight-soft_100_eeeeee_1x100.png +0 -0
  411. data/vendor/assets/javascripts/handlebars.js +2278 -0
  412. data/vendor/assets/javascripts/jquery-ui-1.9.2/jquery.ui.autocomplete.js +602 -0
  413. data/vendor/assets/javascripts/jquery-ui-1.9.2/jquery.ui.core.js +356 -0
  414. data/vendor/assets/javascripts/jquery-ui-1.9.2/jquery.ui.effect-highlight.js +50 -0
  415. data/vendor/assets/javascripts/jquery-ui-1.9.2/jquery.ui.effect.js +1276 -0
  416. data/vendor/assets/javascripts/jquery-ui-1.9.2/jquery.ui.menu.js +610 -0
  417. data/vendor/assets/javascripts/jquery-ui-1.9.2/jquery.ui.position.js +498 -0
  418. data/vendor/assets/javascripts/jquery-ui-1.9.2/jquery.ui.widget.js +528 -0
  419. data/vendor/assets/javascripts/jquery.tokeninput.js +1061 -0
  420. data/vendor/assets/stylesheets/jquery-ui-lightness.css +474 -0
  421. data/vendor/assets/stylesheets/token-input-facebook.css +122 -0
  422. data/vendor/assets/stylesheets/token-input-mac.css +204 -0
  423. data/vendor/assets/stylesheets/token-input.css +127 -0
  424. metadata +888 -0
@@ -0,0 +1,602 @@
1
+ /*!
2
+ * jQuery UI Autocomplete @VERSION
3
+ * http://jqueryui.com
4
+ *
5
+ * Copyright 2012 jQuery Foundation and other contributors
6
+ * Released under the MIT license.
7
+ * http://jquery.org/license
8
+ *
9
+ * http://api.jqueryui.com/autocomplete/
10
+ *
11
+ * Depends:
12
+ * jquery.ui.core.js
13
+ * jquery.ui.widget.js
14
+ * jquery.ui.position.js
15
+ * jquery.ui.menu.js
16
+ */
17
+ (function( $, undefined ) {
18
+
19
+ // used to prevent race conditions with remote data sources
20
+ var requestIndex = 0;
21
+
22
+ $.widget( "ui.autocomplete", {
23
+ version: "@VERSION",
24
+ defaultElement: "<input>",
25
+ options: {
26
+ appendTo: "body",
27
+ autoFocus: false,
28
+ delay: 300,
29
+ minLength: 1,
30
+ position: {
31
+ my: "left top",
32
+ at: "left bottom",
33
+ collision: "none"
34
+ },
35
+ source: null,
36
+
37
+ // callbacks
38
+ change: null,
39
+ close: null,
40
+ focus: null,
41
+ open: null,
42
+ response: null,
43
+ search: null,
44
+ select: null
45
+ },
46
+
47
+ pending: 0,
48
+
49
+ _create: function() {
50
+ // Some browsers only repeat keydown events, not keypress events,
51
+ // so we use the suppressKeyPress flag to determine if we've already
52
+ // handled the keydown event. #7269
53
+ // Unfortunately the code for & in keypress is the same as the up arrow,
54
+ // so we use the suppressKeyPressRepeat flag to avoid handling keypress
55
+ // events when we know the keydown event was used to modify the
56
+ // search term. #7799
57
+ var suppressKeyPress, suppressKeyPressRepeat, suppressInput;
58
+
59
+ this.isMultiLine = this._isMultiLine();
60
+ this.valueMethod = this.element[ this.element.is( "input,textarea" ) ? "val" : "text" ];
61
+ this.isNewMenu = true;
62
+
63
+ this.element
64
+ .addClass( "ui-autocomplete-input" )
65
+ .attr( "autocomplete", "off" );
66
+
67
+ this._on( this.element, {
68
+ keydown: function( event ) {
69
+ if ( this.element.prop( "readOnly" ) ) {
70
+ suppressKeyPress = true;
71
+ suppressInput = true;
72
+ suppressKeyPressRepeat = true;
73
+ return;
74
+ }
75
+
76
+ suppressKeyPress = false;
77
+ suppressInput = false;
78
+ suppressKeyPressRepeat = false;
79
+ var keyCode = $.ui.keyCode;
80
+ switch( event.keyCode ) {
81
+ case keyCode.PAGE_UP:
82
+ suppressKeyPress = true;
83
+ this._move( "previousPage", event );
84
+ break;
85
+ case keyCode.PAGE_DOWN:
86
+ suppressKeyPress = true;
87
+ this._move( "nextPage", event );
88
+ break;
89
+ case keyCode.UP:
90
+ suppressKeyPress = true;
91
+ this._keyEvent( "previous", event );
92
+ break;
93
+ case keyCode.DOWN:
94
+ suppressKeyPress = true;
95
+ this._keyEvent( "next", event );
96
+ break;
97
+ case keyCode.ENTER:
98
+ case keyCode.NUMPAD_ENTER:
99
+ // when menu is open and has focus
100
+ if ( this.menu.active ) {
101
+ // #6055 - Opera still allows the keypress to occur
102
+ // which causes forms to submit
103
+ suppressKeyPress = true;
104
+ event.preventDefault();
105
+ this.menu.select( event );
106
+ }
107
+ break;
108
+ case keyCode.TAB:
109
+ if ( this.menu.active ) {
110
+ this.menu.select( event );
111
+ }
112
+ break;
113
+ case keyCode.ESCAPE:
114
+ if ( this.menu.element.is( ":visible" ) ) {
115
+ this._value( this.term );
116
+ this.close( event );
117
+ // Different browsers have different default behavior for escape
118
+ // Single press can mean undo or clear
119
+ // Double press in IE means clear the whole form
120
+ event.preventDefault();
121
+ }
122
+ break;
123
+ default:
124
+ suppressKeyPressRepeat = true;
125
+ // search timeout should be triggered before the input value is changed
126
+ this._searchTimeout( event );
127
+ break;
128
+ }
129
+ },
130
+ keypress: function( event ) {
131
+ if ( suppressKeyPress ) {
132
+ suppressKeyPress = false;
133
+ event.preventDefault();
134
+ return;
135
+ }
136
+ if ( suppressKeyPressRepeat ) {
137
+ return;
138
+ }
139
+
140
+ // replicate some key handlers to allow them to repeat in Firefox and Opera
141
+ var keyCode = $.ui.keyCode;
142
+ switch( event.keyCode ) {
143
+ case keyCode.PAGE_UP:
144
+ this._move( "previousPage", event );
145
+ break;
146
+ case keyCode.PAGE_DOWN:
147
+ this._move( "nextPage", event );
148
+ break;
149
+ case keyCode.UP:
150
+ this._keyEvent( "previous", event );
151
+ break;
152
+ case keyCode.DOWN:
153
+ this._keyEvent( "next", event );
154
+ break;
155
+ }
156
+ },
157
+ input: function( event ) {
158
+ if ( suppressInput ) {
159
+ suppressInput = false;
160
+ event.preventDefault();
161
+ return;
162
+ }
163
+ this._searchTimeout( event );
164
+ },
165
+ focus: function() {
166
+ this.selectedItem = null;
167
+ this.previous = this._value();
168
+ },
169
+ blur: function( event ) {
170
+ if ( this.cancelBlur ) {
171
+ delete this.cancelBlur;
172
+ return;
173
+ }
174
+
175
+ clearTimeout( this.searching );
176
+ this.close( event );
177
+ this._change( event );
178
+ }
179
+ });
180
+
181
+ this._initSource();
182
+ this.menu = $( "<ul>" )
183
+ .addClass( "ui-autocomplete" )
184
+ .appendTo( this.document.find( this.options.appendTo || "body" )[ 0 ] )
185
+ .menu({
186
+ // custom key handling for now
187
+ input: $(),
188
+ // disable ARIA support, the live region takes care of that
189
+ role: null
190
+ })
191
+ .zIndex( this.element.zIndex() + 1 )
192
+ .hide()
193
+ .data( "menu" );
194
+
195
+ this._on( this.menu.element, {
196
+ mousedown: function( event ) {
197
+ // prevent moving focus out of the text field
198
+ event.preventDefault();
199
+
200
+ // IE doesn't prevent moving focus even with event.preventDefault()
201
+ // so we set a flag to know when we should ignore the blur event
202
+ this.cancelBlur = true;
203
+ this._delay(function() {
204
+ delete this.cancelBlur;
205
+ });
206
+
207
+ // clicking on the scrollbar causes focus to shift to the body
208
+ // but we can't detect a mouseup or a click immediately afterward
209
+ // so we have to track the next mousedown and close the menu if
210
+ // the user clicks somewhere outside of the autocomplete
211
+ var menuElement = this.menu.element[ 0 ];
212
+ if ( !$( event.target ).closest( ".ui-menu-item" ).length ) {
213
+ this._delay(function() {
214
+ var that = this;
215
+ this.document.one( "mousedown", function( event ) {
216
+ if ( event.target !== that.element[ 0 ] &&
217
+ event.target !== menuElement &&
218
+ !$.contains( menuElement, event.target ) ) {
219
+ that.close();
220
+ }
221
+ });
222
+ });
223
+ }
224
+ },
225
+ menufocus: function( event, ui ) {
226
+ // #7024 - Prevent accidental activation of menu items in Firefox
227
+ if ( this.isNewMenu ) {
228
+ this.isNewMenu = false;
229
+ if ( event.originalEvent && /^mouse/.test( event.originalEvent.type ) ) {
230
+ this.menu.blur();
231
+
232
+ this.document.one( "mousemove", function() {
233
+ $( event.target ).trigger( event.originalEvent );
234
+ });
235
+
236
+ return;
237
+ }
238
+ }
239
+
240
+ // back compat for _renderItem using item.autocomplete, via #7810
241
+ // TODO remove the fallback, see #8156
242
+ var item = ui.item.data( "ui-autocomplete-item" ) || ui.item.data( "item.autocomplete" );
243
+ if ( false !== this._trigger( "focus", event, { item: item } ) ) {
244
+ // use value to match what will end up in the input, if it was a key event
245
+ if ( event.originalEvent && /^key/.test( event.originalEvent.type ) ) {
246
+ this._value( item.value );
247
+ }
248
+ } else {
249
+ // Normally the input is populated with the item's value as the
250
+ // menu is navigated, causing screen readers to notice a change and
251
+ // announce the item. Since the focus event was canceled, this doesn't
252
+ // happen, so we update the live region so that screen readers can
253
+ // still notice the change and announce it.
254
+ this.liveRegion.text( item.value );
255
+ }
256
+ },
257
+ menuselect: function( event, ui ) {
258
+ // back compat for _renderItem using item.autocomplete, via #7810
259
+ // TODO remove the fallback, see #8156
260
+ var item = ui.item.data( "ui-autocomplete-item" ) || ui.item.data( "item.autocomplete" ),
261
+ previous = this.previous;
262
+
263
+ // only trigger when focus was lost (click on menu)
264
+ if ( this.element[0] !== this.document[0].activeElement ) {
265
+ this.element.focus();
266
+ this.previous = previous;
267
+ // #6109 - IE triggers two focus events and the second
268
+ // is asynchronous, so we need to reset the previous
269
+ // term synchronously and asynchronously :-(
270
+ this._delay(function() {
271
+ this.previous = previous;
272
+ this.selectedItem = item;
273
+ });
274
+ }
275
+
276
+ if ( false !== this._trigger( "select", event, { item: item } ) ) {
277
+ this._value( item.value );
278
+ }
279
+ // reset the term after the select event
280
+ // this allows custom select handling to work properly
281
+ this.term = this._value();
282
+
283
+ this.close( event );
284
+ this.selectedItem = item;
285
+ }
286
+ });
287
+
288
+ this.liveRegion = $( "<span>", {
289
+ role: "status",
290
+ "aria-live": "polite"
291
+ })
292
+ .addClass( "ui-helper-hidden-accessible" )
293
+ .insertAfter( this.element );
294
+
295
+ if ( $.fn.bgiframe ) {
296
+ this.menu.element.bgiframe();
297
+ }
298
+
299
+ // turning off autocomplete prevents the browser from remembering the
300
+ // value when navigating through history, so we re-enable autocomplete
301
+ // if the page is unloaded before the widget is destroyed. #7790
302
+ this._on( this.window, {
303
+ beforeunload: function() {
304
+ this.element.removeAttr( "autocomplete" );
305
+ }
306
+ });
307
+ },
308
+
309
+ _destroy: function() {
310
+ clearTimeout( this.searching );
311
+ this.element
312
+ .removeClass( "ui-autocomplete-input" )
313
+ .removeAttr( "autocomplete" );
314
+ this.menu.element.remove();
315
+ this.liveRegion.remove();
316
+ },
317
+
318
+ _setOption: function( key, value ) {
319
+ this._super( key, value );
320
+ if ( key === "source" ) {
321
+ this._initSource();
322
+ }
323
+ if ( key === "appendTo" ) {
324
+ this.menu.element.appendTo( this.document.find( value || "body" )[0] );
325
+ }
326
+ if ( key === "disabled" && value && this.xhr ) {
327
+ this.xhr.abort();
328
+ }
329
+ },
330
+
331
+ _isMultiLine: function() {
332
+ // Textareas are always multi-line
333
+ if ( this.element.is( "textarea" ) ) {
334
+ return true;
335
+ }
336
+ // Inputs are always single-line, even if inside a contentEditable element
337
+ // IE also treats inputs as contentEditable
338
+ if ( this.element.is( "input" ) ) {
339
+ return false;
340
+ }
341
+ // All other element types are determined by whether or not they're contentEditable
342
+ return this.element.prop( "isContentEditable" );
343
+ },
344
+
345
+ _initSource: function() {
346
+ var array, url,
347
+ that = this;
348
+ if ( $.isArray(this.options.source) ) {
349
+ array = this.options.source;
350
+ this.source = function( request, response ) {
351
+ response( $.ui.autocomplete.filter( array, request.term ) );
352
+ };
353
+ } else if ( typeof this.options.source === "string" ) {
354
+ url = this.options.source;
355
+ this.source = function( request, response ) {
356
+ if ( that.xhr ) {
357
+ that.xhr.abort();
358
+ }
359
+ that.xhr = $.ajax({
360
+ url: url,
361
+ data: request,
362
+ dataType: "json",
363
+ success: function( data ) {
364
+ response( data );
365
+ },
366
+ error: function() {
367
+ response( [] );
368
+ }
369
+ });
370
+ };
371
+ } else {
372
+ this.source = this.options.source;
373
+ }
374
+ },
375
+
376
+ _searchTimeout: function( event ) {
377
+ clearTimeout( this.searching );
378
+ this.searching = this._delay(function() {
379
+ // only search if the value has changed
380
+ if ( this.term !== this._value() ) {
381
+ this.selectedItem = null;
382
+ this.search( null, event );
383
+ }
384
+ }, this.options.delay );
385
+ },
386
+
387
+ search: function( value, event ) {
388
+ value = value != null ? value : this._value();
389
+
390
+ // always save the actual value, not the one passed as an argument
391
+ this.term = this._value();
392
+
393
+ if ( value.length < this.options.minLength ) {
394
+ return this.close( event );
395
+ }
396
+
397
+ if ( this._trigger( "search", event ) === false ) {
398
+ return;
399
+ }
400
+
401
+ return this._search( value );
402
+ },
403
+
404
+ _search: function( value ) {
405
+ this.pending++;
406
+ this.element.addClass( "ui-autocomplete-loading" );
407
+ this.cancelSearch = false;
408
+
409
+ this.source( { term: value }, this._response() );
410
+ },
411
+
412
+ _response: function() {
413
+ var that = this,
414
+ index = ++requestIndex;
415
+
416
+ return function( content ) {
417
+ if ( index === requestIndex ) {
418
+ that.__response( content );
419
+ }
420
+
421
+ that.pending--;
422
+ if ( !that.pending ) {
423
+ that.element.removeClass( "ui-autocomplete-loading" );
424
+ }
425
+ };
426
+ },
427
+
428
+ __response: function( content ) {
429
+ if ( content ) {
430
+ content = this._normalize( content );
431
+ }
432
+ this._trigger( "response", null, { content: content } );
433
+ if ( !this.options.disabled && content && content.length && !this.cancelSearch ) {
434
+ this._suggest( content );
435
+ this._trigger( "open" );
436
+ } else {
437
+ // use ._close() instead of .close() so we don't cancel future searches
438
+ this._close();
439
+ }
440
+ },
441
+
442
+ close: function( event ) {
443
+ this.cancelSearch = true;
444
+ this._close( event );
445
+ },
446
+
447
+ _close: function( event ) {
448
+ if ( this.menu.element.is( ":visible" ) ) {
449
+ this.menu.element.hide();
450
+ this.menu.blur();
451
+ this.isNewMenu = true;
452
+ this._trigger( "close", event );
453
+ }
454
+ },
455
+
456
+ _change: function( event ) {
457
+ if ( this.previous !== this._value() ) {
458
+ this._trigger( "change", event, { item: this.selectedItem } );
459
+ }
460
+ },
461
+
462
+ _normalize: function( items ) {
463
+ // assume all items have the right format when the first item is complete
464
+ if ( items.length && items[0].label && items[0].value ) {
465
+ return items;
466
+ }
467
+ return $.map( items, function( item ) {
468
+ if ( typeof item === "string" ) {
469
+ return {
470
+ label: item,
471
+ value: item
472
+ };
473
+ }
474
+ return $.extend({
475
+ label: item.label || item.value,
476
+ value: item.value || item.label
477
+ }, item );
478
+ });
479
+ },
480
+
481
+ _suggest: function( items ) {
482
+ var ul = this.menu.element
483
+ .empty()
484
+ .zIndex( this.element.zIndex() + 1 );
485
+ this._renderMenu( ul, items );
486
+ this.menu.refresh();
487
+
488
+ // size and position menu
489
+ ul.show();
490
+ this._resizeMenu();
491
+ ul.position( $.extend({
492
+ of: this.element
493
+ }, this.options.position ));
494
+
495
+ if ( this.options.autoFocus ) {
496
+ this.menu.next();
497
+ }
498
+ },
499
+
500
+ _resizeMenu: function() {
501
+ var ul = this.menu.element;
502
+ ul.outerWidth( Math.max(
503
+ // Firefox wraps long text (possibly a rounding bug)
504
+ // so we add 1px to avoid the wrapping (#7513)
505
+ ul.width( "" ).outerWidth() + 1,
506
+ this.element.outerWidth()
507
+ ) );
508
+ },
509
+
510
+ _renderMenu: function( ul, items ) {
511
+ var that = this;
512
+ $.each( items, function( index, item ) {
513
+ that._renderItemData( ul, item );
514
+ });
515
+ },
516
+
517
+ _renderItemData: function( ul, item ) {
518
+ return this._renderItem( ul, item ).data( "ui-autocomplete-item", item );
519
+ },
520
+
521
+ _renderItem: function( ul, item ) {
522
+ return $( "<li>" )
523
+ .append( $( "<a>" ).text( item.label ) )
524
+ .appendTo( ul );
525
+ },
526
+
527
+ _move: function( direction, event ) {
528
+ if ( !this.menu.element.is( ":visible" ) ) {
529
+ this.search( null, event );
530
+ return;
531
+ }
532
+ if ( this.menu.isFirstItem() && /^previous/.test( direction ) ||
533
+ this.menu.isLastItem() && /^next/.test( direction ) ) {
534
+ this._value( this.term );
535
+ this.menu.blur();
536
+ return;
537
+ }
538
+ this.menu[ direction ]( event );
539
+ },
540
+
541
+ widget: function() {
542
+ return this.menu.element;
543
+ },
544
+
545
+ _value: function() {
546
+ return this.valueMethod.apply( this.element, arguments );
547
+ },
548
+
549
+ _keyEvent: function( keyEvent, event ) {
550
+ if ( !this.isMultiLine || this.menu.element.is( ":visible" ) ) {
551
+ this._move( keyEvent, event );
552
+
553
+ // prevents moving cursor to beginning/end of the text field in some browsers
554
+ event.preventDefault();
555
+ }
556
+ }
557
+ });
558
+
559
+ $.extend( $.ui.autocomplete, {
560
+ escapeRegex: function( value ) {
561
+ return value.replace(/[\-\[\]{}()*+?.,\\\^$|#\s]/g, "\\$&");
562
+ },
563
+ filter: function(array, term) {
564
+ var matcher = new RegExp( $.ui.autocomplete.escapeRegex(term), "i" );
565
+ return $.grep( array, function(value) {
566
+ return matcher.test( value.label || value.value || value );
567
+ });
568
+ }
569
+ });
570
+
571
+
572
+ // live region extension, adding a `messages` option
573
+ // NOTE: This is an experimental API. We are still investigating
574
+ // a full solution for string manipulation and internationalization.
575
+ $.widget( "ui.autocomplete", $.ui.autocomplete, {
576
+ options: {
577
+ messages: {
578
+ noResults: "No search results.",
579
+ results: function( amount ) {
580
+ return amount + ( amount > 1 ? " results are" : " result is" ) +
581
+ " available, use up and down arrow keys to navigate.";
582
+ }
583
+ }
584
+ },
585
+
586
+ __response: function( content ) {
587
+ var message;
588
+ this._superApply( arguments );
589
+ if ( this.options.disabled || this.cancelSearch ) {
590
+ return;
591
+ }
592
+ if ( content && content.length ) {
593
+ message = this.options.messages.results( content.length );
594
+ } else {
595
+ message = this.options.messages.noResults;
596
+ }
597
+ this.liveRegion.text( message );
598
+ }
599
+ });
600
+
601
+
602
+ }( jQuery ));