enju_flower 0.1.0.pre

Sign up to get free protection for your applications and to get access to all the features.
Files changed (407) hide show
  1. data/MIT-LICENSE +20 -0
  2. data/README.rdoc +9 -0
  3. data/Rakefile +47 -0
  4. data/app/helpers/manifestations_helper.rb +176 -0
  5. data/app/views/manifestations/_all_facet.html.erb +8 -0
  6. data/app/views/manifestations/_attachment_file.html.erb +6 -0
  7. data/app/views/manifestations/_book_jacket.html.erb +5 -0
  8. data/app/views/manifestations/_call_number.html.erb +25 -0
  9. data/app/views/manifestations/_carrier_type_facet.html.erb +9 -0
  10. data/app/views/manifestations/_edition_and_number.html.erb +22 -0
  11. data/app/views/manifestations/_form.html.erb +156 -0
  12. data/app/views/manifestations/_history_list.html.erb +12 -0
  13. data/app/views/manifestations/_holding.html.erb +3 -0
  14. data/app/views/manifestations/_index_form.html.erb +12 -0
  15. data/app/views/manifestations/_index_form_contributor.html.erb +15 -0
  16. data/app/views/manifestations/_index_form_creator.html.erb +15 -0
  17. data/app/views/manifestations/_index_form_item.html.erb +14 -0
  18. data/app/views/manifestations/_index_form_manifestation.html.erb +13 -0
  19. data/app/views/manifestations/_index_form_publisher.html.erb +15 -0
  20. data/app/views/manifestations/_index_form_series_statement.html.erb +20 -0
  21. data/app/views/manifestations/_language_facet.html.erb +16 -0
  22. data/app/views/manifestations/_library_facet.html.erb +11 -0
  23. data/app/views/manifestations/_list.html.erb +21 -0
  24. data/app/views/manifestations/_manifestation.html.erb +73 -0
  25. data/app/views/manifestations/_manifestation_list.html.erb +32 -0
  26. data/app/views/manifestations/_not_found.html.erb +7 -0
  27. data/app/views/manifestations/_paginate_id_link.html.erb +30 -0
  28. data/app/views/manifestations/_pickup.html.erb +30 -0
  29. data/app/views/manifestations/_pub_year_facet.html.erb +11 -0
  30. data/app/views/manifestations/_question_list.html.erb +13 -0
  31. data/app/views/manifestations/_reservable_facet.html.erb +14 -0
  32. data/app/views/manifestations/_search_engine.html.erb +16 -0
  33. data/app/views/manifestations/_serial_form.html.erb +14 -0
  34. data/app/views/manifestations/_session_ids.html.erb +10 -0
  35. data/app/views/manifestations/_show.mods.builder +86 -0
  36. data/app/views/manifestations/_show.rdf.builder +63 -0
  37. data/app/views/manifestations/_show_creators.html.erb +17 -0
  38. data/app/views/manifestations/_show_creators.mobile.erb +17 -0
  39. data/app/views/manifestations/_show_detail_librarian.html.erb +135 -0
  40. data/app/views/manifestations/_show_detail_user.html.erb +130 -0
  41. data/app/views/manifestations/_show_group.html.erb +2 -0
  42. data/app/views/manifestations/_show_holding.html.erb +60 -0
  43. data/app/views/manifestations/_show_holding.mobile.erb +38 -0
  44. data/app/views/manifestations/_show_index.html.erb +21 -0
  45. data/app/views/manifestations/_show_index.mobile.erb +14 -0
  46. data/app/views/manifestations/_show_periodical_master.html.erb +40 -0
  47. data/app/views/manifestations/_show_series_index.html.erb +15 -0
  48. data/app/views/manifestations/_show_series_statement.html.erb +30 -0
  49. data/app/views/manifestations/_submenu_series_statement.html.erb +9 -0
  50. data/app/views/manifestations/_tab_list.html.erb +11 -0
  51. data/app/views/manifestations/_tab_menu.html.erb +14 -0
  52. data/app/views/manifestations/_title.html.erb +27 -0
  53. data/app/views/manifestations/_title.mobile.erb +27 -0
  54. data/app/views/manifestations/edit.html.erb +21 -0
  55. data/app/views/manifestations/error.xml +7 -0
  56. data/app/views/manifestations/explain.sru +9 -0
  57. data/app/views/manifestations/index.atom.builder +19 -0
  58. data/app/views/manifestations/index.csv.erb +4 -0
  59. data/app/views/manifestations/index.html.erb +112 -0
  60. data/app/views/manifestations/index.mobile.erb +21 -0
  61. data/app/views/manifestations/index.mods.builder +8 -0
  62. data/app/views/manifestations/index.opds.builder +24 -0
  63. data/app/views/manifestations/index.rdf.builder +30 -0
  64. data/app/views/manifestations/index.rss.builder +43 -0
  65. data/app/views/manifestations/index.sru.builder +101 -0
  66. data/app/views/manifestations/new.html.erb +16 -0
  67. data/app/views/manifestations/show.html.erb +108 -0
  68. data/app/views/manifestations/show.mobile.erb +20 -0
  69. data/app/views/manifestations/show.mods.builder +6 -0
  70. data/app/views/manifestations/show.rdf.builder +12 -0
  71. data/config/routes.rb +2 -0
  72. data/lib/enju_flower/engine.rb +4 -0
  73. data/lib/enju_flower/version.rb +3 -0
  74. data/lib/enju_flower.rb +4 -0
  75. data/lib/generators/enju_flower/views_generator.rb +17 -0
  76. data/lib/tasks/enju_flower_tasks.rake +4 -0
  77. data/spec/controllers/manifestations_controller_spec.rb +685 -0
  78. data/spec/dummy/README.rdoc +261 -0
  79. data/spec/dummy/Rakefile +7 -0
  80. data/spec/dummy/app/assets/javascripts/application.js +15 -0
  81. data/spec/dummy/app/assets/stylesheets/application.css +13 -0
  82. data/spec/dummy/app/controllers/application_controller.rb +184 -0
  83. data/spec/dummy/app/helpers/application_helper.rb +2 -0
  84. data/spec/dummy/app/mailers/notifier.rb +40 -0
  85. data/spec/dummy/app/models/ability.rb +186 -0
  86. data/spec/dummy/app/models/local_patron.rb +27 -0
  87. data/spec/dummy/app/models/role.rb +46 -0
  88. data/spec/dummy/app/models/setting.rb +4 -0
  89. data/spec/dummy/app/models/user.rb +102 -0
  90. data/spec/dummy/app/models/user_group.rb +40 -0
  91. data/spec/dummy/app/models/user_has_role.rb +5 -0
  92. data/spec/dummy/app/views/layouts/application.html.erb +14 -0
  93. data/spec/dummy/app/views/page/403.html.erb +9 -0
  94. data/spec/dummy/app/views/page/403.mobile.erb +5 -0
  95. data/spec/dummy/app/views/page/403.xml.erb +4 -0
  96. data/spec/dummy/app/views/page/404.html.erb +9 -0
  97. data/spec/dummy/app/views/page/404.mobile.erb +5 -0
  98. data/spec/dummy/app/views/page/404.xml.erb +4 -0
  99. data/spec/dummy/app/views/page/_footer.html.erb +4 -0
  100. data/spec/dummy/app/views/page/_header.html.erb +2 -0
  101. data/spec/dummy/app/views/page/_include.html.erb +4 -0
  102. data/spec/dummy/app/views/page/_menu.html.erb +2 -0
  103. data/spec/dummy/app/views/page/_select_locale.html.erb +2 -0
  104. data/spec/dummy/config/application.rb +64 -0
  105. data/spec/dummy/config/application.yml +42 -0
  106. data/spec/dummy/config/boot.rb +10 -0
  107. data/spec/dummy/config/database.yml +25 -0
  108. data/spec/dummy/config/environment.rb +5 -0
  109. data/spec/dummy/config/environments/development.rb +37 -0
  110. data/spec/dummy/config/environments/production.rb +67 -0
  111. data/spec/dummy/config/environments/test.rb +37 -0
  112. data/spec/dummy/config/initializers/backtrace_silencers.rb +7 -0
  113. data/spec/dummy/config/initializers/devise.rb +205 -0
  114. data/spec/dummy/config/initializers/inflections.rb +15 -0
  115. data/spec/dummy/config/initializers/mime_types.rb +10 -0
  116. data/spec/dummy/config/initializers/secret_token.rb +7 -0
  117. data/spec/dummy/config/initializers/session_store.rb +8 -0
  118. data/spec/dummy/config/initializers/wrap_parameters.rb +14 -0
  119. data/spec/dummy/config/locales/en.yml +5 -0
  120. data/spec/dummy/config/routes.rb +60 -0
  121. data/spec/dummy/config.ru +4 -0
  122. data/spec/dummy/db/migrate/001_create_patrons.rb +53 -0
  123. data/spec/dummy/db/migrate/005_create_manifestations.rb +56 -0
  124. data/spec/dummy/db/migrate/006_create_items.rb +28 -0
  125. data/spec/dummy/db/migrate/012_create_owns.rb +12 -0
  126. data/spec/dummy/db/migrate/015_create_creates.rb +12 -0
  127. data/spec/dummy/db/migrate/032_create_checkins.rb +17 -0
  128. data/spec/dummy/db/migrate/033_create_checkouts.rb +25 -0
  129. data/spec/dummy/db/migrate/035_create_reserves.rb +27 -0
  130. data/spec/dummy/db/migrate/047_create_produces.rb +12 -0
  131. data/spec/dummy/db/migrate/055_create_bookmarks.rb +22 -0
  132. data/spec/dummy/db/migrate/059_create_libraries.rb +28 -0
  133. data/spec/dummy/db/migrate/069_create_shelves.rb +15 -0
  134. data/spec/dummy/db/migrate/073_create_carrier_types.rb +11 -0
  135. data/spec/dummy/db/migrate/077_create_user_groups.rb +16 -0
  136. data/spec/dummy/db/migrate/080_create_library_groups.rb +20 -0
  137. data/spec/dummy/db/migrate/112_create_frequencies.rb +12 -0
  138. data/spec/dummy/db/migrate/113_create_events.rb +23 -0
  139. data/spec/dummy/db/migrate/114_create_event_categories.rb +16 -0
  140. data/spec/dummy/db/migrate/117_create_form_of_works.rb +12 -0
  141. data/spec/dummy/db/migrate/120_create_baskets.rb +12 -0
  142. data/spec/dummy/db/migrate/121_create_checked_items.rb +17 -0
  143. data/spec/dummy/db/migrate/124_create_bookstores.rb +17 -0
  144. data/spec/dummy/db/migrate/125_create_donates.rb +12 -0
  145. data/spec/dummy/db/migrate/127_create_use_restrictions.rb +16 -0
  146. data/spec/dummy/db/migrate/129_create_item_has_use_restrictions.rb +16 -0
  147. data/spec/dummy/db/migrate/130_create_request_status_types.rb +12 -0
  148. data/spec/dummy/db/migrate/131_create_request_types.rb +12 -0
  149. data/spec/dummy/db/migrate/132_create_circulation_statuses.rb +16 -0
  150. data/spec/dummy/db/migrate/149_create_message_templates.rb +18 -0
  151. data/spec/dummy/db/migrate/154_create_messages.rb +24 -0
  152. data/spec/dummy/db/migrate/20080819181903_create_message_requests.rb +20 -0
  153. data/spec/dummy/db/migrate/20080830154109_create_realizes.rb +13 -0
  154. data/spec/dummy/db/migrate/20080830172106_create_exemplifies.rb +13 -0
  155. data/spec/dummy/db/migrate/20080905191442_create_patron_types.rb +12 -0
  156. data/spec/dummy/db/migrate/20081023092436_create_search_engines.rb +17 -0
  157. data/spec/dummy/db/migrate/20081025083323_create_countries.rb +28 -0
  158. data/spec/dummy/db/migrate/20081025083905_create_languages.rb +23 -0
  159. data/spec/dummy/db/migrate/20081027150907_create_picture_files.rb +15 -0
  160. data/spec/dummy/db/migrate/20081028083142_create_patron_import_files.rb +22 -0
  161. data/spec/dummy/db/migrate/20081028083208_create_resource_import_files.rb +22 -0
  162. data/spec/dummy/db/migrate/20081028093607_create_event_import_files.rb +27 -0
  163. data/spec/dummy/db/migrate/20081030023412_create_checkout_types.rb +17 -0
  164. data/spec/dummy/db/migrate/20081030023518_create_user_group_has_checkout_types.rb +25 -0
  165. data/spec/dummy/db/migrate/20081030023615_create_carrier_type_has_checkout_types.rb +18 -0
  166. data/spec/dummy/db/migrate/20081117143156_create_inventory_files.rb +18 -0
  167. data/spec/dummy/db/migrate/20081117143455_create_inventories.rb +17 -0
  168. data/spec/dummy/db/migrate/20081212075554_create_checkout_stat_has_manifestations.rb +17 -0
  169. data/spec/dummy/db/migrate/20081212080038_create_manifestation_checkout_stats.rb +16 -0
  170. data/spec/dummy/db/migrate/20081212151614_create_bookmark_stats.rb +16 -0
  171. data/spec/dummy/db/migrate/20081212151820_create_bookmark_stat_has_manifestations.rb +13 -0
  172. data/spec/dummy/db/migrate/20081215094302_create_user_checkout_stats.rb +16 -0
  173. data/spec/dummy/db/migrate/20081215094955_create_checkout_stat_has_users.rb +17 -0
  174. data/spec/dummy/db/migrate/20081216190517_create_reserve_stat_has_manifestations.rb +17 -0
  175. data/spec/dummy/db/migrate/20081216190724_create_manifestation_reserve_stats.rb +16 -0
  176. data/spec/dummy/db/migrate/20081220023628_create_user_reserve_stats.rb +16 -0
  177. data/spec/dummy/db/migrate/20081220034117_create_reserve_stat_has_users.rb +17 -0
  178. data/spec/dummy/db/migrate/20090321130448_add_completed_at_to_user_checkout_stat.rb +27 -0
  179. data/spec/dummy/db/migrate/20090519203307_create_participates.rb +17 -0
  180. data/spec/dummy/db/migrate/20090705133942_add_attachments_picture_to_picture_file.rb +15 -0
  181. data/spec/dummy/db/migrate/20090705212043_add_attachments_attachment_to_manifestation.rb +15 -0
  182. data/spec/dummy/db/migrate/20090706125521_add_attachments_inventory_to_inventory_file.rb +15 -0
  183. data/spec/dummy/db/migrate/20090719201843_create_extents.rb +12 -0
  184. data/spec/dummy/db/migrate/20090720091106_create_medium_of_performances.rb +12 -0
  185. data/spec/dummy/db/migrate/20090720091429_create_content_types.rb +12 -0
  186. data/spec/dummy/db/migrate/20090812151902_create_patron_relationship_types.rb +12 -0
  187. data/spec/dummy/db/migrate/20090831220301_create_lending_policies.rb +21 -0
  188. data/spec/dummy/db/migrate/20091012101112_add_dcndl_schema.rb +27 -0
  189. data/spec/dummy/db/migrate/20091025080447_create_licenses.rb +12 -0
  190. data/spec/dummy/db/migrate/20091202124834_create_versions.rb +18 -0
  191. data/spec/dummy/db/migrate/20091214131723_create_series_statements.rb +13 -0
  192. data/spec/dummy/db/migrate/20100129142347_create_import_requests.rb +15 -0
  193. data/spec/dummy/db/migrate/20100222124420_add_allow_bookmark_external_url_to_library_group.rb +9 -0
  194. data/spec/dummy/db/migrate/20100223121519_rename_series_statement_title_to_original_title.rb +13 -0
  195. data/spec/dummy/db/migrate/20100321235924_add_series_statement_identifier_to_series_statement.rb +10 -0
  196. data/spec/dummy/db/migrate/20100525124311_create_manifestation_relationships.rb +13 -0
  197. data/spec/dummy/db/migrate/20100525171356_acts_as_taggable_on_migration.rb +30 -0
  198. data/spec/dummy/db/migrate/20100527113752_create_delayed_jobs.rb +21 -0
  199. data/spec/dummy/db/migrate/20100606073747_create_patron_relationships.rb +13 -0
  200. data/spec/dummy/db/migrate/20100607044753_create_manifestation_relationship_types.rb +12 -0
  201. data/spec/dummy/db/migrate/20100814091104_add_position_to_patron_relationship.rb +11 -0
  202. data/spec/dummy/db/migrate/20100925043847_create_resource_import_results.rb +15 -0
  203. data/spec/dummy/db/migrate/20100925074559_create_patron_import_results.rb +12 -0
  204. data/spec/dummy/db/migrate/20100925074639_create_event_import_results.rb +15 -0
  205. data/spec/dummy/db/migrate/20101212070145_add_acquired_at_to_item.rb +9 -0
  206. data/spec/dummy/db/migrate/20110222073537_add_url_to_library_group.rb +9 -0
  207. data/spec/dummy/db/migrate/20110301035123_add_pub_date_to_manifestation.rb +9 -0
  208. data/spec/dummy/db/migrate/20110301121550_add_birth_date_and_death_date_to_patron.rb +11 -0
  209. data/spec/dummy/db/migrate/20110301134521_add_expire_date_to_reserve.rb +9 -0
  210. data/spec/dummy/db/migrate/20110318183304_add_valid_period_for_new_user_to_user_group.rb +13 -0
  211. data/spec/dummy/db/migrate/20110328130826_add_current_checkout_count_to_user_group_has_checkout_type.rb +9 -0
  212. data/spec/dummy/db/migrate/20110425133109_add_issn_to_series_statement.rb +9 -0
  213. data/spec/dummy/db/migrate/20110603184217_add_edit_mode_to_resource_import_file.rb +9 -0
  214. data/spec/dummy/db/migrate/20110618091240_add_periodical_to_series_statement.rb +9 -0
  215. data/spec/dummy/db/migrate/20110619064807_add_edition_string_to_manifestation.rb +9 -0
  216. data/spec/dummy/db/migrate/20110620173525_add_bookstore_id_to_item.rb +11 -0
  217. data/spec/dummy/db/migrate/20110621093332_remove_expire_date_from_reserve.rb +9 -0
  218. data/spec/dummy/db/migrate/20110627034940_create_series_statement_merge_lists.rb +9 -0
  219. data/spec/dummy/db/migrate/20110627035057_create_series_statement_merges.rb +12 -0
  220. data/spec/dummy/db/migrate/20110627122938_add_number_of_day_to_notify_overdue_to_user_group.rb +13 -0
  221. data/spec/dummy/db/migrate/20110820131417_create_series_has_manifestations.rb +13 -0
  222. data/spec/dummy/db/migrate/20110913115320_add_lft_and_rgt_to_message.rb +11 -0
  223. data/spec/dummy/db/migrate/20110916053430_rename_manifestation_number_list_to_number_string.rb +13 -0
  224. data/spec/dummy/db/migrate/20110916091020_add_volume_number_to_manifestation.rb +13 -0
  225. data/spec/dummy/db/migrate/20110916103953_add_manifestaiton_id_to_series_statement.rb +10 -0
  226. data/spec/dummy/db/migrate/20110918161853_rename_series_statement_manifestation_id_to_root_manifestation_id.rb +13 -0
  227. data/spec/dummy/db/migrate/20110918162329_add_note_to_series_statement.rb +9 -0
  228. data/spec/dummy/db/migrate/20111009183423_add_ndc_to_manifestation.rb +9 -0
  229. data/spec/dummy/db/migrate/20111124110059_create_create_types.rb +12 -0
  230. data/spec/dummy/db/migrate/20111124110319_create_realize_types.rb +12 -0
  231. data/spec/dummy/db/migrate/20111124110355_create_produce_types.rb +12 -0
  232. data/spec/dummy/db/migrate/20111124112131_add_create_type_to_create.rb +7 -0
  233. data/spec/dummy/db/migrate/20111201121844_create_roles.rb +12 -0
  234. data/spec/dummy/db/migrate/20111201155456_create_users.rb +16 -0
  235. data/spec/dummy/db/migrate/20111201155513_add_devise_to_users.rb +44 -0
  236. data/spec/dummy/db/migrate/20111201163718_create_user_has_roles.rb +10 -0
  237. data/spec/dummy/db/migrate/20111217234412_add_save_checkout_history_to_user.rb +5 -0
  238. data/spec/dummy/db/migrate/20111218002349_add_checkout_icalendar_token_to_user.rb +6 -0
  239. data/spec/dummy/db/migrate/20111231145823_add_share_bookmarks_to_user.rb +5 -0
  240. data/spec/dummy/db/migrate/20120105074911_add_isil_to_library.rb +5 -0
  241. data/spec/dummy/db/migrate/20120105101944_add_queue_to_delayed_jobs.rb +9 -0
  242. data/spec/dummy/db/migrate/20120125050502_add_depth_to_message.rb +6 -0
  243. data/spec/dummy/db/migrate/20120125152919_add_title_subseries_transcription_to_series_statement.rb +6 -0
  244. data/spec/dummy/db/migrate/20120129014038_create_budget_types.rb +12 -0
  245. data/spec/dummy/db/migrate/20120129020544_add_budget_type_id_to_item.rb +6 -0
  246. data/spec/dummy/db/migrate/20120319120638_add_content_type_id_to_manifestation.rb +6 -0
  247. data/spec/dummy/db/migrate/20120410104851_add_year_of_publication_to_manifestation.rb +5 -0
  248. data/spec/dummy/db/migrate/20120413051535_add_event_import_fingerprint_to_event_import_file.rb +5 -0
  249. data/spec/dummy/db/migrate/20120413072700_add_picture_meta_to_picture_file.rb +5 -0
  250. data/spec/dummy/db/migrate/20120413100352_add_fingerprint_to_picture_file.rb +5 -0
  251. data/spec/dummy/db/migrate/20120413100431_add_fingerprint_to_inventory_file.rb +5 -0
  252. data/spec/dummy/db/migrate/20120413161340_add_fingerprint_to_resource_import_file.rb +5 -0
  253. data/spec/dummy/db/migrate/20120413161403_add_fingerprint_to_patron_import_file.rb +5 -0
  254. data/spec/dummy/db/migrate/20120413170705_add_error_message_to_resource_import_file.rb +5 -0
  255. data/spec/dummy/db/migrate/20120413170720_add_error_message_to_patron_import_file.rb +5 -0
  256. data/spec/dummy/db/migrate/20120413170734_add_error_message_to_event_import_file.rb +5 -0
  257. data/spec/dummy/db/migrate/20120415060308_rename_resource_import_file_imported_at_to_executed_at.rb +9 -0
  258. data/spec/dummy/db/migrate/20120415060323_rename_patron_import_file_imported_at_to_executed_at.rb +9 -0
  259. data/spec/dummy/db/migrate/20120415060342_rename_event_import_file_imported_at_to_executed_at.rb +9 -0
  260. data/spec/dummy/db/migrate/20120415164821_add_attachment_meta_to_manifestation.rb +5 -0
  261. data/spec/dummy/db/migrate/20120418081407_add_month_of_publication_to_manifestation.rb +5 -0
  262. data/spec/dummy/db/migrate/20120424103932_add_librarian_id_to_checked_item.rb +5 -0
  263. data/spec/dummy/db/migrate/20120510140958_add_closed_to_shelf.rb +5 -0
  264. data/spec/dummy/db/migrate/20120511072422_add_patron_identifier_to_patron.rb +6 -0
  265. data/spec/dummy/db/migrate/20120602141129_add_edit_mode_to_patron_import_file.rb +5 -0
  266. data/spec/dummy/db/migrate/20120728204337_create_series_statement_relationships.rb +11 -0
  267. data/spec/dummy/db/migrate/20121116031206_add_fulltext_content_to_manifestation.rb +5 -0
  268. data/spec/dummy/db/migrate/20121116033446_add_doi_to_manifestation.rb +6 -0
  269. data/spec/dummy/db/migrate/20121119153944_add_manifestation_id_to_item.rb +5 -0
  270. data/spec/dummy/db/schema.rb +1240 -0
  271. data/spec/dummy/db/test.sqlite3 +0 -0
  272. data/spec/dummy/lib/plugins/ext/event-calendar.rb +38 -0
  273. data/spec/dummy/lib/plugins/ext/sunspot/abstract_search.rb +12 -0
  274. data/spec/dummy/lib/plugins/ext/sunspot/dismax.rb +41 -0
  275. data/spec/dummy/lib/plugins/ext/sunspot/start_record.rb +55 -0
  276. data/spec/dummy/lib/plugins/ext/sunspot.rb +3 -0
  277. data/spec/dummy/lib/plugins/ext.rb +1 -0
  278. data/spec/dummy/lib/plugins.rb +2 -0
  279. data/spec/dummy/public/404.html +26 -0
  280. data/spec/dummy/public/422.html +26 -0
  281. data/spec/dummy/public/500.html +25 -0
  282. data/spec/dummy/public/favicon.ico +0 -0
  283. data/spec/dummy/script/rails +6 -0
  284. data/spec/dummy/solr/conf/admin-extra.html +31 -0
  285. data/spec/dummy/solr/conf/elevate.xml +36 -0
  286. data/spec/dummy/solr/conf/mapping-ISOLatin1Accent.txt +246 -0
  287. data/spec/dummy/solr/conf/protwords.txt +21 -0
  288. data/spec/dummy/solr/conf/schema.xml +251 -0
  289. data/spec/dummy/solr/conf/scripts.conf +24 -0
  290. data/spec/dummy/solr/conf/solrconfig.xml +934 -0
  291. data/spec/dummy/solr/conf/spellings.txt +2 -0
  292. data/spec/dummy/solr/conf/stopwords.txt +58 -0
  293. data/spec/dummy/solr/conf/synonyms.txt +31 -0
  294. data/spec/dummy/solr/data/test/index/_ev.fdt +0 -0
  295. data/spec/dummy/solr/data/test/index/_ev.fdx +0 -0
  296. data/spec/dummy/solr/data/test/index/_ev.fnm +7 -0
  297. data/spec/dummy/solr/data/test/index/_ev.frq +0 -0
  298. data/spec/dummy/solr/data/test/index/_ev.nrm +1 -0
  299. data/spec/dummy/solr/data/test/index/_ev.prx +0 -0
  300. data/spec/dummy/solr/data/test/index/_ev.tii +0 -0
  301. data/spec/dummy/solr/data/test/index/_ev.tis +0 -0
  302. data/spec/dummy/solr/data/test/index/_ew.fdt +0 -0
  303. data/spec/dummy/solr/data/test/index/_ew.fdx +0 -0
  304. data/spec/dummy/solr/data/test/index/_ew.fnm +7 -0
  305. data/spec/dummy/solr/data/test/index/_ew.frq +0 -0
  306. data/spec/dummy/solr/data/test/index/_ew.nrm +1 -0
  307. data/spec/dummy/solr/data/test/index/_ew.prx +0 -0
  308. data/spec/dummy/solr/data/test/index/_ew.tii +0 -0
  309. data/spec/dummy/solr/data/test/index/_ew.tis +0 -0
  310. data/spec/dummy/solr/data/test/index/_ex.fdt +0 -0
  311. data/spec/dummy/solr/data/test/index/_ex.fdx +0 -0
  312. data/spec/dummy/solr/data/test/index/_ex.fnm +8 -0
  313. data/spec/dummy/solr/data/test/index/_ex.frq +0 -0
  314. data/spec/dummy/solr/data/test/index/_ex.nrm +1 -0
  315. data/spec/dummy/solr/data/test/index/_ex.prx +0 -0
  316. data/spec/dummy/solr/data/test/index/_ex.tii +0 -0
  317. data/spec/dummy/solr/data/test/index/_ex.tis +0 -0
  318. data/spec/dummy/solr/data/test/index/segments.gen +0 -0
  319. data/spec/dummy/solr/data/test/index/segments_jz +0 -0
  320. data/spec/dummy/solr/data/test/spellchecker/segments.gen +0 -0
  321. data/spec/dummy/solr/data/test/spellchecker/segments_1 +0 -0
  322. data/spec/dummy/tmp/cache/4F7/F90/default_role +0 -0
  323. data/spec/dummy/tmp/cache/6E4/420/search_engine_all +0 -0
  324. data/spec/factories/basket.rb +5 -0
  325. data/spec/factories/carrier_type.rb +5 -0
  326. data/spec/factories/content_type.rb +5 -0
  327. data/spec/factories/country.rb +8 -0
  328. data/spec/factories/create.rb +6 -0
  329. data/spec/factories/create_types.rb +9 -0
  330. data/spec/factories/donate.rb +6 -0
  331. data/spec/factories/exemplify.rb +6 -0
  332. data/spec/factories/extent.rb +5 -0
  333. data/spec/factories/form_of_work.rb +5 -0
  334. data/spec/factories/frequency.rb +5 -0
  335. data/spec/factories/import_request.rb +5 -0
  336. data/spec/factories/item.rb +7 -0
  337. data/spec/factories/language.rb +8 -0
  338. data/spec/factories/license.rb +5 -0
  339. data/spec/factories/manifestation.rb +6 -0
  340. data/spec/factories/manifestation_relationship.rb +6 -0
  341. data/spec/factories/manifestation_relationship_type.rb +5 -0
  342. data/spec/factories/medium_of_performance.rb +5 -0
  343. data/spec/factories/own.rb +6 -0
  344. data/spec/factories/patron.rb +13 -0
  345. data/spec/factories/patron_relationship.rb +6 -0
  346. data/spec/factories/patron_relationship_type.rb +5 -0
  347. data/spec/factories/patron_type.rb +5 -0
  348. data/spec/factories/produce.rb +6 -0
  349. data/spec/factories/produce_types.rb +9 -0
  350. data/spec/factories/realize.rb +6 -0
  351. data/spec/factories/realize_types.rb +9 -0
  352. data/spec/factories/series_has_manifestation.rb +6 -0
  353. data/spec/factories/series_statement.rb +5 -0
  354. data/spec/factories/series_statement_relationship.rb +8 -0
  355. data/spec/factories/user.rb +37 -0
  356. data/spec/fixtures/baskets.yml +80 -0
  357. data/spec/fixtures/bookstores.yml +107 -0
  358. data/spec/fixtures/budget_types.yml +29 -0
  359. data/spec/fixtures/carrier_types.yml +51 -0
  360. data/spec/fixtures/content_types.yml +36 -0
  361. data/spec/fixtures/countries.yml +2059 -0
  362. data/spec/fixtures/create_types.yml +47 -0
  363. data/spec/fixtures/creates.yml +64 -0
  364. data/spec/fixtures/donates.yml +31 -0
  365. data/spec/fixtures/exemplifies.yml +160 -0
  366. data/spec/fixtures/extents.yml +29 -0
  367. data/spec/fixtures/form_of_works.yml +39 -0
  368. data/spec/fixtures/frequencies.yml +85 -0
  369. data/spec/fixtures/import_requests.yml +27 -0
  370. data/spec/fixtures/items.yml +259 -0
  371. data/spec/fixtures/languages.yml +1901 -0
  372. data/spec/fixtures/libraries.yml +102 -0
  373. data/spec/fixtures/library_groups.yml +33 -0
  374. data/spec/fixtures/licenses.yml +29 -0
  375. data/spec/fixtures/manifestation_relationship_types.yml +29 -0
  376. data/spec/fixtures/manifestation_relationships.yml +30 -0
  377. data/spec/fixtures/manifestations.yml +2022 -0
  378. data/spec/fixtures/medium_of_performances.yml +29 -0
  379. data/spec/fixtures/owns.yml +26 -0
  380. data/spec/fixtures/patron_import_files.yml +47 -0
  381. data/spec/fixtures/patron_import_results.yml +29 -0
  382. data/spec/fixtures/patron_relationship_types.yml +34 -0
  383. data/spec/fixtures/patron_relationships.yml +25 -0
  384. data/spec/fixtures/patron_types.yml +35 -0
  385. data/spec/fixtures/patrons.yml +334 -0
  386. data/spec/fixtures/picture_files.yml +63 -0
  387. data/spec/fixtures/produce_types.yml +31 -0
  388. data/spec/fixtures/produces.yml +148 -0
  389. data/spec/fixtures/realize_types.yml +39 -0
  390. data/spec/fixtures/realizes.yml +85 -0
  391. data/spec/fixtures/request_status_types.yml +63 -0
  392. data/spec/fixtures/request_types.yml +55 -0
  393. data/spec/fixtures/resource_import_files.yml +47 -0
  394. data/spec/fixtures/resource_import_results.yml +29 -0
  395. data/spec/fixtures/roles.yml +21 -0
  396. data/spec/fixtures/series_has_manifestations.yml +35 -0
  397. data/spec/fixtures/series_statements.yml +45 -0
  398. data/spec/fixtures/shelves.yml +47 -0
  399. data/spec/fixtures/user_groups.yml +51 -0
  400. data/spec/fixtures/user_has_roles.yml +41 -0
  401. data/spec/fixtures/users.yml +106 -0
  402. data/spec/spec_helper.rb +53 -0
  403. data/spec/support/controller_macros.rb +46 -0
  404. data/spec/support/devise.rb +4 -0
  405. data/vendor/assets/javascripts/jquery.mobile-1.3.0.js +11092 -0
  406. data/vendor/assets/stylesheets/jquery.mobile-1.3.0.css +3357 -0
  407. metadata +942 -0
