enju_leaf 1.3.5 → 2.0.0.beta.1
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/README.md +2 -4
- data/app/assets/javascripts/enju_leaf/application.js +12 -0
- data/app/assets/javascripts/{autocomplete_agent.js → enju_leaf/autocomplete_agent.js} +0 -0
- data/app/assets/javascripts/{menu.js → enju_leaf/menu.js} +0 -0
- data/app/assets/javascripts/enju_leaf/mobile.js +5 -0
- data/app/assets/javascripts/{portlets.js → enju_leaf/portlets.js} +0 -0
- data/app/assets/javascripts/{select_locale.js → enju_leaf/select_locale.js} +0 -0
- data/app/assets/stylesheets/{enju_leaf.css → enju_leaf/application.scss} +6 -6
- data/app/assets/stylesheets/{enju.css → enju_leaf/enju.css} +0 -0
- data/app/assets/stylesheets/{enju_mobile.css → enju_leaf/enju_mobile.css} +0 -0
- data/app/assets/stylesheets/{enju_print.css → enju_leaf/enju_print.css} +0 -0
- data/app/assets/stylesheets/{mobile.css → enju_leaf/mobile.css} +1 -1
- data/app/assets/stylesheets/{pagination.css → enju_leaf/pagination.css} +0 -0
- data/app/assets/stylesheets/{portlets.css → enju_leaf/portlets.css} +0 -0
- data/app/assets/stylesheets/{print.css → enju_leaf/print.css} +1 -1
- data/app/assets/stylesheets/{scaffold_modified.css → enju_leaf/scaffold_modified.css} +0 -0
- data/app/views/devise/registrations/edit.html.erb +1 -1
- data/app/views/layouts/application.html.erb +4 -4
- data/app/views/page/_include.html.erb +1 -1
- data/app/views/page/_index.html+phone.erb +1 -1
- data/app/views/page/_menu.html.erb +1 -1
- data/app/views/page/_mobile.html+phone.erb +2 -2
- data/app/views/page/about.en.html.erb +4 -4
- data/app/views/page/about.ja.html.erb +4 -4
- data/app/views/page/advanced_search.html.erb +5 -5
- data/app/views/page/configuration.html.erb +0 -2
- data/app/views/page/opensearch.xml.builder +2 -2
- data/config/initializers/mime_types.rb +1 -0
- data/config/locales/en.yml +0 -4
- data/config/locales/ja.yml +0 -4
- data/lib/enju_leaf/engine.rb +1 -1
- data/lib/enju_leaf/version.rb +1 -1
- data/lib/generators/enju_leaf/quick_install/quick_install_generator.rb +5 -2
- data/lib/generators/enju_leaf/setup/setup_generator.rb +22 -17
- data/lib/generators/enju_leaf/setup/templates/Procfile +2 -2
- data/lib/generators/enju_leaf/setup/templates/config/schedule.rb +2 -2
- data/lib/generators/enju_leaf/setup/templates/db/seeds.rb +0 -4
- data/lib/tasks/enju_leaf_tasks.rake +2 -5
- data/spec/acceptance/profile.rb +9 -0
- data/spec/controllers/page_controller_spec.rb +1 -1
- data/spec/dummy/app/assets/javascripts/application.js +3 -0
- data/spec/dummy/app/assets/stylesheets/application.css +1 -0
- data/spec/dummy/app/controllers/application_controller.rb +0 -1
- data/spec/dummy/bin/bundle +1 -1
- data/spec/dummy/bin/setup +1 -3
- data/spec/dummy/bin/update +4 -2
- data/spec/dummy/bin/yarn +3 -3
- data/spec/dummy/config/application.rb +3 -2
- data/spec/dummy/config/boot.rb +4 -9
- data/spec/dummy/config/cable.yml +10 -0
- data/spec/dummy/config/database.yml +70 -9
- data/spec/dummy/config/environments/development.rb +9 -2
- data/spec/dummy/config/environments/production.rb +7 -4
- data/spec/dummy/config/environments/test.rb +7 -1
- data/spec/dummy/config/initializers/assets.rb +1 -2
- data/spec/dummy/config/initializers/content_security_policy.rb +25 -0
- data/spec/dummy/config/locales/en.yml +30 -2
- data/spec/dummy/config/puma.rb +34 -0
- data/spec/dummy/config/routes.rb +2 -58
- data/spec/dummy/config/spring.rb +6 -0
- data/spec/dummy/config/storage.yml +34 -0
- data/spec/dummy/config.ru +3 -2
- data/spec/dummy/db/development.sqlite3 +0 -0
- data/spec/dummy/db/migrate/005_create_manifestations.rb +3 -3
- data/spec/dummy/db/migrate/127_create_use_restrictions.rb +3 -7
- data/spec/dummy/db/migrate/132_create_circulation_statuses.rb +3 -7
- data/spec/dummy/db/migrate/149_create_message_templates.rb +3 -8
- data/spec/dummy/db/migrate/154_create_messages.rb +6 -14
- data/spec/dummy/db/migrate/20080819181903_create_message_requests.rb +4 -4
- data/spec/dummy/db/migrate/20081025083323_create_countries.rb +6 -5
- data/spec/dummy/db/migrate/20081025083905_create_languages.rb +1 -0
- data/spec/dummy/db/migrate/20081027150907_create_picture_files.rb +1 -1
- data/spec/dummy/db/migrate/20090705212043_add_attachments_attachment_to_manifestation.rb +15 -0
- data/spec/dummy/db/migrate/20100606065209_create_user_has_roles.rb +2 -4
- data/spec/dummy/db/migrate/20110627122938_add_number_of_day_to_notify_overdue_to_user_group.rb +1 -1
- data/spec/dummy/db/migrate/20110913115320_add_lft_and_rgt_to_message.rb +1 -1
- data/spec/dummy/db/migrate/20120125050502_add_depth_to_message.rb +1 -1
- data/spec/dummy/db/migrate/20120125152919_add_title_subseries_transcription_to_series_statement.rb +1 -0
- data/spec/dummy/db/migrate/20120129020544_add_budget_type_id_to_item.rb +1 -0
- data/spec/dummy/db/migrate/20120319120638_add_content_type_id_to_manifestation.rb +1 -0
- data/spec/dummy/db/migrate/20120415164821_add_attachment_meta_to_manifestation.rb +5 -0
- data/spec/dummy/db/migrate/20130221154434_add_additional_attributes_to_user.rb +1 -1
- data/spec/dummy/db/migrate/20130506175834_create_identifiers.rb +1 -1
- data/spec/dummy/db/migrate/20140122054321_create_profiles.rb +4 -5
- data/spec/dummy/db/migrate/20140518111006_create_message_transitions.rb +4 -9
- data/spec/dummy/db/migrate/20140518135713_create_message_request_transitions.rb +4 -9
- data/spec/dummy/db/migrate/20140519170214_create_resource_import_file_transitions.rb +1 -1
- data/spec/dummy/db/migrate/20140519171220_create_import_request_transitions.rb +1 -1
- data/spec/dummy/db/migrate/20140524020735_create_agent_import_file_transitions.rb +1 -1
- data/spec/dummy/db/migrate/20140524074813_create_user_import_file_transitions.rb +1 -1
- data/spec/dummy/db/migrate/20140614141500_create_resource_export_file_transitions.rb +1 -1
- data/spec/dummy/db/migrate/20140709113905_create_user_export_file_transitions.rb +1 -1
- data/spec/dummy/db/migrate/20160319144230_create_issn_records.rb +11 -0
- data/spec/dummy/db/migrate/20160506144040_create_isbn_records.rb +11 -0
- data/spec/dummy/db/migrate/20160703185015_add_most_recent_to_message_transitions.rb +1 -1
- data/spec/dummy/db/migrate/20160813191533_add_book_jacket_source_to_library_group.rb +1 -1
- data/spec/dummy/db/migrate/20160813191820_add_screenshot_generator_to_library_group.rb +1 -1
- data/spec/dummy/db/migrate/20160814165332_add_most_recent_to_message_request_transitions.rb +9 -0
- data/spec/dummy/db/migrate/20160820004638_add_attachment_attachment_to_carrier_types.rb +11 -0
- data/spec/dummy/db/migrate/20170114174536_add_profile_id_to_user.rb +5 -0
- data/spec/dummy/db/migrate/20170116134107_create_issn_record_and_manifestations.rb +11 -0
- data/spec/dummy/db/migrate/20170116134120_create_isbn_record_and_manifestations.rb +11 -0
- data/spec/dummy/db/migrate/20171014084528_add_header_logo_to_library_group.rb +5 -0
- data/spec/dummy/db/migrate/20180107160726_add_constraints_to_most_recent_for_user_import_file_transitions.rb +13 -0
- data/spec/dummy/db/migrate/20180107160740_add_constraints_to_most_recent_for_user_export_file_transitions.rb +13 -0
- data/spec/dummy/db/migrate/20180107161311_add_constraints_to_most_recent_for_agent_import_file_transitions.rb +13 -0
- data/spec/dummy/db/migrate/20180107161331_add_constraints_to_most_recent_for_resource_import_file_transitions.rb +13 -0
- data/spec/dummy/db/migrate/20180107161347_add_constraints_to_most_recent_for_resource_export_file_transitions.rb +13 -0
- data/spec/dummy/db/migrate/20180107161410_add_constraints_to_most_recent_for_import_request_transitions.rb +13 -0
- data/spec/dummy/db/migrate/20180107162659_add_constraints_to_most_recent_for_message_transitions.rb +13 -0
- data/spec/dummy/db/migrate/20180107162711_add_constraints_to_most_recent_for_message_request_transitions.rb +13 -0
- data/spec/dummy/db/migrate/20181030072731_add_not_null_to_position_on_carrier_type.rb +14 -0
- data/spec/dummy/db/migrate/20190102034126_create_doi_records.rb +13 -0
- data/spec/dummy/db/migrate/20190208135957_create_active_storage_tables.active_storage.rb +27 -0
- data/spec/dummy/db/migrate/20190630113817_add_display_name_translations_to_library_group.rb +12 -0
- data/spec/dummy/db/migrate/20190630115523_add_login_banner_translations_to_library_group.rb +6 -0
- data/spec/dummy/db/migrate/20190630151446_add_display_name_translations_to_role.rb +5 -0
- data/spec/dummy/db/migrate/20190712163038_add_display_name_translations_to_carrier_type.rb +21 -0
- data/spec/dummy/db/schema.rb +265 -135
- data/spec/dummy/db/test.sqlite3 +0 -0
- data/spec/dummy/node_modules/jquery/AUTHORS.txt +278 -0
- data/spec/dummy/node_modules/jquery/LICENSE.txt +36 -0
- data/spec/dummy/node_modules/jquery/README.md +65 -0
- data/spec/dummy/node_modules/jquery/bower.json +14 -0
- data/spec/dummy/node_modules/jquery/dist/jquery.js +9814 -0
- data/spec/dummy/node_modules/jquery/dist/jquery.min.js +4 -0
- data/spec/dummy/node_modules/jquery/dist/jquery.min.map +1 -0
- data/spec/dummy/node_modules/jquery/external/sizzle/LICENSE.txt +36 -0
- data/spec/dummy/node_modules/jquery/external/sizzle/dist/sizzle.js +2143 -0
- data/spec/dummy/node_modules/jquery/external/sizzle/dist/sizzle.min.js +3 -0
- data/spec/dummy/node_modules/jquery/external/sizzle/dist/sizzle.min.map +1 -0
- data/spec/dummy/node_modules/jquery/package.json +84 -0
- data/spec/dummy/node_modules/jquery/src/ajax/jsonp.js +100 -0
- data/spec/dummy/node_modules/jquery/src/ajax/load.js +83 -0
- data/spec/dummy/node_modules/jquery/src/ajax/parseJSON.js +13 -0
- data/spec/dummy/node_modules/jquery/src/ajax/parseXML.js +27 -0
- data/spec/dummy/node_modules/jquery/src/ajax/script.js +68 -0
- data/spec/dummy/node_modules/jquery/src/ajax/var/location.js +3 -0
- data/spec/dummy/node_modules/jquery/src/ajax/var/nonce.js +5 -0
- data/spec/dummy/node_modules/jquery/src/ajax/var/rquery.js +3 -0
- data/spec/dummy/node_modules/jquery/src/ajax/xhr.js +167 -0
- data/spec/dummy/node_modules/jquery/src/ajax.js +845 -0
- data/spec/dummy/node_modules/jquery/src/attributes/attr.js +142 -0
- data/spec/dummy/node_modules/jquery/src/attributes/classes.js +177 -0
- data/spec/dummy/node_modules/jquery/src/attributes/prop.js +125 -0
- data/spec/dummy/node_modules/jquery/src/attributes/support.js +36 -0
- data/spec/dummy/node_modules/jquery/src/attributes/val.js +177 -0
- data/spec/dummy/node_modules/jquery/src/attributes.js +11 -0
- data/spec/dummy/node_modules/jquery/src/callbacks.js +232 -0
- data/spec/dummy/node_modules/jquery/src/core/access.js +65 -0
- data/spec/dummy/node_modules/jquery/src/core/init.js +134 -0
- data/spec/dummy/node_modules/jquery/src/core/parseHTML.js +41 -0
- data/spec/dummy/node_modules/jquery/src/core/ready.js +103 -0
- data/spec/dummy/node_modules/jquery/src/core/var/rsingleTag.js +5 -0
- data/spec/dummy/node_modules/jquery/src/core.js +494 -0
- data/spec/dummy/node_modules/jquery/src/css/addGetHookIf.js +24 -0
- data/spec/dummy/node_modules/jquery/src/css/adjustCSS.js +65 -0
- data/spec/dummy/node_modules/jquery/src/css/curCSS.js +60 -0
- data/spec/dummy/node_modules/jquery/src/css/defaultDisplay.js +72 -0
- data/spec/dummy/node_modules/jquery/src/css/hiddenVisibleSelectors.js +18 -0
- data/spec/dummy/node_modules/jquery/src/css/showHide.js +48 -0
- data/spec/dummy/node_modules/jquery/src/css/support.js +121 -0
- data/spec/dummy/node_modules/jquery/src/css/var/cssExpand.js +3 -0
- data/spec/dummy/node_modules/jquery/src/css/var/getStyles.js +15 -0
- data/spec/dummy/node_modules/jquery/src/css/var/isHidden.js +16 -0
- data/spec/dummy/node_modules/jquery/src/css/var/rmargin.js +3 -0
- data/spec/dummy/node_modules/jquery/src/css/var/rnumnonpx.js +5 -0
- data/spec/dummy/node_modules/jquery/src/css/var/swap.js +24 -0
- data/spec/dummy/node_modules/jquery/src/css.js +502 -0
- data/spec/dummy/node_modules/jquery/src/data/Data.js +200 -0
- data/spec/dummy/node_modules/jquery/src/data/var/acceptData.js +18 -0
- data/spec/dummy/node_modules/jquery/src/data/var/dataPriv.js +5 -0
- data/spec/dummy/node_modules/jquery/src/data/var/dataUser.js +5 -0
- data/spec/dummy/node_modules/jquery/src/data.js +187 -0
- data/spec/dummy/node_modules/jquery/src/deferred.js +158 -0
- data/spec/dummy/node_modules/jquery/src/deprecated.js +32 -0
- data/spec/dummy/node_modules/jquery/src/dimensions.js +54 -0
- data/spec/dummy/node_modules/jquery/src/effects/Tween.js +121 -0
- data/spec/dummy/node_modules/jquery/src/effects/animatedSelector.js +13 -0
- data/spec/dummy/node_modules/jquery/src/effects.js +629 -0
- data/spec/dummy/node_modules/jquery/src/event/ajax.js +20 -0
- data/spec/dummy/node_modules/jquery/src/event/alias.js +27 -0
- data/spec/dummy/node_modules/jquery/src/event/focusin.js +53 -0
- data/spec/dummy/node_modules/jquery/src/event/support.js +9 -0
- data/spec/dummy/node_modules/jquery/src/event/trigger.js +183 -0
- data/spec/dummy/node_modules/jquery/src/event.js +711 -0
- data/spec/dummy/node_modules/jquery/src/exports/amd.js +24 -0
- data/spec/dummy/node_modules/jquery/src/exports/global.js +26 -0
- data/spec/dummy/node_modules/jquery/src/intro.js +44 -0
- data/spec/dummy/node_modules/jquery/src/jquery.js +37 -0
- data/spec/dummy/node_modules/jquery/src/manipulation/_evalUrl.js +20 -0
- data/spec/dummy/node_modules/jquery/src/manipulation/buildFragment.js +102 -0
- data/spec/dummy/node_modules/jquery/src/manipulation/getAll.js +21 -0
- data/spec/dummy/node_modules/jquery/src/manipulation/setGlobalEval.js +20 -0
- data/spec/dummy/node_modules/jquery/src/manipulation/support.js +33 -0
- data/spec/dummy/node_modules/jquery/src/manipulation/var/rcheckableType.js +3 -0
- data/spec/dummy/node_modules/jquery/src/manipulation/var/rscriptType.js +3 -0
- data/spec/dummy/node_modules/jquery/src/manipulation/var/rtagName.js +3 -0
- data/spec/dummy/node_modules/jquery/src/manipulation/wrapMap.js +27 -0
- data/spec/dummy/node_modules/jquery/src/manipulation.js +481 -0
- data/spec/dummy/node_modules/jquery/src/offset.js +218 -0
- data/spec/dummy/node_modules/jquery/src/outro.js +2 -0
- data/spec/dummy/node_modules/jquery/src/queue/delay.js +22 -0
- data/spec/dummy/node_modules/jquery/src/queue.js +143 -0
- data/spec/dummy/node_modules/jquery/src/selector-native.js +211 -0
- data/spec/dummy/node_modules/jquery/src/selector-sizzle.js +14 -0
- data/spec/dummy/node_modules/jquery/src/selector.js +1 -0
- data/spec/dummy/node_modules/jquery/src/serialize.js +125 -0
- data/spec/dummy/node_modules/jquery/src/traversing/findFilter.js +100 -0
- data/spec/dummy/node_modules/jquery/src/traversing/var/dir.js +20 -0
- data/spec/dummy/node_modules/jquery/src/traversing/var/rneedsContext.js +6 -0
- data/spec/dummy/node_modules/jquery/src/traversing/var/siblings.js +15 -0
- data/spec/dummy/node_modules/jquery/src/traversing.js +175 -0
- data/spec/dummy/node_modules/jquery/src/var/arr.js +3 -0
- data/spec/dummy/node_modules/jquery/src/var/class2type.js +5 -0
- data/spec/dummy/node_modules/jquery/src/var/concat.js +5 -0
- data/spec/dummy/node_modules/jquery/src/var/document.js +3 -0
- data/spec/dummy/node_modules/jquery/src/var/documentElement.js +5 -0
- data/spec/dummy/node_modules/jquery/src/var/hasOwn.js +5 -0
- data/spec/dummy/node_modules/jquery/src/var/indexOf.js +5 -0
- data/spec/dummy/node_modules/jquery/src/var/pnum.js +3 -0
- data/spec/dummy/node_modules/jquery/src/var/push.js +5 -0
- data/spec/dummy/node_modules/jquery/src/var/rcssNum.js +7 -0
- data/spec/dummy/node_modules/jquery/src/var/rnotwhite.js +3 -0
- data/spec/dummy/node_modules/jquery/src/var/slice.js +5 -0
- data/spec/dummy/node_modules/jquery/src/var/support.js +5 -0
- data/spec/dummy/node_modules/jquery/src/var/toString.js +5 -0
- data/spec/dummy/node_modules/jquery/src/wrap.js +79 -0
- data/spec/dummy/package.json +5 -0
- data/spec/dummy/public/system/user_export_files/user_exports/000/000/003/original/user_export_file_20141214-44379-1fdvvdb.txt +8 -0
- data/spec/dummy/public/system/user_export_files/user_exports/000/000/003/original/user_export_file_20141225-67268-nerc4o.txt +8 -0
- data/spec/dummy/public/system/user_export_files/user_exports/000/000/003/original/user_export_file_20150123-14447-1lf8lc5.txt +8 -0
- data/spec/dummy/public/system/user_export_files/user_exports/000/000/004/original/user_export_file_20141214-44379-1exy9mg.txt +8 -0
- data/spec/dummy/public/system/user_export_files/user_exports/000/000/004/original/user_export_file_20141217-58343-ztcmne.txt +8 -0
- data/spec/dummy/public/system/user_export_files/user_exports/000/000/004/original/user_export_file_20141217-58490-hnqvxg.txt +8 -0
- data/spec/dummy/public/system/user_export_files/user_exports/000/000/004/original/user_export_file_20141217-58609-5iyax7.txt +8 -0
- data/spec/dummy/public/system/user_export_files/user_exports/000/000/004/original/user_export_file_20141217-58776-1e9gg8b.txt +8 -0
- data/spec/dummy/public/system/user_export_files/user_exports/000/000/004/original/user_export_file_20141217-58951-zfxzc6.txt +8 -0
- data/spec/dummy/public/system/user_export_files/user_exports/000/000/004/original/user_export_file_20141217-59095-l3yd2t.txt +8 -0
- data/spec/dummy/public/system/user_export_files/user_exports/000/000/004/original/user_export_file_20141217-59220-1mgboh1.txt +8 -0
- data/spec/dummy/public/system/user_export_files/user_exports/000/000/004/original/user_export_file_20141217-59533-1ie807t.txt +8 -0
- data/spec/dummy/public/system/user_export_files/user_exports/000/000/004/original/user_export_file_20141217-59716-m8uy9h.txt +8 -0
- data/spec/dummy/public/system/user_export_files/user_exports/000/000/004/original/user_export_file_20141217-59834-1fcv3ir.txt +8 -0
- data/spec/dummy/public/system/user_export_files/user_exports/000/000/004/original/user_export_file_20141217-59932-14y6v8m.txt +8 -0
- data/spec/dummy/public/system/user_export_files/user_exports/000/000/004/original/user_export_file_20141217-60422-ksg8ww.txt +8 -0
- data/spec/dummy/public/system/user_export_files/user_exports/000/000/004/original/user_export_file_20141217-60507-j2u5ra.txt +8 -0
- data/spec/dummy/public/system/user_export_files/user_exports/000/000/004/original/user_export_file_20141217-60619-2j2h65.txt +8 -0
- data/spec/dummy/public/system/user_export_files/user_exports/000/000/004/original/user_export_file_20141217-60822-1xdqwcc.txt +8 -0
- data/spec/dummy/public/system/user_export_files/user_exports/000/000/004/original/user_export_file_20141217-60925-4d4ce1.txt +8 -0
- data/spec/dummy/public/system/user_export_files/user_exports/000/000/004/original/user_export_file_20141217-61046-y4nspn.txt +8 -0
- data/spec/dummy/public/system/user_export_files/user_exports/000/000/004/original/user_export_file_20141217-62053-1qsuqzd.txt +8 -0
- data/spec/dummy/public/system/user_export_files/user_exports/000/000/004/original/user_export_file_20141217-62204-3quf6j.txt +8 -0
- data/spec/dummy/public/system/user_export_files/user_exports/000/000/004/original/user_export_file_20141217-62472-w05wkf.txt +8 -0
- data/spec/dummy/public/system/user_export_files/user_exports/000/000/004/original/user_export_file_20141218-67112-1viizrs.txt +8 -0
- data/spec/dummy/public/system/user_export_files/user_exports/000/000/004/original/user_export_file_20141218-67232-11tcrfq.txt +8 -0
- data/spec/dummy/public/system/user_export_files/user_exports/000/000/004/original/user_export_file_20141218-67342-1bajplt.txt +8 -0
- data/spec/dummy/public/system/user_export_files/user_exports/000/000/004/original/user_export_file_20141218-67475-gmnmq4.txt +8 -0
- data/spec/dummy/public/system/user_export_files/user_exports/000/000/004/original/user_export_file_20141220-74670-mxvkc6.txt +8 -0
- data/spec/dummy/public/system/user_export_files/user_exports/000/000/004/original/user_export_file_20141220-74954-1m11avl.txt +8 -0
- data/spec/dummy/public/system/user_export_files/user_exports/000/000/004/original/user_export_file_20141220-75054-1ac0xmz.txt +8 -0
- data/spec/dummy/public/system/user_export_files/user_exports/000/000/004/original/user_export_file_20141220-75135-1r3z1p.txt +8 -0
- data/spec/dummy/public/system/user_export_files/user_exports/000/000/004/original/user_export_file_20141220-75289-18xm9sx.txt +8 -0
- data/spec/dummy/public/system/user_export_files/user_exports/000/000/004/original/user_export_file_20141220-75372-1ab1rn4.txt +8 -0
- data/spec/dummy/public/system/user_export_files/user_exports/000/000/004/original/user_export_file_20141220-75612-14gavh8.txt +8 -0
- data/spec/dummy/public/system/user_export_files/user_exports/000/000/004/original/user_export_file_20141220-75709-xgjjja.txt +8 -0
- data/spec/dummy/public/system/user_export_files/user_exports/000/000/004/original/user_export_file_20141220-75832-uej6ye.txt +8 -0
- data/spec/dummy/public/system/user_export_files/user_exports/000/000/004/original/user_export_file_20141220-75905-13kbauv.txt +8 -0
- data/spec/dummy/public/system/user_export_files/user_exports/000/000/004/original/user_export_file_20141220-76001-13yt1kv.txt +8 -0
- data/spec/dummy/public/system/user_export_files/user_exports/000/000/004/original/user_export_file_20141220-76158-1pitds8.txt +8 -0
- data/spec/dummy/public/system/user_export_files/user_exports/000/000/004/original/user_export_file_20141220-76526-q0rb2j.txt +8 -0
- data/spec/dummy/public/system/user_export_files/user_exports/000/000/004/original/user_export_file_20141220-76848-ya95k2.txt +8 -0
- data/spec/dummy/public/system/user_export_files/user_exports/000/000/004/original/user_export_file_20141220-88475-165899e.txt +8 -0
- data/spec/dummy/public/system/user_export_files/user_exports/000/000/004/original/user_export_file_20141220-89902-paupo2.txt +8 -0
- data/spec/dummy/public/system/user_export_files/user_exports/000/000/004/original/user_export_file_20141220-90001-1eg9w1e.txt +8 -0
- data/spec/dummy/public/system/user_export_files/user_exports/000/000/004/original/user_export_file_20141220-90157-bcu8m7.txt +8 -0
- data/spec/dummy/public/system/user_export_files/user_exports/000/000/004/original/user_export_file_20141221-7985-u6s6l1.txt +8 -0
- data/spec/dummy/public/system/user_export_files/user_exports/000/000/004/original/user_export_file_20141224-44711-1amcibm.txt +8 -0
- data/spec/dummy/public/system/user_export_files/user_exports/000/000/004/original/user_export_file_20141224-44828-ap6n8d.txt +8 -0
- data/spec/dummy/public/system/user_export_files/user_exports/000/000/004/original/user_export_file_20141225-48701-14hbzl1.txt +8 -0
- data/spec/dummy/public/system/user_export_files/user_exports/000/000/004/original/user_export_file_20141225-49875-1pc6esj.txt +8 -0
- data/spec/dummy/public/system/user_export_files/user_exports/000/000/004/original/user_export_file_20141225-64608-1wo1bpq.txt +8 -0
- data/spec/dummy/public/system/user_export_files/user_exports/000/000/004/original/user_export_file_20141225-64763-daej3l.txt +8 -0
- data/spec/dummy/public/system/user_export_files/user_exports/000/000/004/original/user_export_file_20141225-65000-1a7srlh.txt +8 -0
- data/spec/dummy/public/system/user_export_files/user_exports/000/000/004/original/user_export_file_20141225-65196-ggad1c.txt +8 -0
- data/spec/dummy/public/system/user_export_files/user_exports/000/000/004/original/user_export_file_20141225-65273-tt5ev2.txt +8 -0
- data/spec/dummy/public/system/user_export_files/user_exports/000/000/004/original/user_export_file_20141225-65424-1d17hts.txt +8 -0
- data/spec/dummy/public/system/user_export_files/user_exports/000/000/004/original/user_export_file_20141225-65662-1gqvlj3.txt +8 -0
- data/spec/dummy/public/system/user_export_files/user_exports/000/000/004/original/user_export_file_20141225-65725-1qpz2tm.txt +8 -0
- data/spec/dummy/public/system/user_export_files/user_exports/000/000/004/original/user_export_file_20141225-65807-t7cfln.txt +8 -0
- data/spec/dummy/public/system/user_export_files/user_exports/000/000/004/original/user_export_file_20141225-65962-161pm01.txt +8 -0
- data/spec/dummy/public/system/user_export_files/user_exports/000/000/004/original/user_export_file_20141225-66069-h9ftv6.txt +8 -0
- data/spec/dummy/public/system/user_export_files/user_exports/000/000/004/original/user_export_file_20141225-66327-hsz0j4.txt +8 -0
- data/spec/dummy/public/system/user_export_files/user_exports/000/000/004/original/user_export_file_20141225-67268-hqxt6v.txt +8 -0
- data/spec/dummy/public/system/user_export_files/user_exports/000/000/004/original/user_export_file_20150119-54567-1exwx4r.txt +8 -0
- data/spec/dummy/public/system/user_export_files/user_exports/000/000/004/original/user_export_file_20150120-80886-1whqn2s.txt +8 -0
- data/spec/dummy/public/system/user_export_files/user_exports/000/000/004/original/user_export_file_20150120-81115-hlvwc4.txt +8 -0
- data/spec/dummy/public/system/user_export_files/user_exports/000/000/004/original/user_export_file_20150121-86495-navftm.txt +8 -0
- data/spec/dummy/public/system/user_export_files/user_exports/000/000/004/original/user_export_file_20150121-86986-894a3i.txt +8 -0
- data/spec/dummy/public/system/user_export_files/user_exports/000/000/004/original/user_export_file_20150122-4492-vaml86.txt +8 -0
- data/spec/dummy/public/system/user_export_files/user_exports/000/000/004/original/user_export_file_20150123-14447-gy0ver.txt +8 -0
- data/spec/dummy/yarn.lock +8 -0
- data/spec/factories/agent.rb +1 -1
- data/spec/factories/library.rb +1 -1
- data/spec/factories/profile.rb +3 -3
- data/spec/factories/user.rb +25 -31
- data/spec/fixtures/carrier_types.yml +23 -24
- data/spec/fixtures/content_types.yml +78 -22
- data/spec/fixtures/libraries.yml +28 -31
- data/spec/fixtures/library_groups.yml +33 -16
- data/spec/fixtures/manifestations.yml +32 -27
- data/spec/fixtures/roles.yml +11 -12
- data/spec/fixtures/shelves.yml +14 -15
- data/spec/fixtures/user_groups.yml +9 -16
- data/spec/fixtures/user_has_roles.yml +2 -1
- data/spec/rails_helper.rb +11 -1
- data/spec/system/page_spec.rb +35 -0
- data/spec/views/page/configuration.html.erb_spec.rb +1 -1
- metadata +723 -337
- data/app/assets/javascripts/enju_leaf.js +0 -12
- data/app/assets/javascripts/mobile.js +0 -4
- data/spec/dummy/db/migrate/20151213070943_add_translation_table_to_library_group.rb +0 -25
- data/spec/dummy/db/migrate/20151213072705_add_footer_banner_to_library_group.rb +0 -22
- data/vendor/assets/javascripts/jquery.colorbox.js +0 -1105
- data/vendor/assets/javascripts/jquery.powertip.js +0 -1395
- data/vendor/assets/stylesheets/colorbox.css +0 -70
- data/vendor/assets/stylesheets/jquery.powertip.css +0 -105
|
@@ -0,0 +1,175 @@
|
|
|
1
|
+
define( [
|
|
2
|
+
"./core",
|
|
3
|
+
"./var/indexOf",
|
|
4
|
+
"./traversing/var/dir",
|
|
5
|
+
"./traversing/var/siblings",
|
|
6
|
+
"./traversing/var/rneedsContext",
|
|
7
|
+
"./core/init",
|
|
8
|
+
"./traversing/findFilter",
|
|
9
|
+
"./selector"
|
|
10
|
+
], function( jQuery, indexOf, dir, siblings, rneedsContext ) {
|
|
11
|
+
|
|
12
|
+
var rparentsprev = /^(?:parents|prev(?:Until|All))/,
|
|
13
|
+
|
|
14
|
+
// Methods guaranteed to produce a unique set when starting from a unique set
|
|
15
|
+
guaranteedUnique = {
|
|
16
|
+
children: true,
|
|
17
|
+
contents: true,
|
|
18
|
+
next: true,
|
|
19
|
+
prev: true
|
|
20
|
+
};
|
|
21
|
+
|
|
22
|
+
jQuery.fn.extend( {
|
|
23
|
+
has: function( target ) {
|
|
24
|
+
var targets = jQuery( target, this ),
|
|
25
|
+
l = targets.length;
|
|
26
|
+
|
|
27
|
+
return this.filter( function() {
|
|
28
|
+
var i = 0;
|
|
29
|
+
for ( ; i < l; i++ ) {
|
|
30
|
+
if ( jQuery.contains( this, targets[ i ] ) ) {
|
|
31
|
+
return true;
|
|
32
|
+
}
|
|
33
|
+
}
|
|
34
|
+
} );
|
|
35
|
+
},
|
|
36
|
+
|
|
37
|
+
closest: function( selectors, context ) {
|
|
38
|
+
var cur,
|
|
39
|
+
i = 0,
|
|
40
|
+
l = this.length,
|
|
41
|
+
matched = [],
|
|
42
|
+
pos = rneedsContext.test( selectors ) || typeof selectors !== "string" ?
|
|
43
|
+
jQuery( selectors, context || this.context ) :
|
|
44
|
+
0;
|
|
45
|
+
|
|
46
|
+
for ( ; i < l; i++ ) {
|
|
47
|
+
for ( cur = this[ i ]; cur && cur !== context; cur = cur.parentNode ) {
|
|
48
|
+
|
|
49
|
+
// Always skip document fragments
|
|
50
|
+
if ( cur.nodeType < 11 && ( pos ?
|
|
51
|
+
pos.index( cur ) > -1 :
|
|
52
|
+
|
|
53
|
+
// Don't pass non-elements to Sizzle
|
|
54
|
+
cur.nodeType === 1 &&
|
|
55
|
+
jQuery.find.matchesSelector( cur, selectors ) ) ) {
|
|
56
|
+
|
|
57
|
+
matched.push( cur );
|
|
58
|
+
break;
|
|
59
|
+
}
|
|
60
|
+
}
|
|
61
|
+
}
|
|
62
|
+
|
|
63
|
+
return this.pushStack( matched.length > 1 ? jQuery.uniqueSort( matched ) : matched );
|
|
64
|
+
},
|
|
65
|
+
|
|
66
|
+
// Determine the position of an element within the set
|
|
67
|
+
index: function( elem ) {
|
|
68
|
+
|
|
69
|
+
// No argument, return index in parent
|
|
70
|
+
if ( !elem ) {
|
|
71
|
+
return ( this[ 0 ] && this[ 0 ].parentNode ) ? this.first().prevAll().length : -1;
|
|
72
|
+
}
|
|
73
|
+
|
|
74
|
+
// Index in selector
|
|
75
|
+
if ( typeof elem === "string" ) {
|
|
76
|
+
return indexOf.call( jQuery( elem ), this[ 0 ] );
|
|
77
|
+
}
|
|
78
|
+
|
|
79
|
+
// Locate the position of the desired element
|
|
80
|
+
return indexOf.call( this,
|
|
81
|
+
|
|
82
|
+
// If it receives a jQuery object, the first element is used
|
|
83
|
+
elem.jquery ? elem[ 0 ] : elem
|
|
84
|
+
);
|
|
85
|
+
},
|
|
86
|
+
|
|
87
|
+
add: function( selector, context ) {
|
|
88
|
+
return this.pushStack(
|
|
89
|
+
jQuery.uniqueSort(
|
|
90
|
+
jQuery.merge( this.get(), jQuery( selector, context ) )
|
|
91
|
+
)
|
|
92
|
+
);
|
|
93
|
+
},
|
|
94
|
+
|
|
95
|
+
addBack: function( selector ) {
|
|
96
|
+
return this.add( selector == null ?
|
|
97
|
+
this.prevObject : this.prevObject.filter( selector )
|
|
98
|
+
);
|
|
99
|
+
}
|
|
100
|
+
} );
|
|
101
|
+
|
|
102
|
+
function sibling( cur, dir ) {
|
|
103
|
+
while ( ( cur = cur[ dir ] ) && cur.nodeType !== 1 ) {}
|
|
104
|
+
return cur;
|
|
105
|
+
}
|
|
106
|
+
|
|
107
|
+
jQuery.each( {
|
|
108
|
+
parent: function( elem ) {
|
|
109
|
+
var parent = elem.parentNode;
|
|
110
|
+
return parent && parent.nodeType !== 11 ? parent : null;
|
|
111
|
+
},
|
|
112
|
+
parents: function( elem ) {
|
|
113
|
+
return dir( elem, "parentNode" );
|
|
114
|
+
},
|
|
115
|
+
parentsUntil: function( elem, i, until ) {
|
|
116
|
+
return dir( elem, "parentNode", until );
|
|
117
|
+
},
|
|
118
|
+
next: function( elem ) {
|
|
119
|
+
return sibling( elem, "nextSibling" );
|
|
120
|
+
},
|
|
121
|
+
prev: function( elem ) {
|
|
122
|
+
return sibling( elem, "previousSibling" );
|
|
123
|
+
},
|
|
124
|
+
nextAll: function( elem ) {
|
|
125
|
+
return dir( elem, "nextSibling" );
|
|
126
|
+
},
|
|
127
|
+
prevAll: function( elem ) {
|
|
128
|
+
return dir( elem, "previousSibling" );
|
|
129
|
+
},
|
|
130
|
+
nextUntil: function( elem, i, until ) {
|
|
131
|
+
return dir( elem, "nextSibling", until );
|
|
132
|
+
},
|
|
133
|
+
prevUntil: function( elem, i, until ) {
|
|
134
|
+
return dir( elem, "previousSibling", until );
|
|
135
|
+
},
|
|
136
|
+
siblings: function( elem ) {
|
|
137
|
+
return siblings( ( elem.parentNode || {} ).firstChild, elem );
|
|
138
|
+
},
|
|
139
|
+
children: function( elem ) {
|
|
140
|
+
return siblings( elem.firstChild );
|
|
141
|
+
},
|
|
142
|
+
contents: function( elem ) {
|
|
143
|
+
return elem.contentDocument || jQuery.merge( [], elem.childNodes );
|
|
144
|
+
}
|
|
145
|
+
}, function( name, fn ) {
|
|
146
|
+
jQuery.fn[ name ] = function( until, selector ) {
|
|
147
|
+
var matched = jQuery.map( this, fn, until );
|
|
148
|
+
|
|
149
|
+
if ( name.slice( -5 ) !== "Until" ) {
|
|
150
|
+
selector = until;
|
|
151
|
+
}
|
|
152
|
+
|
|
153
|
+
if ( selector && typeof selector === "string" ) {
|
|
154
|
+
matched = jQuery.filter( selector, matched );
|
|
155
|
+
}
|
|
156
|
+
|
|
157
|
+
if ( this.length > 1 ) {
|
|
158
|
+
|
|
159
|
+
// Remove duplicates
|
|
160
|
+
if ( !guaranteedUnique[ name ] ) {
|
|
161
|
+
jQuery.uniqueSort( matched );
|
|
162
|
+
}
|
|
163
|
+
|
|
164
|
+
// Reverse order for parents* and prev-derivatives
|
|
165
|
+
if ( rparentsprev.test( name ) ) {
|
|
166
|
+
matched.reverse();
|
|
167
|
+
}
|
|
168
|
+
}
|
|
169
|
+
|
|
170
|
+
return this.pushStack( matched );
|
|
171
|
+
};
|
|
172
|
+
} );
|
|
173
|
+
|
|
174
|
+
return jQuery;
|
|
175
|
+
} );
|
|
@@ -0,0 +1,79 @@
|
|
|
1
|
+
define( [
|
|
2
|
+
"./core",
|
|
3
|
+
"./core/init",
|
|
4
|
+
"./manipulation", // clone
|
|
5
|
+
"./traversing" // parent, contents
|
|
6
|
+
], function( jQuery ) {
|
|
7
|
+
|
|
8
|
+
jQuery.fn.extend( {
|
|
9
|
+
wrapAll: function( html ) {
|
|
10
|
+
var wrap;
|
|
11
|
+
|
|
12
|
+
if ( jQuery.isFunction( html ) ) {
|
|
13
|
+
return this.each( function( i ) {
|
|
14
|
+
jQuery( this ).wrapAll( html.call( this, i ) );
|
|
15
|
+
} );
|
|
16
|
+
}
|
|
17
|
+
|
|
18
|
+
if ( this[ 0 ] ) {
|
|
19
|
+
|
|
20
|
+
// The elements to wrap the target around
|
|
21
|
+
wrap = jQuery( html, this[ 0 ].ownerDocument ).eq( 0 ).clone( true );
|
|
22
|
+
|
|
23
|
+
if ( this[ 0 ].parentNode ) {
|
|
24
|
+
wrap.insertBefore( this[ 0 ] );
|
|
25
|
+
}
|
|
26
|
+
|
|
27
|
+
wrap.map( function() {
|
|
28
|
+
var elem = this;
|
|
29
|
+
|
|
30
|
+
while ( elem.firstElementChild ) {
|
|
31
|
+
elem = elem.firstElementChild;
|
|
32
|
+
}
|
|
33
|
+
|
|
34
|
+
return elem;
|
|
35
|
+
} ).append( this );
|
|
36
|
+
}
|
|
37
|
+
|
|
38
|
+
return this;
|
|
39
|
+
},
|
|
40
|
+
|
|
41
|
+
wrapInner: function( html ) {
|
|
42
|
+
if ( jQuery.isFunction( html ) ) {
|
|
43
|
+
return this.each( function( i ) {
|
|
44
|
+
jQuery( this ).wrapInner( html.call( this, i ) );
|
|
45
|
+
} );
|
|
46
|
+
}
|
|
47
|
+
|
|
48
|
+
return this.each( function() {
|
|
49
|
+
var self = jQuery( this ),
|
|
50
|
+
contents = self.contents();
|
|
51
|
+
|
|
52
|
+
if ( contents.length ) {
|
|
53
|
+
contents.wrapAll( html );
|
|
54
|
+
|
|
55
|
+
} else {
|
|
56
|
+
self.append( html );
|
|
57
|
+
}
|
|
58
|
+
} );
|
|
59
|
+
},
|
|
60
|
+
|
|
61
|
+
wrap: function( html ) {
|
|
62
|
+
var isFunction = jQuery.isFunction( html );
|
|
63
|
+
|
|
64
|
+
return this.each( function( i ) {
|
|
65
|
+
jQuery( this ).wrapAll( isFunction ? html.call( this, i ) : html );
|
|
66
|
+
} );
|
|
67
|
+
},
|
|
68
|
+
|
|
69
|
+
unwrap: function() {
|
|
70
|
+
return this.parent().each( function() {
|
|
71
|
+
if ( !jQuery.nodeName( this, "body" ) ) {
|
|
72
|
+
jQuery( this ).replaceWith( this.childNodes );
|
|
73
|
+
}
|
|
74
|
+
} ).end();
|
|
75
|
+
}
|
|
76
|
+
} );
|
|
77
|
+
|
|
78
|
+
return jQuery;
|
|
79
|
+
} );
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
username email user_number role user_group library locale created_at updated_at expired_at keyword_list note checkout_icalendar_token save_checkout_history save_search_history share_bookmarks
|
|
2
|
+
enjuadmin tanabe@kamata.lib.teu.ac.jp 00001 Administrator user kamata en 2007-11-19 07:58:32 UTC 2008-05-31 04:16:30 UTC false false
|
|
3
|
+
librarian1 librarian1@kamata.lib.teu.ac.jp 00002 Librarian not_specified web ja 2007-11-19 07:58:33 UTC 2008-05-31 03:41:16 UTC false false
|
|
4
|
+
user1 user1@kamata.lib.teu.ac.jp 00003 User not_specified kamata ja 2007-11-19 07:58:34 UTC 2008-05-31 04:02:25 UTC false false
|
|
5
|
+
librarian2 librarian2@library.example.jp 00004 Librarian not_specified kamata ja 2008-01-18 03:24:04 UTC 2008-05-31 03:42:23 UTC false false
|
|
6
|
+
user2 user2@library.example.jp User not_specified web ja 2008-01-18 04:29:06 UTC 2008-05-31 03:42:44 UTC false false
|
|
7
|
+
user3 user3@kamata.lib.teu.ac.jp 00006 User not_specified kamata ja 2007-11-19 07:58:34 UTC 2008-05-31 04:02:25 UTC false false
|
|
8
|
+
user4 user4@kamata.lib.teu.ac.jp 00007 User not_specified kamata ja 2007-11-19 07:58:34 UTC 2008-05-31 04:02:25 UTC false false
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
username email user_number role user_group library locale created_at updated_at expired_at keyword_list note checkout_icalendar_token save_checkout_history save_search_history share_bookmarks
|
|
2
|
+
enjuadmin tanabe@kamata.lib.teu.ac.jp 00001 Administrator user kamata en 2007-11-19 07:58:32 UTC 2008-05-31 04:16:30 UTC false false
|
|
3
|
+
librarian1 librarian1@kamata.lib.teu.ac.jp 00002 Librarian not_specified web ja 2007-11-19 07:58:33 UTC 2008-05-31 03:41:16 UTC false false
|
|
4
|
+
user1 user1@kamata.lib.teu.ac.jp 00003 User not_specified kamata ja 2007-11-19 07:58:34 UTC 2008-05-31 04:02:25 UTC false false
|
|
5
|
+
librarian2 librarian2@library.example.jp 00004 Librarian not_specified kamata ja 2008-01-18 03:24:04 UTC 2008-05-31 03:42:23 UTC false false
|
|
6
|
+
user2 user2@library.example.jp User not_specified web ja 2008-01-18 04:29:06 UTC 2008-05-31 03:42:44 UTC false false
|
|
7
|
+
user3 user3@kamata.lib.teu.ac.jp 00006 User not_specified kamata ja 2007-11-19 07:58:34 UTC 2008-05-31 04:02:25 UTC false false
|
|
8
|
+
user4 user4@kamata.lib.teu.ac.jp 00007 User not_specified kamata ja 2007-11-19 07:58:34 UTC 2008-05-31 04:02:25 UTC false false
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
username email user_number role user_group library locale created_at updated_at expired_at keyword_list note checkout_icalendar_token save_checkout_history save_search_history share_bookmarks
|
|
2
|
+
enjuadmin tanabe@kamata.lib.teu.ac.jp 00001 Administrator user kamata en 2007-11-19 07:58:32 UTC 2008-05-31 04:16:30 UTC false false
|
|
3
|
+
librarian1 librarian1@kamata.lib.teu.ac.jp 00002 Librarian not_specified web ja 2007-11-19 07:58:33 UTC 2008-05-31 03:41:16 UTC false false
|
|
4
|
+
user1 user1@kamata.lib.teu.ac.jp 00003 User not_specified kamata ja 2007-11-19 07:58:34 UTC 2008-05-31 04:02:25 UTC false false
|
|
5
|
+
librarian2 librarian2@library.example.jp 00004 Librarian not_specified kamata ja 2008-01-18 03:24:04 UTC 2008-05-31 03:42:23 UTC false false
|
|
6
|
+
user2 user2@library.example.jp User not_specified web ja 2008-01-18 04:29:06 UTC 2008-05-31 03:42:44 UTC false false
|
|
7
|
+
user3 user3@kamata.lib.teu.ac.jp 00006 User not_specified kamata ja 2007-11-19 07:58:34 UTC 2008-05-31 04:02:25 UTC false false
|
|
8
|
+
user4 user4@kamata.lib.teu.ac.jp 00007 User not_specified kamata ja 2007-11-19 07:58:34 UTC 2008-05-31 04:02:25 UTC false false
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
username email user_number role user_group library locale created_at updated_at expired_at keyword_list note checkout_icalendar_token save_checkout_history save_search_history share_bookmarks
|
|
2
|
+
enjuadmin tanabe@kamata.lib.teu.ac.jp 00001 Administrator user kamata en 2007-11-19 07:58:32 UTC 2008-05-31 04:16:30 UTC false false
|
|
3
|
+
librarian1 librarian1@kamata.lib.teu.ac.jp 00002 Librarian not_specified web ja 2007-11-19 07:58:33 UTC 2008-05-31 03:41:16 UTC false false
|
|
4
|
+
user1 user1@kamata.lib.teu.ac.jp 00003 User not_specified kamata ja 2007-11-19 07:58:34 UTC 2008-05-31 04:02:25 UTC false false
|
|
5
|
+
librarian2 librarian2@library.example.jp 00004 Librarian not_specified kamata ja 2008-01-18 03:24:04 UTC 2008-05-31 03:42:23 UTC false false
|
|
6
|
+
user2 user2@library.example.jp User not_specified web ja 2008-01-18 04:29:06 UTC 2008-05-31 03:42:44 UTC false false
|
|
7
|
+
user3 user3@kamata.lib.teu.ac.jp 00006 User not_specified kamata ja 2007-11-19 07:58:34 UTC 2008-05-31 04:02:25 UTC false false
|
|
8
|
+
user4 user4@kamata.lib.teu.ac.jp 00007 User not_specified kamata ja 2007-11-19 07:58:34 UTC 2008-05-31 04:02:25 UTC false false
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
username email user_number role user_group library locale created_at updated_at expired_at keyword_list note checkout_icalendar_token save_checkout_history save_search_history share_bookmarks
|
|
2
|
+
enjuadmin tanabe@kamata.lib.teu.ac.jp 00001 Administrator user kamata en 2007-11-19 07:58:32 UTC 2008-05-31 04:16:30 UTC false false
|
|
3
|
+
librarian1 librarian1@kamata.lib.teu.ac.jp 00002 Librarian not_specified web ja 2007-11-19 07:58:33 UTC 2008-05-31 03:41:16 UTC false false
|
|
4
|
+
user1 user1@kamata.lib.teu.ac.jp 00003 User not_specified kamata ja 2007-11-19 07:58:34 UTC 2008-05-31 04:02:25 UTC false false
|
|
5
|
+
librarian2 librarian2@library.example.jp 00004 Librarian not_specified kamata ja 2008-01-18 03:24:04 UTC 2008-05-31 03:42:23 UTC false false
|
|
6
|
+
user2 user2@library.example.jp User not_specified web ja 2008-01-18 04:29:06 UTC 2008-05-31 03:42:44 UTC false false
|
|
7
|
+
user3 user3@kamata.lib.teu.ac.jp 00006 User not_specified kamata ja 2007-11-19 07:58:34 UTC 2008-05-31 04:02:25 UTC false false
|
|
8
|
+
user4 user4@kamata.lib.teu.ac.jp 00007 User not_specified kamata ja 2007-11-19 07:58:34 UTC 2008-05-31 04:02:25 UTC false false
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
username email user_number role user_group library locale created_at updated_at expired_at keyword_list note checkout_icalendar_token save_checkout_history save_search_history share_bookmarks
|
|
2
|
+
enjuadmin tanabe@kamata.lib.teu.ac.jp 00001 Administrator user kamata en 2007-11-19 07:58:32 UTC 2008-05-31 04:16:30 UTC false false
|
|
3
|
+
librarian1 librarian1@kamata.lib.teu.ac.jp 00002 Librarian not_specified web ja 2007-11-19 07:58:33 UTC 2008-05-31 03:41:16 UTC false false
|
|
4
|
+
user1 user1@kamata.lib.teu.ac.jp 00003 User not_specified kamata ja 2007-11-19 07:58:34 UTC 2008-05-31 04:02:25 UTC false false
|
|
5
|
+
librarian2 librarian2@library.example.jp 00004 Librarian not_specified kamata ja 2008-01-18 03:24:04 UTC 2008-05-31 03:42:23 UTC false false
|
|
6
|
+
user2 user2@library.example.jp User not_specified web ja 2008-01-18 04:29:06 UTC 2008-05-31 03:42:44 UTC false false
|
|
7
|
+
user3 user3@kamata.lib.teu.ac.jp 00006 User not_specified kamata ja 2007-11-19 07:58:34 UTC 2008-05-31 04:02:25 UTC false false
|
|
8
|
+
user4 user4@kamata.lib.teu.ac.jp 00007 User not_specified kamata ja 2007-11-19 07:58:34 UTC 2008-05-31 04:02:25 UTC false false
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
username email user_number role user_group library locale created_at updated_at expired_at keyword_list note checkout_icalendar_token save_checkout_history save_search_history share_bookmarks
|
|
2
|
+
enjuadmin tanabe@kamata.lib.teu.ac.jp 00001 Administrator user kamata en 2007-11-19 07:58:32 UTC 2008-05-31 04:16:30 UTC false false
|
|
3
|
+
librarian1 librarian1@kamata.lib.teu.ac.jp 00002 Librarian not_specified web ja 2007-11-19 07:58:33 UTC 2008-05-31 03:41:16 UTC false false
|
|
4
|
+
user1 user1@kamata.lib.teu.ac.jp 00003 User not_specified kamata ja 2007-11-19 07:58:34 UTC 2008-05-31 04:02:25 UTC false false
|
|
5
|
+
librarian2 librarian2@library.example.jp 00004 Librarian not_specified kamata ja 2008-01-18 03:24:04 UTC 2008-05-31 03:42:23 UTC false false
|
|
6
|
+
user2 user2@library.example.jp User not_specified web ja 2008-01-18 04:29:06 UTC 2008-05-31 03:42:44 UTC false false
|
|
7
|
+
user3 user3@kamata.lib.teu.ac.jp 00006 User not_specified kamata ja 2007-11-19 07:58:34 UTC 2008-05-31 04:02:25 UTC false false
|
|
8
|
+
user4 user4@kamata.lib.teu.ac.jp 00007 User not_specified kamata ja 2007-11-19 07:58:34 UTC 2008-05-31 04:02:25 UTC false false
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
username email user_number role user_group library locale created_at updated_at expired_at keyword_list note checkout_icalendar_token save_checkout_history save_search_history share_bookmarks
|
|
2
|
+
enjuadmin tanabe@kamata.lib.teu.ac.jp 00001 Administrator user kamata en 2007-11-19 07:58:32 UTC 2008-05-31 04:16:30 UTC false false
|
|
3
|
+
librarian1 librarian1@kamata.lib.teu.ac.jp 00002 Librarian not_specified web ja 2007-11-19 07:58:33 UTC 2008-05-31 03:41:16 UTC false false
|
|
4
|
+
user1 user1@kamata.lib.teu.ac.jp 00003 User not_specified kamata ja 2007-11-19 07:58:34 UTC 2008-05-31 04:02:25 UTC false false
|
|
5
|
+
librarian2 librarian2@library.example.jp 00004 Librarian not_specified kamata ja 2008-01-18 03:24:04 UTC 2008-05-31 03:42:23 UTC false false
|
|
6
|
+
user2 user2@library.example.jp User not_specified web ja 2008-01-18 04:29:06 UTC 2008-05-31 03:42:44 UTC false false
|
|
7
|
+
user3 user3@kamata.lib.teu.ac.jp 00006 User not_specified kamata ja 2007-11-19 07:58:34 UTC 2008-05-31 04:02:25 UTC false false
|
|
8
|
+
user4 user4@kamata.lib.teu.ac.jp 00007 User not_specified kamata ja 2007-11-19 07:58:34 UTC 2008-05-31 04:02:25 UTC false false
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
username email user_number role user_group library locale created_at updated_at expired_at keyword_list note checkout_icalendar_token save_checkout_history save_search_history share_bookmarks
|
|
2
|
+
enjuadmin tanabe@kamata.lib.teu.ac.jp 00001 Administrator user kamata en 2007-11-19 07:58:32 UTC 2008-05-31 04:16:30 UTC false false
|
|
3
|
+
librarian1 librarian1@kamata.lib.teu.ac.jp 00002 Librarian not_specified web ja 2007-11-19 07:58:33 UTC 2008-05-31 03:41:16 UTC false false
|
|
4
|
+
user1 user1@kamata.lib.teu.ac.jp 00003 User not_specified kamata ja 2007-11-19 07:58:34 UTC 2008-05-31 04:02:25 UTC false false
|
|
5
|
+
librarian2 librarian2@library.example.jp 00004 Librarian not_specified kamata ja 2008-01-18 03:24:04 UTC 2008-05-31 03:42:23 UTC false false
|
|
6
|
+
user2 user2@library.example.jp User not_specified web ja 2008-01-18 04:29:06 UTC 2008-05-31 03:42:44 UTC false false
|
|
7
|
+
user3 user3@kamata.lib.teu.ac.jp 00006 User not_specified kamata ja 2007-11-19 07:58:34 UTC 2008-05-31 04:02:25 UTC false false
|
|
8
|
+
user4 user4@kamata.lib.teu.ac.jp 00007 User not_specified kamata ja 2007-11-19 07:58:34 UTC 2008-05-31 04:02:25 UTC false false
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
username email user_number role user_group library locale created_at updated_at expired_at keyword_list note checkout_icalendar_token save_checkout_history save_search_history share_bookmarks
|
|
2
|
+
enjuadmin tanabe@kamata.lib.teu.ac.jp 00001 Administrator user kamata en 2007-11-19 07:58:32 UTC 2008-05-31 04:16:30 UTC false false
|
|
3
|
+
librarian1 librarian1@kamata.lib.teu.ac.jp 00002 Librarian not_specified web ja 2007-11-19 07:58:33 UTC 2008-05-31 03:41:16 UTC false false
|
|
4
|
+
user1 user1@kamata.lib.teu.ac.jp 00003 User not_specified kamata ja 2007-11-19 07:58:34 UTC 2008-05-31 04:02:25 UTC false false
|
|
5
|
+
librarian2 librarian2@library.example.jp 00004 Librarian not_specified kamata ja 2008-01-18 03:24:04 UTC 2008-05-31 03:42:23 UTC false false
|
|
6
|
+
user2 user2@library.example.jp User not_specified web ja 2008-01-18 04:29:06 UTC 2008-05-31 03:42:44 UTC false false
|
|
7
|
+
user3 user3@kamata.lib.teu.ac.jp 00006 User not_specified kamata ja 2007-11-19 07:58:34 UTC 2008-05-31 04:02:25 UTC false false
|
|
8
|
+
user4 user4@kamata.lib.teu.ac.jp 00007 User not_specified kamata ja 2007-11-19 07:58:34 UTC 2008-05-31 04:02:25 UTC false false
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
username email user_number role user_group library locale created_at updated_at expired_at keyword_list note checkout_icalendar_token save_checkout_history save_search_history share_bookmarks
|
|
2
|
+
enjuadmin tanabe@kamata.lib.teu.ac.jp 00001 Administrator user kamata en 2007-11-19 07:58:32 UTC 2008-05-31 04:16:30 UTC false false
|
|
3
|
+
librarian1 librarian1@kamata.lib.teu.ac.jp 00002 Librarian not_specified web ja 2007-11-19 07:58:33 UTC 2008-05-31 03:41:16 UTC false false
|
|
4
|
+
user1 user1@kamata.lib.teu.ac.jp 00003 User not_specified kamata ja 2007-11-19 07:58:34 UTC 2008-05-31 04:02:25 UTC false false
|
|
5
|
+
librarian2 librarian2@library.example.jp 00004 Librarian not_specified kamata ja 2008-01-18 03:24:04 UTC 2008-05-31 03:42:23 UTC false false
|
|
6
|
+
user2 user2@library.example.jp User not_specified web ja 2008-01-18 04:29:06 UTC 2008-05-31 03:42:44 UTC false false
|
|
7
|
+
user3 user3@kamata.lib.teu.ac.jp 00006 User not_specified kamata ja 2007-11-19 07:58:34 UTC 2008-05-31 04:02:25 UTC false false
|
|
8
|
+
user4 user4@kamata.lib.teu.ac.jp 00007 User not_specified kamata ja 2007-11-19 07:58:34 UTC 2008-05-31 04:02:25 UTC false false
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
username email user_number role user_group library locale created_at updated_at expired_at keyword_list note checkout_icalendar_token save_checkout_history save_search_history share_bookmarks
|
|
2
|
+
enjuadmin tanabe@kamata.lib.teu.ac.jp 00001 Administrator user kamata en 2007-11-19 07:58:32 UTC 2008-05-31 04:16:30 UTC false false
|
|
3
|
+
librarian1 librarian1@kamata.lib.teu.ac.jp 00002 Librarian not_specified web ja 2007-11-19 07:58:33 UTC 2008-05-31 03:41:16 UTC false false
|
|
4
|
+
user1 user1@kamata.lib.teu.ac.jp 00003 User not_specified kamata ja 2007-11-19 07:58:34 UTC 2008-05-31 04:02:25 UTC false false
|
|
5
|
+
librarian2 librarian2@library.example.jp 00004 Librarian not_specified kamata ja 2008-01-18 03:24:04 UTC 2008-05-31 03:42:23 UTC false false
|
|
6
|
+
user2 user2@library.example.jp User not_specified web ja 2008-01-18 04:29:06 UTC 2008-05-31 03:42:44 UTC false false
|
|
7
|
+
user3 user3@kamata.lib.teu.ac.jp 00006 User not_specified kamata ja 2007-11-19 07:58:34 UTC 2008-05-31 04:02:25 UTC false false
|
|
8
|
+
user4 user4@kamata.lib.teu.ac.jp 00007 User not_specified kamata ja 2007-11-19 07:58:34 UTC 2008-05-31 04:02:25 UTC false false
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
username email user_number role user_group library locale created_at updated_at expired_at keyword_list note checkout_icalendar_token save_checkout_history save_search_history share_bookmarks
|
|
2
|
+
enjuadmin tanabe@kamata.lib.teu.ac.jp 00001 Administrator user kamata en 2007-11-19 07:58:32 UTC 2008-05-31 04:16:30 UTC false false
|
|
3
|
+
librarian1 librarian1@kamata.lib.teu.ac.jp 00002 Librarian not_specified web ja 2007-11-19 07:58:33 UTC 2008-05-31 03:41:16 UTC false false
|
|
4
|
+
user1 user1@kamata.lib.teu.ac.jp 00003 User not_specified kamata ja 2007-11-19 07:58:34 UTC 2008-05-31 04:02:25 UTC false false
|
|
5
|
+
librarian2 librarian2@library.example.jp 00004 Librarian not_specified kamata ja 2008-01-18 03:24:04 UTC 2008-05-31 03:42:23 UTC false false
|
|
6
|
+
user2 user2@library.example.jp User not_specified web ja 2008-01-18 04:29:06 UTC 2008-05-31 03:42:44 UTC false false
|
|
7
|
+
user3 user3@kamata.lib.teu.ac.jp 00006 User not_specified kamata ja 2007-11-19 07:58:34 UTC 2008-05-31 04:02:25 UTC false false
|
|
8
|
+
user4 user4@kamata.lib.teu.ac.jp 00007 User not_specified kamata ja 2007-11-19 07:58:34 UTC 2008-05-31 04:02:25 UTC false false
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
username email user_number role user_group library locale created_at updated_at expired_at keyword_list note checkout_icalendar_token save_checkout_history save_search_history share_bookmarks
|
|
2
|
+
enjuadmin tanabe@kamata.lib.teu.ac.jp 00001 Administrator user kamata en 2007-11-19 07:58:32 UTC 2008-05-31 04:16:30 UTC false false
|
|
3
|
+
librarian1 librarian1@kamata.lib.teu.ac.jp 00002 Librarian not_specified web ja 2007-11-19 07:58:33 UTC 2008-05-31 03:41:16 UTC false false
|
|
4
|
+
user1 user1@kamata.lib.teu.ac.jp 00003 User not_specified kamata ja 2007-11-19 07:58:34 UTC 2008-05-31 04:02:25 UTC false false
|
|
5
|
+
librarian2 librarian2@library.example.jp 00004 Librarian not_specified kamata ja 2008-01-18 03:24:04 UTC 2008-05-31 03:42:23 UTC false false
|
|
6
|
+
user2 user2@library.example.jp User not_specified web ja 2008-01-18 04:29:06 UTC 2008-05-31 03:42:44 UTC false false
|
|
7
|
+
user3 user3@kamata.lib.teu.ac.jp 00006 User not_specified kamata ja 2007-11-19 07:58:34 UTC 2008-05-31 04:02:25 UTC false false
|
|
8
|
+
user4 user4@kamata.lib.teu.ac.jp 00007 User not_specified kamata ja 2007-11-19 07:58:34 UTC 2008-05-31 04:02:25 UTC false false
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
username email user_number role user_group library locale created_at updated_at expired_at keyword_list note checkout_icalendar_token save_checkout_history save_search_history share_bookmarks
|
|
2
|
+
enjuadmin tanabe@kamata.lib.teu.ac.jp 00001 Administrator user kamata en 2007-11-19 07:58:32 UTC 2008-05-31 04:16:30 UTC false false
|
|
3
|
+
librarian1 librarian1@kamata.lib.teu.ac.jp 00002 Librarian not_specified web ja 2007-11-19 07:58:33 UTC 2008-05-31 03:41:16 UTC false false
|
|
4
|
+
user1 user1@kamata.lib.teu.ac.jp 00003 User not_specified kamata ja 2007-11-19 07:58:34 UTC 2008-05-31 04:02:25 UTC false false
|
|
5
|
+
librarian2 librarian2@library.example.jp 00004 Librarian not_specified kamata ja 2008-01-18 03:24:04 UTC 2008-05-31 03:42:23 UTC false false
|
|
6
|
+
user2 user2@library.example.jp User not_specified web ja 2008-01-18 04:29:06 UTC 2008-05-31 03:42:44 UTC false false
|
|
7
|
+
user3 user3@kamata.lib.teu.ac.jp 00006 User not_specified kamata ja 2007-11-19 07:58:34 UTC 2008-05-31 04:02:25 UTC false false
|
|
8
|
+
user4 user4@kamata.lib.teu.ac.jp 00007 User not_specified kamata ja 2007-11-19 07:58:34 UTC 2008-05-31 04:02:25 UTC false false
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
username email user_number role user_group library locale created_at updated_at expired_at keyword_list note checkout_icalendar_token save_checkout_history save_search_history share_bookmarks
|
|
2
|
+
enjuadmin tanabe@kamata.lib.teu.ac.jp 00001 Administrator user kamata en 2007-11-19 07:58:32 UTC 2008-05-31 04:16:30 UTC false false
|
|
3
|
+
librarian1 librarian1@kamata.lib.teu.ac.jp 00002 Librarian not_specified web ja 2007-11-19 07:58:33 UTC 2008-05-31 03:41:16 UTC false false
|
|
4
|
+
user1 user1@kamata.lib.teu.ac.jp 00003 User not_specified kamata ja 2007-11-19 07:58:34 UTC 2008-05-31 04:02:25 UTC false false
|
|
5
|
+
librarian2 librarian2@library.example.jp 00004 Librarian not_specified kamata ja 2008-01-18 03:24:04 UTC 2008-05-31 03:42:23 UTC false false
|
|
6
|
+
user2 user2@library.example.jp User not_specified web ja 2008-01-18 04:29:06 UTC 2008-05-31 03:42:44 UTC false false
|
|
7
|
+
user3 user3@kamata.lib.teu.ac.jp 00006 User not_specified kamata ja 2007-11-19 07:58:34 UTC 2008-05-31 04:02:25 UTC false false
|
|
8
|
+
user4 user4@kamata.lib.teu.ac.jp 00007 User not_specified kamata ja 2007-11-19 07:58:34 UTC 2008-05-31 04:02:25 UTC false false
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
username email user_number role user_group library locale created_at updated_at expired_at keyword_list note checkout_icalendar_token save_checkout_history save_search_history share_bookmarks
|
|
2
|
+
enjuadmin tanabe@kamata.lib.teu.ac.jp 00001 Administrator user kamata en 2007-11-19 07:58:32 UTC 2008-05-31 04:16:30 UTC false false
|
|
3
|
+
librarian1 librarian1@kamata.lib.teu.ac.jp 00002 Librarian not_specified web ja 2007-11-19 07:58:33 UTC 2008-05-31 03:41:16 UTC false false
|
|
4
|
+
user1 user1@kamata.lib.teu.ac.jp 00003 User not_specified kamata ja 2007-11-19 07:58:34 UTC 2008-05-31 04:02:25 UTC false false
|
|
5
|
+
librarian2 librarian2@library.example.jp 00004 Librarian not_specified kamata ja 2008-01-18 03:24:04 UTC 2008-05-31 03:42:23 UTC false false
|
|
6
|
+
user2 user2@library.example.jp User not_specified web ja 2008-01-18 04:29:06 UTC 2008-05-31 03:42:44 UTC false false
|
|
7
|
+
user3 user3@kamata.lib.teu.ac.jp 00006 User not_specified kamata ja 2007-11-19 07:58:34 UTC 2008-05-31 04:02:25 UTC false false
|
|
8
|
+
user4 user4@kamata.lib.teu.ac.jp 00007 User not_specified kamata ja 2007-11-19 07:58:34 UTC 2008-05-31 04:02:25 UTC false false
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
username email user_number role user_group library locale created_at updated_at expired_at keyword_list note checkout_icalendar_token save_checkout_history save_search_history share_bookmarks
|
|
2
|
+
enjuadmin tanabe@kamata.lib.teu.ac.jp 00001 Administrator user kamata en 2007-11-19 07:58:32 UTC 2008-05-31 04:16:30 UTC false false
|
|
3
|
+
librarian1 librarian1@kamata.lib.teu.ac.jp 00002 Librarian not_specified web ja 2007-11-19 07:58:33 UTC 2008-05-31 03:41:16 UTC false false
|
|
4
|
+
user1 user1@kamata.lib.teu.ac.jp 00003 User not_specified kamata ja 2007-11-19 07:58:34 UTC 2008-05-31 04:02:25 UTC false false
|
|
5
|
+
librarian2 librarian2@library.example.jp 00004 Librarian not_specified kamata ja 2008-01-18 03:24:04 UTC 2008-05-31 03:42:23 UTC false false
|
|
6
|
+
user2 user2@library.example.jp User not_specified web ja 2008-01-18 04:29:06 UTC 2008-05-31 03:42:44 UTC false false
|
|
7
|
+
user3 user3@kamata.lib.teu.ac.jp 00006 User not_specified kamata ja 2007-11-19 07:58:34 UTC 2008-05-31 04:02:25 UTC false false
|
|
8
|
+
user4 user4@kamata.lib.teu.ac.jp 00007 User not_specified kamata ja 2007-11-19 07:58:34 UTC 2008-05-31 04:02:25 UTC false false
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
username email user_number role user_group library locale created_at updated_at expired_at keyword_list note checkout_icalendar_token save_checkout_history save_search_history share_bookmarks
|
|
2
|
+
enjuadmin tanabe@kamata.lib.teu.ac.jp 00001 Administrator user kamata en 2007-11-19 07:58:32 UTC 2008-05-31 04:16:30 UTC false false
|
|
3
|
+
librarian1 librarian1@kamata.lib.teu.ac.jp 00002 Librarian not_specified web ja 2007-11-19 07:58:33 UTC 2008-05-31 03:41:16 UTC false false
|
|
4
|
+
user1 user1@kamata.lib.teu.ac.jp 00003 User not_specified kamata ja 2007-11-19 07:58:34 UTC 2008-05-31 04:02:25 UTC false false
|
|
5
|
+
librarian2 librarian2@library.example.jp 00004 Librarian not_specified kamata ja 2008-01-18 03:24:04 UTC 2008-05-31 03:42:23 UTC false false
|
|
6
|
+
user2 user2@library.example.jp User not_specified web ja 2008-01-18 04:29:06 UTC 2008-05-31 03:42:44 UTC false false
|
|
7
|
+
user3 user3@kamata.lib.teu.ac.jp 00006 User not_specified kamata ja 2007-11-19 07:58:34 UTC 2008-05-31 04:02:25 UTC false false
|
|
8
|
+
user4 user4@kamata.lib.teu.ac.jp 00007 User not_specified kamata ja 2007-11-19 07:58:34 UTC 2008-05-31 04:02:25 UTC false false
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
username email user_number role user_group library locale created_at updated_at expired_at keyword_list note checkout_icalendar_token save_checkout_history save_search_history share_bookmarks
|
|
2
|
+
enjuadmin tanabe@kamata.lib.teu.ac.jp 00001 Administrator user kamata en 2007-11-19 07:58:32 UTC 2008-05-31 04:16:30 UTC false false
|
|
3
|
+
librarian1 librarian1@kamata.lib.teu.ac.jp 00002 Librarian not_specified web ja 2007-11-19 07:58:33 UTC 2008-05-31 03:41:16 UTC false false
|
|
4
|
+
user1 user1@kamata.lib.teu.ac.jp 00003 User not_specified kamata ja 2007-11-19 07:58:34 UTC 2008-05-31 04:02:25 UTC false false
|
|
5
|
+
librarian2 librarian2@library.example.jp 00004 Librarian not_specified kamata ja 2008-01-18 03:24:04 UTC 2008-05-31 03:42:23 UTC false false
|
|
6
|
+
user2 user2@library.example.jp User not_specified web ja 2008-01-18 04:29:06 UTC 2008-05-31 03:42:44 UTC false false
|
|
7
|
+
user3 user3@kamata.lib.teu.ac.jp 00006 User not_specified kamata ja 2007-11-19 07:58:34 UTC 2008-05-31 04:02:25 UTC false false
|
|
8
|
+
user4 user4@kamata.lib.teu.ac.jp 00007 User not_specified kamata ja 2007-11-19 07:58:34 UTC 2008-05-31 04:02:25 UTC false false
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
username email user_number role user_group library locale created_at updated_at expired_at keyword_list note checkout_icalendar_token save_checkout_history save_search_history share_bookmarks
|
|
2
|
+
enjuadmin tanabe@kamata.lib.teu.ac.jp 00001 Administrator user kamata en 2007-11-19 07:58:32 UTC 2008-05-31 04:16:30 UTC false false
|
|
3
|
+
librarian1 librarian1@kamata.lib.teu.ac.jp 00002 Librarian not_specified web ja 2007-11-19 07:58:33 UTC 2008-05-31 03:41:16 UTC false false
|
|
4
|
+
user1 user1@kamata.lib.teu.ac.jp 00003 User not_specified kamata ja 2007-11-19 07:58:34 UTC 2008-05-31 04:02:25 UTC false false
|
|
5
|
+
librarian2 librarian2@library.example.jp 00004 Librarian not_specified kamata ja 2008-01-18 03:24:04 UTC 2008-05-31 03:42:23 UTC false false
|
|
6
|
+
user2 user2@library.example.jp User not_specified web ja 2008-01-18 04:29:06 UTC 2008-05-31 03:42:44 UTC false false
|
|
7
|
+
user3 user3@kamata.lib.teu.ac.jp 00006 User not_specified kamata ja 2007-11-19 07:58:34 UTC 2008-05-31 04:02:25 UTC false false
|
|
8
|
+
user4 user4@kamata.lib.teu.ac.jp 00007 User not_specified kamata ja 2007-11-19 07:58:34 UTC 2008-05-31 04:02:25 UTC false false
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
username email user_number role user_group library locale created_at updated_at expired_at keyword_list note checkout_icalendar_token save_checkout_history save_search_history share_bookmarks
|
|
2
|
+
enjuadmin tanabe@kamata.lib.teu.ac.jp 00001 Administrator user kamata en 2007-11-19 07:58:32 UTC 2008-05-31 04:16:30 UTC false false
|
|
3
|
+
librarian1 librarian1@kamata.lib.teu.ac.jp 00002 Librarian not_specified web ja 2007-11-19 07:58:33 UTC 2008-05-31 03:41:16 UTC false false
|
|
4
|
+
user1 user1@kamata.lib.teu.ac.jp 00003 User not_specified kamata ja 2007-11-19 07:58:34 UTC 2008-05-31 04:02:25 UTC false false
|
|
5
|
+
librarian2 librarian2@library.example.jp 00004 Librarian not_specified kamata ja 2008-01-18 03:24:04 UTC 2008-05-31 03:42:23 UTC false false
|
|
6
|
+
user2 user2@library.example.jp User not_specified web ja 2008-01-18 04:29:06 UTC 2008-05-31 03:42:44 UTC false false
|
|
7
|
+
user3 user3@kamata.lib.teu.ac.jp 00006 User not_specified kamata ja 2007-11-19 07:58:34 UTC 2008-05-31 04:02:25 UTC false false
|
|
8
|
+
user4 user4@kamata.lib.teu.ac.jp 00007 User not_specified kamata ja 2007-11-19 07:58:34 UTC 2008-05-31 04:02:25 UTC false false
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
username email user_number role user_group library locale created_at updated_at expired_at keyword_list note checkout_icalendar_token save_checkout_history save_search_history share_bookmarks
|
|
2
|
+
enjuadmin tanabe@kamata.lib.teu.ac.jp 00001 Administrator user kamata en 2007-11-19 07:58:32 UTC 2008-05-31 04:16:30 UTC false false
|
|
3
|
+
librarian1 librarian1@kamata.lib.teu.ac.jp 00002 Librarian not_specified web ja 2007-11-19 07:58:33 UTC 2008-05-31 03:41:16 UTC false false
|
|
4
|
+
user1 user1@kamata.lib.teu.ac.jp 00003 User not_specified kamata ja 2007-11-19 07:58:34 UTC 2008-05-31 04:02:25 UTC false false
|
|
5
|
+
librarian2 librarian2@library.example.jp 00004 Librarian not_specified kamata ja 2008-01-18 03:24:04 UTC 2008-05-31 03:42:23 UTC false false
|
|
6
|
+
user2 user2@library.example.jp User not_specified web ja 2008-01-18 04:29:06 UTC 2008-05-31 03:42:44 UTC false false
|
|
7
|
+
user3 user3@kamata.lib.teu.ac.jp 00006 User not_specified kamata ja 2007-11-19 07:58:34 UTC 2008-05-31 04:02:25 UTC false false
|
|
8
|
+
user4 user4@kamata.lib.teu.ac.jp 00007 User not_specified kamata ja 2007-11-19 07:58:34 UTC 2008-05-31 04:02:25 UTC false false
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
username email user_number role user_group library locale created_at updated_at expired_at keyword_list note checkout_icalendar_token save_checkout_history save_search_history share_bookmarks
|
|
2
|
+
enjuadmin tanabe@kamata.lib.teu.ac.jp 00001 Administrator user kamata en 2007-11-19 07:58:32 UTC 2008-05-31 04:16:30 UTC false false
|
|
3
|
+
librarian1 librarian1@kamata.lib.teu.ac.jp 00002 Librarian not_specified web ja 2007-11-19 07:58:33 UTC 2008-05-31 03:41:16 UTC false false
|
|
4
|
+
user1 user1@kamata.lib.teu.ac.jp 00003 User not_specified kamata ja 2007-11-19 07:58:34 UTC 2008-05-31 04:02:25 UTC false false
|
|
5
|
+
librarian2 librarian2@library.example.jp 00004 Librarian not_specified kamata ja 2008-01-18 03:24:04 UTC 2008-05-31 03:42:23 UTC false false
|
|
6
|
+
user2 user2@library.example.jp User not_specified web ja 2008-01-18 04:29:06 UTC 2008-05-31 03:42:44 UTC false false
|
|
7
|
+
user3 user3@kamata.lib.teu.ac.jp 00006 User not_specified kamata ja 2007-11-19 07:58:34 UTC 2008-05-31 04:02:25 UTC false false
|
|
8
|
+
user4 user4@kamata.lib.teu.ac.jp 00007 User not_specified kamata ja 2007-11-19 07:58:34 UTC 2008-05-31 04:02:25 UTC false false
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
username email user_number role user_group library locale created_at updated_at expired_at keyword_list note checkout_icalendar_token save_checkout_history save_search_history share_bookmarks
|
|
2
|
+
enjuadmin tanabe@kamata.lib.teu.ac.jp 00001 Administrator user kamata en 2007-11-19 07:58:32 UTC 2008-05-31 04:16:30 UTC false false
|
|
3
|
+
librarian1 librarian1@kamata.lib.teu.ac.jp 00002 Librarian not_specified web ja 2007-11-19 07:58:33 UTC 2008-05-31 03:41:16 UTC false false
|
|
4
|
+
user1 user1@kamata.lib.teu.ac.jp 00003 User not_specified kamata ja 2007-11-19 07:58:34 UTC 2008-05-31 04:02:25 UTC false false
|
|
5
|
+
librarian2 librarian2@library.example.jp 00004 Librarian not_specified kamata ja 2008-01-18 03:24:04 UTC 2008-05-31 03:42:23 UTC false false
|
|
6
|
+
user2 user2@library.example.jp User not_specified web ja 2008-01-18 04:29:06 UTC 2008-05-31 03:42:44 UTC false false
|
|
7
|
+
user3 user3@kamata.lib.teu.ac.jp 00006 User not_specified kamata ja 2007-11-19 07:58:34 UTC 2008-05-31 04:02:25 UTC false false
|
|
8
|
+
user4 user4@kamata.lib.teu.ac.jp 00007 User not_specified kamata ja 2007-11-19 07:58:34 UTC 2008-05-31 04:02:25 UTC false false
|