enju_circulation 0.1.0.pre36 → 0.1.0.pre37

Sign up to get free protection for your applications and to get access to all the features.
Files changed (398) hide show
  1. checksums.yaml +4 -4
  2. data/app/controllers/carrier_type_has_checkout_types_controller.rb +11 -11
  3. data/app/controllers/checked_items_controller.rb +13 -13
  4. data/app/controllers/checkins_controller.rb +14 -15
  5. data/app/controllers/checkout_types_controller.rb +10 -10
  6. data/app/controllers/checkouts_controller.rb +18 -19
  7. data/app/controllers/item_has_use_restrictions_controller.rb +10 -10
  8. data/app/controllers/lending_policies_controller.rb +1 -1
  9. data/app/controllers/manifestation_checkout_stats_controller.rb +15 -13
  10. data/app/controllers/manifestation_reserve_stats_controller.rb +15 -13
  11. data/app/controllers/reserves_controller.rb +27 -28
  12. data/app/controllers/user_checkout_stats_controller.rb +15 -13
  13. data/app/controllers/user_group_has_checkout_types_controller.rb +11 -11
  14. data/app/controllers/user_reserve_stats_controller.rb +15 -13
  15. data/app/models/carrier_type_has_checkout_type.rb +6 -6
  16. data/app/models/checked_item.rb +20 -18
  17. data/app/models/checkin.rb +13 -14
  18. data/app/models/checkout.rb +20 -21
  19. data/app/models/checkout_stat_has_manifestation.rb +2 -2
  20. data/app/models/checkout_stat_has_user.rb +2 -2
  21. data/app/models/checkout_type.rb +9 -9
  22. data/app/models/circulation_status.rb +13 -3
  23. data/app/models/enju_circulation/ability.rb +1 -1
  24. data/app/models/item_has_use_restriction.rb +3 -3
  25. data/app/models/lending_policy.rb +4 -4
  26. data/app/models/manifestation_checkout_stat.rb +4 -3
  27. data/app/models/manifestation_checkout_stat_transition.rb +13 -0
  28. data/app/models/manifestation_reserve_stat.rb +4 -3
  29. data/app/models/manifestation_reserve_stat_transition.rb +13 -0
  30. data/app/models/reserve.rb +123 -157
  31. data/app/models/reserve_stat_has_manifestation.rb +2 -2
  32. data/app/models/reserve_stat_has_user.rb +2 -2
  33. data/app/models/reserve_state_machine.rb +93 -0
  34. data/app/models/reserve_transition.rb +20 -0
  35. data/app/models/use_restriction.rb +5 -5
  36. data/app/models/user_checkout_stat.rb +4 -3
  37. data/app/models/user_checkout_stat_transition.rb +13 -0
  38. data/app/models/user_group_has_checkout_type.rb +8 -8
  39. data/app/models/user_reserve_stat.rb +4 -3
  40. data/app/models/user_reserve_stat_transition.rb +13 -0
  41. data/app/views/carrier_type_has_checkout_types/_form.html.erb +3 -3
  42. data/app/views/carrier_type_has_checkout_types/edit.html.erb +1 -1
  43. data/app/views/carrier_type_has_checkout_types/index.html.erb +3 -3
  44. data/app/views/carrier_type_has_checkout_types/new.html.erb +1 -1
  45. data/app/views/carrier_type_has_checkout_types/show.html.erb +1 -1
  46. data/app/views/carrier_types/_checkout_form.html.erb +1 -1
  47. data/app/views/checked_items/_checked_item.html.erb +3 -3
  48. data/app/views/checked_items/_checkout.html.erb +3 -3
  49. data/app/views/checked_items/_list.html.erb +3 -3
  50. data/app/views/checked_items/edit.html.erb +1 -1
  51. data/app/views/checked_items/index.html.erb +1 -1
  52. data/app/views/checked_items/new.html.erb +3 -3
  53. data/app/views/checked_items/show.html.erb +1 -1
  54. data/app/views/checkins/_checkin.html.erb +3 -3
  55. data/app/views/checkins/_form.html.erb +1 -1
  56. data/app/views/checkins/_list.html.erb +2 -2
  57. data/app/views/checkins/edit.html.erb +1 -1
  58. data/app/views/checkins/index.html.erb +2 -2
  59. data/app/views/checkins/new.html.erb +3 -3
  60. data/app/views/checkins/show.html.erb +1 -1
  61. data/app/views/checkout_types/_form.html.erb +2 -2
  62. data/app/views/checkout_types/edit.html.erb +1 -1
  63. data/app/views/checkout_types/index.html.erb +4 -4
  64. data/app/views/checkout_types/new.html.erb +1 -1
  65. data/app/views/checkout_types/show.html.erb +2 -2
  66. data/app/views/checkouts/_index.html.erb +7 -7
  67. data/app/views/checkouts/_index_item.html.erb +5 -5
  68. data/app/views/checkouts/_index_overdue.html.erb +7 -7
  69. data/app/views/checkouts/_index_user.html.erb +13 -13
  70. data/app/views/checkouts/_list.html.erb +5 -5
  71. data/app/views/checkouts/_reserved_facet.html.erb +2 -2
  72. data/app/views/checkouts/edit.html.erb +8 -8
  73. data/app/views/checkouts/index.atom.builder +3 -3
  74. data/app/views/checkouts/index.html.erb +3 -3
  75. data/app/views/checkouts/index.rss.builder +9 -9
  76. data/app/views/checkouts/index.txt.erb +4 -0
  77. data/app/views/checkouts/new.html.erb +2 -2
  78. data/app/views/checkouts/show.html.erb +7 -7
  79. data/app/views/circulation_statuses/_form.html.erb +2 -2
  80. data/app/views/circulation_statuses/edit.html.erb +1 -1
  81. data/app/views/circulation_statuses/index.html.erb +3 -3
  82. data/app/views/circulation_statuses/new.html.erb +1 -1
  83. data/app/views/circulation_statuses/show.html.erb +1 -1
  84. data/app/views/item_has_use_restrictions/edit.html.erb +1 -1
  85. data/app/views/item_has_use_restrictions/index.html.erb +4 -4
  86. data/app/views/item_has_use_restrictions/new.html.erb +2 -2
  87. data/app/views/item_has_use_restrictions/show.html.erb +1 -1
  88. data/app/views/lending_policies/_form.html.erb +1 -1
  89. data/app/views/lending_policies/edit.html.erb +1 -1
  90. data/app/views/lending_policies/index.html.erb +2 -2
  91. data/app/views/lending_policies/new.html.erb +1 -1
  92. data/app/views/lending_policies/show.html.erb +2 -2
  93. data/app/views/manifestation_checkout_stats/_form.html.erb +1 -1
  94. data/app/views/manifestation_checkout_stats/edit.html.erb +1 -1
  95. data/app/views/manifestation_checkout_stats/index.html.erb +3 -4
  96. data/app/views/manifestation_checkout_stats/new.html.erb +1 -1
  97. data/app/views/manifestation_checkout_stats/show.html.erb +3 -4
  98. data/app/views/manifestation_checkout_stats/show.txt.erb +4 -0
  99. data/app/views/manifestation_reserve_stats/_form.html.erb +1 -1
  100. data/app/views/manifestation_reserve_stats/edit.html.erb +1 -1
  101. data/app/views/manifestation_reserve_stats/index.html.erb +3 -4
  102. data/app/views/manifestation_reserve_stats/new.html.erb +1 -1
  103. data/app/views/manifestation_reserve_stats/show.html.erb +3 -4
  104. data/app/views/manifestation_reserve_stats/show.txt.erb +4 -0
  105. data/app/views/my_accounts/_feed_token.html.erb +3 -3
  106. data/app/views/reserves/_form.html.erb +1 -1
  107. data/app/views/reserves/_new.html.erb +9 -9
  108. data/app/views/reserves/_new_user.html.erb +13 -13
  109. data/app/views/reserves/_state_facet.html.erb +2 -2
  110. data/app/views/reserves/_title.html.erb +1 -1
  111. data/app/views/reserves/edit.html.erb +7 -7
  112. data/app/views/reserves/index.atom.builder +3 -3
  113. data/app/views/reserves/index.html.erb +26 -26
  114. data/app/views/reserves/index.rss.builder +10 -10
  115. data/app/views/reserves/index.txt.erb +4 -0
  116. data/app/views/reserves/show.html.erb +9 -9
  117. data/app/views/use_restrictions/_form.html.erb +2 -2
  118. data/app/views/use_restrictions/edit.html.erb +1 -1
  119. data/app/views/use_restrictions/index.html.erb +3 -3
  120. data/app/views/use_restrictions/new.html.erb +1 -1
  121. data/app/views/use_restrictions/show.html.erb +1 -1
  122. data/app/views/user_checkout_stats/_form.html.erb +1 -1
  123. data/app/views/user_checkout_stats/edit.html.erb +1 -1
  124. data/app/views/user_checkout_stats/index.html.erb +3 -4
  125. data/app/views/user_checkout_stats/new.html.erb +1 -1
  126. data/app/views/user_checkout_stats/show.html.erb +3 -4
  127. data/app/views/user_checkout_stats/show.txt.erb +4 -0
  128. data/app/views/user_group_has_checkout_types/edit.html.erb +7 -7
  129. data/app/views/user_group_has_checkout_types/index.html.erb +3 -3
  130. data/app/views/user_group_has_checkout_types/new.html.erb +9 -9
  131. data/app/views/user_group_has_checkout_types/show.html.erb +1 -1
  132. data/app/views/user_groups/_checkout_form.html.erb +6 -6
  133. data/app/views/user_reserve_stats/_form.html.erb +1 -1
  134. data/app/views/user_reserve_stats/edit.html.erb +1 -1
  135. data/app/views/user_reserve_stats/index.html.erb +3 -4
  136. data/app/views/user_reserve_stats/new.html.erb +1 -1
  137. data/app/views/user_reserve_stats/show.html.erb +3 -4
  138. data/app/views/user_reserve_stats/show.txt.erb +4 -0
  139. data/app/views/users/_feed_token.html.erb +3 -3
  140. data/config/initializers/inflections.rb +3 -0
  141. data/config/locales/translation_en.yml +6 -0
  142. data/config/locales/translation_ja.yml +6 -0
  143. data/config/routes.rb +8 -10
  144. data/db/migrate/035_create_reserves.rb +0 -1
  145. data/db/migrate/20081212080038_create_manifestation_checkout_stats.rb +0 -1
  146. data/db/migrate/20081215094302_create_user_checkout_stats.rb +0 -1
  147. data/db/migrate/20081216190724_create_manifestation_reserve_stats.rb +0 -1
  148. data/db/migrate/20081220023628_create_user_reserve_stats.rb +0 -1
  149. data/db/migrate/20090321130448_add_completed_at_to_user_checkout_stat.rb +0 -4
  150. data/db/migrate/20140518050147_create_reserve_transitions.rb +14 -0
  151. data/db/migrate/20140810061942_add_user_id_to_user_checkout_stat.rb +12 -0
  152. data/db/migrate/20140810091231_add_checkout_icalendar_token_to_profile.rb +6 -0
  153. data/db/migrate/20140810091417_add_save_checkout_history_to_profile.rb +5 -0
  154. data/lib/enju_circulation/engine.rb +0 -4
  155. data/lib/enju_circulation/item.rb +4 -4
  156. data/lib/enju_circulation/manifestation.rb +2 -2
  157. data/lib/enju_circulation/profile.rb +26 -0
  158. data/lib/enju_circulation/user.rb +1 -1
  159. data/lib/enju_circulation/version.rb +1 -1
  160. data/lib/enju_circulation.rb +2 -0
  161. data/lib/generators/enju_circulation/setup/setup_generator.rb +2 -0
  162. data/lib/generators/enju_circulation/setup/templates/db/fixtures/circulation_statuses.yml +48 -25
  163. data/lib/generators/enju_circulation/setup/templates/db/fixtures/use_restrictions.yml +39 -13
  164. data/lib/tasks/circulation_status.rb +6 -0
  165. data/lib/tasks/enju_circulation_tasks.rake +14 -0
  166. data/lib/tasks/reserve.rb +5 -0
  167. data/lib/tasks/use_restriction.rb +6 -0
  168. data/spec/controllers/carrier_type_has_checkout_types_controller_spec.rb +21 -21
  169. data/spec/controllers/checkins_controller_spec.rb +22 -22
  170. data/spec/controllers/checkout_types_controller_spec.rb +21 -21
  171. data/spec/controllers/checkouts_controller_spec.rb +14 -14
  172. data/spec/controllers/circulation_statuses_controller_spec.rb +21 -21
  173. data/spec/controllers/item_has_use_restrictions_controller_spec.rb +21 -21
  174. data/spec/controllers/lending_policies_controller_spec.rb +21 -21
  175. data/spec/controllers/manifestation_checkout_stats_controller_spec.rb +21 -21
  176. data/spec/controllers/manifestation_reserve_stats_controller_spec.rb +21 -21
  177. data/spec/controllers/reserves_controller_spec.rb +32 -32
  178. data/spec/controllers/use_restrictions_controller_spec.rb +21 -21
  179. data/spec/controllers/user_checkout_stats_controller_spec.rb +21 -21
  180. data/spec/controllers/user_group_has_checkout_types_controller_spec.rb +21 -21
  181. data/spec/controllers/user_reserve_stats_controller_spec.rb +21 -21
  182. data/spec/dummy/app/models/user.rb +2 -46
  183. data/spec/dummy/config/environments/test.rb +2 -0
  184. data/spec/dummy/db/development.sqlite3 +0 -0
  185. data/spec/dummy/db/migrate/001_create_agents.rb +0 -8
  186. data/spec/dummy/db/migrate/005_create_manifestations.rb +7 -12
  187. data/spec/dummy/db/migrate/006_create_items.rb +0 -6
  188. data/spec/dummy/db/migrate/112_create_frequencies.rb +12 -0
  189. data/spec/dummy/db/migrate/117_create_form_of_works.rb +12 -0
  190. data/spec/dummy/db/migrate/154_create_messages.rb +0 -1
  191. data/spec/dummy/db/migrate/20080819181903_create_message_requests.rb +0 -2
  192. data/spec/dummy/db/migrate/20081028083142_create_agent_import_files.rb +20 -0
  193. data/spec/dummy/db/migrate/20081028083208_create_resource_import_files.rb +20 -0
  194. data/spec/dummy/db/migrate/20090705133942_add_attachments_picture_to_picture_file.rb +15 -0
  195. data/spec/dummy/db/migrate/20090705212043_add_attachments_attachment_to_manifestation.rb +15 -0
  196. data/spec/dummy/db/migrate/20090719201843_create_extents.rb +12 -0
  197. data/spec/dummy/db/migrate/20090720091106_create_medium_of_performances.rb +12 -0
  198. data/spec/dummy/db/migrate/20090720091429_create_content_types.rb +12 -0
  199. data/spec/dummy/db/migrate/20091025080447_create_licenses.rb +12 -0
  200. data/spec/dummy/db/migrate/20100129142347_create_import_requests.rb +14 -0
  201. data/spec/dummy/db/migrate/20100925043847_create_resource_import_results.rb +15 -0
  202. data/spec/dummy/db/migrate/20100925074559_create_agent_import_results.rb +12 -0
  203. data/spec/dummy/db/migrate/20110603184217_add_edit_mode_to_resource_import_file.rb +9 -0
  204. data/spec/dummy/db/migrate/20110620173525_add_bookstore_id_to_item.rb +11 -0
  205. data/spec/dummy/db/migrate/20111201155456_devise_create_users.rb +42 -0
  206. data/spec/dummy/db/migrate/20120125050502_add_depth_to_message.rb +6 -0
  207. data/spec/dummy/db/migrate/20120129020544_add_budget_type_id_to_item.rb +6 -0
  208. data/spec/dummy/db/migrate/20120319120638_add_content_type_id_to_manifestation.rb +6 -0
  209. data/spec/dummy/db/migrate/20120410104851_add_year_of_publication_to_manifestation.rb +5 -0
  210. data/spec/dummy/db/migrate/20120413072700_add_picture_meta_to_picture_file.rb +5 -0
  211. data/spec/dummy/db/migrate/20120413100352_add_fingerprint_to_picture_file.rb +5 -0
  212. data/spec/dummy/db/migrate/20120413161340_add_fingerprint_to_resource_import_file.rb +5 -0
  213. data/spec/dummy/db/migrate/20120413161403_add_fingerprint_to_agent_import_file.rb +5 -0
  214. data/spec/dummy/db/migrate/20120413170705_add_error_message_to_resource_import_file.rb +5 -0
  215. data/spec/dummy/db/migrate/20120413170720_add_error_message_to_agent_import_file.rb +5 -0
  216. data/spec/dummy/db/migrate/20120415164821_add_attachment_meta_to_manifestation.rb +5 -0
  217. data/spec/dummy/db/migrate/20120418081407_add_month_of_publication_to_manifestation.rb +5 -0
  218. data/spec/dummy/db/migrate/20120511072422_add_agent_identifier_to_agent.rb +6 -0
  219. data/spec/dummy/db/migrate/20120602141129_add_edit_mode_to_agent_import_file.rb +5 -0
  220. data/spec/dummy/db/migrate/20121116031206_add_fulltext_content_to_manifestation.rb +5 -0
  221. data/spec/dummy/db/migrate/20130221154434_add_additional_attributes_to_user.rb +16 -0
  222. data/spec/dummy/db/migrate/20130421155019_add_creator_string_to_series_statement.rb +7 -0
  223. data/spec/dummy/db/migrate/20130421164124_add_series_master_to_series_statement.rb +5 -0
  224. data/spec/dummy/db/migrate/20130429020822_add_root_manifestation_id_to_series_statement.rb +6 -0
  225. data/spec/dummy/db/migrate/20140122054321_create_profiles.rb +20 -0
  226. data/spec/dummy/db/migrate/20140518111006_create_message_transitions.rb +14 -0
  227. data/spec/dummy/db/migrate/20140518135713_create_message_request_transitions.rb +14 -0
  228. data/spec/dummy/db/migrate/20140519170214_create_resource_import_file_transitions.rb +14 -0
  229. data/spec/dummy/db/migrate/20140519171220_create_import_request_transitions.rb +14 -0
  230. data/spec/dummy/db/migrate/20140524020735_create_agent_import_file_transitions.rb +14 -0
  231. data/spec/dummy/db/migrate/20140614065404_create_resource_export_files.rb +11 -0
  232. data/spec/dummy/db/migrate/20140614141500_create_resource_export_file_transitions.rb +14 -0
  233. data/spec/dummy/db/migrate/20140628073524_add_user_encoding_to_agent_import_file.rb +5 -0
  234. data/spec/dummy/db/migrate/20140628073535_add_user_encoding_to_resource_import_file.rb +5 -0
  235. data/spec/dummy/db/migrate/20140720140916_add_binding_item_identifier_to_item.rb +8 -0
  236. data/spec/dummy/db/migrate/20140721151416_add_default_shelf_id_to_resource_import_file.rb +5 -0
  237. data/spec/dummy/db/migrate/20140802082007_add_manifestation_id_to_item.rb +6 -0
  238. data/spec/dummy/db/migrate/20140811031145_add_expired_at_to_profile.rb +5 -0
  239. data/spec/dummy/db/schema.rb +315 -56
  240. data/spec/dummy/db/test.sqlite3 +0 -0
  241. data/spec/dummy/solr/conf/admin-extra.html +31 -0
  242. data/spec/dummy/solr/conf/elevate.xml +36 -0
  243. data/spec/dummy/solr/conf/mapping-ISOLatin1Accent.txt +246 -0
  244. data/spec/dummy/solr/conf/protwords.txt +21 -0
  245. data/spec/dummy/solr/conf/schema.xml +255 -0
  246. data/spec/dummy/solr/conf/scripts.conf +24 -0
  247. data/spec/dummy/solr/conf/solrconfig.xml +667 -0
  248. data/spec/dummy/solr/conf/spellings.txt +2 -0
  249. data/spec/dummy/solr/conf/stopwords.txt +58 -0
  250. data/spec/dummy/solr/conf/synonyms.txt +31 -0
  251. data/spec/dummy/solr/default/data/index/_7f0.fdt +0 -0
  252. data/spec/dummy/solr/default/data/index/_7f0.fdx +0 -0
  253. data/spec/dummy/solr/default/data/index/_7f0.fnm +0 -0
  254. data/spec/dummy/solr/default/data/index/_7f0.nvd +0 -0
  255. data/spec/dummy/solr/default/data/index/_7f0.nvm +0 -0
  256. data/spec/dummy/solr/default/data/index/_7f0.si +0 -0
  257. data/spec/dummy/solr/default/data/index/_7f0_Lucene41_0.doc +0 -0
  258. data/spec/dummy/solr/default/data/index/_7f0_Lucene41_0.pos +0 -0
  259. data/spec/dummy/solr/default/data/index/_7f0_Lucene41_0.tim +0 -0
  260. data/spec/dummy/solr/default/data/index/_7f0_Lucene41_0.tip +0 -0
  261. data/spec/dummy/solr/default/data/index/segments.gen +0 -0
  262. data/spec/dummy/solr/default/data/index/segments_bvw +0 -0
  263. data/spec/dummy/solr/default/data/tlog/tlog.0000000000000015394 +0 -0
  264. data/spec/dummy/solr/default/data/tlog/tlog.0000000000000015395 +0 -0
  265. data/spec/dummy/solr/default/data/tlog/tlog.0000000000000015396 +0 -0
  266. data/spec/dummy/solr/default/data/tlog/tlog.0000000000000015397 +0 -0
  267. data/spec/dummy/solr/default/data/tlog/tlog.0000000000000015398 +0 -0
  268. data/spec/dummy/solr/default/data/tlog/tlog.0000000000000015399 +0 -0
  269. data/spec/dummy/solr/default/data/tlog/tlog.0000000000000015400 +0 -0
  270. data/spec/dummy/solr/default/data/tlog/tlog.0000000000000015401 +0 -0
  271. data/spec/dummy/solr/default/data/tlog/tlog.0000000000000015402 +0 -0
  272. data/spec/dummy/solr/development/data/index/segments.gen +0 -0
  273. data/spec/dummy/solr/development/data/index/segments_1 +0 -0
  274. data/spec/dummy/solr/solr.xml +8 -0
  275. data/spec/dummy/solr/test/data/index/segments.gen +0 -0
  276. data/spec/dummy/solr/test/data/index/segments_1 +0 -0
  277. data/spec/dummy/tmp/cache/assets/test/sprockets/0007f9aec08cc2727b3d00cd62cf1d0f +0 -0
  278. data/spec/dummy/tmp/cache/assets/test/sprockets/0440b81b0aae840cf287a686585a8cec +0 -0
  279. data/spec/dummy/tmp/cache/assets/test/sprockets/0e3e358e4fe4601ba5e435f6d0c86f12 +0 -0
  280. data/spec/dummy/tmp/cache/assets/test/sprockets/129cec5384c0f26fcfb0ce65048298c5 +0 -0
  281. data/spec/dummy/tmp/cache/assets/test/sprockets/1572dfd6f1e555f4be1aa60ddc3cb0c0 +0 -0
  282. data/spec/dummy/tmp/cache/assets/test/sprockets/181c975b1296d7ebe81714d5e64bc098 +0 -0
  283. data/spec/dummy/tmp/cache/assets/test/sprockets/1c1fbab93e4552626da626e0dbe70c74 +0 -0
  284. data/spec/dummy/tmp/cache/assets/test/sprockets/1e58a07a3701da9fb9c176d67162af2b +0 -0
  285. data/spec/dummy/tmp/cache/assets/test/sprockets/2b35ad8fee7e1228e205669278e2adda +0 -0
  286. data/spec/dummy/tmp/cache/assets/test/sprockets/2f09f58943a88f21e3a0318621391785 +0 -0
  287. data/spec/dummy/tmp/cache/assets/test/sprockets/2ffe508d0533d0afd2a37bb574eda40d +0 -0
  288. data/spec/dummy/tmp/cache/assets/test/sprockets/3753d928863ee65118b9f2da1c6e504d +0 -0
  289. data/spec/dummy/tmp/cache/assets/test/sprockets/40e90f0c329b14292a9ff1a2fe907b39 +0 -0
  290. data/spec/dummy/tmp/cache/assets/test/sprockets/45f3c74e1e31b58d9bda6908d5623290 +0 -0
  291. data/spec/dummy/tmp/cache/assets/test/sprockets/49a3464eb6bcffb3d9f5b47b133edabb +0 -0
  292. data/spec/dummy/tmp/cache/assets/test/sprockets/49d32c13d390c1b80d8b2705aac86579 +0 -0
  293. data/spec/dummy/tmp/cache/assets/test/sprockets/4aa18096a209e515f5f1df487622cdf4 +0 -0
  294. data/spec/dummy/tmp/cache/assets/test/sprockets/50e64f45f0cb4cee52fd3f3908f89a82 +0 -0
  295. data/spec/dummy/tmp/cache/assets/test/sprockets/51f7d34a9e9bebb47b7201cfebfec34d +0 -0
  296. data/spec/dummy/tmp/cache/assets/test/sprockets/5995180d1cfd7cad71ec6d9e1a538f0e +0 -0
  297. data/spec/dummy/tmp/cache/assets/test/sprockets/604e0e4b3c01d488d6fb087e9fdaeb94 +0 -0
  298. data/spec/dummy/tmp/cache/assets/test/sprockets/6401fc09d2b894df2ad251b007df145a +0 -0
  299. data/spec/dummy/tmp/cache/assets/test/sprockets/65a8d4d288e5f082f0166aa7be7a2464 +0 -0
  300. data/spec/dummy/tmp/cache/assets/test/sprockets/6f5d66df18892df6af39c9cfd784f0f5 +0 -0
  301. data/spec/dummy/tmp/cache/assets/test/sprockets/6fcdd2234a7c25f9d4179ca12fd9f7b4 +0 -0
  302. data/spec/dummy/tmp/cache/assets/test/sprockets/6fdb4513af157010ef79b56df44d665e +0 -0
  303. data/spec/dummy/tmp/cache/assets/test/sprockets/750439d8043ed022910956fbb55faa65 +0 -0
  304. data/spec/dummy/tmp/cache/assets/test/sprockets/811e5198d0dc4efe02d28c0c2215e207 +0 -0
  305. data/spec/dummy/tmp/cache/assets/test/sprockets/83ea20e0b25e77f5dce5bf733b088292 +0 -0
  306. data/spec/dummy/tmp/cache/assets/test/sprockets/9604073a83f822f13caaabd7e157bbbb +0 -0
  307. data/spec/dummy/tmp/cache/assets/test/sprockets/98d02556564ee10aef4c3397bb94d5b9 +0 -0
  308. data/spec/dummy/tmp/cache/assets/test/sprockets/9cfe4d48f5258863dbfb3623c797fb15 +0 -0
  309. data/spec/dummy/tmp/cache/assets/test/sprockets/a296264dcc89e1f8ab6382e678ffbe38 +0 -0
  310. data/spec/dummy/tmp/cache/assets/test/sprockets/aa2e1ada35daa496bb08e85fcb817536 +0 -0
  311. data/spec/dummy/tmp/cache/assets/test/sprockets/abee2d4cb18d15789dcdc9c680f3e6de +0 -0
  312. data/spec/dummy/tmp/cache/assets/test/sprockets/c1ab0ecf3cf57db41d9e4cd9306d8829 +0 -0
  313. data/spec/dummy/tmp/cache/assets/test/sprockets/c4a984c6feb506f3e1f9120a8d029bda +0 -0
  314. data/spec/dummy/tmp/cache/assets/test/sprockets/ccdcb26ebc6ef3b684368b368edf4f99 +0 -0
  315. data/spec/dummy/tmp/cache/assets/test/sprockets/d34b5413caa9407126db68d5d590804a +0 -0
  316. data/spec/dummy/tmp/cache/assets/test/sprockets/d4ac74c17332ad931b72f42d7997fcc0 +0 -0
  317. data/spec/dummy/tmp/cache/assets/test/sprockets/dd672deb061233e0db1d2f413d27213f +0 -0
  318. data/spec/dummy/tmp/cache/assets/test/sprockets/e1fcfb0faa3c12467a1c35251e04c8b1 +0 -0
  319. data/spec/dummy/tmp/cache/assets/test/sprockets/e2d21478696ac96ad895f7c3b8d31594 +0 -0
  320. data/spec/dummy/tmp/cache/assets/test/sprockets/e577e9ce00153ad2e59111f761d0fb15 +0 -0
  321. data/spec/dummy/tmp/cache/assets/test/sprockets/e9738177de2083b68d42e053a1529244 +0 -0
  322. data/spec/dummy/tmp/cache/assets/test/sprockets/e9ce2df3f0160329df69b22a911dbd04 +0 -0
  323. data/spec/dummy/tmp/cache/assets/test/sprockets/f2e83d3b5fe984832bfeff09b0e3b8d2 +0 -0
  324. data/spec/dummy/tmp/cache/assets/test/sprockets/f90eee17e0e5eaea50e6064ded54617c +0 -0
  325. data/spec/dummy/tmp/cache/assets/test/sprockets/fa8e81ce1d45228121b9df5618542190 +0 -0
  326. data/spec/dummy/tmp/cache/assets/test/sprockets/fbdc1d9347cb228f06807b76c6c2974e +0 -0
  327. data/spec/dummy/tmp/cache/stdout +1262 -0
  328. data/spec/dummy/tmp/pids/redis-test.pid +1 -0
  329. data/spec/factories/profile.rb +9 -0
  330. data/spec/factories/reserve.rb +7 -1
  331. data/spec/factories/user.rb +3 -9
  332. data/spec/fixtures/agents.yml +0 -12
  333. data/spec/fixtures/checkouts.yml +12 -1
  334. data/spec/fixtures/items.yml +48 -25
  335. data/spec/fixtures/manifestation_checkout_stats.yml +3 -4
  336. data/spec/fixtures/manifestation_reserve_stats.yml +3 -4
  337. data/spec/fixtures/message_requests.yml +0 -3
  338. data/spec/fixtures/message_templates.yml +41 -20
  339. data/spec/fixtures/profiles.yml +83 -0
  340. data/spec/fixtures/reserve_transitions.yml +88 -0
  341. data/spec/fixtures/reserves.yml +1 -18
  342. data/spec/fixtures/user_checkout_stats.yml +3 -4
  343. data/spec/fixtures/user_groups.yml +3 -3
  344. data/spec/fixtures/user_reserve_stats.yml +3 -4
  345. data/spec/fixtures/users.yml +0 -55
  346. data/spec/models/checked_item_spec.rb +2 -1
  347. data/spec/models/checkout_spec.rb +0 -1
  348. data/spec/models/manifestation_checkout_stat_spec.rb +4 -2
  349. data/spec/models/manifestation_reserve_stat_spec.rb +4 -2
  350. data/spec/models/reserve_spec.rb +9 -11
  351. data/spec/models/user_checkout_stat_spec.rb +4 -2
  352. data/spec/models/user_reserve_stat_spec.rb +4 -2
  353. data/spec/support/resque.rb +25 -22
  354. metadata +325 -92
  355. data/app/controllers/checkout_stat_has_manifestations_controller.rb +0 -81
  356. data/app/controllers/checkout_stat_has_users_controller.rb +0 -81
  357. data/app/controllers/reserve_stat_has_manifestations_controller.rb +0 -81
  358. data/app/controllers/reserve_stat_has_users_controller.rb +0 -81
  359. data/app/models/circulation_sweeper.rb +0 -24
  360. data/app/views/checkout_stat_has_manifestations/_form.html.erb +0 -15
  361. data/app/views/checkout_stat_has_manifestations/edit.html.erb +0 -13
  362. data/app/views/checkout_stat_has_manifestations/index.html.erb +0 -33
  363. data/app/views/checkout_stat_has_manifestations/new.html.erb +0 -12
  364. data/app/views/checkout_stat_has_manifestations/show.html.erb +0 -28
  365. data/app/views/checkout_stat_has_users/_form.html.erb +0 -15
  366. data/app/views/checkout_stat_has_users/edit.html.erb +0 -13
  367. data/app/views/checkout_stat_has_users/index.html.erb +0 -33
  368. data/app/views/checkout_stat_has_users/new.html.erb +0 -12
  369. data/app/views/checkout_stat_has_users/show.html.erb +0 -28
  370. data/app/views/checkouts/index.csv.erb +0 -4
  371. data/app/views/manifestation_checkout_stats/show.csv.erb +0 -4
  372. data/app/views/manifestation_reserve_stats/show.csv.erb +0 -4
  373. data/app/views/reserve_stat_has_manifestations/_form.html.erb +0 -15
  374. data/app/views/reserve_stat_has_manifestations/edit.html.erb +0 -13
  375. data/app/views/reserve_stat_has_manifestations/index.html.erb +0 -33
  376. data/app/views/reserve_stat_has_manifestations/new.html.erb +0 -12
  377. data/app/views/reserve_stat_has_manifestations/show.html.erb +0 -28
  378. data/app/views/reserve_stat_has_users/_form.html.erb +0 -15
  379. data/app/views/reserve_stat_has_users/edit.html.erb +0 -13
  380. data/app/views/reserve_stat_has_users/index.html.erb +0 -33
  381. data/app/views/reserve_stat_has_users/new.html.erb +0 -12
  382. data/app/views/reserve_stat_has_users/show.html.erb +0 -28
  383. data/app/views/reserves/index.csv.erb +0 -4
  384. data/app/views/user_checkout_stats/show.csv.erb +0 -4
  385. data/app/views/user_reserve_stats/show.csv.erb +0 -4
  386. data/db/fixtures/carrier_type_has_checkout_types.yml +0 -8
  387. data/db/fixtures/checkout_types.yml +0 -22
  388. data/db/fixtures/circulation_statuses.yml +0 -92
  389. data/db/fixtures/use_restrictions.yml +0 -79
  390. data/db/migrate/20130303104849_add_state_index_to_reserve.rb +0 -5
  391. data/spec/controllers/checkout_stat_has_manifestations_controller_spec.rb +0 -441
  392. data/spec/controllers/checkout_stat_has_users_controller_spec.rb +0 -441
  393. data/spec/controllers/reserve_stat_has_manifestations_controller_spec.rb +0 -441
  394. data/spec/controllers/reserve_stat_has_users_controller_spec.rb +0 -441
  395. data/spec/dummy/app/mailers/notifier.rb +0 -29
  396. data/spec/dummy/db/migrate/20110916053430_rename_manifestation_number_list_to_number_string.rb +0 -13
  397. data/spec/dummy/db/migrate/20111201155456_create_users.rb +0 -16
  398. data/spec/dummy/db/migrate/20111201155513_add_devise_to_users.rb +0 -44
