enju_nii 0.3.0.beta.1 → 0.3.2

Sign up to get free protection for your applications and to get access to all the features.
Files changed (30) hide show
  1. checksums.yaml +5 -5
  2. data/README.md +41 -0
  3. data/Rakefile +1 -1
  4. data/app/models/nii_type.rb +1 -1
  5. data/lib/enju_nii/engine.rb +1 -1
  6. data/lib/enju_nii/version.rb +1 -1
  7. data/spec/dummy/app/models/application_record.rb +3 -0
  8. data/spec/dummy/app/models/user.rb +1 -1
  9. data/spec/dummy/config/application.rb +3 -1
  10. data/spec/dummy/config/database.yml +17 -22
  11. data/spec/dummy/config/environments/test.rb +3 -0
  12. data/spec/dummy/config/initializers/statesman.rb +3 -0
  13. data/spec/dummy/db/migrate/20081027150907_create_picture_files.rb +0 -2
  14. data/spec/dummy/db/migrate/20151213070943_add_translation_table_to_library_group.rb +0 -8
  15. data/spec/dummy/db/migrate/20190818075603_add_memo_to_manifestation.rb +5 -0
  16. data/spec/dummy/db/migrate/20190818075628_add_memo_to_item.rb +5 -0
  17. data/spec/dummy/db/migrate/20191219122214_create_custom_properties.rb +12 -0
  18. data/spec/dummy/db/migrate/20200425072340_create_manifestation_custom_properties.rb +12 -0
  19. data/spec/dummy/db/migrate/20200425072349_create_item_custom_properties.rb +12 -0
  20. data/spec/dummy/db/migrate/20200425074758_create_manifestation_custom_values.rb +12 -0
  21. data/spec/dummy/db/migrate/20200425074822_create_item_custom_values.rb +12 -0
  22. data/spec/dummy/db/schema.rb +54 -3
  23. data/spec/dummy/private/system/resource_export_files/resource_exports/000/000/001/original/resource_export.txt +130 -0
  24. data/spec/factories/identifier.rb +7 -0
  25. data/spec/factories/manifestation.rb +6 -0
  26. data/spec/fixtures/profiles.yml +98 -0
  27. data/spec/models/resource_export_file_spec.rb +38 -0
  28. data/spec/rails_helper.rb +1 -0
  29. metadata +344 -219
  30. data/README.rdoc +0 -38
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
- SHA1:
3
- metadata.gz: fe3e3ba9ed38ea9f8ee558a537ca49d2b4c971fc
4
- data.tar.gz: c114aed15d40b7d646dfae1d84377f572a633118
2
+ SHA256:
3
+ metadata.gz: 79fcbb5dd79539409af40efb05c0a021a7479ded88514a5349db0e4030ef505d
4
+ data.tar.gz: 9261f0263245fe76c77e4ce34e914090f9a8dc858a40546a75d25d48cff9a698
5
5
  SHA512:
