enju_leaf 1.3.4 → 2.0.0.beta.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (326) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +2 -4
  3. data/app/assets/javascripts/enju_leaf/application.js +12 -0
  4. data/app/assets/javascripts/{autocomplete_agent.js → enju_leaf/autocomplete_agent.js} +0 -0
  5. data/app/assets/javascripts/{menu.js → enju_leaf/menu.js} +0 -0
  6. data/app/assets/javascripts/enju_leaf/mobile.js +5 -0
  7. data/app/assets/javascripts/{portlets.js → enju_leaf/portlets.js} +0 -0
  8. data/app/assets/javascripts/{select_locale.js → enju_leaf/select_locale.js} +0 -0
  9. data/app/assets/stylesheets/{enju_leaf.css → enju_leaf/application.scss} +6 -6
  10. data/app/assets/stylesheets/{enju.css → enju_leaf/enju.css} +0 -0
  11. data/app/assets/stylesheets/{enju_mobile.css → enju_leaf/enju_mobile.css} +0 -0
  12. data/app/assets/stylesheets/{enju_print.css → enju_leaf/enju_print.css} +0 -0
  13. data/app/assets/stylesheets/{mobile.css → enju_leaf/mobile.css} +1 -1
  14. data/app/assets/stylesheets/{pagination.css → enju_leaf/pagination.css} +0 -0
  15. data/app/assets/stylesheets/{portlets.css → enju_leaf/portlets.css} +0 -0
  16. data/app/assets/stylesheets/{print.css → enju_leaf/print.css} +1 -1
  17. data/app/assets/stylesheets/{scaffold_modified.css → enju_leaf/scaffold_modified.css} +0 -0
  18. data/app/views/devise/registrations/edit.html.erb +1 -1
  19. data/app/views/layouts/application.html.erb +4 -4
  20. data/app/views/page/_include.html.erb +1 -1
  21. data/app/views/page/_index.html+phone.erb +1 -1
  22. data/app/views/page/_menu.html.erb +1 -1
  23. data/app/views/page/_mobile.html+phone.erb +2 -2
  24. data/app/views/page/about.en.html.erb +4 -4
  25. data/app/views/page/about.ja.html.erb +4 -4
  26. data/app/views/page/advanced_search.html.erb +5 -5
  27. data/app/views/page/configuration.html.erb +0 -2
  28. data/app/views/page/opensearch.xml.builder +2 -2
  29. data/config/locales/en.yml +0 -4
  30. data/config/locales/ja.yml +0 -4
  31. data/lib/enju_leaf/engine.rb +1 -1
  32. data/lib/enju_leaf/version.rb +1 -1
  33. data/lib/generators/enju_leaf/quick_install/quick_install_generator.rb +5 -2
  34. data/lib/generators/enju_leaf/setup/setup_generator.rb +22 -17
  35. data/lib/generators/enju_leaf/setup/templates/Procfile +2 -2
  36. data/lib/generators/enju_leaf/setup/templates/config/schedule.rb +2 -2
  37. data/lib/generators/enju_leaf/setup/templates/db/seeds.rb +0 -4
  38. data/lib/tasks/enju_leaf_tasks.rake +2 -5
  39. data/spec/acceptance/profile.rb +9 -0
  40. data/spec/controllers/page_controller_spec.rb +1 -1
  41. data/spec/dummy/app/assets/javascripts/application.js +3 -0
  42. data/spec/dummy/app/assets/stylesheets/application.css +1 -0
  43. data/spec/dummy/app/controllers/application_controller.rb +0 -1
  44. data/spec/dummy/bin/bundle +1 -1
  45. data/spec/dummy/bin/setup +1 -3
  46. data/spec/dummy/bin/update +4 -2
  47. data/spec/dummy/bin/yarn +3 -3
  48. data/spec/dummy/config.ru +3 -2
  49. data/spec/dummy/config/application.rb +3 -2
  50. data/spec/dummy/config/boot.rb +4 -9
  51. data/spec/dummy/config/cable.yml +10 -0
  52. data/spec/dummy/config/database.yml +70 -9
  53. data/spec/dummy/config/environments/development.rb +9 -2
  54. data/spec/dummy/config/environments/production.rb +7 -4
  55. data/spec/dummy/config/environments/test.rb +7 -1
  56. data/spec/dummy/config/initializers/assets.rb +1 -2
  57. data/spec/dummy/config/initializers/content_security_policy.rb +25 -0
  58. data/spec/dummy/config/locales/en.yml +30 -2
  59. data/spec/dummy/config/puma.rb +34 -0
  60. data/spec/dummy/config/routes.rb +2 -58
  61. data/spec/dummy/config/spring.rb +6 -0
  62. data/spec/dummy/config/storage.yml +34 -0
  63. data/spec/dummy/db/development.sqlite3 +0 -0
  64. data/spec/dummy/db/migrate/005_create_manifestations.rb +3 -3
  65. data/spec/dummy/db/migrate/127_create_use_restrictions.rb +3 -7
  66. data/spec/dummy/db/migrate/132_create_circulation_statuses.rb +3 -7
  67. data/spec/dummy/db/migrate/149_create_message_templates.rb +3 -8
  68. data/spec/dummy/db/migrate/154_create_messages.rb +6 -14
  69. data/spec/dummy/db/migrate/20080819181903_create_message_requests.rb +4 -4
  70. data/spec/dummy/db/migrate/20081025083323_create_countries.rb +6 -5
  71. data/spec/dummy/db/migrate/20081025083905_create_languages.rb +1 -0
  72. data/spec/dummy/db/migrate/20081027150907_create_picture_files.rb +1 -1
  73. data/spec/dummy/db/migrate/20090705212043_add_attachments_attachment_to_manifestation.rb +15 -0
  74. data/spec/dummy/db/migrate/20100606065209_create_user_has_roles.rb +2 -4
  75. data/spec/dummy/db/migrate/20110627122938_add_number_of_day_to_notify_overdue_to_user_group.rb +1 -1
  76. data/spec/dummy/db/migrate/20110913115320_add_lft_and_rgt_to_message.rb +1 -1
  77. data/spec/dummy/db/migrate/20120125050502_add_depth_to_message.rb +1 -1
  78. data/spec/dummy/db/migrate/20120125152919_add_title_subseries_transcription_to_series_statement.rb +1 -0
  79. data/spec/dummy/db/migrate/20120129020544_add_budget_type_id_to_item.rb +1 -0
  80. data/spec/dummy/db/migrate/20120319120638_add_content_type_id_to_manifestation.rb +1 -0
  81. data/spec/dummy/db/migrate/20120415164821_add_attachment_meta_to_manifestation.rb +5 -0
  82. data/spec/dummy/db/migrate/20130221154434_add_additional_attributes_to_user.rb +1 -1
  83. data/spec/dummy/db/migrate/20130506175834_create_identifiers.rb +1 -1
  84. data/spec/dummy/db/migrate/20140122054321_create_profiles.rb +4 -5
  85. data/spec/dummy/db/migrate/20140518111006_create_message_transitions.rb +4 -9
  86. data/spec/dummy/db/migrate/20140518135713_create_message_request_transitions.rb +4 -9
  87. data/spec/dummy/db/migrate/20140519170214_create_resource_import_file_transitions.rb +1 -1
  88. data/spec/dummy/db/migrate/20140519171220_create_import_request_transitions.rb +1 -1
  89. data/spec/dummy/db/migrate/20140524020735_create_agent_import_file_transitions.rb +1 -1
  90. data/spec/dummy/db/migrate/20140524074813_create_user_import_file_transitions.rb +1 -1
  91. data/spec/dummy/db/migrate/20140614141500_create_resource_export_file_transitions.rb +1 -1
  92. data/spec/dummy/db/migrate/20140709113905_create_user_export_file_transitions.rb +1 -1
  93. data/spec/dummy/db/migrate/20160319144230_create_issn_records.rb +11 -0
  94. data/spec/dummy/db/migrate/20160506144040_create_isbn_records.rb +11 -0
  95. data/spec/dummy/db/migrate/20160703185015_add_most_recent_to_message_transitions.rb +1 -1
  96. data/spec/dummy/db/migrate/20160813191533_add_book_jacket_source_to_library_group.rb +1 -1
  97. data/spec/dummy/db/migrate/20160813191820_add_screenshot_generator_to_library_group.rb +1 -1
  98. data/spec/dummy/db/migrate/20160814165332_add_most_recent_to_message_request_transitions.rb +9 -0
  99. data/spec/dummy/db/migrate/20160820004638_add_attachment_attachment_to_carrier_types.rb +11 -0
  100. data/spec/dummy/db/migrate/20170114174536_add_profile_id_to_user.rb +5 -0
  101. data/spec/dummy/db/migrate/20170116134107_create_issn_record_and_manifestations.rb +11 -0
  102. data/spec/dummy/db/migrate/20170116134120_create_isbn_record_and_manifestations.rb +11 -0
  103. data/spec/dummy/db/migrate/20171014084528_add_header_logo_to_library_group.rb +5 -0
  104. data/spec/dummy/db/migrate/20180107160726_add_constraints_to_most_recent_for_user_import_file_transitions.rb +13 -0
  105. data/spec/dummy/db/migrate/20180107160740_add_constraints_to_most_recent_for_user_export_file_transitions.rb +13 -0
  106. data/spec/dummy/db/migrate/20180107161311_add_constraints_to_most_recent_for_agent_import_file_transitions.rb +13 -0
  107. data/spec/dummy/db/migrate/20180107161331_add_constraints_to_most_recent_for_resource_import_file_transitions.rb +13 -0
  108. data/spec/dummy/db/migrate/20180107161347_add_constraints_to_most_recent_for_resource_export_file_transitions.rb +13 -0
  109. data/spec/dummy/db/migrate/20180107161410_add_constraints_to_most_recent_for_import_request_transitions.rb +13 -0
  110. data/spec/dummy/db/migrate/20180107162659_add_constraints_to_most_recent_for_message_transitions.rb +13 -0
  111. data/spec/dummy/db/migrate/20180107162711_add_constraints_to_most_recent_for_message_request_transitions.rb +13 -0
  112. data/spec/dummy/db/migrate/20181030072731_add_not_null_to_position_on_carrier_type.rb +14 -0
  113. data/spec/dummy/db/migrate/20190102034126_create_doi_records.rb +13 -0
  114. data/spec/dummy/db/migrate/20190208135957_create_active_storage_tables.active_storage.rb +27 -0
  115. data/spec/dummy/db/migrate/20190630113817_add_display_name_translations_to_library_group.rb +12 -0
  116. data/spec/dummy/db/migrate/20190630115523_add_login_banner_translations_to_library_group.rb +6 -0
  117. data/spec/dummy/db/migrate/20190630151446_add_display_name_translations_to_role.rb +5 -0
  118. data/spec/dummy/db/migrate/20190712163038_add_display_name_translations_to_carrier_type.rb +21 -0
  119. data/spec/dummy/db/schema.rb +265 -135
  120. data/spec/dummy/db/test.sqlite3 +0 -0
  121. data/spec/dummy/node_modules/jquery/AUTHORS.txt +278 -0
  122. data/spec/dummy/node_modules/jquery/LICENSE.txt +36 -0
  123. data/spec/dummy/node_modules/jquery/README.md +65 -0
  124. data/spec/dummy/node_modules/jquery/bower.json +14 -0
  125. data/spec/dummy/node_modules/jquery/dist/jquery.js +9814 -0
  126. data/spec/dummy/node_modules/jquery/dist/jquery.min.js +4 -0
  127. data/spec/dummy/node_modules/jquery/dist/jquery.min.map +1 -0
  128. data/spec/dummy/node_modules/jquery/external/sizzle/LICENSE.txt +36 -0
  129. data/spec/dummy/node_modules/jquery/external/sizzle/dist/sizzle.js +2143 -0
  130. data/spec/dummy/node_modules/jquery/external/sizzle/dist/sizzle.min.js +3 -0
  131. data/spec/dummy/node_modules/jquery/external/sizzle/dist/sizzle.min.map +1 -0
  132. data/spec/dummy/node_modules/jquery/package.json +84 -0
  133. data/spec/dummy/node_modules/jquery/src/ajax.js +845 -0
  134. data/spec/dummy/node_modules/jquery/src/ajax/jsonp.js +100 -0
  135. data/spec/dummy/node_modules/jquery/src/ajax/load.js +83 -0
  136. data/spec/dummy/node_modules/jquery/src/ajax/parseJSON.js +13 -0
  137. data/spec/dummy/node_modules/jquery/src/ajax/parseXML.js +27 -0
  138. data/spec/dummy/node_modules/jquery/src/ajax/script.js +68 -0
  139. data/spec/dummy/node_modules/jquery/src/ajax/var/location.js +3 -0
  140. data/spec/dummy/node_modules/jquery/src/ajax/var/nonce.js +5 -0
  141. data/spec/dummy/node_modules/jquery/src/ajax/var/rquery.js +3 -0
  142. data/spec/dummy/node_modules/jquery/src/ajax/xhr.js +167 -0
  143. data/spec/dummy/node_modules/jquery/src/attributes.js +11 -0
  144. data/spec/dummy/node_modules/jquery/src/attributes/attr.js +142 -0
  145. data/spec/dummy/node_modules/jquery/src/attributes/classes.js +177 -0
  146. data/spec/dummy/node_modules/jquery/src/attributes/prop.js +125 -0
  147. data/spec/dummy/node_modules/jquery/src/attributes/support.js +36 -0
  148. data/spec/dummy/node_modules/jquery/src/attributes/val.js +177 -0
  149. data/spec/dummy/node_modules/jquery/src/callbacks.js +232 -0
  150. data/spec/dummy/node_modules/jquery/src/core.js +494 -0
  151. data/spec/dummy/node_modules/jquery/src/core/access.js +65 -0
  152. data/spec/dummy/node_modules/jquery/src/core/init.js +134 -0
  153. data/spec/dummy/node_modules/jquery/src/core/parseHTML.js +41 -0
  154. data/spec/dummy/node_modules/jquery/src/core/ready.js +103 -0
  155. data/spec/dummy/node_modules/jquery/src/core/var/rsingleTag.js +5 -0
  156. data/spec/dummy/node_modules/jquery/src/css.js +502 -0
  157. data/spec/dummy/node_modules/jquery/src/css/addGetHookIf.js +24 -0
  158. data/spec/dummy/node_modules/jquery/src/css/adjustCSS.js +65 -0
  159. data/spec/dummy/node_modules/jquery/src/css/curCSS.js +60 -0
  160. data/spec/dummy/node_modules/jquery/src/css/defaultDisplay.js +72 -0
  161. data/spec/dummy/node_modules/jquery/src/css/hiddenVisibleSelectors.js +18 -0
  162. data/spec/dummy/node_modules/jquery/src/css/showHide.js +48 -0
  163. data/spec/dummy/node_modules/jquery/src/css/support.js +121 -0
  164. data/spec/dummy/node_modules/jquery/src/css/var/cssExpand.js +3 -0
  165. data/spec/dummy/node_modules/jquery/src/css/var/getStyles.js +15 -0
  166. data/spec/dummy/node_modules/jquery/src/css/var/isHidden.js +16 -0
  167. data/spec/dummy/node_modules/jquery/src/css/var/rmargin.js +3 -0
  168. data/spec/dummy/node_modules/jquery/src/css/var/rnumnonpx.js +5 -0
  169. data/spec/dummy/node_modules/jquery/src/css/var/swap.js +24 -0
  170. data/spec/dummy/node_modules/jquery/src/data.js +187 -0
  171. data/spec/dummy/node_modules/jquery/src/data/Data.js +200 -0
  172. data/spec/dummy/node_modules/jquery/src/data/var/acceptData.js +18 -0
  173. data/spec/dummy/node_modules/jquery/src/data/var/dataPriv.js +5 -0
  174. data/spec/dummy/node_modules/jquery/src/data/var/dataUser.js +5 -0
  175. data/spec/dummy/node_modules/jquery/src/deferred.js +158 -0
  176. data/spec/dummy/node_modules/jquery/src/deprecated.js +32 -0
  177. data/spec/dummy/node_modules/jquery/src/dimensions.js +54 -0
  178. data/spec/dummy/node_modules/jquery/src/effects.js +629 -0
  179. data/spec/dummy/node_modules/jquery/src/effects/Tween.js +121 -0
  180. data/spec/dummy/node_modules/jquery/src/effects/animatedSelector.js +13 -0
  181. data/spec/dummy/node_modules/jquery/src/event.js +711 -0
  182. data/spec/dummy/node_modules/jquery/src/event/ajax.js +20 -0
  183. data/spec/dummy/node_modules/jquery/src/event/alias.js +27 -0
  184. data/spec/dummy/node_modules/jquery/src/event/focusin.js +53 -0
  185. data/spec/dummy/node_modules/jquery/src/event/support.js +9 -0
  186. data/spec/dummy/node_modules/jquery/src/event/trigger.js +183 -0
  187. data/spec/dummy/node_modules/jquery/src/exports/amd.js +24 -0
  188. data/spec/dummy/node_modules/jquery/src/exports/global.js +26 -0
  189. data/spec/dummy/node_modules/jquery/src/intro.js +44 -0
  190. data/spec/dummy/node_modules/jquery/src/jquery.js +37 -0
  191. data/spec/dummy/node_modules/jquery/src/manipulation.js +481 -0
  192. data/spec/dummy/node_modules/jquery/src/manipulation/_evalUrl.js +20 -0
  193. data/spec/dummy/node_modules/jquery/src/manipulation/buildFragment.js +102 -0
  194. data/spec/dummy/node_modules/jquery/src/manipulation/getAll.js +21 -0
  195. data/spec/dummy/node_modules/jquery/src/manipulation/setGlobalEval.js +20 -0
  196. data/spec/dummy/node_modules/jquery/src/manipulation/support.js +33 -0
  197. data/spec/dummy/node_modules/jquery/src/manipulation/var/rcheckableType.js +3 -0
  198. data/spec/dummy/node_modules/jquery/src/manipulation/var/rscriptType.js +3 -0
  199. data/spec/dummy/node_modules/jquery/src/manipulation/var/rtagName.js +3 -0
  200. data/spec/dummy/node_modules/jquery/src/manipulation/wrapMap.js +27 -0
  201. data/spec/dummy/node_modules/jquery/src/offset.js +218 -0
  202. data/spec/dummy/node_modules/jquery/src/outro.js +2 -0
  203. data/spec/dummy/node_modules/jquery/src/queue.js +143 -0
  204. data/spec/dummy/node_modules/jquery/src/queue/delay.js +22 -0
  205. data/spec/dummy/node_modules/jquery/src/selector-native.js +211 -0
  206. data/spec/dummy/node_modules/jquery/src/selector-sizzle.js +14 -0
  207. data/spec/dummy/node_modules/jquery/src/selector.js +1 -0
  208. data/spec/dummy/node_modules/jquery/src/serialize.js +125 -0
  209. data/spec/dummy/node_modules/jquery/src/traversing.js +175 -0
  210. data/spec/dummy/node_modules/jquery/src/traversing/findFilter.js +100 -0
  211. data/spec/dummy/node_modules/jquery/src/traversing/var/dir.js +20 -0
  212. data/spec/dummy/node_modules/jquery/src/traversing/var/rneedsContext.js +6 -0
  213. data/spec/dummy/node_modules/jquery/src/traversing/var/siblings.js +15 -0
  214. data/spec/dummy/node_modules/jquery/src/var/arr.js +3 -0
  215. data/spec/dummy/node_modules/jquery/src/var/class2type.js +5 -0
  216. data/spec/dummy/node_modules/jquery/src/var/concat.js +5 -0
  217. data/spec/dummy/node_modules/jquery/src/var/document.js +3 -0
  218. data/spec/dummy/node_modules/jquery/src/var/documentElement.js +5 -0
  219. data/spec/dummy/node_modules/jquery/src/var/hasOwn.js +5 -0
  220. data/spec/dummy/node_modules/jquery/src/var/indexOf.js +5 -0
  221. data/spec/dummy/node_modules/jquery/src/var/pnum.js +3 -0
  222. data/spec/dummy/node_modules/jquery/src/var/push.js +5 -0
  223. data/spec/dummy/node_modules/jquery/src/var/rcssNum.js +7 -0
  224. data/spec/dummy/node_modules/jquery/src/var/rnotwhite.js +3 -0
  225. data/spec/dummy/node_modules/jquery/src/var/slice.js +5 -0
  226. data/spec/dummy/node_modules/jquery/src/var/support.js +5 -0
  227. data/spec/dummy/node_modules/jquery/src/var/toString.js +5 -0
  228. data/spec/dummy/node_modules/jquery/src/wrap.js +79 -0
  229. data/spec/dummy/package.json +5 -0
  230. data/spec/dummy/public/system/user_export_files/user_exports/000/000/003/original/user_export_file_20141214-44379-1fdvvdb.txt +8 -0
  231. data/spec/dummy/public/system/user_export_files/user_exports/000/000/003/original/user_export_file_20141225-67268-nerc4o.txt +8 -0
  232. data/spec/dummy/public/system/user_export_files/user_exports/000/000/003/original/user_export_file_20150123-14447-1lf8lc5.txt +8 -0
  233. data/spec/dummy/public/system/user_export_files/user_exports/000/000/004/original/user_export_file_20141214-44379-1exy9mg.txt +8 -0
  234. data/spec/dummy/public/system/user_export_files/user_exports/000/000/004/original/user_export_file_20141217-58343-ztcmne.txt +8 -0
  235. data/spec/dummy/public/system/user_export_files/user_exports/000/000/004/original/user_export_file_20141217-58490-hnqvxg.txt +8 -0
  236. data/spec/dummy/public/system/user_export_files/user_exports/000/000/004/original/user_export_file_20141217-58609-5iyax7.txt +8 -0
  237. data/spec/dummy/public/system/user_export_files/user_exports/000/000/004/original/user_export_file_20141217-58776-1e9gg8b.txt +8 -0
  238. data/spec/dummy/public/system/user_export_files/user_exports/000/000/004/original/user_export_file_20141217-58951-zfxzc6.txt +8 -0
  239. data/spec/dummy/public/system/user_export_files/user_exports/000/000/004/original/user_export_file_20141217-59095-l3yd2t.txt +8 -0
  240. data/spec/dummy/public/system/user_export_files/user_exports/000/000/004/original/user_export_file_20141217-59220-1mgboh1.txt +8 -0
  241. data/spec/dummy/public/system/user_export_files/user_exports/000/000/004/original/user_export_file_20141217-59533-1ie807t.txt +8 -0
  242. data/spec/dummy/public/system/user_export_files/user_exports/000/000/004/original/user_export_file_20141217-59716-m8uy9h.txt +8 -0
  243. data/spec/dummy/public/system/user_export_files/user_exports/000/000/004/original/user_export_file_20141217-59834-1fcv3ir.txt +8 -0
  244. data/spec/dummy/public/system/user_export_files/user_exports/000/000/004/original/user_export_file_20141217-59932-14y6v8m.txt +8 -0
  245. data/spec/dummy/public/system/user_export_files/user_exports/000/000/004/original/user_export_file_20141217-60422-ksg8ww.txt +8 -0
  246. data/spec/dummy/public/system/user_export_files/user_exports/000/000/004/original/user_export_file_20141217-60507-j2u5ra.txt +8 -0
  247. data/spec/dummy/public/system/user_export_files/user_exports/000/000/004/original/user_export_file_20141217-60619-2j2h65.txt +8 -0
  248. data/spec/dummy/public/system/user_export_files/user_exports/000/000/004/original/user_export_file_20141217-60822-1xdqwcc.txt +8 -0
  249. data/spec/dummy/public/system/user_export_files/user_exports/000/000/004/original/user_export_file_20141217-60925-4d4ce1.txt +8 -0
  250. data/spec/dummy/public/system/user_export_files/user_exports/000/000/004/original/user_export_file_20141217-61046-y4nspn.txt +8 -0
  251. data/spec/dummy/public/system/user_export_files/user_exports/000/000/004/original/user_export_file_20141217-62053-1qsuqzd.txt +8 -0
  252. data/spec/dummy/public/system/user_export_files/user_exports/000/000/004/original/user_export_file_20141217-62204-3quf6j.txt +8 -0
  253. data/spec/dummy/public/system/user_export_files/user_exports/000/000/004/original/user_export_file_20141217-62472-w05wkf.txt +8 -0
  254. data/spec/dummy/public/system/user_export_files/user_exports/000/000/004/original/user_export_file_20141218-67112-1viizrs.txt +8 -0
  255. data/spec/dummy/public/system/user_export_files/user_exports/000/000/004/original/user_export_file_20141218-67232-11tcrfq.txt +8 -0
  256. data/spec/dummy/public/system/user_export_files/user_exports/000/000/004/original/user_export_file_20141218-67342-1bajplt.txt +8 -0
  257. data/spec/dummy/public/system/user_export_files/user_exports/000/000/004/original/user_export_file_20141218-67475-gmnmq4.txt +8 -0
  258. data/spec/dummy/public/system/user_export_files/user_exports/000/000/004/original/user_export_file_20141220-74670-mxvkc6.txt +8 -0
  259. data/spec/dummy/public/system/user_export_files/user_exports/000/000/004/original/user_export_file_20141220-74954-1m11avl.txt +8 -0
  260. data/spec/dummy/public/system/user_export_files/user_exports/000/000/004/original/user_export_file_20141220-75054-1ac0xmz.txt +8 -0
  261. data/spec/dummy/public/system/user_export_files/user_exports/000/000/004/original/user_export_file_20141220-75135-1r3z1p.txt +8 -0
  262. data/spec/dummy/public/system/user_export_files/user_exports/000/000/004/original/user_export_file_20141220-75289-18xm9sx.txt +8 -0
  263. data/spec/dummy/public/system/user_export_files/user_exports/000/000/004/original/user_export_file_20141220-75372-1ab1rn4.txt +8 -0
  264. data/spec/dummy/public/system/user_export_files/user_exports/000/000/004/original/user_export_file_20141220-75612-14gavh8.txt +8 -0
  265. data/spec/dummy/public/system/user_export_files/user_exports/000/000/004/original/user_export_file_20141220-75709-xgjjja.txt +8 -0
  266. data/spec/dummy/public/system/user_export_files/user_exports/000/000/004/original/user_export_file_20141220-75832-uej6ye.txt +8 -0
  267. data/spec/dummy/public/system/user_export_files/user_exports/000/000/004/original/user_export_file_20141220-75905-13kbauv.txt +8 -0
  268. data/spec/dummy/public/system/user_export_files/user_exports/000/000/004/original/user_export_file_20141220-76001-13yt1kv.txt +8 -0
  269. data/spec/dummy/public/system/user_export_files/user_exports/000/000/004/original/user_export_file_20141220-76158-1pitds8.txt +8 -0
  270. data/spec/dummy/public/system/user_export_files/user_exports/000/000/004/original/user_export_file_20141220-76526-q0rb2j.txt +8 -0
  271. data/spec/dummy/public/system/user_export_files/user_exports/000/000/004/original/user_export_file_20141220-76848-ya95k2.txt +8 -0
  272. data/spec/dummy/public/system/user_export_files/user_exports/000/000/004/original/user_export_file_20141220-88475-165899e.txt +8 -0
  273. data/spec/dummy/public/system/user_export_files/user_exports/000/000/004/original/user_export_file_20141220-89902-paupo2.txt +8 -0
  274. data/spec/dummy/public/system/user_export_files/user_exports/000/000/004/original/user_export_file_20141220-90001-1eg9w1e.txt +8 -0
  275. data/spec/dummy/public/system/user_export_files/user_exports/000/000/004/original/user_export_file_20141220-90157-bcu8m7.txt +8 -0
  276. data/spec/dummy/public/system/user_export_files/user_exports/000/000/004/original/user_export_file_20141221-7985-u6s6l1.txt +8 -0
  277. data/spec/dummy/public/system/user_export_files/user_exports/000/000/004/original/user_export_file_20141224-44711-1amcibm.txt +8 -0
  278. data/spec/dummy/public/system/user_export_files/user_exports/000/000/004/original/user_export_file_20141224-44828-ap6n8d.txt +8 -0
  279. data/spec/dummy/public/system/user_export_files/user_exports/000/000/004/original/user_export_file_20141225-48701-14hbzl1.txt +8 -0
  280. data/spec/dummy/public/system/user_export_files/user_exports/000/000/004/original/user_export_file_20141225-49875-1pc6esj.txt +8 -0
  281. data/spec/dummy/public/system/user_export_files/user_exports/000/000/004/original/user_export_file_20141225-64608-1wo1bpq.txt +8 -0
  282. data/spec/dummy/public/system/user_export_files/user_exports/000/000/004/original/user_export_file_20141225-64763-daej3l.txt +8 -0
  283. data/spec/dummy/public/system/user_export_files/user_exports/000/000/004/original/user_export_file_20141225-65000-1a7srlh.txt +8 -0
  284. data/spec/dummy/public/system/user_export_files/user_exports/000/000/004/original/user_export_file_20141225-65196-ggad1c.txt +8 -0
  285. data/spec/dummy/public/system/user_export_files/user_exports/000/000/004/original/user_export_file_20141225-65273-tt5ev2.txt +8 -0
  286. data/spec/dummy/public/system/user_export_files/user_exports/000/000/004/original/user_export_file_20141225-65424-1d17hts.txt +8 -0
  287. data/spec/dummy/public/system/user_export_files/user_exports/000/000/004/original/user_export_file_20141225-65662-1gqvlj3.txt +8 -0
  288. data/spec/dummy/public/system/user_export_files/user_exports/000/000/004/original/user_export_file_20141225-65725-1qpz2tm.txt +8 -0
  289. data/spec/dummy/public/system/user_export_files/user_exports/000/000/004/original/user_export_file_20141225-65807-t7cfln.txt +8 -0
  290. data/spec/dummy/public/system/user_export_files/user_exports/000/000/004/original/user_export_file_20141225-65962-161pm01.txt +8 -0
  291. data/spec/dummy/public/system/user_export_files/user_exports/000/000/004/original/user_export_file_20141225-66069-h9ftv6.txt +8 -0
  292. data/spec/dummy/public/system/user_export_files/user_exports/000/000/004/original/user_export_file_20141225-66327-hsz0j4.txt +8 -0
  293. data/spec/dummy/public/system/user_export_files/user_exports/000/000/004/original/user_export_file_20141225-67268-hqxt6v.txt +8 -0
  294. data/spec/dummy/public/system/user_export_files/user_exports/000/000/004/original/user_export_file_20150119-54567-1exwx4r.txt +8 -0
  295. data/spec/dummy/public/system/user_export_files/user_exports/000/000/004/original/user_export_file_20150120-80886-1whqn2s.txt +8 -0
  296. data/spec/dummy/public/system/user_export_files/user_exports/000/000/004/original/user_export_file_20150120-81115-hlvwc4.txt +8 -0
  297. data/spec/dummy/public/system/user_export_files/user_exports/000/000/004/original/user_export_file_20150121-86495-navftm.txt +8 -0
  298. data/spec/dummy/public/system/user_export_files/user_exports/000/000/004/original/user_export_file_20150121-86986-894a3i.txt +8 -0
  299. data/spec/dummy/public/system/user_export_files/user_exports/000/000/004/original/user_export_file_20150122-4492-vaml86.txt +8 -0
  300. data/spec/dummy/public/system/user_export_files/user_exports/000/000/004/original/user_export_file_20150123-14447-gy0ver.txt +8 -0
  301. data/spec/dummy/yarn.lock +8 -0
  302. data/spec/factories/agent.rb +1 -1
  303. data/spec/factories/library.rb +1 -1
  304. data/spec/factories/profile.rb +3 -3
  305. data/spec/factories/user.rb +25 -31
  306. data/spec/fixtures/carrier_types.yml +23 -24
  307. data/spec/fixtures/content_types.yml +78 -22
  308. data/spec/fixtures/libraries.yml +28 -31
  309. data/spec/fixtures/library_groups.yml +33 -16
  310. data/spec/fixtures/manifestations.yml +32 -27
  311. data/spec/fixtures/roles.yml +11 -12
  312. data/spec/fixtures/shelves.yml +14 -15
  313. data/spec/fixtures/user_groups.yml +9 -16
  314. data/spec/fixtures/user_has_roles.yml +2 -1
  315. data/spec/rails_helper.rb +11 -1
  316. data/spec/system/page_spec.rb +35 -0
  317. data/spec/views/page/configuration.html.erb_spec.rb +1 -1
  318. metadata +479 -93
  319. data/app/assets/javascripts/enju_leaf.js +0 -12
  320. data/app/assets/javascripts/mobile.js +0 -4
  321. data/spec/dummy/db/migrate/20151213070943_add_translation_table_to_library_group.rb +0 -25
  322. data/spec/dummy/db/migrate/20151213072705_add_footer_banner_to_library_group.rb +0 -22
  323. data/vendor/assets/javascripts/jquery.colorbox.js +0 -1105
  324. data/vendor/assets/javascripts/jquery.powertip.js +0 -1395
  325. data/vendor/assets/stylesheets/colorbox.css +0 -70
  326. data/vendor/assets/stylesheets/jquery.powertip.css +0 -105