@@ -0,0 +1,667 @@
1
+ <?xml version="1.0" encoding="UTF-8" ?>
2
+ <!--
3
+ Licensed to the Apache Software Foundation (ASF) under one or more
4
+ contributor license agreements. See the NOTICE file distributed with
5
+ this work for additional information regarding copyright ownership.
6
+ The ASF licenses this file to You under the Apache License, Version 2.0
7
+ (the "License"); you may not use this file except in compliance with
8
+ the License. You may obtain a copy of the License at
9
+
10
+ http://www.apache.org/licenses/LICENSE-2.0
11
+
12
+ Unless required by applicable law or agreed to in writing, software
13
+ distributed under the License is distributed on an "AS IS" BASIS,
14
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15
+ See the License for the specific language governing permissions and
16
+ limitations under the License.
17
+ -->
18
+
19
+ <!--
20
+ For more details about configurations options that may appear in
21
+ this file, see http://wiki.apache.org/solr/SolrConfigXml.
22
+ -->
23
+ <config>
24
+ <!-- In all configuration below, a prefix of "solr." for class names
25
+ is an alias that causes solr to search appropriate packages,
26
+ including org.apache.solr.(search|update|request|core|analysis)
27
+
28
+ You may also specify a fully qualified Java classname if you
29
+ have your own custom plugins.
30
+ -->
31
+
32
+ <!-- Controls what version of Lucene various components of Solr
33
+ adhere to. Generally, you want to use the latest version to
34
+ get all bug fixes and improvements. It is highly recommended
35
+ that you fully re-index after changing this setting as it can
36
+ affect both how text is indexed and queried.
37
+ -->
38
+ <luceneMatchVersion>LUCENE_41</luceneMatchVersion>
39
+
40
+ <!-- <lib/> directives can be used to instruct Solr to load an Jars
41
+ identified and use them to resolve any "plugins" specified in
42
+ your solrconfig.xml or schema.xml (ie: Analyzers, Request
43
+ Handlers, etc...).
44
+
45
+ All directories and paths are resolved relative to the
46
+ instanceDir.
47
+
48
+ Please note that <lib/> directives are processed in the order
49
+ that they appear in your solrconfig.xml file, and are "stacked"
50
+ on top of each other when building a ClassLoader - so if you have
51
+ plugin jars with dependencies on other jars, the "lower level"
52
+ dependency jars should be loaded first.
53
+
54
+ If a "./lib" directory exists in your instanceDir, all files
55
+ found in it are included as if you had used the following
56
+ syntax...
57
+
58
+ <lib dir="./lib" />
59
+ -->
60
+ <dataDir>${solr.data.dir:}</dataDir>
61
+
62
+
63
+ <!-- The DirectoryFactory to use for indexes.
64
+
65
+ solr.StandardDirectoryFactory is filesystem
66
+ based and tries to pick the best implementation for the current
67
+ JVM and platform. solr.NRTCachingDirectoryFactory, the default,
68
+ wraps solr.StandardDirectoryFactory and caches small files in memory
69
+ for better NRT performance.
70
+
71
+ One can force a particular implementation via solr.MMapDirectoryFactory,
72
+ solr.NIOFSDirectoryFactory, or solr.SimpleFSDirectoryFactory.
73
+
74
+ solr.RAMDirectoryFactory is memory based, not
75
+ persistent, and doesn't work with replication.
76
+ -->
77
+ <directoryFactory name="DirectoryFactory"
78
+ class="${solr.directoryFactory:solr.NRTCachingDirectoryFactory}"/>
79
+
80
+ <!-- ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
81
+ Index Config - These settings control low-level behavior of indexing
82
+ Most example settings here show the default value, but are commented
83
+ out, to more easily see where customizations have been made.
84
+
85
+ Note: This replaces <indexDefaults> and <mainIndex> from older versions
86
+ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -->
87
+ <indexConfig>
88
+ <!-- maxFieldLength was removed in 4.0. To get similar behavior, include a
89
+ LimitTokenCountFilterFactory in your fieldType definition. E.g.
90
+ <filter class="solr.LimitTokenCountFilterFactory" maxTokenCount="10000"/>
91
+ -->
92
+ <!-- Maximum time to wait for a write lock (ms) for an IndexWriter. Default: 1000 -->
93
+ <!-- <writeLockTimeout>1000</writeLockTimeout> -->
94
+
95
+ <!-- The maximum number of simultaneous threads that may be
96
+ indexing documents at once in IndexWriter; if more than this
97
+ many threads arrive they will wait for others to finish.
98
+ Default in Solr/Lucene is 8. -->
99
+ <maxIndexingThreads>2</maxIndexingThreads>
100
+
101
+ <useCompoundFile>true</useCompoundFile>
102
+
103
+ <!-- ramBufferSizeMB sets the amount of RAM that may be used by Lucene
104
+ indexing for buffering added documents and deletions before they are
105
+ flushed to the Directory.
106
+ maxBufferedDocs sets a limit on the number of documents buffered
107
+ before flushing.
108
+ If both ramBufferSizeMB and maxBufferedDocs is set, then
109
+ Lucene will flush based on whichever limit is hit first. -->
110
+ <ramBufferSizeMB>20</ramBufferSizeMB> -->
111
+ <maxBufferedDocs>10000</maxBufferedDocs>
112
+
113
+ <!-- Expert: Merge Policy
114
+ The Merge Policy in Lucene controls how merging of segments is done.
115
+ The default since Solr/Lucene 3.3 is TieredMergePolicy.
116
+ The default since Lucene 2.3 was the LogByteSizeMergePolicy,
117
+ Even older versions of Lucene used LogDocMergePolicy.
118
+ -->
119
+ <mergePolicy class="org.apache.lucene.index.TieredMergePolicy">
120
+ <int name="maxMergeAtOnce">4</int>
121
+ <int name="segmentsPerTier">4</int>
122
+ </mergePolicy>
123
+
124
+ <unlockOnStartup>true</unlockOnStartup>
125
+
126
+ </indexConfig>
127
+
128
+ <updateHandler class="solr.DirectUpdateHandler2">
129
+
130
+ <!-- Enables a transaction log, used for real-time get, durability, and
131
+ and solr cloud replica recovery. The log can grow as big as
132
+ uncommitted changes to the index, so use of a hard autoCommit
133
+ is recommended (see below).
134
+ "dir" - the target directory for transaction logs, defaults to the
135
+ solr data directory. -->
136
+ <updateLog>
137
+ <str name="dir">${solr.ulog.dir:}</str>
138
+ </updateLog>
139
+
140
+ <autoCommit>
141
+ <maxTime>15000</maxTime>
142
+ <openSearcher>false</openSearcher>
143
+ </autoCommit>
144
+
145
+ <autoSoftCommit>
146
+ <maxTime>5000</maxTime>
147
+ </autoSoftCommit>
148
+ </updateHandler>
149
+
150
+ <query>
151
+ <maxBooleanClauses>1024</maxBooleanClauses>
152
+
153
+
154
+ <!-- Solr Internal Query Caches
155
+
156
+ There are two implementations of cache available for Solr,
157
+ LRUCache, based on a synchronized LinkedHashMap, and
158
+ FastLRUCache, based on a ConcurrentHashMap.
159
+
160
+ FastLRUCache has faster gets and slower puts in single
161
+ threaded operation and thus is generally faster than LRUCache
162
+ when the hit ratio of the cache is high (> 75%), and may be
163
+ faster under other scenarios on multi-cpu systems.
164
+ -->
165
+
166
+ <!-- Filter Cache
167
+
168
+ Cache used by SolrIndexSearcher for filters (DocSets),
169
+ unordered sets of *all* documents that match a query. When a
170
+ new searcher is opened, its caches may be prepopulated or
171
+ "autowarmed" using data from caches in the old searcher.
172
+ autowarmCount is the number of items to prepopulate. For
173
+ LRUCache, the autowarmed items will be the most recently
174
+ accessed items.
175
+
176
+ Parameters:
177
+ class - the SolrCache implementation LRUCache or
178
+ (LRUCache or FastLRUCache)
179
+ size - the maximum number of entries in the cache
180
+ initialSize - the initial capacity (number of entries) of
181
+ the cache. (see java.util.HashMap)
182
+ autowarmCount - the number of entries to prepopulate from
183
+ and old cache.
184
+ -->
185
+ <filterCache class="solr.FastLRUCache"
186
+ size="512"
187
+ initialSize="512"
188
+ autowarmCount="0"/>
189
+
190
+ <!-- Query Result Cache
191
+
192
+ Caches results of searches - ordered lists of document ids
193
+ (DocList) based on a query, a sort, and the range of documents requested.
194
+ -->
195
+ <queryResultCache class="solr.LRUCache"
196
+ size="512"
197
+ initialSize="512"
198
+ autowarmCount="0"/>
199
+
200
+ <!-- Document Cache
201
+
202
+ Caches Lucene Document objects (the stored fields for each
203
+ document). Since Lucene internal document ids are transient,
204
+ this cache will not be autowarmed.
205
+ -->
206
+ <documentCache class="solr.LRUCache"
207
+ size="512"
208
+ initialSize="512"
209
+ autowarmCount="0"/>
210
+
211
+ <!-- Lazy Field Loading
212
+
213
+ If true, stored fields that are not requested will be loaded
214
+ lazily. This can result in a significant speed improvement
215
+ if the usual case is to not load all stored fields,
216
+ especially if the skipped fields are large compressed text
217
+ fields.
218
+ -->
219
+ <enableLazyFieldLoading>true</enableLazyFieldLoading>
220
+
221
+ <!-- Use Filter For Sorted Query
222
+
223
+ A possible optimization that attempts to use a filter to
224
+ satisfy a search. If the requested sort does not include
225
+ score, then the filterCache will be checked for a filter
226
+ matching the query. If found, the filter will be used as the
227
+ source of document ids, and then the sort will be applied to
228
+ that.
229
+
230
+ For most situations, this will not be useful unless you
231
+ frequently get the same search repeatedly with different sort
232
+ options, and none of them ever use "score"
233
+ -->
234
+ <!--
235
+ <useFilterForSortedQuery>true</useFilterForSortedQuery>
236
+ -->
237
+
238
+ <!-- Result Window Size
239
+
240
+ An optimization for use with the queryResultCache. When a search
241
+ is requested, a superset of the requested number of document ids
242
+ are collected. For example, if a search for a particular query
243
+ requests matching documents 10 through 19, and queryWindowSize is 50,
244
+ then documents 0 through 49 will be collected and cached. Any further
245
+ requests in that range can be satisfied via the cache.
246
+ -->
247
+ <queryResultWindowSize>20</queryResultWindowSize>
248
+
249
+ <!-- Maximum number of documents to cache for any entry in the
250
+ queryResultCache.
251
+ -->
252
+ <queryResultMaxDocsCached>200</queryResultMaxDocsCached>
253
+
254
+ <!-- Query Related Event Listeners
255
+
256
+ Various IndexSearcher related events can trigger Listeners to
257
+ take actions.
258
+
259
+ newSearcher - fired whenever a new searcher is being prepared
260
+ and there is a current searcher handling requests (aka
261
+ registered). It can be used to prime certain caches to
262
+ prevent long request times for certain requests.
263
+
264
+ firstSearcher - fired whenever a new searcher is being
265
+ prepared but there is no current registered searcher to handle
266
+ requests or to gain autowarming data from.
267
+
268
+
269
+ -->
270
+
271
+ <!-- Use Cold Searcher
272
+
273
+ If a search request comes in and there is no current
274
+ registered searcher, then immediately register the still
275
+ warming searcher and use it. If "false" then all requests
276
+ will block until the first searcher is done warming.
277
+ -->
278
+ <useColdSearcher>false</useColdSearcher>
279
+
280
+ <!-- Max Warming Searchers
281
+
282
+ Maximum number of searchers that may be warming in the
283
+ background concurrently. An error is returned if this limit
284
+ is exceeded.
285
+
286
+ Recommend values of 1-2 for read-only slaves, higher for
287
+ masters w/o cache warming.
288
+ -->
289
+ <maxWarmingSearchers>5</maxWarmingSearchers>
290
+
291
+ </query>
292
+
293
+
294
+ <!-- Request Dispatcher
295
+
296
+ This section contains instructions for how the SolrDispatchFilter
297
+ should behave when processing requests for this SolrCore.
298
+
299
+ handleSelect is a legacy option that affects the behavior of requests
300
+ such as /select?qt=XXX
301
+
302
+ handleSelect="true" will cause the SolrDispatchFilter to process
303
+ the request and dispatch the query to a handler specified by the
304
+ "qt" param, assuming "/select" isn't already registered.
305
+
306
+ handleSelect="false" will cause the SolrDispatchFilter to
307
+ ignore "/select" requests, resulting in a 404 unless a handler
308
+ is explicitly registered with the name "/select"
309
+
310
+ handleSelect="true" is not recommended for new users, but is the default
311
+ for backwards compatibility
312
+ -->
313
+ <requestDispatcher handleSelect="false" >
314
+ <!-- Request Parsing
315
+
316
+ These settings indicate how Solr Requests may be parsed, and
317
+ what restrictions may be placed on the ContentStreams from
318
+ those requests
319
+
320
+ enableRemoteStreaming - enables use of the stream.file
321
+ and stream.url parameters for specifying remote streams.
322
+
323
+ multipartUploadLimitInKB - specifies the max size (in KiB) of
324
+ Multipart File Uploads that Solr will allow in a Request.
325
+
326
+ formdataUploadLimitInKB - specifies the max size (in KiB) of
327
+ form data (application/x-www-form-urlencoded) sent via
328
+ POST. You can use POST to pass request parameters not
329
+ fitting into the URL.
330
+
331
+ *** WARNING ***
332
+ The settings below authorize Solr to fetch remote files, You
333
+ should make sure your system has some authentication before
334
+ using enableRemoteStreaming="true"
335
+
336
+ -->
337
+
338
+ <!-- HTTP Caching
339
+
340
+ Set HTTP caching related parameters (for proxy caches and clients).
341
+
342
+ The options below instruct Solr not to output any HTTP Caching
343
+ related headers
344
+ -->
345
+ <httpCaching never304="true" />
346
+ <!-- If you include a <cacheControl> directive, it will be used to
347
+ generate a Cache-Control header (as well as an Expires header
348
+ if the value contains "max-age=")
349
+
350
+ By default, no Cache-Control header is generated.
351
+
352
+ You can use the <cacheControl> option even if you have set
353
+ never304="true"
354
+ -->
355
+ <!--
356
+ <httpCaching never304="true" >
357
+ <cacheControl>max-age=30, public</cacheControl>
358
+ </httpCaching>
359
+ -->
360
+ <!-- To enable Solr to respond with automatically generated HTTP
361
+ Caching headers, and to response to Cache Validation requests
362
+ correctly, set the value of never304="false"
363
+
364
+ This will cause Solr to generate Last-Modified and ETag
365
+ headers based on the properties of the Index.
366
+
367
+ The following options can also be specified to affect the
368
+ values of these headers...
369
+
370
+ lastModFrom - the default value is "openTime" which means the
371
+ Last-Modified value (and validation against If-Modified-Since
372
+ requests) will all be relative to when the current Searcher
373
+ was opened. You can change it to lastModFrom="dirLastMod" if
374
+ you want the value to exactly correspond to when the physical
375
+ index was last modified.
376
+
377
+ etagSeed="..." is an option you can change to force the ETag
378
+ header (and validation against If-None-Match requests) to be
379
+ different even if the index has not changed (ie: when making
380
+ significant changes to your config file)
381
+
382
+ (lastModifiedFrom and etagSeed are both ignored if you use
383
+ the never304="true" option)
384
+ -->
385
+ <!--
386
+ <httpCaching lastModifiedFrom="openTime"
387
+ etagSeed="Solr">
388
+ <cacheControl>max-age=30, public</cacheControl>
389
+ </httpCaching>
390
+ -->
391
+ </requestDispatcher>
392
+
393
+ <!-- Request Handlers
394
+
395
+ http://wiki.apache.org/solr/SolrRequestHandler
396
+
397
+ Incoming queries will be dispatched to a specific handler by name
398
+ based on the path specified in the request.
399
+
400
+ Legacy behavior: If the request path uses "/select" but no Request
401
+ Handler has that name, and if handleSelect="true" has been specified in
402
+ the requestDispatcher, then the Request Handler is dispatched based on
403
+ the qt parameter. Handlers without a leading '/' are accessed this way
404
+ like so: http://host/app/[core/]select?qt=name If no qt is
405
+ given, then the requestHandler that declares default="true" will be
406
+ used or the one named "standard".
407
+
408
+ If a Request Handler is declared with startup="lazy", then it will
409
+ not be initialized until the first request that uses it.
410
+
411
+ -->
412
+ <!-- SearchHandler
413
+
414
+ http://wiki.apache.org/solr/SearchHandler
415
+
416
+ For processing Search Queries, the primary Request Handler
417
+ provided with Solr is "SearchHandler" It delegates to a sequent
418
+ of SearchComponents (see below) and supports distributed
419
+ queries across multiple shards
420
+ -->
421
+ <requestHandler name="/select" class="solr.SearchHandler">
422
+ <arr name="last-components">
423
+ <str>spellcheck</str>
424
+ </arr>
425
+ </requestHandler>
426
+
427
+ <!-- A request handler that returns indented JSON by default -->
428
+ <requestHandler name="/query" class="solr.SearchHandler">
429
+ <lst name="defaults">
430
+ <str name="echoParams">explicit</str>
431
+ <str name="wt">json</str>
432
+ <str name="indent">true</str>
433
+ <str name="df">text</str>
434
+ </lst>
435
+ <arr name="last-components">
436
+ <str>spellcheck</str>
437
+ </arr>
438
+ </requestHandler>
439
+
440
+
441
+ <!-- realtime get handler, guaranteed to return the latest stored fields of
442
+ any document, without the need to commit or open a new searcher. The
443
+ current implementation relies on the updateLog feature being enabled. -->
444
+ <requestHandler name="/get" class="solr.RealTimeGetHandler">
445
+ <lst name="defaults">
446
+ <str name="omitHeader">true</str>
447
+ <str name="wt">json</str>
448
+ <str name="indent">true</str>
449
+ </lst>
450
+ </requestHandler>
451
+
452
+ <requestHandler name="/update" class="solr.UpdateRequestHandler">
453
+ </requestHandler>
454
+
455
+ <requestHandler name="/update/json" class="solr.JsonUpdateRequestHandler">
456
+ <lst name="defaults">
457
+ <str name="stream.contentType">application/json</str>
458
+ </lst>
459
+ </requestHandler>
460
+
461
+ <requestHandler name="/update/csv" class="solr.CSVRequestHandler">
462
+ <lst name="defaults">
463
+ <str name="stream.contentType">application/csv</str>
464
+ </lst>
465
+ </requestHandler>
466
+
467
+ <requestHandler name="/update/extract"
468
+ startup="lazy"
469
+ class="solr.extraction.ExtractingRequestHandler" >
470
+ <lst name="defaults">
471
+ <str name="lowernames">true</str>
472
+ <str name="uprefix">ignored_</str>
473
+
474
+ <!-- capture link hrefs but ignore div attributes -->
475
+ <str name="captureAttr">true</str>
476
+ <str name="fmap.a">links</str>
477
+ <str name="fmap.div">ignored_</str>
478
+ </lst>
479
+ </requestHandler>
480
+
481
+ <requestHandler name="/analysis/field"
482
+ startup="lazy"
483
+ class="solr.FieldAnalysisRequestHandler" />
484
+
485
+ <requestHandler name="/analysis/document"
486
+ class="solr.DocumentAnalysisRequestHandler"
487
+ startup="lazy" />
488
+
489
+ <!-- ping/healthcheck -->
490
+ <requestHandler name="/admin/ping" class="solr.PingRequestHandler">
491
+ <lst name="invariants">
492
+ <str name="q">solrpingquery</str>
493
+ </lst>
494
+ <lst name="defaults">
495
+ <str name="echoParams">all</str>
496
+ </lst>
497
+ </requestHandler>
498
+
499
+ <requestHandler name="/debug/dump" class="solr.DumpRequestHandler" >
500
+ <lst name="defaults">
501
+ <str name="echoParams">explicit</str>
502
+ <str name="echoHandler">true</str>
503
+ </lst>
504
+ </requestHandler>
505
+
506
+ <requestHandler name="/replication" class="solr.ReplicationHandler" >
507
+ </requestHandler>
508
+
509
+ <searchComponent name="spellcheck" class="solr.SpellCheckComponent">
510
+
511
+ <str name="queryAnalyzerFieldType">textSpell</str>
512
+
513
+ <!-- Multiple "Spell Checkers" can be declared and used by this
514
+ component
515
+ -->
516
+
517
+ <!-- a spellchecker built from a field of the main index -->
518
+ <lst name="spellchecker">
519
+ <str name="name">default</str>
520
+ <str name="field">name</str>
521
+ <str name="classname">solr.DirectSolrSpellChecker</str>
522
+ <!-- the spellcheck distance measure used, the default is the internal levenshtein -->
523
+ <str name="distanceMeasure">internal</str>
524
+ <!-- minimum accuracy needed to be considered a valid spellcheck suggestion -->
525
+ <float name="accuracy">0.5</float>
526
+ <!-- the maximum #edits we consider when enumerating terms: can be 1 or 2 -->
527
+ <int name="maxEdits">2</int>
528
+ <!-- the minimum shared prefix when enumerating terms -->
529
+ <int name="minPrefix">1</int>
530
+ <!-- maximum number of inspections per result. -->
531
+ <int name="maxInspections">5</int>
532
+ <!-- minimum length of a query term to be considered for correction -->
533
+ <int name="minQueryLength">4</int>
534
+ <!-- maximum threshold of documents a query term can appear to be considered for correction -->
535
+ <float name="maxQueryFrequency">0.01</float>
536
+ <!-- uncomment this to require suggestions to occur in 1% of the documents
537
+ <float name="thresholdTokenFrequency">.01</float>
538
+ -->
539
+ </lst>
540
+
541
+ <!-- a spellchecker that can break or combine words. See "/spell" handler below for usage -->
542
+ <lst name="spellchecker">
543
+ <str name="name">wordbreak</str>
544
+ <str name="classname">solr.WordBreakSolrSpellChecker</str>
545
+ <str name="field">name</str>
546
+ <str name="combineWords">true</str>
547
+ <str name="breakWords">true</str>
548
+ <int name="maxChanges">10</int>
549
+ </lst>
550
+ </searchComponent>
551
+
552
+ <searchComponent name="tvComponent" class="solr.TermVectorComponent"/>
553
+
554
+ <searchComponent name="terms" class="solr.TermsComponent"/>
555
+
556
+ <searchComponent class="solr.HighlightComponent" name="highlight">
557
+ <highlighting>
558
+ <!-- Configure the standard fragmenter -->
559
+ <!-- This could most likely be commented out in the "default" case -->
560
+ <fragmenter name="gap"
561
+ default="true"
562
+ class="solr.highlight.GapFragmenter">
563
+ <lst name="defaults">
564
+ <int name="hl.fragsize">100</int>
565
+ </lst>
566
+ </fragmenter>
567
+
568
+ <!-- A regular-expression-based fragmenter
569
+ (for sentence extraction)
570
+ -->
571
+ <fragmenter name="regex"
572
+ class="solr.highlight.RegexFragmenter">
573
+ <lst name="defaults">
574
+ <!-- slightly smaller fragsizes work better because of slop -->
575
+ <int name="hl.fragsize">70</int>
576
+ <!-- allow 50% slop on fragment sizes -->
577
+ <float name="hl.regex.slop">0.5</float>
578
+ <!-- a basic sentence pattern -->
579
+ <str name="hl.regex.pattern">[-\w ,/\n\&quot;&apos;]{20,200}</str>
580
+ </lst>
581
+ </fragmenter>
582
+
583
+ <!-- Configure the standard formatter -->
584
+ <formatter name="html"
585
+ default="true"
586
+ class="solr.highlight.HtmlFormatter">
587
+ <lst name="defaults">
588
+ <str name="hl.simple.pre"><![CDATA[<em>]]></str>
589
+ <str name="hl.simple.post"><![CDATA[</em>]]></str>
590
+ </lst>
591
+ </formatter>
592
+
593
+ <!-- Configure the standard encoder -->
594
+ <encoder name="html"
595
+ class="solr.highlight.HtmlEncoder" />
596
+
597
+ <!-- Configure the standard fragListBuilder -->
598
+ <fragListBuilder name="simple"
599
+ class="solr.highlight.SimpleFragListBuilder"/>
600
+
601
+ <!-- Configure the single fragListBuilder -->
602
+ <fragListBuilder name="single"
603
+ class="solr.highlight.SingleFragListBuilder"/>
604
+
605
+ <!-- Configure the weighted fragListBuilder -->
606
+ <fragListBuilder name="weighted"
607
+ default="true"
608
+ class="solr.highlight.WeightedFragListBuilder"/>
609
+
610
+ <!-- default tag FragmentsBuilder -->
611
+ <fragmentsBuilder name="default"
612
+ default="true"
613
+ class="solr.highlight.ScoreOrderFragmentsBuilder">
614
+ <!--
615
+ <lst name="defaults">
616
+ <str name="hl.multiValuedSeparatorChar">/</str>
617
+ </lst>
618
+ -->
619
+ </fragmentsBuilder>
620
+
621
+ <!-- multi-colored tag FragmentsBuilder -->
622
+ <fragmentsBuilder name="colored"
623
+ class="solr.highlight.ScoreOrderFragmentsBuilder">
624
+ <lst name="defaults">
625
+ <str name="hl.tag.pre"><![CDATA[
626
+ <b style="background:yellow">,<b style="background:lawgreen">,
627
+ <b style="background:aquamarine">,<b style="background:magenta">,
628
+ <b style="background:palegreen">,<b style="background:coral">,
629
+ <b style="background:wheat">,<b style="background:khaki">,
630
+ <b style="background:lime">,<b style="background:deepskyblue">]]></str>
631
+ <str name="hl.tag.post"><![CDATA[</b>]]></str>
632
+ </lst>
633
+ </fragmentsBuilder>
634
+
635
+ <boundaryScanner name="default"
636
+ default="true"
637
+ class="solr.highlight.SimpleBoundaryScanner">
638
+ <lst name="defaults">
639
+ <str name="hl.bs.maxScan">10</str>
640
+ <str name="hl.bs.chars">.,!? &#9;&#10;&#13;</str>
641
+ </lst>
642
+ </boundaryScanner>
643
+
644
+ <boundaryScanner name="breakIterator"
645
+ class="solr.highlight.BreakIteratorBoundaryScanner">
646
+ <lst name="defaults">
647
+ <!-- type should be one of CHARACTER, WORD(default), LINE and SENTENCE -->
648
+ <str name="hl.bs.type">WORD</str>
649
+ <!-- language and country are used when constructing Locale object. -->
650
+ <!-- And the Locale object will be used when getting instance of BreakIterator -->
651
+ <str name="hl.bs.language">en</str>
652
+ <str name="hl.bs.country">US</str>
653
+ </lst>
654
+ </boundaryScanner>
655
+ </highlighting>
656
+ </searchComponent>
657
+
658
+ <requestHandler class="solr.MoreLikeThisHandler" name="/mlt">
659
+ <lst name="defaults">
660
+ <str name="mlt.mintf">1</str>
661
+ <str name="mlt.mindf">2</str>
662
+ </lst>
663
+ </requestHandler>
664
+
665
+ <!-- Admin Handlers - This will register all the standard admin RequestHandlers. -->
666
+ <requestHandler name="/admin/" class="solr.admin.AdminHandlers" />
667
+ </config>
@@ -0,0 +1,2 @@
1
+ pizza
2
+ history