@@ -0,0 +1,2022 @@
1
+ ---
2
+ manifestation_00001:
3
+ carrier_type_id: 1
4
+ language_id: 1
5
+ isbn: "4798002062"
6
+ updated_at: 2007-11-19 16:59:00.293393 +09:00
7
+ original_title: "\xE3\x82\x88\xE3\x81\x8F\xE3\x82\x8F\xE3\x81\x8B\xE3\x82\x8B\xE6\x9C\x80\xE6\x96\xB0Web\xE3\x82\xB5\xE3\x83\xBC\xE3\x83\x93\xE3\x82\xB9\xE6\x8A\x80\xE8\xA1\x93"
8
+ price:
9
+ manifestation_identifier:
10
+ depth:
11
+ date_of_publication:
12
+ access_address:
13
+ id: 1
14
+ height:
15
+ width:
16
+ created_at: 2007-11-19 16:59:00.293393 +09:00
17
+ start_page: 1
18
+ end_page: 100
19
+ repository_content: true
20
+ manifestation_00002:
21
+ carrier_type_id: 1
22
+ language_id: 1
23
+ isbn: "4915724824"
24
+ updated_at: 2007-11-19 16:59:01.991512 +09:00
25
+ original_title: "\xE6\x83\x85\xE5\xA0\xB1\xE9\x80\x9A\xE4\xBF\xA1\xE3\x83\x8F\xE3\x83\xB3\xE3\x83\x89\xE3\x83\x96\xE3\x83\x83\xE3\x82\xAF2005"
26
+ price:
27
+ manifestation_identifier:
28
+ depth:
29
+ date_of_publication:
30
+ access_address:
31
+ id: 2
32
+ height:
33
+ width:
34
+ created_at: 2007-11-19 16:59:01.991512 +09:00
35
+ repository_content: false
36
+ manifestation_00003:
37
+ carrier_type_id: 1
38
+ language_id: 1
39
+ isbn: "4897063590"
40
+ updated_at: 2007-11-19 16:59:02.618359 +09:00
41
+ original_title: !binary |
42
+ 44GT44KM44GL44KJ44Gu55Sf5ZG956eR5a2m56CU56m26ICF44Gu44Gf44KB
43
+ 44Gu44OQ44Kk44Kq54m56Kix5YWl6ZaA6Kyb5bqn
44
+
45
+ price:
46
+ manifestation_identifier:
47
+ depth:
48
+ date_of_publication:
49
+ access_address: "http://www.slis.keio.ac.jp/"
50
+ id: 3
51
+ height:
52
+ width:
53
+ created_at: 2007-11-19 16:59:02.618359 +09:00
54
+ manifestation_00004:
55
+ carrier_type_id: 1
56
+ language_id: 1
57
+ isbn: 0471412791
58
+ updated_at: 2007-11-19 16:59:03.275738 +09:00
59
+ original_title: THE BIOTECH INVESTOR'S BIBLE
60
+ price:
61
+ manifestation_identifier:
62
+ depth:
63
+ date_of_publication:
64
+ access_address:
65
+ id: 4
66
+ height:
67
+ width:
68
+ created_at: 2007-11-19 16:59:03.275738 +09:00
69
+ manifestation_00005:
70
+ carrier_type_id: 1
71
+ language_id: 1
72
+ isbn: ""
73
+ updated_at: 2007-11-19 16:59:04.333183 +09:00
74
+ original_title: !binary |
75
+ 6aGn5a6i5rqA6Laz5Z6L44Oe44O844Kx44OG44Kj44Oz44Kw44Gu5qeL5Zuz
76
+
77
+ price:
78
+ manifestation_identifier:
79
+ depth:
80
+ date_of_publication:
81
+ access_address:
82
+ id: 5
83
+ height:
84
+ width:
85
+ created_at: 2007-11-19 16:59:04.333183 +09:00
86
+ manifestation_00006:
87
+ carrier_type_id: 1
88
+ language_id: 1
89
+ isbn: ""
90
+ updated_at: 2007-11-19 16:59:05.255684 +09:00
91
+ original_title: !binary |
92
+ 5LuV57WE44G/6Z2p5paw44Gu5pmC5Luj
93
+
94
+ price:
95
+ manifestation_identifier:
96
+ depth:
97
+ date_of_publication:
98
+ access_address:
99
+ id: 6
100
+ height:
101
+ width:
102
+ created_at: 2007-11-19 16:59:05.255684 +09:00
103
+ manifestation_00007:
104
+ carrier_type_id: 1
105
+ language_id: 1
106
+ isbn: 0470844701
107
+ updated_at: 2007-11-19 16:59:06.892741 +09:00
108
+ original_title: dictionary of e-business
109
+ price:
110
+ manifestation_identifier:
111
+ depth:
112
+ date_of_publication:
113
+ access_address:
114
+ id: 7
115
+ height:
116
+ width:
117
+ created_at: 2007-11-19 16:59:06.892741 +09:00
118
+ manifestation_00008:
119
+ carrier_type_id: 1
120
+ language_id: 1
121
+ isbn: "4798101028"
122
+ updated_at: 2007-11-19 16:59:07.463333 +09:00
123
+ original_title: "Web\xE3\x82\xB5\xE3\x83\xBC\xE3\x83\x93\xE3\x82\xB9\xE5\xAE\x8C\xE5\x85\xA8\xE8\xA7\xA3\xE8\xAA\xAC"
124
+ price:
125
+ manifestation_identifier:
126
+ depth:
127
+ date_of_publication:
128
+ access_address:
129
+ id: 8
130
+ height:
131
+ width:
132
+ created_at: 2007-11-19 16:59:07.463333 +09:00
133
+ manifestation_00009:
134
+ carrier_type_id: 1
135
+ language_id: 1
136
+ isbn: "4641143331"
137
+ updated_at: 2007-11-19 16:59:08.166195 +09:00
138
+ original_title: !binary |
139
+ 6YCQ5p2h6Kej6Kqs5LiN5q2j56u25LqJ6Ziy5q2i5rOV
140
+
141
+ price:
142
+ manifestation_identifier:
143
+ depth:
144
+ date_of_publication:
145
+ access_address:
146
+ id: 9
147
+ height:
148
+ width:
149
+ created_at: 2007-11-19 16:59:08.166195 +09:00
150
+ manifestation_00010:
151
+ carrier_type_id: 1
152
+ language_id: 1
153
+ isbn: "9784774127804"
154
+ updated_at: 2007-11-19 16:59:09.799724 +09:00
155
+ original_title: "Apache Lucene入門 : Java・オープンソース・全文検索システムの構築"
156
+ price:
157
+ manifestation_identifier:
158
+ depth:
159
+ date_of_publication:
160
+ access_address:
161
+ id: 10
162
+ height:
163
+ width:
164
+ created_at: 2007-11-19 16:59:09.799724 +09:00
165
+ manifestation_00021:
166
+ carrier_type_id: 1
167
+ isbn: "4822281167"
168
+ updated_at: 2007-11-19 16:59:20.799724 +09:00
169
+ original_title: "Web\xE3\x82\xB5\xE3\x83\xBC\xE3\x83\x93\xE3\x82\xB9\xE5\xAE\x8C\xE5\x85\xA8\xE6\xA7\x8B\xE7\xAF\x89\xE3\x82\xAC\xE3\x82\xA4\xE3\x83\x89"
170
+ price:
171
+ manifestation_identifier:
172
+ depth:
173
+ date_of_publication:
174
+ access_address:
175
+ id: 11
176
+ height:
177
+ width:
178
+ created_at: 2007-11-19 16:59:20.799724 +09:00
179
+ required_role_id: 2
180
+ manifestation_00022:
181
+ carrier_type_id: 1
182
+ isbn:
183
+ updated_at: 2007-11-19 16:59:21.799724 +09:00
184
+ original_title: "YouTube - Open Source ILS Song"
185
+ price:
186
+ manifestation_identifier:
187
+ depth:
188
+ date_of_publication:
189
+ access_address: "http://jp.youtube.com/watch?v=BSHBzd9ftDE"
190
+ id: 22
191
+ height:
192
+ width:
193
+ created_at: 2008-04-17 00:34:01 +09:00
194
+ required_role_id: 1
195
+ manifestation_00023:
196
+ carrier_type_id: 1
197
+ isbn:
198
+ updated_at: 2008-04-17 00:34:01 +09:00
199
+ original_title: "世界の美しい図書館集めてみた【第一弾】"
200
+ price:
201
+ manifestation_identifier:
202
+ depth:
203
+ date_of_publication:
204
+ access_address: "http://www.nicovideo.jp/watch/sm3015373"
205
+ id: 23
206
+ height:
207
+ width:
208
+ created_at: 2007-11-19 16:58:58.799724 +09:00
209
+ required_role_id: 4
210
+ manifestation_00101:
211
+ carrier_type_id: 1
212
+ language_id: 1
213
+ isbn: 0000000101
214
+ updated_at: 2010-03-01 16:14:18 +09:00
215
+ original_title: "CGI基礎講座 : Perl・プログラミング・日本語処理"
216
+ price:
217
+ manifestation_identifier:
218
+ depth:
219
+ date_of_publication:
220
+ access_address:
221
+ id: 101
222
+ height:
223
+ width:
224
+ created_at: 2010-02-21 15:47:09 UTC
225
+ manifestation_00102:
226
+ carrier_type_id: 1
227
+ language_id: 1
228
+ isbn: 0000000102
229
+ updated_at: 2010-03-01 16:14:18 +09:00
230
+ original_title: "CGIレスキュー実践Perlプログラミング : Web裏技"
231
+ price:
232
+ manifestation_identifier:
233
+ depth:
234
+ date_of_publication:
235
+ access_address:
236
+ id: 102
237
+ height:
238
+ width:
239
+ created_at: 2010-02-21 14:57:08 UTC
240
+ manifestation_00103:
241
+ carrier_type_id: 1
242
+ language_id: 1
243
+ isbn: 0000000103
244
+ updated_at: 2010-03-01 16:14:18 +09:00
245
+ original_title: "Perlクックブック. v.2"
246
+ price:
247
+ manifestation_identifier:
248
+ depth:
249
+ date_of_publication:
250
+ access_address:
251
+ id: 103
252
+ height:
253
+ width:
254
+ created_at: 2010-02-21 10:51:48 UTC
255
+ manifestation_00104:
256
+ carrier_type_id: 1
257
+ language_id: 1
258
+ isbn: 0000000104
259
+ updated_at: 2010-03-01 16:14:18 +09:00
260
+ original_title: "Perlクックブック. v.1"
261
+ price:
262
+ manifestation_identifier:
263
+ depth:
264
+ date_of_publication:
265
+ access_address:
266
+ id: 104
267
+ height:
268
+ width:
269
+ created_at: 2010-02-21 10:51:33 UTC
270
+ manifestation_00105:
271
+ carrier_type_id: 1
272
+ language_id: 1
273
+ isbn: 0000000105
274
+ updated_at: 2010-03-01 16:14:18 +09:00
275
+ original_title: "初めてのPerl. 続"
276
+ price:
277
+ manifestation_identifier:
278
+ depth:
279
+ date_of_publication:
280
+ access_address:
281
+ id: 105
282
+ height:
283
+ width:
284
+ created_at: 2010-02-21 10:48:14 UTC
285
+ manifestation_00106:
286
+ carrier_type_id: 1
287
+ language_id: 1
288
+ isbn: 0000000106
289
+ updated_at: 2010-03-01 16:14:18 +09:00
290
+ original_title: "Perl & XML"
291
+ price:
292
+ manifestation_identifier:
293
+ depth:
294
+ date_of_publication:
295
+ access_address:
296
+ id: 106
297
+ height:
298
+ width:
299
+ created_at: 2010-02-21 10:45:48 UTC
300
+ manifestation_00107:
301
+ carrier_type_id: 1
302
+ language_id: 1
303
+ isbn: 0000000107
304
+ updated_at: 2010-03-01 16:14:18 +09:00
305
+ original_title: "はじめてのPerlモジュール : 厳選実用モジュール集"
306
+ price:
307
+ manifestation_identifier:
308
+ depth:
309
+ date_of_publication:
310
+ access_address:
311
+ id: 107
312
+ height:
313
+ width:
314
+ created_at: 2010-02-21 09:59:01 UTC
315
+ manifestation_00108:
316
+ carrier_type_id: 1
317
+ language_id: 1
318
+ isbn: 0000000108
319
+ updated_at: 2010-03-01 16:14:18 +09:00
320
+ original_title: "Perl 5パワフルテクニック大全集"
321
+ price:
322
+ manifestation_identifier:
323
+ depth:
324
+ date_of_publication:
325
+ access_address:
326
+ id: 108
327
+ height:
328
+ width:
329
+ created_at: 2010-02-21 08:13:17 UTC
330
+ manifestation_00109:
331
+ carrier_type_id: 1
332
+ language_id: 1
333
+ isbn: 0000000109
334
+ updated_at: 2010-03-01 16:14:18 +09:00
335
+ original_title: "CGI/Perlパワープログラミング"
336
+ price:
337
+ manifestation_identifier:
338
+ depth:
339
+ date_of_publication:
340
+ access_address:
341
+ id: 109
342
+ height:
343
+ width:
344
+ created_at: 2010-02-20 17:26:08 UTC
345
+ manifestation_00110:
346
+ carrier_type_id: 1
347
+ language_id: 1
348
+ isbn: 0000000110
349
+ updated_at: 2010-03-01 16:14:18 +09:00
350
+ original_title: "Ruby/GTKプログラミング入門 : Rubyで作って遊ぶGUIプログラミング"
351
+ price:
352
+ manifestation_identifier:
353
+ depth:
354
+ date_of_publication:
355
+ access_address:
356
+ id: 110
357
+ height:
358
+ width:
359
+ created_at: 2010-02-19 13:09:56 UTC
360
+ manifestation_00111:
361
+ carrier_type_id: 1
362
+ language_id: 1
363
+ isbn: 0000000111
364
+ updated_at: 2010-03-01 16:14:18 +09:00
365
+ original_title: "すぐわかるPerl"
366
+ price:
367
+ manifestation_identifier:
368
+ depth:
369
+ date_of_publication:
370
+ access_address:
371
+ id: 111
372
+ height:
373
+ width:
374
+ created_at: 2010-02-19 13:07:28 UTC
375
+ manifestation_00112:
376
+ carrier_type_id: 1
377
+ language_id: 1
378
+ isbn: 0000000112
379
+ updated_at: 2010-03-01 16:14:18 +09:00
380
+ original_title: "CGIのための実践入門Perl : 対話的・動きのあるWebページを作ろう"
381
+ price:
382
+ manifestation_identifier:
383
+ depth:
384
+ date_of_publication:
385
+ access_address:
386
+ id: 112
387
+ height:
388
+ width:
389
+ created_at: 2010-02-19 13:06:51 UTC
390
+ manifestation_00113:
391
+ carrier_type_id: 1
392
+ language_id: 1
393
+ isbn: 0000000113
394
+ updated_at: 2010-03-01 16:14:18 +09:00
395
+ original_title: "プログラミングは難しくない! : ウェブではじめるJavaScript/Perl/Java"
396
+ price:
397
+ manifestation_identifier:
398
+ depth:
399
+ date_of_publication:
400
+ access_address:
401
+ id: 113
402
+ height:
403
+ width:
404
+ created_at: 2010-02-19 11:02:27 UTC
405
+ manifestation_00114:
406
+ carrier_type_id: 1
407
+ language_id: 1
408
+ isbn: 9784756137470
409
+ updated_at: 2010-03-01 16:14:18 +09:00
410
+ original_title: "Rubyを256倍使うための本. 魔道編"
411
+ price:
412
+ manifestation_identifier:
413
+ depth:
414
+ pub_date: 2001-03-20
415
+ access_address:
416
+ id: 114
417
+ height:
418
+ width:
419
+ created_at: 2010-02-19 05:46:08 UTC
420
+ manifestation_00115:
421
+ carrier_type_id: 1
422
+ language_id: 1
423
+ isbn: 0000000115
424
+ updated_at: 2010-03-01 16:14:18 +09:00
425
+ original_title: "入門Perl"
426
+ price:
427
+ manifestation_identifier:
428
+ depth:
429
+ date_of_publication:
430
+ access_address:
431
+ id: 115
432
+ height:
433
+ width:
434
+ created_at: 2010-02-19 05:40:17 UTC
435
+ manifestation_00116:
436
+ carrier_type_id: 1
437
+ language_id: 1
438
+ isbn: 9784756100917
439
+ updated_at: 2010-03-01 16:14:18 +09:00
440
+ original_title: "sed & awkプログラミング : UNIX power tools"
441
+ price:
442
+ manifestation_identifier:
443
+ depth:
444
+ pub_date: 1991-12-24
445
+ access_address:
446
+ id: 116
447
+ height:
448
+ width:
449
+ created_at: 2010-02-19 05:39:01 UTC
450
+ manifestation_00117:
451
+ carrier_type_id: 1
452
+ language_id: 1
453
+ isbn: 0000000117
454
+ updated_at: 2010-03-01 16:14:18 +09:00
455
+ original_title: "Perlの達人"
456
+ price:
457
+ manifestation_identifier:
458
+ depth:
459
+ date_of_publication:
460
+ access_address:
461
+ id: 117
462
+ height:
463
+ width:
464
+ created_at: 2010-02-18 10:23:27 UTC
465
+ manifestation_00118:
466
+ carrier_type_id: 1
467
+ language_id: 1
468
+ isbn: 0000000118
469
+ updated_at: 2010-03-01 16:14:18 +09:00
470
+ original_title: "ナチ強制・絶滅収容所 : 18施設内の生と死"
471
+ price:
472
+ manifestation_identifier:
473
+ depth:
474
+ date_of_publication:
475
+ access_address:
476
+ id: 118
477
+ height:
478
+ width:
479
+ created_at: 2010-02-17 01:12:08 UTC
480
+ manifestation_00119:
481
+ carrier_type_id: 1
482
+ language_id: 1
483
+ isbn: 0000000119
484
+ updated_at: 2010-03-01 16:14:18 +09:00
485
+ original_title: "Perl基礎講座"
486
+ price:
487
+ manifestation_identifier:
488
+ depth:
489
+ date_of_publication:
490
+ access_address:
491
+ id: 119
492
+ height:
493
+ width:
494
+ created_at: 2010-02-16 04:30:37 UTC
495
+ manifestation_00120:
496
+ carrier_type_id: 1
497
+ language_id: 1
498
+ isbn: 9784274063855
499
+ updated_at: 2010-03-01 16:14:18 +09:00
500
+ original_title: "Rubyプログラミング入門"
501
+ price:
502
+ manifestation_identifier:
503
+ depth:
504
+ pub_date: 2000-10-01
505
+ access_address:
506
+ id: 120
507
+ height:
508
+ width:
509
+ created_at: 2010-02-16 04:29:59 UTC
510
+ manifestation_00121:
511
+ carrier_type_id: 1
512
+ language_id: 1
513
+ isbn: 0000000121
514
+ updated_at: 2010-03-01 16:14:18 +09:00
515
+ original_title: "Django×Python"
516
+ price:
517
+ manifestation_identifier:
518
+ depth:
519
+ date_of_publication:
520
+ access_address:
521
+ id: 121
522
+ height:
523
+ width:
524
+ created_at: 2010-01-30 06:22:35 UTC
525
+ manifestation_00122:
526
+ carrier_type_id: 1
527
+ language_id: 1
528
+ isbn: 0000000122
529
+ updated_at: 2010-03-01 16:14:18 +09:00
530
+ original_title: "みんなのPython"
531
+ price:
532
+ manifestation_identifier:
533
+ depth:
534
+ date_of_publication:
535
+ access_address:
536
+ id: 122
537
+ height:
538
+ width:
539
+ created_at: 2010-01-30 06:17:32 UTC
540
+ manifestation_00123:
541
+ carrier_type_id: 1
542
+ language_id: 1
543
+ isbn: 0000000123
544
+ updated_at: 2010-03-01 16:14:18 +09:00
545
+ original_title: "Rubyでgroonga使って全文検索 - ラングバ"
546
+ price:
547
+ manifestation_identifier:
548
+ depth:
549
+ date_of_publication:
550
+ access_address:
551
+ id: 123
552
+ height:
553
+ width:
554
+ created_at: 2009-10-25 13:20:34 UTC
555
+ manifestation_00124:
556
+ carrier_type_id: 1
557
+ language_id: 1
558
+ isbn: 0000000124
559
+ updated_at: 2010-03-01 16:14:18 +09:00
560
+ original_title: "まちづくり三鷹図書館(Ruby図書館情報システム デモサイト)"
561
+ price:
562
+ manifestation_identifier:
563
+ depth:
564
+ date_of_publication:
565
+ access_address:
566
+ id: 124
567
+ height:
568
+ width:
569
+ created_at: 2009-10-20 13:46:44 UTC
570
+ manifestation_00125:
571
+ carrier_type_id: 1
572
+ language_id: 1
573
+ isbn: 0000000125
574
+ updated_at: 2010-03-01 16:14:18 +09:00
575
+ original_title: "Ruby on Rails入門 : 優しいRailsの育て方"
576
+ price:
577
+ manifestation_identifier:
578
+ depth:
579
+ date_of_publication:
580
+ access_address:
581
+ id: 125
582
+ height:
583
+ width:
584
+ created_at: 2009-10-16 05:16:48 UTC
585
+ manifestation_00126:
586
+ carrier_type_id: 1
587
+ language_id: 1
588
+ isbn: 0000000126
589
+ updated_at: 2010-03-01 16:14:18 +09:00
590
+ original_title: "Ruby Cookbook"
591
+ price:
592
+ manifestation_identifier:
593
+ depth:
594
+ date_of_publication:
595
+ access_address:
596
+ id: 126
597
+ height:
598
+ width:
599
+ created_at: 2009-06-29 12:44:11 UTC
600
+ manifestation_00127:
601
+ carrier_type_id: 1
602
+ language_id: 1
603
+ isbn: 0000000127
604
+ updated_at: 2010-03-01 16:14:18 +09:00
605
+ original_title: "CGI programming on the World Wide Web"
606
+ price:
607
+ manifestation_identifier:
608
+ depth:
609
+ date_of_publication:
610
+ access_address:
611
+ id: 127
612
+ height:
613
+ width:
614
+ created_at: 2009-06-19 13:45:14 UTC
615
+ manifestation_00128:
616
+ carrier_type_id: 1
617
+ language_id: 1
618
+ isbn: 0000000128
619
+ updated_at: 2010-03-01 16:14:18 +09:00
620
+ original_title: "Genomic Perl"
621
+ price:
622
+ manifestation_identifier:
623
+ depth:
624
+ date_of_publication:
625
+ access_address:
626
+ id: 128
627
+ height:
628
+ width:
629
+ created_at: 2009-06-19 13:27:46 UTC
630
+ manifestation_00129:
631
+ carrier_type_id: 1
632
+ language_id: 1
633
+ isbn: 0000000129
634
+ updated_at: 2010-03-01 16:14:18 +09:00
635
+ original_title: "Indians of the Pacific Northwest"
636
+ price:
637
+ manifestation_identifier:
638
+ depth:
639
+ date_of_publication:
640
+ access_address:
641
+ id: 129
642
+ height:
643
+ width:
644
+ created_at: 2009-06-19 12:16:23 UTC
645
+ manifestation_00130:
646
+ carrier_type_id: 1
647
+ language_id: 1
648
+ isbn: 0000000130
649
+ updated_at: 2010-03-01 16:14:18 +09:00
650
+ original_title: "Massachusetts acid rain monitoring project / Massachusetts acid rain monitoring project A.R.M"
651
+ price:
652
+ manifestation_identifier:
653
+ depth:
654
+ date_of_publication:
655
+ access_address:
656
+ id: 130
657
+ height:
658
+ width:
659
+ created_at: 2009-06-19 12:03:29 UTC
660
+ manifestation_00131:
661
+ carrier_type_id: 1
662
+ language_id: 1
663
+ isbn: 0000000131
664
+ updated_at: 2010-03-01 16:14:18 +09:00
665
+ original_title: "International Symposium Genes and Chromosomes Structure and Function"
666
+ price:
667
+ manifestation_identifier:
668
+ depth:
669
+ date_of_publication:
670
+ access_address:
671
+ id: 131
672
+ height:
673
+ width:
674
+ created_at: 2009-06-19 12:02:48 UTC
675
+ manifestation_00132:
676
+ carrier_type_id: 1
677
+ language_id: 1
678
+ isbn: 0000000132
679
+ updated_at: 2010-03-01 16:14:18 +09:00
680
+ original_title: "Perl black book, 2nd edition"
681
+ price:
682
+ manifestation_identifier:
683
+ depth:
684
+ date_of_publication:
685
+ access_address:
686
+ id: 132
687
+ height:
688
+ width:
689
+ created_at: 2009-06-19 11:42:02 UTC
690
+ manifestation_00133:
691
+ carrier_type_id: 1
692
+ language_id: 1
693
+ isbn: 0000000133
694
+ updated_at: 2010-03-01 16:14:18 +09:00
695
+ original_title: "Python scripting for computational science"
696
+ price:
697
+ manifestation_identifier:
698
+ depth:
699
+ date_of_publication:
700
+ access_address:
701
+ id: 133
702
+ height:
703
+ width:
704
+ created_at: 2009-06-19 11:18:01 UTC
705
+ manifestation_00134:
706
+ carrier_type_id: 1
707
+ language_id: 1
708
+ isbn: 0000000134
709
+ updated_at: 2010-03-01 16:14:18 +09:00
710
+ original_title: "Tests on a gold ore from the Ruby Basin, Black Hills"
711
+ price:
712
+ manifestation_identifier:
713
+ depth:
714
+ date_of_publication:
715
+ access_address:
716
+ id: 134
717
+ height:
718
+ width:
719
+ created_at: 2009-06-19 11:06:07 UTC
720
+ manifestation_00135:
721
+ carrier_type_id: 1
722
+ language_id: 1
723
+ isbn: 0000000135
724
+ updated_at: 2010-03-01 16:14:18 +09:00
725
+ original_title: "Official guide to programming with CGI.pm / Programming with CGI.pm / Official guide to programming with CGI.pm"
726
+ price:
727
+ manifestation_identifier:
728
+ depth:
729
+ date_of_publication:
730
+ access_address:
731
+ id: 135
732
+ height:
733
+ width:
734
+ created_at: 2009-06-19 10:54:21 UTC
735
+ manifestation_00136:
736
+ carrier_type_id: 1
737
+ language_id: 1
738
+ isbn: 0000000136
739
+ updated_at: 2010-03-01 16:14:18 +09:00
740
+ original_title: "Three little words [sound recording] / Nevertheless (I'm in love with you) / I love you so much / All alone Monday / Where did you get that girl? / Thinking of you / I wanna be loved by you / Who's sorry now? / My sunny Tennessee / So long Oolong / Three little words"
741
+ price:
742
+ manifestation_identifier:
743
+ depth:
744
+ date_of_publication:
745
+ access_address:
746
+ id: 136
747
+ height:
748
+ width:
749
+ created_at: 2009-06-19 10:46:46 UTC
750
+ manifestation_00137:
751
+ carrier_type_id: 1
752
+ language_id: 1
753
+ isbn: 0000000137
754
+ updated_at: 2010-03-01 16:14:18 +09:00
755
+ original_title: "Femtosecond time-resolved spectroscopy of organic molecular crystals / Time-resolved spectroscopy of organic molecular crystals, Femtosecond"
756
+ price:
757
+ manifestation_identifier:
758
+ depth:
759
+ date_of_publication:
760
+ access_address:
761
+ id: 137
762
+ height:
763
+ width:
764
+ created_at: 2009-06-19 10:18:59 UTC
765
+ manifestation_00138:
766
+ carrier_type_id: 1
767
+ language_id: 1
768
+ isbn: 0000000138
769
+ updated_at: 2010-03-01 16:14:18 +09:00
770
+ original_title: "CGI programming with Perl"
771
+ price:
772
+ manifestation_identifier:
773
+ depth:
774
+ date_of_publication:
775
+ access_address:
776
+ id: 138
777
+ height:
778
+ width:
779
+ created_at: 2009-06-19 09:19:08 UTC
780
+ manifestation_00139:
781
+ carrier_type_id: 1
782
+ language_id: 1
783
+ isbn: 0000000139
784
+ updated_at: 2010-03-01 16:14:18 +09:00
785
+ original_title: "Python and XML / Python & XML / XML processing with Python"
786
+ price:
787
+ manifestation_identifier:
788
+ depth:
789
+ date_of_publication:
790
+ access_address:
791
+ id: 139
792
+ height:
793
+ width:
794
+ created_at: 2009-06-19 09:19:02 UTC
795
+ manifestation_00140:
796
+ carrier_type_id: 1
797
+ language_id: 1
798
+ isbn: 0000000140
799
+ updated_at: 2010-03-01 16:14:18 +09:00
800
+ original_title: "Perl cookbook / Solutions and examples for Perl programmers"
801
+ price:
802
+ manifestation_identifier:
803
+ depth:
804
+ date_of_publication:
805
+ access_address:
806
+ id: 140
807
+ height:
808
+ width:
809
+ created_at: 2009-06-19 09:19:01 UTC
810
+ manifestation_00141:
811
+ carrier_type_id: 1
812
+ language_id: 1
813
+ isbn: 0000000141
814
+ updated_at: 2010-03-01 16:14:18 +09:00
815
+ original_title: "Mastering Perl/Tk / Perl/Tk"
816
+ price:
817
+ manifestation_identifier:
818
+ depth:
819
+ date_of_publication:
820
+ access_address:
821
+ id: 141
822
+ height:
823
+ width:
824
+ created_at: 2009-06-19 09:19:00 UTC
825
+ manifestation_00142:
826
+ carrier_type_id: 1
827
+ language_id: 1
828
+ isbn: 0000000142
829
+ updated_at: 2010-03-01 16:14:18 +09:00
830
+ original_title: "Mastering algorithms with Perl / Practical programming through computer science"
831
+ price:
832
+ manifestation_identifier:
833
+ depth:
834
+ date_of_publication:
835
+ access_address:
836
+ id: 142
837
+ height:
838
+ width:
839
+ created_at: 2009-06-19 09:18:58 UTC
840
+ manifestation_00143:
841
+ carrier_type_id: 1
842
+ language_id: 1
843
+ isbn: 0000000143
844
+ updated_at: 2010-03-01 16:14:18 +09:00
845
+ original_title: "Programming Perl"
846
+ price:
847
+ manifestation_identifier:
848
+ depth:
849
+ date_of_publication:
850
+ access_address:
851
+ id: 143
852
+ height:
853
+ width:
854
+ created_at: 2009-06-19 09:18:45 UTC
855
+ manifestation_00144:
856
+ carrier_type_id: 1
857
+ language_id: 1
858
+ isbn: 0000000144
859
+ updated_at: 2010-03-01 16:14:18 +09:00
860
+ original_title: "Fort Worth & Tarrant County / Fort Worth and Tarrant County"
861
+ price:
862
+ manifestation_identifier:
863
+ depth:
864
+ date_of_publication:
865
+ access_address:
866
+ id: 144
867
+ height:
868
+ width:
869
+ created_at: 2009-06-19 07:49:42 UTC
870
+ manifestation_00145:
871
+ carrier_type_id: 1
872
+ language_id: 1
873
+ isbn: 0000000145
874
+ updated_at: 2010-03-01 16:14:18 +09:00
875
+ original_title: "Monty Python's Spamalot [sound recording] / Spamalot / Spamalot / Monty Python and the Holy Grail (Motion picture)"
876
+ price:
877
+ manifestation_identifier:
878
+ depth:
879
+ date_of_publication:
880
+ access_address:
881
+ id: 145
882
+ height:
883
+ width:
884
+ created_at: 2009-06-19 06:44:35 UTC
885
+ manifestation_00146:
886
+ carrier_type_id: 1
887
+ language_id: 1
888
+ isbn: 0000000146
889
+ updated_at: 2010-03-01 16:14:18 +09:00
890
+ original_title: "AWK programming language"
891
+ price:
892
+ manifestation_identifier:
893
+ depth:
894
+ date_of_publication:
895
+ access_address:
896
+ id: 146
897
+ height:
898
+ width:
899
+ created_at: 2009-06-19 06:28:27 UTC
900
+ manifestation_00147:
901
+ carrier_type_id: 1
902
+ language_id: 1
903
+ isbn: 0000000147
904
+ updated_at: 2010-03-01 16:14:18 +09:00
905
+ original_title: "Toting the lead row"
906
+ price:
907
+ manifestation_identifier:
908
+ depth:
909
+ date_of_publication:
910
+ access_address:
911
+ id: 147
912
+ height:
913
+ width:
914
+ created_at: 2009-06-19 02:16:22 UTC
915
+ manifestation_00148:
916
+ carrier_type_id: 1
917
+ language_id: 1
918
+ isbn: 0000000148
919
+ updated_at: 2010-03-01 16:14:18 +09:00
920
+ original_title: "Afro-American blues and game songs"
921
+ price:
922
+ manifestation_identifier:
923
+ depth:
924
+ date_of_publication:
925
+ access_address:
926
+ id: 148
927
+ height:
928
+ width:
929
+ created_at: 2009-06-19 02:09:17 UTC
930
+ manifestation_00149:
931
+ carrier_type_id: 1
932
+ language_id: 1
933
+ isbn: 0000000149
934
+ updated_at: 2010-03-01 16:14:18 +09:00
935
+ original_title: "Perl/Tk pocket reference"
936
+ price:
937
+ manifestation_identifier:
938
+ depth:
939
+ date_of_publication:
940
+ access_address:
941
+ id: 149
942
+ height:
943
+ width:
944
+ created_at: 2009-06-19 01:10:56 UTC
945
+ manifestation_00150:
946
+ carrier_type_id: 1
947
+ language_id: 1
948
+ isbn: 0000000150
949
+ updated_at: 2010-03-01 16:14:18 +09:00
950
+ original_title: "politics of improving urban air quality"
951
+ price:
952
+ manifestation_identifier:
953
+ depth:
954
+ date_of_publication:
955
+ access_address:
956
+ id: 150
957
+ height:
958
+ width:
959
+ created_at: 2009-06-19 00:42:38 UTC
960
+ manifestation_00151:
961
+ carrier_type_id: 1
962
+ language_id: 1
963
+ isbn: 0000000151
964
+ updated_at: 2010-03-01 16:14:18 +09:00
965
+ original_title: "Perl developer's dictionary"
966
+ price:
967
+ manifestation_identifier:
968
+ depth:
969
+ date_of_publication:
970
+ access_address:
971
+ id: 151
972
+ height:
973
+ width:
974
+ created_at: 2009-06-19 00:13:13 UTC
975
+ manifestation_00152:
976
+ carrier_type_id: 1
977
+ language_id: 1
978
+ isbn: 0000000152
979
+ updated_at: 2010-03-01 16:14:18 +09:00
980
+ original_title: "Andrテδゥ Poitiers"
981
+ price:
982
+ manifestation_identifier:
983
+ depth:
984
+ date_of_publication:
985
+ access_address:
986
+ id: 152
987
+ height:
988
+ width:
989
+ created_at: 2009-06-18 23:58:14 UTC
990
+ manifestation_00153:
991
+ carrier_type_id: 1
992
+ language_id: 1
993
+ isbn: 0000000153
994
+ updated_at: 2010-03-01 16:14:18 +09:00
995
+ original_title: "PERL and CGI for the World Wide Web [electronic resource] / Visual QuickStart guide"
996
+ price:
997
+ manifestation_identifier:
998
+ depth:
999
+ date_of_publication:
1000
+ access_address:
1001
+ id: 153
1002
+ height:
1003
+ width:
1004
+ created_at: 2009-06-18 23:43:08 UTC
1005
+ manifestation_00154:
1006
+ carrier_type_id: 1
1007
+ language_id: 1
1008
+ isbn: 0000000154
1009
+ updated_at: 2010-03-01 16:14:18 +09:00
1010
+ original_title: "Python tutorial"
1011
+ price:
1012
+ manifestation_identifier:
1013
+ depth:
1014
+ date_of_publication:
1015
+ access_address:
1016
+ id: 154
1017
+ height:
1018
+ width:
1019
+ created_at: 2009-06-18 23:17:40 UTC
1020
+ manifestation_00155:
1021
+ carrier_type_id: 1
1022
+ language_id: 1
1023
+ isbn: 0000000155
1024
+ updated_at: 2010-03-01 16:14:18 +09:00
1025
+ original_title: "Line shapes of paramagnetic resonances in ruby"
1026
+ price:
1027
+ manifestation_identifier:
1028
+ depth:
1029
+ date_of_publication:
1030
+ access_address:
1031
+ id: 155
1032
+ height:
1033
+ width:
1034
+ created_at: 2009-06-18 22:44:00 UTC
1035
+ manifestation_00156:
1036
+ carrier_type_id: 1
1037
+ language_id: 1
1038
+ isbn: 0000000156
1039
+ updated_at: 2010-03-01 16:14:18 +09:00
1040
+ original_title: "Perl programmer's reference"
1041
+ price:
1042
+ manifestation_identifier:
1043
+ depth:
1044
+ date_of_publication:
1045
+ access_address:
1046
+ id: 156
1047
+ height:
1048
+ width:
1049
+ created_at: 2009-06-18 22:19:34 UTC
1050
+ manifestation_00157:
1051
+ carrier_type_id: 1
1052
+ language_id: 1
1053
+ isbn: 0000000157
1054
+ updated_at: 2010-03-01 16:14:18 +09:00
1055
+ original_title: "Technological capabilities in developing countries"
1056
+ price:
1057
+ manifestation_identifier:
1058
+ depth:
1059
+ date_of_publication:
1060
+ access_address:
1061
+ id: 157
1062
+ height:
1063
+ width:
1064
+ created_at: 2009-06-18 21:58:42 UTC
1065
+ manifestation_00158:
1066
+ carrier_type_id: 1
1067
+ language_id: 1
1068
+ isbn: 0000000158
1069
+ updated_at: 2010-03-01 16:14:18 +09:00
1070
+ original_title: "phenomena of vagueness"
1071
+ price:
1072
+ manifestation_identifier:
1073
+ depth:
1074
+ date_of_publication:
1075
+ access_address:
1076
+ id: 158
1077
+ height:
1078
+ width:
1079
+ created_at: 2009-06-18 21:44:38 UTC
1080
+ manifestation_00159:
1081
+ carrier_type_id: 1
1082
+ language_id: 1
1083
+ isbn: 0000000159
1084
+ updated_at: 2010-03-01 16:14:18 +09:00
1085
+ original_title: "theory of consumer's demand"
1086
+ price:
1087
+ manifestation_identifier:
1088
+ depth:
1089
+ date_of_publication:
1090
+ access_address:
1091
+ id: 159
1092
+ height:
1093
+ width:
1094
+ created_at: 2009-06-18 21:10:02 UTC
1095
+ manifestation_00160:
1096
+ carrier_type_id: 1
1097
+ language_id: 1
1098
+ isbn: 0000000160
1099
+ updated_at: 2010-03-01 16:14:18 +09:00
1100
+ original_title: "theory of consumer's demand"
1101
+ price:
1102
+ manifestation_identifier:
1103
+ depth:
1104
+ date_of_publication:
1105
+ access_address:
1106
+ id: 160
1107
+ height:
1108
+ width:
1109
+ created_at: 2009-06-18 21:10:01 UTC
1110
+ manifestation_00161:
1111
+ carrier_type_id: 1
1112
+ language_id: 1
1113
+ isbn: 0000000161
1114
+ updated_at: 2010-03-01 16:14:18 +09:00
1115
+ original_title: "Monty Python, Shakespeare, and English Renaissance drama"
1116
+ price:
1117
+ manifestation_identifier:
1118
+ depth:
1119
+ date_of_publication:
1120
+ access_address:
1121
+ id: 161
1122
+ height:
1123
+ width:
1124
+ created_at: 2009-06-18 20:37:58 UTC
1125
+ manifestation_00162:
1126
+ carrier_type_id: 1
1127
+ language_id: 1
1128
+ isbn: 0000000162
1129
+ updated_at: 2010-03-01 16:14:18 +09:00
1130
+ original_title: "Analyzing computer system performance with PERL::PDQ"
1131
+ price:
1132
+ manifestation_identifier:
1133
+ depth:
1134
+ date_of_publication:
1135
+ access_address:
1136
+ id: 162
1137
+ height:
1138
+ width:
1139
+ created_at: 2009-06-18 20:29:54 UTC
1140
+ manifestation_00163:
1141
+ carrier_type_id: 1
1142
+ language_id: 1
1143
+ isbn: 0000000163
1144
+ updated_at: 2010-03-01 16:14:18 +09:00
1145
+ original_title: "equilibrium of the reaction between the manganate, permanganate, and hydroxide of potassium, and manganese dioxide"
1146
+ price:
1147
+ manifestation_identifier:
1148
+ depth:
1149
+ date_of_publication:
1150
+ access_address:
1151
+ id: 163
1152
+ height:
1153
+ width:
1154
+ created_at: 2009-06-18 20:16:44 UTC
1155
+ manifestation_00164:
1156
+ carrier_type_id: 1
1157
+ language_id: 1
1158
+ isbn: 0000000164
1159
+ updated_at: 2010-03-01 16:14:18 +09:00
1160
+ original_title: "Stimulated optical emission in ruby"
1161
+ price:
1162
+ manifestation_identifier:
1163
+ depth:
1164
+ date_of_publication:
1165
+ access_address:
1166
+ id: 164
1167
+ height:
1168
+ width:
1169
+ created_at: 2009-06-18 20:05:25 UTC
1170
+ manifestation_00165:
1171
+ carrier_type_id: 1
1172
+ language_id: 1
1173
+ isbn: 0000000165
1174
+ updated_at: 2010-03-01 16:14:18 +09:00
1175
+ original_title: "Strategic planning and risk analysis"
1176
+ price:
1177
+ manifestation_identifier:
1178
+ depth:
1179
+ date_of_publication:
1180
+ access_address:
1181
+ id: 165
1182
+ height:
1183
+ width:
1184
+ created_at: 2009-06-18 17:41:41 UTC
1185
+ manifestation_00166:
1186
+ carrier_type_id: 1
1187
+ language_id: 1
1188
+ isbn: 0000000166
1189
+ updated_at: 2010-03-01 16:14:18 +09:00
1190
+ original_title: "Performance assertion checking"
1191
+ price:
1192
+ manifestation_identifier:
1193
+ depth:
1194
+ date_of_publication:
1195
+ access_address:
1196
+ id: 166
1197
+ height:
1198
+ width:
1199
+ created_at: 2009-06-18 17:34:03 UTC
1200
+ manifestation_00167:
1201
+ carrier_type_id: 1
1202
+ language_id: 1
1203
+ isbn: 0000000167
1204
+ updated_at: 2010-03-01 16:14:18 +09:00
1205
+ original_title: "Spin-lattice relaxation time of ruby"
1206
+ price:
1207
+ manifestation_identifier:
1208
+ depth:
1209
+ date_of_publication:
1210
+ access_address:
1211
+ id: 167
1212
+ height:
1213
+ width:
1214
+ created_at: 2009-06-18 16:26:38 UTC
1215
+ manifestation_00168:
1216
+ carrier_type_id: 1
1217
+ language_id: 1
1218
+ isbn: 0000000168
1219
+ updated_at: 2010-03-01 16:14:18 +09:00
1220
+ original_title: "Mourning Ruby"
1221
+ price:
1222
+ manifestation_identifier:
1223
+ depth:
1224
+ date_of_publication:
1225
+ access_address:
1226
+ id: 168
1227
+ height:
1228
+ width:
1229
+ created_at: 2009-06-18 16:25:25 UTC
1230
+ manifestation_00169:
1231
+ carrier_type_id: 1
1232
+ language_id: 1
1233
+ isbn: 0000000169
1234
+ updated_at: 2010-03-01 16:14:18 +09:00
1235
+ original_title: "statistical analysis of banking performance in the Eastern Caribbean Currency Union in the 1990s"
1236
+ price:
1237
+ manifestation_identifier:
1238
+ depth:
1239
+ date_of_publication:
1240
+ access_address:
1241
+ id: 169
1242
+ height:
1243
+ width:
1244
+ created_at: 2009-06-18 15:53:44 UTC
1245
+ manifestation_00170:
1246
+ carrier_type_id: 1
1247
+ language_id: 1
1248
+ isbn: 0000000170
1249
+ updated_at: 2010-03-01 16:14:18 +09:00
1250
+ original_title: "Professional Perl programming / Perl programming"
1251
+ price:
1252
+ manifestation_identifier:
1253
+ depth:
1254
+ date_of_publication:
1255
+ access_address:
1256
+ id: 170
1257
+ height:
1258
+ width:
1259
+ created_at: 2009-06-18 15:52:50 UTC
1260
+ manifestation_00171:
1261
+ carrier_type_id: 1
1262
+ language_id: 1
1263
+ isbn: 0000000171
1264
+ updated_at: 2010-03-01 16:14:18 +09:00
1265
+ original_title: "Perl in a nutshell"
1266
+ price:
1267
+ manifestation_identifier:
1268
+ depth:
1269
+ date_of_publication:
1270
+ access_address:
1271
+ id: 171
1272
+ height:
1273
+ width:
1274
+ created_at: 2009-06-18 15:40:53 UTC
1275
+ manifestation_00172:
1276
+ carrier_type_id: 1
1277
+ language_id: 1
1278
+ isbn: 0000000172
1279
+ updated_at: 2010-03-01 16:14:18 +09:00
1280
+ original_title: "Programming Web services with Perl"
1281
+ price:
1282
+ manifestation_identifier:
1283
+ depth:
1284
+ date_of_publication:
1285
+ access_address:
1286
+ id: 172
1287
+ height:
1288
+ width:
1289
+ created_at: 2009-06-18 15:34:21 UTC
1290
+ manifestation_00173:
1291
+ carrier_type_id: 1
1292
+ language_id: 1
1293
+ isbn: 0000000173
1294
+ updated_at: 2010-03-01 16:14:18 +09:00
1295
+ original_title: "Proceedings of the Trieste Workshop on the search for New Elementary Particles / International journal of modern physics / Search for new elementary particles"
1296
+ price:
1297
+ manifestation_identifier:
1298
+ depth:
1299
+ date_of_publication:
1300
+ access_address:
1301
+ id: 173
1302
+ height:
1303
+ width:
1304
+ created_at: 2009-06-18 15:08:06 UTC
1305
+ manifestation_00174:
1306
+ carrier_type_id: 1
1307
+ language_id: 1
1308
+ isbn: 0000000174
1309
+ updated_at: 2010-03-01 16:14:18 +09:00
1310
+ original_title: "Europeras 3 & 4 / Europera"
1311
+ price:
1312
+ manifestation_identifier:
1313
+ depth:
1314
+ date_of_publication:
1315
+ access_address:
1316
+ id: 174
1317
+ height:
1318
+ width:
1319
+ created_at: 2009-06-18 15:05:43 UTC
1320
+ manifestation_00175:
1321
+ carrier_type_id: 1
1322
+ language_id: 1
1323
+ isbn: 0000000175
1324
+ updated_at: 2010-03-01 16:14:18 +09:00
1325
+ original_title: "Retreats from realism in recent English drama"
1326
+ price:
1327
+ manifestation_identifier:
1328
+ depth:
1329
+ date_of_publication:
1330
+ access_address:
1331
+ id: 175
1332
+ height:
1333
+ width:
1334
+ created_at: 2009-06-18 15:03:06 UTC
1335
+ manifestation_00176:
1336
+ carrier_type_id: 1
1337
+ language_id: 1
1338
+ isbn: 0000000176
1339
+ updated_at: 2010-03-01 16:14:18 +09:00
1340
+ original_title: "Python programming patterns"
1341
+ price:
1342
+ manifestation_identifier:
1343
+ depth:
1344
+ date_of_publication:
1345
+ access_address:
1346
+ id: 176
1347
+ height:
1348
+ width:
1349
+ created_at: 2009-06-18 14:52:11 UTC
1350
+ manifestation_00177:
1351
+ carrier_type_id: 1
1352
+ language_id: 1
1353
+ isbn: 0000000177
1354
+ updated_at: 2010-03-01 16:14:18 +09:00
1355
+ original_title: "Beginning Perl for bioinformatics"
1356
+ price:
1357
+ manifestation_identifier:
1358
+ depth:
1359
+ date_of_publication:
1360
+ access_address:
1361
+ id: 177
1362
+ height:
1363
+ width:
1364
+ created_at: 2009-06-18 13:45:13 UTC
1365
+ manifestation_00178:
1366
+ carrier_type_id: 1
1367
+ language_id: 1
1368
+ isbn: 0000000178
1369
+ updated_at: 2010-03-01 16:14:18 +09:00
1370
+ original_title: "Learning Perl"
1371
+ price:
1372
+ manifestation_identifier:
1373
+ depth:
1374
+ date_of_publication:
1375
+ access_address:
1376
+ id: 178
1377
+ height:
1378
+ width:
1379
+ created_at: 2009-06-18 13:45:11 UTC
1380
+ manifestation_00179:
1381
+ carrier_type_id: 1
1382
+ language_id: 1
1383
+ isbn: 0000000179
1384
+ updated_at: 2010-03-01 16:14:18 +09:00
1385
+ original_title: "Effective awk programming"
1386
+ price:
1387
+ manifestation_identifier:
1388
+ depth:
1389
+ date_of_publication:
1390
+ access_address:
1391
+ id: 179
1392
+ height:
1393
+ width:
1394
+ created_at: 2009-06-18 13:45:09 UTC
1395
+ manifestation_00180:
1396
+ carrier_type_id: 1
1397
+ language_id: 1
1398
+ isbn: 0000000180
1399
+ updated_at: 2010-03-01 16:14:18 +09:00
1400
+ original_title: "Python standard library / Annotated reference for Python 2.0"
1401
+ price:
1402
+ manifestation_identifier:
1403
+ depth:
1404
+ date_of_publication:
1405
+ access_address:
1406
+ id: 180
1407
+ height:
1408
+ width:
1409
+ created_at: 2009-06-18 13:45:04 UTC
1410
+ manifestation_00181:
1411
+ carrier_type_id: 1
1412
+ language_id: 1
1413
+ isbn: 0000000181
1414
+ updated_at: 2010-03-01 16:14:18 +09:00
1415
+ original_title: "Programming Python"
1416
+ price:
1417
+ manifestation_identifier:
1418
+ depth:
1419
+ date_of_publication:
1420
+ access_address:
1421
+ id: 181
1422
+ height:
1423
+ width:
1424
+ created_at: 2009-06-18 13:45:04 UTC
1425
+ manifestation_00182:
1426
+ carrier_type_id: 1
1427
+ language_id: 1
1428
+ isbn: 0000000182
1429
+ updated_at: 2010-03-01 16:14:18 +09:00
1430
+ original_title: "Perl CD bookshelf"
1431
+ price:
1432
+ manifestation_identifier:
1433
+ depth:
1434
+ date_of_publication:
1435
+ access_address:
1436
+ id: 182
1437
+ height:
1438
+ width:
1439
+ created_at: 2009-06-18 13:44:56 UTC
1440
+ manifestation_00183:
1441
+ carrier_type_id: 1
1442
+ language_id: 1
1443
+ isbn: 0000000183
1444
+ updated_at: 2010-03-01 16:14:18 +09:00
1445
+ original_title: "Programming Perl"
1446
+ price:
1447
+ manifestation_identifier:
1448
+ depth:
1449
+ date_of_publication:
1450
+ access_address:
1451
+ id: 183
1452
+ height:
1453
+ width:
1454
+ created_at: 2009-06-18 13:44:55 UTC
1455
+ manifestation_00184:
1456
+ carrier_type_id: 1
1457
+ language_id: 1
1458
+ isbn: 0000000184
1459
+ updated_at: 2010-03-01 16:14:18 +09:00
1460
+ original_title: "Sed & awk pocket reference / Sed and awk pocket reference"
1461
+ price:
1462
+ manifestation_identifier:
1463
+ depth:
1464
+ date_of_publication:
1465
+ access_address:
1466
+ id: 184
1467
+ height:
1468
+ width:
1469
+ created_at: 2009-06-18 13:44:54 UTC
1470
+ manifestation_00185:
1471
+ carrier_type_id: 1
1472
+ language_id: 1
1473
+ isbn: 0000000185
1474
+ updated_at: 2010-03-01 16:14:18 +09:00
1475
+ original_title: "Perl power!"
1476
+ price:
1477
+ manifestation_identifier:
1478
+ depth:
1479
+ date_of_publication:
1480
+ access_address:
1481
+ id: 185
1482
+ height:
1483
+ width:
1484
+ created_at: 2009-06-18 13:41:37 UTC
1485
+ manifestation_00186:
1486
+ carrier_type_id: 1
1487
+ language_id: 1
1488
+ isbn: 0000000186
1489
+ updated_at: 2010-03-01 16:14:18 +09:00
1490
+ original_title: "ATOKダイレクト API for Perl / Ruby?|?さらに使いこなす?|?ATOK.com"
1491
+ price:
1492
+ manifestation_identifier:
1493
+ depth:
1494
+ date_of_publication:
1495
+ access_address:
1496
+ id: 186
1497
+ height:
1498
+ width:
1499
+ created_at: 2008-12-19 17:52:47 UTC
1500
+ manifestation_00187:
1501
+ carrier_type_id: 1
1502
+ language_id: 1
1503
+ isbn: 0000000187
1504
+ updated_at: 2010-03-01 16:14:18 +09:00
1505
+ original_title: "Welcome ― Ruby Enterprise Edition"
1506
+ price:
1507
+ manifestation_identifier:
1508
+ depth:
1509
+ date_of_publication:
1510
+ access_address:
1511
+ id: 187
1512
+ height:
1513
+ width:
1514
+ created_at: 2008-10-19 15:58:50 UTC
1515
+ manifestation_00188:
1516
+ carrier_type_id: 1
1517
+ language_id: 1
1518
+ isbn: 0000000188
1519
+ updated_at: 2010-03-01 16:14:18 +09:00
1520
+ original_title: "Pythonクックブック"
1521
+ price:
1522
+ manifestation_identifier:
1523
+ depth:
1524
+ date_of_publication:
1525
+ access_address:
1526
+ id: 188
1527
+ height:
1528
+ width:
1529
+ created_at: 2008-08-22 00:27:29 UTC
1530
+ manifestation_00189:
1531
+ carrier_type_id: 1
1532
+ language_id: 1
1533
+ isbn: 0000000189
1534
+ updated_at: 2010-03-01 16:14:18 +09:00
1535
+ original_title: "みんなのPython インデントの世界へようこそ! object oriented-lightweight language Python"
1536
+ price:
1537
+ manifestation_identifier:
1538
+ depth:
1539
+ date_of_publication:
1540
+ access_address:
1541
+ id: 189
1542
+ height:
1543
+ width:
1544
+ created_at: 2008-08-22 00:20:59 UTC
1545
+ manifestation_00190:
1546
+ carrier_type_id: 1
1547
+ language_id: 1
1548
+ isbn: 0000000190
1549
+ updated_at: 2010-03-01 16:14:18 +09:00
1550
+ original_title: "Django | The Web framework for perfectionists with deadlines"
1551
+ price:
1552
+ manifestation_identifier:
1553
+ depth:
1554
+ date_of_publication:
1555
+ access_address:
1556
+ id: 190
1557
+ height:
1558
+ width:
1559
+ created_at: 2008-05-20 13:06:31 UTC
1560
+ manifestation_00191:
1561
+ carrier_type_id: 1
1562
+ language_id: 1
1563
+ isbn: 0000000191
1564
+ updated_at: 2010-03-01 16:14:18 +09:00
1565
+ original_title: "fac-back-opac - Google Code"
1566
+ price:
1567
+ manifestation_identifier:
1568
+ depth:
1569
+ date_of_publication:
1570
+ access_address:
1571
+ id: 191
1572
+ height:
1573
+ width:
1574
+ created_at: 2008-05-19 22:36:11 UTC
1575
+ manifestation_00192:
1576
+ carrier_type_id: 1
1577
+ language_id: 1
1578
+ isbn: 9784873113241
1579
+ updated_at: 2010-03-01 16:14:18 +09:00
1580
+ original_title: "Rubyクックブック"
1581
+ price:
1582
+ manifestation_identifier:
1583
+ depth:
1584
+ pub_date: 2007-04-27
1585
+ access_address:
1586
+ id: 192
1587
+ height:
1588
+ width:
1589
+ created_at: 2008-03-05 01:37:55 UTC
1590
+ manifestation_00193:
1591
+ carrier_type_id: 1
1592
+ language_id: 1
1593
+ isbn: 9784797340044
1594
+ isbn10: 4797340045
1595
+ updated_at: 2010-03-01 16:14:18 +09:00
1596
+ original_title: "Rubyレシピブック"
1597
+ price:
1598
+ manifestation_identifier:
1599
+ depth:
1600
+ pub_date: 2007-02-01
1601
+ access_address:
1602
+ id: 193
1603
+ height:
1604
+ width:
1605
+ created_at: 2008-03-05 01:30:39 UTC
1606
+ manifestation_00194:
1607
+ carrier_type_id: 1
1608
+ language_id: 1
1609
+ isbn: 0000000194
1610
+ updated_at: 2010-03-01 16:14:18 +09:00
1611
+ original_title: "初めてのPerl 第3版"
1612
+ price:
1613
+ manifestation_identifier:
1614
+ depth:
1615
+ date_of_publication:
1616
+ access_address:
1617
+ id: 194
1618
+ height:
1619
+ width:
1620
+ created_at: 2007-11-19 17:56:37 UTC
1621
+ manifestation_00195:
1622
+ carrier_type_id: 1
1623
+ language_id: 1
1624
+ isbn: 0000000195
1625
+ updated_at: 2010-03-01 16:14:18 +09:00
1626
+ original_title: "続・初めてのPerl 改訂版"
1627
+ price:
1628
+ manifestation_identifier:
1629
+ depth:
1630
+ date_of_publication:
1631
+ access_address:
1632
+ id: 195
1633
+ height:
1634
+ width:
1635
+ created_at: 2007-11-19 17:55:42 UTC
1636
+ manifestation_00196:
1637
+ carrier_type_id: 1
1638
+ language_id: 1
1639
+ isbn: 9784797336610
1640
+ updated_at: 2010-03-01 16:14:18 +09:00
1641
+ original_title: "たのしいRuby 第2版 Rubyではじめる気軽なプログラミング"
1642
+ price:
1643
+ manifestation_identifier:
1644
+ depth:
1645
+ pub_date: 2006-08-05
1646
+ access_address:
1647
+ id: 196
1648
+ height:
1649
+ width:
1650
+ created_at: 2007-11-19 17:55:41 UTC
1651
+ manifestation_00197:
1652
+ carrier_type_id: 1
1653
+ language_id: 1
1654
+ isbn:
1655
+ updated_at: 2010-03-15 16:14:18 +09:00
1656
+ original_title: "Ruby"
1657
+ price:
1658
+ manifestation_identifier:
1659
+ depth:
1660
+ date_of_publication:
1661
+ access_address:
1662
+ id: 197
1663
+ height:
1664
+ width:
1665
+ created_at: 2007-11-19 17:55:41 UTC
1666
+ manifestation_00198:
1667
+ carrier_type_id: 1
1668
+ language_id: 1
1669
+ isbn:
1670
+ updated_at: 2010-03-15 16:14:18 +09:00
1671
+ original_title: "紅玉の本"
1672
+ price:
1673
+ manifestation_identifier:
1674
+ depth:
1675
+ date_of_publication:
1676
+ access_address:
1677
+ id: 198
1678
+ height:
1679
+ width:
1680
+ created_at: 2007-11-19 17:55:41 UTC
1681
+ manifestation_00201:
1682
+ carrier_type_id: 1
1683
+ language_id: 1
1684
+ isbn: 9876543210201
1685
+ updated_at: 2010-03-01 16:14:18 +09:00
1686
+ original_title: "テスト雑誌2005年1月号"
1687
+ price:
1688
+ manifestation_identifier:
1689
+ depth:
1690
+ date_of_publication:
1691
+ access_address:
1692
+ id: 201
1693
+ height:
1694
+ width:
1695
+ created_at: 2007-11-19 17:55:41 UTC
1696
+ frequency_id: 3
1697
+ issn: 09130000
1698
+ manifestation_00202:
1699
+ carrier_type_id: 1
1700
+ language_id: 1
1701
+ isbn: 9876543210202
1702
+ updated_at: 2010-03-01 16:14:18 +09:00
1703
+ original_title: "テスト雑誌2月号"
1704
+ price:
1705
+ manifestation_identifier:
1706
+ depth:
1707
+ date_of_publication:
1708
+ access_address:
1709
+ id: 202
1710
+ height:
1711
+ width:
1712
+ created_at: 2007-11-19 17:55:41 UTC
1713
+ frequency_id: 3
1714
+ issn: 12345678
1715
+ serial_number: 2
1716
+ volume_number: 1
1717
+ issue_number: 2
1718
+ manifestation_00203:
1719
+ carrier_type_id: 1
1720
+ language_id: 1
1721
+ isbn: 9876543210203
1722
+ updated_at: 2010-03-01 16:14:18 +09:00
1723
+ original_title: "テスト単行本記事2005"
1724
+ price:
1725
+ manifestation_identifier:
1726
+ depth:
1727
+ date_of_publication:
1728
+ access_address:
1729
+ id: 203
1730
+ height:
1731
+ width:
1732
+ created_at: 2010-03-03 17:00:00 UTC
1733
+ frequency_id: 1
1734
+ manifestation_00204:
1735
+ carrier_type_id: 1
1736
+ language_id: 1
1737
+ isbn: 5555567890001
1738
+ updated_at: 2010-03-03 20:00:00 +09:00
1739
+ original_title: "テスト雑誌1月号の記事1"
1740
+ price:
1741
+ manifestation_identifier:
1742
+ depth:
1743
+ date_of_publication:
1744
+ access_address:
1745
+ id: 204
1746
+ height:
1747
+ width:
1748
+ created_at: 2010-03-03 20:00:00 UTC
1749
+ manifestation_00205:
1750
+ carrier_type_id: 1
1751
+ language_id: 1
1752
+ isbn: 5555567890002
1753
+ updated_at: 2010-03-03 20:00:00 +09:00
1754
+ original_title: "テスト雑誌1月号の記事2"
1755
+ price:
1756
+ manifestation_identifier:
1757
+ depth:
1758
+ date_of_publication: 2000-01-01 00:00:00 +09:00
1759
+ access_address:
1760
+ id: 205
1761
+ height:
1762
+ width:
1763
+ created_at: 2010-03-03 20:00:00 UTC
1764
+ manifestation_00206:
1765
+ carrier_type_id: 1
1766
+ language_id: 1
1767
+ isbn: 5555567890003
1768
+ updated_at: 2010-03-03 20:00:00 +09:00
1769
+ original_title: "テスト雑誌2月号の記事1"
1770
+ price:
1771
+ manifestation_identifier:
1772
+ depth:
1773
+ date_of_publication: 2010-01-01 00:00:00 +09:00
1774
+ access_address:
1775
+ id: 206
1776
+ height:
1777
+ width:
1778
+ created_at: 2010-03-03 20:00:00 UTC
1779
+ manifestation_00207:
1780
+ carrier_type_id: 1
1781
+ language_id: 1
1782
+ isbn: 9876543210207
1783
+ updated_at: 2010-03-03 20:00:00 +09:00
1784
+ original_title: "試験単行本"
1785
+ price:
1786
+ manifestation_identifier:
1787
+ depth:
1788
+ date_of_publication:
1789
+ access_address:
1790
+ id: 207
1791
+ height:
1792
+ width:
1793
+ created_at: 2010-03-03 20:00:00 UTC
1794
+ manifestation_00208:
1795
+ carrier_type_id: 1
1796
+ language_id: 1
1797
+ isbn:
1798
+ updated_at: 2010-03-16 11:00:00 +09:00
1799
+ original_title: "ある出版物"
1800
+ price:
1801
+ manifestation_identifier:
1802
+ depth:
1803
+ date_of_publication:
1804
+ access_address:
1805
+ id: 208
1806
+ height:
1807
+ width:
1808
+ created_at: 2010-03-16 11:00:00 UTC
1809
+ manifestation_00209:
1810
+ carrier_type_id: 1
1811
+ language_id: 1
1812
+ isbn:
1813
+ updated_at: 2010-03-19 13:00:00 +09:00
1814
+ original_title: "権限確認Admin専用1"
1815
+ price:
1816
+ manifestation_identifier:
1817
+ depth:
1818
+ date_of_publication:
1819
+ access_address:
1820
+ id: 209
1821
+ height:
1822
+ width:
1823
+ created_at: 2010-03-19 13:00:00 UTC
1824
+ required_role_id: 4
1825
+ manifestation_00210:
1826
+ carrier_type_id: 1
1827
+ language_id: 1
1828
+ isbn:
1829
+ updated_at: 2010-03-19 13:00:00 +09:00
1830
+ original_title: "権限確認Admin専用2"
1831
+ price:
1832
+ manifestation_identifier:
1833
+ depth:
1834
+ date_of_publication:
1835
+ access_address:
1836
+ id: 210
1837
+ height:
1838
+ width:
1839
+ created_at: 2010-03-19 13:00:00 UTC
1840
+ required_role_id: 4
1841
+ repository_content: true
1842
+ manifestation_00211:
1843
+ carrier_type_id: 1
1844
+ language_id: 1
1845
+ isbn:
1846
+ updated_at: 2010-03-19 13:00:00 +09:00
1847
+ original_title: "権限確認Librarian以上用1"
1848
+ price:
1849
+ manifestation_identifier:
1850
+ depth:
1851
+ date_of_publication:
1852
+ access_address:
1853
+ id: 211
1854
+ height:
1855
+ width:
1856
+ created_at: 2010-03-19 13:00:00 UTC
1857
+ required_role_id: 3
1858
+ repository_content: true
1859
+ manifestation_00212:
1860
+ carrier_type_id: 1
1861
+ language_id: 1
1862
+ isbn:
1863
+ updated_at: 2010-03-19 13:00:00 +09:00
1864
+ original_title: "権限確認Librarian以上用2"
1865
+ price:
1866
+ manifestation_identifier:
1867
+ depth:
1868
+ date_of_publication:
1869
+ access_address:
1870
+ id: 212
1871
+ height:
1872
+ width:
1873
+ created_at: 2010-03-19 13:00:00 UTC
1874
+ required_role_id: 3
1875
+ repository_content: true
1876
+ manifestation_00213:
1877
+ carrier_type_id: 1
1878
+ language_id: 1
1879
+ isbn:
1880
+ updated_at: 2010-03-19 13:00:00 +09:00
1881
+ original_title: "権限確認User以上用1"
1882
+ price:
1883
+ manifestation_identifier:
1884
+ depth:
1885
+ date_of_publication:
1886
+ access_address:
1887
+ id: 213
1888
+ height:
1889
+ width:
1890
+ created_at: 2010-03-19 13:00:00 UTC
1891
+ required_role_id: 2
1892
+ repository_content: true
1893
+ manifestation_00214:
1894
+ carrier_type_id: 1
1895
+ language_id: 1
1896
+ isbn:
1897
+ updated_at: 2010-03-19 13:00:00 +09:00
1898
+ original_title: "権限確認User以上用2"
1899
+ price:
1900
+ manifestation_identifier:
1901
+ depth:
1902
+ date_of_publication:
1903
+ access_address:
1904
+ id: 214
1905
+ height:
1906
+ width:
1907
+ created_at: 2010-03-19 13:00:00 UTC
1908
+ required_role_id: 2
1909
+ repository_content: false
1910
+ manifestation_00215:
1911
+ carrier_type_id: 1
1912
+ language_id: 1
1913
+ isbn:
1914
+ updated_at: 2010-03-19 13:00:00 +09:00
1915
+ original_title: "権限確認"
1916
+ price:
1917
+ manifestation_identifier:
1918
+ depth:
1919
+ date_of_publication:
1920
+ access_address:
1921
+ id: 215
1922
+ height:
1923
+ width:
1924
+ created_at: 2010-03-19 13:00:00 UTC
1925
+ required_role_id: 1
1926
+ repository_content: true
1927
+ manifestation_00216:
1928
+ carrier_type_id: 1
1929
+ language_id: 1
1930
+ isbn:
1931
+ updated_at: 2010-03-19 13:00:00 +09:00
1932
+ original_title: "権限確認"
1933
+ price:
1934
+ manifestation_identifier:
1935
+ depth:
1936
+ date_of_publication:
1937
+ access_address:
1938
+ id: 216
1939
+ height:
1940
+ width:
1941
+ created_at: 2010-03-19 13:00:00 UTC
1942
+ required_role_id: 1
1943
+ repository_content: false
1944
+
1945
+
1946
+
1947
+
1948
+
1949
+
1950
+
1951
+
1952
+ # == Schema Information
1953
+ #
1954
+ # Table name: manifestations
1955
+ #
1956
+ # id :integer not null, primary key
1957
+ # original_title :text not null
1958
+ # title_alternative :text
1959
+ # title_transcription :text
1960
+ # classification_number :string(255)
1961
+ # manifestation_identifier :string(255)
1962
+ # date_of_publication :datetime
1963
+ # date_copyrighted :datetime
1964
+ # created_at :datetime not null
1965
+ # updated_at :datetime not null
1966
+ # deleted_at :datetime
1967
+ # access_address :string(255)
1968
+ # language_id :integer default(1), not null
1969
+ # carrier_type_id :integer default(1), not null
1970
+ # extent_id :integer default(1), not null
1971
+ # start_page :integer
1972
+ # end_page :integer
1973
+ # height :integer
1974
+ # width :integer
1975
+ # depth :integer
1976
+ # isbn :string(255)
1977
+ # isbn10 :string(255)
1978
+ # wrong_isbn :string(255)
1979
+ # nbn :string(255)
1980
+ # lccn :string(255)
1981
+ # oclc_number :string(255)
1982
+ # issn :string(255)
1983
+ # price :integer
1984
+ # fulltext :text
1985
+ # volume_number_string :string(255)
1986
+ # issue_number_string :string(255)
1987
+ # serial_number_string :string(255)
1988
+ # edition :integer
1989
+ # note :text
1990
+ # repository_content :boolean default(FALSE), not null
1991
+ # lock_version :integer default(0), not null
1992
+ # required_role_id :integer default(1), not null
1993
+ # state :string(255)
1994
+ # required_score :integer default(0), not null
1995
+ # frequency_id :integer default(1), not null
1996
+ # subscription_master :boolean default(FALSE), not null
1997
+ # attachment_file_name :string(255)
1998
+ # attachment_content_type :string(255)
1999
+ # attachment_file_size :integer
2000
+ # attachment_updated_at :datetime
2001
+ # title_alternative_transcription :text
2002
+ # description :text
2003
+ # abstract :text
2004
+ # available_at :datetime
2005
+ # valid_until :datetime
2006
+ # date_submitted :datetime
2007
+ # date_accepted :datetime
2008
+ # date_caputured :datetime
2009
+ # ndl_bib_id :string(255)
2010
+ # pub_date :string(255)
2011
+ # edition_string :string(255)
2012
+ # volume_number :integer
2013
+ # issue_number :integer
2014
+ # serial_number :integer
2015
+ # ndc :string(255)
2016
+ # content_type_id :integer default(1)
2017
+ # year_of_publication :integer
2018
+ # attachment_fingerprint :string(255)
2019
+ # attachment_meta :text
2020
+ # month_of_publication :integer
2021
+ #
2022
+