curation_concerns 0.1.0 → 0.2.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (472) hide show
  1. checksums.yaml +4 -4
  2. data/.gitignore +7 -9
  3. data/.rspec +1 -1
  4. data/.rubocop.yml +185 -0
  5. data/.travis.yml +0 -10
  6. data/CONTRIBUTING.md +117 -0
  7. data/Gemfile +5 -2
  8. data/README.md +18 -11
  9. data/Rakefile +23 -11
  10. data/VERSION +1 -1
  11. data/app/assets/images/audio.png +0 -0
  12. data/app/assets/images/loading.gif +0 -0
  13. data/app/assets/images/progressbar.gif +0 -0
  14. data/app/assets/javascripts/curation_concerns/application.js +2 -8
  15. data/app/assets/javascripts/curation_concerns/curation_concerns.js +1 -15
  16. data/app/assets/javascripts/curation_concerns/facet_mine.js +4 -10
  17. data/app/assets/javascripts/curation_concerns/fileupload.js +6 -0
  18. data/app/assets/javascripts/curation_concerns/uploader.js +183 -0
  19. data/app/assets/stylesheets/curation_concerns/_curation_concerns.scss +3 -0
  20. data/app/assets/stylesheets/curation_concerns/_positioning.scss +6 -0
  21. data/app/assets/stylesheets/curation_concerns/fileupload/jquery.fileupload-ui.scss +86 -0
  22. data/app/assets/stylesheets/curation_concerns/fileupload/thumbnail-scaling.css +3 -0
  23. data/app/assets/stylesheets/curation_concerns/fileupload.scss +48 -0
  24. data/app/assets/stylesheets/curation_concerns/modules/attributes.scss +10 -0
  25. data/app/assets/stylesheets/curation_concerns/modules/embargoes.scss +1 -1
  26. data/app/assets/stylesheets/curation_concerns/modules/forms.scss +0 -10
  27. data/app/assets/stylesheets/curation_concerns/modules/search_results.scss +7 -8
  28. data/app/controllers/concerns/curation_concerns/api.rb +77 -0
  29. data/app/controllers/concerns/curation_concerns/application_controller_behavior.rb +30 -12
  30. data/app/controllers/concerns/curation_concerns/catalog_controller.rb +9 -276
  31. data/app/controllers/concerns/curation_concerns/collections_controller_behavior.rb +51 -40
  32. data/app/controllers/concerns/curation_concerns/curation_concern_controller.rb +60 -30
  33. data/app/controllers/concerns/curation_concerns/download_behavior.rb +51 -37
  34. data/app/controllers/concerns/curation_concerns/embargoes_controller_behavior.rb +29 -29
  35. data/app/controllers/concerns/curation_concerns/file_sets_controller_behavior.rb +198 -0
  36. data/app/controllers/concerns/curation_concerns/leases_controller_behavior.rb +27 -20
  37. data/app/controllers/concerns/curation_concerns/manages_embargoes.rb +2 -7
  38. data/app/controllers/concerns/curation_concerns/parent_container.rb +20 -4
  39. data/app/controllers/concerns/curation_concerns/single_use_links_controller_behavior.rb +48 -0
  40. data/app/controllers/concerns/curation_concerns/single_use_links_viewer_controller_behavior.rb +75 -0
  41. data/app/controllers/concerns/curation_concerns/themed_layout_controller.rb +0 -1
  42. data/app/controllers/concerns/curation_concerns/upload_sets_controller_behavior.rb +38 -0
  43. data/app/controllers/concerns/curation_concerns/welcome_controller_behavior.rb +8 -0
  44. data/app/controllers/concerns/curation_concerns/without_namespace.rb +2 -1
  45. data/app/controllers/curation_concerns/classify_concerns_controller.rb +9 -9
  46. data/app/controllers/curation_concerns/file_sets_controller.rb +5 -0
  47. data/app/controllers/curation_concerns/permissions_controller.rb +2 -3
  48. data/app/controllers/curation_concerns/single_use_links_controller.rb +5 -0
  49. data/app/controllers/curation_concerns/single_use_links_viewer_controller.rb +21 -0
  50. data/app/controllers/downloads_controller.rb +0 -1
  51. data/app/controllers/embargoes_controller.rb +0 -2
  52. data/app/controllers/leases_controller.rb +0 -2
  53. data/app/controllers/registrations_controller.rb +1 -2
  54. data/app/controllers/upload_sets_controller.rb +3 -0
  55. data/app/controllers/welcome_controller.rb +3 -0
  56. data/app/forms/curation_concerns/forms/collection_edit_form.rb +18 -2
  57. data/app/forms/curation_concerns/forms/file_set_edit_form.rb +15 -0
  58. data/app/forms/curation_concerns/forms/work_form.rb +57 -0
  59. data/app/helpers/curation_concerns/ability_helper.rb +24 -24
  60. data/app/helpers/curation_concerns/catalog_helper.rb +9 -8
  61. data/app/helpers/curation_concerns/collections_helper.rb +9 -12
  62. data/app/helpers/curation_concerns/embargo_helper.rb +0 -2
  63. data/app/helpers/curation_concerns/file_set_helper.rb +31 -0
  64. data/app/helpers/curation_concerns/lease_helper.rb +0 -3
  65. data/app/helpers/curation_concerns/main_app_helpers.rb +1 -3
  66. data/app/helpers/curation_concerns/render_constraints_helper.rb +5 -5
  67. data/app/helpers/curation_concerns/search_paths_helper.rb +5 -7
  68. data/app/helpers/curation_concerns/title_helper.rb +3 -7
  69. data/app/helpers/curation_concerns/url_helper.rb +4 -6
  70. data/app/inputs/multifile_input.rb +8 -0
  71. data/app/jobs/visibility_copy_job.rb +22 -0
  72. data/app/presenters/curation_concerns/collection_presenter.rb +14 -32
  73. data/app/presenters/curation_concerns/embargo_presenter.rb +26 -0
  74. data/app/presenters/curation_concerns/file_set_presenter.rb +34 -0
  75. data/app/presenters/curation_concerns/lease_presenter.rb +30 -0
  76. data/app/presenters/curation_concerns/model_proxy.rb +27 -0
  77. data/app/presenters/curation_concerns/permission_badge.rb +61 -0
  78. data/app/presenters/curation_concerns/presenter_factory.rb +45 -0
  79. data/app/presenters/curation_concerns/presents_attributes.rb +25 -0
  80. data/app/presenters/curation_concerns/version_list_presenter.rb +18 -0
  81. data/app/presenters/curation_concerns/version_presenter.rb +27 -0
  82. data/app/presenters/curation_concerns/work_show_presenter.rb +33 -0
  83. data/app/renderers/curation_concerns/attribute_renderer.rb +75 -0
  84. data/app/search_builders/curation_concerns/deactivated_embargo_search_builder.rb +10 -0
  85. data/app/search_builders/curation_concerns/deactivated_lease_search_builder.rb +10 -0
  86. data/app/search_builders/curation_concerns/embargo_search_builder.rb +23 -0
  87. data/app/search_builders/curation_concerns/expired_embargo_search_builder.rb +11 -0
  88. data/app/search_builders/curation_concerns/expired_lease_search_builder.rb +11 -0
  89. data/app/search_builders/curation_concerns/lease_search_builder.rb +23 -0
  90. data/app/search_builders/curation_concerns/search_builder.rb +10 -16
  91. data/app/services/curation_concerns/curation_concern.rb +0 -5
  92. data/app/services/curation_concerns/embargo_service.rb +26 -4
  93. data/app/services/curation_concerns/lease_service.rb +14 -5
  94. data/app/services/curation_concerns/parent_service.rb +19 -0
  95. data/app/services/curation_concerns/restriction_service.rb +24 -0
  96. data/app/services/rights_service.rb +14 -0
  97. data/app/views/catalog/_action_menu_partials/_collection.html.erb +1 -1
  98. data/app/views/catalog/_action_menu_partials/_default.html.erb +5 -3
  99. data/app/views/catalog/_document_list.html.erb +1 -1
  100. data/app/views/catalog/index.html.erb +1 -35
  101. data/app/views/collections/_edit_descriptions.html.erb +3 -4
  102. data/app/views/collections/_form.html.erb +1 -1
  103. data/app/views/collections/_form_permission.html.erb +1 -1
  104. data/app/views/collections/_search_form.html.erb +10 -0
  105. data/app/views/collections/_show_actions.html.erb +3 -3
  106. data/app/views/collections/_sort_and_per_page.html.erb +2 -2
  107. data/app/views/collections/show.html.erb +6 -6
  108. data/app/views/curation_concerns/base/_attribute_rows.html.erb +7 -0
  109. data/app/views/curation_concerns/base/_attributes.html.erb +6 -13
  110. data/app/views/curation_concerns/base/_form.html.erb +4 -5
  111. data/app/views/curation_concerns/base/_form_descriptive_fields.erb +2 -4
  112. data/app/views/curation_concerns/base/_form_files_and_links.html.erb +3 -5
  113. data/app/views/curation_concerns/base/_form_permission.html.erb +13 -26
  114. data/app/views/curation_concerns/base/_form_permission_note.html.erb +15 -0
  115. data/app/views/curation_concerns/base/_form_permission_under_embargo.html.erb +2 -2
  116. data/app/views/curation_concerns/base/_form_permission_under_lease.html.erb +2 -2
  117. data/app/views/curation_concerns/base/_form_representative_image.html.erb +16 -4
  118. data/app/views/curation_concerns/base/_form_rights.html.erb +17 -0
  119. data/app/views/curation_concerns/base/_form_supplementary_fields.html.erb +4 -9
  120. data/app/views/curation_concerns/base/_related_files.html.erb +4 -4
  121. data/app/views/curation_concerns/base/_representative_media.html.erb +2 -4
  122. data/app/views/curation_concerns/base/_versioning.html.erb +23 -0
  123. data/app/views/curation_concerns/base/show.html.erb +13 -10
  124. data/app/views/curation_concerns/base/show.json.jbuilder +1 -0
  125. data/app/views/curation_concerns/base/versions.html.erb +6 -0
  126. data/app/views/curation_concerns/file_sets/_actions.html.erb +16 -0
  127. data/app/views/curation_concerns/file_sets/_file_set.html.erb +12 -0
  128. data/app/views/curation_concerns/{generic_files → file_sets}/_form.html.erb +7 -7
  129. data/app/views/curation_concerns/file_sets/_multiple_upload.html.erb +3 -0
  130. data/app/views/curation_concerns/{generic_files → file_sets}/edit.html.erb +0 -0
  131. data/app/views/curation_concerns/file_sets/jq_upload.json.jbuilder +8 -0
  132. data/app/views/curation_concerns/file_sets/media_display/_audio.html.erb +6 -0
  133. data/app/views/curation_concerns/file_sets/media_display/_default.html.erb +4 -0
  134. data/app/views/curation_concerns/file_sets/media_display/_image.html.erb +8 -0
  135. data/app/views/curation_concerns/file_sets/media_display/_office_document.html.erb +7 -0
  136. data/app/views/curation_concerns/file_sets/media_display/_pdf.html.erb +7 -0
  137. data/app/views/curation_concerns/file_sets/media_display/_video.html.erb +6 -0
  138. data/app/views/curation_concerns/file_sets/show.html.erb +15 -0
  139. data/app/views/curation_concerns/file_sets/show.json.jbuilder +1 -0
  140. data/app/views/curation_concerns/file_sets/upload/_alerts.html.erb +19 -0
  141. data/app/views/curation_concerns/file_sets/upload/_form.html.erb +6 -0
  142. data/app/views/curation_concerns/file_sets/upload/_form_fields.html.erb +45 -0
  143. data/app/views/curation_concerns/file_sets/upload/_script_templates.html.erb +61 -0
  144. data/app/views/curation_concerns/single_use_links/new_download.html.erb +5 -0
  145. data/app/views/curation_concerns/single_use_links/new_show.html.erb +5 -0
  146. data/app/views/curation_concerns/single_use_links_viewer/show.html.erb +10 -0
  147. data/app/views/error/single_use_error.html.erb +19 -0
  148. data/app/views/layouts/error.html.erb +33 -0
  149. data/app/views/leases/_list_expired_active_leases.html.erb +6 -1
  150. data/app/views/records/_rights_modal.html.erb +1 -0
  151. data/app/views/records/edit_fields/_default.html.erb +5 -0
  152. data/app/views/records/show_fields/_default.html.erb +6 -0
  153. data/app/views/shared/_add_content.html.erb +2 -14
  154. data/app/views/shared/_add_works.html.erb +14 -0
  155. data/app/views/shared/_my_actions.html.erb +9 -1
  156. data/app/views/shared/_site_actions.html.erb +1 -1
  157. data/app/views/shared/_site_search.html.erb +7 -7
  158. data/app/views/upload_sets/_edit.js.erb +15 -0
  159. data/app/views/upload_sets/_metadata.html.erb +50 -0
  160. data/app/views/upload_sets/_more_metadata.html.erb +7 -0
  161. data/app/views/upload_sets/edit.html.erb +26 -0
  162. data/app/views/{catalog/_home_text.html.erb → welcome/index.html.erb} +1 -0
  163. data/config/initializers/simple_form.rb +14 -0
  164. data/config/jetty.yml +5 -0
  165. data/config/locales/curation_concerns.en.yml +25 -4
  166. data/config/routes.rb +5 -0
  167. data/curation_concerns.gemspec +4 -6
  168. data/lib/curation_concerns/callbacks/registry.rb +48 -0
  169. data/lib/curation_concerns/callbacks.rb +26 -0
  170. data/lib/curation_concerns/controller_resource.rb +4 -4
  171. data/lib/curation_concerns/engine.rb +4 -2
  172. data/lib/curation_concerns/rails/routes.rb +23 -19
  173. data/lib/curation_concerns/single_use_error.rb +3 -0
  174. data/lib/curation_concerns/spec_support.rb +0 -2
  175. data/lib/curation_concerns/version.rb +1 -1
  176. data/lib/curation_concerns.rb +1 -2
  177. data/lib/generators/curation_concerns/install_generator.rb +34 -30
  178. data/lib/generators/curation_concerns/templates/catalog_controller.rb +236 -0
  179. data/lib/generators/curation_concerns/templates/config/authorities/rights.yml +19 -0
  180. data/lib/generators/curation_concerns/templates/{curation_concerns.css.scss → curation_concerns.scss} +0 -0
  181. data/lib/generators/curation_concerns/work/templates/actor_spec.rb.erb +1 -1
  182. data/lib/generators/curation_concerns/work/templates/controller_spec.rb.erb +1 -1
  183. data/lib/generators/curation_concerns/work/templates/form.rb.erb +8 -0
  184. data/lib/generators/curation_concerns/work/templates/form_spec.rb.erb +10 -0
  185. data/lib/generators/curation_concerns/work/templates/model.rb.erb +2 -2
  186. data/lib/generators/curation_concerns/work/templates/model_spec.rb.erb +1 -1
  187. data/lib/generators/curation_concerns/work/work_generator.rb +31 -26
  188. data/spec/abilities/collection_abilities_spec.rb +13 -13
  189. data/spec/abilities/embargo_and_lease_ability_spec.rb +23 -0
  190. data/spec/abilities/file_set_abilities_spec.rb +67 -0
  191. data/spec/abilities/generic_work_abilities_spec.rb +12 -12
  192. data/spec/actors/curation_concerns/embargo_actor_spec.rb +38 -0
  193. data/spec/actors/curation_concerns/file_set_actor_spec.rb +180 -0
  194. data/spec/actors/curation_concerns/lease_actor_spec.rb +39 -0
  195. data/spec/actors/curation_concerns/manages_embargoes_actor_spec.rb +44 -38
  196. data/spec/actors/curation_concerns/work_actor_spec.rb +121 -63
  197. data/spec/controllers/catalog_controller_spec.rb +30 -32
  198. data/spec/controllers/curation_concerns/classify_concerns_controller_spec.rb +2 -3
  199. data/spec/controllers/curation_concerns/collections_controller_spec.rb +93 -76
  200. data/spec/controllers/curation_concerns/file_sets_controller_json_spec.rb +106 -0
  201. data/spec/controllers/curation_concerns/file_sets_controller_spec.rb +237 -0
  202. data/spec/controllers/curation_concerns/generic_works_controller_json_spec.rb +85 -0
  203. data/spec/controllers/curation_concerns/generic_works_controller_spec.rb +84 -72
  204. data/spec/controllers/curation_concerns/permissions_controller_spec.rb +8 -11
  205. data/spec/controllers/curation_concerns/single_use_links_controller_spec.rb +79 -0
  206. data/spec/controllers/curation_concerns/single_use_links_viewer_controller_spec.rb +74 -0
  207. data/spec/controllers/downloads_controller_spec.rb +49 -24
  208. data/spec/controllers/embargoes_controller_spec.rb +42 -51
  209. data/spec/controllers/leases_controller_spec.rb +53 -42
  210. data/spec/controllers/upload_sets_controller_spec.rb +76 -0
  211. data/spec/controllers/welcome_controller_spec.rb +12 -0
  212. data/spec/factories/collections.rb +5 -1
  213. data/spec/factories/{generic_files.rb → file_sets.rb} +6 -6
  214. data/spec/factories/generic_works.rb +5 -6
  215. data/spec/factories/users.rb +2 -4
  216. data/spec/features/add_file_spec.rb +11 -12
  217. data/spec/features/catalog_search_spec.rb +43 -0
  218. data/spec/features/collection_spec.rb +61 -46
  219. data/spec/features/create_work_spec.rb +26 -19
  220. data/spec/features/embargo_spec.rb +13 -12
  221. data/spec/features/lease_spec.rb +15 -16
  222. data/spec/features/update_file_spec.rb +11 -13
  223. data/spec/features/work_generator_spec.rb +34 -26
  224. data/spec/{helpers/curation_concerns/.keep → fixtures/empty_file.txt} +0 -0
  225. data/spec/fixtures/test.pdf +0 -0
  226. data/spec/forms/collection_edit_form_spec.rb +53 -9
  227. data/spec/forms/file_set_edit_form_spec.rb +53 -0
  228. data/spec/forms/work_form_spec.rb +54 -0
  229. data/spec/helpers/catalog_helper_spec.rb +9 -10
  230. data/spec/helpers/configuration_helper_spec.rb +1 -2
  231. data/spec/helpers/curation_concerns/collections_helper_spec.rb +8 -9
  232. data/spec/helpers/curation_concerns/file_set_helper_spec.rb +61 -0
  233. data/spec/helpers/render_constraints_helper_spec.rb +4 -4
  234. data/spec/helpers/url_helper_spec.rb +8 -7
  235. data/spec/indexers/collection_indexer_spec.rb +14 -0
  236. data/spec/indexers/file_set_indexing_service_spec.rb +69 -0
  237. data/spec/indexers/generic_work_indexing_service_spec.rb +22 -0
  238. data/spec/inputs/multifile_input_spec.rb +32 -0
  239. data/spec/jobs/active_fedora_id_based_job_spec.rb +10 -8
  240. data/spec/jobs/audit_job_spec.rb +28 -20
  241. data/spec/jobs/characterize_job_spec.rb +10 -15
  242. data/spec/jobs/create_derivatives_job_spec.rb +11 -9
  243. data/spec/jobs/import_url_job_spec.rb +14 -21
  244. data/spec/jobs/ingest_file_job_spec.rb +45 -0
  245. data/spec/jobs/ingest_local_file_job_spec.rb +13 -15
  246. data/spec/jobs/upload_set_update_job_spec.rb +30 -0
  247. data/spec/jobs/visibility_copy_job_spec.rb +61 -0
  248. data/spec/lib/curation_concerns/callbacks/registry_spec.rb +54 -0
  249. data/spec/lib/curation_concerns/callbacks_spec.rb +27 -0
  250. data/spec/lib/curation_concerns/messages_spec.rb +29 -30
  251. data/spec/lib/curation_concerns/readable_permissions_spec.rb +18 -20
  252. data/spec/lib/curation_concerns/writable_permissions_spec.rb +2 -4
  253. data/spec/matchers/metadata_field_matchers.rb +1 -1
  254. data/spec/matchers/response_matchers.rb +2 -2
  255. data/spec/matchers.rb +3 -2
  256. data/spec/models/checksum_audit_log_spec.rb +37 -32
  257. data/spec/models/curation_concerns/collection_behavior_spec.rb +50 -37
  258. data/spec/models/curation_concerns/file_set/derivatives_spec.rb +84 -0
  259. data/spec/models/curation_concerns/work_behavior_spec.rb +53 -0
  260. data/spec/models/file_set_spec.rb +601 -0
  261. data/spec/models/generic_work_spec.rb +15 -14
  262. data/spec/models/single_use_link_spec.rb +69 -0
  263. data/spec/models/solr_document_spec.rb +67 -0
  264. data/spec/models/upload_set_spec.rb +39 -0
  265. data/spec/models/user_spec.rb +7 -8
  266. data/spec/presenters/curation_concerns/collection_presenter_spec.rb +8 -24
  267. data/spec/presenters/curation_concerns/file_set_presenter_spec.rb +59 -0
  268. data/spec/presenters/curation_concerns/permission_badge_spec.rb +29 -0
  269. data/spec/presenters/curation_concerns/presenter_factory_spec.rb +29 -0
  270. data/spec/presenters/curation_concerns/version_list_presenter_spec.rb +32 -0
  271. data/spec/presenters/curation_concerns/version_presenter_spec.rb +51 -0
  272. data/spec/presenters/curation_concerns/work_show_presenter_spec.rb +35 -0
  273. data/spec/presenters/embargo_presenter_spec.rb +48 -0
  274. data/spec/presenters/lease_presenter_spec.rb +48 -0
  275. data/spec/renderers/curation_concerns/attribute_renderer_spec.rb +14 -0
  276. data/spec/routing/curation_concerns/routes_spec.rb +38 -12
  277. data/spec/routing/route_spec.rb +38 -39
  278. data/spec/search_builders/curation_concerns/embargo_search_builder_spec.rb +17 -0
  279. data/spec/search_builders/curation_concerns/lease_search_builder_spec.rb +17 -0
  280. data/spec/search_builders/curation_concerns/search_builder_spec.rb +60 -0
  281. data/spec/services/derivative_path_spec.rb +16 -0
  282. data/spec/services/embargo_service_spec.rb +15 -14
  283. data/spec/services/file_set_audit_service_spec.rb +71 -0
  284. data/spec/services/lease_service_spec.rb +13 -13
  285. data/spec/services/lock_manager_spec.rb +12 -0
  286. data/spec/services/parent_service_spec.rb +13 -0
  287. data/spec/services/persist_derivatives_spec.rb +24 -0
  288. data/spec/services/persist_directly_contained_output_file_service_spec.rb +14 -0
  289. data/spec/services/repository_audit_service_spec.rb +8 -7
  290. data/spec/services/rights_service_spec.rb +17 -0
  291. data/spec/services/thumbnail_path_service_spec.rb +43 -0
  292. data/spec/services/versioning_service_spec.rb +8 -9
  293. data/spec/spec_helper.rb +21 -13
  294. data/spec/support/curation_concerns/factory_helpers.rb +1 -0
  295. data/spec/support/features/fixture_file_upload.rb +3 -1
  296. data/spec/support/features/session_helpers.rb +3 -4
  297. data/spec/support/features.rb +1 -4
  298. data/spec/support/input_support.rb +11 -0
  299. data/spec/support/matchers/api_responses.rb +22 -0
  300. data/spec/support/shared/shared_examples_has_dc_metadata.rb +0 -2
  301. data/spec/support/shared/shared_examples_is_embargoable.rb +1 -3
  302. data/spec/support/shared/shared_examples_with_access_rights.rb +13 -16
  303. data/spec/tasks/rake_spec.rb +9 -11
  304. data/spec/test_app_templates/Gemfile.extra +4 -1
  305. data/spec/test_app_templates/lib/generators/test_app_generator.rb +3 -35
  306. data/spec/views/catalog/index.html.erb_spec.rb +7 -10
  307. data/spec/views/curation_concerns/base/_attributes.html.erb_spec.rb +9 -6
  308. data/spec/views/curation_concerns/base/_form_permission.html.erb_spec.rb +13 -0
  309. data/spec/views/curation_concerns/base/show.html.erb_spec.rb +35 -15
  310. data/spec/views/curation_concerns/base/show.json.jbuilder_spec.rb +21 -0
  311. data/spec/views/curation_concerns/file_sets/_file_set.html.erb_spec.rb +37 -0
  312. data/spec/views/curation_concerns/file_sets/show.json.jbuilder_spec.rb +21 -0
  313. data/spec/views/curation_concerns/permissions/confirm.html.erb_spec.rb +6 -6
  314. data/spec/views/error/single_use_error.html.erb_spec.rb +8 -0
  315. data/spec/views/layouts/error.html.erb_spec.rb +8 -0
  316. data/spec/views/shared/_add_content.html.erb_spec.rb +33 -20
  317. data/spec/views/shared/_my_actions.html.erb_spec.rb +18 -6
  318. data/spec/views/single_use_links/new_download.html.erb_spec.rb +29 -0
  319. data/spec/views/single_use_links_viewer/show.html.erb_spec.rb +32 -0
  320. data/tasks/jetty.rake +1 -1
  321. data/vendor/assets/javascrips/fileupload/jquery.fileupload-process.js +175 -0
  322. data/vendor/assets/javascrips/fileupload/jquery.fileupload-ui.js +710 -0
  323. data/vendor/assets/javascrips/fileupload/jquery.fileupload-validate.js +122 -0
  324. data/vendor/assets/javascrips/fileupload/jquery.fileupload.js +1477 -0
  325. data/vendor/assets/javascrips/fileupload/locale.js +27 -0
  326. data/vendor/assets/javascrips/fileupload/tmpl.js +87 -0
  327. metadata +242 -213
  328. data/app/assets/javascripts/curation_concerns/help_modal.js +0 -36
  329. data/app/assets/javascripts/curation_concerns/link_groups.js.coffee +0 -123
  330. data/app/assets/javascripts/curation_concerns/link_users.js.coffee +0 -126
  331. data/app/assets/javascripts/curation_concerns/proxy_rights.js.coffee +0 -95
  332. data/app/assets/javascripts/curation_concerns/proxy_submission.js +0 -23
  333. data/app/assets/javascripts/curation_concerns/select_works.js.coffee +0 -20
  334. data/app/controllers/catalog_controller.rb +0 -3
  335. data/app/controllers/concerns/curation_concerns/generic_files_controller_behavior.rb +0 -149
  336. data/app/controllers/curation_concerns/generic_files_controller.rb +0 -13
  337. data/app/datastreams/curation_concerns/generic_work_rdf_properties.rb +0 -57
  338. data/app/datastreams/generic_work_metadata.rb +0 -3
  339. data/app/forms/curation_concerns/forms/generic_file_edit_form.rb +0 -15
  340. data/app/forms/curation_concerns/forms/generic_work_edit_form.rb +0 -9
  341. data/app/helpers/curation_concerns/attribute_helper.rb +0 -67
  342. data/app/helpers/curation_concerns/generic_file_helper.rb +0 -19
  343. data/app/helpers/curation_concerns/thumbnail_helper.rb +0 -11
  344. data/app/presenters/curation_concerns/generic_file_presenter.rb +0 -14
  345. data/app/presenters/curation_concerns/generic_work_presenter.rb +0 -13
  346. data/app/views/catalog/_index_default.html.erb +0 -17
  347. data/app/views/collections/_form_representative_image.html.erb +0 -13
  348. data/app/views/collections/_identifier_and_action.html.erb +0 -15
  349. data/app/views/curation_concerns/base/_form_content_license.html.erb +0 -16
  350. data/app/views/curation_concerns/base/_form_editors.html.erb +0 -15
  351. data/app/views/curation_concerns/generic_files/_actions.html.erb +0 -16
  352. data/app/views/curation_concerns/generic_files/_generic_file.html.erb +0 -12
  353. data/app/views/curation_concerns/generic_files/_media_display.html.erb +0 -19
  354. data/app/views/curation_concerns/generic_files/jq_upload.json.jbuilder +0 -8
  355. data/app/views/curation_concerns/generic_files/show.html.erb +0 -15
  356. data/app/workers/visibility_copy_worker.rb +0 -30
  357. data/curation_concerns-models/.gitignore +0 -17
  358. data/curation_concerns-models/Gemfile +0 -4
  359. data/curation_concerns-models/LICENSE.md +0 -177
  360. data/curation_concerns-models/README.md +0 -42
  361. data/curation_concerns-models/Rakefile +0 -1
  362. data/curation_concerns-models/app/actors/concerns/curation_concerns/manages_embargoes_actor.rb +0 -99
  363. data/curation_concerns-models/app/actors/curation_concerns/base_actor.rb +0 -90
  364. data/curation_concerns-models/app/actors/curation_concerns/generic_file_actor.rb +0 -150
  365. data/curation_concerns-models/app/actors/curation_concerns/work_actor_behavior.rb +0 -88
  366. data/curation_concerns-models/app/jobs/active_fedora_id_based_job.rb +0 -22
  367. data/curation_concerns-models/app/jobs/active_fedora_pid_based_job.rb +0 -6
  368. data/curation_concerns-models/app/jobs/audit_job.rb +0 -58
  369. data/curation_concerns-models/app/jobs/characterize_job.rb +0 -11
  370. data/curation_concerns-models/app/jobs/copy_permissions_job.rb +0 -24
  371. data/curation_concerns-models/app/jobs/create_derivatives_job.rb +0 -15
  372. data/curation_concerns-models/app/jobs/import_url_job.rb +0 -56
  373. data/curation_concerns-models/app/jobs/ingest_local_file_job.rb +0 -48
  374. data/curation_concerns-models/app/jobs/resolrize_job.rb +0 -9
  375. data/curation_concerns-models/app/models/checksum_audit_log.rb +0 -21
  376. data/curation_concerns-models/app/models/concerns/curation_concerns/ability.rb +0 -34
  377. data/curation_concerns-models/app/models/concerns/curation_concerns/basic_metadata.rb +0 -87
  378. data/curation_concerns-models/app/models/concerns/curation_concerns/collection_behavior.rb +0 -47
  379. data/curation_concerns-models/app/models/concerns/curation_concerns/generic_file/belongs_to_works.rb +0 -53
  380. data/curation_concerns-models/app/models/concerns/curation_concerns/generic_file/characterization.rb +0 -89
  381. data/curation_concerns-models/app/models/concerns/curation_concerns/generic_file/content.rb +0 -8
  382. data/curation_concerns-models/app/models/concerns/curation_concerns/generic_file/export.rb +0 -343
  383. data/curation_concerns-models/app/models/concerns/curation_concerns/generic_file/full_text_indexing.rb +0 -12
  384. data/curation_concerns-models/app/models/concerns/curation_concerns/generic_file/indexing.rb +0 -14
  385. data/curation_concerns-models/app/models/concerns/curation_concerns/generic_file/versions.rb +0 -16
  386. data/curation_concerns-models/app/models/concerns/curation_concerns/generic_file.rb +0 -5
  387. data/curation_concerns-models/app/models/concerns/curation_concerns/generic_file_behavior.rb +0 -44
  388. data/curation_concerns-models/app/models/concerns/curation_concerns/generic_work_behavior.rb +0 -38
  389. data/curation_concerns-models/app/models/concerns/curation_concerns/has_representative.rb +0 -14
  390. data/curation_concerns-models/app/models/concerns/curation_concerns/human_readable_type.rb +0 -23
  391. data/curation_concerns-models/app/models/concerns/curation_concerns/permissions/readable.rb +0 -19
  392. data/curation_concerns-models/app/models/concerns/curation_concerns/permissions/writable.rb +0 -75
  393. data/curation_concerns-models/app/models/concerns/curation_concerns/permissions.rb +0 -7
  394. data/curation_concerns-models/app/models/concerns/curation_concerns/serializers.rb +0 -15
  395. data/curation_concerns-models/app/models/concerns/curation_concerns/solr_document_behavior.rb +0 -135
  396. data/curation_concerns-models/app/models/concerns/curation_concerns/user.rb +0 -65
  397. data/curation_concerns-models/app/models/concerns/curation_concerns/with_basic_metadata.rb +0 -98
  398. data/curation_concerns-models/app/models/concerns/curation_concerns/with_generic_files.rb +0 -29
  399. data/curation_concerns-models/app/models/curation_concerns/classify_concern.rb +0 -47
  400. data/curation_concerns-models/app/models/curation_concerns/quick_classification_query.rb +0 -31
  401. data/curation_concerns-models/app/models/datastreams/fits_datastream.rb +0 -148
  402. data/curation_concerns-models/app/models/version_committer.rb +0 -2
  403. data/curation_concerns-models/app/services/curation_concerns/characterization_service.rb +0 -71
  404. data/curation_concerns-models/app/services/curation_concerns/full_text_extraction_service.rb +0 -38
  405. data/curation_concerns-models/app/services/curation_concerns/generic_file_audit_service.rb +0 -85
  406. data/curation_concerns-models/app/services/curation_concerns/generic_file_indexing_service.rb +0 -14
  407. data/curation_concerns-models/app/services/curation_concerns/generic_work_indexing_service.rb +0 -16
  408. data/curation_concerns-models/app/services/curation_concerns/noid.rb +0 -23
  409. data/curation_concerns-models/app/services/curation_concerns/repository_audit_service.rb +0 -9
  410. data/curation_concerns-models/app/services/curation_concerns/versioning_service.rb +0 -27
  411. data/curation_concerns-models/config/locales/curation_concerns.en.yml +0 -6
  412. data/curation_concerns-models/curation_concerns-models.gemspec +0 -34
  413. data/curation_concerns-models/lib/curation_concerns/messages.rb +0 -66
  414. data/curation_concerns-models/lib/curation_concerns/models/engine.rb +0 -61
  415. data/curation_concerns-models/lib/curation_concerns/models/resque.rb +0 -36
  416. data/curation_concerns-models/lib/curation_concerns/models/utils.rb +0 -22
  417. data/curation_concerns-models/lib/curation_concerns/models/version.rb +0 -5
  418. data/curation_concerns-models/lib/curation_concerns/models.rb +0 -32
  419. data/curation_concerns-models/lib/generators/curation_concerns/models/abstract_migration_generator.rb +0 -30
  420. data/curation_concerns-models/lib/generators/curation_concerns/models/clamav_generator.rb +0 -19
  421. data/curation_concerns-models/lib/generators/curation_concerns/models/fulltext_generator.rb +0 -28
  422. data/curation_concerns-models/lib/generators/curation_concerns/models/install_generator.rb +0 -70
  423. data/curation_concerns-models/lib/generators/curation_concerns/models/templates/app/models/collection.rb +0 -4
  424. data/curation_concerns-models/lib/generators/curation_concerns/models/templates/app/models/generic_file.rb +0 -4
  425. data/curation_concerns-models/lib/generators/curation_concerns/models/templates/config/clamav.rb +0 -1
  426. data/curation_concerns-models/lib/generators/curation_concerns/models/templates/config/curation_concerns.rb +0 -123
  427. data/curation_concerns-models/lib/generators/curation_concerns/models/templates/config/mime_types.rb +0 -6
  428. data/curation_concerns-models/lib/generators/curation_concerns/models/templates/config/redis.yml +0 -9
  429. data/curation_concerns-models/lib/generators/curation_concerns/models/templates/config/redis_config.rb +0 -32
  430. data/curation_concerns-models/lib/generators/curation_concerns/models/templates/config/resque-pool.yml +0 -1
  431. data/curation_concerns-models/lib/generators/curation_concerns/models/templates/config/resque_admin.rb +0 -10
  432. data/curation_concerns-models/lib/generators/curation_concerns/models/templates/config/resque_config.rb +0 -5
  433. data/curation_concerns-models/lib/generators/curation_concerns/models/templates/migrations/create_checksum_audit_logs.rb +0 -19
  434. data/curation_concerns-models/lib/generators/curation_concerns/models/templates/migrations/create_version_committers.rb +0 -15
  435. data/curation_concerns-models/lib/tasks/curation_concerns-models_tasks.rake +0 -75
  436. data/curation_concerns-models/lib/tasks/migrate.rake +0 -13
  437. data/curation_concerns-models/lib/tasks/resque.rake +0 -13
  438. data/curation_concerns-models/lib/tasks/solr_reindex.rake +0 -8
  439. data/lib/curation_concerns/configuration.rb +0 -74
  440. data/lib/generators/curation_concerns/templates/curation_concerns_config.rb +0 -2
  441. data/solr_conf/conf/solrconfig.xml +0 -223
  442. data/spec/abilities/generic_file_abilities_spec.rb +0 -62
  443. data/spec/actors/curation_concerns/generic_file_actor_spec.rb +0 -116
  444. data/spec/controllers/curation_concerns/generic_files_controller_spec.rb +0 -251
  445. data/spec/forms/generic_file_edit_form_spec.rb +0 -33
  446. data/spec/helpers/thumbnail_helper_spec.rb +0 -21
  447. data/spec/jobs/copy_permissions_job_spec.rb +0 -49
  448. data/spec/jobs/curation_concerns_resque_queue_spec.rb +0 -49
  449. data/spec/models/curation_concerns/generic_file/derivatives_spec.rb +0 -88
  450. data/spec/models/curation_concerns/generic_work_behavior_spec.rb +0 -35
  451. data/spec/models/fits_datastream_spec.rb +0 -127
  452. data/spec/models/generic_file_spec.rb +0 -619
  453. data/spec/presenters/curation_concerns/generic_file_presenter_spec.rb +0 -16
  454. data/spec/services/characterization_service_spec.rb +0 -30
  455. data/spec/services/full_text_extraction_service_spec.rb +0 -5
  456. data/spec/services/generic_file_audit_service_spec.rb +0 -71
  457. data/spec/services/generic_file_indexing_service_spec.rb +0 -57
  458. data/spec/services/generic_work_indexing_service_spec.rb +0 -18
  459. data/spec/workers/visibility_copy_worker_spec.rb +0 -70
  460. data/vendor/assets/javascripts/handlebars.js +0 -2278
  461. data/vendor/assets/javascripts/jquery-ui-1.9.2/jquery.ui.autocomplete.js +0 -602
  462. data/vendor/assets/javascripts/jquery-ui-1.9.2/jquery.ui.core.js +0 -356
  463. data/vendor/assets/javascripts/jquery-ui-1.9.2/jquery.ui.effect-highlight.js +0 -50
  464. data/vendor/assets/javascripts/jquery-ui-1.9.2/jquery.ui.effect.js +0 -1276
  465. data/vendor/assets/javascripts/jquery-ui-1.9.2/jquery.ui.menu.js +0 -610
  466. data/vendor/assets/javascripts/jquery-ui-1.9.2/jquery.ui.position.js +0 -498
  467. data/vendor/assets/javascripts/jquery-ui-1.9.2/jquery.ui.widget.js +0 -528
  468. data/vendor/assets/javascripts/jquery.tokeninput.js +0 -1061
  469. data/vendor/assets/stylesheets/jquery-ui-lightness.css +0 -474
  470. data/vendor/assets/stylesheets/token-input-facebook.css +0 -122
  471. data/vendor/assets/stylesheets/token-input-mac.css +0 -204
  472. data/vendor/assets/stylesheets/token-input.css +0 -127