@@ -0,0 +1,36 @@
1
+ define( [
2
+ "../var/document",
3
+ "../var/support"
4
+ ], function( document, support ) {
5
+
6
+ ( function() {
7
+ var input = document.createElement( "input" ),
8
+ select = document.createElement( "select" ),
9
+ opt = select.appendChild( document.createElement( "option" ) );
10
+
11
+ input.type = "checkbox";
12
+
13
+ // Support: iOS<=5.1, Android<=4.2+
14
+ // Default value for a checkbox should be "on"
15
+ support.checkOn = input.value !== "";
16
+
17
+ // Support: IE<=11+
18
+ // Must access selectedIndex to make default options select
19
+ support.optSelected = opt.selected;
20
+
21
+ // Support: Android<=2.3
22
+ // Options inside disabled selects are incorrectly marked as disabled
23
+ select.disabled = true;
24
+ support.optDisabled = !opt.disabled;
25
+
26
+ // Support: IE<=11+
27
+ // An input loses its value after becoming a radio
28
+ input = document.createElement( "input" );
29
+ input.value = "t";
30
+ input.type = "radio";
31
+ support.radioValue = input.value === "t";
32
+ } )();
33
+
34
+ return support;
35
+
36
+ } );
@@ -0,0 +1,177 @@
1
+ define( [
2
+ "../core",
3
+ "./support",
4
+ "../core/init"
5
+ ], function( jQuery, support ) {
6
+
7
+ var rreturn = /\r/g,
8
+ rspaces = /[\x20\t\r\n\f]+/g;
9
+
10
+ jQuery.fn.extend( {
11
+ val: function( value ) {
12
+ var hooks, ret, isFunction,
13
+ elem = this[ 0 ];
14
+
15
+ if ( !arguments.length ) {
16
+ if ( elem ) {
17
+ hooks = jQuery.valHooks[ elem.type ] ||
18
+ jQuery.valHooks[ elem.nodeName.toLowerCase() ];
19
+
20
+ if ( hooks &&
21
+ "get" in hooks &&
22
+ ( ret = hooks.get( elem, "value" ) ) !== undefined
23
+ ) {
24
+ return ret;
25
+ }
26
+
27
+ ret = elem.value;
28
+
29
+ return typeof ret === "string" ?
30
+
31
+ // Handle most common string cases
32
+ ret.replace( rreturn, "" ) :
33
+
34
+ // Handle cases where value is null/undef or number
35
+ ret == null ? "" : ret;
36
+ }
37
+
38
+ return;
39
+ }
40
+
41
+ isFunction = jQuery.isFunction( value );
42
+
43
+ return this.each( function( i ) {
44
+ var val;
45
+
46
+ if ( this.nodeType !== 1 ) {
47
+ return;
48
+ }
49
+
50
+ if ( isFunction ) {
51
+ val = value.call( this, i, jQuery( this ).val() );
52
+ } else {
53
+ val = value;
54
+ }
55
+
56
+ // Treat null/undefined as ""; convert numbers to string
57
+ if ( val == null ) {
58
+ val = "";
59
+
60
+ } else if ( typeof val === "number" ) {
61
+ val += "";
62
+
63
+ } else if ( jQuery.isArray( val ) ) {
64
+ val = jQuery.map( val, function( value ) {
65
+ return value == null ? "" : value + "";
66
+ } );
67
+ }
68
+
69
+ hooks = jQuery.valHooks[ this.type ] || jQuery.valHooks[ this.nodeName.toLowerCase() ];
70
+
71
+ // If set returns undefined, fall back to normal setting
72
+ if ( !hooks || !( "set" in hooks ) || hooks.set( this, val, "value" ) === undefined ) {
73
+ this.value = val;
74
+ }
75
+ } );
76
+ }
77
+ } );
78
+
79
+ jQuery.extend( {
80
+ valHooks: {
81
+ option: {
82
+ get: function( elem ) {
83
+
84
+ var val = jQuery.find.attr( elem, "value" );
85
+ return val != null ?
86
+ val :
87
+
88
+ // Support: IE10-11+
89
+ // option.text throws exceptions (#14686, #14858)
90
+ // Strip and collapse whitespace
91
+ // https://html.spec.whatwg.org/#strip-and-collapse-whitespace
92
+ jQuery.trim( jQuery.text( elem ) ).replace( rspaces, " " );
93
+ }
94
+ },
95
+ select: {
96
+ get: function( elem ) {
97
+ var value, option,
98
+ options = elem.options,
99
+ index = elem.selectedIndex,
100
+ one = elem.type === "select-one" || index < 0,
101
+ values = one ? null : [],
102
+ max = one ? index + 1 : options.length,
103
+ i = index < 0 ?
104
+ max :
105
+ one ? index : 0;
106
+
107
+ // Loop through all the selected options
108
+ for ( ; i < max; i++ ) {
109
+ option = options[ i ];
110
+
111
+ // IE8-9 doesn't update selected after form reset (#2551)
112
+ if ( ( option.selected || i === index ) &&
113
+
114
+ // Don't return options that are disabled or in a disabled optgroup
115
+ ( support.optDisabled ?
116
+ !option.disabled : option.getAttribute( "disabled" ) === null ) &&
117
+ ( !option.parentNode.disabled ||
118
+ !jQuery.nodeName( option.parentNode, "optgroup" ) ) ) {
119
+
120
+ // Get the specific value for the option
121
+ value = jQuery( option ).val();
122
+
123
+ // We don't need an array for one selects
124
+ if ( one ) {
125
+ return value;
126
+ }
127
+
128
+ // Multi-Selects return an array
129
+ values.push( value );
130
+ }
131
+ }
132
+
133
+ return values;
134
+ },
135
+
136
+ set: function( elem, value ) {
137
+ var optionSet, option,
138
+ options = elem.options,
139
+ values = jQuery.makeArray( value ),
140
+ i = options.length;
141
+
142
+ while ( i-- ) {
143
+ option = options[ i ];
144
+ if ( option.selected =
145
+ jQuery.inArray( jQuery.valHooks.option.get( option ), values ) > -1
146
+ ) {
147
+ optionSet = true;
148
+ }
149
+ }
150
+
151
+ // Force browsers to behave consistently when non-matching value is set
152
+ if ( !optionSet ) {
153
+ elem.selectedIndex = -1;
154
+ }
155
+ return values;
156
+ }
157
+ }
158
+ }
159
+ } );
160
+
161
+ // Radios and checkboxes getter/setter
162
+ jQuery.each( [ "radio", "checkbox" ], function() {
163
+ jQuery.valHooks[ this ] = {
164
+ set: function( elem, value ) {
165
+ if ( jQuery.isArray( value ) ) {
166
+ return ( elem.checked = jQuery.inArray( jQuery( elem ).val(), value ) > -1 );
167
+ }
168
+ }
169
+ };
170
+ if ( !support.checkOn ) {
171
+ jQuery.valHooks[ this ].get = function( elem ) {
172
+ return elem.getAttribute( "value" ) === null ? "on" : elem.value;
173
+ };
174
+ }
175
+ } );
176
+
177
+ } );
@@ -0,0 +1,232 @@
1
+ define( [
2
+ "./core",
3
+ "./var/rnotwhite"
4
+ ], function( jQuery, rnotwhite ) {
5
+
6
+ // Convert String-formatted options into Object-formatted ones
7
+ function createOptions( options ) {
8
+ var object = {};
9
+ jQuery.each( options.match( rnotwhite ) || [], function( _, flag ) {
10
+ object[ flag ] = true;
11
+ } );
12
+ return object;
13
+ }
14
+
15
+ /*
16
+ * Create a callback list using the following parameters:
17
+ *
18
+ * options: an optional list of space-separated options that will change how
19
+ * the callback list behaves or a more traditional option object
20
+ *
21
+ * By default a callback list will act like an event callback list and can be
22
+ * "fired" multiple times.
23
+ *
24
+ * Possible options:
25
+ *
26
+ * once: will ensure the callback list can only be fired once (like a Deferred)
27
+ *
28
+ * memory: will keep track of previous values and will call any callback added
29
+ * after the list has been fired right away with the latest "memorized"
30
+ * values (like a Deferred)
31
+ *
32
+ * unique: will ensure a callback can only be added once (no duplicate in the list)
33
+ *
34
+ * stopOnFalse: interrupt callings when a callback returns false
35
+ *
36
+ */
37
+ jQuery.Callbacks = function( options ) {
38
+
39
+ // Convert options from String-formatted to Object-formatted if needed
40
+ // (we check in cache first)
41
+ options = typeof options === "string" ?
42
+ createOptions( options ) :
43
+ jQuery.extend( {}, options );
44
+
45
+ var // Flag to know if list is currently firing
46
+ firing,
47
+
48
+ // Last fire value for non-forgettable lists
49
+ memory,
50
+
51
+ // Flag to know if list was already fired
52
+ fired,
53
+
54
+ // Flag to prevent firing
55
+ locked,
56
+
57
+ // Actual callback list
58
+ list = [],
59
+
60
+ // Queue of execution data for repeatable lists
61
+ queue = [],
62
+
63
+ // Index of currently firing callback (modified by add/remove as needed)
64
+ firingIndex = -1,
65
+
66
+ // Fire callbacks
67
+ fire = function() {
68
+
69
+ // Enforce single-firing
70
+ locked = options.once;
71
+
72
+ // Execute callbacks for all pending executions,
73
+ // respecting firingIndex overrides and runtime changes
74
+ fired = firing = true;
75
+ for ( ; queue.length; firingIndex = -1 ) {
76
+ memory = queue.shift();
77
+ while ( ++firingIndex < list.length ) {
78
+
79
+ // Run callback and check for early termination
80
+ if ( list[ firingIndex ].apply( memory[ 0 ], memory[ 1 ] ) === false &&
81
+ options.stopOnFalse ) {
82
+
83
+ // Jump to end and forget the data so .add doesn't re-fire
84
+ firingIndex = list.length;
85
+ memory = false;
86
+ }
87
+ }
88
+ }
89
+
90
+ // Forget the data if we're done with it
91
+ if ( !options.memory ) {
92
+ memory = false;
93
+ }
94
+
95
+ firing = false;
96
+
97
+ // Clean up if we're done firing for good
98
+ if ( locked ) {
99
+
100
+ // Keep an empty list if we have data for future add calls
101
+ if ( memory ) {
102
+ list = [];
103
+
104
+ // Otherwise, this object is spent
105
+ } else {
106
+ list = "";
107
+ }
108
+ }
109
+ },
110
+
111
+ // Actual Callbacks object
112
+ self = {
113
+
114
+ // Add a callback or a collection of callbacks to the list
115
+ add: function() {
116
+ if ( list ) {
117
+
118
+ // If we have memory from a past run, we should fire after adding
119
+ if ( memory && !firing ) {
120
+ firingIndex = list.length - 1;
121
+ queue.push( memory );
122
+ }
123
+
124
+ ( function add( args ) {
125
+ jQuery.each( args, function( _, arg ) {
126
+ if ( jQuery.isFunction( arg ) ) {
127
+ if ( !options.unique || !self.has( arg ) ) {
128
+ list.push( arg );
129
+ }
130
+ } else if ( arg && arg.length && jQuery.type( arg ) !== "string" ) {
131
+
132
+ // Inspect recursively
133
+ add( arg );
134
+ }
135
+ } );
136
+ } )( arguments );
137
+
138
+ if ( memory && !firing ) {
139
+ fire();
140
+ }
141
+ }
142
+ return this;
143
+ },
144
+
145
+ // Remove a callback from the list
146
+ remove: function() {
147
+ jQuery.each( arguments, function( _, arg ) {
148
+ var index;
149
+ while ( ( index = jQuery.inArray( arg, list, index ) ) > -1 ) {
150
+ list.splice( index, 1 );
151
+
152
+ // Handle firing indexes
153
+ if ( index <= firingIndex ) {
154
+ firingIndex--;
155
+ }
156
+ }
157
+ } );
158
+ return this;
159
+ },
160
+
161
+ // Check if a given callback is in the list.
162
+ // If no argument is given, return whether or not list has callbacks attached.
163
+ has: function( fn ) {
164
+ return fn ?
165
+ jQuery.inArray( fn, list ) > -1 :
166
+ list.length > 0;
167
+ },
168
+
169
+ // Remove all callbacks from the list
170
+ empty: function() {
171
+ if ( list ) {
172
+ list = [];
173
+ }
174
+ return this;
175
+ },
176
+
177
+ // Disable .fire and .add
178
+ // Abort any current/pending executions
179
+ // Clear all callbacks and values
180
+ disable: function() {
181
+ locked = queue = [];
182
+ list = memory = "";
183
+ return this;
184
+ },
185
+ disabled: function() {
186
+ return !list;
187
+ },
188
+
189
+ // Disable .fire
190
+ // Also disable .add unless we have memory (since it would have no effect)
191
+ // Abort any pending executions
192
+ lock: function() {
193
+ locked = queue = [];
194
+ if ( !memory ) {
195
+ list = memory = "";
196
+ }
197
+ return this;
198
+ },
199
+ locked: function() {
200
+ return !!locked;
201
+ },
202
+
203
+ // Call all callbacks with the given context and arguments
204
+ fireWith: function( context, args ) {
205
+ if ( !locked ) {
206
+ args = args || [];
207
+ args = [ context, args.slice ? args.slice() : args ];
208
+ queue.push( args );
209
+ if ( !firing ) {
210
+ fire();
211
+ }
212
+ }
213
+ return this;
214
+ },
215
+
216
+ // Call all the callbacks with the given arguments
217
+ fire: function() {
218
+ self.fireWith( this, arguments );
219
+ return this;
220
+ },
221
+
222
+ // To know if the callbacks have already been called at least once
223
+ fired: function() {
224
+ return !!fired;
225
+ }
226
+ };
227
+
228
+ return self;
229
+ };
230
+
231
+ return jQuery;
232
+ } );
@@ -0,0 +1,494 @@
1
+ define( [
2
+ "./var/arr",
3
+ "./var/document",
4
+ "./var/slice",
5
+ "./var/concat",
6
+ "./var/push",
7
+ "./var/indexOf",
8
+ "./var/class2type",
9
+ "./var/toString",
10
+ "./var/hasOwn",
11
+ "./var/support"
12
+ ], function( arr, document, slice, concat, push, indexOf, class2type, toString, hasOwn, support ) {
13
+
14
+ var
15
+ version = "@VERSION",
16
+
17
+ // Define a local copy of jQuery
18
+ jQuery = function( selector, context ) {
19
+
20
+ // The jQuery object is actually just the init constructor 'enhanced'
21
+ // Need init if jQuery is called (just allow error to be thrown if not included)
22
+ return new jQuery.fn.init( selector, context );
23
+ },
24
+
25
+ // Support: Android<4.1
26
+ // Make sure we trim BOM and NBSP
27
+ rtrim = /^[\s\uFEFF\xA0]+|[\s\uFEFF\xA0]+$/g,
28
+
29
+ // Matches dashed string for camelizing
30
+ rmsPrefix = /^-ms-/,
31
+ rdashAlpha = /-([\da-z])/gi,
32
+
33
+ // Used by jQuery.camelCase as callback to replace()
34
+ fcamelCase = function( all, letter ) {
35
+ return letter.toUpperCase();
36
+ };
37
+
38
+ jQuery.fn = jQuery.prototype = {
39
+
40
+ // The current version of jQuery being used
41
+ jquery: version,
42
+
43
+ constructor: jQuery,
44
+
45
+ // Start with an empty selector
46
+ selector: "",
47
+
48
+ // The default length of a jQuery object is 0
49
+ length: 0,
50
+
51
+ toArray: function() {
52
+ return slice.call( this );
53
+ },
54
+
55
+ // Get the Nth element in the matched element set OR
56
+ // Get the whole matched element set as a clean array
57
+ get: function( num ) {
58
+ return num != null ?
59
+
60
+ // Return just the one element from the set
61
+ ( num < 0 ? this[ num + this.length ] : this[ num ] ) :
62
+
63
+ // Return all the elements in a clean array
64
+ slice.call( this );
65
+ },
66
+
67
+ // Take an array of elements and push it onto the stack
68
+ // (returning the new matched element set)
69
+ pushStack: function( elems ) {
70
+
71
+ // Build a new jQuery matched element set
72
+ var ret = jQuery.merge( this.constructor(), elems );
73
+
74
+ // Add the old object onto the stack (as a reference)
75
+ ret.prevObject = this;
76
+ ret.context = this.context;
77
+
78
+ // Return the newly-formed element set
79
+ return ret;
80
+ },
81
+
82
+ // Execute a callback for every element in the matched set.
83
+ each: function( callback ) {
84
+ return jQuery.each( this, callback );
85
+ },
86
+
87
+ map: function( callback ) {
88
+ return this.pushStack( jQuery.map( this, function( elem, i ) {
89
+ return callback.call( elem, i, elem );
90
+ } ) );
91
+ },
92
+
93
+ slice: function() {
94
+ return this.pushStack( slice.apply( this, arguments ) );
95
+ },
96
+
97
+ first: function() {
98
+ return this.eq( 0 );
99
+ },
100
+
101
+ last: function() {
102
+ return this.eq( -1 );
103
+ },
104
+
105
+ eq: function( i ) {
106
+ var len = this.length,
107
+ j = +i + ( i < 0 ? len : 0 );
108
+ return this.pushStack( j >= 0 && j < len ? [ this[ j ] ] : [] );
109
+ },
110
+
111
+ end: function() {
112
+ return this.prevObject || this.constructor();
113
+ },
114
+
115
+ // For internal use only.
116
+ // Behaves like an Array's method, not like a jQuery method.
117
+ push: push,
118
+ sort: arr.sort,
119
+ splice: arr.splice
120
+ };
121
+
122
+ jQuery.extend = jQuery.fn.extend = function() {
123
+ var options, name, src, copy, copyIsArray, clone,
124
+ target = arguments[ 0 ] || {},
125
+ i = 1,
126
+ length = arguments.length,
127
+ deep = false;
128
+
129
+ // Handle a deep copy situation
130
+ if ( typeof target === "boolean" ) {
131
+ deep = target;
132
+
133
+ // Skip the boolean and the target
134
+ target = arguments[ i ] || {};
135
+ i++;
136
+ }
137
+
138
+ // Handle case when target is a string or something (possible in deep copy)
139
+ if ( typeof target !== "object" && !jQuery.isFunction( target ) ) {
140
+ target = {};
141
+ }
142
+
143
+ // Extend jQuery itself if only one argument is passed
144
+ if ( i === length ) {
145
+ target = this;
146
+ i--;
147
+ }
148
+
149
+ for ( ; i < length; i++ ) {
150
+
151
+ // Only deal with non-null/undefined values
152
+ if ( ( options = arguments[ i ] ) != null ) {
153
+
154
+ // Extend the base object
155
+ for ( name in options ) {
156
+ src = target[ name ];
157
+ copy = options[ name ];
158
+
159
+ // Prevent never-ending loop
160
+ if ( target === copy ) {
161
+ continue;
162
+ }
163
+
164
+ // Recurse if we're merging plain objects or arrays
165
+ if ( deep && copy && ( jQuery.isPlainObject( copy ) ||
166
+ ( copyIsArray = jQuery.isArray( copy ) ) ) ) {
167
+
168
+ if ( copyIsArray ) {
169
+ copyIsArray = false;
170
+ clone = src && jQuery.isArray( src ) ? src : [];
171
+
172
+ } else {
173
+ clone = src && jQuery.isPlainObject( src ) ? src : {};
174
+ }
175
+
176
+ // Never move original objects, clone them
177
+ target[ name ] = jQuery.extend( deep, clone, copy );
178
+
179
+ // Don't bring in undefined values
180
+ } else if ( copy !== undefined ) {
181
+ target[ name ] = copy;
182
+ }
183
+ }
184
+ }
185
+ }
186
+
187
+ // Return the modified object
188
+ return target;
189
+ };
190
+
191
+ jQuery.extend( {
192
+
193
+ // Unique for each copy of jQuery on the page
194
+ expando: "jQuery" + ( version + Math.random() ).replace( /\D/g, "" ),
195
+
196
+ // Assume jQuery is ready without the ready module
197
+ isReady: true,
198
+
199
+ error: function( msg ) {
200
+ throw new Error( msg );
201
+ },
202
+
203
+ noop: function() {},
204
+
205
+ isFunction: function( obj ) {
206
+ return jQuery.type( obj ) === "function";
207
+ },
208
+
209
+ isArray: Array.isArray,
210
+
211
+ isWindow: function( obj ) {
212
+ return obj != null && obj === obj.window;
213
+ },
214
+
215
+ isNumeric: function( obj ) {
216
+
217
+ // parseFloat NaNs numeric-cast false positives (null|true|false|"")
218
+ // ...but misinterprets leading-number strings, particularly hex literals ("0x...")
219
+ // subtraction forces infinities to NaN
220
+ // adding 1 corrects loss of precision from parseFloat (#15100)
221
+ var realStringObj = obj && obj.toString();
222
+ return !jQuery.isArray( obj ) && ( realStringObj - parseFloat( realStringObj ) + 1 ) >= 0;
223
+ },
224
+
225
+ isPlainObject: function( obj ) {
226
+ var key;
227
+
228
+ // Not plain objects:
229
+ // - Any object or value whose internal [[Class]] property is not "[object Object]"
230
+ // - DOM nodes
231
+ // - window
232
+ if ( jQuery.type( obj ) !== "object" || obj.nodeType || jQuery.isWindow( obj ) ) {
233
+ return false;
234
+ }
235
+
236
+ // Not own constructor property must be Object
237
+ if ( obj.constructor &&
238
+ !hasOwn.call( obj, "constructor" ) &&
239
+ !hasOwn.call( obj.constructor.prototype || {}, "isPrototypeOf" ) ) {
240
+ return false;
241
+ }
242
+
243
+ // Own properties are enumerated firstly, so to speed up,
244
+ // if last one is own, then all properties are own
245
+ for ( key in obj ) {}
246
+
247
+ return key === undefined || hasOwn.call( obj, key );
248
+ },
249
+
250
+ isEmptyObject: function( obj ) {
251
+ var name;
252
+ for ( name in obj ) {
253
+ return false;
254
+ }
255
+ return true;
256
+ },
257
+
258
+ type: function( obj ) {
259
+ if ( obj == null ) {
260
+ return obj + "";
261
+ }
262
+
263
+ // Support: Android<4.0, iOS<6 (functionish RegExp)
264
+ return typeof obj === "object" || typeof obj === "function" ?
265
+ class2type[ toString.call( obj ) ] || "object" :
266
+ typeof obj;
267
+ },
268
+
269
+ // Evaluates a script in a global context
270
+ globalEval: function( code ) {
271
+ var script,
272
+ indirect = eval;
273
+
274
+ code = jQuery.trim( code );
275
+
276
+ if ( code ) {
277
+
278
+ // If the code includes a valid, prologue position
279
+ // strict mode pragma, execute code by injecting a
280
+ // script tag into the document.
281
+ if ( code.indexOf( "use strict" ) === 1 ) {
282
+ script = document.createElement( "script" );
283
+ script.text = code;
284
+ document.head.appendChild( script ).parentNode.removeChild( script );
285
+ } else {
286
+
287
+ // Otherwise, avoid the DOM node creation, insertion
288
+ // and removal by using an indirect global eval
289
+
290
+ indirect( code );
291
+ }
292
+ }
293
+ },
294
+
295
+ // Convert dashed to camelCase; used by the css and data modules
296
+ // Support: IE9-11+
297
+ // Microsoft forgot to hump their vendor prefix (#9572)
298
+ camelCase: function( string ) {
299
+ return string.replace( rmsPrefix, "ms-" ).replace( rdashAlpha, fcamelCase );
300
+ },
301
+
302
+ nodeName: function( elem, name ) {
303
+ return elem.nodeName && elem.nodeName.toLowerCase() === name.toLowerCase();
304
+ },
305
+
306
+ each: function( obj, callback ) {
307
+ var length, i = 0;
308
+
309
+ if ( isArrayLike( obj ) ) {
310
+ length = obj.length;
311
+ for ( ; i < length; i++ ) {
312
+ if ( callback.call( obj[ i ], i, obj[ i ] ) === false ) {
313
+ break;
314
+ }
315
+ }
316
+ } else {
317
+ for ( i in obj ) {
318
+ if ( callback.call( obj[ i ], i, obj[ i ] ) === false ) {
319
+ break;
320
+ }
321
+ }
322
+ }
323
+
324
+ return obj;
325
+ },
326
+
327
+ // Support: Android<4.1
328
+ trim: function( text ) {
329
+ return text == null ?
330
+ "" :
331
+ ( text + "" ).replace( rtrim, "" );
332
+ },
333
+
334
+ // results is for internal usage only
335
+ makeArray: function( arr, results ) {
336
+ var ret = results || [];
337
+
338
+ if ( arr != null ) {
339
+ if ( isArrayLike( Object( arr ) ) ) {
340
+ jQuery.merge( ret,
341
+ typeof arr === "string" ?
342
+ [ arr ] : arr
343
+ );
344
+ } else {
345
+ push.call( ret, arr );
346
+ }
347
+ }
348
+
349
+ return ret;
350
+ },
351
+
352
+ inArray: function( elem, arr, i ) {
353
+ return arr == null ? -1 : indexOf.call( arr, elem, i );
354
+ },
355
+
356
+ merge: function( first, second ) {
357
+ var len = +second.length,
358
+ j = 0,
359
+ i = first.length;
360
+
361
+ for ( ; j < len; j++ ) {
362
+ first[ i++ ] = second[ j ];
363
+ }
364
+
365
+ first.length = i;
366
+
367
+ return first;
368
+ },
369
+
370
+ grep: function( elems, callback, invert ) {
371
+ var callbackInverse,
372
+ matches = [],
373
+ i = 0,
374
+ length = elems.length,
375
+ callbackExpect = !invert;
376
+
377
+ // Go through the array, only saving the items
378
+ // that pass the validator function
379
+ for ( ; i < length; i++ ) {
380
+ callbackInverse = !callback( elems[ i ], i );
381
+ if ( callbackInverse !== callbackExpect ) {
382
+ matches.push( elems[ i ] );
383
+ }
384
+ }
385
+
386
+ return matches;
387
+ },
388
+
389
+ // arg is for internal usage only
390
+ map: function( elems, callback, arg ) {
391
+ var length, value,
392
+ i = 0,
393
+ ret = [];
394
+
395
+ // Go through the array, translating each of the items to their new values
396
+ if ( isArrayLike( elems ) ) {
397
+ length = elems.length;
398
+ for ( ; i < length; i++ ) {
399
+ value = callback( elems[ i ], i, arg );
400
+
401
+ if ( value != null ) {
402
+ ret.push( value );
403
+ }
404
+ }
405
+
406
+ // Go through every key on the object,
407
+ } else {
408
+ for ( i in elems ) {
409
+ value = callback( elems[ i ], i, arg );
410
+
411
+ if ( value != null ) {
412
+ ret.push( value );
413
+ }
414
+ }
415
+ }
416
+
417
+ // Flatten any nested arrays
418
+ return concat.apply( [], ret );
419
+ },
420
+
421
+ // A global GUID counter for objects
422
+ guid: 1,
423
+
424
+ // Bind a function to a context, optionally partially applying any
425
+ // arguments.
426
+ proxy: function( fn, context ) {
427
+ var tmp, args, proxy;
428
+
429
+ if ( typeof context === "string" ) {
430
+ tmp = fn[ context ];
431
+ context = fn;
432
+ fn = tmp;
433
+ }
434
+
435
+ // Quick check to determine if target is callable, in the spec
436
+ // this throws a TypeError, but we will just return undefined.
437
+ if ( !jQuery.isFunction( fn ) ) {
438
+ return undefined;
439
+ }
440
+
441
+ // Simulated bind
442
+ args = slice.call( arguments, 2 );
443
+ proxy = function() {
444
+ return fn.apply( context || this, args.concat( slice.call( arguments ) ) );
445
+ };
446
+
447
+ // Set the guid of unique handler to the same of original handler, so it can be removed
448
+ proxy.guid = fn.guid = fn.guid || jQuery.guid++;
449
+
450
+ return proxy;
451
+ },
452
+
453
+ now: Date.now,
454
+
455
+ // jQuery.support is not used in Core but other projects attach their
456
+ // properties to it so it needs to exist.
457
+ support: support
458
+ } );
459
+
460
+ // JSHint would error on this code due to the Symbol not being defined in ES5.
461
+ // Defining this global in .jshintrc would create a danger of using the global
462
+ // unguarded in another place, it seems safer to just disable JSHint for these
463
+ // three lines.
464
+ /* jshint ignore: start */
465
+ if ( typeof Symbol === "function" ) {
466
+ jQuery.fn[ Symbol.iterator ] = arr[ Symbol.iterator ];
467
+ }
468
+ /* jshint ignore: end */
469
+
470
+ // Populate the class2type map
471
+ jQuery.each( "Boolean Number String Function Array Date RegExp Object Error Symbol".split( " " ),
472
+ function( i, name ) {
473
+ class2type[ "[object " + name + "]" ] = name.toLowerCase();
474
+ } );
475
+
476
+ function isArrayLike( obj ) {
477
+
478
+ // Support: iOS 8.2 (not reproducible in simulator)
479
+ // `in` check used to prevent JIT error (gh-2145)
480
+ // hasOwn isn't used here due to false negatives
481
+ // regarding Nodelist length in IE
482
+ var length = !!obj && "length" in obj && obj.length,
483
+ type = jQuery.type( obj );
484
+
485
+ if ( type === "function" || jQuery.isWindow( obj ) ) {
486
+ return false;
487
+ }
488
+
489
+ return type === "array" || length === 0 ||
490
+ typeof length === "number" && length > 0 && ( length - 1 ) in obj;
491
+ }
492
+
493
+ return jQuery;
494
+ } );