enju_biblio 0.0.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (880) hide show
  1. data/MIT-LICENSE +20 -0
  2. data/README.rdoc +3 -0
  3. data/Rakefile +46 -0
  4. data/app/controllers/carrier_types_controller.rb +13 -0
  5. data/app/controllers/content_types_controller.rb +17 -0
  6. data/app/controllers/countries_controller.rb +17 -0
  7. data/app/controllers/create_types_controller.rb +13 -0
  8. data/app/controllers/creates_controller.rb +118 -0
  9. data/app/controllers/donates_controller.rb +79 -0
  10. data/app/controllers/exemplifies_controller.rb +103 -0
  11. data/app/controllers/extents_controller.rb +17 -0
  12. data/app/controllers/form_of_works_controller.rb +13 -0
  13. data/app/controllers/frequencies_controller.rb +13 -0
  14. data/app/controllers/import_requests_controller.rb +92 -0
  15. data/app/controllers/items_controller.rb +245 -0
  16. data/app/controllers/languages_controller.rb +17 -0
  17. data/app/controllers/licenses_controller.rb +17 -0
  18. data/app/controllers/manifestation_relationship_types_controller.rb +13 -0
  19. data/app/controllers/manifestation_relationships_controller.rb +23 -0
  20. data/app/controllers/manifestations_controller.rb +727 -0
  21. data/app/controllers/medium_of_performances_controller.rb +17 -0
  22. data/app/controllers/owns_controller.rb +108 -0
  23. data/app/controllers/patron_import_files_controller.rb +93 -0
  24. data/app/controllers/patron_import_results_controller.rb +15 -0
  25. data/app/controllers/patron_relationship_types_controller.rb +13 -0
  26. data/app/controllers/patron_relationships_controller.rb +23 -0
  27. data/app/controllers/patron_types_controller.rb +17 -0
  28. data/app/controllers/patrons_controller.rb +211 -0
  29. data/app/controllers/picture_files_controller.rb +169 -0
  30. data/app/controllers/produce_types_controller.rb +13 -0
  31. data/app/controllers/produces_controller.rb +122 -0
  32. data/app/controllers/realize_types_controller.rb +13 -0
  33. data/app/controllers/realizes_controller.rb +118 -0
  34. data/app/controllers/resource_import_files_controller.rb +93 -0
  35. data/app/controllers/resource_import_results_controller.rb +19 -0
  36. data/app/controllers/series_has_manifestations_controller.rb +95 -0
  37. data/app/controllers/series_statements_controller.rb +125 -0
  38. data/app/helpers/manifestations_helper.rb +160 -0
  39. data/app/helpers/owns_helper.rb +3 -0
  40. data/app/helpers/patrons_helper.rb +16 -0
  41. data/app/helpers/picture_files_helper.rb +15 -0
  42. data/app/helpers/series_statements_helper.rb +3 -0
  43. data/app/models/carrier_type.rb +34 -0
  44. data/app/models/content_type.rb +20 -0
  45. data/app/models/country.rb +45 -0
  46. data/app/models/create.rb +38 -0
  47. data/app/models/create_type.rb +19 -0
  48. data/app/models/donate.rb +23 -0
  49. data/app/models/exemplify.rb +46 -0
  50. data/app/models/extent.rb +20 -0
  51. data/app/models/form_of_work.rb +20 -0
  52. data/app/models/frequency.rb +20 -0
  53. data/app/models/import_request.rb +72 -0
  54. data/app/models/item.rb +277 -0
  55. data/app/models/item_sweeper.rb +19 -0
  56. data/app/models/language.rb +48 -0
  57. data/app/models/license.rb +19 -0
  58. data/app/models/manifestation.rb +642 -0
  59. data/app/models/manifestation_relationship.rb +30 -0
  60. data/app/models/manifestation_relationship_type.rb +20 -0
  61. data/app/models/manifestation_sweeper.rb +24 -0
  62. data/app/models/medium_of_performance.rb +20 -0
  63. data/app/models/own.rb +36 -0
  64. data/app/models/page_sweeper.rb +40 -0
  65. data/app/models/patron.rb +308 -0
  66. data/app/models/patron_import_file.rb +285 -0
  67. data/app/models/patron_import_result.rb +26 -0
  68. data/app/models/patron_relationship.rb +27 -0
  69. data/app/models/patron_relationship_type.rb +20 -0
  70. data/app/models/patron_sweeper.rb +30 -0
  71. data/app/models/patron_type.rb +20 -0
  72. data/app/models/picture_file.rb +48 -0
  73. data/app/models/produce.rb +39 -0
  74. data/app/models/produce_type.rb +19 -0
  75. data/app/models/realize.rb +38 -0
  76. data/app/models/realize_type.rb +19 -0
  77. data/app/models/resource_import_file.rb +585 -0
  78. data/app/models/resource_import_result.rb +26 -0
  79. data/app/models/series_has_manifestation.rb +38 -0
  80. data/app/models/series_statement.rb +105 -0
  81. data/app/views/carrier_types/_form.html.erb +19 -0
  82. data/app/views/carrier_types/edit.html.erb +13 -0
  83. data/app/views/carrier_types/index.html.erb +45 -0
  84. data/app/views/carrier_types/new.html.erb +12 -0
  85. data/app/views/carrier_types/show.html.erb +24 -0
  86. data/app/views/content_types/_form.html.erb +22 -0
  87. data/app/views/content_types/edit.html.erb +13 -0
  88. data/app/views/content_types/index.html.erb +45 -0
  89. data/app/views/content_types/new.html.erb +12 -0
  90. data/app/views/content_types/show.html.erb +24 -0
  91. data/app/views/countries/_form.html.erb +22 -0
  92. data/app/views/countries/edit.html.erb +13 -0
  93. data/app/views/countries/index.html.erb +43 -0
  94. data/app/views/countries/new.html.erb +12 -0
  95. data/app/views/countries/show.html.erb +24 -0
  96. data/app/views/create_types/_form.html.erb +19 -0
  97. data/app/views/create_types/edit.html.erb +13 -0
  98. data/app/views/create_types/index.html.erb +43 -0
  99. data/app/views/create_types/new.html.erb +12 -0
  100. data/app/views/create_types/show.html.erb +29 -0
  101. data/app/views/creates/_form.html.erb +32 -0
  102. data/app/views/creates/_index.html.erb +36 -0
  103. data/app/views/creates/_index_patron.html.erb +48 -0
  104. data/app/views/creates/_index_work.html.erb +48 -0
  105. data/app/views/creates/edit.html.erb +13 -0
  106. data/app/views/creates/index.html.erb +7 -0
  107. data/app/views/creates/new.html.erb +17 -0
  108. data/app/views/creates/show.html.erb +24 -0
  109. data/app/views/donates/edit.html.erb +30 -0
  110. data/app/views/donates/index.html.erb +45 -0
  111. data/app/views/donates/new.html.erb +29 -0
  112. data/app/views/donates/show.html.erb +25 -0
  113. data/app/views/exemplifies/_form.html.erb +27 -0
  114. data/app/views/exemplifies/edit.html.erb +13 -0
  115. data/app/views/exemplifies/index.html.erb +38 -0
  116. data/app/views/exemplifies/new.html.erb +12 -0
  117. data/app/views/exemplifies/show.html.erb +24 -0
  118. data/app/views/extents/_form.html.erb +19 -0
  119. data/app/views/extents/edit.html.erb +13 -0
  120. data/app/views/extents/index.html.erb +47 -0
  121. data/app/views/extents/new.html.erb +12 -0
  122. data/app/views/extents/show.html.erb +29 -0
  123. data/app/views/form_of_works/_form.html.erb +19 -0
  124. data/app/views/form_of_works/edit.html.erb +13 -0
  125. data/app/views/form_of_works/index.html.erb +45 -0
  126. data/app/views/form_of_works/new.html.erb +12 -0
  127. data/app/views/form_of_works/show.html.erb +29 -0
  128. data/app/views/frequencies/_form.html.erb +19 -0
  129. data/app/views/frequencies/edit.html.erb +13 -0
  130. data/app/views/frequencies/index.html.erb +43 -0
  131. data/app/views/frequencies/new.html.erb +12 -0
  132. data/app/views/frequencies/show.html.erb +24 -0
  133. data/app/views/import_requests/_form.html.erb +32 -0
  134. data/app/views/import_requests/edit.html.erb +24 -0
  135. data/app/views/import_requests/index.html.erb +41 -0
  136. data/app/views/import_requests/new.html.erb +27 -0
  137. data/app/views/import_requests/show.html.erb +43 -0
  138. data/app/views/items/_form.html.erb +86 -0
  139. data/app/views/items/_observe_field.html.erb +7 -0
  140. data/app/views/items/_qtip.html.erb +25 -0
  141. data/app/views/items/_shelf_picture.html.erb +8 -0
  142. data/app/views/items/_shelf_picture.mobile.erb +8 -0
  143. data/app/views/items/edit.html.erb +18 -0
  144. data/app/views/items/index.csv.erb +4 -0
  145. data/app/views/items/index.html.erb +74 -0
  146. data/app/views/items/index.mobile.erb +53 -0
  147. data/app/views/items/new.html.erb +21 -0
  148. data/app/views/items/show.html.erb +160 -0
  149. data/app/views/items/show.mobile.erb +88 -0
  150. data/app/views/languages/_form.html.erb +27 -0
  151. data/app/views/languages/edit.html.erb +13 -0
  152. data/app/views/languages/index.html.erb +49 -0
  153. data/app/views/languages/new.html.erb +12 -0
  154. data/app/views/languages/show.html.erb +34 -0
  155. data/app/views/licenses/_form.html.erb +19 -0
  156. data/app/views/licenses/edit.html.erb +13 -0
  157. data/app/views/licenses/index.html.erb +46 -0
  158. data/app/views/licenses/new.html.erb +12 -0
  159. data/app/views/licenses/show.html.erb +29 -0
  160. data/app/views/manifestation_relationship_types/_form.html.erb +19 -0
  161. data/app/views/manifestation_relationship_types/edit.html.erb +13 -0
  162. data/app/views/manifestation_relationship_types/index.html.erb +43 -0
  163. data/app/views/manifestation_relationship_types/new.html.erb +12 -0
  164. data/app/views/manifestation_relationship_types/show.html.erb +29 -0
  165. data/app/views/manifestation_relationships/_form.html.erb +31 -0
  166. data/app/views/manifestation_relationships/edit.html.erb +13 -0
  167. data/app/views/manifestation_relationships/index.html.erb +34 -0
  168. data/app/views/manifestation_relationships/new.html.erb +12 -0
  169. data/app/views/manifestation_relationships/show.html.erb +24 -0
  170. data/app/views/manifestations/_all_facet.html.erb +7 -0
  171. data/app/views/manifestations/_attachment_file.html.erb +6 -0
  172. data/app/views/manifestations/_book_jacket.html.erb +5 -0
  173. data/app/views/manifestations/_call_number.html.erb +25 -0
  174. data/app/views/manifestations/_carrier_type_facet.html.erb +9 -0
  175. data/app/views/manifestations/_edition_and_number.html.erb +22 -0
  176. data/app/views/manifestations/_form.html.erb +154 -0
  177. data/app/views/manifestations/_form.html.erb.osakac +153 -0
  178. data/app/views/manifestations/_history_list.html.erb +12 -0
  179. data/app/views/manifestations/_holding.html.erb +3 -0
  180. data/app/views/manifestations/_index_form.html.erb +12 -0
  181. data/app/views/manifestations/_index_form_contributor.html.erb +15 -0
  182. data/app/views/manifestations/_index_form_creator.html.erb +15 -0
  183. data/app/views/manifestations/_index_form_item.html.erb +14 -0
  184. data/app/views/manifestations/_index_form_manifestation.html.erb +13 -0
  185. data/app/views/manifestations/_index_form_publisher.html.erb +15 -0
  186. data/app/views/manifestations/_index_form_series_statement.html.erb +20 -0
  187. data/app/views/manifestations/_language_facet.html.erb +16 -0
  188. data/app/views/manifestations/_library_facet.html.erb +16 -0
  189. data/app/views/manifestations/_list.html.erb +21 -0
  190. data/app/views/manifestations/_manifestation.html.erb +69 -0
  191. data/app/views/manifestations/_manifestation_list.html.erb +32 -0
  192. data/app/views/manifestations/_not_found.html.erb +7 -0
  193. data/app/views/manifestations/_paginate_id_link.html.erb +10 -0
  194. data/app/views/manifestations/_pickup.html.erb +30 -0
  195. data/app/views/manifestations/_pubdate_facet.html.erb +9 -0
  196. data/app/views/manifestations/_question_list.html.erb +13 -0
  197. data/app/views/manifestations/_reservable_facet.html.erb +14 -0
  198. data/app/views/manifestations/_search_engine.html.erb +16 -0
  199. data/app/views/manifestations/_serial_form.html.erb +14 -0
  200. data/app/views/manifestations/_show.mods.builder +86 -0
  201. data/app/views/manifestations/_show.rdf.builder +63 -0
  202. data/app/views/manifestations/_show_creators.html.erb +17 -0
  203. data/app/views/manifestations/_show_creators.mobile.erb +17 -0
  204. data/app/views/manifestations/_show_detail_librarian.html.erb +136 -0
  205. data/app/views/manifestations/_show_detail_user.html.erb +131 -0
  206. data/app/views/manifestations/_show_group.html.erb +2 -0
  207. data/app/views/manifestations/_show_holding.html.erb +62 -0
  208. data/app/views/manifestations/_show_holding.mobile.erb +38 -0
  209. data/app/views/manifestations/_show_index.html.erb +15 -0
  210. data/app/views/manifestations/_show_index.mobile.erb +14 -0
  211. data/app/views/manifestations/_show_periodical_master.html.erb +40 -0
  212. data/app/views/manifestations/_tab_list.html.erb +11 -0
  213. data/app/views/manifestations/_tab_menu.html.erb +14 -0
  214. data/app/views/manifestations/_title.html.erb +27 -0
  215. data/app/views/manifestations/_title.mobile.erb +27 -0
  216. data/app/views/manifestations/edit.html.erb +21 -0
  217. data/app/views/manifestations/error.xml +7 -0
  218. data/app/views/manifestations/explain.sru +9 -0
  219. data/app/views/manifestations/index.atom.builder +19 -0
  220. data/app/views/manifestations/index.csv.erb +4 -0
  221. data/app/views/manifestations/index.html.erb +101 -0
  222. data/app/views/manifestations/index.mobile.erb +21 -0
  223. data/app/views/manifestations/index.mods.builder +8 -0
  224. data/app/views/manifestations/index.rdf.builder +28 -0
  225. data/app/views/manifestations/index.rss.builder +43 -0
  226. data/app/views/manifestations/index.sru.builder +101 -0
  227. data/app/views/manifestations/new.html.erb +16 -0
  228. data/app/views/manifestations/show.html.erb +108 -0
  229. data/app/views/manifestations/show.mobile.erb +20 -0
  230. data/app/views/manifestations/show.mods.builder +6 -0
  231. data/app/views/manifestations/show.rdf.builder +11 -0
  232. data/app/views/medium_of_performances/_form.html.erb +19 -0
  233. data/app/views/medium_of_performances/edit.html.erb +13 -0
  234. data/app/views/medium_of_performances/index.html.erb +44 -0
  235. data/app/views/medium_of_performances/new.html.erb +12 -0
  236. data/app/views/medium_of_performances/show.html.erb +29 -0
  237. data/app/views/owns/_form.html.erb +17 -0
  238. data/app/views/owns/edit.html.erb +13 -0
  239. data/app/views/owns/index.html.erb +46 -0
  240. data/app/views/owns/new.html.erb +12 -0
  241. data/app/views/owns/show.html.erb +25 -0
  242. data/app/views/patron_import_files/edit.html.erb +25 -0
  243. data/app/views/patron_import_files/index.html.erb +40 -0
  244. data/app/views/patron_import_files/new.html.erb +35 -0
  245. data/app/views/patron_import_files/show.html.erb +69 -0
  246. data/app/views/patron_import_results/index.csv.erb +3 -0
  247. data/app/views/patron_import_results/index.html.erb +52 -0
  248. data/app/views/patron_import_results/show.html.erb +38 -0
  249. data/app/views/patron_relationship_types/_form.html.erb +19 -0
  250. data/app/views/patron_relationship_types/edit.html.erb +13 -0
  251. data/app/views/patron_relationship_types/index.html.erb +43 -0
  252. data/app/views/patron_relationship_types/new.html.erb +12 -0
  253. data/app/views/patron_relationship_types/show.html.erb +29 -0
  254. data/app/views/patron_relationships/_form.html.erb +31 -0
  255. data/app/views/patron_relationships/edit.html.erb +13 -0
  256. data/app/views/patron_relationships/index.html.erb +34 -0
  257. data/app/views/patron_relationships/new.html.erb +12 -0
  258. data/app/views/patron_relationships/show.html.erb +24 -0
  259. data/app/views/patron_types/_form.html.erb +19 -0
  260. data/app/views/patron_types/edit.html.erb +13 -0
  261. data/app/views/patron_types/index.html.erb +43 -0
  262. data/app/views/patron_types/new.html.erb +12 -0
  263. data/app/views/patron_types/show.html.erb +29 -0
  264. data/app/views/patrons/_expression_list.html.erb +20 -0
  265. data/app/views/patrons/_form.html.erb +153 -0
  266. data/app/views/patrons/_form_family_name_first.html.erb +8 -0
  267. data/app/views/patrons/_form_family_name_last.html.erb +8 -0
  268. data/app/views/patrons/_history_list.html.erb +12 -0
  269. data/app/views/patrons/_index.html.erb +38 -0
  270. data/app/views/patrons/_index_expression.html.erb +58 -0
  271. data/app/views/patrons/_index_manifestation.html.erb +58 -0
  272. data/app/views/patrons/_index_patron.html.erb +71 -0
  273. data/app/views/patrons/_index_patron_merge_list.html.erb +53 -0
  274. data/app/views/patrons/_index_work.html.erb +63 -0
  275. data/app/views/patrons/_manifestation_list.html.erb +19 -0
  276. data/app/views/patrons/_patron.html.erb +17 -0
  277. data/app/views/patrons/_patron_list.html.erb +18 -0
  278. data/app/views/patrons/_work_list.html.erb +14 -0
  279. data/app/views/patrons/edit.html.erb +16 -0
  280. data/app/views/patrons/index.atom.builder +10 -0
  281. data/app/views/patrons/index.html.erb +14 -0
  282. data/app/views/patrons/index.mobile.erb +23 -0
  283. data/app/views/patrons/index.rss.builder +34 -0
  284. data/app/views/patrons/new.html.erb +12 -0
  285. data/app/views/patrons/show.html.erb +204 -0
  286. data/app/views/patrons/show.js.erb +3 -0
  287. data/app/views/patrons/show.mobile.erb +121 -0
  288. data/app/views/picture_files/_index.html.erb +52 -0
  289. data/app/views/picture_files/_index_event.html.erb +53 -0
  290. data/app/views/picture_files/_index_manifestation.html.erb +55 -0
  291. data/app/views/picture_files/_index_patron.html.erb +55 -0
  292. data/app/views/picture_files/_index_shelf.html.erb +53 -0
  293. data/app/views/picture_files/_link.html.erb +3 -0
  294. data/app/views/picture_files/edit.html.erb +56 -0
  295. data/app/views/picture_files/index.html.erb +11 -0
  296. data/app/views/picture_files/new.html.erb +33 -0
  297. data/app/views/picture_files/show.html.erb +67 -0
  298. data/app/views/produce_types/_form.html.erb +19 -0
  299. data/app/views/produce_types/edit.html.erb +13 -0
  300. data/app/views/produce_types/index.html.erb +43 -0
  301. data/app/views/produce_types/new.html.erb +12 -0
  302. data/app/views/produce_types/show.html.erb +29 -0
  303. data/app/views/produces/_form.html.erb +32 -0
  304. data/app/views/produces/_index.html.erb +36 -0
  305. data/app/views/produces/_index_manifestation.html.erb +49 -0
  306. data/app/views/produces/_index_patron.html.erb +40 -0
  307. data/app/views/produces/edit.html.erb +13 -0
  308. data/app/views/produces/index.html.erb +7 -0
  309. data/app/views/produces/new.html.erb +17 -0
  310. data/app/views/produces/show.html.erb +24 -0
  311. data/app/views/realize_types/_form.html.erb +19 -0
  312. data/app/views/realize_types/edit.html.erb +13 -0
  313. data/app/views/realize_types/index.html.erb +43 -0
  314. data/app/views/realize_types/new.html.erb +12 -0
  315. data/app/views/realize_types/show.html.erb +29 -0
  316. data/app/views/realizes/_form.html.erb +32 -0
  317. data/app/views/realizes/_index.html.erb +36 -0
  318. data/app/views/realizes/_index_expression.html.erb +49 -0
  319. data/app/views/realizes/_index_patron.html.erb +40 -0
  320. data/app/views/realizes/edit.html.erb +13 -0
  321. data/app/views/realizes/index.html.erb +7 -0
  322. data/app/views/realizes/new.html.erb +17 -0
  323. data/app/views/realizes/show.html.erb +24 -0
  324. data/app/views/resource_import_files/_show_object_list.html.erb +26 -0
  325. data/app/views/resource_import_files/edit.html.erb +25 -0
  326. data/app/views/resource_import_files/index.html.erb +40 -0
  327. data/app/views/resource_import_files/new.html.erb +37 -0
  328. data/app/views/resource_import_files/show.html.erb +69 -0
  329. data/app/views/resource_import_results/index.csv.erb +4 -0
  330. data/app/views/resource_import_results/index.html.erb +52 -0
  331. data/app/views/resource_import_results/show.html.erb +38 -0
  332. data/app/views/series_has_manifestations/_form.html.erb +27 -0
  333. data/app/views/series_has_manifestations/edit.html.erb +15 -0
  334. data/app/views/series_has_manifestations/index.html.erb +34 -0
  335. data/app/views/series_has_manifestations/new.html.erb +14 -0
  336. data/app/views/series_has_manifestations/show.html.erb +23 -0
  337. data/app/views/series_statements/_form.html.erb +57 -0
  338. data/app/views/series_statements/_index.html.erb +55 -0
  339. data/app/views/series_statements/_index_manifestation.html.erb +59 -0
  340. data/app/views/series_statements/_index_series_statement_merge_list.html.erb +53 -0
  341. data/app/views/series_statements/_manifestation_list.html.erb +17 -0
  342. data/app/views/series_statements/_merge.html.erb +27 -0
  343. data/app/views/series_statements/_refine_search_form.html.erb +9 -0
  344. data/app/views/series_statements/_tab_menu.html.erb +3 -0
  345. data/app/views/series_statements/edit.html.erb +13 -0
  346. data/app/views/series_statements/index.html.erb +7 -0
  347. data/app/views/series_statements/new.html.erb +12 -0
  348. data/app/views/series_statements/show.html.erb +65 -0
  349. data/app/views/series_statements/show.js.erb +1 -0
  350. data/config/locales/translation_en.yml +5 -0
  351. data/config/locales/translation_ja.yml +5 -0
  352. data/config/routes.rb +100 -0
  353. data/db/migrate/001_create_patrons.rb +53 -0
  354. data/db/migrate/005_create_manifestations.rb +56 -0
  355. data/db/migrate/006_create_items.rb +28 -0
  356. data/db/migrate/012_create_owns.rb +12 -0
  357. data/db/migrate/015_create_creates.rb +12 -0
  358. data/db/migrate/047_create_produces.rb +12 -0
  359. data/db/migrate/073_create_carrier_types.rb +11 -0
  360. data/db/migrate/112_create_frequencies.rb +12 -0
  361. data/db/migrate/117_create_form_of_works.rb +12 -0
  362. data/db/migrate/125_create_donates.rb +12 -0
  363. data/db/migrate/20080830154109_create_realizes.rb +13 -0
  364. data/db/migrate/20080830172106_create_exemplifies.rb +13 -0
  365. data/db/migrate/20080905191442_create_patron_types.rb +12 -0
  366. data/db/migrate/20081025083323_create_countries.rb +28 -0
  367. data/db/migrate/20081025083905_create_languages.rb +23 -0
  368. data/db/migrate/20081027150907_create_picture_files.rb +15 -0
  369. data/db/migrate/20081028083142_create_patron_import_files.rb +22 -0
  370. data/db/migrate/20081028083208_create_resource_import_files.rb +22 -0
  371. data/db/migrate/20090705133942_add_attachments_picture_to_picture_file.rb +15 -0
  372. data/db/migrate/20090705212043_add_attachments_attachment_to_manifestation.rb +15 -0
  373. data/db/migrate/20090719201843_create_extents.rb +12 -0
  374. data/db/migrate/20090720091106_create_medium_of_performances.rb +12 -0
  375. data/db/migrate/20090720091429_create_content_types.rb +12 -0
  376. data/db/migrate/20090812151902_create_patron_relationship_types.rb +12 -0
  377. data/db/migrate/20091012101112_add_dcndl_schema.rb +27 -0
  378. data/db/migrate/20091025080447_create_licenses.rb +12 -0
  379. data/db/migrate/20091214131723_create_series_statements.rb +13 -0
  380. data/db/migrate/20100129142347_create_import_requests.rb +15 -0
  381. data/db/migrate/20100223121519_rename_series_statement_title_to_original_title.rb +13 -0
  382. data/db/migrate/20100321235924_add_series_statement_identifier_to_series_statement.rb +10 -0
  383. data/db/migrate/20100525124311_create_manifestation_relationships.rb +13 -0
  384. data/db/migrate/20100606073747_create_patron_relationships.rb +13 -0
  385. data/db/migrate/20100607044753_create_manifestation_relationship_types.rb +12 -0
  386. data/db/migrate/20100814091104_add_position_to_patron_relationship.rb +11 -0
  387. data/db/migrate/20100925043847_create_resource_import_results.rb +15 -0
  388. data/db/migrate/20100925074559_create_patron_import_results.rb +12 -0
  389. data/db/migrate/20101212070145_add_acquired_at_to_item.rb +9 -0
  390. data/db/migrate/20110301035123_add_pub_date_to_manifestation.rb +9 -0
  391. data/db/migrate/20110301121550_add_birth_date_and_death_date_to_patron.rb +11 -0
  392. data/db/migrate/20110425133109_add_issn_to_series_statement.rb +9 -0
  393. data/db/migrate/20110603184217_add_edit_mode_to_resource_import_file.rb +9 -0
  394. data/db/migrate/20110618091240_add_periodical_to_series_statement.rb +9 -0
  395. data/db/migrate/20110619064807_add_edition_string_to_manifestation.rb +9 -0
  396. data/db/migrate/20110620173525_add_bookstore_id_to_item.rb +11 -0
  397. data/db/migrate/20110627034940_create_series_statement_merge_lists.rb +9 -0
  398. data/db/migrate/20110627035057_create_series_statement_merges.rb +12 -0
  399. data/db/migrate/20110820131417_create_series_has_manifestations.rb +13 -0
  400. data/db/migrate/20110916053430_rename_manifestation_number_list_to_number_string.rb +13 -0
  401. data/db/migrate/20110916091020_add_volume_number_to_manifestation.rb +13 -0
  402. data/db/migrate/20110916103953_add_manifestaiton_id_to_series_statement.rb +10 -0
  403. data/db/migrate/20110918161853_rename_series_statement_manifestation_id_to_root_manifestation_id.rb +13 -0
  404. data/db/migrate/20110918162329_add_note_to_series_statement.rb +9 -0
  405. data/db/migrate/20111009183423_add_ndc_to_manifestation.rb +9 -0
  406. data/db/migrate/20111124110059_create_create_types.rb +12 -0
  407. data/db/migrate/20111124110319_create_realize_types.rb +12 -0
  408. data/db/migrate/20111124110355_create_produce_types.rb +12 -0
  409. data/db/migrate/20111124112131_add_create_type_to_create.rb +7 -0
  410. data/db/migrate/20120125152919_add_title_subseries_transcription_to_series_statement.rb +6 -0
  411. data/db/migrate/20120129020544_add_budget_type_id_to_item.rb +6 -0
  412. data/db/migrate/20120319120638_add_content_type_id_to_manifestation.rb +6 -0
  413. data/db/migrate/20120410104851_add_year_of_publication_to_manifestation.rb +5 -0
  414. data/db/migrate/20120413072700_add_picture_meta_to_picture_file.rb +5 -0
  415. data/db/migrate/20120413100352_add_fingerprint_to_picture_file.rb +5 -0
  416. data/db/migrate/20120413161340_add_fingerprint_to_resource_import_file.rb +5 -0
  417. data/db/migrate/20120413161403_add_fingerprint_to_patron_import_file.rb +5 -0
  418. data/db/migrate/20120413170705_add_error_message_to_resource_import_file.rb +5 -0
  419. data/db/migrate/20120413170720_add_error_message_to_patron_import_file.rb +5 -0
  420. data/db/migrate/20120415060308_rename_resource_import_file_imported_at_to_executed_at.rb +9 -0
  421. data/db/migrate/20120415060323_rename_patron_import_file_imported_at_to_executed_at.rb +9 -0
  422. data/db/migrate/20120415164821_add_attachment_meta_to_manifestation.rb +5 -0
  423. data/db/migrate/20120418081407_add_month_of_publication_to_manifestation.rb +5 -0
  424. data/db/migrate/20120602141129_add_edit_mode_to_patron_import_file.rb +5 -0
  425. data/lib/enju_biblio/engine.rb +23 -0
  426. data/lib/enju_biblio/expire_editable_fragment.rb +30 -0
  427. data/lib/enju_biblio/expire_fragment_cache.rb +17 -0
  428. data/lib/enju_biblio/import_file.rb +13 -0
  429. data/lib/enju_biblio/master_model.rb +19 -0
  430. data/lib/enju_biblio/url_validator.rb +10 -0
  431. data/lib/enju_biblio/version.rb +3 -0
  432. data/lib/enju_biblio.rb +57 -0
  433. data/lib/tasks/enju_biblio_tasks.rake +4 -0
  434. data/spec/cassette_library/enju_ndl/manifestation.yml +523 -0
  435. data/spec/cassette_library/enju_ndl/ndl_search.yml +1140 -0
  436. data/spec/controllers/content_types_controller_spec.rb +445 -0
  437. data/spec/controllers/countries_controller_spec.rb +454 -0
  438. data/spec/controllers/create_types_controller_spec.rb +167 -0
  439. data/spec/controllers/creates_controller_spec.rb +450 -0
  440. data/spec/controllers/donates_controller_spec.rb +439 -0
  441. data/spec/controllers/exemplifies_controller_spec.rb +446 -0
  442. data/spec/controllers/extents_controller_spec.rb +445 -0
  443. data/spec/controllers/form_of_works_controller_spec.rb +445 -0
  444. data/spec/controllers/frequencies_controller_spec.rb +445 -0
  445. data/spec/controllers/import_requests_controller_spec.rb +448 -0
  446. data/spec/controllers/items_controller_spec.rb +549 -0
  447. data/spec/controllers/languages_controller_spec.rb +316 -0
  448. data/spec/controllers/licenses_controller_spec.rb +445 -0
  449. data/spec/controllers/manifestation_relationship_types_controller_spec.rb +445 -0
  450. data/spec/controllers/manifestation_relationships_controller_spec.rb +446 -0
  451. data/spec/controllers/manifestations_controller_spec.rb +722 -0
  452. data/spec/controllers/medium_of_performances_controller_spec.rb +445 -0
  453. data/spec/controllers/owns_controller_spec.rb +446 -0
  454. data/spec/controllers/patron_relationship_types_controller_spec.rb +445 -0
  455. data/spec/controllers/patron_relationships_controller_spec.rb +446 -0
  456. data/spec/controllers/patron_types_controller_spec.rb +447 -0
  457. data/spec/controllers/patrons_controller_spec.rb +636 -0
  458. data/spec/controllers/picture_files_controller_spec.rb +442 -0
  459. data/spec/controllers/produce_types_controller_spec.rb +166 -0
  460. data/spec/controllers/produces_controller_spec.rb +446 -0
  461. data/spec/controllers/realize_types_controller_spec.rb +166 -0
  462. data/spec/controllers/realizes_controller_spec.rb +447 -0
  463. data/spec/controllers/resource_import_files_controller_spec.rb +292 -0
  464. data/spec/controllers/resource_import_results_controller_spec.rb +137 -0
  465. data/spec/controllers/series_has_manifestations_controller_spec.rb +443 -0
  466. data/spec/controllers/series_statements_controller_spec.rb +441 -0
  467. data/spec/dummy/README.rdoc +261 -0
  468. data/spec/dummy/Rakefile +7 -0
  469. data/spec/dummy/app/assets/javascripts/application.js +15 -0
  470. data/spec/dummy/app/assets/stylesheets/application.css +13 -0
  471. data/spec/dummy/app/controllers/application_controller.rb +176 -0
  472. data/spec/dummy/app/helpers/application_helper.rb +227 -0
  473. data/spec/dummy/app/mailers/notifier.rb +36 -0
  474. data/spec/dummy/app/models/ability.rb +184 -0
  475. data/spec/dummy/app/models/library_group.rb +86 -0
  476. data/spec/dummy/app/models/role.rb +46 -0
  477. data/spec/dummy/app/models/user.rb +94 -0
  478. data/spec/dummy/app/models/user_group.rb +40 -0
  479. data/spec/dummy/app/models/user_has_role.rb +5 -0
  480. data/spec/dummy/app/views/layouts/application.html.erb +14 -0
  481. data/spec/dummy/app/views/page/403.html.erb +9 -0
  482. data/spec/dummy/app/views/page/403.mobile.erb +5 -0
  483. data/spec/dummy/app/views/page/403.xml.erb +4 -0
  484. data/spec/dummy/app/views/page/404.html.erb +9 -0
  485. data/spec/dummy/app/views/page/404.mobile.erb +5 -0
  486. data/spec/dummy/app/views/page/404.xml.erb +4 -0
  487. data/spec/dummy/config/application.rb +57 -0
  488. data/spec/dummy/config/boot.rb +10 -0
  489. data/spec/dummy/config/configatron/defaults.rb +28 -0
  490. data/spec/dummy/config/configatron/development.rb +4 -0
  491. data/spec/dummy/config/configatron/production.rb +12 -0
  492. data/spec/dummy/config/configatron/production.rb.sample +12 -0
  493. data/spec/dummy/config/configatron/test.rb +7 -0
  494. data/spec/dummy/config/database.yml +25 -0
  495. data/spec/dummy/config/environment.rb +5 -0
  496. data/spec/dummy/config/environments/development.rb +37 -0
  497. data/spec/dummy/config/environments/production.rb +67 -0
  498. data/spec/dummy/config/environments/test.rb +37 -0
  499. data/spec/dummy/config/initializers/backtrace_silencers.rb +7 -0
  500. data/spec/dummy/config/initializers/configatron.rb +2 -0
  501. data/spec/dummy/config/initializers/devise.rb +205 -0
  502. data/spec/dummy/config/initializers/inflections.rb +16 -0
  503. data/spec/dummy/config/initializers/mime_types.rb +10 -0
  504. data/spec/dummy/config/initializers/secret_token.rb +7 -0
  505. data/spec/dummy/config/initializers/session_store.rb +8 -0
  506. data/spec/dummy/config/initializers/wrap_parameters.rb +14 -0
  507. data/spec/dummy/config/locales/active_support_en.yml +36 -0
  508. data/spec/dummy/config/locales/en.yml +5 -0
  509. data/spec/dummy/config/locales/ja.yml +149 -0
  510. data/spec/dummy/config/routes.rb +60 -0
  511. data/spec/dummy/config.ru +4 -0
  512. data/spec/dummy/db/development.sqlite3 +0 -0
  513. data/spec/dummy/db/migrate/032_create_checkins.rb +17 -0
  514. data/spec/dummy/db/migrate/033_create_checkouts.rb +25 -0
  515. data/spec/dummy/db/migrate/035_create_reserves.rb +27 -0
  516. data/spec/dummy/db/migrate/055_create_bookmarks.rb +22 -0
  517. data/spec/dummy/db/migrate/059_create_libraries.rb +28 -0
  518. data/spec/dummy/db/migrate/069_create_shelves.rb +15 -0
  519. data/spec/dummy/db/migrate/077_create_user_groups.rb +16 -0
  520. data/spec/dummy/db/migrate/080_create_library_groups.rb +20 -0
  521. data/spec/dummy/db/migrate/113_create_events.rb +23 -0
  522. data/spec/dummy/db/migrate/114_create_event_categories.rb +16 -0
  523. data/spec/dummy/db/migrate/120_create_baskets.rb +12 -0
  524. data/spec/dummy/db/migrate/121_create_checked_items.rb +17 -0
  525. data/spec/dummy/db/migrate/124_create_bookstores.rb +17 -0
  526. data/spec/dummy/db/migrate/127_create_use_restrictions.rb +16 -0
  527. data/spec/dummy/db/migrate/129_create_item_has_use_restrictions.rb +16 -0
  528. data/spec/dummy/db/migrate/130_create_request_status_types.rb +12 -0
  529. data/spec/dummy/db/migrate/131_create_request_types.rb +12 -0
  530. data/spec/dummy/db/migrate/132_create_circulation_statuses.rb +16 -0
  531. data/spec/dummy/db/migrate/149_create_message_templates.rb +18 -0
  532. data/spec/dummy/db/migrate/154_create_messages.rb +24 -0
  533. data/spec/dummy/db/migrate/20080819181903_create_message_requests.rb +20 -0
  534. data/spec/dummy/db/migrate/20081023092436_create_search_engines.rb +17 -0
  535. data/spec/dummy/db/migrate/20081028093607_create_event_import_files.rb +27 -0
  536. data/spec/dummy/db/migrate/20081030023412_create_checkout_types.rb +17 -0
  537. data/spec/dummy/db/migrate/20081030023518_create_user_group_has_checkout_types.rb +25 -0
  538. data/spec/dummy/db/migrate/20081030023615_create_carrier_type_has_checkout_types.rb +18 -0
  539. data/spec/dummy/db/migrate/20081117143156_create_inventory_files.rb +18 -0
  540. data/spec/dummy/db/migrate/20081117143455_create_inventories.rb +17 -0
  541. data/spec/dummy/db/migrate/20081212075554_create_checkout_stat_has_manifestations.rb +17 -0
  542. data/spec/dummy/db/migrate/20081212080038_create_manifestation_checkout_stats.rb +16 -0
  543. data/spec/dummy/db/migrate/20081212151614_create_bookmark_stats.rb +16 -0
  544. data/spec/dummy/db/migrate/20081212151820_create_bookmark_stat_has_manifestations.rb +13 -0
  545. data/spec/dummy/db/migrate/20081215094302_create_user_checkout_stats.rb +16 -0
  546. data/spec/dummy/db/migrate/20081215094955_create_checkout_stat_has_users.rb +17 -0
  547. data/spec/dummy/db/migrate/20081216190517_create_reserve_stat_has_manifestations.rb +17 -0
  548. data/spec/dummy/db/migrate/20081216190724_create_manifestation_reserve_stats.rb +16 -0
  549. data/spec/dummy/db/migrate/20081220023628_create_user_reserve_stats.rb +16 -0
  550. data/spec/dummy/db/migrate/20081220034117_create_reserve_stat_has_users.rb +17 -0
  551. data/spec/dummy/db/migrate/20090321130448_add_completed_at_to_user_checkout_stat.rb +27 -0
  552. data/spec/dummy/db/migrate/20090519203307_create_participates.rb +17 -0
  553. data/spec/dummy/db/migrate/20090706125521_add_attachments_inventory_to_inventory_file.rb +15 -0
  554. data/spec/dummy/db/migrate/20090831220301_create_lending_policies.rb +21 -0
  555. data/spec/dummy/db/migrate/20091202124834_create_versions.rb +18 -0
  556. data/spec/dummy/db/migrate/20100222124420_add_allow_bookmark_external_url_to_library_group.rb +9 -0
  557. data/spec/dummy/db/migrate/20100525171356_acts_as_taggable_on_migration.rb +30 -0
  558. data/spec/dummy/db/migrate/20100527113752_create_delayed_jobs.rb +21 -0
  559. data/spec/dummy/db/migrate/20100925074639_create_event_import_results.rb +15 -0
  560. data/spec/dummy/db/migrate/20110222073537_add_url_to_library_group.rb +9 -0
  561. data/spec/dummy/db/migrate/20110301134521_add_expire_date_to_reserve.rb +9 -0
  562. data/spec/dummy/db/migrate/20110318183304_add_valid_period_for_new_user_to_user_group.rb +13 -0
  563. data/spec/dummy/db/migrate/20110328130826_add_current_checkout_count_to_user_group_has_checkout_type.rb +9 -0
  564. data/spec/dummy/db/migrate/20110621093332_remove_expire_date_from_reserve.rb +9 -0
  565. data/spec/dummy/db/migrate/20110627122938_add_number_of_day_to_notify_overdue_to_user_group.rb +13 -0
  566. data/spec/dummy/db/migrate/20110913115320_add_lft_and_rgt_to_message.rb +11 -0
  567. data/spec/dummy/db/migrate/20111201121844_create_roles.rb +12 -0
  568. data/spec/dummy/db/migrate/20111201155456_create_users.rb +16 -0
  569. data/spec/dummy/db/migrate/20111201155513_add_devise_to_users.rb +44 -0
  570. data/spec/dummy/db/migrate/20111201163718_create_user_has_roles.rb +10 -0
  571. data/spec/dummy/db/migrate/20111217234412_add_save_checkout_history_to_user.rb +5 -0
  572. data/spec/dummy/db/migrate/20111218002349_add_checkout_icalendar_token_to_user.rb +6 -0
  573. data/spec/dummy/db/migrate/20111231145823_add_share_bookmarks_to_user.rb +5 -0
  574. data/spec/dummy/db/migrate/20120105074911_add_isil_to_library.rb +5 -0
  575. data/spec/dummy/db/migrate/20120105101944_add_queue_to_delayed_jobs.rb +9 -0
  576. data/spec/dummy/db/migrate/20120125050502_add_depth_to_message.rb +6 -0
  577. data/spec/dummy/db/migrate/20120129014038_create_budget_types.rb +12 -0
  578. data/spec/dummy/db/migrate/20120319173203_create_accepts.rb +14 -0
  579. data/spec/dummy/db/migrate/20120413051535_add_event_import_fingerprint_to_event_import_file.rb +5 -0
  580. data/spec/dummy/db/migrate/20120413100431_add_fingerprint_to_inventory_file.rb +5 -0
  581. data/spec/dummy/db/migrate/20120413170734_add_error_message_to_event_import_file.rb +5 -0
  582. data/spec/dummy/db/migrate/20120415060342_rename_event_import_file_imported_at_to_executed_at.rb +9 -0
  583. data/spec/dummy/db/migrate/20120424103932_add_librarian_id_to_checked_item.rb +5 -0
  584. data/spec/dummy/db/migrate/20120510140958_add_closed_to_shelf.rb +5 -0
  585. data/spec/dummy/db/schema.rb +1240 -0
  586. data/spec/dummy/db/test.sqlite3 +0 -0
  587. data/spec/dummy/lib/enju_leaf/calculate_stat.rb +30 -0
  588. data/spec/dummy/lib/enju_leaf/localized_name.rb +15 -0
  589. data/spec/dummy/lib/enju_leaf/openurl.rb +156 -0
  590. data/spec/dummy/lib/enju_leaf/porta_cql.rb +283 -0
  591. data/spec/dummy/lib/enju_leaf/sru.rb +84 -0
  592. data/spec/dummy/lib/enju_leaf.rb +12 -0
  593. data/spec/dummy/lib/plugins/ext/event-calendar.rb +38 -0
  594. data/spec/dummy/lib/plugins/ext/sunspot/abstract_search.rb +12 -0
  595. data/spec/dummy/lib/plugins/ext/sunspot/dismax.rb +41 -0
  596. data/spec/dummy/lib/plugins/ext/sunspot/start_record.rb +55 -0
  597. data/spec/dummy/lib/plugins/ext/sunspot.rb +3 -0
  598. data/spec/dummy/lib/plugins/ext/will_paginate.rb +64 -0
  599. data/spec/dummy/lib/plugins/ext.rb +3 -0
  600. data/spec/dummy/lib/plugins.rb +2 -0
  601. data/spec/dummy/private/system/patron_import_files/patron_imports/000/000/004/original/patron_delete_file.tsv +8 -0
  602. data/spec/dummy/private/system/patron_import_files/patron_imports/000/000/004/original/patron_import_file_sample1.tsv +5 -0
  603. data/spec/dummy/private/system/patron_import_files/patron_imports/000/000/004/original/patron_import_file_sample3.tsv +5 -0
  604. data/spec/dummy/private/system/patron_import_files/patron_imports/000/000/004/original/patron_update_file.tsv +3 -0
  605. data/spec/dummy/private/system/picture_files/pictures/000/000/005/medium/spinner.gif +0 -0
  606. data/spec/dummy/private/system/picture_files/pictures/000/000/005/original/spinner.gif +0 -0
  607. data/spec/dummy/private/system/picture_files/pictures/000/000/005/thumb/spinner.gif +0 -0
  608. data/spec/dummy/private/system/resource_import_files/resource_imports/000/000/004/original/isbn_sample.txt +3 -0
  609. data/spec/dummy/private/system/resource_import_files/resource_imports/000/000/004/original/item_delete_file.tsv +11 -0
  610. data/spec/dummy/private/system/resource_import_files/resource_imports/000/000/004/original/item_update_file.tsv +4 -0
  611. data/spec/dummy/private/system/resource_import_files/resource_imports/000/000/004/original/resource_import_file_sample1.tsv +19 -0
  612. data/spec/dummy/private/system/resource_import_files/resource_imports/000/000/004/original/resource_import_file_sample2.tsv +19 -0
  613. data/spec/dummy/public/404.html +26 -0
  614. data/spec/dummy/public/422.html +26 -0
  615. data/spec/dummy/public/500.html +25 -0
  616. data/spec/dummy/public/favicon.ico +0 -0
  617. data/spec/dummy/script/rails +6 -0
  618. data/spec/dummy/solr/conf/admin-extra.html +31 -0
  619. data/spec/dummy/solr/conf/elevate.xml +36 -0
  620. data/spec/dummy/solr/conf/mapping-ISOLatin1Accent.txt +246 -0
  621. data/spec/dummy/solr/conf/protwords.txt +21 -0
  622. data/spec/dummy/solr/conf/schema.xml +244 -0
  623. data/spec/dummy/solr/conf/scripts.conf +24 -0
  624. data/spec/dummy/solr/conf/solrconfig.xml +934 -0
  625. data/spec/dummy/solr/conf/spellings.txt +2 -0
  626. data/spec/dummy/solr/conf/stopwords.txt +58 -0
  627. data/spec/dummy/solr/conf/synonyms.txt +31 -0
  628. data/spec/dummy/solr/data/test/index/_0.fdt +0 -0
  629. data/spec/dummy/solr/data/test/index/_0.fdx +0 -0
  630. data/spec/dummy/solr/data/test/index/_0.fnm +7 -0
  631. data/spec/dummy/solr/data/test/index/_0.frq +0 -0
  632. data/spec/dummy/solr/data/test/index/_0.nrm +1 -0
  633. data/spec/dummy/solr/data/test/index/_0.prx +0 -0
  634. data/spec/dummy/solr/data/test/index/_0.tii +0 -0
  635. data/spec/dummy/solr/data/test/index/_0.tis +0 -0
  636. data/spec/dummy/solr/data/test/index/_1.fdt +0 -0
  637. data/spec/dummy/solr/data/test/index/_1.fdx +0 -0
  638. data/spec/dummy/solr/data/test/index/_1.fnm +7 -0
  639. data/spec/dummy/solr/data/test/index/_1.frq +0 -0
  640. data/spec/dummy/solr/data/test/index/_1.nrm +1 -0
  641. data/spec/dummy/solr/data/test/index/_1.prx +0 -0
  642. data/spec/dummy/solr/data/test/index/_1.tii +0 -0
  643. data/spec/dummy/solr/data/test/index/_1.tis +0 -0
  644. data/spec/dummy/solr/data/test/index/_2.fdt +0 -0
  645. data/spec/dummy/solr/data/test/index/_2.fdx +0 -0
  646. data/spec/dummy/solr/data/test/index/_2.fnm +7 -0
  647. data/spec/dummy/solr/data/test/index/_2.frq +0 -0
  648. data/spec/dummy/solr/data/test/index/_2.nrm +1 -0
  649. data/spec/dummy/solr/data/test/index/_2.prx +0 -0
  650. data/spec/dummy/solr/data/test/index/_2.tii +0 -0
  651. data/spec/dummy/solr/data/test/index/_2.tis +0 -0
  652. data/spec/dummy/solr/data/test/index/_3.fdt +0 -0
  653. data/spec/dummy/solr/data/test/index/_3.fdx +0 -0
  654. data/spec/dummy/solr/data/test/index/_3.fnm +8 -0
  655. data/spec/dummy/solr/data/test/index/_3.frq +0 -0
  656. data/spec/dummy/solr/data/test/index/_3.nrm +1 -0
  657. data/spec/dummy/solr/data/test/index/_3.prx +0 -0
  658. data/spec/dummy/solr/data/test/index/_3.tii +0 -0
  659. data/spec/dummy/solr/data/test/index/_3.tis +0 -0
  660. data/spec/dummy/solr/data/test/index/_4.fdt +0 -0
  661. data/spec/dummy/solr/data/test/index/_4.fdx +0 -0
  662. data/spec/dummy/solr/data/test/index/_4.fnm +9 -0
  663. data/spec/dummy/solr/data/test/index/_4.frq +0 -0
  664. data/spec/dummy/solr/data/test/index/_4.nrm +1 -0
  665. data/spec/dummy/solr/data/test/index/_4.prx +0 -0
  666. data/spec/dummy/solr/data/test/index/_4.tii +0 -0
  667. data/spec/dummy/solr/data/test/index/_4.tis +0 -0
  668. data/spec/dummy/solr/data/test/index/_6.fdt +0 -0
  669. data/spec/dummy/solr/data/test/index/_6.fdx +0 -0
  670. data/spec/dummy/solr/data/test/index/_6.fnm +10 -0
  671. data/spec/dummy/solr/data/test/index/_6.frq +0 -0
  672. data/spec/dummy/solr/data/test/index/_6.nrm +1 -0
  673. data/spec/dummy/solr/data/test/index/_6.prx +0 -0
  674. data/spec/dummy/solr/data/test/index/_6.tii +0 -0
  675. data/spec/dummy/solr/data/test/index/_6.tis +0 -0
  676. data/spec/dummy/solr/data/test/index/_6_1.del +0 -0
  677. data/spec/dummy/solr/data/test/index/segments.gen +0 -0
  678. data/spec/dummy/solr/data/test/index/segments_8 +0 -0
  679. data/spec/dummy/solr/data/test/spellchecker/segments.gen +0 -0
  680. data/spec/dummy/solr/data/test/spellchecker/segments_1 +0 -0
  681. data/spec/dummy/tmp/cache/4F7/F90/default_role +0 -0
  682. data/spec/dummy/tmp/cache/6E4/420/search_engine_all +0 -0
  683. data/spec/factories/carrier_type.rb +5 -0
  684. data/spec/factories/content_type.rb +5 -0
  685. data/spec/factories/country.rb +8 -0
  686. data/spec/factories/create.rb +6 -0
  687. data/spec/factories/create_types.rb +9 -0
  688. data/spec/factories/donate.rb +6 -0
  689. data/spec/factories/exemplify.rb +6 -0
  690. data/spec/factories/extent.rb +5 -0
  691. data/spec/factories/form_of_work.rb +5 -0
  692. data/spec/factories/frequency.rb +5 -0
  693. data/spec/factories/import_request.rb +5 -0
  694. data/spec/factories/item.rb +7 -0
  695. data/spec/factories/language.rb +8 -0
  696. data/spec/factories/license.rb +5 -0
  697. data/spec/factories/manifestation.rb +6 -0
  698. data/spec/factories/manifestation_relationship.rb +6 -0
  699. data/spec/factories/manifestation_relationship_type.rb +5 -0
  700. data/spec/factories/medium_of_performance.rb +5 -0
  701. data/spec/factories/own.rb +6 -0
  702. data/spec/factories/patron.rb +13 -0
  703. data/spec/factories/patron_relationship.rb +6 -0
  704. data/spec/factories/patron_relationship_type.rb +5 -0
  705. data/spec/factories/patron_type.rb +5 -0
  706. data/spec/factories/produce.rb +6 -0
  707. data/spec/factories/produce_types.rb +9 -0
  708. data/spec/factories/realize.rb +6 -0
  709. data/spec/factories/realize_types.rb +9 -0
  710. data/spec/factories/series_has_manifestation.rb +6 -0
  711. data/spec/factories/series_statement.rb +5 -0
  712. data/spec/factories/user.rb +37 -0
  713. data/spec/fixtures/baskets.yml +80 -0
  714. data/spec/fixtures/bookstores.yml +107 -0
  715. data/spec/fixtures/budget_types.yml +29 -0
  716. data/spec/fixtures/carrier_type_has_checkout_types.yml +31 -0
  717. data/spec/fixtures/carrier_types.yml +51 -0
  718. data/spec/fixtures/checked_items.yml +35 -0
  719. data/spec/fixtures/checkins.yml +48 -0
  720. data/spec/fixtures/checkout_stat_has_manifestations.yml +24 -0
  721. data/spec/fixtures/checkout_stat_has_users.yml +24 -0
  722. data/spec/fixtures/checkout_types.yml +34 -0
  723. data/spec/fixtures/checkouts.yml +162 -0
  724. data/spec/fixtures/circulation_statuses.yml +136 -0
  725. data/spec/fixtures/content_types.yml +36 -0
  726. data/spec/fixtures/countries.yml +2059 -0
  727. data/spec/fixtures/create_types.yml +47 -0
  728. data/spec/fixtures/creates.yml +65 -0
  729. data/spec/fixtures/donates.yml +31 -0
  730. data/spec/fixtures/event_categories.yml +55 -0
  731. data/spec/fixtures/events.yml +142 -0
  732. data/spec/fixtures/exemplifies.yml +155 -0
  733. data/spec/fixtures/extents.yml +29 -0
  734. data/spec/fixtures/form_of_works.yml +39 -0
  735. data/spec/fixtures/frequencies.yml +85 -0
  736. data/spec/fixtures/import_requests.yml +27 -0
  737. data/spec/fixtures/inventory_files.yml +40 -0
  738. data/spec/fixtures/item_has_use_restrictions.yml +61 -0
  739. data/spec/fixtures/items.yml +257 -0
  740. data/spec/fixtures/languages.yml +1901 -0
  741. data/spec/fixtures/lending_policies.yml +92 -0
  742. data/spec/fixtures/libraries.yml +102 -0
  743. data/spec/fixtures/library_groups.yml +33 -0
  744. data/spec/fixtures/licenses.yml +29 -0
  745. data/spec/fixtures/manifestation_checkout_stats.yml +31 -0
  746. data/spec/fixtures/manifestation_relationship_types.yml +29 -0
  747. data/spec/fixtures/manifestation_relationships.yml +30 -0
  748. data/spec/fixtures/manifestation_reserve_stats.yml +31 -0
  749. data/spec/fixtures/manifestations.yml +2020 -0
  750. data/spec/fixtures/medium_of_performances.yml +29 -0
  751. data/spec/fixtures/message_requests.yml +30 -0
  752. data/spec/fixtures/message_templates.yml +70 -0
  753. data/spec/fixtures/messages.yml +62 -0
  754. data/spec/fixtures/owns.yml +26 -0
  755. data/spec/fixtures/patron_import_files.yml +47 -0
  756. data/spec/fixtures/patron_import_results.yml +29 -0
  757. data/spec/fixtures/patron_relationship_types.yml +34 -0
  758. data/spec/fixtures/patron_relationships.yml +25 -0
  759. data/spec/fixtures/patron_types.yml +35 -0
  760. data/spec/fixtures/patrons.yml +338 -0
  761. data/spec/fixtures/picture_files.yml +63 -0
  762. data/spec/fixtures/produce_types.yml +31 -0
  763. data/spec/fixtures/produces.yml +149 -0
  764. data/spec/fixtures/realize_types.yml +39 -0
  765. data/spec/fixtures/realizes.yml +86 -0
  766. data/spec/fixtures/request_status_types.yml +63 -0
  767. data/spec/fixtures/request_types.yml +55 -0
  768. data/spec/fixtures/reserve_stat_has_manifestations.yml +24 -0
  769. data/spec/fixtures/reserve_stat_has_users.yml +24 -0
  770. data/spec/fixtures/reserves.yml +158 -0
  771. data/spec/fixtures/resource_import_files.yml +47 -0
  772. data/spec/fixtures/resource_import_results.yml +29 -0
  773. data/spec/fixtures/roles.yml +21 -0
  774. data/spec/fixtures/series_has_manifestations.yml +35 -0
  775. data/spec/fixtures/series_statements.yml +45 -0
  776. data/spec/fixtures/shelves.yml +47 -0
  777. data/spec/fixtures/use_restrictions.yml +93 -0
  778. data/spec/fixtures/user_checkout_stats.yml +30 -0
  779. data/spec/fixtures/user_group_has_checkout_types.yml +111 -0
  780. data/spec/fixtures/user_groups.yml +51 -0
  781. data/spec/fixtures/user_has_roles.yml +41 -0
  782. data/spec/fixtures/user_reserve_stats.yml +30 -0
  783. data/spec/fixtures/users.yml +106 -0
  784. data/spec/models/carrier_type_spec.rb +25 -0
  785. data/spec/models/content_type_spec.rb +21 -0
  786. data/spec/models/country_spec.rb +22 -0
  787. data/spec/models/create_spec.rb +22 -0
  788. data/spec/models/create_type_spec.rb +21 -0
  789. data/spec/models/donate_spec.rb +19 -0
  790. data/spec/models/exemplify_spec.rb +29 -0
  791. data/spec/models/extent_spec.rb +21 -0
  792. data/spec/models/form_of_work_spec.rb +21 -0
  793. data/spec/models/frequency_spec.rb +24 -0
  794. data/spec/models/import_request_spec.rb +21 -0
  795. data/spec/models/item_spec.rb +70 -0
  796. data/spec/models/language_spec.rb +23 -0
  797. data/spec/models/license_spec.rb +21 -0
  798. data/spec/models/manifestation_relationship_spec.rb +21 -0
  799. data/spec/models/manifestation_relationship_type_spec.rb +21 -0
  800. data/spec/models/manifestation_spec.rb +292 -0
  801. data/spec/models/medium_of_performance_spec.rb +21 -0
  802. data/spec/models/own_spec.rb +20 -0
  803. data/spec/models/patron_import_file_spec.rb +96 -0
  804. data/spec/models/patron_import_result_spec.rb +21 -0
  805. data/spec/models/patron_relationship_spec.rb +21 -0
  806. data/spec/models/patron_relationship_type_spec.rb +21 -0
  807. data/spec/models/patron_spec.rb +103 -0
  808. data/spec/models/patron_type_spec.rb +21 -0
  809. data/spec/models/picture_file_spec.rb +29 -0
  810. data/spec/models/produce_spec.rb +22 -0
  811. data/spec/models/produce_type_spec.rb +21 -0
  812. data/spec/models/realize_spec.rb +22 -0
  813. data/spec/models/realize_type_spec.rb +21 -0
  814. data/spec/models/resource_import_file_spec.rb +166 -0
  815. data/spec/models/resource_import_result_spec.rb +21 -0
  816. data/spec/models/series_has_manifestation_spec.rb +21 -0
  817. data/spec/models/series_statement_spec.rb +38 -0
  818. data/spec/requests/create_types_spec.rb +11 -0
  819. data/spec/requests/items_spec.rb +9 -0
  820. data/spec/requests/manifestations_spec.rb +9 -0
  821. data/spec/requests/patrons_spec.rb +9 -0
  822. data/spec/requests/produce_types_spec.rb +11 -0
  823. data/spec/requests/realize_types_spec.rb +11 -0
  824. data/spec/routing/content_types_routing_spec.rb +35 -0
  825. data/spec/routing/create_types_routing_spec.rb +35 -0
  826. data/spec/routing/creates_routing_spec.rb +35 -0
  827. data/spec/routing/items_routing_spec.rb +35 -0
  828. data/spec/routing/licenses_routing_spec.rb +35 -0
  829. data/spec/routing/manifestation_relationship_types_routing_spec.rb +35 -0
  830. data/spec/routing/manifestation_relationships_routing_spec.rb +35 -0
  831. data/spec/routing/manifestations_routing_spec.rb +39 -0
  832. data/spec/routing/patron_relationship_types_routing_spec.rb +35 -0
  833. data/spec/routing/patron_relationships_routing_spec.rb +35 -0
  834. data/spec/routing/patrons_routing_spec.rb +35 -0
  835. data/spec/routing/produce_types_routing_spec.rb +35 -0
  836. data/spec/routing/realize_types_routing_spec.rb +35 -0
  837. data/spec/routing/realizes_routing_spec.rb +35 -0
  838. data/spec/routing/series_has_manifestations_routing_spec.rb +35 -0
  839. data/spec/spec_helper.rb +54 -0
  840. data/spec/support/controller_macros.rb +46 -0
  841. data/spec/support/devise.rb +4 -0
  842. data/spec/support/vcr.rb +9 -0
  843. data/spec/views/create_types/edit.html.erb_spec.rb +23 -0
  844. data/spec/views/create_types/index.html.erb_spec.rb +31 -0
  845. data/spec/views/create_types/new.html.erb_spec.rb +23 -0
  846. data/spec/views/create_types/show.html.erb_spec.rb +24 -0
  847. data/spec/views/creates/edit.html.erb_spec.rb +25 -0
  848. data/spec/views/creates/index.html.erb_spec.rb +25 -0
  849. data/spec/views/creates/new.html.erb_spec.rb +25 -0
  850. data/spec/views/creates/show.html.erb_spec.rb +19 -0
  851. data/spec/views/exemplifies/edit.html.erb_spec.rb +22 -0
  852. data/spec/views/exemplifies/index.html.erb_spec.rb +25 -0
  853. data/spec/views/exemplifies/new.html.erb_spec.rb +22 -0
  854. data/spec/views/exemplifies/show.html.erb_spec.rb +19 -0
  855. data/spec/views/manifestations/show.html.erb_spec.rb +16 -0
  856. data/spec/views/owns/edit.html.erb_spec.rb +22 -0
  857. data/spec/views/owns/index.html.erb_spec.rb +25 -0
  858. data/spec/views/owns/new.html.erb_spec.rb +22 -0
  859. data/spec/views/owns/show.html.erb_spec.rb +19 -0
  860. data/spec/views/produce_types/edit.html.erb_spec.rb +23 -0
  861. data/spec/views/produce_types/index.html.erb_spec.rb +31 -0
  862. data/spec/views/produce_types/new.html.erb_spec.rb +23 -0
  863. data/spec/views/produce_types/show.html.erb_spec.rb +24 -0
  864. data/spec/views/produces/edit.html.erb_spec.rb +26 -0
  865. data/spec/views/produces/index.html.erb_spec.rb +25 -0
  866. data/spec/views/produces/new.html.erb_spec.rb +26 -0
  867. data/spec/views/produces/show.html.erb_spec.rb +19 -0
  868. data/spec/views/realize_types/edit.html.erb_spec.rb +23 -0
  869. data/spec/views/realize_types/index.html.erb_spec.rb +31 -0
  870. data/spec/views/realize_types/new.html.erb_spec.rb +23 -0
  871. data/spec/views/realize_types/show.html.erb_spec.rb +24 -0
  872. data/spec/views/realizes/edit.html.erb_spec.rb +26 -0
  873. data/spec/views/realizes/index.html.erb_spec.rb +25 -0
  874. data/spec/views/realizes/new.html.erb_spec.rb +26 -0
  875. data/spec/views/realizes/show.html.erb_spec.rb +19 -0
  876. data/spec/views/series_has_manifestations/edit.html.erb_spec.rb +21 -0
  877. data/spec/views/series_has_manifestations/index.html.erb_spec.rb +31 -0
  878. data/spec/views/series_has_manifestations/new.html.erb_spec.rb +21 -0
  879. data/spec/views/series_has_manifestations/show.html.erb_spec.rb +21 -0
  880. metadata +1930 -0
