enju_library 0.1.0.pre33 → 0.1.0.pre34
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/app/controllers/accepts_controller.rb +14 -14
- data/app/controllers/baskets_controller.rb +15 -21
- data/app/controllers/libraries_controller.rb +12 -12
- data/app/controllers/library_groups_controller.rb +5 -6
- data/app/controllers/shelves_controller.rb +17 -17
- data/app/controllers/subscribes_controller.rb +10 -10
- data/app/controllers/subscriptions_controller.rb +11 -11
- data/app/models/accept.rb +7 -12
- data/app/models/basket.rb +6 -6
- data/app/models/bookstore.rb +2 -2
- data/app/models/budget_type.rb +1 -1
- data/app/models/library.rb +8 -8
- data/app/models/library_group.rb +5 -21
- data/app/models/request_status_type.rb +1 -1
- data/app/models/request_type.rb +1 -1
- data/app/models/search_engine.rb +6 -6
- data/app/models/shelf.rb +5 -5
- data/app/models/subscribe.rb +3 -3
- data/app/models/subscription.rb +5 -5
- data/app/views/accepts/_form.html.erb +1 -1
- data/app/views/accepts/_list.html.erb +3 -3
- data/app/views/accepts/edit.html.erb +1 -1
- data/app/views/accepts/index.html.erb +6 -6
- data/app/views/accepts/{index.csv.erb → index.txt.csv} +0 -0
- data/app/views/accepts/new.html.erb +1 -1
- data/app/views/accepts/show.html.erb +2 -2
- data/app/views/baskets/edit.html.erb +2 -2
- data/app/views/baskets/index.html.erb +3 -2
- data/app/views/baskets/new.html.erb +6 -6
- data/app/views/baskets/show.html.erb +1 -1
- data/app/views/bookstores/_form.html.erb +3 -3
- data/app/views/bookstores/edit.html.erb +1 -1
- data/app/views/bookstores/index.html.erb +3 -3
- data/app/views/bookstores/new.html.erb +1 -1
- data/app/views/bookstores/show.html.erb +1 -1
- data/app/views/budget_types/_form.html.erb +2 -2
- data/app/views/budget_types/edit.html.erb +1 -1
- data/app/views/budget_types/index.html.erb +6 -6
- data/app/views/budget_types/new.html.erb +1 -1
- data/app/views/budget_types/show.html.erb +1 -1
- data/app/views/libraries/_calendar.html.erb +2 -2
- data/app/views/libraries/_form.html.erb +12 -12
- data/app/views/libraries/edit.html.erb +1 -1
- data/app/views/libraries/index.html.erb +18 -14
- data/app/views/libraries/new.html.erb +1 -1
- data/app/views/libraries/show.html.erb +7 -7
- data/app/views/library_groups/_form.html.erb +4 -4
- data/app/views/library_groups/edit.html.erb +1 -1
- data/app/views/library_groups/index.html.erb +2 -2
- data/app/views/library_groups/new.html.erb +1 -1
- data/app/views/library_groups/show.html.erb +2 -2
- data/app/views/request_status_types/edit.html.erb +1 -1
- data/app/views/request_status_types/index.html.erb +3 -3
- data/app/views/request_status_types/new.html.erb +1 -1
- data/app/views/request_status_types/show.html.erb +1 -1
- data/app/views/request_types/edit.html.erb +1 -1
- data/app/views/request_types/index.html.erb +3 -3
- data/app/views/request_types/new.html.erb +1 -1
- data/app/views/request_types/show.html.erb +1 -1
- data/app/views/search_engines/_form.html.erb +4 -4
- data/app/views/search_engines/edit.html.erb +1 -1
- data/app/views/search_engines/index.html.erb +3 -3
- data/app/views/search_engines/new.html.erb +1 -1
- data/app/views/search_engines/show.html.erb +1 -1
- data/app/views/shelves/_form.html.erb +4 -4
- data/app/views/shelves/_library_facet.html.erb +1 -1
- data/app/views/shelves/edit.html.erb +1 -1
- data/app/views/shelves/index.html.erb +5 -5
- data/app/views/shelves/new.html.erb +2 -2
- data/app/views/shelves/show.html.erb +5 -5
- data/app/views/shelves/show.mobile.erb +1 -1
- data/app/views/subscribes/edit.html.erb +3 -3
- data/app/views/subscribes/index.html.erb +3 -3
- data/app/views/subscribes/new.html.erb +8 -8
- data/app/views/subscribes/show.html.erb +1 -1
- data/app/views/subscriptions/edit.html.erb +3 -3
- data/app/views/subscriptions/index.html.erb +4 -4
- data/app/views/subscriptions/new.html.erb +3 -3
- data/app/views/subscriptions/show.html.erb +1 -1
- data/config/locales/translation_ja.yml +1 -1
- data/db/migrate/080_create_library_groups.rb +0 -1
- data/lib/enju_library/version.rb +1 -1
- data/lib/generators/enju_library/setup/templates/db/fixtures/request_status_types.yml +37 -0
- data/lib/generators/enju_library/setup/templates/db/fixtures/request_types.yml +29 -0
- data/spec/controllers/accepts_controller_spec.rb +1 -1
- data/spec/controllers/baskets_controller_spec.rb +30 -30
- data/spec/controllers/bookstores_controller_spec.rb +21 -21
- data/spec/controllers/budget_types_controller_spec.rb +1 -1
- data/spec/controllers/libraries_controller_spec.rb +24 -24
- data/spec/controllers/library_groups_controller_spec.rb +7 -7
- data/spec/controllers/request_status_types_controller_spec.rb +21 -21
- data/spec/controllers/request_types_controller_spec.rb +21 -21
- data/spec/controllers/search_engines_controller_spec.rb +21 -21
- data/spec/controllers/shelves_controller_spec.rb +20 -20
- data/spec/controllers/subscribes_controller_spec.rb +21 -21
- data/spec/controllers/subscriptions_controller_spec.rb +21 -21
- data/spec/dummy/app/helpers/application_helper.rb +1 -0
- data/spec/dummy/app/models/user.rb +6 -86
- data/spec/dummy/db/development.sqlite3 +0 -0
- data/spec/dummy/db/migrate/001_create_agents.rb +0 -8
- data/spec/dummy/db/migrate/{20111201155513_add_devise_to_users.rb → 002_devise_create_users.rb} +18 -16
- data/spec/dummy/db/migrate/005_create_manifestations.rb +7 -24
- data/spec/dummy/db/migrate/006_create_items.rb +0 -6
- data/spec/dummy/db/migrate/041_create_roles.rb +13 -0
- data/spec/dummy/db/migrate/077_create_user_groups.rb +3 -7
- data/spec/dummy/db/migrate/112_create_frequencies.rb +12 -0
- data/spec/dummy/db/migrate/117_create_form_of_works.rb +12 -0
- data/spec/dummy/db/migrate/154_create_messages.rb +0 -1
- data/spec/dummy/db/migrate/20080819181903_create_message_requests.rb +0 -2
- data/spec/dummy/db/migrate/20081027150907_create_picture_files.rb +0 -1
- data/spec/dummy/db/migrate/20081028083142_create_agent_import_files.rb +20 -0
- data/spec/dummy/db/migrate/20081028083208_create_resource_import_files.rb +20 -0
- data/spec/dummy/db/migrate/20081028093607_create_event_import_files.rb +0 -2
- data/spec/dummy/db/migrate/20081212080038_create_manifestation_checkout_stats.rb +0 -1
- data/spec/dummy/db/migrate/20081215094302_create_user_checkout_stats.rb +0 -1
- data/spec/dummy/db/migrate/20081216190724_create_manifestation_reserve_stats.rb +0 -1
- data/spec/dummy/db/migrate/20081220023628_create_user_reserve_stats.rb +0 -1
- data/spec/dummy/db/migrate/20090321130448_add_completed_at_to_user_checkout_stat.rb +0 -4
- data/spec/dummy/db/migrate/20090705212043_add_attachments_attachment_to_manifestation.rb +15 -0
- data/spec/dummy/db/migrate/20090719201843_create_extents.rb +12 -0
- data/spec/dummy/db/migrate/20090720091106_create_medium_of_performances.rb +12 -0
- data/spec/dummy/db/migrate/20090720091429_create_content_types.rb +12 -0
- data/spec/dummy/db/migrate/20091025080447_create_licenses.rb +12 -0
- data/spec/dummy/db/migrate/20100129142347_create_import_requests.rb +14 -0
- data/spec/dummy/db/migrate/{20111201163718_create_user_has_roles.rb → 20100606065209_create_user_has_roles.rb} +2 -0
- data/spec/dummy/db/migrate/20100925043847_create_resource_import_results.rb +15 -0
- data/spec/dummy/db/migrate/20100925074559_create_agent_import_results.rb +12 -0
- data/spec/dummy/db/migrate/20110318183304_add_valid_period_for_new_user_to_user_group.rb +0 -2
- data/spec/dummy/db/migrate/20110603184217_add_edit_mode_to_resource_import_file.rb +9 -0
- data/spec/dummy/db/migrate/20120129020544_add_budget_type_id_to_item.rb +6 -0
- data/spec/dummy/db/migrate/20120319120638_add_content_type_id_to_manifestation.rb +6 -0
- data/spec/dummy/db/migrate/20120410104851_add_year_of_publication_to_manifestation.rb +5 -0
- data/spec/dummy/db/migrate/20120413161340_add_fingerprint_to_resource_import_file.rb +5 -0
- data/spec/dummy/db/migrate/20120413161403_add_fingerprint_to_agent_import_file.rb +5 -0
- data/spec/dummy/db/migrate/20120413170705_add_error_message_to_resource_import_file.rb +5 -0
- data/spec/dummy/db/migrate/20120413170720_add_error_message_to_agent_import_file.rb +5 -0
- data/spec/dummy/db/migrate/20120415164821_add_attachment_meta_to_manifestation.rb +5 -0
- data/spec/dummy/db/migrate/20120418081407_add_month_of_publication_to_manifestation.rb +5 -0
- data/spec/dummy/db/migrate/20120511072422_add_agent_identifier_to_agent.rb +6 -0
- data/spec/dummy/db/migrate/20120602141129_add_edit_mode_to_agent_import_file.rb +5 -0
- data/spec/dummy/db/migrate/20121116031206_add_fulltext_content_to_manifestation.rb +5 -0
- data/spec/dummy/db/migrate/20121116033446_add_doi_to_manifestation.rb +6 -0
- data/spec/dummy/db/migrate/20130221154434_add_additional_attributes_to_user.rb +16 -0
- data/spec/dummy/db/migrate/{20111201121844_create_roles.rb → 20130506175303_create_identifier_types.rb} +2 -2
- data/spec/dummy/db/migrate/20130506175834_create_identifiers.rb +15 -0
- data/spec/dummy/db/migrate/20130509185724_add_statement_of_responsibility_to_manifestation.rb +5 -0
- data/spec/dummy/db/migrate/20140110122216_create_user_import_files.rb +18 -0
- data/spec/dummy/db/migrate/20140110131010_create_user_import_results.rb +11 -0
- data/spec/dummy/db/migrate/20140122054321_create_profiles.rb +20 -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/20140523171309_create_event_import_file_transitions.rb +14 -0
- data/spec/dummy/db/migrate/20140524020735_create_agent_import_file_transitions.rb +14 -0
- data/spec/dummy/db/migrate/20140524074813_create_user_import_file_transitions.rb +14 -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/20140610123439_drop_email_unique_constraint_enju_leaf_rc10.rb +11 -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/20140628071719_add_user_encoding_to_event_import_file.rb +5 -0
- data/spec/dummy/db/migrate/20140628072217_add_user_encoding_to_user_import_file.rb +5 -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/20140709113413_create_user_export_files.rb +11 -0
- data/spec/dummy/db/migrate/20140709113905_create_user_export_file_transitions.rb +14 -0
- data/spec/dummy/db/migrate/20140720140916_add_binding_item_identifier_to_item.rb +8 -0
- data/spec/dummy/db/migrate/20140720170714_add_default_library_id_to_user_import_file.rb +5 -0
- data/spec/dummy/db/migrate/20140720170735_add_default_user_group_id_to_user_import_file.rb +5 -0
- data/spec/dummy/db/migrate/20140720192418_add_default_library_id_to_event_import_file.rb +5 -0
- data/spec/dummy/db/migrate/20140721151416_add_default_shelf_id_to_resource_import_file.rb +5 -0
- data/spec/dummy/db/migrate/20140802082007_add_manifestation_id_to_item.rb +6 -0
- data/spec/dummy/db/migrate/20140810061942_add_user_id_to_user_checkout_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/20140811031145_add_expired_at_to_profile.rb +5 -0
- data/spec/dummy/db/schema.rb +453 -74
- data/spec/dummy/db/test.sqlite3 +0 -0
- data/spec/dummy/solr/conf/admin-extra.html +31 -0
- data/spec/dummy/solr/conf/elevate.xml +36 -0
- data/spec/dummy/solr/conf/mapping-ISOLatin1Accent.txt +246 -0
- data/spec/dummy/solr/conf/protwords.txt +21 -0
- data/spec/dummy/solr/conf/schema.xml +255 -0
- data/spec/dummy/solr/conf/scripts.conf +24 -0
- data/spec/dummy/solr/conf/solrconfig.xml +667 -0
- data/spec/dummy/solr/conf/spellings.txt +2 -0
- data/spec/dummy/solr/conf/stopwords.txt +58 -0
- data/spec/dummy/solr/conf/synonyms.txt +31 -0
- data/spec/dummy/solr/default/data/index/_1vz.fdt +0 -0
- data/spec/dummy/solr/default/data/index/_1vz.fdx +0 -0
- data/spec/dummy/solr/default/data/index/_1vz.fnm +0 -0
- data/spec/dummy/solr/default/data/index/_1vz.nvd +0 -0
- data/spec/dummy/solr/default/data/index/_1vz.nvm +0 -0
- data/spec/dummy/solr/default/data/index/_1vz.si +0 -0
- data/spec/dummy/solr/default/data/index/_1vz_Lucene41_0.doc +0 -0
- data/spec/dummy/solr/default/data/index/_1vz_Lucene41_0.pos +0 -0
- data/spec/dummy/solr/default/data/index/_1vz_Lucene41_0.tim +0 -0
- data/spec/dummy/solr/default/data/index/_1vz_Lucene41_0.tip +0 -0
- data/spec/dummy/solr/default/data/index/segments.gen +0 -0
- data/spec/dummy/solr/default/data/index/segments_36s +0 -0
- data/spec/dummy/solr/default/data/tlog/tlog.0000000000000004121 +0 -0
- data/spec/dummy/solr/default/data/tlog/tlog.0000000000000004122 +0 -0
- data/spec/dummy/solr/default/data/tlog/tlog.0000000000000004123 +0 -0
- data/spec/dummy/solr/default/data/tlog/tlog.0000000000000004124 +0 -0
- data/spec/dummy/solr/default/data/tlog/tlog.0000000000000004125 +0 -0
- data/spec/dummy/solr/default/data/tlog/tlog.0000000000000004126 +0 -0
- data/spec/dummy/solr/default/data/tlog/tlog.0000000000000004127 +0 -0
- data/spec/dummy/solr/default/data/tlog/tlog.0000000000000004128 +0 -0
- data/spec/dummy/solr/default/data/tlog/tlog.0000000000000004129 +0 -0
- data/spec/dummy/solr/default/data/tlog/tlog.0000000000000004130 +0 -0
- data/spec/dummy/solr/development/data/index/segments.gen +0 -0
- data/spec/dummy/solr/development/data/index/segments_1 +0 -0
- data/spec/dummy/solr/solr.xml +8 -0
- data/spec/dummy/solr/test/data/index/segments.gen +0 -0
- data/spec/dummy/solr/test/data/index/segments_1 +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/0440b81b0aae840cf287a686585a8cec +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/0483120d2ec851526d1beb322a87b34d +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/096c3408c7592aaeb756778ce1775f16 +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/09bc1fff0c1477a69e8cd36ed3fe771f +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/0c0062cfb97ef1437ab0020e724876c6 +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/0c8f59d97121b79a2e2a0d009d6da9c3 +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/0e3e358e4fe4601ba5e435f6d0c86f12 +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/0e7592ffc95bd8b73854cc6453c64e33 +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/0e8e7445a50fad85ab545fa283abf5b7 +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/1260173072d9796c1ae7d7752b9916c3 +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/129cec5384c0f26fcfb0ce65048298c5 +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/1572dfd6f1e555f4be1aa60ddc3cb0c0 +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/17c9f5037fae5b6ee1fc7466948001b5 +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/1c1fbab93e4552626da626e0dbe70c74 +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/1d450e5266eb3d679107d9a36dc22559 +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/2258e83cd2e464c650334b6a72a87cb6 +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/241a5d6ad6008e25a64a5092e8361ae8 +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/2bf9c36d2bc8f8ca084394d139ce8edf +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/2f09f58943a88f21e3a0318621391785 +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/2ffe508d0533d0afd2a37bb574eda40d +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/301d9ec69800d0dc163460a12304676a +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/3fbe8dcb9a5b2fbc7a22cc4b1ca4aa11 +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/45f3c74e1e31b58d9bda6908d5623290 +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/49d32c13d390c1b80d8b2705aac86579 +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/4aa18096a209e515f5f1df487622cdf4 +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/4c4d6b8fc44a49272793290caed29e24 +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/4f877aaa67a006f34ad9643d7f82b6dc +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/50e64f45f0cb4cee52fd3f3908f89a82 +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/5762cca052dd5d3eb8bb35e2ed9a59b8 +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/5ab3fcfe4078a2bb14bd91e9ce73ef29 +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/5afd4f8068bdfb3d99f5ec4034d2410c +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/5db165a5b217a384aaa8885d6bcaf193 +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/5dd0b61707256a0514d7f5e224188a1d +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/65a8d4d288e5f082f0166aa7be7a2464 +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/66e8ff0ee49363fdd0e1866807515228 +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/6738d1a07584e4b732d197e10afd6a19 +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/6a83d3fd052b7923111a0ed838ff53e0 +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/6a958d3fc0999c71aa19bae06bacdeb6 +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/6df57ded762c97e6755758008bb3a660 +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/6fdb4513af157010ef79b56df44d665e +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/7289cf11ae787f5e0639528dc155bffb +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/7c4b2e5317023fb751fa54ad41f95101 +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/7eea3b9e54d8a23d8a05d354f1a93f51 +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/811e5198d0dc4efe02d28c0c2215e207 +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/84c8a64682205dba3f8edd60fc1ec8e5 +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/8a73d1e841a4716b4f18ed4a23622092 +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/8be2a49de16592553e0d0a09d92bf6ef +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/8f72bcc7284bf844ac8bec5dc4b71482 +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/9604073a83f822f13caaabd7e157bbbb +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/979eaef456657e4fc79b9b967aef0587 +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/9ad166e60e3d477c78328181979a7b77 +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/9b78afe804f3870fbafb97d2d62e5f6b +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/a296264dcc89e1f8ab6382e678ffbe38 +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/a3cea75f1356ef55329e78f86b4c72b1 +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/a5bf9fc3822019953dee89c6ae2b32ea +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/a7387ef33f472faf58df3dd72623fbc6 +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/aa2e1ada35daa496bb08e85fcb817536 +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/abee2d4cb18d15789dcdc9c680f3e6de +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/ae706bde720905edffe622ae48f15740 +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/b53fd979e77975479427d0b481b004d4 +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/b57a0579a21bd3280d1db6f42550e5c7 +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/b80bed2ef62ec65384f12272c185a9a8 +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/bf33fb298844af06e55096420b989e3b +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/c3e97042b232e677d67679e11ebdb8ec +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/c4700cd893db92917b893a0e48f57a24 +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/c488c91e58a235d36a0ff8058e5a1004 +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/c4a984c6feb506f3e1f9120a8d029bda +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/c5ef868ba5f891f326945efdd43e3170 +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/c6283ae59dff510d5a2bb2bb9194d045 +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/c6bbf5ca5c9b58807ba226fde0ccc60f +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/ca5b985126fb033dec26015bd08d56ee +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/d26b3581068a8ec8af52f3b2cce8c32a +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/d34b5413caa9407126db68d5d590804a +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/d4ac74c17332ad931b72f42d7997fcc0 +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/d648a0b0abb7fd7ff579d72ffe033d50 +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/db6425848529903bdee75792cb2ed79a +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/dd672deb061233e0db1d2f413d27213f +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/e1fcfb0faa3c12467a1c35251e04c8b1 +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/e22f9546f5d75bd3549886e979dcb96e +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/e44b4816bd1b2a7ba674c978dad35f3a +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/e513ee1af8fa24dcb4f473c18c09bf87 +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/e8142c2b10712e79b6d2c2cba0894b4c +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/f964bf5dc3949774db54d7cda5761d43 +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/fa8059ddbbe226114ba0c178de3fc31b +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/fa8e81ce1d45228121b9df5618542190 +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/fbc69737b9b0dc77871fa2bb8647a38a +0 -0
- data/spec/factories/accepts.rb +12 -0
- data/spec/factories/budget_types.rb +13 -0
- data/spec/factories/profile.rb +10 -0
- data/spec/factories/user.rb +21 -12
- data/spec/fixtures/agents.yml +0 -12
- data/spec/fixtures/items.yml +49 -37
- data/spec/fixtures/libraries.yml +25 -28
- data/spec/fixtures/library_groups.yml +13 -18
- data/spec/fixtures/manifestation_checkout_stats.yml +0 -3
- data/spec/fixtures/manifestation_reserve_stats.yml +0 -3
- data/spec/fixtures/message_requests.yml +0 -3
- data/spec/fixtures/profiles.yml +98 -0
- data/spec/fixtures/request_status_types.yml +4 -5
- data/spec/fixtures/request_types.yml +4 -5
- data/spec/fixtures/reserve_transitions.yml +88 -0
- data/spec/fixtures/shelves.yml +7 -7
- data/spec/fixtures/user_checkout_stats.yml +0 -3
- data/spec/fixtures/user_groups.yml +3 -3
- data/spec/fixtures/user_reserve_stats.yml +0 -3
- data/spec/fixtures/users.yml +0 -55
- data/spec/models/library_group_spec.rb +0 -2
- data/spec/views/budget_types/index.html.erb_spec.rb +2 -2
- metadata +417 -28
- data/app/models/library_group_sweeper.rb +0 -12
- data/spec/dummy/db/migrate/20110425133109_add_issn_to_series_statement.rb +0 -9
- data/spec/dummy/db/migrate/20110618091240_add_periodical_to_series_statement.rb +0 -9
- data/spec/dummy/db/migrate/20110916053430_rename_manifestation_number_list_to_number_string.rb +0 -13
- data/spec/dummy/db/migrate/20111201155456_create_users.rb +0 -16
@@ -13,7 +13,7 @@ describe SubscribesController do
|
|
13
13
|
end
|
14
14
|
|
15
15
|
describe "When logged in as Administrator" do
|
16
|
-
|
16
|
+
login_fixture_admin
|
17
17
|
|
18
18
|
it "assigns all subscribes as @subscribes" do
|
19
19
|
get :index
|
@@ -22,7 +22,7 @@ describe SubscribesController do
|
|
22
22
|
end
|
23
23
|
|
24
24
|
describe "When logged in as Librarian" do
|
25
|
-
|
25
|
+
login_fixture_librarian
|
26
26
|
|
27
27
|
it "assigns all subscribes as @subscribes" do
|
28
28
|
get :index
|
@@ -31,7 +31,7 @@ describe SubscribesController do
|
|
31
31
|
end
|
32
32
|
|
33
33
|
describe "When logged in as User" do
|
34
|
-
|
34
|
+
login_fixture_user
|
35
35
|
|
36
36
|
it "should be forbidden" do
|
37
37
|
get :index
|
@@ -51,7 +51,7 @@ describe SubscribesController do
|
|
51
51
|
|
52
52
|
describe "GET show" do
|
53
53
|
describe "When logged in as Administrator" do
|
54
|
-
|
54
|
+
login_fixture_admin
|
55
55
|
|
56
56
|
it "assigns the requested subscribe as @subscribe" do
|
57
57
|
subscribe = FactoryGirl.create(:subscribe)
|
@@ -61,7 +61,7 @@ describe SubscribesController do
|
|
61
61
|
end
|
62
62
|
|
63
63
|
describe "When logged in as Librarian" do
|
64
|
-
|
64
|
+
login_fixture_librarian
|
65
65
|
|
66
66
|
it "assigns the requested subscribe as @subscribe" do
|
67
67
|
subscribe = FactoryGirl.create(:subscribe)
|
@@ -71,7 +71,7 @@ describe SubscribesController do
|
|
71
71
|
end
|
72
72
|
|
73
73
|
describe "When logged in as User" do
|
74
|
-
|
74
|
+
login_fixture_user
|
75
75
|
|
76
76
|
it "assigns the requested subscribe as @subscribe" do
|
77
77
|
subscribe = FactoryGirl.create(:subscribe)
|
@@ -91,7 +91,7 @@ describe SubscribesController do
|
|
91
91
|
|
92
92
|
describe "GET new" do
|
93
93
|
describe "When logged in as Administrator" do
|
94
|
-
|
94
|
+
login_fixture_admin
|
95
95
|
|
96
96
|
it "assigns the requested subscribe as @subscribe" do
|
97
97
|
get :new
|
@@ -101,7 +101,7 @@ describe SubscribesController do
|
|
101
101
|
end
|
102
102
|
|
103
103
|
describe "When logged in as Librarian" do
|
104
|
-
|
104
|
+
login_fixture_librarian
|
105
105
|
|
106
106
|
it "assigns the requested subscribe as @subscribe" do
|
107
107
|
get :new
|
@@ -111,7 +111,7 @@ describe SubscribesController do
|
|
111
111
|
end
|
112
112
|
|
113
113
|
describe "When logged in as User" do
|
114
|
-
|
114
|
+
login_fixture_user
|
115
115
|
|
116
116
|
it "should not assign the requested subscribe as @subscribe" do
|
117
117
|
get :new
|
@@ -131,7 +131,7 @@ describe SubscribesController do
|
|
131
131
|
|
132
132
|
describe "GET edit" do
|
133
133
|
describe "When logged in as Administrator" do
|
134
|
-
|
134
|
+
login_fixture_admin
|
135
135
|
|
136
136
|
it "assigns the requested subscribe as @subscribe" do
|
137
137
|
subscribe = FactoryGirl.create(:subscribe)
|
@@ -141,7 +141,7 @@ describe SubscribesController do
|
|
141
141
|
end
|
142
142
|
|
143
143
|
describe "When logged in as Librarian" do
|
144
|
-
|
144
|
+
login_fixture_librarian
|
145
145
|
|
146
146
|
it "assigns the requested subscribe as @subscribe" do
|
147
147
|
subscribe = FactoryGirl.create(:subscribe)
|
@@ -151,7 +151,7 @@ describe SubscribesController do
|
|
151
151
|
end
|
152
152
|
|
153
153
|
describe "When logged in as User" do
|
154
|
-
|
154
|
+
login_fixture_user
|
155
155
|
|
156
156
|
it "assigns the requested subscribe as @subscribe" do
|
157
157
|
subscribe = FactoryGirl.create(:subscribe)
|
@@ -176,7 +176,7 @@ describe SubscribesController do
|
|
176
176
|
end
|
177
177
|
|
178
178
|
describe "When logged in as Administrator" do
|
179
|
-
|
179
|
+
login_fixture_admin
|
180
180
|
|
181
181
|
describe "with valid params" do
|
182
182
|
it "assigns a newly created subscribe as @subscribe" do
|
@@ -204,7 +204,7 @@ describe SubscribesController do
|
|
204
204
|
end
|
205
205
|
|
206
206
|
describe "When logged in as Librarian" do
|
207
|
-
|
207
|
+
login_fixture_librarian
|
208
208
|
|
209
209
|
describe "with valid params" do
|
210
210
|
it "assigns a newly created subscribe as @subscribe" do
|
@@ -232,7 +232,7 @@ describe SubscribesController do
|
|
232
232
|
end
|
233
233
|
|
234
234
|
describe "When logged in as User" do
|
235
|
-
|
235
|
+
login_fixture_user
|
236
236
|
|
237
237
|
describe "with valid params" do
|
238
238
|
it "assigns a newly created subscribe as @subscribe" do
|
@@ -294,7 +294,7 @@ describe SubscribesController do
|
|
294
294
|
end
|
295
295
|
|
296
296
|
describe "When logged in as Administrator" do
|
297
|
-
|
297
|
+
login_fixture_admin
|
298
298
|
|
299
299
|
describe "with valid params" do
|
300
300
|
it "updates the requested subscribe" do
|
@@ -317,7 +317,7 @@ describe SubscribesController do
|
|
317
317
|
end
|
318
318
|
|
319
319
|
describe "When logged in as Librarian" do
|
320
|
-
|
320
|
+
login_fixture_librarian
|
321
321
|
|
322
322
|
describe "with valid params" do
|
323
323
|
it "updates the requested subscribe" do
|
@@ -340,7 +340,7 @@ describe SubscribesController do
|
|
340
340
|
end
|
341
341
|
|
342
342
|
describe "When logged in as User" do
|
343
|
-
|
343
|
+
login_fixture_user
|
344
344
|
|
345
345
|
describe "with valid params" do
|
346
346
|
it "updates the requested subscribe" do
|
@@ -389,7 +389,7 @@ describe SubscribesController do
|
|
389
389
|
end
|
390
390
|
|
391
391
|
describe "When logged in as Administrator" do
|
392
|
-
|
392
|
+
login_fixture_admin
|
393
393
|
|
394
394
|
it "destroys the requested subscribe" do
|
395
395
|
delete :destroy, :id => @subscribe.id
|
@@ -402,7 +402,7 @@ describe SubscribesController do
|
|
402
402
|
end
|
403
403
|
|
404
404
|
describe "When logged in as Librarian" do
|
405
|
-
|
405
|
+
login_fixture_librarian
|
406
406
|
|
407
407
|
it "destroys the requested subscribe" do
|
408
408
|
delete :destroy, :id => @subscribe.id
|
@@ -415,7 +415,7 @@ describe SubscribesController do
|
|
415
415
|
end
|
416
416
|
|
417
417
|
describe "When logged in as User" do
|
418
|
-
|
418
|
+
login_fixture_user
|
419
419
|
|
420
420
|
it "destroys the requested subscribe" do
|
421
421
|
delete :destroy, :id => @subscribe.id
|
@@ -14,7 +14,7 @@ describe SubscriptionsController do
|
|
14
14
|
end
|
15
15
|
|
16
16
|
describe "When logged in as Administrator" do
|
17
|
-
|
17
|
+
login_fixture_admin
|
18
18
|
|
19
19
|
it "assigns all subscriptions as @subscriptions" do
|
20
20
|
get :index
|
@@ -23,7 +23,7 @@ describe SubscriptionsController do
|
|
23
23
|
end
|
24
24
|
|
25
25
|
describe "When logged in as Librarian" do
|
26
|
-
|
26
|
+
login_fixture_librarian
|
27
27
|
|
28
28
|
it "assigns all subscriptions as @subscriptions" do
|
29
29
|
get :index
|
@@ -32,7 +32,7 @@ describe SubscriptionsController do
|
|
32
32
|
end
|
33
33
|
|
34
34
|
describe "When logged in as User" do
|
35
|
-
|
35
|
+
login_fixture_user
|
36
36
|
|
37
37
|
it "assigns all subscriptions as @subscriptions" do
|
38
38
|
get :index
|
@@ -50,7 +50,7 @@ describe SubscriptionsController do
|
|
50
50
|
|
51
51
|
describe "GET show" do
|
52
52
|
describe "When logged in as Administrator" do
|
53
|
-
|
53
|
+
login_fixture_admin
|
54
54
|
|
55
55
|
it "assigns the requested subscription as @subscription" do
|
56
56
|
subscription = FactoryGirl.create(:subscription)
|
@@ -60,7 +60,7 @@ describe SubscriptionsController do
|
|
60
60
|
end
|
61
61
|
|
62
62
|
describe "When logged in as Librarian" do
|
63
|
-
|
63
|
+
login_fixture_librarian
|
64
64
|
|
65
65
|
it "assigns the requested subscription as @subscription" do
|
66
66
|
subscription = FactoryGirl.create(:subscription)
|
@@ -70,7 +70,7 @@ describe SubscriptionsController do
|
|
70
70
|
end
|
71
71
|
|
72
72
|
describe "When logged in as User" do
|
73
|
-
|
73
|
+
login_fixture_user
|
74
74
|
|
75
75
|
it "assigns the requested subscription as @subscription" do
|
76
76
|
subscription = FactoryGirl.create(:subscription)
|
@@ -90,7 +90,7 @@ describe SubscriptionsController do
|
|
90
90
|
|
91
91
|
describe "GET new" do
|
92
92
|
describe "When logged in as Administrator" do
|
93
|
-
|
93
|
+
login_fixture_admin
|
94
94
|
|
95
95
|
it "assigns the requested subscription as @subscription" do
|
96
96
|
get :new
|
@@ -99,7 +99,7 @@ describe SubscriptionsController do
|
|
99
99
|
end
|
100
100
|
|
101
101
|
describe "When logged in as Librarian" do
|
102
|
-
|
102
|
+
login_fixture_librarian
|
103
103
|
|
104
104
|
it "assigns the requested subscription as @subscription" do
|
105
105
|
get :new
|
@@ -108,7 +108,7 @@ describe SubscriptionsController do
|
|
108
108
|
end
|
109
109
|
|
110
110
|
describe "When logged in as User" do
|
111
|
-
|
111
|
+
login_fixture_user
|
112
112
|
|
113
113
|
it "should not assign the requested subscription as @subscription" do
|
114
114
|
get :new
|
@@ -128,7 +128,7 @@ describe SubscriptionsController do
|
|
128
128
|
|
129
129
|
describe "GET edit" do
|
130
130
|
describe "When logged in as Administrator" do
|
131
|
-
|
131
|
+
login_fixture_admin
|
132
132
|
|
133
133
|
it "assigns the requested subscription as @subscription" do
|
134
134
|
subscription = FactoryGirl.create(:subscription)
|
@@ -138,7 +138,7 @@ describe SubscriptionsController do
|
|
138
138
|
end
|
139
139
|
|
140
140
|
describe "When logged in as Librarian" do
|
141
|
-
|
141
|
+
login_fixture_librarian
|
142
142
|
|
143
143
|
it "assigns the requested subscription as @subscription" do
|
144
144
|
subscription = FactoryGirl.create(:subscription)
|
@@ -148,7 +148,7 @@ describe SubscriptionsController do
|
|
148
148
|
end
|
149
149
|
|
150
150
|
describe "When logged in as User" do
|
151
|
-
|
151
|
+
login_fixture_user
|
152
152
|
|
153
153
|
it "assigns the requested subscription as @subscription" do
|
154
154
|
subscription = FactoryGirl.create(:subscription)
|
@@ -173,7 +173,7 @@ describe SubscriptionsController do
|
|
173
173
|
end
|
174
174
|
|
175
175
|
describe "When logged in as Administrator" do
|
176
|
-
|
176
|
+
login_fixture_admin
|
177
177
|
|
178
178
|
describe "with valid params" do
|
179
179
|
it "assigns a newly created subscription as @subscription" do
|
@@ -201,7 +201,7 @@ describe SubscriptionsController do
|
|
201
201
|
end
|
202
202
|
|
203
203
|
describe "When logged in as Librarian" do
|
204
|
-
|
204
|
+
login_fixture_librarian
|
205
205
|
|
206
206
|
describe "with valid params" do
|
207
207
|
it "assigns a newly created subscription as @subscription" do
|
@@ -229,7 +229,7 @@ describe SubscriptionsController do
|
|
229
229
|
end
|
230
230
|
|
231
231
|
describe "When logged in as User" do
|
232
|
-
|
232
|
+
login_fixture_user
|
233
233
|
|
234
234
|
describe "with valid params" do
|
235
235
|
it "assigns a newly created subscription as @subscription" do
|
@@ -291,7 +291,7 @@ describe SubscriptionsController do
|
|
291
291
|
end
|
292
292
|
|
293
293
|
describe "When logged in as Administrator" do
|
294
|
-
|
294
|
+
login_fixture_admin
|
295
295
|
|
296
296
|
describe "with valid params" do
|
297
297
|
it "updates the requested subscription" do
|
@@ -313,7 +313,7 @@ describe SubscriptionsController do
|
|
313
313
|
end
|
314
314
|
|
315
315
|
describe "When logged in as Librarian" do
|
316
|
-
|
316
|
+
login_fixture_librarian
|
317
317
|
|
318
318
|
describe "with valid params" do
|
319
319
|
it "updates the requested subscription" do
|
@@ -341,7 +341,7 @@ describe SubscriptionsController do
|
|
341
341
|
end
|
342
342
|
|
343
343
|
describe "When logged in as User" do
|
344
|
-
|
344
|
+
login_fixture_user
|
345
345
|
|
346
346
|
describe "with valid params" do
|
347
347
|
it "updates the requested subscription" do
|
@@ -390,7 +390,7 @@ describe SubscriptionsController do
|
|
390
390
|
end
|
391
391
|
|
392
392
|
describe "When logged in as Administrator" do
|
393
|
-
|
393
|
+
login_fixture_admin
|
394
394
|
|
395
395
|
it "destroys the requested subscription" do
|
396
396
|
delete :destroy, :id => @subscription.id
|
@@ -403,7 +403,7 @@ describe SubscriptionsController do
|
|
403
403
|
end
|
404
404
|
|
405
405
|
describe "When logged in as Librarian" do
|
406
|
-
|
406
|
+
login_fixture_librarian
|
407
407
|
|
408
408
|
it "destroys the requested subscription" do
|
409
409
|
delete :destroy, :id => @subscription.id
|
@@ -416,7 +416,7 @@ describe SubscriptionsController do
|
|
416
416
|
end
|
417
417
|
|
418
418
|
describe "When logged in as User" do
|
419
|
-
|
419
|
+
login_fixture_user
|
420
420
|
|
421
421
|
it "destroys the requested subscription" do
|
422
422
|
delete :destroy, :id => @subscription.id
|
@@ -1,89 +1,9 @@
|
|
1
|
+
# -*- encoding: utf-8 -*-
|
1
2
|
class User < ActiveRecord::Base
|
2
|
-
|
3
|
-
|
4
|
-
|
5
|
-
:recoverable, :rememberable, :trackable, :validatable
|
3
|
+
devise :database_authenticatable, #:registerable,
|
4
|
+
:recoverable, :rememberable, :trackable, #, :validatable
|
5
|
+
:lockable, :lock_strategy => :none, :unlock_strategy => :none
|
6
6
|
|
7
|
-
|
8
|
-
|
9
|
-
|
10
|
-
#has_one :agent
|
11
|
-
has_one :user_has_role
|
12
|
-
has_one :role, :through => :user_has_role
|
13
|
-
belongs_to :user_group
|
14
|
-
belongs_to :required_role, :class_name => 'Role', :foreign_key => 'required_role_id'
|
15
|
-
has_many :checkouts, :dependent => :nullify
|
16
|
-
has_many :reserves, :dependent => :destroy
|
17
|
-
has_many :reserved_manifestations, :through => :reserves, :source => :manifestation
|
18
|
-
has_many :checkout_stat_has_users
|
19
|
-
has_many :user_checkout_stats, :through => :checkout_stat_has_users
|
20
|
-
has_many :reserve_stat_has_users
|
21
|
-
has_many :user_reserve_stats, :through => :reserve_stat_has_users
|
22
|
-
has_many :baskets, :dependent => :destroy
|
23
|
-
belongs_to :library
|
24
|
-
|
25
|
-
before_destroy :check_item_before_destroy
|
26
|
-
|
27
|
-
extend FriendlyId
|
28
|
-
friendly_id :username
|
29
|
-
|
30
|
-
def check_item_before_destroy
|
31
|
-
# TODO: 貸出記録を残す場合
|
32
|
-
if checkouts.size > 0
|
33
|
-
raise 'This user has items still checked out.'
|
34
|
-
end
|
35
|
-
end
|
36
|
-
|
37
|
-
def reset_checkout_icalendar_token
|
38
|
-
self.checkout_icalendar_token = Devise.friendly_token
|
39
|
-
end
|
40
|
-
|
41
|
-
def delete_checkout_icalendar_token
|
42
|
-
self.checkout_icalendar_token = nil
|
43
|
-
end
|
44
|
-
|
45
|
-
def checked_item_count
|
46
|
-
checkout_count = {}
|
47
|
-
CheckoutType.all.each do |checkout_type|
|
48
|
-
# 資料種別ごとの貸出中の冊数を計算
|
49
|
-
checkout_count[:"#{checkout_type.name}"] = self.checkouts.count_by_sql(["
|
50
|
-
SELECT count(item_id) FROM checkouts
|
51
|
-
WHERE item_id IN (
|
52
|
-
SELECT id FROM items
|
53
|
-
WHERE checkout_type_id = ?
|
54
|
-
)
|
55
|
-
AND user_id = ? AND checkin_id IS NULL", checkout_type.id, self.id]
|
56
|
-
)
|
57
|
-
end
|
58
|
-
return checkout_count
|
59
|
-
end
|
60
|
-
|
61
|
-
def reached_reservation_limit?(manifestation)
|
62
|
-
return true if self.user_group.user_group_has_checkout_types.available_for_carrier_type(manifestation.carrier_type).where(:user_group_id => self.user_group.id).collect(&:reservation_limit).max.to_i <= self.reserves.waiting.size
|
63
|
-
false
|
64
|
-
end
|
65
|
-
|
66
|
-
def has_role?(role_in_question)
|
67
|
-
return false unless role
|
68
|
-
return true if role.name == role_in_question
|
69
|
-
case role.name
|
70
|
-
when 'Administrator'
|
71
|
-
return true
|
72
|
-
when 'Librarian'
|
73
|
-
return true if role_in_question == 'User'
|
74
|
-
else
|
75
|
-
false
|
76
|
-
end
|
77
|
-
end
|
78
|
-
|
79
|
-
enju_bookmark_user_model if defined?(EnjuBookmark)
|
80
|
-
enju_message_user_model if defined?(EnjuBookmark)
|
81
|
-
|
82
|
-
def agent
|
83
|
-
LocalAgent.new(self)
|
84
|
-
end
|
85
|
-
|
86
|
-
def full_name
|
87
|
-
username
|
88
|
-
end
|
7
|
+
enju_leaf_user_model
|
8
|
+
enju_circulation_user_model
|
89
9
|
end
|