enju_library 0.1.0.pre33 → 0.1.0.pre34

Sign up to get free protection for your applications and to get access to all the features.
Files changed (334) hide show
  1. checksums.yaml +4 -4
  2. data/app/controllers/accepts_controller.rb +14 -14
  3. data/app/controllers/baskets_controller.rb +15 -21
  4. data/app/controllers/libraries_controller.rb +12 -12
  5. data/app/controllers/library_groups_controller.rb +5 -6
  6. data/app/controllers/shelves_controller.rb +17 -17
  7. data/app/controllers/subscribes_controller.rb +10 -10
  8. data/app/controllers/subscriptions_controller.rb +11 -11
  9. data/app/models/accept.rb +7 -12
  10. data/app/models/basket.rb +6 -6
  11. data/app/models/bookstore.rb +2 -2
  12. data/app/models/budget_type.rb +1 -1
  13. data/app/models/library.rb +8 -8
  14. data/app/models/library_group.rb +5 -21
  15. data/app/models/request_status_type.rb +1 -1
  16. data/app/models/request_type.rb +1 -1
  17. data/app/models/search_engine.rb +6 -6
  18. data/app/models/shelf.rb +5 -5
  19. data/app/models/subscribe.rb +3 -3
  20. data/app/models/subscription.rb +5 -5
  21. data/app/views/accepts/_form.html.erb +1 -1
  22. data/app/views/accepts/_list.html.erb +3 -3
  23. data/app/views/accepts/edit.html.erb +1 -1
  24. data/app/views/accepts/index.html.erb +6 -6
  25. data/app/views/accepts/{index.csv.erb → index.txt.csv} +0 -0
  26. data/app/views/accepts/new.html.erb +1 -1
  27. data/app/views/accepts/show.html.erb +2 -2
  28. data/app/views/baskets/edit.html.erb +2 -2
  29. data/app/views/baskets/index.html.erb +3 -2
  30. data/app/views/baskets/new.html.erb +6 -6
  31. data/app/views/baskets/show.html.erb +1 -1
  32. data/app/views/bookstores/_form.html.erb +3 -3
  33. data/app/views/bookstores/edit.html.erb +1 -1
  34. data/app/views/bookstores/index.html.erb +3 -3
  35. data/app/views/bookstores/new.html.erb +1 -1
  36. data/app/views/bookstores/show.html.erb +1 -1
  37. data/app/views/budget_types/_form.html.erb +2 -2
  38. data/app/views/budget_types/edit.html.erb +1 -1
  39. data/app/views/budget_types/index.html.erb +6 -6
  40. data/app/views/budget_types/new.html.erb +1 -1
  41. data/app/views/budget_types/show.html.erb +1 -1
  42. data/app/views/libraries/_calendar.html.erb +2 -2
  43. data/app/views/libraries/_form.html.erb +12 -12
  44. data/app/views/libraries/edit.html.erb +1 -1
  45. data/app/views/libraries/index.html.erb +18 -14
  46. data/app/views/libraries/new.html.erb +1 -1
  47. data/app/views/libraries/show.html.erb +7 -7
  48. data/app/views/library_groups/_form.html.erb +4 -4
  49. data/app/views/library_groups/edit.html.erb +1 -1
  50. data/app/views/library_groups/index.html.erb +2 -2
  51. data/app/views/library_groups/new.html.erb +1 -1
  52. data/app/views/library_groups/show.html.erb +2 -2
  53. data/app/views/request_status_types/edit.html.erb +1 -1
  54. data/app/views/request_status_types/index.html.erb +3 -3
  55. data/app/views/request_status_types/new.html.erb +1 -1
  56. data/app/views/request_status_types/show.html.erb +1 -1
  57. data/app/views/request_types/edit.html.erb +1 -1
  58. data/app/views/request_types/index.html.erb +3 -3
  59. data/app/views/request_types/new.html.erb +1 -1
  60. data/app/views/request_types/show.html.erb +1 -1
  61. data/app/views/search_engines/_form.html.erb +4 -4
  62. data/app/views/search_engines/edit.html.erb +1 -1
  63. data/app/views/search_engines/index.html.erb +3 -3
  64. data/app/views/search_engines/new.html.erb +1 -1
  65. data/app/views/search_engines/show.html.erb +1 -1
  66. data/app/views/shelves/_form.html.erb +4 -4
  67. data/app/views/shelves/_library_facet.html.erb +1 -1
  68. data/app/views/shelves/edit.html.erb +1 -1
  69. data/app/views/shelves/index.html.erb +5 -5
  70. data/app/views/shelves/new.html.erb +2 -2
  71. data/app/views/shelves/show.html.erb +5 -5
  72. data/app/views/shelves/show.mobile.erb +1 -1
  73. data/app/views/subscribes/edit.html.erb +3 -3
  74. data/app/views/subscribes/index.html.erb +3 -3
  75. data/app/views/subscribes/new.html.erb +8 -8
  76. data/app/views/subscribes/show.html.erb +1 -1
  77. data/app/views/subscriptions/edit.html.erb +3 -3
  78. data/app/views/subscriptions/index.html.erb +4 -4
  79. data/app/views/subscriptions/new.html.erb +3 -3
  80. data/app/views/subscriptions/show.html.erb +1 -1
  81. data/config/locales/translation_ja.yml +1 -1
  82. data/db/migrate/080_create_library_groups.rb +0 -1
  83. data/lib/enju_library/version.rb +1 -1
  84. data/lib/generators/enju_library/setup/templates/db/fixtures/request_status_types.yml +37 -0
  85. data/lib/generators/enju_library/setup/templates/db/fixtures/request_types.yml +29 -0
  86. data/spec/controllers/accepts_controller_spec.rb +1 -1
  87. data/spec/controllers/baskets_controller_spec.rb +30 -30
  88. data/spec/controllers/bookstores_controller_spec.rb +21 -21
  89. data/spec/controllers/budget_types_controller_spec.rb +1 -1
  90. data/spec/controllers/libraries_controller_spec.rb +24 -24
  91. data/spec/controllers/library_groups_controller_spec.rb +7 -7
  92. data/spec/controllers/request_status_types_controller_spec.rb +21 -21
  93. data/spec/controllers/request_types_controller_spec.rb +21 -21
  94. data/spec/controllers/search_engines_controller_spec.rb +21 -21
  95. data/spec/controllers/shelves_controller_spec.rb +20 -20
  96. data/spec/controllers/subscribes_controller_spec.rb +21 -21
  97. data/spec/controllers/subscriptions_controller_spec.rb +21 -21
  98. data/spec/dummy/app/helpers/application_helper.rb +1 -0
  99. data/spec/dummy/app/models/user.rb +6 -86
  100. data/spec/dummy/db/development.sqlite3 +0 -0
  101. data/spec/dummy/db/migrate/001_create_agents.rb +0 -8
  102. data/spec/dummy/db/migrate/{20111201155513_add_devise_to_users.rb → 002_devise_create_users.rb} +18 -16
  103. data/spec/dummy/db/migrate/005_create_manifestations.rb +7 -24
  104. data/spec/dummy/db/migrate/006_create_items.rb +0 -6
  105. data/spec/dummy/db/migrate/041_create_roles.rb +13 -0
  106. data/spec/dummy/db/migrate/077_create_user_groups.rb +3 -7
  107. data/spec/dummy/db/migrate/112_create_frequencies.rb +12 -0
  108. data/spec/dummy/db/migrate/117_create_form_of_works.rb +12 -0
  109. data/spec/dummy/db/migrate/154_create_messages.rb +0 -1
  110. data/spec/dummy/db/migrate/20080819181903_create_message_requests.rb +0 -2
  111. data/spec/dummy/db/migrate/20081027150907_create_picture_files.rb +0 -1
  112. data/spec/dummy/db/migrate/20081028083142_create_agent_import_files.rb +20 -0
  113. data/spec/dummy/db/migrate/20081028083208_create_resource_import_files.rb +20 -0
  114. data/spec/dummy/db/migrate/20081028093607_create_event_import_files.rb +0 -2
  115. data/spec/dummy/db/migrate/20081212080038_create_manifestation_checkout_stats.rb +0 -1
  116. data/spec/dummy/db/migrate/20081215094302_create_user_checkout_stats.rb +0 -1
  117. data/spec/dummy/db/migrate/20081216190724_create_manifestation_reserve_stats.rb +0 -1
  118. data/spec/dummy/db/migrate/20081220023628_create_user_reserve_stats.rb +0 -1
  119. data/spec/dummy/db/migrate/20090321130448_add_completed_at_to_user_checkout_stat.rb +0 -4
  120. data/spec/dummy/db/migrate/20090705212043_add_attachments_attachment_to_manifestation.rb +15 -0
  121. data/spec/dummy/db/migrate/20090719201843_create_extents.rb +12 -0
  122. data/spec/dummy/db/migrate/20090720091106_create_medium_of_performances.rb +12 -0
  123. data/spec/dummy/db/migrate/20090720091429_create_content_types.rb +12 -0
  124. data/spec/dummy/db/migrate/20091025080447_create_licenses.rb +12 -0
  125. data/spec/dummy/db/migrate/20100129142347_create_import_requests.rb +14 -0
  126. data/spec/dummy/db/migrate/{20111201163718_create_user_has_roles.rb → 20100606065209_create_user_has_roles.rb} +2 -0
  127. data/spec/dummy/db/migrate/20100925043847_create_resource_import_results.rb +15 -0
  128. data/spec/dummy/db/migrate/20100925074559_create_agent_import_results.rb +12 -0
  129. data/spec/dummy/db/migrate/20110318183304_add_valid_period_for_new_user_to_user_group.rb +0 -2
  130. data/spec/dummy/db/migrate/20110603184217_add_edit_mode_to_resource_import_file.rb +9 -0
  131. data/spec/dummy/db/migrate/20120129020544_add_budget_type_id_to_item.rb +6 -0
  132. data/spec/dummy/db/migrate/20120319120638_add_content_type_id_to_manifestation.rb +6 -0
  133. data/spec/dummy/db/migrate/20120410104851_add_year_of_publication_to_manifestation.rb +5 -0
  134. data/spec/dummy/db/migrate/20120413161340_add_fingerprint_to_resource_import_file.rb +5 -0
  135. data/spec/dummy/db/migrate/20120413161403_add_fingerprint_to_agent_import_file.rb +5 -0
  136. data/spec/dummy/db/migrate/20120413170705_add_error_message_to_resource_import_file.rb +5 -0
  137. data/spec/dummy/db/migrate/20120413170720_add_error_message_to_agent_import_file.rb +5 -0
  138. data/spec/dummy/db/migrate/20120415164821_add_attachment_meta_to_manifestation.rb +5 -0
  139. data/spec/dummy/db/migrate/20120418081407_add_month_of_publication_to_manifestation.rb +5 -0
  140. data/spec/dummy/db/migrate/20120511072422_add_agent_identifier_to_agent.rb +6 -0
  141. data/spec/dummy/db/migrate/20120602141129_add_edit_mode_to_agent_import_file.rb +5 -0
  142. data/spec/dummy/db/migrate/20121116031206_add_fulltext_content_to_manifestation.rb +5 -0
  143. data/spec/dummy/db/migrate/20121116033446_add_doi_to_manifestation.rb +6 -0
  144. data/spec/dummy/db/migrate/20130221154434_add_additional_attributes_to_user.rb +16 -0
  145. data/spec/dummy/db/migrate/{20111201121844_create_roles.rb → 20130506175303_create_identifier_types.rb} +2 -2
  146. data/spec/dummy/db/migrate/20130506175834_create_identifiers.rb +15 -0
  147. data/spec/dummy/db/migrate/20130509185724_add_statement_of_responsibility_to_manifestation.rb +5 -0
  148. data/spec/dummy/db/migrate/20140110122216_create_user_import_files.rb +18 -0
  149. data/spec/dummy/db/migrate/20140110131010_create_user_import_results.rb +11 -0
  150. data/spec/dummy/db/migrate/20140122054321_create_profiles.rb +20 -0
  151. data/spec/dummy/db/migrate/20140518050147_create_reserve_transitions.rb +14 -0
  152. data/spec/dummy/db/migrate/20140518111006_create_message_transitions.rb +14 -0
  153. data/spec/dummy/db/migrate/20140518135713_create_message_request_transitions.rb +14 -0
  154. data/spec/dummy/db/migrate/20140519170214_create_resource_import_file_transitions.rb +14 -0
  155. data/spec/dummy/db/migrate/20140519171220_create_import_request_transitions.rb +14 -0
  156. data/spec/dummy/db/migrate/20140523171309_create_event_import_file_transitions.rb +14 -0
  157. data/spec/dummy/db/migrate/20140524020735_create_agent_import_file_transitions.rb +14 -0
  158. data/spec/dummy/db/migrate/20140524074813_create_user_import_file_transitions.rb +14 -0
  159. data/spec/dummy/db/migrate/20140528045518_create_user_checkout_stat_transitions.rb +14 -0
  160. data/spec/dummy/db/migrate/20140528045539_create_user_reserve_stat_transitions.rb +14 -0
  161. data/spec/dummy/db/migrate/20140528045600_create_manifestation_checkout_stat_transitions.rb +14 -0
  162. data/spec/dummy/db/migrate/20140528045617_create_manifestation_reserve_stat_transitions.rb +14 -0
  163. data/spec/dummy/db/migrate/20140610123439_drop_email_unique_constraint_enju_leaf_rc10.rb +11 -0
  164. data/spec/dummy/db/migrate/20140614065404_create_resource_export_files.rb +11 -0
  165. data/spec/dummy/db/migrate/20140614141500_create_resource_export_file_transitions.rb +14 -0
  166. data/spec/dummy/db/migrate/20140628071719_add_user_encoding_to_event_import_file.rb +5 -0
  167. data/spec/dummy/db/migrate/20140628072217_add_user_encoding_to_user_import_file.rb +5 -0
  168. data/spec/dummy/db/migrate/20140628073524_add_user_encoding_to_agent_import_file.rb +5 -0
  169. data/spec/dummy/db/migrate/20140628073535_add_user_encoding_to_resource_import_file.rb +5 -0
  170. data/spec/dummy/db/migrate/20140709113413_create_user_export_files.rb +11 -0
  171. data/spec/dummy/db/migrate/20140709113905_create_user_export_file_transitions.rb +14 -0
  172. data/spec/dummy/db/migrate/20140720140916_add_binding_item_identifier_to_item.rb +8 -0
  173. data/spec/dummy/db/migrate/20140720170714_add_default_library_id_to_user_import_file.rb +5 -0
  174. data/spec/dummy/db/migrate/20140720170735_add_default_user_group_id_to_user_import_file.rb +5 -0
  175. data/spec/dummy/db/migrate/20140720192418_add_default_library_id_to_event_import_file.rb +5 -0
  176. data/spec/dummy/db/migrate/20140721151416_add_default_shelf_id_to_resource_import_file.rb +5 -0
  177. data/spec/dummy/db/migrate/20140802082007_add_manifestation_id_to_item.rb +6 -0
  178. data/spec/dummy/db/migrate/20140810061942_add_user_id_to_user_checkout_stat.rb +12 -0
  179. data/spec/dummy/db/migrate/20140810091231_add_checkout_icalendar_token_to_profile.rb +6 -0
  180. data/spec/dummy/db/migrate/20140810091417_add_save_checkout_history_to_profile.rb +5 -0
  181. data/spec/dummy/db/migrate/20140811031145_add_expired_at_to_profile.rb +5 -0
  182. data/spec/dummy/db/schema.rb +453 -74
  183. data/spec/dummy/db/test.sqlite3 +0 -0
  184. data/spec/dummy/solr/conf/admin-extra.html +31 -0
  185. data/spec/dummy/solr/conf/elevate.xml +36 -0
  186. data/spec/dummy/solr/conf/mapping-ISOLatin1Accent.txt +246 -0
  187. data/spec/dummy/solr/conf/protwords.txt +21 -0
  188. data/spec/dummy/solr/conf/schema.xml +255 -0
  189. data/spec/dummy/solr/conf/scripts.conf +24 -0
  190. data/spec/dummy/solr/conf/solrconfig.xml +667 -0
  191. data/spec/dummy/solr/conf/spellings.txt +2 -0
  192. data/spec/dummy/solr/conf/stopwords.txt +58 -0
  193. data/spec/dummy/solr/conf/synonyms.txt +31 -0
  194. data/spec/dummy/solr/default/data/index/_1vz.fdt +0 -0
  195. data/spec/dummy/solr/default/data/index/_1vz.fdx +0 -0
  196. data/spec/dummy/solr/default/data/index/_1vz.fnm +0 -0
  197. data/spec/dummy/solr/default/data/index/_1vz.nvd +0 -0
  198. data/spec/dummy/solr/default/data/index/_1vz.nvm +0 -0
  199. data/spec/dummy/solr/default/data/index/_1vz.si +0 -0
  200. data/spec/dummy/solr/default/data/index/_1vz_Lucene41_0.doc +0 -0
  201. data/spec/dummy/solr/default/data/index/_1vz_Lucene41_0.pos +0 -0
  202. data/spec/dummy/solr/default/data/index/_1vz_Lucene41_0.tim +0 -0
  203. data/spec/dummy/solr/default/data/index/_1vz_Lucene41_0.tip +0 -0
  204. data/spec/dummy/solr/default/data/index/segments.gen +0 -0
  205. data/spec/dummy/solr/default/data/index/segments_36s +0 -0
  206. data/spec/dummy/solr/default/data/tlog/tlog.0000000000000004121 +0 -0
  207. data/spec/dummy/solr/default/data/tlog/tlog.0000000000000004122 +0 -0
  208. data/spec/dummy/solr/default/data/tlog/tlog.0000000000000004123 +0 -0
  209. data/spec/dummy/solr/default/data/tlog/tlog.0000000000000004124 +0 -0
  210. data/spec/dummy/solr/default/data/tlog/tlog.0000000000000004125 +0 -0
  211. data/spec/dummy/solr/default/data/tlog/tlog.0000000000000004126 +0 -0
  212. data/spec/dummy/solr/default/data/tlog/tlog.0000000000000004127 +0 -0
  213. data/spec/dummy/solr/default/data/tlog/tlog.0000000000000004128 +0 -0
  214. data/spec/dummy/solr/default/data/tlog/tlog.0000000000000004129 +0 -0
  215. data/spec/dummy/solr/default/data/tlog/tlog.0000000000000004130 +0 -0
  216. data/spec/dummy/solr/development/data/index/segments.gen +0 -0
  217. data/spec/dummy/solr/development/data/index/segments_1 +0 -0
  218. data/spec/dummy/solr/solr.xml +8 -0
  219. data/spec/dummy/solr/test/data/index/segments.gen +0 -0
  220. data/spec/dummy/solr/test/data/index/segments_1 +0 -0
  221. data/spec/dummy/tmp/cache/assets/test/sprockets/0440b81b0aae840cf287a686585a8cec +0 -0
  222. data/spec/dummy/tmp/cache/assets/test/sprockets/0483120d2ec851526d1beb322a87b34d +0 -0
  223. data/spec/dummy/tmp/cache/assets/test/sprockets/096c3408c7592aaeb756778ce1775f16 +0 -0
  224. data/spec/dummy/tmp/cache/assets/test/sprockets/09bc1fff0c1477a69e8cd36ed3fe771f +0 -0
  225. data/spec/dummy/tmp/cache/assets/test/sprockets/0c0062cfb97ef1437ab0020e724876c6 +0 -0
  226. data/spec/dummy/tmp/cache/assets/test/sprockets/0c8f59d97121b79a2e2a0d009d6da9c3 +0 -0
  227. data/spec/dummy/tmp/cache/assets/test/sprockets/0e3e358e4fe4601ba5e435f6d0c86f12 +0 -0
  228. data/spec/dummy/tmp/cache/assets/test/sprockets/0e7592ffc95bd8b73854cc6453c64e33 +0 -0
  229. data/spec/dummy/tmp/cache/assets/test/sprockets/0e8e7445a50fad85ab545fa283abf5b7 +0 -0
  230. data/spec/dummy/tmp/cache/assets/test/sprockets/1260173072d9796c1ae7d7752b9916c3 +0 -0
  231. data/spec/dummy/tmp/cache/assets/test/sprockets/129cec5384c0f26fcfb0ce65048298c5 +0 -0
  232. data/spec/dummy/tmp/cache/assets/test/sprockets/1572dfd6f1e555f4be1aa60ddc3cb0c0 +0 -0
  233. data/spec/dummy/tmp/cache/assets/test/sprockets/17c9f5037fae5b6ee1fc7466948001b5 +0 -0
  234. data/spec/dummy/tmp/cache/assets/test/sprockets/1c1fbab93e4552626da626e0dbe70c74 +0 -0
  235. data/spec/dummy/tmp/cache/assets/test/sprockets/1d450e5266eb3d679107d9a36dc22559 +0 -0
  236. data/spec/dummy/tmp/cache/assets/test/sprockets/2258e83cd2e464c650334b6a72a87cb6 +0 -0
  237. data/spec/dummy/tmp/cache/assets/test/sprockets/241a5d6ad6008e25a64a5092e8361ae8 +0 -0
  238. data/spec/dummy/tmp/cache/assets/test/sprockets/2bf9c36d2bc8f8ca084394d139ce8edf +0 -0
  239. data/spec/dummy/tmp/cache/assets/test/sprockets/2f09f58943a88f21e3a0318621391785 +0 -0
  240. data/spec/dummy/tmp/cache/assets/test/sprockets/2ffe508d0533d0afd2a37bb574eda40d +0 -0
  241. data/spec/dummy/tmp/cache/assets/test/sprockets/301d9ec69800d0dc163460a12304676a +0 -0
  242. data/spec/dummy/tmp/cache/assets/test/sprockets/3fbe8dcb9a5b2fbc7a22cc4b1ca4aa11 +0 -0
  243. data/spec/dummy/tmp/cache/assets/test/sprockets/45f3c74e1e31b58d9bda6908d5623290 +0 -0
  244. data/spec/dummy/tmp/cache/assets/test/sprockets/49d32c13d390c1b80d8b2705aac86579 +0 -0
  245. data/spec/dummy/tmp/cache/assets/test/sprockets/4aa18096a209e515f5f1df487622cdf4 +0 -0
  246. data/spec/dummy/tmp/cache/assets/test/sprockets/4c4d6b8fc44a49272793290caed29e24 +0 -0
  247. data/spec/dummy/tmp/cache/assets/test/sprockets/4f877aaa67a006f34ad9643d7f82b6dc +0 -0
  248. data/spec/dummy/tmp/cache/assets/test/sprockets/50e64f45f0cb4cee52fd3f3908f89a82 +0 -0
  249. data/spec/dummy/tmp/cache/assets/test/sprockets/5762cca052dd5d3eb8bb35e2ed9a59b8 +0 -0
  250. data/spec/dummy/tmp/cache/assets/test/sprockets/5ab3fcfe4078a2bb14bd91e9ce73ef29 +0 -0
  251. data/spec/dummy/tmp/cache/assets/test/sprockets/5afd4f8068bdfb3d99f5ec4034d2410c +0 -0
  252. data/spec/dummy/tmp/cache/assets/test/sprockets/5db165a5b217a384aaa8885d6bcaf193 +0 -0
  253. data/spec/dummy/tmp/cache/assets/test/sprockets/5dd0b61707256a0514d7f5e224188a1d +0 -0
  254. data/spec/dummy/tmp/cache/assets/test/sprockets/65a8d4d288e5f082f0166aa7be7a2464 +0 -0
  255. data/spec/dummy/tmp/cache/assets/test/sprockets/66e8ff0ee49363fdd0e1866807515228 +0 -0
  256. data/spec/dummy/tmp/cache/assets/test/sprockets/6738d1a07584e4b732d197e10afd6a19 +0 -0
  257. data/spec/dummy/tmp/cache/assets/test/sprockets/6a83d3fd052b7923111a0ed838ff53e0 +0 -0
  258. data/spec/dummy/tmp/cache/assets/test/sprockets/6a958d3fc0999c71aa19bae06bacdeb6 +0 -0
  259. data/spec/dummy/tmp/cache/assets/test/sprockets/6df57ded762c97e6755758008bb3a660 +0 -0
  260. data/spec/dummy/tmp/cache/assets/test/sprockets/6fdb4513af157010ef79b56df44d665e +0 -0
  261. data/spec/dummy/tmp/cache/assets/test/sprockets/7289cf11ae787f5e0639528dc155bffb +0 -0
  262. data/spec/dummy/tmp/cache/assets/test/sprockets/7c4b2e5317023fb751fa54ad41f95101 +0 -0
  263. data/spec/dummy/tmp/cache/assets/test/sprockets/7eea3b9e54d8a23d8a05d354f1a93f51 +0 -0
  264. data/spec/dummy/tmp/cache/assets/test/sprockets/811e5198d0dc4efe02d28c0c2215e207 +0 -0
  265. data/spec/dummy/tmp/cache/assets/test/sprockets/84c8a64682205dba3f8edd60fc1ec8e5 +0 -0
  266. data/spec/dummy/tmp/cache/assets/test/sprockets/8a73d1e841a4716b4f18ed4a23622092 +0 -0
  267. data/spec/dummy/tmp/cache/assets/test/sprockets/8be2a49de16592553e0d0a09d92bf6ef +0 -0
  268. data/spec/dummy/tmp/cache/assets/test/sprockets/8f72bcc7284bf844ac8bec5dc4b71482 +0 -0
  269. data/spec/dummy/tmp/cache/assets/test/sprockets/9604073a83f822f13caaabd7e157bbbb +0 -0
  270. data/spec/dummy/tmp/cache/assets/test/sprockets/979eaef456657e4fc79b9b967aef0587 +0 -0
  271. data/spec/dummy/tmp/cache/assets/test/sprockets/9ad166e60e3d477c78328181979a7b77 +0 -0
  272. data/spec/dummy/tmp/cache/assets/test/sprockets/9b78afe804f3870fbafb97d2d62e5f6b +0 -0
  273. data/spec/dummy/tmp/cache/assets/test/sprockets/a296264dcc89e1f8ab6382e678ffbe38 +0 -0
  274. data/spec/dummy/tmp/cache/assets/test/sprockets/a3cea75f1356ef55329e78f86b4c72b1 +0 -0
  275. data/spec/dummy/tmp/cache/assets/test/sprockets/a5bf9fc3822019953dee89c6ae2b32ea +0 -0
  276. data/spec/dummy/tmp/cache/assets/test/sprockets/a7387ef33f472faf58df3dd72623fbc6 +0 -0
  277. data/spec/dummy/tmp/cache/assets/test/sprockets/aa2e1ada35daa496bb08e85fcb817536 +0 -0
  278. data/spec/dummy/tmp/cache/assets/test/sprockets/abee2d4cb18d15789dcdc9c680f3e6de +0 -0
  279. data/spec/dummy/tmp/cache/assets/test/sprockets/ae706bde720905edffe622ae48f15740 +0 -0
  280. data/spec/dummy/tmp/cache/assets/test/sprockets/b53fd979e77975479427d0b481b004d4 +0 -0
  281. data/spec/dummy/tmp/cache/assets/test/sprockets/b57a0579a21bd3280d1db6f42550e5c7 +0 -0
  282. data/spec/dummy/tmp/cache/assets/test/sprockets/b80bed2ef62ec65384f12272c185a9a8 +0 -0
  283. data/spec/dummy/tmp/cache/assets/test/sprockets/bf33fb298844af06e55096420b989e3b +0 -0
  284. data/spec/dummy/tmp/cache/assets/test/sprockets/c3e97042b232e677d67679e11ebdb8ec +0 -0
  285. data/spec/dummy/tmp/cache/assets/test/sprockets/c4700cd893db92917b893a0e48f57a24 +0 -0
  286. data/spec/dummy/tmp/cache/assets/test/sprockets/c488c91e58a235d36a0ff8058e5a1004 +0 -0
  287. data/spec/dummy/tmp/cache/assets/test/sprockets/c4a984c6feb506f3e1f9120a8d029bda +0 -0
  288. data/spec/dummy/tmp/cache/assets/test/sprockets/c5ef868ba5f891f326945efdd43e3170 +0 -0
  289. data/spec/dummy/tmp/cache/assets/test/sprockets/c6283ae59dff510d5a2bb2bb9194d045 +0 -0
  290. data/spec/dummy/tmp/cache/assets/test/sprockets/c6bbf5ca5c9b58807ba226fde0ccc60f +0 -0
  291. data/spec/dummy/tmp/cache/assets/test/sprockets/ca5b985126fb033dec26015bd08d56ee +0 -0
  292. data/spec/dummy/tmp/cache/assets/test/sprockets/d26b3581068a8ec8af52f3b2cce8c32a +0 -0
  293. data/spec/dummy/tmp/cache/assets/test/sprockets/d34b5413caa9407126db68d5d590804a +0 -0
  294. data/spec/dummy/tmp/cache/assets/test/sprockets/d4ac74c17332ad931b72f42d7997fcc0 +0 -0
  295. data/spec/dummy/tmp/cache/assets/test/sprockets/d648a0b0abb7fd7ff579d72ffe033d50 +0 -0
  296. data/spec/dummy/tmp/cache/assets/test/sprockets/db6425848529903bdee75792cb2ed79a +0 -0
  297. data/spec/dummy/tmp/cache/assets/test/sprockets/dd672deb061233e0db1d2f413d27213f +0 -0
  298. data/spec/dummy/tmp/cache/assets/test/sprockets/e1fcfb0faa3c12467a1c35251e04c8b1 +0 -0
  299. data/spec/dummy/tmp/cache/assets/test/sprockets/e22f9546f5d75bd3549886e979dcb96e +0 -0
  300. data/spec/dummy/tmp/cache/assets/test/sprockets/e44b4816bd1b2a7ba674c978dad35f3a +0 -0
  301. data/spec/dummy/tmp/cache/assets/test/sprockets/e513ee1af8fa24dcb4f473c18c09bf87 +0 -0
  302. data/spec/dummy/tmp/cache/assets/test/sprockets/e8142c2b10712e79b6d2c2cba0894b4c +0 -0
  303. data/spec/dummy/tmp/cache/assets/test/sprockets/f964bf5dc3949774db54d7cda5761d43 +0 -0
  304. data/spec/dummy/tmp/cache/assets/test/sprockets/fa8059ddbbe226114ba0c178de3fc31b +0 -0
  305. data/spec/dummy/tmp/cache/assets/test/sprockets/fa8e81ce1d45228121b9df5618542190 +0 -0
  306. data/spec/dummy/tmp/cache/assets/test/sprockets/fbc69737b9b0dc77871fa2bb8647a38a +0 -0
  307. data/spec/factories/accepts.rb +12 -0
  308. data/spec/factories/budget_types.rb +13 -0
  309. data/spec/factories/profile.rb +10 -0
  310. data/spec/factories/user.rb +21 -12
  311. data/spec/fixtures/agents.yml +0 -12
  312. data/spec/fixtures/items.yml +49 -37
  313. data/spec/fixtures/libraries.yml +25 -28
  314. data/spec/fixtures/library_groups.yml +13 -18
  315. data/spec/fixtures/manifestation_checkout_stats.yml +0 -3
  316. data/spec/fixtures/manifestation_reserve_stats.yml +0 -3
  317. data/spec/fixtures/message_requests.yml +0 -3
  318. data/spec/fixtures/profiles.yml +98 -0
  319. data/spec/fixtures/request_status_types.yml +4 -5
  320. data/spec/fixtures/request_types.yml +4 -5
  321. data/spec/fixtures/reserve_transitions.yml +88 -0
  322. data/spec/fixtures/shelves.yml +7 -7
  323. data/spec/fixtures/user_checkout_stats.yml +0 -3
  324. data/spec/fixtures/user_groups.yml +3 -3
  325. data/spec/fixtures/user_reserve_stats.yml +0 -3
  326. data/spec/fixtures/users.yml +0 -55
  327. data/spec/models/library_group_spec.rb +0 -2
  328. data/spec/views/budget_types/index.html.erb_spec.rb +2 -2
  329. metadata +417 -28
  330. data/app/models/library_group_sweeper.rb +0 -12
  331. data/spec/dummy/db/migrate/20110425133109_add_issn_to_series_statement.rb +0 -9
  332. data/spec/dummy/db/migrate/20110618091240_add_periodical_to_series_statement.rb +0 -9
  333. data/spec/dummy/db/migrate/20110916053430_rename_manifestation_number_list_to_number_string.rb +0 -13
  334. data/spec/dummy/db/migrate/20111201155456_create_users.rb +0 -16