6
- metadata.gz: e6566bb794eab7d70565666432e900dc4dfff0253e9e32313f1c69ab861565eec602724f7edfc2df59328cba3c5430030e9eb6f8c1f6a83021d01a408690a74b
7
- data.tar.gz: 84fd2f9ca8af67fc8e5bd6f33ad514fd91186a8a910c6539e8caa3dcf97454a5207acaa4ad23dd92be454ab894618f11c00206f1572b93be5b40eb4a174ab332
6
+ metadata.gz: f42e3beab9b8ad6135a802c56432051fec8740b3867f1c28805060dd8a7569c34c62586b055c174b03243bd732ff2fadb8b2345366717b27885b6dc2e1035296
7
+ data.tar.gz: 9a1ddd6174c8a144c9818b3a25336b879ce5928b26d8bd69d1ce11493a3b2846a2ef2e77177905a1155c4d79c096cd19e8766d5709a164c4da252c16370ee49c
data/README.md ADDED
@@ -0,0 +1,41 @@
1
+ # EnjuNii
2
+ [<img src="https://travis-ci.com/next-l/enju_nii.svg?branch=1.3" alt="Build
3
+ Status" />](https://travis-ci.com/next-l/enju_nii) [<img
4
+ src="https://coveralls.io/repos/next-l/enju_nii/badge.svg?branch=1.3&service=g
5
+ ithub" alt="Coverage Status"
6
+ />](https://coveralls.io/github/next-l/enju_nii?branch=1.3) [<img
7
+ src="https://hakiri.io/github/next-l/enju_nii/1.3.svg" alt="security"
8
+ />](https://hakiri.io/github/next-l/enju_nii/1.3)
9
+
10
+ CiNii Booksから書誌をインポートするための Enju プラグインです。
11
+
12
+ ## インストール方法 / How to Install
13
+
14
+ お使いのenju_leafのGemfile に以下の行を追加してください。
15
+
16
+ gem 'enju_nii', github: "next-l/enju_nii", branch: '1.3'
17
+
18
+ gemをインストールします。
19
+
20
+ $ bundle update
21
+
22
+ インストールが完了したら、以下のコマンドでセットアップを行います。
23
+
24
+ $ rake enju_nii_engine:install:migrations
25
+ $ rake enju_nii:setup
26
+
27
+ データベースを更新します。
28
+
29
+ $ rake db:migrate
30
+
31
+ その後、Enjuを再起動してください。
32
+
33
+ http://(Enjuのホスト)/cinii_books/ にアクセスすると、 CiNii Books検索によるインポート機能が利用できます。
34
+
35
+ ## ライセンス / License
36
+
37
+ This project rocks and uses MIT-LICENSE.
38
+
39
+ ## 製作者・貢献者 (Authors and contributors)
40
+ * [TANABE, Kosuke](https://github.com/nabeta) ([@nabeta](https://twitter.com/nabeta))
41
+ * [Project Next-L](https://www.next-l.jp) ([@ProjectNextL](https://twitter.com/ProjectNextL))
data/Rakefile CHANGED
@@ -16,7 +16,7 @@ RDoc::Task.new(:rdoc) do |rdoc|
16
16
  rdoc.rdoc_dir = 'rdoc'
17
17
  rdoc.title = 'EnjuNii'
18
18
  rdoc.options << '--line-numbers'
19
- rdoc.rdoc_files.include('README.rdoc')
19
+ rdoc.rdoc_files.include('README.md')
20
20
  rdoc.rdoc_files.include('lib/**/*.rb')
21
21
  end
22
22
 
@@ -1,4 +1,4 @@
1
- class NiiType < ActiveRecord::Base
1
+ class NiiType < ApplicationRecord
2
2
  include MasterModel
3
3
  has_many :manifestations
4
4
  end
@@ -1,5 +1,5 @@
1
1
  require 'enju_subject'
2
- require 'rss'
2
+ require 'rss/1.0'
3
3
  require 'faraday_middleware'
4
4
 
5
5
  module EnjuNii
@@ -1,3 +1,3 @@
1
1
  module EnjuNii
2
- VERSION = "0.3.0.beta.1"
2
+ VERSION = "0.3.2".freeze
3
3
  end
@@ -0,0 +1,3 @@
1
+ class ApplicationRecord < ActiveRecord::Base
2
+ self.abstract_class = true
3
+ end
@@ -1,4 +1,4 @@
1
- class User < ActiveRecord::Base
1
+ class User < ApplicationRecord
2
2
  devise :database_authenticatable, #:registerable,
3
3
  :recoverable, :rememberable, :trackable, #, :validatable
4
4
  :lockable, lock_strategy: :none, unlock_strategy: :none
@@ -4,11 +4,13 @@ require 'rails/all'
4
4
 
5
5
  Bundler.require(*Rails.groups)
6
6
  require "enju_nii"
7
+ require "enju_leaf"
8
+ require "enju_message"
7
9
 
8
10
  module Dummy
9
11
  class Application < Rails::Application
10
12
  # Initialize configuration defaults for originally generated Rails version.
11
- config.load_defaults 5.1
13
+ config.load_defaults 5.2
12
14
 
13
15
  # Settings in config/environments/* take precedence over those specified here.
14
16
  # Application configuration should go into files in config/initializers
@@ -1,30 +1,25 @@
1
- sqlite: &sqlite
1
+ # SQLite version 3.x
2
+ # gem install sqlite3
3
+ #
4
+ # Ensure the SQLite 3 gem is defined in your Gemfile
5
+ # gem 'sqlite3'
6
+ #
7
+ default: &default
2
8
  adapter: sqlite3
3
- database: db/<%= Rails.env %>.sqlite3
4
-
5
- mysql: &mysql
6
- adapter: mysql2
7
- username: root
8
- password:
9
- database: enju_<%= Rails.env %>
10
-
11
- postgresql: &postgresql
12
- adapter: postgresql
13
- username: postgres
14
- password:
15
- database: enju_<%= Rails.env %>
16
-
17
- defaults: &defaults
18
- pool: 5
9
+ pool: <%= ENV.fetch("RAILS_MAX_THREADS") { 5 } %>
19
10
  timeout: 5000
20
- host: localhost
21
- <<: *<%= ENV['DB'] || "sqlite" %>
22
11
 
23
12
  development:
24
- <<: *defaults
13
+ <<: *default
14
+ database: db/development.sqlite3
25
15
 
16
+ # Warning: The database defined as "test" will be erased and
17
+ # re-generated from your development database when you run "rake".
18
+ # Do not set this db to the same as development or production.
26
19
  test:
27
- <<: *defaults
20
+ <<: *default
21
+ database: db/test.sqlite3
28
22
 
29
23
  production:
30
- <<: *defaults
24
+ <<: *default
25
+ database: db/production.sqlite3
@@ -39,4 +39,7 @@ Rails.application.configure do
39
39
 
40
40
  # Raises error for missing translations
41
41
  # config.action_view.raise_on_missing_translations = true
42
+
43
+ config.action_mailer.default_url_options = {host: 'localhost:3000'}
44
+ config.active_job.queue_adapter = :inline
42
45
  end
@@ -0,0 +1,3 @@
1
+ Statesman.configure do
2
+ storage_adapter(Statesman::Adapters::ActiveRecord)
3
+ end
@@ -3,9 +3,7 @@ class CreatePictureFiles < ActiveRecord::Migration[4.2]
3
3
  create_table :picture_files do |t|
4
4
  t.integer :picture_attachable_id
5
5
  t.string :picture_attachable_type
6
- t.string :content_type
7
6
  t.text :title
8
- t.string :thumbnail
9
7
  t.integer :position
10
8
 
11
9
  t.timestamps
@@ -8,19 +8,11 @@ class AddTranslationTableToLibraryGroup < ActiveRecord::Migration[4.2]
8
8
  migrate_data: true
9
9
  })
10
10
  end
11
-
12
- if defined?(AwesomeHstoreTranslate)
13
- add_column :library_groups, :login_banner, :hstore
14
- end
15
11
  end
16
12
 
17
13
  def down
18
14
  if defined?(Globalize)
19
15
  LibraryGroup.drop_translation_table! migrate_data: true
20
16
  end
21
-
22
- if defined?(AwesomeHstoreTranslate)
23
- remove_column :library_groups, :login_banner
24
- end
25
17
  end
26
18
  end
@@ -0,0 +1,5 @@
1
+ class AddMemoToManifestation < ActiveRecord::Migration[5.2]
2
+ def change
3
+ add_column :manifestations, :memo, :text
4
+ end
5
+ end
@@ -0,0 +1,5 @@
1
+ class AddMemoToItem < ActiveRecord::Migration[5.2]
2
+ def change
3
+ add_column :items, :memo, :text
4
+ end
5
+ end
@@ -0,0 +1,12 @@
1
+ class CreateCustomProperties < ActiveRecord::Migration[5.2]
2
+ def change
3
+ create_table :custom_properties do |t|
4
+ t.integer :resource_id, null: false
5
+ t.string :resource_type, null: false
6
+ t.text :label, null: false
7
+ t.text :value
8
+
9
+ t.timestamps
10
+ end
11
+ end
12
+ end
@@ -0,0 +1,12 @@
1
+ class CreateManifestationCustomProperties < ActiveRecord::Migration[5.2]
2
+ def change
3
+ create_table :manifestation_custom_properties do |t|
4
+ t.string :name, null: false, comment: 'ラベル名', index: {unique: true}
5
+ t.text :display_name, null: false, comment: '表示名'
6
+ t.text :note, comment: '備考'
7
+ t.integer :position, default: 1, null: false
8
+
9
+ t.timestamps
10
+ end
11
+ end
12
+ end
@@ -0,0 +1,12 @@
1
+ class CreateItemCustomProperties < ActiveRecord::Migration[5.2]
2
+ def change
3
+ create_table :item_custom_properties do |t|
4
+ t.string :name, null: false, comment: 'ラベル名', index: {unique: true}
5
+ t.text :display_name, null: false, comment: '表示名'
6
+ t.text :note, comment: '備考'
7
+ t.integer :position, default: 1, null: false
8
+
9
+ t.timestamps
10
+ end
11
+ end
12
+ end
@@ -0,0 +1,12 @@
1
+ class CreateManifestationCustomValues < ActiveRecord::Migration[5.2]
2
+ def change
3
+ create_table :manifestation_custom_values do |t|
4
+ t.references :manifestation_custom_property, null: false, foreign_key: true, index: {name: 'index_manifestation_custom_values_on_custom_property_id'}
5
+ t.references :manifestation, null: false, foreign_key: true
6
+ t.text :value
7
+
8
+ t.timestamps
9
+ end
10
+ add_index :manifestation_custom_values, [:manifestation_custom_property_id, :manifestation_id], unique: true, name: 'index_manifestation_custom_values_on_property_manifestation'
11
+ end
12
+ end
@@ -0,0 +1,12 @@
1
+ class CreateItemCustomValues < ActiveRecord::Migration[5.2]
2
+ def change
3
+ create_table :item_custom_values do |t|
4
+ t.references :item_custom_property, null: false, foreign_key: true, index: {name: 'index_item_custom_values_on_custom_property_id'}
5
+ t.references :item, null: false, foreign_key: true
6
+ t.text :value
7
+
8
+ t.timestamps
9
+ end
10
+ add_index :item_custom_values, [:item_custom_property_id, :item_id], unique: true, name: 'index_item_custom_values_on_custom_item_property_and_item_id'
11
+ end
12
+ end
@@ -10,7 +10,7 @@
10
10
  #
11
11
  # It's strongly recommended that you check this file into your version control system.
12
12
 
13
- ActiveRecord::Schema.define(version: 20180107161410) do
13
+ ActiveRecord::Schema.define(version: 2020_04_25_074822) do
14
14
 
15
15
  create_table "accepts", force: :cascade do |t|
16
16
  t.integer "basket_id"
@@ -287,6 +287,15 @@ ActiveRecord::Schema.define(version: 20180107161410) do
287
287
  t.index ["work_id"], name: "index_creates_on_work_id"
288
288
  end
289
289
 
290
+ create_table "custom_properties", force: :cascade do |t|
291
+ t.integer "resource_id", null: false
292
+ t.string "resource_type", null: false
293
+ t.text "label", null: false
294
+ t.text "value"
295
+ t.datetime "created_at", null: false
296
+ t.datetime "updated_at", null: false
297
+ end
298
+
290
299
  create_table "donates", force: :cascade do |t|
291
300
  t.integer "agent_id", null: false
292
301
  t.integer "item_id", null: false
@@ -378,6 +387,27 @@ ActiveRecord::Schema.define(version: 20180107161410) do
378
387
  t.index ["user_id"], name: "index_import_requests_on_user_id"
379
388
  end
380
389
 
390
+ create_table "item_custom_properties", force: :cascade do |t|
391
+ t.string "name", null: false
392
+ t.text "display_name", null: false
393
+ t.text "note"
394
+ t.integer "position", default: 1, null: false
395
+ t.datetime "created_at", null: false
396
+ t.datetime "updated_at", null: false
397
+ t.index ["name"], name: "index_item_custom_properties_on_name", unique: true
398
+ end
399
+
400
+ create_table "item_custom_values", force: :cascade do |t|
401
+ t.integer "item_custom_property_id", null: false
402
+ t.integer "item_id", null: false
403
+ t.text "value"
404
+ t.datetime "created_at", null: false
405
+ t.datetime "updated_at", null: false
406
+ t.index ["item_custom_property_id", "item_id"], name: "index_item_custom_values_on_custom_item_property_and_item_id", unique: true
407
+ t.index ["item_custom_property_id"], name: "index_item_custom_values_on_custom_property_id"
408
+ t.index ["item_id"], name: "index_item_custom_values_on_item_id"
409
+ end
410
+
381
411
  create_table "items", force: :cascade do |t|
382
412
  t.string "call_number"
383
413
  t.string "item_identifier"
@@ -399,6 +429,7 @@ ActiveRecord::Schema.define(version: 20180107161410) do
399
429
  t.string "binding_call_number"
400
430
  t.datetime "binded_at"
401
431
  t.integer "manifestation_id", null: false
432
+ t.text "memo"
402
433
  t.index ["binding_item_identifier"], name: "index_items_on_binding_item_identifier"
403
434
  t.index ["bookstore_id"], name: "index_items_on_bookstore_id"
404
435
  t.index ["item_identifier"], name: "index_items_on_item_identifier"
@@ -500,6 +531,27 @@ ActiveRecord::Schema.define(version: 20180107161410) do
500
531
  t.datetime "updated_at"
501
532
  end
502
533
 
534
+ create_table "manifestation_custom_properties", force: :cascade do |t|
535
+ t.string "name", null: false
536
+ t.text "display_name", null: false
537
+ t.text "note"
538
+ t.integer "position", default: 1, null: false
539
+ t.datetime "created_at", null: false
540
+ t.datetime "updated_at", null: false
541
+ t.index ["name"], name: "index_manifestation_custom_properties_on_name", unique: true
542
+ end
543
+
544
+ create_table "manifestation_custom_values", force: :cascade do |t|
545
+ t.integer "manifestation_custom_property_id", null: false
546
+ t.integer "manifestation_id", null: false
547
+ t.text "value"
548
+ t.datetime "created_at", null: false
549
+ t.datetime "updated_at", null: false
550
+ t.index ["manifestation_custom_property_id", "manifestation_id"], name: "index_manifestation_custom_values_on_property_manifestation", unique: true
551
+ t.index ["manifestation_custom_property_id"], name: "index_manifestation_custom_values_on_custom_property_id"
552
+ t.index ["manifestation_id"], name: "index_manifestation_custom_values_on_manifestation_id"
553
+ end
554
+
503
555
  create_table "manifestation_relationship_types", force: :cascade do |t|
504
556
  t.string "name", null: false
505
557
  t.text "display_name"
@@ -581,6 +633,7 @@ ActiveRecord::Schema.define(version: 20180107161410) do
581
633
  t.text "publication_place"
582
634
  t.text "extent"
583
635
  t.text "dimensions"
636
+ t.text "memo"
584
637
  t.index ["access_address"], name: "index_manifestations_on_access_address"
585
638
  t.index ["date_of_publication"], name: "index_manifestations_on_date_of_publication"
586
639
  t.index ["doi"], name: "index_manifestations_on_doi"
@@ -686,9 +739,7 @@ ActiveRecord::Schema.define(version: 20180107161410) do
686
739
  create_table "picture_files", force: :cascade do |t|
687
740
  t.integer "picture_attachable_id"
688
741
  t.string "picture_attachable_type"
689
- t.string "content_type"
690
742
  t.text "title"
691
- t.string "thumbnail"
692
743
  t.integer "position"
693
744
  t.datetime "created_at"
694
745
  t.datetime "updated_at"
@@ -0,0 +1,130 @@
1
+ manifestation_id original_title title_alternative title_transcription statement_of_responsibility serial manifestation_identifier creator contributor publisher pub_date year_of_publication publication_place manifestation_created_at manifestation_updated_at carrier_type content_type frequency language isbn issn volume_number volume_number_string edition edition_string issue_number issue_number_string serial_number extent start_page end_page dimensions height width depth price access_address manifestation_required_role description note identifier:ncid series_statement_id series_statement_original_title series_statement_title_subseries series_statement_title_subseries_transcription series_statement_title_transcription series_statement_creator series_statement_volume_number series_statement_series_master series_statement_root_manifestation_id series_statement_manifestation_id series_statement_position series_statement_note series_statement_created_at series_statement_updated_at memo ncid item_id item_identifier binding_item_identifier call_number shelf item_note accepted_at acquired_at item_created_at item_updated_at bookstore budget_type item_required_role item_price memo
2
+ 1 よくわかる最新Webサービス技術 "" "" "" 2007-11-19 07:59:00 UTC 2007-11-19 07:59:00 UTC volume text unknown unknown "" "" 1 100 Guest 4798002062//12345678 "" "" "" "" "" "" "" "" "" "" "" "" "" "" 4798002062
3
+ 2 情報通信ハンドブック2005 "" "" "" 2007-11-19 07:59:01 UTC 2007-11-19 07:59:01 UTC volume text unknown unknown "" "" Guest 4915724824 "" "" "" "" "" "" "" "" "" "" "" "" "" "" 4915724824
4
+ 3 これからの生命科学研究者のためのバイオ特許入門講座 "" "" "" 2007-11-19 07:59:02 UTC 2007-11-19 07:59:02 UTC volume text unknown unknown "" "" http://www.slis.keio.ac.jp/ Guest 4897063590 "" "" "" "" "" "" "" "" "" "" "" "" "" "" 4897063590
5
+ 4 THE BIOTECH INVESTOR'S BIBLE "" "" "" 2007-11-19 07:59:03 UTC 2007-11-19 07:59:03 UTC volume text unknown unknown "" "" Guest 0471412791 "" "" "" "" "" "" "" "" "" "" "" "" "" "" 0471412791
6
+ 5 顧客満足型マーケティングの構図 "" "" "" 2007-11-19 07:59:04 UTC 2007-11-19 07:59:04 UTC volume text unknown unknown "" "" Guest "" "" "" "" "" "" "" "" "" "" "" "" "" "" ""
7
+ 6 仕組み革新の時代 "" "" "" 2007-11-19 07:59:05 UTC 2007-11-19 07:59:05 UTC volume text unknown unknown "" "" Guest "" "" "" "" "" "" "" "" "" "" "" "" "" "" ""
8
+ 7 dictionary of e-business "" "" "" 2007-11-19 07:59:06 UTC 2007-11-19 07:59:06 UTC volume text unknown unknown "" "" Guest 0470844701 "" "" "" "" "" "" "" "" "" "" "" "" "" "" 0470844701
9
+ 8 Webサービス完全解説 "" "" "" 2007-11-19 07:59:07 UTC 2007-11-19 07:59:07 UTC volume text unknown unknown "" "" Guest 4798101028 "" "" "" "" "" "" "" "" "" "" "" "" "" "" 4798101028
10
+ 9 逐条解説不正競争防止法 "" "" "" 2007-11-19 07:59:08 UTC 2007-11-19 07:59:08 UTC volume text unknown unknown "" "" Guest 4641143331 "" "" "" "" "" "" "" "" "" "" "" "" "" "" 4641143331
11
+ 10 Apache Lucene入門 : Java・オープンソース・全文検索システムの構築 "" "" "" 2007-11-19 07:59:09 UTC 2007-11-19 07:59:09 UTC volume text unknown unknown "" "" Guest 9784774127804 "" "" "" "" "" "" "" "" "" "" "" "" "" "" 9784774127804
12
+ 11 Webサービス完全構築ガイド "" "" "" 2007-11-19 07:59:20 UTC 2007-11-19 07:59:20 UTC volume text unknown unknown "" "" User "" "" "" "" "" "" "" "" "" "" "" "" "" "" ""
13
+ 22 YouTube - Open Source ILS Song "" "" "" 2008-04-16 15:34:01 UTC 2007-11-19 07:59:21 UTC volume text unknown unknown "" "" http://jp.youtube.com/watch?v=BSHBzd9ftDE Guest "" "" "" "" "" "" "" "" "" "" "" "" "" "" ""
14
+ 23 世界の美しい図書館集めてみた【第一弾】 "" "" "" 2007-11-19 07:58:58 UTC 2008-04-16 15:34:01 UTC volume text unknown unknown "" "" http://www.nicovideo.jp/watch/sm3015373 Administrator "" "" "" "" "" "" "" "" "" "" "" "" "" "" ""
15
+ 101 CGI基礎講座 : Perl・プログラミング・日本語処理 "" "" "" 2010-02-21 06:47:09 UTC 2010-03-01 07:14:18 UTC volume text unknown unknown "" "" Guest "" "" "" "" "" "" "" "" "" "" "" "" "" "" ""
16
+ 102 CGIレスキュー実践Perlプログラミング : Web裏技 "" "" "" 2010-02-21 05:57:08 UTC 2010-03-01 07:14:18 UTC volume text unknown unknown "" "" Guest "" "" "" "" "" "" "" "" "" "" "" "" "" "" ""
17
+ 103 Perlクックブック. v.2 "" "" "" 2010-02-21 01:51:48 UTC 2010-03-01 07:14:18 UTC volume text unknown unknown "" "" Guest "" "" "" "" "" "" "" "" "" "" "" "" "" "" ""
18
+ 104 Perlクックブック. v.1 "" "" "" 2010-02-21 01:51:33 UTC 2010-03-01 07:14:18 UTC volume text unknown unknown "" "" Guest "" "" "" "" "" "" "" "" "" "" "" "" "" "" ""
19
+ 105 初めてのPerl. 続 "" "" "" 2010-02-21 01:48:14 UTC 2010-03-01 07:14:18 UTC volume text unknown unknown "" "" Guest "" "" "" "" "" "" "" "" "" "" "" "" "" "" ""
20
+ 106 Perl & XML "" "" "" 2010-02-21 01:45:48 UTC 2010-03-01 07:14:18 UTC volume text unknown unknown "" "" Guest "" "" "" "" "" "" "" "" "" "" "" "" "" "" ""
21
+ 107 はじめてのPerlモジュール : 厳選実用モジュール集 "" "" "" 2010-02-21 00:59:01 UTC 2010-03-01 07:14:18 UTC volume text unknown unknown "" "" Guest "" "" "" "" "" "" "" "" "" "" "" "" "" "" ""
22
+ 108 Perl 5パワフルテクニック大全集 "" "" "" 2010-02-20 23:13:17 UTC 2010-03-01 07:14:18 UTC volume text unknown unknown "" "" Guest "" "" "" "" "" "" "" "" "" "" "" "" "" "" ""
23
+ 109 CGI/Perlパワープログラミング "" "" "" 2010-02-20 08:26:08 UTC 2010-03-01 07:14:18 UTC volume text unknown unknown "" "" Guest "" "" "" "" "" "" "" "" "" "" "" "" "" "" ""
24
+ 110 Ruby/GTKプログラミング入門 : Rubyで作って遊ぶGUIプログラミング "" "" "" 2010-02-19 04:09:56 UTC 2010-03-01 07:14:18 UTC volume text unknown unknown "" "" Guest "" "" "" "" "" "" "" "" "" "" "" "" "" "" ""
25
+ 111 すぐわかるPerl "" "" "" 2010-02-19 04:07:28 UTC 2010-03-01 07:14:18 UTC volume text unknown unknown "" "" Guest "" "" "" "" "" "" "" "" "" "" "" "" "" "" ""
26
+ 112 CGIのための実践入門Perl : 対話的・動きのあるWebページを作ろう "" "" "" 2010-02-19 04:06:51 UTC 2010-03-01 07:14:18 UTC volume text unknown unknown "" "" Guest "" "" "" "" "" "" "" "" "" "" "" "" "" "" ""
27
+ 113 プログラミングは難しくない! : ウェブではじめるJavaScript/Perl/Java "" "" "" 2010-02-19 02:02:27 UTC 2010-03-01 07:14:18 UTC volume text unknown unknown "" "" Guest "" "" "" "" "" "" "" "" "" "" "" "" "" "" ""
28
+ 114 Rubyを256倍使うための本. 魔道編 "" "" "" 2010-02-18 20:46:08 UTC 2010-03-01 07:14:18 UTC volume text unknown unknown "" "" Guest 9784756137470 "" "" "" "" "" "" "" "" "" "" "" "" "" "" 9784756137470
29
+ 115 入門Perl "" "" "" 2010-02-18 20:40:17 UTC 2010-03-01 07:14:18 UTC volume text unknown unknown "" "" Guest "" "" "" "" "" "" "" "" "" "" "" "" "" "" ""
30
+ 116 sed & awkプログラミング : UNIX power tools "" "" "" 2010-02-18 20:39:01 UTC 2010-03-01 07:14:18 UTC volume text unknown unknown "" "" Guest 9784756100917 "" "" "" "" "" "" "" "" "" "" "" "" "" "" 9784756100917
31
+ 117 Perlの達人 "" "" "" 2010-02-18 01:23:27 UTC 2010-03-01 07:14:18 UTC volume text unknown unknown "" "" Guest "" "" "" "" "" "" "" "" "" "" "" "" "" "" ""
32
+ 118 ナチ強制・絶滅収容所 : 18施設内の生と死 "" "" "" 2010-02-16 16:12:08 UTC 2010-03-01 07:14:18 UTC volume text unknown unknown "" "" Guest "" "" "" "" "" "" "" "" "" "" "" "" "" "" ""
33
+ 119 Perl基礎講座 "" "" "" 2010-02-15 19:30:37 UTC 2010-03-01 07:14:18 UTC volume text unknown unknown "" "" Guest "" "" "" "" "" "" "" "" "" "" "" "" "" "" ""
34
+ 120 Rubyプログラミング入門 "" "" "" 2010-02-15 19:29:59 UTC 2010-03-01 07:14:18 UTC volume text unknown unknown "" "" Guest 9784274063855 "" "" "" "" "" "" "" "" "" "" "" "" "" "" 9784274063855
35
+ 121 Django×Python "" "" "" 2010-01-29 21:22:35 UTC 2010-03-01 07:14:18 UTC volume text unknown unknown "" "" Guest "" "" "" "" "" "" "" "" "" "" "" "" "" "" ""
36
+ 122 みんなのPython "" "" "" 2010-01-29 21:17:32 UTC 2010-03-01 07:14:18 UTC volume text unknown unknown "" "" Guest "" "" "" "" "" "" "" "" "" "" "" "" "" "" ""
37
+ 123 Rubyでgroonga使って全文検索 - ラングバ "" "" "" 2009-10-25 04:20:34 UTC 2010-03-01 07:14:18 UTC volume text unknown unknown "" "" Guest "" "" "" "" "" "" "" "" "" "" "" "" "" "" ""
38
+ 124 まちづくり三鷹図書館(Ruby図書館情報システム デモサイト) "" "" "" 2009-10-20 04:46:44 UTC 2010-03-01 07:14:18 UTC volume text unknown unknown "" "" Guest "" "" "" "" "" "" "" "" "" "" "" "" "" "" ""
39
+ 125 Ruby on Rails入門 : 優しいRailsの育て方 "" "" "" 2009-10-15 20:16:48 UTC 2010-03-01 07:14:18 UTC volume text unknown unknown "" "" Guest "" "" "" "" "" "" "" "" "" "" "" "" "" "" ""
40
+ 126 Ruby Cookbook "" "" "" 2009-06-29 03:44:11 UTC 2010-03-01 07:14:18 UTC volume text unknown unknown "" "" Guest "" "" "" "" "" "" "" "" "" "" "" "" "" "" ""
41
+ 127 CGI programming on the World Wide Web "" "" "" 2009-06-19 04:45:14 UTC 2010-03-01 07:14:18 UTC volume text unknown unknown "" "" Guest "" "" "" "" "" "" "" "" "" "" "" "" "" "" ""
42
+ 128 Genomic Perl "" "" "" 2009-06-19 04:27:46 UTC 2010-03-01 07:14:18 UTC volume text unknown unknown "" "" Guest "" "" "" "" "" "" "" "" "" "" "" "" "" "" ""
43
+ 129 Indians of the Pacific Northwest "" "" "" 2009-06-19 03:16:23 UTC 2010-03-01 07:14:18 UTC volume text unknown unknown "" "" Guest "" "" "" "" "" "" "" "" "" "" "" "" "" "" ""
44
+ 130 Massachusetts acid rain monitoring project / Massachusetts acid rain monitoring project A.R.M "" "" "" 2009-06-19 03:03:29 UTC 2010-03-01 07:14:18 UTC volume text unknown unknown "" "" Guest "" "" "" "" "" "" "" "" "" "" "" "" "" "" ""
45
+ 131 International Symposium Genes and Chromosomes Structure and Function "" "" "" 2009-06-19 03:02:48 UTC 2010-03-01 07:14:18 UTC volume text unknown unknown "" "" Guest "" "" "" "" "" "" "" "" "" "" "" "" "" "" ""
46
+ 132 Perl black book, 2nd edition "" "" "" 2009-06-19 02:42:02 UTC 2010-03-01 07:14:18 UTC volume text unknown unknown "" "" Guest "" "" "" "" "" "" "" "" "" "" "" "" "" "" ""
47
+ 133 Python scripting for computational science "" "" "" 2009-06-19 02:18:01 UTC 2010-03-01 07:14:18 UTC volume text unknown unknown "" "" Guest "" "" "" "" "" "" "" "" "" "" "" "" "" "" ""
48
+ 134 Tests on a gold ore from the Ruby Basin, Black Hills "" "" "" 2009-06-19 02:06:07 UTC 2010-03-01 07:14:18 UTC volume text unknown unknown "" "" Guest "" "" "" "" "" "" "" "" "" "" "" "" "" "" ""
49
+ 135 Official guide to programming with CGI.pm / Programming with CGI.pm / Official guide to programming with CGI.pm "" "" "" 2009-06-19 01:54:21 UTC 2010-03-01 07:14:18 UTC volume text unknown unknown "" "" Guest "" "" "" "" "" "" "" "" "" "" "" "" "" "" ""
50
+ 136 Three little words [sound recording] / Nevertheless (I'm in love with you) / I love you so much / All alone Monday / Where did you get that girl? / Thinking of you / I wanna be loved by you / Who's sorry now? / My sunny Tennessee / So long Oolong / Three little words "" "" "" 2009-06-19 01:46:46 UTC 2010-03-01 07:14:18 UTC volume text unknown unknown "" "" Guest "" "" "" "" "" "" "" "" "" "" "" "" "" "" ""
51
+ 137 Femtosecond time-resolved spectroscopy of organic molecular crystals / Time-resolved spectroscopy of organic molecular crystals, Femtosecond "" "" "" 2009-06-19 01:18:59 UTC 2010-03-01 07:14:18 UTC volume text unknown unknown "" "" Guest "" "" "" "" "" "" "" "" "" "" "" "" "" "" ""
52
+ 138 CGI programming with Perl "" "" "" 2009-06-19 00:19:08 UTC 2010-03-01 07:14:18 UTC volume text unknown unknown "" "" Guest "" "" "" "" "" "" "" "" "" "" "" "" "" "" ""
53
+ 139 Python and XML / Python &amp; XML / XML processing with Python "" "" "" 2009-06-19 00:19:02 UTC 2010-03-01 07:14:18 UTC volume text unknown unknown "" "" Guest "" "" "" "" "" "" "" "" "" "" "" "" "" "" ""
54
+ 140 Perl cookbook / Solutions and examples for Perl programmers "" "" "" 2009-06-19 00:19:01 UTC 2010-03-01 07:14:18 UTC volume text unknown unknown "" "" Guest "" "" "" "" "" "" "" "" "" "" "" "" "" "" ""
55
+ 141 Mastering Perl/Tk / Perl/Tk "" "" "" 2009-06-19 00:19:00 UTC 2010-03-01 07:14:18 UTC volume text unknown unknown "" "" Guest "" "" "" "" "" "" "" "" "" "" "" "" "" "" ""
56
+ 142 Mastering algorithms with Perl / Practical programming through computer science "" "" "" 2009-06-19 00:18:58 UTC 2010-03-01 07:14:18 UTC volume text unknown unknown "" "" Guest "" "" "" "" "" "" "" "" "" "" "" "" "" "" ""
57
+ 143 Programming Perl "" "" "" 2009-06-19 00:18:45 UTC 2010-03-01 07:14:18 UTC volume text unknown unknown "" "" Guest "" "" "" "" "" "" "" "" "" "" "" "" "" "" ""
58
+ 144 Fort Worth &amp; Tarrant County / Fort Worth and Tarrant County "" "" "" 2009-06-18 22:49:42 UTC 2010-03-01 07:14:18 UTC volume text unknown unknown "" "" Guest "" "" "" "" "" "" "" "" "" "" "" "" "" "" ""
59
+ 145 Monty Python's Spamalot [sound recording] / Spamalot / Spamalot / Monty Python and the Holy Grail (Motion picture) "" "" "" 2009-06-18 21:44:35 UTC 2010-03-01 07:14:18 UTC volume text unknown unknown "" "" Guest "" "" "" "" "" "" "" "" "" "" "" "" "" "" ""
60
+ 146 AWK programming language "" "" "" 2009-06-18 21:28:27 UTC 2010-03-01 07:14:18 UTC volume text unknown unknown "" "" Guest "" "" "" "" "" "" "" "" "" "" "" "" "" "" ""
61
+ 147 Toting the lead row "" "" "" 2009-06-18 17:16:22 UTC 2010-03-01 07:14:18 UTC volume text unknown unknown "" "" Guest "" "" "" "" "" "" "" "" "" "" "" "" "" "" ""
62
+ 148 Afro-American blues and game songs "" "" "" 2009-06-18 17:09:17 UTC 2010-03-01 07:14:18 UTC volume text unknown unknown "" "" Guest "" "" "" "" "" "" "" "" "" "" "" "" "" "" ""
63
+ 149 Perl/Tk pocket reference "" "" "" 2009-06-18 16:10:56 UTC 2010-03-01 07:14:18 UTC volume text unknown unknown "" "" Guest "" "" "" "" "" "" "" "" "" "" "" "" "" "" ""
64
+ 150 politics of improving urban air quality "" "" "" 2009-06-18 15:42:38 UTC 2010-03-01 07:14:18 UTC volume text unknown unknown "" "" Guest "" "" "" "" "" "" "" "" "" "" "" "" "" "" ""
65
+ 151 Perl developer's dictionary "" "" "" 2009-06-18 15:13:13 UTC 2010-03-01 07:14:18 UTC volume text unknown unknown "" "" Guest "" "" "" "" "" "" "" "" "" "" "" "" "" "" ""
66
+ 152 Andrテδゥ Poitiers "" "" "" 2009-06-18 14:58:14 UTC 2010-03-01 07:14:18 UTC volume text unknown unknown "" "" Guest "" "" "" "" "" "" "" "" "" "" "" "" "" "" ""
67
+ 153 PERL and CGI for the World Wide Web [electronic resource] / Visual QuickStart guide "" "" "" 2009-06-18 14:43:08 UTC 2010-03-01 07:14:18 UTC volume text unknown unknown "" "" Guest "" "" "" "" "" "" "" "" "" "" "" "" "" "" ""
68
+ 154 Python tutorial "" "" "" 2009-06-18 14:17:40 UTC 2010-03-01 07:14:18 UTC volume text unknown unknown "" "" Guest "" "" "" "" "" "" "" "" "" "" "" "" "" "" ""
69
+ 155 Line shapes of paramagnetic resonances in ruby "" "" "" 2009-06-18 13:44:00 UTC 2010-03-01 07:14:18 UTC volume text unknown unknown "" "" Guest "" "" "" "" "" "" "" "" "" "" "" "" "" "" ""
70
+ 156 Perl programmer's reference "" "" "" 2009-06-18 13:19:34 UTC 2010-03-01 07:14:18 UTC volume text unknown unknown "" "" Guest "" "" "" "" "" "" "" "" "" "" "" "" "" "" ""
71
+ 157 Technological capabilities in developing countries "" "" "" 2009-06-18 12:58:42 UTC 2010-03-01 07:14:18 UTC volume text unknown unknown "" "" Guest "" "" "" "" "" "" "" "" "" "" "" "" "" "" ""
72
+ 158 phenomena of vagueness "" "" "" 2009-06-18 12:44:38 UTC 2010-03-01 07:14:18 UTC volume text unknown unknown "" "" Guest "" "" "" "" "" "" "" "" "" "" "" "" "" "" ""
73
+ 159 theory of consumer's demand "" "" "" 2009-06-18 12:10:02 UTC 2010-03-01 07:14:18 UTC volume text unknown unknown "" "" Guest "" "" "" "" "" "" "" "" "" "" "" "" "" "" ""
74
+ 160 theory of consumer's demand "" "" "" 2009-06-18 12:10:01 UTC 2010-03-01 07:14:18 UTC volume text unknown unknown "" "" Guest "" "" "" "" "" "" "" "" "" "" "" "" "" "" ""
75
+ 161 Monty Python, Shakespeare, and English Renaissance drama "" "" "" 2009-06-18 11:37:58 UTC 2010-03-01 07:14:18 UTC volume text unknown unknown "" "" Guest "" "" "" "" "" "" "" "" "" "" "" "" "" "" ""
76
+ 162 Analyzing computer system performance with PERL::PDQ "" "" "" 2009-06-18 11:29:54 UTC 2010-03-01 07:14:18 UTC volume text unknown unknown "" "" Guest "" "" "" "" "" "" "" "" "" "" "" "" "" "" ""
77
+ 163 equilibrium of the reaction between the manganate, permanganate, and hydroxide of potassium, and manganese dioxide "" "" "" 2009-06-18 11:16:44 UTC 2010-03-01 07:14:18 UTC volume text unknown unknown "" "" Guest "" "" "" "" "" "" "" "" "" "" "" "" "" "" ""
78
+ 164 Stimulated optical emission in ruby "" "" "" 2009-06-18 11:05:25 UTC 2010-03-01 07:14:18 UTC volume text unknown unknown "" "" Guest "" "" "" "" "" "" "" "" "" "" "" "" "" "" ""
79
+ 165 Strategic planning and risk analysis "" "" "" 2009-06-18 08:41:41 UTC 2010-03-01 07:14:18 UTC volume text unknown unknown "" "" Guest "" "" "" "" "" "" "" "" "" "" "" "" "" "" ""
80
+ 166 Performance assertion checking "" "" "" 2009-06-18 08:34:03 UTC 2010-03-01 07:14:18 UTC volume text unknown unknown "" "" Guest "" "" "" "" "" "" "" "" "" "" "" "" "" "" ""
81
+ 167 Spin-lattice relaxation time of ruby "" "" "" 2009-06-18 07:26:38 UTC 2010-03-01 07:14:18 UTC volume text unknown unknown "" "" Guest "" "" "" "" "" "" "" "" "" "" "" "" "" "" ""
82
+ 168 Mourning Ruby "" "" "" 2009-06-18 07:25:25 UTC 2010-03-01 07:14:18 UTC volume text unknown unknown "" "" Guest "" "" "" "" "" "" "" "" "" "" "" "" "" "" ""
83
+ 169 statistical analysis of banking performance in the Eastern Caribbean Currency Union in the 1990s "" "" "" 2009-06-18 06:53:44 UTC 2010-03-01 07:14:18 UTC volume text unknown unknown "" "" Guest "" "" "" "" "" "" "" "" "" "" "" "" "" "" ""
84
+ 170 Professional Perl programming / Perl programming "" "" "" 2009-06-18 06:52:50 UTC 2010-03-01 07:14:18 UTC volume text unknown unknown "" "" Guest "" "" "" "" "" "" "" "" "" "" "" "" "" "" ""
85
+ 171 Perl in a nutshell "" "" "" 2009-06-18 06:40:53 UTC 2010-03-01 07:14:18 UTC volume text unknown unknown "" "" Guest "" "" "" "" "" "" "" "" "" "" "" "" "" "" ""
86
+ 172 Programming Web services with Perl "" "" "" 2009-06-18 06:34:21 UTC 2010-03-01 07:14:18 UTC volume text unknown unknown "" "" Guest "" "" "" "" "" "" "" "" "" "" "" "" "" "" ""
87
+ 173 Proceedings of the Trieste Workshop on the search for New Elementary Particles / International journal of modern physics / Search for new elementary particles "" "" "" 2009-06-18 06:08:06 UTC 2010-03-01 07:14:18 UTC volume text unknown unknown "" "" Guest "" "" "" "" "" "" "" "" "" "" "" "" "" "" ""
88
+ 174 Europeras 3 &amp; 4 / Europera "" "" "" 2009-06-18 06:05:43 UTC 2010-03-01 07:14:18 UTC volume text unknown unknown "" "" Guest "" "" "" "" "" "" "" "" "" "" "" "" "" "" ""
89
+ 175 Retreats from realism in recent English drama "" "" "" 2009-06-18 06:03:06 UTC 2010-03-01 07:14:18 UTC volume text unknown unknown "" "" Guest "" "" "" "" "" "" "" "" "" "" "" "" "" "" ""
90
+ 176 Python programming patterns "" "" "" 2009-06-18 05:52:11 UTC 2010-03-01 07:14:18 UTC volume text unknown unknown "" "" Guest "" "" "" "" "" "" "" "" "" "" "" "" "" "" ""
91
+ 177 Beginning Perl for bioinformatics "" "" "" 2009-06-18 04:45:13 UTC 2010-03-01 07:14:18 UTC volume text unknown unknown "" "" Guest "" "" "" "" "" "" "" "" "" "" "" "" "" "" ""
92
+ 178 Learning Perl "" "" "" 2009-06-18 04:45:11 UTC 2010-03-01 07:14:18 UTC volume text unknown unknown "" "" Guest "" "" "" "" "" "" "" "" "" "" "" "" "" "" ""
93
+ 179 Effective awk programming "" "" "" 2009-06-18 04:45:09 UTC 2010-03-01 07:14:18 UTC volume text unknown unknown "" "" Guest "" "" "" "" "" "" "" "" "" "" "" "" "" "" ""
94
+ 180 Python standard library / Annotated reference for Python 2.0 "" "" "" 2009-06-18 04:45:04 UTC 2010-03-01 07:14:18 UTC volume text unknown unknown "" "" Guest "" "" "" "" "" "" "" "" "" "" "" "" "" "" ""
95
+ 181 Programming Python "" "" "" 2009-06-18 04:45:04 UTC 2010-03-01 07:14:18 UTC volume text unknown unknown "" "" Guest "" "" "" "" "" "" "" "" "" "" "" "" "" "" ""
96
+ 182 Perl CD bookshelf "" "" "" 2009-06-18 04:44:56 UTC 2010-03-01 07:14:18 UTC volume text unknown unknown "" "" Guest "" "" "" "" "" "" "" "" "" "" "" "" "" "" ""
97
+ 183 Programming Perl "" "" "" 2009-06-18 04:44:55 UTC 2010-03-01 07:14:18 UTC volume text unknown unknown "" "" Guest "" "" "" "" "" "" "" "" "" "" "" "" "" "" ""
98
+ 184 Sed &amp; awk pocket reference / Sed and awk pocket reference "" "" "" 2009-06-18 04:44:54 UTC 2010-03-01 07:14:18 UTC volume text unknown unknown "" "" Guest "" "" "" "" "" "" "" "" "" "" "" "" "" "" ""
99
+ 185 Perl power! "" "" "" 2009-06-18 04:41:37 UTC 2010-03-01 07:14:18 UTC volume text unknown unknown "" "" Guest "" "" "" "" "" "" "" "" "" "" "" "" "" "" ""
100
+ 186 ATOKダイレクト API for Perl / Ruby?|?さらに使いこなす?|?ATOK.com "" "" "" 2008-12-19 08:52:47 UTC 2010-03-01 07:14:18 UTC volume text unknown unknown "" "" Guest "" "" "" "" "" "" "" "" "" "" "" "" "" "" ""
101
+ 187 Welcome ― Ruby Enterprise Edition "" "" "" 2008-10-19 06:58:50 UTC 2010-03-01 07:14:18 UTC volume text unknown unknown "" "" Guest "" "" "" "" "" "" "" "" "" "" "" "" "" "" ""
102
+ 188 Pythonクックブック "" "" "" 2008-08-21 15:27:29 UTC 2010-03-01 07:14:18 UTC volume text unknown unknown "" "" Guest "" "" "" "" "" "" "" "" "" "" "" "" "" "" ""
103
+ 189 みんなのPython インデントの世界へようこそ! object oriented-lightweight language Python "" "" "" 2008-08-21 15:20:59 UTC 2010-03-01 07:14:18 UTC volume text unknown unknown "" "" Guest "" "" "" "" "" "" "" "" "" "" "" "" "" "" ""
104
+ 190 Django | The Web framework for perfectionists with deadlines "" "" "" 2008-05-20 04:06:31 UTC 2010-03-01 07:14:18 UTC volume text unknown unknown "" "" Guest "" "" "" "" "" "" "" "" "" "" "" "" "" "" ""
105
+ 191 fac-back-opac - Google Code "" "" "" 2008-05-19 13:36:11 UTC 2010-03-01 07:14:18 UTC volume text unknown unknown "" "" Guest "" "" "" "" "" "" "" "" "" "" "" "" "" "" ""
106
+ 192 Rubyクックブック "" "" "" 2008-03-04 16:37:55 UTC 2010-03-01 07:14:18 UTC volume text unknown unknown "" "" Guest 9784873113241 "" "" "" "" "" "" "" "" "" "" "" "" "" "" 9784873113241
107
+ 193 Rubyレシピブック "" "" "" 2008-03-04 16:30:39 UTC 2010-03-01 07:14:18 UTC volume text unknown unknown "" "" Guest 4797340045//9784797340044 "" "" "" "" "" "" "" "" "" "" "" "" "" "" 4797340045
108
+ 194 初めてのPerl 第3版 "" "" "" 2007-11-19 08:56:37 UTC 2010-03-01 07:14:18 UTC volume text unknown unknown "" "" Guest "" "" "" "" "" "" "" "" "" "" "" "" "" "" ""
109
+ 195 続・初めてのPerl 改訂版 "" "" "" 2007-11-19 08:55:42 UTC 2010-03-01 07:14:18 UTC volume text unknown unknown "" "" Guest "" "" "" "" "" "" "" "" "" "" "" "" "" "" ""
110
+ 196 たのしいRuby 第2版 Rubyではじめる気軽なプログラミング "" "" "" 2007-11-19 08:55:41 UTC 2010-03-01 07:14:18 UTC volume text unknown unknown "" "" Guest 9784797336610 "" "" "" "" "" "" "" "" "" "" "" "" "" "" 9784797336610
111
+ 197 Ruby "" "" "" 2007-11-19 08:55:41 UTC 2010-03-15 07:14:18 UTC volume text unknown unknown "" "" Guest "" "" "" "" "" "" "" "" "" "" "" "" "" "" ""
112
+ 198 紅玉の本 "" "" "" 2007-11-19 08:55:41 UTC 2010-03-15 07:14:18 UTC volume text unknown unknown "" "" Guest "" "" "" "" "" "" "" "" "" "" "" "" "" "" ""
113
+ 201 テスト雑誌2005年1月号 true "" "" "" 2007-11-19 08:55:41 UTC 2010-03-01 07:14:18 UTC volume text weekly unknown "" "" Guest "" "" "" "" "" "" "" "" "" "" "" "" "" "" ""
114
+ 202 テスト雑誌2月号 true "" "" "" 2007-11-19 08:55:41 UTC 2010-03-01 07:14:18 UTC volume text weekly unknown "" "" 1 2 2 Guest "" "" "" "" "" "" "" "" "" "" "" "" "" "" ""
115
+ 203 テスト単行本記事2005 false "" "" "" 2010-03-03 08:00:00 UTC 2010-03-01 07:14:18 UTC volume text unknown unknown "" "" Guest "" "" "" "" "" "" "" "" "" "" "" "" "" "" ""
116
+ 204 テスト雑誌1月号の記事1 2005 true "" "" "" 2010-03-03 11:00:00 UTC 2010-03-03 11:00:00 UTC volume text unknown unknown "" "" Guest "" "" "" "" "" "" "" "" "" "" "" "" "" "" ""
117
+ 205 テスト雑誌1月号の記事2 "" "" "" 1999-12-31 15:00:00 UTC 2010-03-03 11:00:00 UTC 2010-03-03 11:00:00 UTC volume text unknown unknown "" "" Guest "" "" "" "" "" "" "" "" "" "" "" "" "" "" ""
118
+ 206 テスト雑誌2月号の記事1 "" "" "" 2009-12-31 15:00:00 UTC 2010-03-03 11:00:00 UTC 2010-03-03 11:00:00 UTC volume text unknown unknown "" "" Guest "" "" "" "" "" "" "" "" "" "" "" "" "" "" ""
119
+ 207 試験単行本 "" "" "" 2010-03-03 11:00:00 UTC 2010-03-03 11:00:00 UTC volume text unknown unknown "" "" Guest "" "" "" "" "" "" "" "" "" "" "" "" "" "" ""
120
+ 208 ある出版物 "" "" "" 2010-03-16 02:00:00 UTC 2010-03-16 02:00:00 UTC volume text unknown unknown "" "" Guest "" "" "" "" "" "" "" "" "" "" "" "" "" "" ""
121
+ 209 権限確認Admin専用1 "" "" "" 2010-03-19 04:00:00 UTC 2010-03-19 04:00:00 UTC volume text unknown unknown "" "" Administrator "" "" "" "" "" "" "" "" "" "" "" "" "" "" ""
122
+ 210 権限確認Admin専用2 "" "" "" 2010-03-19 04:00:00 UTC 2010-03-19 04:00:00 UTC volume text unknown unknown "" "" Administrator "" "" "" "" "" "" "" "" "" "" "" "" "" "" ""
123
+ 211 権限確認Librarian以上用1 "" "" "" 2010-03-19 04:00:00 UTC 2010-03-19 04:00:00 UTC volume text unknown unknown "" "" Librarian "" "" "" "" "" "" "" "" "" "" "" "" "" "" ""
124
+ 212 権限確認Librarian以上用2 "" "" "" 2010-03-19 04:00:00 UTC 2010-03-19 04:00:00 UTC volume text unknown unknown "" "" Librarian "" "" "" "" "" "" "" "" "" "" "" "" "" "" ""
125
+ 213 権限確認User以上用1 "" "" "" 2010-03-19 04:00:00 UTC 2010-03-19 04:00:00 UTC volume text unknown unknown "" "" User "" "" "" "" "" "" "" "" "" "" "" "" "" "" ""
126
+ 214 権限確認User以上用2 "" "" "" 2010-03-19 04:00:00 UTC 2010-03-19 04:00:00 UTC volume text unknown unknown "" "" User "" "" "" "" "" "" "" "" "" "" "" "" "" "" ""
127
+ 215 権限確認 "" "" "" 2010-03-19 04:00:00 UTC 2010-03-19 04:00:00 UTC volume text unknown unknown "" "" Guest "" "" "" "" "" "" "" "" "" "" "" "" "" "" ""
128
+ 216 権限確認 "" "" "" 2010-03-19 04:00:00 UTC 2010-03-19 04:00:00 UTC volume text unknown unknown "" "" Guest "" "" "" "" "" "" "" "" "" "" "" "" "" "" ""
129
+ 217 manifestation_title_1 "" "" "" 2021-08-29 07:09:21 UTC 2021-08-29 07:09:21 UTC volume text unknown unknown "" "" Guest a11223344 "" "" "" "" "" "" "" "" "" "" "" "" "" "" a11223344
130
+ 218 manifestation_title_2 "" "" "" 2021-08-29 07:09:21 UTC 2021-08-29 07:09:21 UTC volume text unknown unknown "" "" Guest "" "" "" "" "" "" "" "" "" "" "" "" "" "" ""
@@ -0,0 +1,7 @@
1
+ FactoryBot.define do
2
+ factory :identifier do
3
+ sequence(:body){|n| "identifier_body_#{n}"}
4
+ identifier_type_id{FactoryBot.create(:identifier_type).id}
5
+ association(:manifestation)
6
+ end
7
+ end