enju_leaf 1.1.0.rc12 → 1.1.0.rc13
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/app/assets/stylesheets/enju.css +0 -1
- data/app/controllers/my_accounts_controller.rb +26 -18
- data/app/controllers/page_controller.rb +6 -6
- data/app/controllers/profiles_controller.rb +155 -0
- data/app/controllers/roles_controller.rb +5 -5
- data/app/controllers/user_export_files_controller.rb +100 -0
- data/app/controllers/user_groups_controller.rb +11 -11
- data/app/controllers/user_import_files_controller.rb +22 -11
- data/app/controllers/user_import_results_controller.rb +1 -1
- data/app/mailers/notifier.rb +7 -7
- data/app/models/enju_leaf/ability.rb +14 -13
- data/app/models/profile.rb +63 -16
- data/app/models/role.rb +2 -2
- data/app/models/user_export_file.rb +52 -0
- data/app/models/user_export_file_state_machine.rb +15 -0
- data/app/models/user_export_file_transition.rb +20 -0
- data/app/models/user_group.rb +3 -3
- data/app/models/user_has_role.rb +2 -2
- data/app/models/user_import_file.rb +139 -53
- data/app/views/kaminari/_first_page.html.erb +1 -1
- data/app/views/kaminari/_last_page.html.erb +1 -1
- data/app/views/kaminari/_next_page.html.erb +1 -1
- data/app/views/kaminari/_page.html.erb +1 -1
- data/app/views/kaminari/_prev_page.html.erb +1 -1
- data/app/views/kaminari/enju_leaf_mobile/_next_page.html.erb +1 -1
- data/app/views/kaminari/enju_leaf_mobile/_page.html.erb +1 -1
- data/app/views/kaminari/enju_leaf_mobile/_prev_page.html.erb +1 -1
- data/app/views/layouts/application.html.erb +4 -4
- data/app/views/my_accounts/_edit_credential.html.erb +67 -59
- data/app/views/my_accounts/edit.html.erb +6 -46
- data/app/views/my_accounts/show.html.erb +8 -8
- data/app/views/page/_add.html.erb +2 -2
- data/app/views/page/_footer.html.erb +3 -2
- data/app/views/page/_footer.mobile.erb +1 -1
- data/app/views/page/_header.html.erb +4 -4
- data/app/views/page/_include.html.erb +1 -1
- data/app/views/page/_index.html.erb +8 -8
- data/app/views/page/_index.mobile.erb +4 -4
- data/app/views/page/_menu.html.erb +9 -6
- data/app/views/page/_msie_acceralator.html.erb +1 -1
- data/app/views/page/_position.html.erb +2 -2
- data/app/views/page/_search_form.html.erb +2 -2
- data/app/views/page/_search_form.mobile.erb +2 -2
- data/app/views/page/_select_locale.html.erb +2 -2
- data/app/views/page/about.en.html.erb +2 -2
- data/app/views/page/about.ja.html.erb +2 -2
- data/app/views/page/advanced_search.html.erb +8 -8
- data/app/views/page/configuration.html.erb +5 -3
- data/app/views/page/export.html.erb +7 -17
- data/app/views/page/import.html.erb +1 -4
- data/app/views/page/index.html.erb +2 -2
- data/app/views/page/msie_acceralator.builder +1 -1
- data/app/views/page/opensearch.builder +2 -2
- data/app/views/profiles/_edit_credential.html.erb +78 -0
- data/app/views/profiles/_edit_profile.html.erb +42 -0
- data/app/views/{users → profiles}/_form.html.erb +0 -0
- data/app/views/{users → profiles}/_show.html.erb +0 -0
- data/app/views/profiles/edit.html.erb +36 -0
- data/app/views/profiles/index.html.erb +61 -0
- data/app/views/{users → profiles}/new.html.erb +34 -36
- data/app/views/{users → profiles}/show.html.erb +24 -22
- data/app/views/{users → profiles}/show.mobile.erb +0 -0
- data/app/views/roles/_form.html.erb +1 -1
- data/app/views/roles/edit.html.erb +1 -1
- data/app/views/roles/index.html.erb +2 -2
- data/app/views/roles/new.html.erb +1 -1
- data/app/views/roles/show.html.erb +1 -1
- data/app/views/user_export_files/_form.html.erb +22 -0
- data/app/views/user_export_files/edit.html.erb +6 -0
- data/app/views/user_export_files/index.html.erb +44 -0
- data/app/views/user_export_files/new.html.erb +16 -0
- data/app/views/user_export_files/show.html.erb +31 -0
- data/app/views/user_groups/_form.html.erb +5 -5
- data/app/views/user_groups/edit.html.erb +1 -1
- data/app/views/user_groups/index.html.erb +14 -8
- data/app/views/user_groups/new.html.erb +1 -1
- data/app/views/user_groups/show.html.erb +3 -3
- data/app/views/user_import_files/index.html.erb +11 -10
- data/app/views/user_import_files/new.html.erb +15 -3
- data/app/views/user_import_files/show.html.erb +13 -3
- data/app/views/user_import_results/index.html.erb +7 -7
- data/app/views/user_import_results/{index.tsv.erb → index.txt.erb} +1 -1
- data/app/views/user_import_results/show.html.erb +2 -2
- data/app/workers/user_export_file_queue.rb +7 -0
- data/config/initializers/mime_types.rb +1 -1
- data/config/locales/devise.en.yml +19 -18
- data/config/locales/devise.ja.yml +45 -42
- data/config/locales/en.yml +214 -0
- data/config/locales/ja.yml +10 -6
- data/config/locales/translation_en.yml +34 -5
- data/config/locales/translation_ja.yml +35 -6
- data/config/routes.rb +4 -7
- data/db/migrate/20130221154434_add_additional_attributes_to_user.rb +0 -9
- data/db/migrate/20140122054321_create_profiles.rb +1 -1
- data/db/migrate/20140709113413_create_user_export_files.rb +11 -0
- data/db/migrate/20140709113905_create_user_export_file_transitions.rb +14 -0
- data/db/migrate/20140720170714_add_default_library_id_to_user_import_file.rb +5 -0
- data/db/migrate/20140720170735_add_default_user_group_id_to_user_import_file.rb +5 -0
- data/db/migrate/20140811031145_add_expired_at_to_profile.rb +5 -0
- data/lib/enju_leaf/calculate_stat.rb +9 -0
- data/lib/enju_leaf/controller.rb +1 -1
- data/lib/enju_leaf/export_file.rb +26 -0
- data/lib/enju_leaf/import_file.rb +25 -0
- data/lib/enju_leaf/master_model.rb +15 -6
- data/lib/enju_leaf/url_validator.rb +4 -2
- data/lib/enju_leaf/user.rb +74 -68
- data/lib/enju_leaf/version.rb +1 -1
- data/lib/enju_leaf.rb +23 -24
- data/lib/generators/enju_leaf/quick_install/quick_install_generator.rb +2 -1
- data/lib/generators/enju_leaf/setup/setup_generator.rb +6 -0
- data/lib/generators/enju_leaf/setup/templates/db/fixtures/user_groups.yml +1 -1
- data/lib/generators/enju_leaf/setup/templates/db/seeds.rb +5 -4
- data/lib/tasks/enju_leaf_tasks.rake +18 -9
- data/lib/tasks/profile.rb +15 -0
- data/spec/controllers/my_accounts_controller_spec.rb +61 -43
- data/spec/controllers/page_controller_spec.rb +20 -20
- data/spec/controllers/profiles_controller_spec.rb +530 -0
- data/spec/controllers/roles_controller_spec.rb +19 -19
- data/spec/controllers/user_export_files_controller_spec.rb +297 -0
- data/spec/controllers/user_groups_controller_spec.rb +48 -48
- data/spec/controllers/user_import_files_controller_spec.rb +45 -41
- data/spec/controllers/user_import_results_controller_spec.rb +9 -9
- data/spec/dummy/app/models/user.rb +3 -0
- data/spec/dummy/config/application.rb +3 -1
- data/spec/dummy/config/environments/test.rb +2 -0
- data/spec/dummy/db/development.sqlite3 +0 -0
- data/spec/dummy/db/migrate/{001_create_patrons.rb → 001_create_agents.rb} +1 -2
- data/spec/dummy/db/migrate/005_create_manifestations.rb +5 -17
- data/spec/dummy/db/migrate/006_create_items.rb +2 -3
- data/spec/dummy/db/migrate/032_create_checkins.rb +17 -0
- data/spec/dummy/db/migrate/033_create_checkouts.rb +25 -0
- data/spec/dummy/db/migrate/035_create_reserves.rb +27 -0
- data/spec/dummy/db/migrate/055_create_bookmarks.rb +22 -0
- data/spec/dummy/db/migrate/059_create_libraries.rb +5 -1
- data/spec/dummy/db/migrate/069_create_shelves.rb +5 -1
- data/spec/dummy/db/migrate/080_create_library_groups.rb +0 -2
- data/spec/dummy/db/migrate/113_create_events.rb +23 -0
- data/spec/dummy/db/migrate/114_create_event_categories.rb +16 -0
- data/spec/dummy/db/migrate/121_create_checked_items.rb +17 -0
- data/spec/dummy/db/migrate/127_create_use_restrictions.rb +16 -0
- data/spec/dummy/db/migrate/129_create_item_has_use_restrictions.rb +16 -0
- data/spec/dummy/db/migrate/130_create_request_status_types.rb +5 -1
- data/spec/dummy/db/migrate/131_create_request_types.rb +5 -1
- data/spec/dummy/db/migrate/132_create_circulation_statuses.rb +16 -0
- data/spec/dummy/db/migrate/149_create_message_templates.rb +18 -0
- data/spec/dummy/db/migrate/154_create_messages.rb +23 -0
- data/spec/dummy/db/migrate/20080819181903_create_message_requests.rb +18 -0
- data/spec/dummy/db/migrate/{20080905191442_create_patron_types.rb → 20080905191442_create_agent_types.rb} +1 -1
- data/spec/dummy/db/migrate/{20081028083142_create_patron_import_files.rb → 20081028083142_create_agent_import_files.rb} +2 -4
- data/spec/dummy/db/migrate/20081028083208_create_resource_import_files.rb +1 -3
- data/spec/dummy/db/migrate/20081030023412_create_checkout_types.rb +17 -0
- data/spec/dummy/db/migrate/20081030023518_create_user_group_has_checkout_types.rb +25 -0
- data/spec/dummy/db/migrate/20081030023615_create_carrier_type_has_checkout_types.rb +18 -0
- data/spec/dummy/db/migrate/20081212075554_create_checkout_stat_has_manifestations.rb +17 -0
- data/spec/dummy/db/migrate/20081212080038_create_manifestation_checkout_stats.rb +16 -0
- data/spec/dummy/db/migrate/20081212151614_create_bookmark_stats.rb +16 -0
- data/spec/dummy/db/migrate/20081212151820_create_bookmark_stat_has_manifestations.rb +13 -0
- data/spec/dummy/db/migrate/20081215094302_create_user_checkout_stats.rb +16 -0
- data/spec/dummy/db/migrate/20081215094955_create_checkout_stat_has_users.rb +17 -0
- data/spec/dummy/db/migrate/20081216190517_create_reserve_stat_has_manifestations.rb +17 -0
- data/spec/dummy/db/migrate/20081216190724_create_manifestation_reserve_stats.rb +16 -0
- data/spec/dummy/db/migrate/20081220023628_create_user_reserve_stats.rb +16 -0
- data/spec/dummy/db/migrate/20081220034117_create_reserve_stat_has_users.rb +17 -0
- data/spec/dummy/db/migrate/20090321130448_add_completed_at_to_user_checkout_stat.rb +27 -0
- data/spec/dummy/db/migrate/{20090812151902_create_patron_relationship_types.rb → 20090812151902_create_agent_relationship_types.rb} +1 -1
- data/spec/dummy/db/migrate/20090831220301_create_lending_policies.rb +21 -0
- data/spec/dummy/db/migrate/20100129142347_create_import_requests.rb +0 -1
- data/spec/dummy/db/migrate/20100222124420_add_allow_bookmark_external_url_to_library_group.rb +9 -0
- data/spec/dummy/db/migrate/20100525171356_acts_as_taggable_on_migration.rb +30 -0
- data/spec/dummy/db/migrate/{20100606073747_create_patron_relationships.rb → 20100606073747_create_agent_relationships.rb} +1 -1
- data/spec/dummy/db/migrate/{20100814091104_add_position_to_patron_relationship.rb → 20100814091104_add_position_to_agent_relationship.rb} +1 -1
- data/spec/dummy/db/migrate/{20100925074559_create_patron_import_results.rb → 20100925074559_create_agent_import_results.rb} +1 -1
- data/spec/dummy/db/migrate/{20110301121550_add_birth_date_and_death_date_to_patron.rb → 20110301121550_add_birth_date_and_death_date_to_agent.rb} +1 -1
- data/spec/dummy/db/migrate/20110301134521_add_expire_date_to_reserve.rb +9 -0
- data/spec/dummy/db/migrate/20110328130826_add_current_checkout_count_to_user_group_has_checkout_type.rb +9 -0
- data/spec/dummy/db/migrate/20110618091240_add_periodical_to_series_statement.rb +1 -1
- data/spec/dummy/db/migrate/20110621093332_remove_expire_date_from_reserve.rb +9 -0
- data/spec/dummy/db/migrate/20110913115320_add_lft_and_rgt_to_message.rb +11 -0
- data/spec/dummy/db/migrate/20111020063828_remove_dsbl_from_library_group.rb +11 -0
- data/spec/dummy/db/migrate/20111217234412_add_save_checkout_history_to_user.rb +5 -0
- data/spec/dummy/db/migrate/20111218002349_add_checkout_icalendar_token_to_user.rb +6 -0
- data/spec/dummy/db/migrate/20111231145823_add_share_bookmarks_to_user.rb +5 -0
- data/spec/dummy/db/migrate/20120125050502_add_depth_to_message.rb +6 -0
- data/spec/dummy/db/migrate/{20120413161403_add_fingerprint_to_patron_import_file.rb → 20120413161403_add_fingerprint_to_agent_import_file.rb} +1 -1
- data/spec/dummy/db/migrate/{20120413170720_add_error_message_to_patron_import_file.rb → 20120413170720_add_error_message_to_agent_import_file.rb} +1 -1
- data/spec/dummy/db/migrate/20120418121539_add_save_search_history_to_user.rb +5 -0
- data/spec/dummy/db/migrate/20120424103932_add_librarian_id_to_checked_item.rb +5 -0
- data/spec/dummy/db/migrate/{20120511072422_add_patron_identifier_to_patron.rb → 20120511072422_add_agent_identifier_to_agent.rb} +1 -1
- data/spec/dummy/db/migrate/{20120602141129_add_edit_mode_to_patron_import_file.rb → 20120602141129_add_edit_mode_to_agent_import_file.rb} +1 -1
- data/spec/dummy/db/migrate/20130303104849_add_state_index_to_reserve.rb +5 -0
- data/spec/dummy/db/migrate/20130303124821_add_retained_at_to_reserve.rb +5 -0
- data/spec/dummy/db/migrate/20130304015019_add_postponed_at_to_reserve.rb +5 -0
- data/spec/dummy/db/migrate/20130416054135_add_circulation_status_id_to_item.rb +8 -0
- data/spec/dummy/db/migrate/20130421155019_add_creator_string_to_series_statement.rb +7 -0
- data/spec/dummy/db/migrate/20130421164124_add_series_master_to_series_statement.rb +5 -0
- data/spec/dummy/db/migrate/20130509185724_add_statement_of_responsibility_to_manifestation.rb +5 -0
- data/spec/dummy/db/migrate/20130519065638_add_lock_version_to_reserve.rb +5 -0
- data/spec/dummy/db/migrate/20130519065837_add_lock_version_to_checkin.rb +5 -0
- data/spec/dummy/db/migrate/20140518050147_create_reserve_transitions.rb +14 -0
- data/spec/dummy/db/migrate/20140518111006_create_message_transitions.rb +14 -0
- data/spec/dummy/db/migrate/20140518135713_create_message_request_transitions.rb +14 -0
- data/spec/dummy/db/migrate/20140519170214_create_resource_import_file_transitions.rb +14 -0
- data/spec/dummy/db/migrate/20140519171220_create_import_request_transitions.rb +14 -0
- data/spec/dummy/db/migrate/20140524020735_create_agent_import_file_transitions.rb +14 -0
- data/spec/dummy/db/migrate/20140524135607_create_bookmark_stat_transitions.rb +14 -0
- data/spec/dummy/db/migrate/20140524142813_add_taggings_count_to_tag.rb +5 -0
- data/spec/dummy/db/migrate/20140528045518_create_user_checkout_stat_transitions.rb +14 -0
- data/spec/dummy/db/migrate/20140528045539_create_user_reserve_stat_transitions.rb +14 -0
- data/spec/dummy/db/migrate/20140528045600_create_manifestation_checkout_stat_transitions.rb +14 -0
- data/spec/dummy/db/migrate/20140528045617_create_manifestation_reserve_stat_transitions.rb +14 -0
- data/spec/dummy/db/migrate/20140529014410_create_item_transitions.rb +14 -0
- data/spec/dummy/db/migrate/20140614065404_create_resource_export_files.rb +11 -0
- data/spec/dummy/db/migrate/20140614141500_create_resource_export_file_transitions.rb +14 -0
- data/spec/dummy/db/migrate/20140628073524_add_user_encoding_to_agent_import_file.rb +5 -0
- data/spec/dummy/db/migrate/20140628073535_add_user_encoding_to_resource_import_file.rb +5 -0
- data/spec/dummy/db/migrate/20140810061942_add_user_id_to_stat.rb +12 -0
- data/spec/dummy/db/migrate/20140810091231_add_checkout_icalendar_token_to_profile.rb +6 -0
- data/spec/dummy/db/migrate/20140810091417_add_save_checkout_history_to_profile.rb +5 -0
- data/spec/dummy/db/migrate/20140811132912_add_save_search_history_to_profile.rb +5 -0
- data/spec/dummy/db/migrate/20140812093836_add_share_bookmarks_to_profile.rb +5 -0
- data/spec/dummy/db/schema.rb +632 -57
- data/spec/dummy/db/test.sqlite3 +0 -0
- data/spec/dummy/private/system/user_import_files/user_imports/980/190/963/original/user_delete_file.tsv +4 -0
- data/spec/dummy/private/system/user_import_files/user_imports/980/190/963/original/user_import_file_sample.tsv +7 -7
- data/spec/dummy/public/system/user_export_files/user_exports/000/000/003/original/user_export_file_20140815-3963-1s1td26.txt +8 -0
- data/spec/dummy/public/system/user_export_files/user_exports/000/000/003/original/user_export_file_20140815-69229-i0rcty.txt +8 -0
- data/spec/dummy/public/system/user_export_files/user_exports/000/000/003/original/user_export_file_20140816-21120-1w731r8.txt +8 -0
- data/spec/dummy/public/system/user_export_files/user_exports/000/000/004/original/user_export_file_20140711-28652-1dj3e98.txt +148 -0
- data/spec/dummy/public/system/user_export_files/user_exports/000/000/004/original/user_export_file_20140711-29117-13jb6ol.txt +148 -0
- data/spec/dummy/public/system/user_export_files/user_exports/000/000/004/original/user_export_file_20140721-65743-1tnagd4.txt +8 -0
- data/spec/dummy/public/system/user_export_files/user_exports/000/000/004/original/user_export_file_20140815-3963-1kk8o87.txt +8 -0
- data/spec/dummy/public/system/user_export_files/user_exports/000/000/004/original/user_export_file_20140815-69229-188nwub.txt +8 -0
- data/spec/dummy/public/system/user_export_files/user_exports/000/000/004/original/user_export_file_20140816-21120-twzfb6.txt +8 -0
- data/spec/dummy/solr/default/data/index/_4h.fdt +0 -0
- data/spec/dummy/solr/default/data/index/{_3h.fdx → _4h.fdx} +0 -0
- data/spec/dummy/solr/default/data/index/{_3h.fnm → _4h.fnm} +0 -0
- data/spec/dummy/solr/default/data/index/{_3h.nvd → _4h.nvd} +0 -0
- data/spec/dummy/solr/default/data/index/{_3h.nvm → _4h.nvm} +0 -0
- data/spec/dummy/solr/default/data/index/{_3h.si → _4h.si} +0 -0
- data/spec/dummy/solr/default/data/index/_4h_Lucene41_0.doc +0 -0
- data/spec/dummy/solr/default/data/index/_4h_Lucene41_0.pos +0 -0
- data/spec/dummy/solr/default/data/index/_4h_Lucene41_0.tim +0 -0
- data/spec/dummy/solr/default/data/index/_4h_Lucene41_0.tip +0 -0
- data/spec/dummy/solr/default/data/index/segments.gen +0 -0
- data/spec/dummy/solr/default/data/index/segments_97 +0 -0
- data/spec/dummy/solr/default/data/tlog/tlog.0000000000000000320 +0 -0
- data/spec/dummy/solr/default/data/tlog/tlog.0000000000000000321 +0 -0
- data/spec/dummy/solr/default/data/tlog/tlog.0000000000000000322 +0 -0
- data/spec/dummy/solr/default/data/tlog/tlog.0000000000000000323 +0 -0
- data/spec/dummy/solr/default/data/tlog/tlog.0000000000000000324 +0 -0
- data/spec/dummy/solr/default/data/tlog/tlog.0000000000000000325 +0 -0
- data/spec/dummy/solr/default/data/tlog/tlog.0000000000000000326 +0 -0
- data/spec/dummy/solr/default/data/tlog/tlog.0000000000000000327 +0 -0
- data/spec/dummy/solr/default/data/tlog/tlog.0000000000000000328 +0 -0
- data/spec/dummy/solr/default/data/tlog/tlog.0000000000000000329 +0 -0
- data/spec/dummy/tmp/cache/4F7/F90/default_role +0 -0
- data/spec/dummy/tmp/cache/ACB/B20/manifestation_search_total +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/13fe41fee1fe35b49d145bcc06610705 +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/154f7b83f2da0e86effbe25f32135177 +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/1b984bdbd3204a51a82d0e01a1569e2d +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/2f5173deea6c795b8fdde723bb4b63af +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/3054c50144654f9c7e57bb0639a276e9 +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/357970feca3ac29060c1e3861e2c0953 +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/3bd7a263237ba366f64d938fe5303757 +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/62899096da1a3e67660f3b88068be8c9 +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/65b2e4f67eab21b30217e29075f433b2 +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/87d24a3f43f175d4d17babe9203c79a7 +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/cffd775d018f68ce5dba1ee0d951a994 +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/d38d8658b30de1d068603968227680d4 +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/d771ace226fc8215a3572e0aa35bb0d6 +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/f7cbd26ba1d28d48de824f0e94586655 +0 -0
- data/spec/dummy/tmp/cache/stdout +246 -279
- data/spec/dummy/tmp/pids/redis-test.pid +1 -1
- data/spec/factories/profile.rb +9 -0
- data/spec/factories/user.rb +0 -13
- data/spec/fixtures/agent_import_files.yml +0 -3
- data/spec/fixtures/agents.yml +54 -54
- data/spec/fixtures/baskets.yml +4 -4
- data/spec/fixtures/carrier_type_has_checkout_types.yml +30 -0
- data/spec/fixtures/checked_items.yml +34 -0
- data/spec/fixtures/checkins.yml +54 -0
- data/spec/fixtures/checkout_stat_has_manifestations.yml +23 -0
- data/spec/fixtures/checkout_stat_has_users.yml +23 -0
- data/spec/fixtures/checkout_types.yml +33 -0
- data/spec/fixtures/checkouts.yml +162 -0
- data/spec/fixtures/circulation_statuses.yml +119 -0
- data/spec/fixtures/event_categories.yml +55 -0
- data/spec/fixtures/events.yml +142 -0
- data/spec/fixtures/exemplifies.yml +12 -0
- data/spec/fixtures/import_requests.yml +0 -2
- data/spec/fixtures/item_has_use_restrictions.yml +60 -0
- data/spec/fixtures/items.yml +101 -11
- data/spec/fixtures/lending_policies.yml +98 -0
- data/spec/fixtures/libraries.yml +26 -25
- data/spec/fixtures/library_groups.yml +6 -8
- data/spec/fixtures/manifestation_checkout_stats.yml +30 -0
- data/spec/fixtures/manifestation_reserve_stats.yml +30 -0
- data/spec/fixtures/manifestations.yml +69 -207
- data/spec/fixtures/message_requests.yml +27 -0
- data/spec/fixtures/message_templates.yml +105 -0
- data/spec/fixtures/profiles.yml +98 -0
- data/spec/fixtures/request_status_types.yml +63 -0
- data/spec/fixtures/request_types.yml +55 -0
- data/spec/fixtures/reserve_stat_has_manifestations.yml +23 -0
- data/spec/fixtures/reserve_stat_has_users.yml +23 -0
- data/spec/fixtures/reserve_transitions.yml +88 -0
- data/spec/fixtures/reserves.yml +162 -0
- data/spec/fixtures/resource_import_files.yml +0 -3
- data/spec/fixtures/roles.yml +0 -4
- data/spec/fixtures/shelves.yml +2 -3
- data/spec/fixtures/use_restrictions.yml +92 -0
- data/spec/fixtures/user_checkout_stats.yml +30 -0
- data/spec/fixtures/user_export_files.yml +26 -0
- data/spec/fixtures/user_group_has_checkout_types.yml +110 -0
- data/spec/fixtures/user_import_files.yml +2 -0
- data/spec/fixtures/user_reserve_stats.yml +30 -0
- data/spec/fixtures/users.yml +1 -101
- data/spec/models/profile_spec.rb +66 -0
- data/spec/models/user_export_file_spec.rb +31 -0
- data/spec/models/user_import_file_spec.rb +42 -20
- data/spec/models/user_spec.rb +1 -18
- data/spec/requests/{users_spec.rb → profiles_spec.rb} +3 -3
- data/spec/routing/accounts_spec.rb +1 -1
- data/spec/routing/profiles_routing_spec.rb +35 -0
- data/spec/support/resque.rb +1 -0
- data/spec/views/{users → profiles}/edit.html.erb_spec.rb +5 -7
- data/spec/views/{users → profiles}/index.html.erb_spec.rb +3 -3
- data/spec/views/{users → profiles}/new.html.erb_spec.rb +5 -5
- data/spec/views/profiles/show.html.erb_spec.rb +20 -0
- data/vendor/assets/javascripts/jquery.colorbox.js +4 -3
- data/vendor/assets/stylesheets/colorbox.css +1 -1
- metadata +416 -132
- data/app/controllers/users_controller.rb +0 -195
- data/app/models/user_sweeper.rb +0 -18
- data/app/views/users/_edit_credential.html.erb +0 -79
- data/app/views/users/edit.html.erb +0 -76
- data/app/views/users/index.html.erb +0 -56
- data/lib/enju_leaf/expire_editable_fragment.rb +0 -30
- data/lib/enju_leaf/expire_fragment_cache.rb +0 -17
- data/spec/controllers/users_controller_spec.rb +0 -539
- data/spec/dummy/db/migrate/20110916053430_rename_manifestation_number_list_to_number_string.rb +0 -13
- data/spec/dummy/db/migrate/20120415060308_rename_resource_import_file_imported_at_to_executed_at.rb +0 -9
- data/spec/dummy/db/migrate/20120415060323_rename_patron_import_file_imported_at_to_executed_at.rb +0 -9
- data/spec/dummy/db/migrate/20121119153944_add_manifestation_id_to_item.rb +0 -5
- data/spec/dummy/solr/default/data/index/_3h.fdt +0 -0
- data/spec/dummy/solr/default/data/index/_3h_Lucene41_0.doc +0 -0
- data/spec/dummy/solr/default/data/index/_3h_Lucene41_0.pos +0 -0
- data/spec/dummy/solr/default/data/index/_3h_Lucene41_0.tim +0 -0
- data/spec/dummy/solr/default/data/index/_3h_Lucene41_0.tip +0 -0
- data/spec/dummy/solr/default/data/index/segments_71 +0 -0
- data/spec/dummy/solr/default/data/tlog/tlog.0000000000000000242 +0 -0
- data/spec/dummy/solr/default/data/tlog/tlog.0000000000000000243 +0 -0
- data/spec/dummy/solr/default/data/tlog/tlog.0000000000000000244 +0 -0
- data/spec/dummy/solr/default/data/tlog/tlog.0000000000000000245 +0 -0
- data/spec/dummy/solr/default/data/tlog/tlog.0000000000000000246 +0 -0
- data/spec/dummy/solr/default/data/tlog/tlog.0000000000000000247 +0 -0
- data/spec/dummy/solr/default/data/tlog/tlog.0000000000000000248 +0 -0
- data/spec/dummy/solr/default/data/tlog/tlog.0000000000000000249 +0 -0
- data/spec/dummy/solr/default/data/tlog/tlog.0000000000000000250 +0 -0
- data/spec/dummy/solr/default/data/tlog/tlog.0000000000000000251 +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/3f8d795856d1fdf902b0be679120571a +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/5998e66e374537d52eed3fe1ca5f2bfc +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/5ea4a1824e1d67da6c4fb9aeef9f49f4 +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/87f0cb69a0df1355e33cce3949919d5a +0 -0
- data/spec/routing/users_routing_spec.rb +0 -35
- data/spec/views/users/show.html.erb_spec.rb +0 -15
@@ -1,79 +1,7 @@
|
|
1
|
-
# == Schema Information
|
2
|
-
#
|
3
|
-
# Table name: manifestations
|
4
|
-
#
|
5
|
-
# id :integer not null, primary key
|
6
|
-
# original_title :text not null
|
7
|
-
# title_alternative :text
|
8
|
-
# title_transcription :text
|
9
|
-
# classification_number :string(255)
|
10
|
-
# manifestation_identifier :string(255)
|
11
|
-
# date_of_publication :datetime
|
12
|
-
# date_copyrighted :datetime
|
13
|
-
# created_at :datetime not null
|
14
|
-
# updated_at :datetime not null
|
15
|
-
# deleted_at :datetime
|
16
|
-
# access_address :string(255)
|
17
|
-
# language_id :integer default(1), not null
|
18
|
-
# carrier_type_id :integer default(1), not null
|
19
|
-
# extent_id :integer default(1), not null
|
20
|
-
# start_page :integer
|
21
|
-
# end_page :integer
|
22
|
-
# height :integer
|
23
|
-
# width :integer
|
24
|
-
# depth :integer
|
25
|
-
# isbn :string(255)
|
26
|
-
# isbn10 :string(255)
|
27
|
-
# wrong_isbn :string(255)
|
28
|
-
# nbn :string(255)
|
29
|
-
# lccn :string(255)
|
30
|
-
# oclc_number :string(255)
|
31
|
-
# issn :string(255)
|
32
|
-
# price :integer
|
33
|
-
# fulltext :text
|
34
|
-
# volume_number_string :string(255)
|
35
|
-
# issue_number_string :string(255)
|
36
|
-
# serial_number_string :string(255)
|
37
|
-
# edition :integer
|
38
|
-
# note :text
|
39
|
-
# repository_content :boolean default(FALSE), not null
|
40
|
-
# lock_version :integer default(0), not null
|
41
|
-
# required_role_id :integer default(1), not null
|
42
|
-
# state :string(255)
|
43
|
-
# required_score :integer default(0), not null
|
44
|
-
# frequency_id :integer default(1), not null
|
45
|
-
# subscription_master :boolean default(FALSE), not null
|
46
|
-
# attachment_file_name :string(255)
|
47
|
-
# attachment_content_type :string(255)
|
48
|
-
# attachment_file_size :integer
|
49
|
-
# attachment_updated_at :datetime
|
50
|
-
# title_alternative_transcription :text
|
51
|
-
# description :text
|
52
|
-
# abstract :text
|
53
|
-
# available_at :datetime
|
54
|
-
# valid_until :datetime
|
55
|
-
# date_submitted :datetime
|
56
|
-
# date_accepted :datetime
|
57
|
-
# date_caputured :datetime
|
58
|
-
# pub_date :string(255)
|
59
|
-
# edition_string :string(255)
|
60
|
-
# volume_number :integer
|
61
|
-
# issue_number :integer
|
62
|
-
# serial_number :integer
|
63
|
-
# ndc :string(255)
|
64
|
-
# content_type_id :integer default(1)
|
65
|
-
# year_of_publication :integer
|
66
|
-
# attachment_meta :text
|
67
|
-
# month_of_publication :integer
|
68
|
-
# fulltext_content :boolean
|
69
|
-
# doi :string(255)
|
70
|
-
#
|
71
|
-
|
72
1
|
---
|
73
2
|
manifestation_00001:
|
74
3
|
carrier_type_id: 1
|
75
4
|
language_id: 1
|
76
|
-
isbn: "4798002062"
|
77
5
|
updated_at: 2007-11-19 16:59:00.293393 +09:00
|
78
6
|
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"
|
79
7
|
price:
|
@@ -91,7 +19,6 @@ manifestation_00001:
|
|
91
19
|
manifestation_00002:
|
92
20
|
carrier_type_id: 1
|
93
21
|
language_id: 1
|
94
|
-
isbn: "4915724824"
|
95
22
|
updated_at: 2007-11-19 16:59:01.991512 +09:00
|
96
23
|
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"
|
97
24
|
price:
|
@@ -107,7 +34,6 @@ manifestation_00002:
|
|
107
34
|
manifestation_00003:
|
108
35
|
carrier_type_id: 1
|
109
36
|
language_id: 1
|
110
|
-
isbn: "4897063590"
|
111
37
|
updated_at: 2007-11-19 16:59:02.618359 +09:00
|
112
38
|
original_title: !binary |
|
113
39
|
44GT44KM44GL44KJ44Gu55Sf5ZG956eR5a2m56CU56m26ICF44Gu44Gf44KB
|
@@ -125,7 +51,6 @@ manifestation_00003:
|
|
125
51
|
manifestation_00004:
|
126
52
|
carrier_type_id: 1
|
127
53
|
language_id: 1
|
128
|
-
isbn: 0471412791
|
129
54
|
updated_at: 2007-11-19 16:59:03.275738 +09:00
|
130
55
|
original_title: THE BIOTECH INVESTOR'S BIBLE
|
131
56
|
price:
|
@@ -140,7 +65,6 @@ manifestation_00004:
|
|
140
65
|
manifestation_00005:
|
141
66
|
carrier_type_id: 1
|
142
67
|
language_id: 1
|
143
|
-
isbn: ""
|
144
68
|
updated_at: 2007-11-19 16:59:04.333183 +09:00
|
145
69
|
original_title: !binary |
|
146
70
|
6aGn5a6i5rqA6Laz5Z6L44Oe44O844Kx44OG44Kj44Oz44Kw44Gu5qeL5Zuz
|
@@ -157,7 +81,6 @@ manifestation_00005:
|
|
157
81
|
manifestation_00006:
|
158
82
|
carrier_type_id: 1
|
159
83
|
language_id: 1
|
160
|
-
isbn: ""
|
161
84
|
updated_at: 2007-11-19 16:59:05.255684 +09:00
|
162
85
|
original_title: !binary |
|
163
86
|
5LuV57WE44G/6Z2p5paw44Gu5pmC5Luj
|
@@ -174,7 +97,6 @@ manifestation_00006:
|
|
174
97
|
manifestation_00007:
|
175
98
|
carrier_type_id: 1
|
176
99
|
language_id: 1
|
177
|
-
isbn: 0470844701
|
178
100
|
updated_at: 2007-11-19 16:59:06.892741 +09:00
|
179
101
|
original_title: dictionary of e-business
|
180
102
|
price:
|
@@ -189,7 +111,6 @@ manifestation_00007:
|
|
189
111
|
manifestation_00008:
|
190
112
|
carrier_type_id: 1
|
191
113
|
language_id: 1
|
192
|
-
isbn: "4798101028"
|
193
114
|
updated_at: 2007-11-19 16:59:07.463333 +09:00
|
194
115
|
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"
|
195
116
|
price:
|
@@ -204,7 +125,6 @@ manifestation_00008:
|
|
204
125
|
manifestation_00009:
|
205
126
|
carrier_type_id: 1
|
206
127
|
language_id: 1
|
207
|
-
isbn: "4641143331"
|
208
128
|
updated_at: 2007-11-19 16:59:08.166195 +09:00
|
209
129
|
original_title: !binary |
|
210
130
|
6YCQ5p2h6Kej6Kqs5LiN5q2j56u25LqJ6Ziy5q2i5rOV
|
@@ -221,7 +141,6 @@ manifestation_00009:
|
|
221
141
|
manifestation_00010:
|
222
142
|
carrier_type_id: 1
|
223
143
|
language_id: 1
|
224
|
-
isbn: "9784774127804"
|
225
144
|
updated_at: 2007-11-19 16:59:09.799724 +09:00
|
226
145
|
original_title: "Apache Lucene入門 : Java・オープンソース・全文検索システムの構築"
|
227
146
|
price:
|
@@ -235,7 +154,6 @@ manifestation_00010:
|
|
235
154
|
created_at: 2007-11-19 16:59:09.799724 +09:00
|
236
155
|
manifestation_00021:
|
237
156
|
carrier_type_id: 1
|
238
|
-
isbn: "4822281167"
|
239
157
|
updated_at: 2007-11-19 16:59:20.799724 +09:00
|
240
158
|
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"
|
241
159
|
price:
|
@@ -250,7 +168,6 @@ manifestation_00021:
|
|
250
168
|
required_role_id: 2
|
251
169
|
manifestation_00022:
|
252
170
|
carrier_type_id: 1
|
253
|
-
isbn:
|
254
171
|
updated_at: 2007-11-19 16:59:21.799724 +09:00
|
255
172
|
original_title: "YouTube - Open Source ILS Song"
|
256
173
|
price:
|
@@ -265,7 +182,6 @@ manifestation_00022:
|
|
265
182
|
required_role_id: 1
|
266
183
|
manifestation_00023:
|
267
184
|
carrier_type_id: 1
|
268
|
-
isbn:
|
269
185
|
updated_at: 2008-04-17 00:34:01 +09:00
|
270
186
|
original_title: "世界の美しい図書館集めてみた【第一弾】"
|
271
187
|
price:
|
@@ -281,7 +197,6 @@ manifestation_00023:
|
|
281
197
|
manifestation_00101:
|
282
198
|
carrier_type_id: 1
|
283
199
|
language_id: 1
|
284
|
-
isbn: 0000000101
|
285
200
|
updated_at: 2010-03-01 16:14:18 +09:00
|
286
201
|
original_title: "CGI基礎講座 : Perl・プログラミング・日本語処理"
|
287
202
|
price:
|
@@ -296,7 +211,6 @@ manifestation_00101:
|
|
296
211
|
manifestation_00102:
|
297
212
|
carrier_type_id: 1
|
298
213
|
language_id: 1
|
299
|
-
isbn: 0000000102
|
300
214
|
updated_at: 2010-03-01 16:14:18 +09:00
|
301
215
|
original_title: "CGIレスキュー実践Perlプログラミング : Web裏技"
|
302
216
|
price:
|
@@ -311,7 +225,6 @@ manifestation_00102:
|
|
311
225
|
manifestation_00103:
|
312
226
|
carrier_type_id: 1
|
313
227
|
language_id: 1
|
314
|
-
isbn: 0000000103
|
315
228
|
updated_at: 2010-03-01 16:14:18 +09:00
|
316
229
|
original_title: "Perlクックブック. v.2"
|
317
230
|
price:
|
@@ -326,7 +239,6 @@ manifestation_00103:
|
|
326
239
|
manifestation_00104:
|
327
240
|
carrier_type_id: 1
|
328
241
|
language_id: 1
|
329
|
-
isbn: 0000000104
|
330
242
|
updated_at: 2010-03-01 16:14:18 +09:00
|
331
243
|
original_title: "Perlクックブック. v.1"
|
332
244
|
price:
|
@@ -341,7 +253,6 @@ manifestation_00104:
|
|
341
253
|
manifestation_00105:
|
342
254
|
carrier_type_id: 1
|
343
255
|
language_id: 1
|
344
|
-
isbn: 0000000105
|
345
256
|
updated_at: 2010-03-01 16:14:18 +09:00
|
346
257
|
original_title: "初めてのPerl. 続"
|
347
258
|
price:
|
@@ -356,7 +267,6 @@ manifestation_00105:
|
|
356
267
|
manifestation_00106:
|
357
268
|
carrier_type_id: 1
|
358
269
|
language_id: 1
|
359
|
-
isbn: 0000000106
|
360
270
|
updated_at: 2010-03-01 16:14:18 +09:00
|
361
271
|
original_title: "Perl & XML"
|
362
272
|
price:
|
@@ -371,7 +281,6 @@ manifestation_00106:
|
|
371
281
|
manifestation_00107:
|
372
282
|
carrier_type_id: 1
|
373
283
|
language_id: 1
|
374
|
-
isbn: 0000000107
|
375
284
|
updated_at: 2010-03-01 16:14:18 +09:00
|
376
285
|
original_title: "はじめてのPerlモジュール : 厳選実用モジュール集"
|
377
286
|
price:
|
@@ -386,7 +295,6 @@ manifestation_00107:
|
|
386
295
|
manifestation_00108:
|
387
296
|
carrier_type_id: 1
|
388
297
|
language_id: 1
|
389
|
-
isbn: 0000000108
|
390
298
|
updated_at: 2010-03-01 16:14:18 +09:00
|
391
299
|
original_title: "Perl 5パワフルテクニック大全集"
|
392
300
|
price:
|
@@ -401,7 +309,6 @@ manifestation_00108:
|
|
401
309
|
manifestation_00109:
|
402
310
|
carrier_type_id: 1
|
403
311
|
language_id: 1
|
404
|
-
isbn: 0000000109
|
405
312
|
updated_at: 2010-03-01 16:14:18 +09:00
|
406
313
|
original_title: "CGI/Perlパワープログラミング"
|
407
314
|
price:
|
@@ -416,7 +323,6 @@ manifestation_00109:
|
|
416
323
|
manifestation_00110:
|
417
324
|
carrier_type_id: 1
|
418
325
|
language_id: 1
|
419
|
-
isbn: 0000000110
|
420
326
|
updated_at: 2010-03-01 16:14:18 +09:00
|
421
327
|
original_title: "Ruby/GTKプログラミング入門 : Rubyで作って遊ぶGUIプログラミング"
|
422
328
|
price:
|
@@ -431,7 +337,6 @@ manifestation_00110:
|
|
431
337
|
manifestation_00111:
|
432
338
|
carrier_type_id: 1
|
433
339
|
language_id: 1
|
434
|
-
isbn: 0000000111
|
435
340
|
updated_at: 2010-03-01 16:14:18 +09:00
|
436
341
|
original_title: "すぐわかるPerl"
|
437
342
|
price:
|
@@ -446,7 +351,6 @@ manifestation_00111:
|
|
446
351
|
manifestation_00112:
|
447
352
|
carrier_type_id: 1
|
448
353
|
language_id: 1
|
449
|
-
isbn: 0000000112
|
450
354
|
updated_at: 2010-03-01 16:14:18 +09:00
|
451
355
|
original_title: "CGIのための実践入門Perl : 対話的・動きのあるWebページを作ろう"
|
452
356
|
price:
|
@@ -461,7 +365,6 @@ manifestation_00112:
|
|
461
365
|
manifestation_00113:
|
462
366
|
carrier_type_id: 1
|
463
367
|
language_id: 1
|
464
|
-
isbn: 0000000113
|
465
368
|
updated_at: 2010-03-01 16:14:18 +09:00
|
466
369
|
original_title: "プログラミングは難しくない! : ウェブではじめるJavaScript/Perl/Java"
|
467
370
|
price:
|
@@ -476,7 +379,6 @@ manifestation_00113:
|
|
476
379
|
manifestation_00114:
|
477
380
|
carrier_type_id: 1
|
478
381
|
language_id: 1
|
479
|
-
isbn: 9784756137470
|
480
382
|
updated_at: 2010-03-01 16:14:18 +09:00
|
481
383
|
original_title: "Rubyを256倍使うための本. 魔道編"
|
482
384
|
price:
|
@@ -491,7 +393,6 @@ manifestation_00114:
|
|
491
393
|
manifestation_00115:
|
492
394
|
carrier_type_id: 1
|
493
395
|
language_id: 1
|
494
|
-
isbn: 0000000115
|
495
396
|
updated_at: 2010-03-01 16:14:18 +09:00
|
496
397
|
original_title: "入門Perl"
|
497
398
|
price:
|
@@ -506,7 +407,6 @@ manifestation_00115:
|
|
506
407
|
manifestation_00116:
|
507
408
|
carrier_type_id: 1
|
508
409
|
language_id: 1
|
509
|
-
isbn: 9784756100917
|
510
410
|
updated_at: 2010-03-01 16:14:18 +09:00
|
511
411
|
original_title: "sed & awkプログラミング : UNIX power tools"
|
512
412
|
price:
|
@@ -521,7 +421,6 @@ manifestation_00116:
|
|
521
421
|
manifestation_00117:
|
522
422
|
carrier_type_id: 1
|
523
423
|
language_id: 1
|
524
|
-
isbn: 0000000117
|
525
424
|
updated_at: 2010-03-01 16:14:18 +09:00
|
526
425
|
original_title: "Perlの達人"
|
527
426
|
price:
|
@@ -536,7 +435,6 @@ manifestation_00117:
|
|
536
435
|
manifestation_00118:
|
537
436
|
carrier_type_id: 1
|
538
437
|
language_id: 1
|
539
|
-
isbn: 0000000118
|
540
438
|
updated_at: 2010-03-01 16:14:18 +09:00
|
541
439
|
original_title: "ナチ強制・絶滅収容所 : 18施設内の生と死"
|
542
440
|
price:
|
@@ -551,7 +449,6 @@ manifestation_00118:
|
|
551
449
|
manifestation_00119:
|
552
450
|
carrier_type_id: 1
|
553
451
|
language_id: 1
|
554
|
-
isbn: 0000000119
|
555
452
|
updated_at: 2010-03-01 16:14:18 +09:00
|
556
453
|
original_title: "Perl基礎講座"
|
557
454
|
price:
|
@@ -566,7 +463,6 @@ manifestation_00119:
|
|
566
463
|
manifestation_00120:
|
567
464
|
carrier_type_id: 1
|
568
465
|
language_id: 1
|
569
|
-
isbn: 9784274063855
|
570
466
|
updated_at: 2010-03-01 16:14:18 +09:00
|
571
467
|
original_title: "Rubyプログラミング入門"
|
572
468
|
price:
|
@@ -581,7 +477,6 @@ manifestation_00120:
|
|
581
477
|
manifestation_00121:
|
582
478
|
carrier_type_id: 1
|
583
479
|
language_id: 1
|
584
|
-
isbn: 0000000121
|
585
480
|
updated_at: 2010-03-01 16:14:18 +09:00
|
586
481
|
original_title: "Django×Python"
|
587
482
|
price:
|
@@ -596,7 +491,6 @@ manifestation_00121:
|
|
596
491
|
manifestation_00122:
|
597
492
|
carrier_type_id: 1
|
598
493
|
language_id: 1
|
599
|
-
isbn: 0000000122
|
600
494
|
updated_at: 2010-03-01 16:14:18 +09:00
|
601
495
|
original_title: "みんなのPython"
|
602
496
|
price:
|
@@ -611,7 +505,6 @@ manifestation_00122:
|
|
611
505
|
manifestation_00123:
|
612
506
|
carrier_type_id: 1
|
613
507
|
language_id: 1
|
614
|
-
isbn: 0000000123
|
615
508
|
updated_at: 2010-03-01 16:14:18 +09:00
|
616
509
|
original_title: "Rubyでgroonga使って全文検索 - ラングバ"
|
617
510
|
price:
|
@@ -626,7 +519,6 @@ manifestation_00123:
|
|
626
519
|
manifestation_00124:
|
627
520
|
carrier_type_id: 1
|
628
521
|
language_id: 1
|
629
|
-
isbn: 0000000124
|
630
522
|
updated_at: 2010-03-01 16:14:18 +09:00
|
631
523
|
original_title: "まちづくり三鷹図書館(Ruby図書館情報システム デモサイト)"
|
632
524
|
price:
|
@@ -641,7 +533,6 @@ manifestation_00124:
|
|
641
533
|
manifestation_00125:
|
642
534
|
carrier_type_id: 1
|
643
535
|
language_id: 1
|
644
|
-
isbn: 0000000125
|
645
536
|
updated_at: 2010-03-01 16:14:18 +09:00
|
646
537
|
original_title: "Ruby on Rails入門 : 優しいRailsの育て方"
|
647
538
|
price:
|
@@ -656,7 +547,6 @@ manifestation_00125:
|
|
656
547
|
manifestation_00126:
|
657
548
|
carrier_type_id: 1
|
658
549
|
language_id: 1
|
659
|
-
isbn: 0000000126
|
660
550
|
updated_at: 2010-03-01 16:14:18 +09:00
|
661
551
|
original_title: "Ruby Cookbook"
|
662
552
|
price:
|
@@ -671,7 +561,6 @@ manifestation_00126:
|
|
671
561
|
manifestation_00127:
|
672
562
|
carrier_type_id: 1
|
673
563
|
language_id: 1
|
674
|
-
isbn: 0000000127
|
675
564
|
updated_at: 2010-03-01 16:14:18 +09:00
|
676
565
|
original_title: "CGI programming on the World Wide Web"
|
677
566
|
price:
|
@@ -686,7 +575,6 @@ manifestation_00127:
|
|
686
575
|
manifestation_00128:
|
687
576
|
carrier_type_id: 1
|
688
577
|
language_id: 1
|
689
|
-
isbn: 0000000128
|
690
578
|
updated_at: 2010-03-01 16:14:18 +09:00
|
691
579
|
original_title: "Genomic Perl"
|
692
580
|
price:
|
@@ -701,7 +589,6 @@ manifestation_00128:
|
|
701
589
|
manifestation_00129:
|
702
590
|
carrier_type_id: 1
|
703
591
|
language_id: 1
|
704
|
-
isbn: 0000000129
|
705
592
|
updated_at: 2010-03-01 16:14:18 +09:00
|
706
593
|
original_title: "Indians of the Pacific Northwest"
|
707
594
|
price:
|
@@ -716,7 +603,6 @@ manifestation_00129:
|
|
716
603
|
manifestation_00130:
|
717
604
|
carrier_type_id: 1
|
718
605
|
language_id: 1
|
719
|
-
isbn: 0000000130
|
720
606
|
updated_at: 2010-03-01 16:14:18 +09:00
|
721
607
|
original_title: "Massachusetts acid rain monitoring project / Massachusetts acid rain monitoring project A.R.M"
|
722
608
|
price:
|
@@ -731,7 +617,6 @@ manifestation_00130:
|
|
731
617
|
manifestation_00131:
|
732
618
|
carrier_type_id: 1
|
733
619
|
language_id: 1
|
734
|
-
isbn: 0000000131
|
735
620
|
updated_at: 2010-03-01 16:14:18 +09:00
|
736
621
|
original_title: "International Symposium Genes and Chromosomes Structure and Function"
|
737
622
|
price:
|
@@ -746,7 +631,6 @@ manifestation_00131:
|
|
746
631
|
manifestation_00132:
|
747
632
|
carrier_type_id: 1
|
748
633
|
language_id: 1
|
749
|
-
isbn: 0000000132
|
750
634
|
updated_at: 2010-03-01 16:14:18 +09:00
|
751
635
|
original_title: "Perl black book, 2nd edition"
|
752
636
|
price:
|
@@ -761,7 +645,6 @@ manifestation_00132:
|
|
761
645
|
manifestation_00133:
|
762
646
|
carrier_type_id: 1
|
763
647
|
language_id: 1
|
764
|
-
isbn: 0000000133
|
765
648
|
updated_at: 2010-03-01 16:14:18 +09:00
|
766
649
|
original_title: "Python scripting for computational science"
|
767
650
|
price:
|
@@ -776,7 +659,6 @@ manifestation_00133:
|
|
776
659
|
manifestation_00134:
|
777
660
|
carrier_type_id: 1
|
778
661
|
language_id: 1
|
779
|
-
isbn: 0000000134
|
780
662
|
updated_at: 2010-03-01 16:14:18 +09:00
|
781
663
|
original_title: "Tests on a gold ore from the Ruby Basin, Black Hills"
|
782
664
|
price:
|
@@ -791,7 +673,6 @@ manifestation_00134:
|
|
791
673
|
manifestation_00135:
|
792
674
|
carrier_type_id: 1
|
793
675
|
language_id: 1
|
794
|
-
isbn: 0000000135
|
795
676
|
updated_at: 2010-03-01 16:14:18 +09:00
|
796
677
|
original_title: "Official guide to programming with CGI.pm / Programming with CGI.pm / Official guide to programming with CGI.pm"
|
797
678
|
price:
|
@@ -806,7 +687,6 @@ manifestation_00135:
|
|
806
687
|
manifestation_00136:
|
807
688
|
carrier_type_id: 1
|
808
689
|
language_id: 1
|
809
|
-
isbn: 0000000136
|
810
690
|
updated_at: 2010-03-01 16:14:18 +09:00
|
811
691
|
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"
|
812
692
|
price:
|
@@ -821,7 +701,6 @@ manifestation_00136:
|
|
821
701
|
manifestation_00137:
|
822
702
|
carrier_type_id: 1
|
823
703
|
language_id: 1
|
824
|
-
isbn: 0000000137
|
825
704
|
updated_at: 2010-03-01 16:14:18 +09:00
|
826
705
|
original_title: "Femtosecond time-resolved spectroscopy of organic molecular crystals / Time-resolved spectroscopy of organic molecular crystals, Femtosecond"
|
827
706
|
price:
|
@@ -836,7 +715,6 @@ manifestation_00137:
|
|
836
715
|
manifestation_00138:
|
837
716
|
carrier_type_id: 1
|
838
717
|
language_id: 1
|
839
|
-
isbn: 0000000138
|
840
718
|
updated_at: 2010-03-01 16:14:18 +09:00
|
841
719
|
original_title: "CGI programming with Perl"
|
842
720
|
price:
|
@@ -851,7 +729,6 @@ manifestation_00138:
|
|
851
729
|
manifestation_00139:
|
852
730
|
carrier_type_id: 1
|
853
731
|
language_id: 1
|
854
|
-
isbn: 0000000139
|
855
732
|
updated_at: 2010-03-01 16:14:18 +09:00
|
856
733
|
original_title: "Python and XML / Python & XML / XML processing with Python"
|
857
734
|
price:
|
@@ -866,7 +743,6 @@ manifestation_00139:
|
|
866
743
|
manifestation_00140:
|
867
744
|
carrier_type_id: 1
|
868
745
|
language_id: 1
|
869
|
-
isbn: 0000000140
|
870
746
|
updated_at: 2010-03-01 16:14:18 +09:00
|
871
747
|
original_title: "Perl cookbook / Solutions and examples for Perl programmers"
|
872
748
|
price:
|
@@ -881,7 +757,6 @@ manifestation_00140:
|
|
881
757
|
manifestation_00141:
|
882
758
|
carrier_type_id: 1
|
883
759
|
language_id: 1
|
884
|
-
isbn: 0000000141
|
885
760
|
updated_at: 2010-03-01 16:14:18 +09:00
|
886
761
|
original_title: "Mastering Perl/Tk / Perl/Tk"
|
887
762
|
price:
|
@@ -896,7 +771,6 @@ manifestation_00141:
|
|
896
771
|
manifestation_00142:
|
897
772
|
carrier_type_id: 1
|
898
773
|
language_id: 1
|
899
|
-
isbn: 0000000142
|
900
774
|
updated_at: 2010-03-01 16:14:18 +09:00
|
901
775
|
original_title: "Mastering algorithms with Perl / Practical programming through computer science"
|
902
776
|
price:
|
@@ -911,7 +785,6 @@ manifestation_00142:
|
|
911
785
|
manifestation_00143:
|
912
786
|
carrier_type_id: 1
|
913
787
|
language_id: 1
|
914
|
-
isbn: 0000000143
|
915
788
|
updated_at: 2010-03-01 16:14:18 +09:00
|
916
789
|
original_title: "Programming Perl"
|
917
790
|
price:
|
@@ -926,7 +799,6 @@ manifestation_00143:
|
|
926
799
|
manifestation_00144:
|
927
800
|
carrier_type_id: 1
|
928
801
|
language_id: 1
|
929
|
-
isbn: 0000000144
|
930
802
|
updated_at: 2010-03-01 16:14:18 +09:00
|
931
803
|
original_title: "Fort Worth & Tarrant County / Fort Worth and Tarrant County"
|
932
804
|
price:
|
@@ -941,7 +813,6 @@ manifestation_00144:
|
|
941
813
|
manifestation_00145:
|
942
814
|
carrier_type_id: 1
|
943
815
|
language_id: 1
|
944
|
-
isbn: 0000000145
|
945
816
|
updated_at: 2010-03-01 16:14:18 +09:00
|
946
817
|
original_title: "Monty Python's Spamalot [sound recording] / Spamalot / Spamalot / Monty Python and the Holy Grail (Motion picture)"
|
947
818
|
price:
|
@@ -956,7 +827,6 @@ manifestation_00145:
|
|
956
827
|
manifestation_00146:
|
957
828
|
carrier_type_id: 1
|
958
829
|
language_id: 1
|
959
|
-
isbn: 0000000146
|
960
830
|
updated_at: 2010-03-01 16:14:18 +09:00
|
961
831
|
original_title: "AWK programming language"
|
962
832
|
price:
|
@@ -971,7 +841,6 @@ manifestation_00146:
|
|
971
841
|
manifestation_00147:
|
972
842
|
carrier_type_id: 1
|
973
843
|
language_id: 1
|
974
|
-
isbn: 0000000147
|
975
844
|
updated_at: 2010-03-01 16:14:18 +09:00
|
976
845
|
original_title: "Toting the lead row"
|
977
846
|
price:
|
@@ -986,7 +855,6 @@ manifestation_00147:
|
|
986
855
|
manifestation_00148:
|
987
856
|
carrier_type_id: 1
|
988
857
|
language_id: 1
|
989
|
-
isbn: 0000000148
|
990
858
|
updated_at: 2010-03-01 16:14:18 +09:00
|
991
859
|
original_title: "Afro-American blues and game songs"
|
992
860
|
price:
|
@@ -1001,7 +869,6 @@ manifestation_00148:
|
|
1001
869
|
manifestation_00149:
|
1002
870
|
carrier_type_id: 1
|
1003
871
|
language_id: 1
|
1004
|
-
isbn: 0000000149
|
1005
872
|
updated_at: 2010-03-01 16:14:18 +09:00
|
1006
873
|
original_title: "Perl/Tk pocket reference"
|
1007
874
|
price:
|
@@ -1016,7 +883,6 @@ manifestation_00149:
|
|
1016
883
|
manifestation_00150:
|
1017
884
|
carrier_type_id: 1
|
1018
885
|
language_id: 1
|
1019
|
-
isbn: 0000000150
|
1020
886
|
updated_at: 2010-03-01 16:14:18 +09:00
|
1021
887
|
original_title: "politics of improving urban air quality"
|
1022
888
|
price:
|
@@ -1031,7 +897,6 @@ manifestation_00150:
|
|
1031
897
|
manifestation_00151:
|
1032
898
|
carrier_type_id: 1
|
1033
899
|
language_id: 1
|
1034
|
-
isbn: 0000000151
|
1035
900
|
updated_at: 2010-03-01 16:14:18 +09:00
|
1036
901
|
original_title: "Perl developer's dictionary"
|
1037
902
|
price:
|
@@ -1046,7 +911,6 @@ manifestation_00151:
|
|
1046
911
|
manifestation_00152:
|
1047
912
|
carrier_type_id: 1
|
1048
913
|
language_id: 1
|
1049
|
-
isbn: 0000000152
|
1050
914
|
updated_at: 2010-03-01 16:14:18 +09:00
|
1051
915
|
original_title: "Andrテδゥ Poitiers"
|
1052
916
|
price:
|
@@ -1061,7 +925,6 @@ manifestation_00152:
|
|
1061
925
|
manifestation_00153:
|
1062
926
|
carrier_type_id: 1
|
1063
927
|
language_id: 1
|
1064
|
-
isbn: 0000000153
|
1065
928
|
updated_at: 2010-03-01 16:14:18 +09:00
|
1066
929
|
original_title: "PERL and CGI for the World Wide Web [electronic resource] / Visual QuickStart guide"
|
1067
930
|
price:
|
@@ -1076,7 +939,6 @@ manifestation_00153:
|
|
1076
939
|
manifestation_00154:
|
1077
940
|
carrier_type_id: 1
|
1078
941
|
language_id: 1
|
1079
|
-
isbn: 0000000154
|
1080
942
|
updated_at: 2010-03-01 16:14:18 +09:00
|
1081
943
|
original_title: "Python tutorial"
|
1082
944
|
price:
|
@@ -1091,7 +953,6 @@ manifestation_00154:
|
|
1091
953
|
manifestation_00155:
|
1092
954
|
carrier_type_id: 1
|
1093
955
|
language_id: 1
|
1094
|
-
isbn: 0000000155
|
1095
956
|
updated_at: 2010-03-01 16:14:18 +09:00
|
1096
957
|
original_title: "Line shapes of paramagnetic resonances in ruby"
|
1097
958
|
price:
|
@@ -1106,7 +967,6 @@ manifestation_00155:
|
|
1106
967
|
manifestation_00156:
|
1107
968
|
carrier_type_id: 1
|
1108
969
|
language_id: 1
|
1109
|
-
isbn: 0000000156
|
1110
970
|
updated_at: 2010-03-01 16:14:18 +09:00
|
1111
971
|
original_title: "Perl programmer's reference"
|
1112
972
|
price:
|
@@ -1121,7 +981,6 @@ manifestation_00156:
|
|
1121
981
|
manifestation_00157:
|
1122
982
|
carrier_type_id: 1
|
1123
983
|
language_id: 1
|
1124
|
-
isbn: 0000000157
|
1125
984
|
updated_at: 2010-03-01 16:14:18 +09:00
|
1126
985
|
original_title: "Technological capabilities in developing countries"
|
1127
986
|
price:
|
@@ -1136,7 +995,6 @@ manifestation_00157:
|
|
1136
995
|
manifestation_00158:
|
1137
996
|
carrier_type_id: 1
|
1138
997
|
language_id: 1
|
1139
|
-
isbn: 0000000158
|
1140
998
|
updated_at: 2010-03-01 16:14:18 +09:00
|
1141
999
|
original_title: "phenomena of vagueness"
|
1142
1000
|
price:
|
@@ -1151,7 +1009,6 @@ manifestation_00158:
|
|
1151
1009
|
manifestation_00159:
|
1152
1010
|
carrier_type_id: 1
|
1153
1011
|
language_id: 1
|
1154
|
-
isbn: 0000000159
|
1155
1012
|
updated_at: 2010-03-01 16:14:18 +09:00
|
1156
1013
|
original_title: "theory of consumer's demand"
|
1157
1014
|
price:
|
@@ -1166,7 +1023,6 @@ manifestation_00159:
|
|
1166
1023
|
manifestation_00160:
|
1167
1024
|
carrier_type_id: 1
|
1168
1025
|
language_id: 1
|
1169
|
-
isbn: 0000000160
|
1170
1026
|
updated_at: 2010-03-01 16:14:18 +09:00
|
1171
1027
|
original_title: "theory of consumer's demand"
|
1172
1028
|
price:
|
@@ -1181,7 +1037,6 @@ manifestation_00160:
|
|
1181
1037
|
manifestation_00161:
|
1182
1038
|
carrier_type_id: 1
|
1183
1039
|
language_id: 1
|
1184
|
-
isbn: 0000000161
|
1185
1040
|
updated_at: 2010-03-01 16:14:18 +09:00
|
1186
1041
|
original_title: "Monty Python, Shakespeare, and English Renaissance drama"
|
1187
1042
|
price:
|
@@ -1196,7 +1051,6 @@ manifestation_00161:
|
|
1196
1051
|
manifestation_00162:
|
1197
1052
|
carrier_type_id: 1
|
1198
1053
|
language_id: 1
|
1199
|
-
isbn: 0000000162
|
1200
1054
|
updated_at: 2010-03-01 16:14:18 +09:00
|
1201
1055
|
original_title: "Analyzing computer system performance with PERL::PDQ"
|
1202
1056
|
price:
|
@@ -1211,7 +1065,6 @@ manifestation_00162:
|
|
1211
1065
|
manifestation_00163:
|
1212
1066
|
carrier_type_id: 1
|
1213
1067
|
language_id: 1
|
1214
|
-
isbn: 0000000163
|
1215
1068
|
updated_at: 2010-03-01 16:14:18 +09:00
|
1216
1069
|
original_title: "equilibrium of the reaction between the manganate, permanganate, and hydroxide of potassium, and manganese dioxide"
|
1217
1070
|
price:
|
@@ -1226,7 +1079,6 @@ manifestation_00163:
|
|
1226
1079
|
manifestation_00164:
|
1227
1080
|
carrier_type_id: 1
|
1228
1081
|
language_id: 1
|
1229
|
-
isbn: 0000000164
|
1230
1082
|
updated_at: 2010-03-01 16:14:18 +09:00
|
1231
1083
|
original_title: "Stimulated optical emission in ruby"
|
1232
1084
|
price:
|
@@ -1241,7 +1093,6 @@ manifestation_00164:
|
|
1241
1093
|
manifestation_00165:
|
1242
1094
|
carrier_type_id: 1
|
1243
1095
|
language_id: 1
|
1244
|
-
isbn: 0000000165
|
1245
1096
|
updated_at: 2010-03-01 16:14:18 +09:00
|
1246
1097
|
original_title: "Strategic planning and risk analysis"
|
1247
1098
|
price:
|
@@ -1256,7 +1107,6 @@ manifestation_00165:
|
|
1256
1107
|
manifestation_00166:
|
1257
1108
|
carrier_type_id: 1
|
1258
1109
|
language_id: 1
|
1259
|
-
isbn: 0000000166
|
1260
1110
|
updated_at: 2010-03-01 16:14:18 +09:00
|
1261
1111
|
original_title: "Performance assertion checking"
|
1262
1112
|
price:
|
@@ -1271,7 +1121,6 @@ manifestation_00166:
|
|
1271
1121
|
manifestation_00167:
|
1272
1122
|
carrier_type_id: 1
|
1273
1123
|
language_id: 1
|
1274
|
-
isbn: 0000000167
|
1275
1124
|
updated_at: 2010-03-01 16:14:18 +09:00
|
1276
1125
|
original_title: "Spin-lattice relaxation time of ruby"
|
1277
1126
|
price:
|
@@ -1286,7 +1135,6 @@ manifestation_00167:
|
|
1286
1135
|
manifestation_00168:
|
1287
1136
|
carrier_type_id: 1
|
1288
1137
|
language_id: 1
|
1289
|
-
isbn: 0000000168
|
1290
1138
|
updated_at: 2010-03-01 16:14:18 +09:00
|
1291
1139
|
original_title: "Mourning Ruby"
|
1292
1140
|
price:
|
@@ -1301,7 +1149,6 @@ manifestation_00168:
|
|
1301
1149
|
manifestation_00169:
|
1302
1150
|
carrier_type_id: 1
|
1303
1151
|
language_id: 1
|
1304
|
-
isbn: 0000000169
|
1305
1152
|
updated_at: 2010-03-01 16:14:18 +09:00
|
1306
1153
|
original_title: "statistical analysis of banking performance in the Eastern Caribbean Currency Union in the 1990s"
|
1307
1154
|
price:
|
@@ -1316,7 +1163,6 @@ manifestation_00169:
|
|
1316
1163
|
manifestation_00170:
|
1317
1164
|
carrier_type_id: 1
|
1318
1165
|
language_id: 1
|
1319
|
-
isbn: 0000000170
|
1320
1166
|
updated_at: 2010-03-01 16:14:18 +09:00
|
1321
1167
|
original_title: "Professional Perl programming / Perl programming"
|
1322
1168
|
price:
|
@@ -1331,7 +1177,6 @@ manifestation_00170:
|
|
1331
1177
|
manifestation_00171:
|
1332
1178
|
carrier_type_id: 1
|
1333
1179
|
language_id: 1
|
1334
|
-
isbn: 0000000171
|
1335
1180
|
updated_at: 2010-03-01 16:14:18 +09:00
|
1336
1181
|
original_title: "Perl in a nutshell"
|
1337
1182
|
price:
|
@@ -1346,7 +1191,6 @@ manifestation_00171:
|
|
1346
1191
|
manifestation_00172:
|
1347
1192
|
carrier_type_id: 1
|
1348
1193
|
language_id: 1
|
1349
|
-
isbn: 0000000172
|
1350
1194
|
updated_at: 2010-03-01 16:14:18 +09:00
|
1351
1195
|
original_title: "Programming Web services with Perl"
|
1352
1196
|
price:
|
@@ -1361,7 +1205,6 @@ manifestation_00172:
|
|
1361
1205
|
manifestation_00173:
|
1362
1206
|
carrier_type_id: 1
|
1363
1207
|
language_id: 1
|
1364
|
-
isbn: 0000000173
|
1365
1208
|
updated_at: 2010-03-01 16:14:18 +09:00
|
1366
1209
|
original_title: "Proceedings of the Trieste Workshop on the search for New Elementary Particles / International journal of modern physics / Search for new elementary particles"
|
1367
1210
|
price:
|
@@ -1376,7 +1219,6 @@ manifestation_00173:
|
|
1376
1219
|
manifestation_00174:
|
1377
1220
|
carrier_type_id: 1
|
1378
1221
|
language_id: 1
|
1379
|
-
isbn: 0000000174
|
1380
1222
|
updated_at: 2010-03-01 16:14:18 +09:00
|
1381
1223
|
original_title: "Europeras 3 & 4 / Europera"
|
1382
1224
|
price:
|
@@ -1391,7 +1233,6 @@ manifestation_00174:
|
|
1391
1233
|
manifestation_00175:
|
1392
1234
|
carrier_type_id: 1
|
1393
1235
|
language_id: 1
|
1394
|
-
isbn: 0000000175
|
1395
1236
|
updated_at: 2010-03-01 16:14:18 +09:00
|
1396
1237
|
original_title: "Retreats from realism in recent English drama"
|
1397
1238
|
price:
|
@@ -1406,7 +1247,6 @@ manifestation_00175:
|
|
1406
1247
|
manifestation_00176:
|
1407
1248
|
carrier_type_id: 1
|
1408
1249
|
language_id: 1
|
1409
|
-
isbn: 0000000176
|
1410
1250
|
updated_at: 2010-03-01 16:14:18 +09:00
|
1411
1251
|
original_title: "Python programming patterns"
|
1412
1252
|
price:
|
@@ -1421,7 +1261,6 @@ manifestation_00176:
|
|
1421
1261
|
manifestation_00177:
|
1422
1262
|
carrier_type_id: 1
|
1423
1263
|
language_id: 1
|
1424
|
-
isbn: 0000000177
|
1425
1264
|
updated_at: 2010-03-01 16:14:18 +09:00
|
1426
1265
|
original_title: "Beginning Perl for bioinformatics"
|
1427
1266
|
price:
|
@@ -1436,7 +1275,6 @@ manifestation_00177:
|
|
1436
1275
|
manifestation_00178:
|
1437
1276
|
carrier_type_id: 1
|
1438
1277
|
language_id: 1
|
1439
|
-
isbn: 0000000178
|
1440
1278
|
updated_at: 2010-03-01 16:14:18 +09:00
|
1441
1279
|
original_title: "Learning Perl"
|
1442
1280
|
price:
|
@@ -1451,7 +1289,6 @@ manifestation_00178:
|
|
1451
1289
|
manifestation_00179:
|
1452
1290
|
carrier_type_id: 1
|
1453
1291
|
language_id: 1
|
1454
|
-
isbn: 0000000179
|
1455
1292
|
updated_at: 2010-03-01 16:14:18 +09:00
|
1456
1293
|
original_title: "Effective awk programming"
|
1457
1294
|
price:
|
@@ -1466,7 +1303,6 @@ manifestation_00179:
|
|
1466
1303
|
manifestation_00180:
|
1467
1304
|
carrier_type_id: 1
|
1468
1305
|
language_id: 1
|
1469
|
-
isbn: 0000000180
|
1470
1306
|
updated_at: 2010-03-01 16:14:18 +09:00
|
1471
1307
|
original_title: "Python standard library / Annotated reference for Python 2.0"
|
1472
1308
|
price:
|
@@ -1481,7 +1317,6 @@ manifestation_00180:
|
|
1481
1317
|
manifestation_00181:
|
1482
1318
|
carrier_type_id: 1
|
1483
1319
|
language_id: 1
|
1484
|
-
isbn: 0000000181
|
1485
1320
|
updated_at: 2010-03-01 16:14:18 +09:00
|
1486
1321
|
original_title: "Programming Python"
|
1487
1322
|
price:
|
@@ -1496,7 +1331,6 @@ manifestation_00181:
|
|
1496
1331
|
manifestation_00182:
|
1497
1332
|
carrier_type_id: 1
|
1498
1333
|
language_id: 1
|
1499
|
-
isbn: 0000000182
|
1500
1334
|
updated_at: 2010-03-01 16:14:18 +09:00
|
1501
1335
|
original_title: "Perl CD bookshelf"
|
1502
1336
|
price:
|
@@ -1511,7 +1345,6 @@ manifestation_00182:
|
|
1511
1345
|
manifestation_00183:
|
1512
1346
|
carrier_type_id: 1
|
1513
1347
|
language_id: 1
|
1514
|
-
isbn: 0000000183
|
1515
1348
|
updated_at: 2010-03-01 16:14:18 +09:00
|
1516
1349
|
original_title: "Programming Perl"
|
1517
1350
|
price:
|
@@ -1526,7 +1359,6 @@ manifestation_00183:
|
|
1526
1359
|
manifestation_00184:
|
1527
1360
|
carrier_type_id: 1
|
1528
1361
|
language_id: 1
|
1529
|
-
isbn: 0000000184
|
1530
1362
|
updated_at: 2010-03-01 16:14:18 +09:00
|
1531
1363
|
original_title: "Sed & awk pocket reference / Sed and awk pocket reference"
|
1532
1364
|
price:
|
@@ -1541,7 +1373,6 @@ manifestation_00184:
|
|
1541
1373
|
manifestation_00185:
|
1542
1374
|
carrier_type_id: 1
|
1543
1375
|
language_id: 1
|
1544
|
-
isbn: 0000000185
|
1545
1376
|
updated_at: 2010-03-01 16:14:18 +09:00
|
1546
1377
|
original_title: "Perl power!"
|
1547
1378
|
price:
|
@@ -1556,7 +1387,6 @@ manifestation_00185:
|
|
1556
1387
|
manifestation_00186:
|
1557
1388
|
carrier_type_id: 1
|
1558
1389
|
language_id: 1
|
1559
|
-
isbn: 0000000186
|
1560
1390
|
updated_at: 2010-03-01 16:14:18 +09:00
|
1561
1391
|
original_title: "ATOKダイレクト API for Perl / Ruby?|?さらに使いこなす?|?ATOK.com"
|
1562
1392
|
price:
|
@@ -1571,7 +1401,6 @@ manifestation_00186:
|
|
1571
1401
|
manifestation_00187:
|
1572
1402
|
carrier_type_id: 1
|
1573
1403
|
language_id: 1
|
1574
|
-
isbn: 0000000187
|
1575
1404
|
updated_at: 2010-03-01 16:14:18 +09:00
|
1576
1405
|
original_title: "Welcome ― Ruby Enterprise Edition"
|
1577
1406
|
price:
|
@@ -1586,7 +1415,6 @@ manifestation_00187:
|
|
1586
1415
|
manifestation_00188:
|
1587
1416
|
carrier_type_id: 1
|
1588
1417
|
language_id: 1
|
1589
|
-
isbn: 0000000188
|
1590
1418
|
updated_at: 2010-03-01 16:14:18 +09:00
|
1591
1419
|
original_title: "Pythonクックブック"
|
1592
1420
|
price:
|
@@ -1601,7 +1429,6 @@ manifestation_00188:
|
|
1601
1429
|
manifestation_00189:
|
1602
1430
|
carrier_type_id: 1
|
1603
1431
|
language_id: 1
|
1604
|
-
isbn: 0000000189
|
1605
1432
|
updated_at: 2010-03-01 16:14:18 +09:00
|
1606
1433
|
original_title: "みんなのPython インデントの世界へようこそ! object oriented-lightweight language Python"
|
1607
1434
|
price:
|
@@ -1616,7 +1443,6 @@ manifestation_00189:
|
|
1616
1443
|
manifestation_00190:
|
1617
1444
|
carrier_type_id: 1
|
1618
1445
|
language_id: 1
|
1619
|
-
isbn: 0000000190
|
1620
1446
|
updated_at: 2010-03-01 16:14:18 +09:00
|
1621
1447
|
original_title: "Django | The Web framework for perfectionists with deadlines"
|
1622
1448
|
price:
|
@@ -1631,7 +1457,6 @@ manifestation_00190:
|
|
1631
1457
|
manifestation_00191:
|
1632
1458
|
carrier_type_id: 1
|
1633
1459
|
language_id: 1
|
1634
|
-
isbn: 0000000191
|
1635
1460
|
updated_at: 2010-03-01 16:14:18 +09:00
|
1636
1461
|
original_title: "fac-back-opac - Google Code"
|
1637
1462
|
price:
|
@@ -1646,7 +1471,6 @@ manifestation_00191:
|
|
1646
1471
|
manifestation_00192:
|
1647
1472
|
carrier_type_id: 1
|
1648
1473
|
language_id: 1
|
1649
|
-
isbn: 9784873113241
|
1650
1474
|
updated_at: 2010-03-01 16:14:18 +09:00
|
1651
1475
|
original_title: "Rubyクックブック"
|
1652
1476
|
price:
|
@@ -1661,8 +1485,6 @@ manifestation_00192:
|
|
1661
1485
|
manifestation_00193:
|
1662
1486
|
carrier_type_id: 1
|
1663
1487
|
language_id: 1
|
1664
|
-
isbn: 9784797340044
|
1665
|
-
isbn10: 4797340045
|
1666
1488
|
updated_at: 2010-03-01 16:14:18 +09:00
|
1667
1489
|
original_title: "Rubyレシピブック"
|
1668
1490
|
price:
|
@@ -1677,7 +1499,6 @@ manifestation_00193:
|
|
1677
1499
|
manifestation_00194:
|
1678
1500
|
carrier_type_id: 1
|
1679
1501
|
language_id: 1
|
1680
|
-
isbn: 0000000194
|
1681
1502
|
updated_at: 2010-03-01 16:14:18 +09:00
|
1682
1503
|
original_title: "初めてのPerl 第3版"
|
1683
1504
|
price:
|
@@ -1692,7 +1513,6 @@ manifestation_00194:
|
|
1692
1513
|
manifestation_00195:
|
1693
1514
|
carrier_type_id: 1
|
1694
1515
|
language_id: 1
|
1695
|
-
isbn: 0000000195
|
1696
1516
|
updated_at: 2010-03-01 16:14:18 +09:00
|
1697
1517
|
original_title: "続・初めてのPerl 改訂版"
|
1698
1518
|
price:
|
@@ -1707,7 +1527,6 @@ manifestation_00195:
|
|
1707
1527
|
manifestation_00196:
|
1708
1528
|
carrier_type_id: 1
|
1709
1529
|
language_id: 1
|
1710
|
-
isbn: 9784797336610
|
1711
1530
|
updated_at: 2010-03-01 16:14:18 +09:00
|
1712
1531
|
original_title: "たのしいRuby 第2版 Rubyではじめる気軽なプログラミング"
|
1713
1532
|
price:
|
@@ -1722,7 +1541,6 @@ manifestation_00196:
|
|
1722
1541
|
manifestation_00197:
|
1723
1542
|
carrier_type_id: 1
|
1724
1543
|
language_id: 1
|
1725
|
-
isbn:
|
1726
1544
|
updated_at: 2010-03-15 16:14:18 +09:00
|
1727
1545
|
original_title: "Ruby"
|
1728
1546
|
price:
|
@@ -1737,7 +1555,6 @@ manifestation_00197:
|
|
1737
1555
|
manifestation_00198:
|
1738
1556
|
carrier_type_id: 1
|
1739
1557
|
language_id: 1
|
1740
|
-
isbn:
|
1741
1558
|
updated_at: 2010-03-15 16:14:18 +09:00
|
1742
1559
|
original_title: "紅玉の本"
|
1743
1560
|
price:
|
@@ -1752,7 +1569,6 @@ manifestation_00198:
|
|
1752
1569
|
manifestation_00201:
|
1753
1570
|
carrier_type_id: 1
|
1754
1571
|
language_id: 1
|
1755
|
-
isbn: 9876543210201
|
1756
1572
|
updated_at: 2010-03-01 16:14:18 +09:00
|
1757
1573
|
original_title: "テスト雑誌2005年1月号"
|
1758
1574
|
price:
|
@@ -1765,11 +1581,10 @@ manifestation_00201:
|
|
1765
1581
|
width:
|
1766
1582
|
created_at: 2007-11-19 17:55:41 UTC
|
1767
1583
|
frequency_id: 3
|
1768
|
-
|
1584
|
+
periodical: true
|
1769
1585
|
manifestation_00202:
|
1770
1586
|
carrier_type_id: 1
|
1771
1587
|
language_id: 1
|
1772
|
-
isbn: 9876543210202
|
1773
1588
|
updated_at: 2010-03-01 16:14:18 +09:00
|
1774
1589
|
original_title: "テスト雑誌2月号"
|
1775
1590
|
price:
|
@@ -1782,14 +1597,13 @@ manifestation_00202:
|
|
1782
1597
|
width:
|
1783
1598
|
created_at: 2007-11-19 17:55:41 UTC
|
1784
1599
|
frequency_id: 3
|
1785
|
-
issn: 12345678
|
1786
1600
|
serial_number: 2
|
1787
1601
|
volume_number: 1
|
1788
1602
|
issue_number: 2
|
1603
|
+
periodical: true
|
1789
1604
|
manifestation_00203:
|
1790
1605
|
carrier_type_id: 1
|
1791
1606
|
language_id: 1
|
1792
|
-
isbn: 9876543210203
|
1793
1607
|
updated_at: 2010-03-01 16:14:18 +09:00
|
1794
1608
|
original_title: "テスト単行本記事2005"
|
1795
1609
|
price:
|
@@ -1802,12 +1616,12 @@ manifestation_00203:
|
|
1802
1616
|
width:
|
1803
1617
|
created_at: 2010-03-03 17:00:00 UTC
|
1804
1618
|
frequency_id: 1
|
1619
|
+
periodical: false
|
1805
1620
|
manifestation_00204:
|
1806
1621
|
carrier_type_id: 1
|
1807
1622
|
language_id: 1
|
1808
|
-
isbn: 5555567890001
|
1809
1623
|
updated_at: 2010-03-03 20:00:00 +09:00
|
1810
|
-
original_title: "テスト雑誌1月号の記事1"
|
1624
|
+
original_title: "テスト雑誌1月号の記事1 2005"
|
1811
1625
|
price:
|
1812
1626
|
manifestation_identifier:
|
1813
1627
|
depth:
|
@@ -1817,10 +1631,10 @@ manifestation_00204:
|
|
1817
1631
|
height:
|
1818
1632
|
width:
|
1819
1633
|
created_at: 2010-03-03 20:00:00 UTC
|
1634
|
+
periodical: true
|
1820
1635
|
manifestation_00205:
|
1821
1636
|
carrier_type_id: 1
|
1822
1637
|
language_id: 1
|
1823
|
-
isbn: 5555567890002
|
1824
1638
|
updated_at: 2010-03-03 20:00:00 +09:00
|
1825
1639
|
original_title: "テスト雑誌1月号の記事2"
|
1826
1640
|
price:
|
@@ -1835,7 +1649,6 @@ manifestation_00205:
|
|
1835
1649
|
manifestation_00206:
|
1836
1650
|
carrier_type_id: 1
|
1837
1651
|
language_id: 1
|
1838
|
-
isbn: 5555567890003
|
1839
1652
|
updated_at: 2010-03-03 20:00:00 +09:00
|
1840
1653
|
original_title: "テスト雑誌2月号の記事1"
|
1841
1654
|
price:
|
@@ -1850,7 +1663,6 @@ manifestation_00206:
|
|
1850
1663
|
manifestation_00207:
|
1851
1664
|
carrier_type_id: 1
|
1852
1665
|
language_id: 1
|
1853
|
-
isbn: 9876543210207
|
1854
1666
|
updated_at: 2010-03-03 20:00:00 +09:00
|
1855
1667
|
original_title: "試験単行本"
|
1856
1668
|
price:
|
@@ -1865,7 +1677,6 @@ manifestation_00207:
|
|
1865
1677
|
manifestation_00208:
|
1866
1678
|
carrier_type_id: 1
|
1867
1679
|
language_id: 1
|
1868
|
-
isbn:
|
1869
1680
|
updated_at: 2010-03-16 11:00:00 +09:00
|
1870
1681
|
original_title: "ある出版物"
|
1871
1682
|
price:
|
@@ -1880,7 +1691,6 @@ manifestation_00208:
|
|
1880
1691
|
manifestation_00209:
|
1881
1692
|
carrier_type_id: 1
|
1882
1693
|
language_id: 1
|
1883
|
-
isbn:
|
1884
1694
|
updated_at: 2010-03-19 13:00:00 +09:00
|
1885
1695
|
original_title: "権限確認Admin専用1"
|
1886
1696
|
price:
|
@@ -1896,7 +1706,6 @@ manifestation_00209:
|
|
1896
1706
|
manifestation_00210:
|
1897
1707
|
carrier_type_id: 1
|
1898
1708
|
language_id: 1
|
1899
|
-
isbn:
|
1900
1709
|
updated_at: 2010-03-19 13:00:00 +09:00
|
1901
1710
|
original_title: "権限確認Admin専用2"
|
1902
1711
|
price:
|
@@ -1913,7 +1722,6 @@ manifestation_00210:
|
|
1913
1722
|
manifestation_00211:
|
1914
1723
|
carrier_type_id: 1
|
1915
1724
|
language_id: 1
|
1916
|
-
isbn:
|
1917
1725
|
updated_at: 2010-03-19 13:00:00 +09:00
|
1918
1726
|
original_title: "権限確認Librarian以上用1"
|
1919
1727
|
price:
|
@@ -1930,7 +1738,6 @@ manifestation_00211:
|
|
1930
1738
|
manifestation_00212:
|
1931
1739
|
carrier_type_id: 1
|
1932
1740
|
language_id: 1
|
1933
|
-
isbn:
|
1934
1741
|
updated_at: 2010-03-19 13:00:00 +09:00
|
1935
1742
|
original_title: "権限確認Librarian以上用2"
|
1936
1743
|
price:
|
@@ -1947,7 +1754,6 @@ manifestation_00212:
|
|
1947
1754
|
manifestation_00213:
|
1948
1755
|
carrier_type_id: 1
|
1949
1756
|
language_id: 1
|
1950
|
-
isbn:
|
1951
1757
|
updated_at: 2010-03-19 13:00:00 +09:00
|
1952
1758
|
original_title: "権限確認User以上用1"
|
1953
1759
|
price:
|
@@ -1964,7 +1770,6 @@ manifestation_00213:
|
|
1964
1770
|
manifestation_00214:
|
1965
1771
|
carrier_type_id: 1
|
1966
1772
|
language_id: 1
|
1967
|
-
isbn:
|
1968
1773
|
updated_at: 2010-03-19 13:00:00 +09:00
|
1969
1774
|
original_title: "権限確認User以上用2"
|
1970
1775
|
price:
|
@@ -1981,7 +1786,6 @@ manifestation_00214:
|
|
1981
1786
|
manifestation_00215:
|
1982
1787
|
carrier_type_id: 1
|
1983
1788
|
language_id: 1
|
1984
|
-
isbn:
|
1985
1789
|
updated_at: 2010-03-19 13:00:00 +09:00
|
1986
1790
|
original_title: "権限確認"
|
1987
1791
|
price:
|
@@ -1998,7 +1802,6 @@ manifestation_00215:
|
|
1998
1802
|
manifestation_00216:
|
1999
1803
|
carrier_type_id: 1
|
2000
1804
|
language_id: 1
|
2001
|
-
isbn:
|
2002
1805
|
updated_at: 2010-03-19 13:00:00 +09:00
|
2003
1806
|
original_title: "権限確認"
|
2004
1807
|
price:
|
@@ -2013,9 +1816,68 @@ manifestation_00216:
|
|
2013
1816
|
required_role_id: 1
|
2014
1817
|
repository_content: false
|
2015
1818
|
|
2016
|
-
|
2017
|
-
|
2018
|
-
|
2019
|
-
|
2020
|
-
|
1819
|
+
# == Schema Information
|
1820
|
+
#
|
1821
|
+
# Table name: manifestations
|
1822
|
+
#
|
1823
|
+
# id :integer not null, primary key
|
1824
|
+
# original_title :text not null
|
1825
|
+
# title_alternative :text
|
1826
|
+
# title_transcription :text
|
1827
|
+
# classification_number :string(255)
|
1828
|
+
# manifestation_identifier :string(255)
|
1829
|
+
# date_of_publication :datetime
|
1830
|
+
# date_copyrighted :datetime
|
1831
|
+
# created_at :datetime not null
|
1832
|
+
# updated_at :datetime not null
|
1833
|
+
# deleted_at :datetime
|
1834
|
+
# access_address :string(255)
|
1835
|
+
# language_id :integer default(1), not null
|
1836
|
+
# carrier_type_id :integer default(1), not null
|
1837
|
+
# extent_id :integer default(1), not null
|
1838
|
+
# start_page :integer
|
1839
|
+
# end_page :integer
|
1840
|
+
# height :integer
|
1841
|
+
# width :integer
|
1842
|
+
# depth :integer
|
1843
|
+
# price :integer
|
1844
|
+
# fulltext :text
|
1845
|
+
# volume_number_string :string(255)
|
1846
|
+
# issue_number_string :string(255)
|
1847
|
+
# serial_number_string :string(255)
|
1848
|
+
# edition :integer
|
1849
|
+
# note :text
|
1850
|
+
# repository_content :boolean default(FALSE), not null
|
1851
|
+
# lock_version :integer default(0), not null
|
1852
|
+
# required_role_id :integer default(1), not null
|
1853
|
+
# state :string(255)
|
1854
|
+
# required_score :integer default(0), not null
|
1855
|
+
# frequency_id :integer default(1), not null
|
1856
|
+
# subscription_master :boolean default(FALSE), not null
|
1857
|
+
# attachment_file_name :string(255)
|
1858
|
+
# attachment_content_type :string(255)
|
1859
|
+
# attachment_file_size :integer
|
1860
|
+
# attachment_updated_at :datetime
|
1861
|
+
# title_alternative_transcription :text
|
1862
|
+
# description :text
|
1863
|
+
# abstract :text
|
1864
|
+
# available_at :datetime
|
1865
|
+
# valid_until :datetime
|
1866
|
+
# date_submitted :datetime
|
1867
|
+
# date_accepted :datetime
|
1868
|
+
# date_caputured :datetime
|
1869
|
+
# pub_date :string(255)
|
1870
|
+
# edition_string :string(255)
|
1871
|
+
# volume_number :integer
|
1872
|
+
# issue_number :integer
|
1873
|
+
# serial_number :integer
|
1874
|
+
# content_type_id :integer default(1)
|
1875
|
+
# year_of_publication :integer
|
1876
|
+
# attachment_meta :text
|
1877
|
+
# month_of_publication :integer
|
1878
|
+
# fulltext_content :boolean
|
1879
|
+
# doi :string(255)
|
1880
|
+
# periodical :boolean
|
1881
|
+
# statement_of_responsibility :text
|
1882
|
+
#
|
2021
1883
|
|