Binary file
@@ -0,0 +1,31 @@
1
+ <!--
2
+ Licensed to the Apache Software Foundation (ASF) under one or more
3
+ contributor license agreements. See the NOTICE file distributed with
4
+ this work for additional information regarding copyright ownership.
5
+ The ASF licenses this file to You under the Apache License, Version 2.0
6
+ (the "License"); you may not use this file except in compliance with
7
+ the License. You may obtain a copy of the License at
8
+
9
+ http://www.apache.org/licenses/LICENSE-2.0
10
+
11
+ Unless required by applicable law or agreed to in writing, software
12
+ distributed under the License is distributed on an "AS IS" BASIS,
13
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14
+ See the License for the specific language governing permissions and
15
+ limitations under the License.
16
+ -->
17
+
18
+ <!-- The content of this page will be statically included into the top
19
+ of the admin page. Uncomment this as an example to see there the content
20
+ will show up.
21
+
22
+ <hr>
23
+ <i>This line will appear before the first table</i>
24
+ <tr>
25
+ <td colspan="2">
26
+ This row will be appended to the end of the first table
27
+ </td>
28
+ </tr>
29
+ <hr>
30
+
31
+ -->
@@ -0,0 +1,36 @@
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
+ <!-- If this file is found in the config directory, it will only be
20
+ loaded once at startup. If it is found in Solr's data
21
+ directory, it will be re-loaded every commit.
22
+ -->
23
+
24
+ <elevate>
25
+ <query text="foo bar">
26
+ <doc id="1" />
27
+ <doc id="2" />
28
+ <doc id="3" />
29
+ </query>
30
+
31
+ <query text="ipod">
32
+ <doc id="MA147LL/A" /> <!-- put the actual ipod at the top -->
33
+ <doc id="IW-02" exclude="true" /> <!-- exclude this cable -->
34
+ </query>
35
+
36
+ </elevate>
@@ -0,0 +1,246 @@
1
+ # The ASF licenses this file to You under the Apache License, Version 2.0
2
+ # (the "License"); you may not use this file except in compliance with
3
+ # the License. You may obtain a copy of the License at
4
+ #
5
+ # http://www.apache.org/licenses/LICENSE-2.0
6
+ #
7
+ # Unless required by applicable law or agreed to in writing, software
8
+ # distributed under the License is distributed on an "AS IS" BASIS,
9
+ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
10
+ # See the License for the specific language governing permissions and
11
+ # limitations under the License.
12
+
13
+ # Syntax:
14
+ # "source" => "target"
15
+ # "source".length() > 0 (source cannot be empty.)
16
+ # "target".length() >= 0 (target can be empty.)
17
+
18
+ # example:
19
+ # "À" => "A"
20
+ # "\u00C0" => "A"
21
+ # "\u00C0" => "\u0041"
22
+ # "ß" => "ss"
23
+ # "\t" => " "
24
+ # "\n" => ""
25
+
26
+ # À => A
27
+ "\u00C0" => "A"
28
+
29
+ # Á => A
30
+ "\u00C1" => "A"
31
+
32
+ # Â => A
33
+ "\u00C2" => "A"
34
+
35
+ # Ã => A
36
+ "\u00C3" => "A"
37
+
38
+ # Ä => A
39
+ "\u00C4" => "A"
40
+
41
+ # Å => A
42
+ "\u00C5" => "A"
43
+
44
+ # Æ => AE
45
+ "\u00C6" => "AE"
46
+
47
+ # Ç => C
48
+ "\u00C7" => "C"
49
+
50
+ # È => E
51
+ "\u00C8" => "E"
52
+
53
+ # É => E
54
+ "\u00C9" => "E"
55
+
56
+ # Ê => E
57
+ "\u00CA" => "E"
58
+
59
+ # Ë => E
60
+ "\u00CB" => "E"
61
+
62
+ # Ì => I
63
+ "\u00CC" => "I"
64
+
65
+ # Í => I
66
+ "\u00CD" => "I"
67
+
68
+ # Î => I
69
+ "\u00CE" => "I"
70
+
71
+ # Ï => I
72
+ "\u00CF" => "I"
73
+
74
+ # IJ => IJ
75
+ "\u0132" => "IJ"
76
+
77
+ # Ð => D
78
+ "\u00D0" => "D"
79
+
80
+ # Ñ => N
81
+ "\u00D1" => "N"
82
+
83
+ # Ò => O
84
+ "\u00D2" => "O"
85
+
86
+ # Ó => O
87
+ "\u00D3" => "O"
88
+
89
+ # Ô => O
90
+ "\u00D4" => "O"
91
+
92
+ # Õ => O
93
+ "\u00D5" => "O"
94
+
95
+ # Ö => O
96
+ "\u00D6" => "O"
97
+
98
+ # Ø => O
99
+ "\u00D8" => "O"
100
+
101
+ # Π=> OE
102
+ "\u0152" => "OE"
103
+
104
+ # Þ
105
+ "\u00DE" => "TH"
106
+
107
+ # Ù => U
108
+ "\u00D9" => "U"
109
+
110
+ # Ú => U
111
+ "\u00DA" => "U"
112
+
113
+ # Û => U
114
+ "\u00DB" => "U"
115
+
116
+ # Ü => U
117
+ "\u00DC" => "U"
118
+
119
+ # Ý => Y
120
+ "\u00DD" => "Y"
121
+
122
+ # Ÿ => Y
123
+ "\u0178" => "Y"
124
+
125
+ # à => a
126
+ "\u00E0" => "a"
127
+
128
+ # á => a
129
+ "\u00E1" => "a"
130
+
131
+ # â => a
132
+ "\u00E2" => "a"
133
+
134
+ # ã => a
135
+ "\u00E3" => "a"
136
+
137
+ # ä => a
138
+ "\u00E4" => "a"
139
+
140
+ # å => a
141
+ "\u00E5" => "a"
142
+
143
+ # æ => ae
144
+ "\u00E6" => "ae"
145
+
146
+ # ç => c
147
+ "\u00E7" => "c"
148
+
149
+ # è => e
150
+ "\u00E8" => "e"
151
+
152
+ # é => e
153
+ "\u00E9" => "e"
154
+
155
+ # ê => e
156
+ "\u00EA" => "e"
157
+
158
+ # ë => e
159
+ "\u00EB" => "e"
160
+
161
+ # ì => i
162
+ "\u00EC" => "i"
163
+
164
+ # í => i
165
+ "\u00ED" => "i"
166
+
167
+ # î => i
168
+ "\u00EE" => "i"
169
+
170
+ # ï => i
171
+ "\u00EF" => "i"
172
+
173
+ # ij => ij
174
+ "\u0133" => "ij"
175
+
176
+ # ð => d
177
+ "\u00F0" => "d"
178
+
179
+ # ñ => n
180
+ "\u00F1" => "n"
181
+
182
+ # ò => o
183
+ "\u00F2" => "o"
184
+
185
+ # ó => o
186
+ "\u00F3" => "o"
187
+
188
+ # ô => o
189
+ "\u00F4" => "o"
190
+
191
+ # õ => o
192
+ "\u00F5" => "o"
193
+
194
+ # ö => o
195
+ "\u00F6" => "o"
196
+
197
+ # ø => o
198
+ "\u00F8" => "o"
199
+
200
+ # œ => oe
201
+ "\u0153" => "oe"
202
+
203
+ # ß => ss
204
+ "\u00DF" => "ss"
205
+
206
+ # þ => th
207
+ "\u00FE" => "th"
208
+
209
+ # ù => u
210
+ "\u00F9" => "u"
211
+
212
+ # ú => u
213
+ "\u00FA" => "u"
214
+
215
+ # û => u
216
+ "\u00FB" => "u"
217
+
218
+ # ü => u
219
+ "\u00FC" => "u"
220
+
221
+ # ý => y
222
+ "\u00FD" => "y"
223
+
224
+ # ÿ => y
225
+ "\u00FF" => "y"
226
+
227
+ # ff => ff
228
+ "\uFB00" => "ff"
229
+
230
+ # fi => fi
231
+ "\uFB01" => "fi"
232
+
233
+ # fl => fl
234
+ "\uFB02" => "fl"
235
+
236
+ # ffi => ffi
237
+ "\uFB03" => "ffi"
238
+
239
+ # ffl => ffl
240
+ "\uFB04" => "ffl"
241
+
242
+ # ſt => ft
243
+ "\uFB05" => "ft"
244
+
245
+ # st => st
246
+ "\uFB06" => "st"
@@ -0,0 +1,21 @@
1
+ # The ASF licenses this file to You under the Apache License, Version 2.0
2
+ # (the "License"); you may not use this file except in compliance with
3
+ # the License. You may obtain a copy of the License at
4
+ #
5
+ # http://www.apache.org/licenses/LICENSE-2.0
6
+ #
7
+ # Unless required by applicable law or agreed to in writing, software
8
+ # distributed under the License is distributed on an "AS IS" BASIS,
9
+ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
10
+ # See the License for the specific language governing permissions and
11
+ # limitations under the License.
12
+
13
+ #-----------------------------------------------------------------------
14
+ # Use a protected word file to protect against the stemmer reducing two
15
+ # unrelated words to the same base word.
16
+
17
+ # Some non-words that normally won't be encountered,
18
+ # just to test that they won't be stemmed.
19
+ dontstems
20
+ zwhacky
21
+
@@ -0,0 +1,255 @@
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
+ This is the Solr schema file. This file should be named "schema.xml" and
20
+ should be in the conf directory under the solr home
21
+ (i.e. ./solr/conf/schema.xml by default)
22
+ or located where the classloader for the Solr webapp can find it.
23
+
24
+ This example schema is the recommended starting point for users.
25
+ It should be kept correct and concise, usable out-of-the-box.
26
+
27
+ For more information, on how to customize this file, please see
28
+ http://wiki.apache.org/solr/SchemaXml
29
+
30
+ PERFORMANCE NOTE: this schema includes many optional features and should not
31
+ be used for benchmarking. To improve performance one could
32
+ - set stored="false" for all fields possible (esp large fields) when you
33
+ only need to search on the field but don't need to return the original
34
+ value.
35
+ - set indexed="false" if you don't need to search on the field, but only
36
+ return the field as a result of searching on other indexed fields.
37
+ - remove all unneeded copyField statements
38
+ - for best index size and searching performance, set "index" to false
39
+ for all general text fields, use copyField to copy them to the
40
+ catchall "text" field, and use that for searching.
41
+ - For maximum indexing performance, use the StreamingUpdateSolrServer
42
+ java client.
43
+ - Remember to run the JVM in server mode, and use a higher logging level
44
+ that avoids logging every request
45
+ -->
46
+ <schema name="sunspot" version="1.0">
47
+ <types>
48
+ <!-- field type definitions. The "name" attribute is
49
+ just a label to be used by field definitions. The "class"
50
+ attribute and any other attributes determine the real
51
+ behavior of the fieldType.
52
+ Class names starting with "solr" refer to java classes in the
53
+ org.apache.solr.analysis package.
54
+ -->
55
+ <!-- *** This fieldType is used by Sunspot! *** -->
56
+ <fieldType name="string" class="solr.StrField" omitNorms="true"/>
57
+ <!-- *** This fieldType is used by Sunspot! *** -->
58
+ <fieldType name="tdouble" class="solr.TrieDoubleField" omitNorms="true"/>
59
+ <!-- *** This fieldType is used by Sunspot! *** -->
60
+ <fieldType name="rand" class="solr.RandomSortField" omitNorms="true"/>
61
+ <!-- *** This fieldType is used by Sunspot! *** -->
62
+ <fieldType name="text" class="solr.TextField" omitNorms="false">
63
+ <analyzer>
64
+ <tokenizer class="solr.StandardTokenizerFactory"/>
65
+ <filter class="solr.StandardFilterFactory"/>
66
+ <filter class="solr.LowerCaseFilterFactory"/>
67
+ <filter class="solr.PorterStemFilterFactory"/>
68
+ </analyzer>
69
+ </fieldType>
70
+ <!-- *** This fieldType is used by Sunspot! *** -->
71
+ <fieldType name="boolean" class="solr.BoolField" omitNorms="true"/>
72
+ <!-- *** This fieldType is used by Sunspot! *** -->
73
+ <fieldType name="date" class="solr.DateField" omitNorms="true"/>
74
+ <!-- *** This fieldType is used by Sunspot! *** -->
75
+ <fieldType name="sdouble" class="solr.SortableDoubleField" omitNorms="true"/>
76
+ <!-- *** This fieldType is used by Sunspot! *** -->
77
+ <fieldType name="sfloat" class="solr.SortableFloatField" omitNorms="true"/>
78
+ <!-- *** This fieldType is used by Sunspot! *** -->
79
+ <fieldType name="sint" class="solr.SortableIntField" omitNorms="true"/>
80
+ <!-- *** This fieldType is used by Sunspot! *** -->
81
+ <fieldType name="slong" class="solr.SortableLongField" omitNorms="true"/>
82
+ <!-- *** This fieldType is used by Sunspot! *** -->
83
+ <fieldType name="tint" class="solr.TrieIntField" omitNorms="true"/>
84
+ <!-- *** This fieldType is used by Sunspot! *** -->
85
+ <fieldType name="tfloat" class="solr.TrieFloatField" omitNorms="true"/>
86
+ <!-- *** This fieldType is used by Sunspot! *** -->
87
+ <fieldType name="tdate" class="solr.TrieDateField" omitNorms="true"/>
88
+
89
+ <!-- A specialized field for geospatial search. If indexed, this fieldType must not be multivalued. -->
90
+ <fieldType name="location" class="solr.LatLonType" subFieldSuffix="_coordinate"/>
91
+ </types>
92
+ <fields>
93
+ <!-- Valid attributes for fields:
94
+ name: mandatory - the name for the field
95
+ type: mandatory - the name of a previously defined type from the
96
+ <types> section
97
+ indexed: true if this field should be indexed (searchable or sortable)
98
+ stored: true if this field should be retrievable
99
+ compressed: [false] if this field should be stored using gzip compression
100
+ (this will only apply if the field type is compressable; among
101
+ the standard field types, only TextField and StrField are)
102
+ multiValued: true if this field may contain multiple values per document
103
+ omitNorms: (expert) set to true to omit the norms associated with
104
+ this field (this disables length normalization and index-time
105
+ boosting for the field, and saves some memory). Only full-text
106
+ fields or fields that need an index-time boost need norms.
107
+ termVectors: [false] set to true to store the term vector for a
108
+ given field.
109
+ When using MoreLikeThis, fields used for similarity should be
110
+ stored for best performance.
111
+ termPositions: Store position information with the term vector.
112
+ This will increase storage costs.
113
+ termOffsets: Store offset information with the term vector. This
114
+ will increase storage costs.
115
+ default: a value that should be used if no value is specified
116
+ when adding a document.
117
+ -->
118
+ <!-- *** This field is used by Sunspot! *** -->
119
+ <field name="id" stored="true" type="string" multiValued="false" indexed="true"/>
120
+ <!-- *** This field is used by Sunspot! *** -->
121
+ <field name="type" stored="false" type="string" multiValued="true" indexed="true"/>
122
+ <!-- *** This field is used by Sunspot! *** -->
123
+ <field name="class_name" stored="false" type="string" multiValued="false" indexed="true"/>
124
+ <!-- *** This field is used by Sunspot! *** -->
125
+ <field name="text" stored="false" type="string" multiValued="true" indexed="true"/>
126
+ <!-- *** This field is used by Sunspot! *** -->
127
+ <field name="lat" stored="true" type="tdouble" multiValued="false" indexed="true"/>
128
+ <!-- *** This field is used by Sunspot! *** -->
129
+ <field name="lng" stored="true" type="tdouble" multiValued="false" indexed="true"/>
130
+ <!-- *** This dynamicField is used by Sunspot! *** -->
131
+ <dynamicField name="random_*" stored="false" type="rand" multiValued="false" indexed="true"/>
132
+ <!-- *** This dynamicField is used by Sunspot! *** -->
133
+ <dynamicField name="_local*" stored="false" type="tdouble" multiValued="false" indexed="true"/>
134
+ <!-- *** This dynamicField is used by Sunspot! *** -->
135
+ <dynamicField name="*_text" stored="false" type="text" multiValued="true" indexed="true"/>
136
+ <!-- *** This dynamicField is used by Sunspot! *** -->
137
+ <dynamicField name="*_texts" stored="true" type="text" multiValued="true" indexed="true"/>
138
+ <!-- *** This dynamicField is used by Sunspot! *** -->
139
+ <dynamicField name="*_b" stored="false" type="boolean" multiValued="false" indexed="true"/>
140
+ <!-- *** This dynamicField is used by Sunspot! *** -->
141
+ <dynamicField name="*_bm" stored="false" type="boolean" multiValued="true" indexed="true"/>
142
+ <!-- *** This dynamicField is used by Sunspot! *** -->
143
+ <dynamicField name="*_bs" stored="true" type="boolean" multiValued="false" indexed="true"/>
144
+ <!-- *** This dynamicField is used by Sunspot! *** -->
145
+ <dynamicField name="*_bms" stored="true" type="boolean" multiValued="true" indexed="true"/>
146
+ <!-- *** This dynamicField is used by Sunspot! *** -->
147
+ <dynamicField name="*_d" stored="false" type="date" multiValued="false" indexed="true"/>
148
+ <!-- *** This dynamicField is used by Sunspot! *** -->
149
+ <dynamicField name="*_dm" stored="false" type="date" multiValued="true" indexed="true"/>
150
+ <!-- *** This dynamicField is used by Sunspot! *** -->
151
+ <dynamicField name="*_ds" stored="true" type="date" multiValued="false" indexed="true"/>
152
+ <!-- *** This dynamicField is used by Sunspot! *** -->
153
+ <dynamicField name="*_dms" stored="true" type="date" multiValued="true" indexed="true"/>
154
+ <!-- *** This dynamicField is used by Sunspot! *** -->
155
+ <dynamicField name="*_e" stored="false" type="sdouble" multiValued="false" indexed="true"/>
156
+ <!-- *** This dynamicField is used by Sunspot! *** -->
157
+ <dynamicField name="*_em" stored="false" type="sdouble" multiValued="true" indexed="true"/>
158
+ <!-- *** This dynamicField is used by Sunspot! *** -->
159
+ <dynamicField name="*_es" stored="true" type="sdouble" multiValued="false" indexed="true"/>
160
+ <!-- *** This dynamicField is used by Sunspot! *** -->
161
+ <dynamicField name="*_ems" stored="true" type="sdouble" multiValued="true" indexed="true"/>
162
+ <!-- *** This dynamicField is used by Sunspot! *** -->
163
+ <dynamicField name="*_f" stored="false" type="sfloat" multiValued="false" indexed="true"/>
164
+ <!-- *** This dynamicField is used by Sunspot! *** -->
165
+ <dynamicField name="*_fm" stored="false" type="sfloat" multiValued="true" indexed="true"/>
166
+ <!-- *** This dynamicField is used by Sunspot! *** -->
167
+ <dynamicField name="*_fs" stored="true" type="sfloat" multiValued="false" indexed="true"/>
168
+ <!-- *** This dynamicField is used by Sunspot! *** -->
169
+ <dynamicField name="*_fms" stored="true" type="sfloat" multiValued="true" indexed="true"/>
170
+ <!-- *** This dynamicField is used by Sunspot! *** -->
171
+ <dynamicField name="*_i" stored="false" type="sint" multiValued="false" indexed="true"/>
172
+ <!-- *** This dynamicField is used by Sunspot! *** -->
173
+ <dynamicField name="*_im" stored="false" type="sint" multiValued="true" indexed="true"/>
174
+ <!-- *** This dynamicField is used by Sunspot! *** -->
175
+ <dynamicField name="*_is" stored="true" type="sint" multiValued="false" indexed="true"/>
176
+ <!-- *** This dynamicField is used by Sunspot! *** -->
177
+ <dynamicField name="*_ims" stored="true" type="sint" multiValued="true" indexed="true"/>
178
+ <!-- *** This dynamicField is used by Sunspot! *** -->
179
+ <dynamicField name="*_l" stored="false" type="slong" multiValued="false" indexed="true"/>
180
+ <!-- *** This dynamicField is used by Sunspot! *** -->
181
+ <dynamicField name="*_lm" stored="false" type="slong" multiValued="true" indexed="true"/>
182
+ <!-- *** This dynamicField is used by Sunspot! *** -->
183
+ <dynamicField name="*_ls" stored="true" type="slong" multiValued="false" indexed="true"/>
184
+ <!-- *** This dynamicField is used by Sunspot! *** -->
185
+ <dynamicField name="*_lms" stored="true" type="slong" multiValued="true" indexed="true"/>
186
+ <!-- *** This dynamicField is used by Sunspot! *** -->
187
+ <dynamicField name="*_s" stored="false" type="string" multiValued="false" indexed="true"/>
188
+ <!-- *** This dynamicField is used by Sunspot! *** -->
189
+ <dynamicField name="*_sm" stored="false" type="string" multiValued="true" indexed="true"/>
190
+ <!-- *** This dynamicField is used by Sunspot! *** -->
191
+ <dynamicField name="*_ss" stored="true" type="string" multiValued="false" indexed="true"/>
192
+ <!-- *** This dynamicField is used by Sunspot! *** -->
193
+ <dynamicField name="*_sms" stored="true" type="string" multiValued="true" indexed="true"/>
194
+ <!-- *** This dynamicField is used by Sunspot! *** -->
195
+ <dynamicField name="*_it" stored="false" type="tint" multiValued="false" indexed="true"/>
196
+ <!-- *** This dynamicField is used by Sunspot! *** -->
197
+ <dynamicField name="*_itm" stored="false" type="tint" multiValued="true" indexed="true"/>
198
+ <!-- *** This dynamicField is used by Sunspot! *** -->
199
+ <dynamicField name="*_its" stored="true" type="tint" multiValued="false" indexed="true"/>
200
+ <!-- *** This dynamicField is used by Sunspot! *** -->
201
+ <dynamicField name="*_itms" stored="true" type="tint" multiValued="true" indexed="true"/>
202
+ <!-- *** This dynamicField is used by Sunspot! *** -->
203
+ <dynamicField name="*_ft" stored="false" type="tfloat" multiValued="false" indexed="true"/>
204
+ <!-- *** This dynamicField is used by Sunspot! *** -->
205
+ <dynamicField name="*_ftm" stored="false" type="tfloat" multiValued="true" indexed="true"/>
206
+ <!-- *** This dynamicField is used by Sunspot! *** -->
207
+ <dynamicField name="*_fts" stored="true" type="tfloat" multiValued="false" indexed="true"/>
208
+ <!-- *** This dynamicField is used by Sunspot! *** -->
209
+ <dynamicField name="*_ftms" stored="true" type="tfloat" multiValued="true" indexed="true"/>
210
+ <!-- *** This dynamicField is used by Sunspot! *** -->
211
+ <dynamicField name="*_dt" stored="false" type="tdate" multiValued="false" indexed="true"/>
212
+ <!-- *** This dynamicField is used by Sunspot! *** -->
213
+ <dynamicField name="*_dtm" stored="false" type="tdate" multiValued="true" indexed="true"/>
214
+ <!-- *** This dynamicField is used by Sunspot! *** -->
215
+ <dynamicField name="*_dts" stored="true" type="tdate" multiValued="false" indexed="true"/>
216
+ <!-- *** This dynamicField is used by Sunspot! *** -->
217
+ <dynamicField name="*_dtms" stored="true" type="tdate" multiValued="true" indexed="true"/>
218
+ <!-- *** This dynamicField is used by Sunspot! *** -->
219
+ <dynamicField name="*_textv" stored="false" termVectors="true" type="text" multiValued="true" indexed="true"/>
220
+ <!-- *** This dynamicField is used by Sunspot! *** -->
221
+ <dynamicField name="*_textsv" stored="true" termVectors="true" type="text" multiValued="true" indexed="true"/>
222
+ <!-- *** This dynamicField is used by Sunspot! *** -->
223
+ <dynamicField name="*_et" stored="false" termVectors="true" type="tdouble" multiValued="false" indexed="true"/>
224
+ <!-- *** This dynamicField is used by Sunspot! *** -->
225
+ <dynamicField name="*_etm" stored="false" termVectors="true" type="tdouble" multiValued="true" indexed="true"/>
226
+ <!-- *** This dynamicField is used by Sunspot! *** -->
227
+ <dynamicField name="*_ets" stored="true" termVectors="true" type="tdouble" multiValued="false" indexed="true"/>
228
+ <!-- *** This dynamicField is used by Sunspot! *** -->
229
+ <dynamicField name="*_etms" stored="true" termVectors="true" type="tdouble" multiValued="true" indexed="true"/>
230
+
231
+ <!-- Type used to index the lat and lon components for the "location" FieldType -->
232
+ <dynamicField name="*_coordinate" type="tdouble" indexed="true" stored="false" multiValued="false"/>
233
+ <dynamicField name="*_p" type="location" indexed="true" stored="true" multiValued="false"/>
234
+
235
+ <dynamicField name="*_ll" stored="false" type="location" multiValued="false" indexed="true"/>
236
+ <dynamicField name="*_llm" stored="false" type="location" multiValued="true" indexed="true"/>
237
+ <dynamicField name="*_lls" stored="true" type="location" multiValued="false" indexed="true"/>
238
+ <dynamicField name="*_llms" stored="true" type="location" multiValued="true" indexed="true"/>
239
+
240
+ <!-- required by Solr 4 -->
241
+ <field name="_version_" type="string" indexed="true" stored="true" multiValued="false" />
242
+ </fields>
243
+
244
+ <!-- Field to use to determine and enforce document uniqueness.
245
+ Unless this field is marked with required="false", it will be a required field
246
+ -->
247
+ <uniqueKey>id</uniqueKey>
248
+ <!-- field for the QueryParser to use when an explicit fieldname is absent -->
249
+ <defaultSearchField>text</defaultSearchField>
250
+ <!-- SolrQueryParser configuration: defaultOperator="AND|OR" -->
251
+ <solrQueryParser defaultOperator="AND"/>
252
+ <!-- copyField commands copy one field to another at the time a document
253
+ is added to the index. It's used either to index the same field differently,
254
+ or to add multiple fields to the same field for easier/faster searching. -->
255
+ </schema>