@@ -1,1061 +0,0 @@
1
- /*
2
- * jQuery Plugin: Tokenizing Autocomplete Text Entry
3
- * Version 1.6.1
4
- *
5
- * Copyright (c) 2009 James Smith (http://loopj.com)
6
- * Licensed jointly under the GPL and MIT licenses,
7
- * choose which one suits your project best!
8
- *
9
- */
10
-
11
- (function ($) {
12
- // Default settings
13
- var DEFAULT_SETTINGS = {
14
- // Search settings
15
- method: "GET",
16
- queryParam: "q",
17
- searchDelay: 300,
18
- minChars: 1,
19
- propertyToSearch: "name",
20
- jsonContainer: null,
21
- contentType: "json",
22
-
23
- // Prepopulation settings
24
- prePopulate: null,
25
- processPrePopulate: false,
26
-
27
- // Display settings
28
- hintText: "Type in a search term",
29
- noResultsText: "No results",
30
- searchingText: "Searching...",
31
- deleteText: "×",
32
- animateDropdown: true,
33
- placeholder: null,
34
- theme: null,
35
- zindex: 999,
36
- resultsLimit: null,
37
-
38
- enableHTML: false,
39
-
40
- resultsFormatter: function(item) {
41
- var string = item[this.propertyToSearch];
42
- return "<li>" + (this.enableHTML ? string : _escapeHTML(string)) + "</li>";
43
- },
44
-
45
- tokenFormatter: function(item) {
46
- var string = item[this.propertyToSearch];
47
- return "<li><p>" + (this.enableHTML ? string : _escapeHTML(string)) + "</p></li>";
48
- },
49
-
50
- // Tokenization settings
51
- tokenLimit: null,
52
- tokenDelimiter: ",",
53
- preventDuplicates: false,
54
- tokenValue: "id",
55
-
56
- // Behavioral settings
57
- allowFreeTagging: false,
58
- allowTabOut: false,
59
-
60
- // Callbacks
61
- onResult: null,
62
- onCachedResult: null,
63
- onAdd: null,
64
- onFreeTaggingAdd: null,
65
- onDelete: null,
66
- onReady: null,
67
-
68
- // Other settings
69
- idPrefix: "token-input-",
70
-
71
- // Keep track if the input is currently in disabled mode
72
- disabled: false
73
- };
74
-
75
- // Default classes to use when theming
76
- var DEFAULT_CLASSES = {
77
- tokenList: "token-input-list",
78
- token: "token-input-token",
79
- tokenReadOnly: "token-input-token-readonly",
80
- tokenDelete: "token-input-delete-token",
81
- selectedToken: "token-input-selected-token",
82
- highlightedToken: "token-input-highlighted-token",
83
- dropdown: "token-input-dropdown",
84
- dropdownItem: "token-input-dropdown-item",
85
- dropdownItem2: "token-input-dropdown-item2",
86
- selectedDropdownItem: "token-input-selected-dropdown-item",
87
- inputToken: "token-input-input-token",
88
- focused: "token-input-focused",
89
- disabled: "token-input-disabled"
90
- };
91
-
92
- // Input box position "enum"
93
- var POSITION = {
94
- BEFORE: 0,
95
- AFTER: 1,
96
- END: 2
97
- };
98
-
99
- // Keys "enum"
100
- var KEY = {
101
- BACKSPACE: 8,
102
- TAB: 9,
103
- ENTER: 13,
104
- ESCAPE: 27,
105
- SPACE: 32,
106
- PAGE_UP: 33,
107
- PAGE_DOWN: 34,
108
- END: 35,
109
- HOME: 36,
110
- LEFT: 37,
111
- UP: 38,
112
- RIGHT: 39,
113
- DOWN: 40,
114
- NUMPAD_ENTER: 108,
115
- COMMA: 188
116
- };
117
-
118
- var HTML_ESCAPES = {
119
- '&': '&amp;',
120
- '<': '&lt;',
121
- '>': '&gt;',
122
- '"': '&quot;',
123
- "'": '&#x27;',
124
- '/': '&#x2F;'
125
- };
126
-
127
- var HTML_ESCAPE_CHARS = /[&<>"'\/]/g;
128
-
129
- function coerceToString(val) {
130
- return String((val === null || val === undefined) ? '' : val);
131
- }
132
-
133
- function _escapeHTML(text) {
134
- return coerceToString(text).replace(HTML_ESCAPE_CHARS, function(match) {
135
- return HTML_ESCAPES[match];
136
- });
137
- }
138
-
139
- // Additional public (exposed) methods
140
- var methods = {
141
- init: function(url_or_data_or_function, options) {
142
- var settings = $.extend({}, DEFAULT_SETTINGS, options || {});
143
-
144
- return this.each(function () {
145
- $(this).data("settings", settings);
146
- $(this).data("tokenInputObject", new $.TokenList(this, url_or_data_or_function, settings));
147
- });
148
- },
149
- clear: function() {
150
- this.data("tokenInputObject").clear();
151
- return this;
152
- },
153
- add: function(item) {
154
- this.data("tokenInputObject").add(item);
155
- return this;
156
- },
157
- remove: function(item) {
158
- this.data("tokenInputObject").remove(item);
159
- return this;
160
- },
161
- get: function() {
162
- return this.data("tokenInputObject").getTokens();
163
- },
164
- toggleDisabled: function(disable) {
165
- this.data("tokenInputObject").toggleDisabled(disable);
166
- return this;
167
- },
168
- setOptions: function(options){
169
- $(this).data("settings", $.extend({}, $(this).data("settings"), options || {}));
170
- return this;
171
- },
172
- destroy: function () {
173
- if(this.data("tokenInputObject")){
174
- this.data("tokenInputObject").clear();
175
- var tmpInput = this;
176
- var closest = this.parent();
177
- closest.empty();
178
- tmpInput.show();
179
- closest.append(tmpInput);
180
- return tmpInput;
181
- }
182
- }
183
- };
184
-
185
- // Expose the .tokenInput function to jQuery as a plugin
186
- $.fn.tokenInput = function (method) {
187
- // Method calling and initialization logic
188
- if(methods[method]) {
189
- return methods[method].apply(this, Array.prototype.slice.call(arguments, 1));
190
- } else {
191
- return methods.init.apply(this, arguments);
192
- }
193
- };
194
-
195
- // TokenList class for each input
196
- $.TokenList = function (input, url_or_data, settings) {
197
- //
198
- // Initialization
199
- //
200
-
201
- // Configure the data source
202
- if($.type(url_or_data) === "string" || $.type(url_or_data) === "function") {
203
- // Set the url to query against
204
- $(input).data("settings").url = url_or_data;
205
-
206
- // If the URL is a function, evaluate it here to do our initalization work
207
- var url = computeURL();
208
-
209
- // Make a smart guess about cross-domain if it wasn't explicitly specified
210
- if($(input).data("settings").crossDomain === undefined && typeof url === "string") {
211
- if(url.indexOf("://") === -1) {
212
- $(input).data("settings").crossDomain = false;
213
- } else {
214
- $(input).data("settings").crossDomain = (location.href.split(/\/+/g)[1] !== url.split(/\/+/g)[1]);
215
- }
216
- }
217
- } else if(typeof(url_or_data) === "object") {
218
- // Set the local data to search through
219
- $(input).data("settings").local_data = url_or_data;
220
- }
221
-
222
- // Build class names
223
- if($(input).data("settings").classes) {
224
- // Use custom class names
225
- $(input).data("settings").classes = $.extend({}, DEFAULT_CLASSES, $(input).data("settings").classes);
226
- } else if($(input).data("settings").theme) {
227
- // Use theme-suffixed default class names
228
- $(input).data("settings").classes = {};
229
- $.each(DEFAULT_CLASSES, function(key, value) {
230
- $(input).data("settings").classes[key] = value + "-" + $(input).data("settings").theme;
231
- });
232
- } else {
233
- $(input).data("settings").classes = DEFAULT_CLASSES;
234
- }
235
-
236
-
237
- // Save the tokens
238
- var saved_tokens = [];
239
-
240
- // Keep track of the number of tokens in the list
241
- var token_count = 0;
242
-
243
- // Basic cache to save on db hits
244
- var cache = new $.TokenList.Cache();
245
-
246
- // Keep track of the timeout, old vals
247
- var timeout;
248
- var input_val;
249
-
250
- // Create a new text input an attach keyup events
251
- var input_box = $("<input type=\"text\" autocomplete=\"off\" autocapitalize=\"off\">")
252
- .css({
253
- outline: "none"
254
- })
255
- .attr("id", $(input).data("settings").idPrefix + input.id)
256
- .focus(function () {
257
- if ($(input).data("settings").disabled) {
258
- return false;
259
- } else
260
- if ($(input).data("settings").tokenLimit === null || $(input).data("settings").tokenLimit !== token_count) {
261
- show_dropdown_hint();
262
- }
263
- token_list.addClass($(input).data("settings").classes.focused);
264
- })
265
- .blur(function () {
266
- hide_dropdown();
267
-
268
- if ($(input).data("settings").allowFreeTagging) {
269
- add_freetagging_tokens();
270
- }
271
-
272
- $(this).val("");
273
- token_list.removeClass($(input).data("settings").classes.focused);
274
- })
275
- .bind("keyup keydown blur update", resize_input)
276
- .keydown(function (event) {
277
- var previous_token;
278
- var next_token;
279
-
280
- switch(event.keyCode) {
281
- case KEY.LEFT:
282
- case KEY.RIGHT:
283
- case KEY.UP:
284
- case KEY.DOWN:
285
- if(!$(this).val()) {
286
- previous_token = input_token.prev();
287
- next_token = input_token.next();
288
-
289
- if((previous_token.length && previous_token.get(0) === selected_token) || (next_token.length && next_token.get(0) === selected_token)) {
290
- // Check if there is a previous/next token and it is selected
291
- if(event.keyCode === KEY.LEFT || event.keyCode === KEY.UP) {
292
- deselect_token($(selected_token), POSITION.BEFORE);
293
- } else {
294
- deselect_token($(selected_token), POSITION.AFTER);
295
- }
296
- } else if((event.keyCode === KEY.LEFT || event.keyCode === KEY.UP) && previous_token.length) {
297
- // We are moving left, select the previous token if it exists
298
- select_token($(previous_token.get(0)));
299
- } else if((event.keyCode === KEY.RIGHT || event.keyCode === KEY.DOWN) && next_token.length) {
300
- // We are moving right, select the next token if it exists
301
- select_token($(next_token.get(0)));
302
- }
303
- } else {
304
- var dropdown_item = null;
305
-
306
- if(event.keyCode === KEY.DOWN || event.keyCode === KEY.RIGHT) {
307
- dropdown_item = $(selected_dropdown_item).next();
308
- } else {
309
- dropdown_item = $(selected_dropdown_item).prev();
310
- }
311
-
312
- if(dropdown_item.length) {
313
- select_dropdown_item(dropdown_item);
314
- }
315
- }
316
- return false;
317
- break;
318
-
319
- case KEY.BACKSPACE:
320
- previous_token = input_token.prev();
321
-
322
- if(!$(this).val().length) {
323
- if(selected_token) {
324
- delete_token($(selected_token));
325
- hidden_input.change();
326
- } else if(previous_token.length) {
327
- select_token($(previous_token.get(0)));
328
- }
329
-
330
- return false;
331
- } else if($(this).val().length === 1) {
332
- hide_dropdown();
333
- } else {
334
- // set a timeout just long enough to let this function finish.
335
- setTimeout(function(){do_search();}, 5);
336
- }
337
- break;
338
-
339
- case KEY.TAB:
340
- case KEY.ENTER:
341
- case KEY.NUMPAD_ENTER:
342
- case KEY.COMMA:
343
- if(selected_dropdown_item) {
344
- add_token($(selected_dropdown_item).data("tokeninput"));
345
- hidden_input.change();
346
- } else {
347
- if ($(input).data("settings").allowFreeTagging) {
348
- if($(input).data("settings").allowTabOut && $(this).val() === "") {
349
- return true;
350
- } else {
351
- add_freetagging_tokens();
352
- }
353
- } else {
354
- $(this).val("");
355
- if($(input).data("settings").allowTabOut) {
356
- return true;
357
- }
358
- }
359
- event.stopPropagation();
360
- event.preventDefault();
361
- }
362
- return false;
363
-
364
- case KEY.ESCAPE:
365
- hide_dropdown();
366
- return true;
367
-
368
- default:
369
- if(String.fromCharCode(event.which)) {
370
- // set a timeout just long enough to let this function finish.
371
- setTimeout(function(){do_search();}, 5);
372
- }
373
- break;
374
- }
375
- });
376
-
377
- // Keep reference for placeholder
378
- if (settings.placeholder)
379
- input_box.attr("placeholder", settings.placeholder)
380
-
381
- // Keep a reference to the original input box
382
- var hidden_input = $(input)
383
- .hide()
384
- .val("")
385
- .focus(function () {
386
- focus_with_timeout(input_box);
387
- })
388
- .blur(function () {
389
- input_box.blur();
390
- //return the object to this can be referenced in the callback functions.
391
- return hidden_input;
392
- });
393
-
394
- // Keep a reference to the selected token and dropdown item
395
- var selected_token = null;
396
- var selected_token_index = 0;
397
- var selected_dropdown_item = null;
398
-
399
- // The list to store the token items in
400
- var token_list = $("<ul />")
401
- .addClass($(input).data("settings").classes.tokenList)
402
- .click(function (event) {
403
- var li = $(event.target).closest("li");
404
- if(li && li.get(0) && $.data(li.get(0), "tokeninput")) {
405
- toggle_select_token(li);
406
- } else {
407
- // Deselect selected token
408
- if(selected_token) {
409
- deselect_token($(selected_token), POSITION.END);
410
- }
411
-
412
- // Focus input box
413
- focus_with_timeout(input_box);
414
- }
415
- })
416
- .mouseover(function (event) {
417
- var li = $(event.target).closest("li");
418
- if(li && selected_token !== this) {
419
- li.addClass($(input).data("settings").classes.highlightedToken);
420
- }
421
- })
422
- .mouseout(function (event) {
423
- var li = $(event.target).closest("li");
424
- if(li && selected_token !== this) {
425
- li.removeClass($(input).data("settings").classes.highlightedToken);
426
- }
427
- })
428
- .insertBefore(hidden_input);
429
-
430
- // The token holding the input box
431
- var input_token = $("<li />")
432
- .addClass($(input).data("settings").classes.inputToken)
433
- .appendTo(token_list)
434
- .append(input_box);
435
-
436
- // The list to store the dropdown items in
437
- var dropdown = $("<div>")
438
- .addClass($(input).data("settings").classes.dropdown)
439
- .appendTo("body")
440
- .hide();
441
-
442
- // Magic element to help us resize the text input
443
- var input_resizer = $("<tester/>")
444
- .insertAfter(input_box)
445
- .css({
446
- position: "absolute",
447
- top: -9999,
448
- left: -9999,
449
- width: "auto",
450
- fontSize: input_box.css("fontSize"),
451
- fontFamily: input_box.css("fontFamily"),
452
- fontWeight: input_box.css("fontWeight"),
453
- letterSpacing: input_box.css("letterSpacing"),
454
- whiteSpace: "nowrap"
455
- });
456
-
457
- // Pre-populate list if items exist
458
- hidden_input.val("");
459
- var li_data = $(input).data("settings").prePopulate || hidden_input.data("pre");
460
- if($(input).data("settings").processPrePopulate && $.isFunction($(input).data("settings").onResult)) {
461
- li_data = $(input).data("settings").onResult.call(hidden_input, li_data);
462
- }
463
- if(li_data && li_data.length) {
464
- $.each(li_data, function (index, value) {
465
- insert_token(value);
466
- checkTokenLimit();
467
- input_box.attr("placeholder", null)
468
- });
469
- }
470
-
471
- // Check if widget should initialize as disabled
472
- if ($(input).data("settings").disabled) {
473
- toggleDisabled(true);
474
- }
475
-
476
- // Initialization is done
477
- if($.isFunction($(input).data("settings").onReady)) {
478
- $(input).data("settings").onReady.call();
479
- }
480
-
481
- //
482
- // Public functions
483
- //
484
-
485
- this.clear = function() {
486
- token_list.children("li").each(function() {
487
- if ($(this).children("input").length === 0) {
488
- delete_token($(this));
489
- }
490
- });
491
- };
492
-
493
- this.add = function(item) {
494
- add_token(item);
495
- };
496
-
497
- this.remove = function(item) {
498
- token_list.children("li").each(function() {
499
- if ($(this).children("input").length === 0) {
500
- var currToken = $(this).data("tokeninput");
501
- var match = true;
502
- for (var prop in item) {
503
- if (item[prop] !== currToken[prop]) {
504
- match = false;
505
- break;
506
- }
507
- }
508
- if (match) {
509
- delete_token($(this));
510
- }
511
- }
512
- });
513
- };
514
-
515
- this.getTokens = function() {
516
- return saved_tokens;
517
- };
518
-
519
- this.toggleDisabled = function(disable) {
520
- toggleDisabled(disable);
521
- };
522
-
523
- // Resize input to maximum width so the placeholder can be seen
524
- resize_input();
525
-
526
- //
527
- // Private functions
528
- //
529
-
530
- function escapeHTML(text) {
531
- return $(input).data("settings").enableHTML ? text : _escapeHTML(text);
532
- }
533
-
534
- // Toggles the widget between enabled and disabled state, or according
535
- // to the [disable] parameter.
536
- function toggleDisabled(disable) {
537
- if (typeof disable === 'boolean') {
538
- $(input).data("settings").disabled = disable
539
- } else {
540
- $(input).data("settings").disabled = !$(input).data("settings").disabled;
541
- }
542
- input_box.attr('disabled', $(input).data("settings").disabled);
543
- token_list.toggleClass($(input).data("settings").classes.disabled, $(input).data("settings").disabled);
544
- // if there is any token selected we deselect it
545
- if(selected_token) {
546
- deselect_token($(selected_token), POSITION.END);
547
- }
548
- hidden_input.attr('disabled', $(input).data("settings").disabled);
549
- }
550
-
551
- function checkTokenLimit() {
552
- if($(input).data("settings").tokenLimit !== null && token_count >= $(input).data("settings").tokenLimit) {
553
- input_box.hide();
554
- hide_dropdown();
555
- return;
556
- }
557
- }
558
-
559
- function resize_input() {
560
- if(input_val === (input_val = input_box.val())) {return;}
561
-
562
- // Get width left on the current line
563
- var width_left = token_list.width() - input_box.offset().left - token_list.offset().left;
564
- // Enter new content into resizer and resize input accordingly
565
- input_resizer.html(_escapeHTML(input_val) || _escapeHTML(settings.placeholder));
566
- // Get maximum width, minimum the size of input and maximum the widget's width
567
- input_box.width(Math.min(token_list.width(),
568
- Math.max(width_left, input_resizer.width() + 30)));
569
- }
570
-
571
- function is_printable_character(keycode) {
572
- return ((keycode >= 48 && keycode <= 90) || // 0-1a-z
573
- (keycode >= 96 && keycode <= 111) || // numpad 0-9 + - / * .
574
- (keycode >= 186 && keycode <= 192) || // ; = , - . / ^
575
- (keycode >= 219 && keycode <= 222)); // ( \ ) '
576
- }
577
-
578
- function add_freetagging_tokens() {
579
- var value = $.trim(input_box.val());
580
- var tokens = value.split($(input).data("settings").tokenDelimiter);
581
- $.each(tokens, function(i, token) {
582
- if (!token) {
583
- return;
584
- }
585
-
586
- if ($.isFunction($(input).data("settings").onFreeTaggingAdd)) {
587
- token = $(input).data("settings").onFreeTaggingAdd.call(hidden_input, token);
588
- }
589
- var object = {};
590
- object[$(input).data("settings").tokenValue] = object[$(input).data("settings").propertyToSearch] = token;
591
- add_token(object);
592
- });
593
- }
594
-
595
- // Inner function to a token to the list
596
- function insert_token(item) {
597
- var $this_token = $($(input).data("settings").tokenFormatter(item));
598
- var readonly = item.readonly === true ? true : false;
599
-
600
- if(readonly) $this_token.addClass($(input).data("settings").classes.tokenReadOnly);
601
-
602
- $this_token.addClass($(input).data("settings").classes.token).insertBefore(input_token);
603
-
604
- // The 'delete token' button
605
- if(!readonly) {
606
- $("<span>" + $(input).data("settings").deleteText + "</span>")
607
- .addClass($(input).data("settings").classes.tokenDelete)
608
- .appendTo($this_token)
609
- .click(function () {
610
- if (!$(input).data("settings").disabled) {
611
- delete_token($(this).parent());
612
- hidden_input.change();
613
- return false;
614
- }
615
- });
616
- }
617
-
618
- // Store data on the token
619
- var token_data = item;
620
- $.data($this_token.get(0), "tokeninput", item);
621
-
622
- // Save this token for duplicate checking
623
- saved_tokens = saved_tokens.slice(0,selected_token_index).concat([token_data]).concat(saved_tokens.slice(selected_token_index));
624
- selected_token_index++;
625
-
626
- // Update the hidden input
627
- update_hidden_input(saved_tokens, hidden_input);
628
-
629
- token_count += 1;
630
-
631
- // Check the token limit
632
- if($(input).data("settings").tokenLimit !== null && token_count >= $(input).data("settings").tokenLimit) {
633
- input_box.hide();
634
- hide_dropdown();
635
- }
636
-
637
- return $this_token;
638
- }
639
-
640
- // Add a token to the token list based on user input
641
- function add_token (item) {
642
- var callback = $(input).data("settings").onAdd;
643
-
644
- // See if the token already exists and select it if we don't want duplicates
645
- if(token_count > 0 && $(input).data("settings").preventDuplicates) {
646
- var found_existing_token = null;
647
- token_list.children().each(function () {
648
- var existing_token = $(this);
649
- var existing_data = $.data(existing_token.get(0), "tokeninput");
650
- if(existing_data && existing_data[settings.tokenValue] === item[settings.tokenValue]) {
651
- found_existing_token = existing_token;
652
- return false;
653
- }
654
- });
655
-
656
- if(found_existing_token) {
657
- select_token(found_existing_token);
658
- input_token.insertAfter(found_existing_token);
659
- focus_with_timeout(input_box);
660
- return;
661
- }
662
- }
663
-
664
- // Squeeze input_box so we force no unnecessary line break
665
- input_box.width(0);
666
-
667
- // Insert the new tokens
668
- if($(input).data("settings").tokenLimit == null || token_count < $(input).data("settings").tokenLimit) {
669
- insert_token(item);
670
- // Remove the placeholder so it's not seen after you've added a token
671
- input_box.attr("placeholder", null)
672
- checkTokenLimit();
673
- }
674
-
675
- // Clear input box
676
- input_box.val("");
677
-
678
- // Don't show the help dropdown, they've got the idea
679
- hide_dropdown();
680
-
681
- // Execute the onAdd callback if defined
682
- if($.isFunction(callback)) {
683
- callback.call(hidden_input,item);
684
- }
685
- }
686
-
687
- // Select a token in the token list
688
- function select_token (token) {
689
- if (!$(input).data("settings").disabled) {
690
- token.addClass($(input).data("settings").classes.selectedToken);
691
- selected_token = token.get(0);
692
-
693
- // Hide input box
694
- input_box.val("");
695
-
696
- // Hide dropdown if it is visible (eg if we clicked to select token)
697
- hide_dropdown();
698
- }
699
- }
700
-
701
- // Deselect a token in the token list
702
- function deselect_token (token, position) {
703
- token.removeClass($(input).data("settings").classes.selectedToken);
704
- selected_token = null;
705
-
706
- if(position === POSITION.BEFORE) {
707
- input_token.insertBefore(token);
708
- selected_token_index--;
709
- } else if(position === POSITION.AFTER) {
710
- input_token.insertAfter(token);
711
- selected_token_index++;
712
- } else {
713
- input_token.appendTo(token_list);
714
- selected_token_index = token_count;
715
- }
716
-
717
- // Show the input box and give it focus again
718
- focus_with_timeout(input_box);
719
- }
720
-
721
- // Toggle selection of a token in the token list
722
- function toggle_select_token(token) {
723
- var previous_selected_token = selected_token;
724
-
725
- if(selected_token) {
726
- deselect_token($(selected_token), POSITION.END);
727
- }
728
-
729
- if(previous_selected_token === token.get(0)) {
730
- deselect_token(token, POSITION.END);
731
- } else {
732
- select_token(token);
733
- }
734
- }
735
-
736
- // Delete a token from the token list
737
- function delete_token (token) {
738
- // Remove the id from the saved list
739
- var token_data = $.data(token.get(0), "tokeninput");
740
- var callback = $(input).data("settings").onDelete;
741
-
742
- var index = token.prevAll().length;
743
- if(index > selected_token_index) index--;
744
-
745
- // Delete the token
746
- token.remove();
747
- selected_token = null;
748
-
749
- // Show the input box and give it focus again
750
- focus_with_timeout(input_box);
751
-
752
- // Remove this token from the saved list
753
- saved_tokens = saved_tokens.slice(0,index).concat(saved_tokens.slice(index+1));
754
- if (saved_tokens.length == 0) {
755
- input_box.attr("placeholder", settings.placeholder)
756
- }
757
- if(index < selected_token_index) selected_token_index--;
758
-
759
- // Update the hidden input
760
- update_hidden_input(saved_tokens, hidden_input);
761
-
762
- token_count -= 1;
763
-
764
- if($(input).data("settings").tokenLimit !== null) {
765
- input_box
766
- .show()
767
- .val("");
768
- focus_with_timeout(input_box);
769
- }
770
-
771
- // Execute the onDelete callback if defined
772
- if($.isFunction(callback)) {
773
- callback.call(hidden_input,token_data);
774
- }
775
- }
776
-
777
- // Update the hidden input box value
778
- function update_hidden_input(saved_tokens, hidden_input) {
779
- var token_values = $.map(saved_tokens, function (el) {
780
- if(typeof $(input).data("settings").tokenValue == 'function')
781
- return $(input).data("settings").tokenValue.call(this, el);
782
-
783
- return el[$(input).data("settings").tokenValue];
784
- });
785
- hidden_input.val(token_values.join($(input).data("settings").tokenDelimiter));
786
-
787
- }
788
-
789
- // Hide and clear the results dropdown
790
- function hide_dropdown () {
791
- dropdown.hide().empty();
792
- selected_dropdown_item = null;
793
- }
794
-
795
- function show_dropdown() {
796
- dropdown
797
- .css({
798
- position: "absolute",
799
- top: token_list.offset().top + token_list.outerHeight(),
800
- left: token_list.offset().left,
801
- width: token_list.width(),
802
- 'z-index': $(input).data("settings").zindex
803
- })
804
- .show();
805
- }
806
-
807
- function show_dropdown_searching () {
808
- if($(input).data("settings").searchingText) {
809
- dropdown.html("<p>" + escapeHTML($(input).data("settings").searchingText) + "</p>");
810
- show_dropdown();
811
- }
812
- }
813
-
814
- function show_dropdown_hint () {
815
- if($(input).data("settings").hintText) {
816
- dropdown.html("<p>" + escapeHTML($(input).data("settings").hintText) + "</p>");
817
- show_dropdown();
818
- }
819
- }
820
-
821
- var regexp_special_chars = new RegExp('[.\\\\+*?\\[\\^\\]$(){}=!<>|:\\-]', 'g');
822
- function regexp_escape(term) {
823
- return term.replace(regexp_special_chars, '\\$&');
824
- }
825
-
826
- // Highlight the query part of the search term
827
- function highlight_term(value, term) {
828
- return value.replace(
829
- new RegExp(
830
- "(?![^&;]+;)(?!<[^<>]*)(" + regexp_escape(term) + ")(?![^<>]*>)(?![^&;]+;)",
831
- "gi"
832
- ), function(match, p1) {
833
- return "<b>" + escapeHTML(p1) + "</b>";
834
- }
835
- );
836
- }
837
-
838
- function find_value_and_highlight_term(template, value, term) {
839
- return template.replace(new RegExp("(?![^&;]+;)(?!<[^<>]*)(" + regexp_escape(value) + ")(?![^<>]*>)(?![^&;]+;)", "g"), highlight_term(value, term));
840
- }
841
-
842
- // Populate the results dropdown with some results
843
- function populate_dropdown (query, results) {
844
- if(results && results.length) {
845
- dropdown.empty();
846
- var dropdown_ul = $("<ul>")
847
- .appendTo(dropdown)
848
- .mouseover(function (event) {
849
- select_dropdown_item($(event.target).closest("li"));
850
- })
851
- .mousedown(function (event) {
852
- add_token($(event.target).closest("li").data("tokeninput"));
853
- hidden_input.change();
854
- return false;
855
- })
856
- .hide();
857
-
858
- if ($(input).data("settings").resultsLimit && results.length > $(input).data("settings").resultsLimit) {
859
- results = results.slice(0, $(input).data("settings").resultsLimit);
860
- }
861
-
862
- $.each(results, function(index, value) {
863
- var this_li = $(input).data("settings").resultsFormatter(value);
864
-
865
- this_li = find_value_and_highlight_term(this_li ,value[$(input).data("settings").propertyToSearch], query);
866
-
867
- this_li = $(this_li).appendTo(dropdown_ul);
868
-
869
- if(index % 2) {
870
- this_li.addClass($(input).data("settings").classes.dropdownItem);
871
- } else {
872
- this_li.addClass($(input).data("settings").classes.dropdownItem2);
873
- }
874
-
875
- if(index === 0) {
876
- select_dropdown_item(this_li);
877
- }
878
-
879
- $.data(this_li.get(0), "tokeninput", value);
880
- });
881
-
882
- show_dropdown();
883
-
884
- if($(input).data("settings").animateDropdown) {
885
- dropdown_ul.slideDown("fast");
886
- } else {
887
- dropdown_ul.show();
888
- }
889
- } else {
890
- if($(input).data("settings").noResultsText) {
891
- dropdown.html("<p>" + escapeHTML($(input).data("settings").noResultsText) + "</p>");
892
- show_dropdown();
893
- }
894
- }
895
- }
896
-
897
- // Highlight an item in the results dropdown
898
- function select_dropdown_item (item) {
899
- if(item) {
900
- if(selected_dropdown_item) {
901
- deselect_dropdown_item($(selected_dropdown_item));
902
- }
903
-
904
- item.addClass($(input).data("settings").classes.selectedDropdownItem);
905
- selected_dropdown_item = item.get(0);
906
- }
907
- }
908
-
909
- // Remove highlighting from an item in the results dropdown
910
- function deselect_dropdown_item (item) {
911
- item.removeClass($(input).data("settings").classes.selectedDropdownItem);
912
- selected_dropdown_item = null;
913
- }
914
-
915
- // Do a search and show the "searching" dropdown if the input is longer
916
- // than $(input).data("settings").minChars
917
- function do_search() {
918
- var query = input_box.val();
919
-
920
- if(query && query.length) {
921
- if(selected_token) {
922
- deselect_token($(selected_token), POSITION.AFTER);
923
- }
924
-
925
- if(query.length >= $(input).data("settings").minChars) {
926
- show_dropdown_searching();
927
- clearTimeout(timeout);
928
-
929
- timeout = setTimeout(function(){
930
- run_search(query);
931
- }, $(input).data("settings").searchDelay);
932
- } else {
933
- hide_dropdown();
934
- }
935
- }
936
- }
937
-
938
- // Do the actual search
939
- function run_search(query) {
940
- var cache_key = query + computeURL();
941
- var cached_results = cache.get(cache_key);
942
- if(cached_results) {
943
- if ($.isFunction($(input).data("settings").onCachedResult)) {
944
- cached_results = $(input).data("settings").onCachedResult.call(hidden_input, cached_results);
945
- }
946
- populate_dropdown(query, cached_results);
947
- } else {
948
- // Are we doing an ajax search or local data search?
949
- if($(input).data("settings").url) {
950
- var url = computeURL();
951
- // Extract exisiting get params
952
- var ajax_params = {};
953
- ajax_params.data = {};
954
- if(url.indexOf("?") > -1) {
955
- var parts = url.split("?");
956
- ajax_params.url = parts[0];
957
-
958
- var param_array = parts[1].split("&");
959
- $.each(param_array, function (index, value) {
960
- var kv = value.split("=");
961
- ajax_params.data[kv[0]] = kv[1];
962
- });
963
- } else {
964
- ajax_params.url = url;
965
- }
966
-
967
- // Prepare the request
968
- ajax_params.data[$(input).data("settings").queryParam] = query;
969
- ajax_params.type = $(input).data("settings").method;
970
- ajax_params.dataType = $(input).data("settings").contentType;
971
- if($(input).data("settings").crossDomain) {
972
- ajax_params.dataType = "jsonp";
973
- }
974
-
975
- // Attach the success callback
976
- ajax_params.success = function(results) {
977
- cache.add(cache_key, $(input).data("settings").jsonContainer ? results[$(input).data("settings").jsonContainer] : results);
978
- if($.isFunction($(input).data("settings").onResult)) {
979
- results = $(input).data("settings").onResult.call(hidden_input, results);
980
- }
981
-
982
- // only populate the dropdown if the results are associated with the active search query
983
- if(input_box.val() === query) {
984
- populate_dropdown(query, $(input).data("settings").jsonContainer ? results[$(input).data("settings").jsonContainer] : results);
985
- }
986
- };
987
-
988
- // Provide a beforeSend callback
989
- if (settings.onSend) {
990
- settings.onSend(ajax_params);
991
- }
992
-
993
- // Make the request
994
- $.ajax(ajax_params);
995
- } else if($(input).data("settings").local_data) {
996
- // Do the search through local data
997
- var results = $.grep($(input).data("settings").local_data, function (row) {
998
- return row[$(input).data("settings").propertyToSearch].toLowerCase().indexOf(query.toLowerCase()) > -1;
999
- });
1000
-
1001
- cache.add(cache_key, results);
1002
- if($.isFunction($(input).data("settings").onResult)) {
1003
- results = $(input).data("settings").onResult.call(hidden_input, results);
1004
- }
1005
- populate_dropdown(query, results);
1006
- }
1007
- }
1008
- }
1009
-
1010
- // compute the dynamic URL
1011
- function computeURL() {
1012
- var url = $(input).data("settings").url;
1013
- if(typeof $(input).data("settings").url == 'function') {
1014
- url = $(input).data("settings").url.call($(input).data("settings"));
1015
- }
1016
- return url;
1017
- }
1018
-
1019
- // Bring browser focus to the specified object.
1020
- // Use of setTimeout is to get around an IE bug.
1021
- // (See, e.g., http://stackoverflow.com/questions/2600186/focus-doesnt-work-in-ie)
1022
- //
1023
- // obj: a jQuery object to focus()
1024
- function focus_with_timeout(obj) {
1025
- setTimeout(function() { obj.focus(); }, 50);
1026
- }
1027
-
1028
- };
1029
-
1030
- // Really basic cache for the results
1031
- $.TokenList.Cache = function (options) {
1032
- var settings = $.extend({
1033
- max_size: 500
1034
- }, options);
1035
-
1036
- var data = {};
1037
- var size = 0;
1038
-
1039
- var flush = function () {
1040
- data = {};
1041
- size = 0;
1042
- };
1043
-
1044
- this.add = function (query, results) {
1045
- if(size > settings.max_size) {
1046
- flush();
1047
- }
1048
-
1049
- if(!data[query]) {
1050
- size += 1;
1051
- }
1052
-
1053
- data[query] = results;
1054
- };
1055
-
1056
- this.get = function (query) {
1057
- return data[query];
1058
- };
1059
- };
1060
- }(jQuery));
1061
-