@@ -0,0 +1,642 @@
1
+ class Manifestation < ActiveRecord::Base
2
+ attr_accessible :original_title, :title_alternative, :title_transcription,
3
+ :classification_number, :manifestation_identifier, :date_copyrighted,
4
+ :access_address, :language_id, :carrier_type_id, :extent_id, :start_page,
5
+ :end_page, :height, :width, :depth, :isbn, :wrong_isbn, :nbn, :lccn,
6
+ :oclc_number, :issn, :price, :fulltext, :volume_number_string,
7
+ :issue_number_string, :serial_number_string, :edition, :note,
8
+ :repository_content, :required_role_id, :frequency_id,
9
+ :title_alternative_transcription, :description, :abstract, :available_at,
10
+ :valid_until, :date_submitted, :date_accepted, :date_captured, :ndl_bib_id,
11
+ :pub_date, :edition_string, :volume_number, :issue_number, :serial_number,
12
+ :ndc, :content_type_id, :online_isbn, :attachment,
13
+ :series_has_manifestation_attributes
14
+
15
+ scope :periodical_master, where(:periodical => false)
16
+ scope :periodical_children, where(:periodical => true)
17
+ has_many :creates, :dependent => :destroy, :foreign_key => 'work_id'
18
+ has_many :creators, :through => :creates, :source => :patron
19
+ has_many :realizes, :dependent => :destroy, :foreign_key => 'expression_id'
20
+ has_many :contributors, :through => :realizes, :source => :patron
21
+ has_many :produces, :dependent => :destroy, :foreign_key => 'manifestation_id'
22
+ has_many :publishers, :through => :produces, :source => :patron
23
+ has_many :exemplifies, :dependent => :destroy
24
+ has_many :items, :through => :exemplifies
25
+ has_many :children, :foreign_key => 'parent_id', :class_name => 'ManifestationRelationship', :dependent => :destroy
26
+ has_many :parents, :foreign_key => 'child_id', :class_name => 'ManifestationRelationship', :dependent => :destroy
27
+ has_many :derived_manifestations, :through => :children, :source => :child
28
+ has_many :original_manifestations, :through => :parents, :source => :parent
29
+ has_many :picture_files, :as => :picture_attachable, :dependent => :destroy
30
+ belongs_to :language
31
+ belongs_to :carrier_type
32
+ belongs_to :manifestation_content_type, :class_name => 'ContentType', :foreign_key => 'content_type_id'
33
+ has_one :series_has_manifestation, :dependent => :destroy
34
+ has_one :series_statement, :through => :series_has_manifestation
35
+ belongs_to :frequency
36
+ belongs_to :required_role, :class_name => 'Role', :foreign_key => 'required_role_id', :validate => true
37
+ has_one :resource_import_result
38
+ accepts_nested_attributes_for :series_has_manifestation
39
+
40
+ searchable do
41
+ text :title, :default_boost => 2 do
42
+ titles
43
+ end
44
+ text :fulltext, :note, :creator, :contributor, :publisher, :description
45
+ text :item_identifier do
46
+ items.collect(&:item_identifier)
47
+ end
48
+ string :title, :multiple => true
49
+ # text フィールドだと区切りのない文字列の index が上手く作成
50
+ #できなかったので。 downcase することにした。
51
+ #他の string 項目も同様の問題があるので、必要な項目は同様の処置が必要。
52
+ string :connect_title do
53
+ title.join('').gsub(/\s/, '').downcase
54
+ end
55
+ string :connect_creator do
56
+ creator.join('').gsub(/\s/, '').downcase
57
+ end
58
+ string :connect_publisher do
59
+ publisher.join('').gsub(/\s/, '').downcase
60
+ end
61
+ string :isbn, :multiple => true do
62
+ [isbn, isbn10, wrong_isbn]
63
+ end
64
+ string :issn, :multiple => true do
65
+ if periodical_master?
66
+ series_statement.manifestations.collect{|m| m.issn}.compact
67
+ else
68
+ [issn, series_statement.try(:issn)].compact
69
+ end
70
+ end
71
+ string :lccn
72
+ string :nbn
73
+ string :carrier_type do
74
+ carrier_type.name
75
+ end
76
+ string :library, :multiple => true do
77
+ items.map{|i| i.shelf.library.name}
78
+ end
79
+ string :language do
80
+ language.try(:name)
81
+ end
82
+ string :item_identifier, :multiple => true do
83
+ items.collect(&:item_identifier)
84
+ end
85
+ string :shelf, :multiple => true do
86
+ items.collect{|i| "#{i.shelf.library.name}_#{i.shelf.name}"}
87
+ end
88
+ time :created_at
89
+ time :updated_at
90
+ time :deleted_at
91
+ time :date_of_publication
92
+ integer :creator_ids, :multiple => true
93
+ integer :contributor_ids, :multiple => true
94
+ integer :publisher_ids, :multiple => true
95
+ integer :item_ids, :multiple => true
96
+ integer :original_manifestation_ids, :multiple => true
97
+ integer :required_role_id
98
+ integer :height
99
+ integer :width
100
+ integer :depth
101
+ integer :volume_number, :multiple => true
102
+ integer :issue_number, :multiple => true
103
+ integer :serial_number, :multiple => true
104
+ integer :start_page
105
+ integer :end_page
106
+ integer :number_of_pages
107
+ float :price
108
+ integer :series_statement_id do
109
+ series_has_manifestation.try(:series_statement_id)
110
+ end
111
+ boolean :repository_content
112
+ # for OpenURL
113
+ text :aulast do
114
+ creators.map{|creator| creator.last_name}
115
+ end
116
+ text :aufirst do
117
+ creators.map{|creator| creator.first_name}
118
+ end
119
+ # OTC start
120
+ string :creator, :multiple => true do
121
+ creator.map{|au| au.gsub(' ', '')}
122
+ end
123
+ text :au do
124
+ creator
125
+ end
126
+ text :atitle do
127
+ title if series_statement.try(:periodical)
128
+ end
129
+ text :btitle do
130
+ title unless series_statement.try(:periodical)
131
+ end
132
+ text :jtitle do
133
+ if series_statement.try(:periodical) # 雑誌の場合
134
+ series_statement.titles
135
+ else # 雑誌以外(雑誌の記事も含む)
136
+ titles = []
137
+ original_manifestations.each do |m|
138
+ titles << m.title
139
+ end
140
+ titles.flatten
141
+ end
142
+ end
143
+ text :isbn do # 前方一致検索のためtext指定を追加
144
+ [isbn, isbn10, wrong_isbn]
145
+ end
146
+ text :issn # 前方一致検索のためtext指定を追加
147
+ #text :ndl_jpno do
148
+ # TODO 詳細不明
149
+ #end
150
+ #string :ndl_dpid do
151
+ # TODO 詳細不明
152
+ #end
153
+ # OTC end
154
+ string :sort_title
155
+ boolean :periodical do
156
+ periodical?
157
+ end
158
+ boolean :periodical_master do
159
+ periodical_master?
160
+ end
161
+ time :acquired_at
162
+ end
163
+
164
+ enju_manifestation_viewer
165
+ enju_ndl_search
166
+ #enju_amazon
167
+ enju_oai
168
+ #enju_calil_check
169
+ #enju_cinii
170
+ has_paper_trail
171
+ if configatron.uploaded_file.storage == :s3
172
+ has_attached_file :attachment, :storage => :s3, :s3_credentials => "#{Rails.root.to_s}/config/s3.yml"
173
+ else
174
+ has_attached_file :attachment
175
+ end
176
+
177
+ validates_presence_of :original_title, :carrier_type, :language
178
+ validates_associated :carrier_type, :language
179
+ validates :start_page, :numericality => true, :allow_blank => true
180
+ validates :end_page, :numericality => true, :allow_blank => true
181
+ validates :isbn, :uniqueness => true, :allow_blank => true, :unless => proc{|manifestation| manifestation.series_statement}
182
+ validates :nbn, :uniqueness => true, :allow_blank => true
183
+ validates :manifestation_identifier, :uniqueness => true, :allow_blank => true
184
+ validates :pub_date, :format => {:with => /^\[{0,1}\d+([\/-]\d{0,2}){0,2}\]{0,1}$/}, :allow_blank => true
185
+ validates :access_address, :url => true, :allow_blank => true, :length => {:maximum => 255}
186
+ validate :check_isbn, :check_issn, :check_lccn, :unless => :during_import
187
+ validates :issue_number, :numericality => {:greater_than => 0}, :allow_blank => true
188
+ validates :volume_number, :numericality => {:greater_than => 0}, :allow_blank => true
189
+ validates :serial_number, :numericality => {:greater_than => 0}, :allow_blank => true
190
+ validates :edition, :numericality => {:greater_than => 0}, :allow_blank => true
191
+ before_validation :set_wrong_isbn, :check_issn, :check_lccn, :if => :during_import
192
+ before_validation :convert_isbn, :if => :isbn_changed?
193
+ after_create :clear_cached_numdocs
194
+ before_save :set_date_of_publication
195
+ after_save :index_series_statement
196
+ after_destroy :index_series_statement
197
+ normalize_attributes :manifestation_identifier, :pub_date, :isbn, :issn, :nbn, :lccn, :original_title
198
+ attr_accessor :during_import
199
+
200
+ def self.per_page
201
+ 10
202
+ end
203
+
204
+ def check_isbn
205
+ if isbn.present?
206
+ unless StdNum::ISBN.valid?(isbn)
207
+ errors.add(:isbn)
208
+ end
209
+ end
210
+ end
211
+
212
+ def check_issn
213
+ self.issn = StdNum::ISSN.normalize(issn)
214
+ if issn.present?
215
+ unless StdNum::ISSN.valid?(issn)
216
+ errors.add(:issn)
217
+ end
218
+ end
219
+ end
220
+
221
+ def check_lccn
222
+ if lccn.present?
223
+ unless StdNum::LCCN.valid?(lccn)
224
+ errors.add(:lccn)
225
+ end
226
+ end
227
+ end
228
+
229
+ def set_wrong_isbn
230
+ if isbn.present?
231
+ unless StdNum::ISBN.valid?(isbn)
232
+ self.wrong_isbn
233
+ self.isbn = nil
234
+ end
235
+ end
236
+ end
237
+
238
+ def convert_isbn
239
+ return nil unless isbn
240
+ lisbn = Lisbn.new(isbn)
241
+ if lisbn.isbn
242
+ if lisbn.isbn.length == 10
243
+ self.isbn10 = lisbn.isbn10
244
+ self.isbn = lisbn.isbn13
245
+ elsif lisbn.isbn.length == 13
246
+ self.isbn = lisbn.isbn10
247
+ self.isbn = lisbn.isbn13
248
+ end
249
+ end
250
+ end
251
+
252
+ def set_date_of_publication
253
+ return if pub_date.blank?
254
+ date = nil
255
+ pub_date_string = pub_date.gsub(/[\[\]]/, '')
256
+
257
+ while date.nil? do
258
+ pub_date_string += '-01'
259
+ break if date =~ /-01-01-01$/
260
+ begin
261
+ date = Time.zone.parse(pub_date_string)
262
+ rescue ArgumentError
263
+ date = nil
264
+ rescue TZInfo::AmbiguousTime
265
+ date = nil
266
+ self.year_of_publication = pub_date_string.to_i if pub_date_string =~ /^\d+$/
267
+ break
268
+ end
269
+ end
270
+
271
+ if date
272
+ self.year_of_publication = date.year
273
+ self.month_of_publication = date.month
274
+ if date.year > 0
275
+ self.date_of_publication = date
276
+ end
277
+ end
278
+ end
279
+
280
+ def self.cached_numdocs
281
+ Rails.cache.fetch("manifestation_search_total"){Manifestation.search.total}
282
+ end
283
+
284
+ def clear_cached_numdocs
285
+ Rails.cache.delete("manifestation_search_total")
286
+ end
287
+
288
+ def parent_of_series
289
+ original_manifestations
290
+ end
291
+
292
+ def number_of_pages
293
+ if self.start_page and self.end_page
294
+ page = self.end_page.to_i - self.start_page.to_i + 1
295
+ end
296
+ end
297
+
298
+ def titles
299
+ title = []
300
+ title << original_title.to_s.strip
301
+ title << title_transcription.to_s.strip
302
+ title << title_alternative.to_s.strip
303
+ title << volume_number_string
304
+ title << issue_number_string
305
+ title << serial_number.to_s
306
+ title << edition_string
307
+ title << series_statement.titles if series_statement
308
+ #title << original_title.wakati
309
+ #title << title_transcription.wakati rescue nil
310
+ #title << title_alternative.wakati rescue nil
311
+ title.flatten
312
+ end
313
+
314
+ def url
315
+ #access_address
316
+ "#{LibraryGroup.site_config.url}#{self.class.to_s.tableize}/#{self.id}"
317
+ end
318
+
319
+ def set_series_statement(series_statement)
320
+ if series_statement
321
+ if series_statement.periodical?
322
+ set_serial_information(series_statement)
323
+ else
324
+ self.original_title = series_statement.original_title
325
+ self.title_transcription = series_statement.title_transcription
326
+ end
327
+ end
328
+ end
329
+
330
+ def creator
331
+ creators.collect(&:name).flatten
332
+ end
333
+
334
+ def contributor
335
+ contributors.collect(&:name).flatten
336
+ end
337
+
338
+ def publisher
339
+ publishers.collect(&:name).flatten
340
+ end
341
+
342
+ def title
343
+ titles
344
+ end
345
+
346
+ def hyphenated_isbn
347
+ lisbn = Lisbn.new(isbn)
348
+ lisbn.parts.join('-')
349
+ end
350
+
351
+ # TODO: よりよい推薦方法
352
+ def self.pickup(keyword = nil)
353
+ return nil if self.cached_numdocs < 5
354
+ manifestation = nil
355
+ # TODO: ヒット件数が0件のキーワードがあるときに指摘する
356
+ response = Manifestation.search(:include => [:creators, :contributors, :publishers, :items]) do
357
+ fulltext keyword if keyword
358
+ order_by(:random)
359
+ paginate :page => 1, :per_page => 1
360
+ end
361
+ manifestation = response.results.first
362
+ end
363
+
364
+ def extract_text
365
+ return nil unless attachment.path
366
+ # TODO: S3 support
367
+ response = `curl "#{Sunspot.config.solr.url}/update/extract?&extractOnly=true&wt=ruby" --data-binary @#{attachment.path} -H "Content-type:text/html"`
368
+ self.fulltext = eval(response)[""]
369
+ save(:validate => false)
370
+ end
371
+
372
+ def created(patron)
373
+ creates.where(:patron_id => patron.id).first
374
+ end
375
+
376
+ def realized(patron)
377
+ realizes.where(:patron_id => patron.id).first
378
+ end
379
+
380
+ def produced(patron)
381
+ produces.where(:patron_id => patron.id).first
382
+ end
383
+
384
+ def sort_title
385
+ if title_transcription
386
+ NKF.nkf('-w --katakana', title_transcription)
387
+ else
388
+ original_title
389
+ end
390
+ end
391
+
392
+ def self.find_by_isbn(isbn)
393
+ lisbn = Lisbn.new(isbn.to_s)
394
+ if lisbn.valid?
395
+ if lisbn.isbn.size == 10
396
+ Manifestation.where(:isbn => lisbn.isbn13).first || Manifestation.where(:isbn => lisbn.isbn10).first
397
+ else
398
+ Manifestation.where(:isbn => lisbn.isbn13).first || Manifestation.where(:isbn => lisbn.isbn10).first
399
+ end
400
+ end
401
+ end
402
+
403
+ def index_series_statement
404
+ series_statement.try(:index)
405
+ end
406
+
407
+ def acquired_at
408
+ items.order(:acquired_at).first.try(:acquired_at)
409
+ end
410
+
411
+ def root_of_series?
412
+ return true if series_statement.try(:root_manifestation) == self
413
+ false
414
+ end
415
+
416
+ def periodical_master?
417
+ if series_statement
418
+ return true if series_statement.periodical and root_of_series?
419
+ end
420
+ false
421
+ end
422
+
423
+ def periodical?
424
+ if series_statement.try(:periodical)
425
+ return true unless root_of_series?
426
+ end
427
+ false
428
+ end
429
+
430
+ def web_item
431
+ items.where(:shelf_id => Shelf.web.id).first
432
+ end
433
+
434
+ if defined?(EnjuCirculation)
435
+ enju_circulation_model
436
+ end
437
+
438
+ if defined?(EnjuSubject)
439
+ has_many :work_has_subjects, :foreign_key => 'work_id', :dependent => :destroy
440
+ has_many :subjects, :through => :work_has_subjects
441
+
442
+ searchable do
443
+ text :subject do
444
+ (subjects.collect(&:term) + subjects.collect(&:term_transcription)).compact
445
+ end
446
+ string :subject, :multiple => true do
447
+ (subjects.collect(&:term) + subjects.collect(&:term_transcription)).compact
448
+ end
449
+ string :classification, :multiple => true do
450
+ classifications.collect(&:category)
451
+ end
452
+ integer :subject_ids, :multiple => true
453
+ end
454
+
455
+ def classifications
456
+ subjects.collect(&:classifications).flatten
457
+ end
458
+ end
459
+
460
+ if defined?(EnjuBookmark)
461
+ has_many :bookmarks, :include => :tags, :dependent => :destroy, :foreign_key => :manifestation_id
462
+ has_many :users, :through => :bookmarks
463
+
464
+ searchable do
465
+ string :tag, :multiple => true do
466
+ tags.collect(&:name)
467
+ end
468
+ text :tag do
469
+ tags.collect(&:name)
470
+ end
471
+ end
472
+
473
+ def bookmarked?(user)
474
+ return true if user.bookmarks.where(:url => url).first
475
+ false
476
+ end
477
+
478
+ def tags
479
+ if self.bookmarks.first
480
+ self.bookmarks.tag_counts
481
+ else
482
+ []
483
+ end
484
+ end
485
+ end
486
+
487
+ if defined?(EnjuQuestion)
488
+ def questions(options = {})
489
+ id = self.id
490
+ options = {:page => 1, :per_page => Question.per_page}.merge(options)
491
+ page = options[:page]
492
+ per_page = options[:per_page]
493
+ user = options[:user]
494
+ Question.search do
495
+ with(:manifestation_id).equal_to id
496
+ any_of do
497
+ unless user.try(:has_role?, 'Librarian')
498
+ with(:shared).equal_to true
499
+ # with(:username).equal_to user.try(:username)
500
+ end
501
+ end
502
+ paginate :page => page, :per_page => per_page
503
+ end.results
504
+ end
505
+ end
506
+
507
+ def set_patron_role_type(patron_lists, options = {:scope => :creator})
508
+ patron_lists.each do |patron_list|
509
+ name_and_role = patron_list[:full_name].split('||')
510
+ patron = Patron.where(:full_name => name_and_role[0]).first
511
+ next unless patron
512
+ type = name_and_role[1].to_s.strip
513
+
514
+ case options[:scope]
515
+ when :creator
516
+ type = 'author' if type.blank?
517
+ role_type = CreateType.where(:name => type).first
518
+ create = Create.where(:work_id => self.id, :patron_id => patron.id).first
519
+ if create
520
+ create.create_type = role_type
521
+ create.save(:validate => false)
522
+ end
523
+ when :publisher
524
+ type = 'publisher' if role_type.blank?
525
+ produce = Produce.where(:manifestation_id => self.id, :patron_id => patron.id).first
526
+ if produce
527
+ produce.produce_type = ProduceType.where(:name => type).first
528
+ produce.save(:validate => false)
529
+ end
530
+ else
531
+ raise "#{options[:scope]} is not supported!"
532
+ end
533
+ end
534
+ end
535
+
536
+ if defined?(EnjuScribd)
537
+ attr_accessible :post_to_scribd
538
+ end
539
+
540
+ private
541
+ def set_serial_information(series_statement)
542
+ return nil unless series_statement.periodical?
543
+ manifestation = series_statement.last_issue
544
+
545
+ if manifestation
546
+ self.original_title = manifestation.original_title
547
+ self.title_transcription = manifestation.title_transcription
548
+ self.title_alternative = manifestation.title_alternative
549
+ self.issn = series_statement.issn
550
+ # TODO: 雑誌ごとに巻・号・通号のパターンを設定できるようにする
551
+ if manifestation.serial_number.to_i > 0
552
+ self.serial_number = manifestation.serial_number.to_i + 1
553
+ if manifestation.issue_number.to_i > 0
554
+ self.issue_number = manifestation.issue_number.to_i + 1
555
+ else
556
+ self.issue_number = manifestation.issue_number
557
+ end
558
+ self.volume_number = manifestation.volume_number
559
+ else
560
+ if manifestation.issue_number.to_i > 0
561
+ self.issue_number = manifestation.issue_number.to_i + 1
562
+ self.volume_number = manifestation.volume_number
563
+ else
564
+ if manifestation.volume_number.to_i > 0
565
+ self.volume_number = manifestation.volume_number.to_i + 1
566
+ end
567
+ end
568
+ end
569
+ end
570
+ self
571
+ end
572
+ end
573
+
574
+ # == Schema Information
575
+ #
576
+ # Table name: manifestations
577
+ #
578
+ # id :integer not null, primary key
579
+ # original_title :text not null
580
+ # title_alternative :text
581
+ # title_transcription :text
582
+ # classification_number :string(255)
583
+ # manifestation_identifier :string(255)
584
+ # date_of_publication :datetime
585
+ # date_copyrighted :datetime
586
+ # created_at :datetime not null
587
+ # updated_at :datetime not null
588
+ # deleted_at :datetime
589
+ # access_address :string(255)
590
+ # language_id :integer default(1), not null
591
+ # carrier_type_id :integer default(1), not null
592
+ # extent_id :integer default(1), not null
593
+ # start_page :integer
594
+ # end_page :integer
595
+ # height :integer
596
+ # width :integer
597
+ # depth :integer
598
+ # isbn :string(255)
599
+ # isbn10 :string(255)
600
+ # wrong_isbn :string(255)
601
+ # nbn :string(255)
602
+ # lccn :string(255)
603
+ # oclc_number :string(255)
604
+ # issn :string(255)
605
+ # price :integer
606
+ # fulltext :text
607
+ # volume_number_string :string(255)
608
+ # issue_number_string :string(255)
609
+ # serial_number_string :string(255)
610
+ # edition :integer
611
+ # note :text
612
+ # repository_content :boolean default(FALSE), not null
613
+ # lock_version :integer default(0), not null
614
+ # required_role_id :integer default(1), not null
615
+ # state :string(255)
616
+ # required_score :integer default(0), not null
617
+ # frequency_id :integer default(1), not null
618
+ # subscription_master :boolean default(FALSE), not null
619
+ # attachment_file_name :string(255)
620
+ # attachment_content_type :string(255)
621
+ # attachment_file_size :integer
622
+ # attachment_updated_at :datetime
623
+ # title_alternative_transcription :text
624
+ # description :text
625
+ # abstract :text
626
+ # available_at :datetime
627
+ # valid_until :datetime
628
+ # date_submitted :datetime
629
+ # date_accepted :datetime
630
+ # date_caputured :datetime
631
+ # pub_date :string(255)
632
+ # edition_string :string(255)
633
+ # volume_number :integer
634
+ # issue_number :integer
635
+ # serial_number :integer
636
+ # ndc :string(255)
637
+ # content_type_id :integer default(1)
638
+ # year_of_publication :integer
639
+ # attachment_meta :text
640
+ # month_of_publication :integer
641
+ #
642
+
@@ -0,0 +1,30 @@
1
+ class ManifestationRelationship < ActiveRecord::Base
2
+ attr_accessible :parent_id, :child_id, :manifestation_relationship_type_id
3
+ belongs_to :parent, :foreign_key => 'parent_id', :class_name => 'Manifestation'
4
+ belongs_to :child, :foreign_key => 'child_id', :class_name => 'Manifestation'
5
+ belongs_to :manifestation_relationship_type
6
+ validate :check_parent
7
+ validates_presence_of :parent_id, :child_id
8
+ acts_as_list :scope => :parent_id
9
+
10
+ def check_parent
11
+ if parent_id == child_id
12
+ errors.add(:parent)
13
+ errors.add(:child)
14
+ end
15
+ end
16
+ end
17
+
18
+ # == Schema Information
19
+ #
20
+ # Table name: manifestation_relationships
21
+ #
22
+ # id :integer not null, primary key
23
+ # parent_id :integer
24
+ # child_id :integer
25
+ # manifestation_relationship_type_id :integer
26
+ # created_at :datetime
27
+ # updated_at :datetime
28
+ # position :integer
29
+ #
30
+
@@ -0,0 +1,20 @@
1
+ class ManifestationRelationshipType < ActiveRecord::Base
2
+ attr_accessible :name, :display_name, :note
3
+ include MasterModel
4
+ default_scope :order => 'manifestation_relationship_types.position'
5
+ has_many :manifestation_relationships
6
+ end
7
+
8
+ # == Schema Information
9
+ #
10
+ # Table name: manifestation_relationship_types
11
+ #
12
+ # id :integer not null, primary key
13
+ # name :string(255) not null
14
+ # display_name :text
15
+ # note :text
16
+ # position :integer
17
+ # created_at :datetime
18
+ # updated_at :datetime
19
+ #
20
+