enju_bookmark 0.1.2.pre14 → 0.1.2.pre15

Sign up to get free protection for your applications and to get access to all the features.
Files changed (126) hide show
  1. checksums.yaml +4 -4
  2. data/app/controllers/bookmark_stat_has_manifestations_controller.rb +12 -12
  3. data/app/controllers/bookmark_stats_controller.rb +13 -13
  4. data/app/controllers/bookmarks_controller.rb +18 -19
  5. data/app/controllers/tags_controller.rb +6 -7
  6. data/app/models/bookmark.rb +12 -12
  7. data/app/models/bookmark_stat.rb +20 -12
  8. data/app/models/bookmark_stat_has_manifestation.rb +2 -2
  9. data/app/models/bookmark_stat_state_machine.rb +13 -0
  10. data/app/models/bookmark_stat_transition.rb +20 -0
  11. data/app/models/tag.rb +5 -5
  12. data/app/views/bookmark_stat_has_manifestations/edit.html.erb +3 -3
  13. data/app/views/bookmark_stat_has_manifestations/index.html.erb +5 -5
  14. data/app/views/bookmark_stat_has_manifestations/new.html.erb +3 -3
  15. data/app/views/bookmark_stat_has_manifestations/show.html.erb +3 -3
  16. data/app/views/bookmark_stats/edit.html.erb +3 -3
  17. data/app/views/bookmark_stats/index.html.erb +6 -6
  18. data/app/views/bookmark_stats/new.html.erb +3 -3
  19. data/app/views/bookmark_stats/show.html.erb +6 -6
  20. data/app/views/bookmarks/_index.html.erb +8 -8
  21. data/app/views/bookmarks/_index_user.html.erb +9 -9
  22. data/app/views/bookmarks/_tag_cloud.html.erb +1 -1
  23. data/app/views/bookmarks/edit.html.erb +8 -8
  24. data/app/views/bookmarks/new.html.erb +7 -7
  25. data/app/views/bookmarks/show.html.erb +7 -7
  26. data/app/views/manifestations/_bookmarks_for_this_manifestation.html.erb +3 -3
  27. data/app/views/manifestations/_show_tag.html.erb +1 -1
  28. data/app/views/manifestations/_tag_edit.html.erb +8 -8
  29. data/app/views/manifestations/_tag_list.html.erb +2 -2
  30. data/app/views/tags/edit.html.erb +5 -5
  31. data/app/views/tags/index.atom.builder +2 -2
  32. data/app/views/tags/index.html.erb +8 -8
  33. data/app/views/tags/index.rss.builder +5 -5
  34. data/app/views/tags/show.html.erb +6 -6
  35. data/config/routes.rb +0 -3
  36. data/db/migrate/20081212151614_create_bookmark_stats.rb +0 -3
  37. data/db/migrate/20140812093836_add_share_bookmarks_to_profile.rb +5 -0
  38. data/lib/enju_bookmark.rb +2 -0
  39. data/lib/enju_bookmark/engine.rb +1 -1
  40. data/lib/enju_bookmark/profile.rb +13 -0
  41. data/lib/enju_bookmark/user.rb +2 -0
  42. data/lib/enju_bookmark/version.rb +1 -1
  43. data/spec/controllers/bookmark_stat_has_manifestations_controller_spec.rb +21 -21
  44. data/spec/controllers/bookmark_stats_controller_spec.rb +21 -21
  45. data/spec/controllers/bookmarks_controller_spec.rb +5 -11
  46. data/spec/controllers/tags_controller_spec.rb +15 -15
  47. data/spec/dummy/config/initializers/statesman.rb +3 -0
  48. data/spec/dummy/db/development.sqlite3 +0 -0
  49. data/spec/dummy/db/migrate/001_create_agents.rb +0 -3
  50. data/spec/dummy/db/migrate/005_create_manifestations.rb +7 -19
  51. data/spec/dummy/db/migrate/006_create_items.rb +0 -3
  52. data/spec/dummy/db/migrate/041_create_roles.rb +13 -0
  53. data/spec/dummy/db/migrate/20081028083142_create_agent_import_files.rb +0 -2
  54. data/spec/dummy/db/migrate/20081028083208_create_resource_import_files.rb +1 -3
  55. data/spec/dummy/db/migrate/20100129142347_create_import_requests.rb +0 -1
  56. data/spec/dummy/db/migrate/{20111201163718_create_user_has_roles.rb → 20100606065209_create_user_has_roles.rb} +2 -0
  57. data/spec/dummy/db/migrate/20110318183304_add_valid_period_for_new_user_to_user_group.rb +0 -2
  58. data/spec/dummy/db/migrate/20121116031206_add_fulltext_content_to_manifestation.rb +5 -0
  59. data/spec/dummy/db/migrate/20121116033446_add_doi_to_manifestation.rb +6 -0
  60. data/spec/dummy/db/migrate/20130221154434_add_additional_attributes_to_user.rb +1 -11
  61. data/spec/dummy/db/migrate/20130421093852_add_periodical_to_manifestation.rb +5 -0
  62. data/spec/dummy/db/migrate/20130421155019_add_creator_string_to_series_statement.rb +7 -0
  63. data/spec/dummy/db/migrate/20130421164124_add_series_master_to_series_statement.rb +5 -0
  64. data/spec/dummy/db/migrate/20130429020822_add_root_manifestation_id_to_series_statement.rb +6 -0
  65. data/spec/dummy/db/migrate/{20111201121844_create_roles.rb → 20130506175303_create_identifier_types.rb} +2 -2
  66. data/spec/dummy/db/migrate/20130506175834_create_identifiers.rb +15 -0
  67. data/spec/dummy/db/migrate/20130509185724_add_statement_of_responsibility_to_manifestation.rb +5 -0
  68. data/spec/dummy/db/migrate/20140110122216_create_user_import_files.rb +18 -0
  69. data/spec/dummy/db/migrate/20140110131010_create_user_import_results.rb +11 -0
  70. data/spec/dummy/db/migrate/20140122054321_create_profiles.rb +20 -0
  71. data/spec/dummy/db/migrate/20140519170214_create_resource_import_file_transitions.rb +14 -0
  72. data/spec/dummy/db/migrate/20140519171220_create_import_request_transitions.rb +14 -0
  73. data/spec/dummy/db/migrate/20140524020735_create_agent_import_file_transitions.rb +14 -0
  74. data/spec/dummy/db/migrate/20140524074813_create_user_import_file_transitions.rb +14 -0
  75. data/spec/dummy/db/migrate/20140610123439_drop_email_unique_constraint_enju_leaf_rc10.rb +11 -0
  76. data/spec/dummy/db/migrate/20140614065404_create_resource_export_files.rb +11 -0
  77. data/spec/dummy/db/migrate/20140614141500_create_resource_export_file_transitions.rb +14 -0
  78. data/spec/dummy/db/migrate/20140628072217_add_user_encoding_to_user_import_file.rb +5 -0
  79. data/spec/dummy/db/migrate/20140628073524_add_user_encoding_to_agent_import_file.rb +5 -0
  80. data/spec/dummy/db/migrate/20140628073535_add_user_encoding_to_resource_import_file.rb +5 -0
  81. data/spec/dummy/db/migrate/20140709113413_create_user_export_files.rb +11 -0
  82. data/spec/dummy/db/migrate/20140709113905_create_user_export_file_transitions.rb +14 -0
  83. data/spec/dummy/db/migrate/20140720140916_add_binding_item_identifier_to_item.rb +8 -0
  84. data/spec/dummy/db/migrate/20140720170714_add_default_library_id_to_user_import_file.rb +5 -0
  85. data/spec/dummy/db/migrate/20140720170735_add_default_user_group_id_to_user_import_file.rb +5 -0
  86. data/spec/dummy/db/migrate/20140721151416_add_default_shelf_id_to_resource_import_file.rb +5 -0
  87. data/spec/dummy/db/migrate/{20121119153944_add_manifestation_id_to_item.rb → 20140802082007_add_manifestation_id_to_item.rb} +1 -0
  88. data/spec/dummy/db/schema.rb +215 -55
  89. data/spec/dummy/db/test.sqlite3 +0 -0
  90. data/spec/dummy/solr/default/data/index/segments.gen +0 -0
  91. data/spec/dummy/solr/default/data/index/segments_1bi +0 -0
  92. data/spec/dummy/solr/default/data/tlog/tlog.0000000000000001699 +0 -0
  93. data/spec/dummy/solr/default/data/tlog/{tlog.0000000000000000905 → tlog.0000000000000001700} +0 -0
  94. data/spec/dummy/solr/default/data/tlog/tlog.0000000000000001701 +0 -0
  95. data/spec/dummy/solr/default/data/tlog/tlog.0000000000000001702 +0 -0
  96. data/spec/dummy/solr/default/data/tlog/tlog.0000000000000001703 +0 -0
  97. data/spec/dummy/solr/default/data/tlog/tlog.0000000000000001704 +0 -0
  98. data/spec/dummy/solr/default/data/tlog/tlog.0000000000000001705 +0 -0
  99. data/spec/dummy/solr/default/data/tlog/tlog.0000000000000001706 +0 -0
  100. data/spec/dummy/solr/default/data/tlog/tlog.0000000000000001707 +0 -0
  101. data/spec/dummy/solr/default/data/tlog/tlog.0000000000000001708 +0 -0
  102. data/spec/factories/profile.rb +10 -0
  103. data/spec/factories/user.rb +0 -13
  104. data/spec/fixtures/agents.yml +0 -12
  105. data/spec/fixtures/bookmark_stats.yml +0 -4
  106. data/spec/fixtures/items.yml +60 -21
  107. data/spec/fixtures/manifestations.yml +42 -178
  108. data/spec/fixtures/profiles.yml +99 -0
  109. data/spec/fixtures/users.yml +3 -29
  110. data/spec/models/bookmark_spec.rb +1 -1
  111. data/spec/models/bookmark_stat_spec.rb +1 -3
  112. data/spec/spec_helper.rb +2 -0
  113. metadata +117 -42
  114. data/app/models/bookmark_sweeper.rb +0 -21
  115. data/spec/dummy/db/migrate/20110916053430_rename_manifestation_number_list_to_number_string.rb +0 -13
  116. data/spec/dummy/db/migrate/20120415060308_rename_resource_import_file_imported_at_to_executed_at.rb +0 -9
  117. data/spec/dummy/solr/default/data/index/segments_pf +0 -0
  118. data/spec/dummy/solr/default/data/tlog/tlog.0000000000000000904 +0 -0
  119. data/spec/dummy/solr/default/data/tlog/tlog.0000000000000000906 +0 -0
  120. data/spec/dummy/solr/default/data/tlog/tlog.0000000000000000907 +0 -0
  121. data/spec/dummy/solr/default/data/tlog/tlog.0000000000000000908 +0 -0
  122. data/spec/dummy/solr/default/data/tlog/tlog.0000000000000000909 +0 -0
  123. data/spec/dummy/solr/default/data/tlog/tlog.0000000000000000910 +0 -0
  124. data/spec/dummy/solr/default/data/tlog/tlog.0000000000000000911 +0 -0
  125. data/spec/dummy/solr/default/data/tlog/tlog.0000000000000000912 +0 -0
  126. data/spec/dummy/solr/default/data/tlog/tlog.0000000000000000913 +0 -0
Binary file
@@ -0,0 +1,10 @@
1
+ FactoryGirl.define do
2
+ factory :profile, :class => Profile do |f|
3
+ f.user_group_id {UserGroup.first.id}
4
+ f.required_role_id {Role.where(name: 'User').first.id}
5
+ f.sequence(:user_number){|n| "user_number_#{n}"}
6
+ f.library_id 2
7
+ f.locale "ja"
8
+ f.user_id {FactoryGirl.create(:user).id}
9
+ end
10
+ end
@@ -3,12 +3,8 @@ FactoryGirl.define do
3
3
  f.sequence(:username){|n| "admin_#{n}"}
4
4
  f.sequence(:email){|n| "admin_#{n}@example.jp"}
5
5
  f.email_confirmation{|u| u.email}
6
- f.library_id{FactoryGirl.create(:library).id}
7
6
  f.password 'adminpassword'
8
7
  f.password_confirmation 'adminpassword'
9
- f.user_group_id{UserGroup.where(:name => 'User').first.id}
10
- f.required_role_id{Role.find_by_name('User').id}
11
- f.locale 'ja'
12
8
  f.after(:create) do |user|
13
9
  user_has_role = UserHasRole.new
14
10
  user_has_role.assign_attributes({:user_id => user.id, :role_id => Role.find_by_name('Administrator').id})
@@ -21,12 +17,8 @@ FactoryGirl.define do
21
17
  f.sequence(:username){|n| "librarian_#{n}"}
22
18
  f.sequence(:email){|n| "librarian_#{n}@example.jp"}
23
19
  f.email_confirmation{|u| u.email}
24
- f.library_id{FactoryGirl.create(:library).id}
25
20
  f.password 'librarianpassword'
26
21
  f.password_confirmation 'librarianpassword'
27
- f.user_group_id{UserGroup.where(:name => 'User').first.id}
28
- f.required_role_id{Role.find_by_name('User').id}
29
- f.locale 'ja'
30
22
  f.after(:create) do |user|
31
23
  user_has_role = UserHasRole.new
32
24
  user_has_role.assign_attributes({:user_id => user.id, :role_id => Role.find_by_name('Librarian').id})
@@ -39,13 +31,8 @@ FactoryGirl.define do
39
31
  f.sequence(:username){|n| "user_#{n}"}
40
32
  f.sequence(:email){|n| "user_#{n}@example.jp"}
41
33
  f.email_confirmation{|u| u.email}
42
- f.library_id{FactoryGirl.create(:library).id}
43
34
  f.password 'userpassword'
44
35
  f.password_confirmation 'userpassword'
45
- f.user_group_id{UserGroup.where(:name => 'not_specified').first.id}
46
- f.required_role_id{Role.find_by_name('User').id}
47
- f.locale 'ja'
48
- f.sequence(:user_number){|n| "user_number_#{n}"}
49
36
  f.after(:create) do |user|
50
37
  user_has_role = UserHasRole.new
51
38
  user_has_role.assign_attributes({:user_id => user.id, :role_id => Role.find_by_name('User').id})
@@ -15,7 +15,6 @@ agent_00001:
15
15
  agent_type_id: 1
16
16
  required_role_id: 1
17
17
  created_at: 2007-11-19 17:06:06.507237 +09:00
18
- user_id: 1
19
18
  agent_00002:
20
19
  place: ""
21
20
  last_name: Librarian1
@@ -32,7 +31,6 @@ agent_00002:
32
31
  agent_type_id: 1
33
32
  required_role_id: 4
34
33
  created_at: 2007-11-19 17:06:07.724517 +09:00
35
- user_id: 2
36
34
  agent_00003:
37
35
  place:
38
36
  last_name: Kosuke
@@ -49,7 +47,6 @@ agent_00003:
49
47
  agent_type_id: 1
50
48
  required_role_id: 3
51
49
  created_at: 2007-12-04 16:25:01.523618 +09:00
52
- user_id: 3
53
50
  agent_00004:
54
51
  place:
55
52
  last_name: Librarian2
@@ -66,7 +63,6 @@ agent_00004:
66
63
  agent_type_id: 1
67
64
  required_role_id: 1
68
65
  created_at: 2007-12-04 16:25:01.785027 +09:00
69
- user_id: 4
70
66
  agent_00005:
71
67
  place: ""
72
68
  last_name: User2
@@ -83,7 +79,6 @@ agent_00005:
83
79
  agent_type_id: 1
84
80
  required_role_id: 2
85
81
  created_at: 2007-11-19 17:24:50.153417 +09:00
86
- user_id: 5
87
82
  agent_00006:
88
83
  place: ""
89
84
  last_name: New agent 1
@@ -180,7 +175,6 @@ agent_00011:
180
175
  agent_type_id: 1
181
176
  required_role_id: 1
182
177
  created_at: 2007-11-19 17:24:50.153417 +09:00
183
- user_id: 6
184
178
  agent_00101:
185
179
  place: ""
186
180
  last_name: テスト名字
@@ -278,17 +272,11 @@ agent_00202:
278
272
  required_role_id: 1
279
273
  created_at: 2010-03-15 17:00:00.579396 +09:00
280
274
 
281
-
282
-
283
-
284
-
285
-
286
275
  # == Schema Information
287
276
  #
288
277
  # Table name: agents
289
278
  #
290
279
  # id :integer not null, primary key
291
- # user_id :integer
292
280
  # last_name :string(255)
293
281
  # middle_name :string(255)
294
282
  # first_name :string(255)
@@ -5,14 +5,12 @@ bookmark_stat_00001:
5
5
  start_date: 2008-12-13 00:16:14
6
6
  end_date: 2008-12-14 00:16:14
7
7
  note: MyText
8
- state: pending
9
8
 
10
9
  bookmark_stat_00002:
11
10
  id: 2
12
11
  start_date: 2008-12-13 00:16:14
13
12
  end_date: 2008-12-14 00:16:14
14
13
  note: MyText
15
- state: pending
16
14
 
17
15
  # == Schema Information
18
16
  #
@@ -24,8 +22,6 @@ bookmark_stat_00002:
24
22
  # started_at :datetime
25
23
  # completed_at :datetime
26
24
  # note :text
27
- # state :string(255)
28
25
  # created_at :datetime not null
29
26
  # updated_at :datetime not null
30
27
  #
31
-
@@ -4,6 +4,7 @@ item_00001:
4
4
  item_identifier: '00001'
5
5
  shelf_id: 1
6
6
  call_number:
7
+ manifestation_id: 1
7
8
  id: 1
8
9
  include_supplements: false
9
10
  created_at: 2007-08-24 23:46:00.484813 +09:00
@@ -12,6 +13,7 @@ item_00002:
12
13
  item_identifier: '00002'
13
14
  shelf_id: 1
14
15
  call_number:
16
+ manifestation_id: 2
15
17
  id: 2
16
18
  include_supplements: false
17
19
  created_at: 2007-08-24 23:46:01.641413 +09:00
@@ -20,6 +22,7 @@ item_00003:
20
22
  item_identifier: '00003'
21
23
  shelf_id: 1
22
24
  call_number:
25
+ manifestation_id: 3
23
26
  id: 3
24
27
  include_supplements: false
25
28
  created_at: 2007-08-24 23:46:02.502569 +09:00
@@ -28,6 +31,7 @@ item_00004:
28
31
  item_identifier: '00004'
29
32
  shelf_id: 1
30
33
  call_number:
34
+ manifestation_id: 1
31
35
  id: 4
32
36
  include_supplements: true
33
37
  created_at: 2007-08-24 23:46:03.520781 +09:00
@@ -36,6 +40,7 @@ item_00005:
36
40
  item_identifier: '00005'
37
41
  shelf_id: 1
38
42
  call_number:
43
+ manifestation_id: 2
39
44
  id: 5
40
45
  include_supplements: false
41
46
  created_at: 2007-08-24 23:46:04.538073 +09:00
@@ -44,6 +49,7 @@ item_00006:
44
49
  item_identifier: '00006'
45
50
  shelf_id: 1
46
51
  call_number:
52
+ manifestation_id: 3
47
53
  id: 6
48
54
  include_supplements: true
49
55
  created_at: 2007-08-24 23:46:05.555353 +09:00
@@ -52,6 +58,7 @@ item_00007:
52
58
  item_identifier: '00007'
53
59
  shelf_id: 1
54
60
  call_number:
61
+ manifestation_id: 1
55
62
  id: 7
56
63
  include_supplements: false
57
64
  created_at: 2007-08-24 23:46:06.572631 +09:00
@@ -60,6 +67,7 @@ item_00008:
60
67
  item_identifier: '00008'
61
68
  shelf_id: 1
62
69
  call_number:
70
+ manifestation_id: 2
63
71
  id: 8
64
72
  include_supplements: true
65
73
  created_at: 2007-08-24 23:46:07.589909 +09:00
@@ -68,6 +76,7 @@ item_00009:
68
76
  item_identifier: '00009'
69
77
  shelf_id: 4
70
78
  call_number:
79
+ manifestation_id: 3
71
80
  id: 9
72
81
  include_supplements: false
73
82
  created_at: 2007-08-24 23:46:08.607081 +09:00
@@ -76,6 +85,7 @@ item_00010:
76
85
  item_identifier: '00010'
77
86
  shelf_id: 1
78
87
  call_number:
88
+ manifestation_id: 1
79
89
  id: 10
80
90
  include_supplements: false
81
91
  created_at: 2007-08-24 23:46:09.624281 +09:00
@@ -84,6 +94,7 @@ item_00011:
84
94
  item_identifier: '00011'
85
95
  shelf_id: 1
86
96
  call_number:
97
+ manifestation_id: 1
87
98
  id: 11
88
99
  include_supplements: false
89
100
  created_at: 2007-08-24 23:46:10.484813 +09:00
@@ -92,6 +103,7 @@ item_00012:
92
103
  item_identifier: '00012'
93
104
  shelf_id: 1
94
105
  call_number:
106
+ manifestation_id: 2
95
107
  id: 12
96
108
  include_supplements: false
97
109
  created_at: 2007-08-24 23:46:11.484813 +09:00
@@ -100,6 +112,7 @@ item_00013:
100
112
  item_identifier: '00013'
101
113
  shelf_id: 1
102
114
  call_number:
115
+ manifestation_id: 2
103
116
  id: 13
104
117
  include_supplements: false
105
118
  created_at: 2007-08-24 23:46:12.484813 +09:00
@@ -108,6 +121,7 @@ item_00014:
108
121
  item_identifier: '00014'
109
122
  shelf_id: 1
110
123
  call_number:
124
+ manifestation_id: 2
111
125
  id: 14
112
126
  include_supplements: false
113
127
  created_at: 2007-08-24 23:46:13.484813 +09:00
@@ -116,6 +130,7 @@ item_00015:
116
130
  item_identifier: '00015'
117
131
  shelf_id: 1
118
132
  call_number:
133
+ manifestation_id: 2
119
134
  id: 15
120
135
  include_supplements: false
121
136
  created_at: 2007-08-24 23:46:14.484813 +09:00
@@ -124,6 +139,7 @@ item_00016:
124
139
  item_identifier: '00016'
125
140
  shelf_id: 1
126
141
  call_number:
142
+ manifestation_id: 3
127
143
  id: 16
128
144
  include_supplements: true
129
145
  created_at: 2007-08-24 23:46:15.484813 +09:00
@@ -132,6 +148,7 @@ item_00017:
132
148
  item_identifier: '00017'
133
149
  shelf_id: 1
134
150
  call_number:
151
+ manifestation_id: 3
135
152
  id: 17
136
153
  include_supplements: false
137
154
  created_at: 2007-08-24 23:46:16.484813 +09:00
@@ -140,6 +157,7 @@ item_00018:
140
157
  item_identifier: '00018'
141
158
  shelf_id: 1
142
159
  call_number:
160
+ manifestation_id: 1
143
161
  id: 18
144
162
  include_supplements: false
145
163
  created_at: 2007-08-24 23:46:17.484813 +09:00
@@ -148,6 +166,7 @@ item_00019:
148
166
  item_identifier: '00019'
149
167
  shelf_id: 1
150
168
  call_number:
169
+ manifestation_id: 1
151
170
  id: 19
152
171
  include_supplements: false
153
172
  created_at: 2007-08-24 23:46:18.484813 +09:00
@@ -156,6 +175,7 @@ item_00020:
156
175
  item_identifier: '00020'
157
176
  shelf_id: 1
158
177
  call_number:
178
+ manifestation_id: 1
159
179
  id: 20
160
180
  include_supplements: false
161
181
  created_at: 2007-08-24 23:46:19.484813 +09:00
@@ -164,33 +184,52 @@ item_00021:
164
184
  item_identifier: '00021'
165
185
  shelf_id: 1
166
186
  call_number:
187
+ manifestation_id: 11
167
188
  id: 21
168
189
  include_supplements: false
169
190
  created_at: 2007-08-24 23:46:20.484813 +09:00
170
-
191
+ item_00022:
192
+ updated_at: 2007-08-24 23:46:20.484813 +09:00
193
+ item_identifier: '00022'
194
+ shelf_id: 1
195
+ call_number:
196
+ manifestation_id: 11
197
+ id: 22
198
+ include_supplements: false
199
+ created_at: 2007-08-24 23:46:20.484813 +09:00
200
+ item_00023:
201
+ updated_at: 2007-08-24 23:46:20.484813 +09:00
202
+ item_identifier: '00023'
203
+ shelf_id: 2
204
+ call_number:
205
+ manifestation_id: 11
206
+ id: 23
207
+ include_supplements: false
208
+ created_at: 2007-08-24 23:46:20.484813 +09:00
171
209
 
172
210
  # == Schema Information
173
211
  #
174
212
  # Table name: items
175
213
  #
176
- # id :integer not null, primary key
177
- # call_number :string(255)
178
- # item_identifier :string(255)
179
- # created_at :datetime
180
- # updated_at :datetime
181
- # deleted_at :datetime
182
- # shelf_id :integer default(1), not null
183
- # include_supplements :boolean default(FALSE), not null
184
- # owns_count :integer default(0), not null
185
- # note :text
186
- # url :string(255)
187
- # price :integer
188
- # lock_version :integer default(0), not null
189
- # required_role_id :integer default(1), not null
190
- # state :string(255)
191
- # required_score :integer default(0), not null
192
- # acquired_at :datetime
193
- # bookstore_id :integer
194
- # missing_since :datetime
214
+ # id :integer not null, primary key
215
+ # call_number :string(255)
216
+ # item_identifier :string(255)
217
+ # created_at :datetime not null
218
+ # updated_at :datetime not null
219
+ # deleted_at :datetime
220
+ # shelf_id :integer default(1), not null
221
+ # include_supplements :boolean default(FALSE), not null
222
+ # note :text
223
+ # url :string(255)
224
+ # price :integer
225
+ # lock_version :integer default(0), not null
226
+ # required_role_id :integer default(1), not null
227
+ # required_score :integer default(0), not null
228
+ # acquired_at :datetime
229
+ # bookstore_id :integer
230
+ # budget_type_id :integer
231
+ # binding_item_identifier :string(255)
232
+ # binding_call_number :string(255)
233
+ # binded_at :datetime
234
+ # manifestation_id :integer
195
235
  #
196
-
@@ -2,7 +2,6 @@
2
2
  manifestation_00001:
3
3
  carrier_type_id: 1
4
4
  language_id: 1
5
- isbn: "4798002062"
6
5
  updated_at: 2007-11-19 16:59:00.293393 +09:00
7
6
  original_title: "\xE3\x82\x88\xE3\x81\x8F\xE3\x82\x8F\xE3\x81\x8B\xE3\x82\x8B\xE6\x9C\x80\xE6\x96\xB0Web\xE3\x82\xB5\xE3\x83\xBC\xE3\x83\x93\xE3\x82\xB9\xE6\x8A\x80\xE8\xA1\x93"
8
7
  price:
@@ -20,7 +19,6 @@ manifestation_00001:
20
19
  manifestation_00002:
21
20
  carrier_type_id: 1
22
21
  language_id: 1
23
- isbn: "4915724824"
24
22
  updated_at: 2007-11-19 16:59:01.991512 +09:00
25
23
  original_title: "\xE6\x83\x85\xE5\xA0\xB1\xE9\x80\x9A\xE4\xBF\xA1\xE3\x83\x8F\xE3\x83\xB3\xE3\x83\x89\xE3\x83\x96\xE3\x83\x83\xE3\x82\xAF2005"
26
24
  price:
@@ -36,7 +34,6 @@ manifestation_00002:
36
34
  manifestation_00003:
37
35
  carrier_type_id: 1
38
36
  language_id: 1
39
- isbn: "4897063590"
40
37
  updated_at: 2007-11-19 16:59:02.618359 +09:00
41
38
  original_title: !binary |
42
39
  44GT44KM44GL44KJ44Gu55Sf5ZG956eR5a2m56CU56m26ICF44Gu44Gf44KB
@@ -54,7 +51,6 @@ manifestation_00003:
54
51
  manifestation_00004:
55
52
  carrier_type_id: 1
56
53
  language_id: 1
57
- isbn: 0471412791
58
54
  updated_at: 2007-11-19 16:59:03.275738 +09:00
59
55
  original_title: THE BIOTECH INVESTOR'S BIBLE
60
56
  price:
@@ -69,7 +65,6 @@ manifestation_00004:
69
65
  manifestation_00005:
70
66
  carrier_type_id: 1
71
67
  language_id: 1
72
- isbn: ""
73
68
  updated_at: 2007-11-19 16:59:04.333183 +09:00
74
69
  original_title: !binary |
75
70
  6aGn5a6i5rqA6Laz5Z6L44Oe44O844Kx44OG44Kj44Oz44Kw44Gu5qeL5Zuz
@@ -86,7 +81,6 @@ manifestation_00005:
86
81
  manifestation_00006:
87
82
  carrier_type_id: 1
88
83
  language_id: 1
89
- isbn: ""
90
84
  updated_at: 2007-11-19 16:59:05.255684 +09:00
91
85
  original_title: !binary |
92
86
  5LuV57WE44G/6Z2p5paw44Gu5pmC5Luj
@@ -103,7 +97,6 @@ manifestation_00006:
103
97
  manifestation_00007:
104
98
  carrier_type_id: 1
105
99
  language_id: 1
106
- isbn: 0470844701
107
100
  updated_at: 2007-11-19 16:59:06.892741 +09:00
108
101
  original_title: dictionary of e-business
109
102
  price:
@@ -118,7 +111,6 @@ manifestation_00007:
118
111
  manifestation_00008:
119
112
  carrier_type_id: 1
120
113
  language_id: 1
121
- isbn: "4798101028"
122
114
  updated_at: 2007-11-19 16:59:07.463333 +09:00
123
115
  original_title: "Web\xE3\x82\xB5\xE3\x83\xBC\xE3\x83\x93\xE3\x82\xB9\xE5\xAE\x8C\xE5\x85\xA8\xE8\xA7\xA3\xE8\xAA\xAC"
124
116
  price:
@@ -133,7 +125,6 @@ manifestation_00008:
133
125
  manifestation_00009:
134
126
  carrier_type_id: 1
135
127
  language_id: 1
136
- isbn: "4641143331"
137
128
  updated_at: 2007-11-19 16:59:08.166195 +09:00
138
129
  original_title: !binary |
139
130
  6YCQ5p2h6Kej6Kqs5LiN5q2j56u25LqJ6Ziy5q2i5rOV
@@ -150,7 +141,6 @@ manifestation_00009:
150
141
  manifestation_00010:
151
142
  carrier_type_id: 1
152
143
  language_id: 1
153
- isbn: "9784774127804"
154
144
  updated_at: 2007-11-19 16:59:09.799724 +09:00
155
145
  original_title: "Apache Lucene入門 : Java・オープンソース・全文検索システムの構築"
156
146
  price:
@@ -164,7 +154,6 @@ manifestation_00010:
164
154
  created_at: 2007-11-19 16:59:09.799724 +09:00
165
155
  manifestation_00021:
166
156
  carrier_type_id: 1
167
- isbn: "4822281167"
168
157
  updated_at: 2007-11-19 16:59:20.799724 +09:00
169
158
  original_title: "Web\xE3\x82\xB5\xE3\x83\xBC\xE3\x83\x93\xE3\x82\xB9\xE5\xAE\x8C\xE5\x85\xA8\xE6\xA7\x8B\xE7\xAF\x89\xE3\x82\xAC\xE3\x82\xA4\xE3\x83\x89"
170
159
  price:
@@ -179,7 +168,6 @@ manifestation_00021:
179
168
  required_role_id: 2
180
169
  manifestation_00022:
181
170
  carrier_type_id: 1
182
- isbn:
183
171
  updated_at: 2007-11-19 16:59:21.799724 +09:00
184
172
  original_title: "YouTube - Open Source ILS Song"
185
173
  price:
@@ -194,7 +182,6 @@ manifestation_00022:
194
182
  required_role_id: 1
195
183
  manifestation_00023:
196
184
  carrier_type_id: 1
197
- isbn:
198
185
  updated_at: 2008-04-17 00:34:01 +09:00
199
186
  original_title: "世界の美しい図書館集めてみた【第一弾】"
200
187
  price:
@@ -210,7 +197,6 @@ manifestation_00023:
210
197
  manifestation_00101:
211
198
  carrier_type_id: 1
212
199
  language_id: 1
213
- isbn: 0000000101
214
200
  updated_at: 2010-03-01 16:14:18 +09:00
215
201
  original_title: "CGI基礎講座 : Perl・プログラミング・日本語処理"
216
202
  price:
@@ -225,7 +211,6 @@ manifestation_00101:
225
211
  manifestation_00102:
226
212
  carrier_type_id: 1
227
213
  language_id: 1
228
- isbn: 0000000102
229
214
  updated_at: 2010-03-01 16:14:18 +09:00
230
215
  original_title: "CGIレスキュー実践Perlプログラミング : Web裏技"
231
216
  price:
@@ -240,7 +225,6 @@ manifestation_00102:
240
225
  manifestation_00103:
241
226
  carrier_type_id: 1
242
227
  language_id: 1
243
- isbn: 0000000103
244
228
  updated_at: 2010-03-01 16:14:18 +09:00
245
229
  original_title: "Perlクックブック. v.2"
246
230
  price:
@@ -255,7 +239,6 @@ manifestation_00103:
255
239
  manifestation_00104:
256
240
  carrier_type_id: 1
257
241
  language_id: 1
258
- isbn: 0000000104
259
242
  updated_at: 2010-03-01 16:14:18 +09:00
260
243
  original_title: "Perlクックブック. v.1"
261
244
  price:
@@ -270,7 +253,6 @@ manifestation_00104:
270
253
  manifestation_00105:
271
254
  carrier_type_id: 1
272
255
  language_id: 1
273
- isbn: 0000000105
274
256
  updated_at: 2010-03-01 16:14:18 +09:00
275
257
  original_title: "初めてのPerl. 続"
276
258
  price:
@@ -285,7 +267,6 @@ manifestation_00105:
285
267
  manifestation_00106:
286
268
  carrier_type_id: 1
287
269
  language_id: 1
288
- isbn: 0000000106
289
270
  updated_at: 2010-03-01 16:14:18 +09:00
290
271
  original_title: "Perl & XML"
291
272
  price:
@@ -300,7 +281,6 @@ manifestation_00106:
300
281
  manifestation_00107:
301
282
  carrier_type_id: 1
302
283
  language_id: 1
303
- isbn: 0000000107
304
284
  updated_at: 2010-03-01 16:14:18 +09:00
305
285
  original_title: "はじめてのPerlモジュール : 厳選実用モジュール集"
306
286
  price:
@@ -315,7 +295,6 @@ manifestation_00107:
315
295
  manifestation_00108:
316
296
  carrier_type_id: 1
317
297
  language_id: 1
318
- isbn: 0000000108
319
298
  updated_at: 2010-03-01 16:14:18 +09:00
320
299
  original_title: "Perl 5パワフルテクニック大全集"
321
300
  price:
@@ -330,7 +309,6 @@ manifestation_00108:
330
309
  manifestation_00109:
331
310
  carrier_type_id: 1
332
311
  language_id: 1
333
- isbn: 0000000109
334
312
  updated_at: 2010-03-01 16:14:18 +09:00
335
313
  original_title: "CGI/Perlパワープログラミング"
336
314
  price:
@@ -345,7 +323,6 @@ manifestation_00109:
345
323
  manifestation_00110:
346
324
  carrier_type_id: 1
347
325
  language_id: 1
348
- isbn: 0000000110
349
326
  updated_at: 2010-03-01 16:14:18 +09:00
350
327
  original_title: "Ruby/GTKプログラミング入門 : Rubyで作って遊ぶGUIプログラミング"
351
328
  price:
@@ -360,7 +337,6 @@ manifestation_00110:
360
337
  manifestation_00111:
361
338
  carrier_type_id: 1
362
339
  language_id: 1
363
- isbn: 0000000111
364
340
  updated_at: 2010-03-01 16:14:18 +09:00
365
341
  original_title: "すぐわかるPerl"
366
342
  price:
@@ -375,7 +351,6 @@ manifestation_00111:
375
351
  manifestation_00112:
376
352
  carrier_type_id: 1
377
353
  language_id: 1
378
- isbn: 0000000112
379
354
  updated_at: 2010-03-01 16:14:18 +09:00
380
355
  original_title: "CGIのための実践入門Perl : 対話的・動きのあるWebページを作ろう"
381
356
  price:
@@ -390,7 +365,6 @@ manifestation_00112:
390
365
  manifestation_00113:
391
366
  carrier_type_id: 1
392
367
  language_id: 1
393
- isbn: 0000000113
394
368
  updated_at: 2010-03-01 16:14:18 +09:00
395
369
  original_title: "プログラミングは難しくない! : ウェブではじめるJavaScript/Perl/Java"
396
370
  price:
@@ -405,13 +379,12 @@ manifestation_00113:
405
379
  manifestation_00114:
406
380
  carrier_type_id: 1
407
381
  language_id: 1
408
- isbn: 9784756137470
409
382
  updated_at: 2010-03-01 16:14:18 +09:00
410
383
  original_title: "Rubyを256倍使うための本. 魔道編"
411
384
  price:
412
385
  manifestation_identifier:
413
386
  depth:
414
- date_of_publication: 2001-03-20
387
+ pub_date: 2001-03-20
415
388
  access_address:
416
389
  id: 114
417
390
  height:
@@ -420,7 +393,6 @@ manifestation_00114:
420
393
  manifestation_00115:
421
394
  carrier_type_id: 1
422
395
  language_id: 1
423
- isbn: 0000000115
424
396
  updated_at: 2010-03-01 16:14:18 +09:00
425
397
  original_title: "入門Perl"
426
398
  price:
@@ -435,13 +407,12 @@ manifestation_00115:
435
407
  manifestation_00116:
436
408
  carrier_type_id: 1
437
409
  language_id: 1
438
- isbn: 9784756100917
439
410
  updated_at: 2010-03-01 16:14:18 +09:00
440
411
  original_title: "sed & awkプログラミング : UNIX power tools"
441
412
  price:
442
413
  manifestation_identifier:
443
414
  depth:
444
- date_of_publication: 1991-12-24
415
+ pub_date: 1991-12-24
445
416
  access_address:
446
417
  id: 116
447
418
  height:
@@ -450,7 +421,6 @@ manifestation_00116:
450
421
  manifestation_00117:
451
422
  carrier_type_id: 1
452
423
  language_id: 1
453
- isbn: 0000000117
454
424
  updated_at: 2010-03-01 16:14:18 +09:00
455
425
  original_title: "Perlの達人"
456
426
  price:
@@ -465,7 +435,6 @@ manifestation_00117:
465
435
  manifestation_00118:
466
436
  carrier_type_id: 1
467
437
  language_id: 1
468
- isbn: 0000000118
469
438
  updated_at: 2010-03-01 16:14:18 +09:00
470
439
  original_title: "ナチ強制・絶滅収容所 : 18施設内の生と死"
471
440
  price:
@@ -480,7 +449,6 @@ manifestation_00118:
480
449
  manifestation_00119:
481
450
  carrier_type_id: 1
482
451
  language_id: 1
483
- isbn: 0000000119
484
452
  updated_at: 2010-03-01 16:14:18 +09:00
485
453
  original_title: "Perl基礎講座"
486
454
  price:
@@ -495,13 +463,12 @@ manifestation_00119:
495
463
  manifestation_00120:
496
464
  carrier_type_id: 1
497
465
  language_id: 1
498
- isbn: 9784274063855
499
466
  updated_at: 2010-03-01 16:14:18 +09:00
500
467
  original_title: "Rubyプログラミング入門"
501
468
  price:
502
469
  manifestation_identifier:
503
470
  depth:
504
- date_of_publication: 2000-10-01
471
+ pub_date: 2000-10-01
505
472
  access_address:
506
473
  id: 120
507
474
  height:
@@ -510,7 +477,6 @@ manifestation_00120:
510
477
  manifestation_00121:
511
478
  carrier_type_id: 1
512
479
  language_id: 1
513
- isbn: 0000000121
514
480
  updated_at: 2010-03-01 16:14:18 +09:00
515
481
  original_title: "Django×Python"
516
482
  price:
@@ -525,7 +491,6 @@ manifestation_00121:
525
491
  manifestation_00122:
526
492
  carrier_type_id: 1
527
493
  language_id: 1
528
- isbn: 0000000122
529
494
  updated_at: 2010-03-01 16:14:18 +09:00
530
495
  original_title: "みんなのPython"
531
496
  price:
@@ -540,7 +505,6 @@ manifestation_00122:
540
505
  manifestation_00123:
541
506
  carrier_type_id: 1
542
507
  language_id: 1
543
- isbn: 0000000123
544
508
  updated_at: 2010-03-01 16:14:18 +09:00
545
509
  original_title: "Rubyでgroonga使って全文検索 - ラングバ"
546
510
  price:
@@ -555,7 +519,6 @@ manifestation_00123:
555
519
  manifestation_00124:
556
520
  carrier_type_id: 1
557
521
  language_id: 1
558
- isbn: 0000000124
559
522
  updated_at: 2010-03-01 16:14:18 +09:00
560
523
  original_title: "まちづくり三鷹図書館(Ruby図書館情報システム デモサイト)"
561
524
  price:
@@ -570,7 +533,6 @@ manifestation_00124:
570
533
  manifestation_00125:
571
534
  carrier_type_id: 1
572
535
  language_id: 1
573
- isbn: 0000000125
574
536
  updated_at: 2010-03-01 16:14:18 +09:00
575
537
  original_title: "Ruby on Rails入門 : 優しいRailsの育て方"
576
538
  price:
@@ -585,7 +547,6 @@ manifestation_00125:
585
547
  manifestation_00126:
586
548
  carrier_type_id: 1
587
549
  language_id: 1
588
- isbn: 0000000126
589
550
  updated_at: 2010-03-01 16:14:18 +09:00
590
551
  original_title: "Ruby Cookbook"
591
552
  price:
@@ -600,7 +561,6 @@ manifestation_00126:
600
561
  manifestation_00127:
601
562
  carrier_type_id: 1
602
563
  language_id: 1
603
- isbn: 0000000127
604
564
  updated_at: 2010-03-01 16:14:18 +09:00
605
565
  original_title: "CGI programming on the World Wide Web"
606
566
  price:
@@ -615,7 +575,6 @@ manifestation_00127:
615
575
  manifestation_00128:
616
576
  carrier_type_id: 1
617
577
  language_id: 1
618
- isbn: 0000000128
619
578
  updated_at: 2010-03-01 16:14:18 +09:00
620
579
  original_title: "Genomic Perl"
621
580
  price:
@@ -630,7 +589,6 @@ manifestation_00128:
630
589
  manifestation_00129:
631
590
  carrier_type_id: 1
632
591
  language_id: 1
633
- isbn: 0000000129
634
592
  updated_at: 2010-03-01 16:14:18 +09:00
635
593
  original_title: "Indians of the Pacific Northwest"
636
594
  price:
@@ -645,7 +603,6 @@ manifestation_00129:
645
603
  manifestation_00130:
646
604
  carrier_type_id: 1
647
605
  language_id: 1
648
- isbn: 0000000130
649
606
  updated_at: 2010-03-01 16:14:18 +09:00
650
607
  original_title: "Massachusetts acid rain monitoring project / Massachusetts acid rain monitoring project A.R.M"
651
608
  price:
@@ -660,7 +617,6 @@ manifestation_00130:
660
617
  manifestation_00131:
661
618
  carrier_type_id: 1
662
619
  language_id: 1
663
- isbn: 0000000131
664
620
  updated_at: 2010-03-01 16:14:18 +09:00
665
621
  original_title: "International Symposium Genes and Chromosomes Structure and Function"
666
622
  price:
@@ -675,7 +631,6 @@ manifestation_00131:
675
631
  manifestation_00132:
676
632
  carrier_type_id: 1
677
633
  language_id: 1
678
- isbn: 0000000132
679
634
  updated_at: 2010-03-01 16:14:18 +09:00
680
635
  original_title: "Perl black book, 2nd edition"
681
636
  price:
@@ -690,7 +645,6 @@ manifestation_00132:
690
645
  manifestation_00133:
691
646
  carrier_type_id: 1
692
647
  language_id: 1
693
- isbn: 0000000133
694
648
  updated_at: 2010-03-01 16:14:18 +09:00
695
649
  original_title: "Python scripting for computational science"
696
650
  price:
@@ -705,7 +659,6 @@ manifestation_00133:
705
659
  manifestation_00134:
706
660
  carrier_type_id: 1
707
661
  language_id: 1
708
- isbn: 0000000134
709
662
  updated_at: 2010-03-01 16:14:18 +09:00
710
663
  original_title: "Tests on a gold ore from the Ruby Basin, Black Hills"
711
664
  price:
@@ -720,7 +673,6 @@ manifestation_00134:
720
673
  manifestation_00135:
721
674
  carrier_type_id: 1
722
675
  language_id: 1
723
- isbn: 0000000135
724
676
  updated_at: 2010-03-01 16:14:18 +09:00
725
677
  original_title: "Official guide to programming with CGI.pm / Programming with CGI.pm / Official guide to programming with CGI.pm"
726
678
  price:
@@ -735,7 +687,6 @@ manifestation_00135:
735
687
  manifestation_00136:
736
688
  carrier_type_id: 1
737
689
  language_id: 1
738
- isbn: 0000000136
739
690
  updated_at: 2010-03-01 16:14:18 +09:00
740
691
  original_title: "Three little words [sound recording] / Nevertheless (I'm in love with you) / I love you so much / All alone Monday / Where did you get that girl? / Thinking of you / I wanna be loved by you / Who's sorry now? / My sunny Tennessee / So long Oolong / Three little words"
741
692
  price:
@@ -750,7 +701,6 @@ manifestation_00136:
750
701
  manifestation_00137:
751
702
  carrier_type_id: 1
752
703
  language_id: 1
753
- isbn: 0000000137
754
704
  updated_at: 2010-03-01 16:14:18 +09:00
755
705
  original_title: "Femtosecond time-resolved spectroscopy of organic molecular crystals / Time-resolved spectroscopy of organic molecular crystals, Femtosecond"
756
706
  price:
@@ -765,7 +715,6 @@ manifestation_00137:
765
715
  manifestation_00138:
766
716
  carrier_type_id: 1
767
717
  language_id: 1
768
- isbn: 0000000138
769
718
  updated_at: 2010-03-01 16:14:18 +09:00
770
719
  original_title: "CGI programming with Perl"
771
720
  price:
@@ -780,7 +729,6 @@ manifestation_00138:
780
729
  manifestation_00139:
781
730
  carrier_type_id: 1
782
731
  language_id: 1
783
- isbn: 0000000139
784
732
  updated_at: 2010-03-01 16:14:18 +09:00
785
733
  original_title: "Python and XML / Python & XML / XML processing with Python"
786
734
  price:
@@ -795,7 +743,6 @@ manifestation_00139:
795
743
  manifestation_00140:
796
744
  carrier_type_id: 1
797
745
  language_id: 1
798
- isbn: 0000000140
799
746
  updated_at: 2010-03-01 16:14:18 +09:00
800
747
  original_title: "Perl cookbook / Solutions and examples for Perl programmers"
801
748
  price:
@@ -810,7 +757,6 @@ manifestation_00140:
810
757
  manifestation_00141:
811
758
  carrier_type_id: 1
812
759
  language_id: 1
813
- isbn: 0000000141
814
760
  updated_at: 2010-03-01 16:14:18 +09:00
815
761
  original_title: "Mastering Perl/Tk / Perl/Tk"
816
762
  price:
@@ -825,7 +771,6 @@ manifestation_00141:
825
771
  manifestation_00142:
826
772
  carrier_type_id: 1
827
773
  language_id: 1
828
- isbn: 0000000142
829
774
  updated_at: 2010-03-01 16:14:18 +09:00
830
775
  original_title: "Mastering algorithms with Perl / Practical programming through computer science"
831
776
  price:
@@ -840,7 +785,6 @@ manifestation_00142:
840
785
  manifestation_00143:
841
786
  carrier_type_id: 1
842
787
  language_id: 1
843
- isbn: 0000000143
844
788
  updated_at: 2010-03-01 16:14:18 +09:00
845
789
  original_title: "Programming Perl"
846
790
  price:
@@ -855,7 +799,6 @@ manifestation_00143:
855
799
  manifestation_00144:
856
800
  carrier_type_id: 1
857
801
  language_id: 1
858
- isbn: 0000000144
859
802
  updated_at: 2010-03-01 16:14:18 +09:00
860
803
  original_title: "Fort Worth & Tarrant County / Fort Worth and Tarrant County"
861
804
  price:
@@ -870,7 +813,6 @@ manifestation_00144:
870
813
  manifestation_00145:
871
814
  carrier_type_id: 1
872
815
  language_id: 1
873
- isbn: 0000000145
874
816
  updated_at: 2010-03-01 16:14:18 +09:00
875
817
  original_title: "Monty Python's Spamalot [sound recording] / Spamalot / Spamalot / Monty Python and the Holy Grail (Motion picture)"
876
818
  price:
@@ -885,7 +827,6 @@ manifestation_00145:
885
827
  manifestation_00146:
886
828
  carrier_type_id: 1
887
829
  language_id: 1
888
- isbn: 0000000146
889
830
  updated_at: 2010-03-01 16:14:18 +09:00
890
831
  original_title: "AWK programming language"
891
832
  price:
@@ -900,7 +841,6 @@ manifestation_00146:
900
841
  manifestation_00147:
901
842
  carrier_type_id: 1
902
843
  language_id: 1
903
- isbn: 0000000147
904
844
  updated_at: 2010-03-01 16:14:18 +09:00
905
845
  original_title: "Toting the lead row"
906
846
  price:
@@ -915,7 +855,6 @@ manifestation_00147:
915
855
  manifestation_00148:
916
856
  carrier_type_id: 1
917
857
  language_id: 1
918
- isbn: 0000000148
919
858
  updated_at: 2010-03-01 16:14:18 +09:00
920
859
  original_title: "Afro-American blues and game songs"
921
860
  price:
@@ -930,7 +869,6 @@ manifestation_00148:
930
869
  manifestation_00149:
931
870
  carrier_type_id: 1
932
871
  language_id: 1
933
- isbn: 0000000149
934
872
  updated_at: 2010-03-01 16:14:18 +09:00
935
873
  original_title: "Perl/Tk pocket reference"
936
874
  price:
@@ -945,7 +883,6 @@ manifestation_00149:
945
883
  manifestation_00150:
946
884
  carrier_type_id: 1
947
885
  language_id: 1
948
- isbn: 0000000150
949
886
  updated_at: 2010-03-01 16:14:18 +09:00
950
887
  original_title: "politics of improving urban air quality"
951
888
  price:
@@ -960,7 +897,6 @@ manifestation_00150:
960
897
  manifestation_00151:
961
898
  carrier_type_id: 1
962
899
  language_id: 1
963
- isbn: 0000000151
964
900
  updated_at: 2010-03-01 16:14:18 +09:00
965
901
  original_title: "Perl developer's dictionary"
966
902
  price:
@@ -975,7 +911,6 @@ manifestation_00151:
975
911
  manifestation_00152:
976
912
  carrier_type_id: 1
977
913
  language_id: 1
978
- isbn: 0000000152
979
914
  updated_at: 2010-03-01 16:14:18 +09:00
980
915
  original_title: "Andrテδゥ Poitiers"
981
916
  price:
@@ -990,7 +925,6 @@ manifestation_00152:
990
925
  manifestation_00153:
991
926
  carrier_type_id: 1
992
927
  language_id: 1
993
- isbn: 0000000153
994
928
  updated_at: 2010-03-01 16:14:18 +09:00
995
929
  original_title: "PERL and CGI for the World Wide Web [electronic resource] / Visual QuickStart guide"
996
930
  price:
@@ -1005,7 +939,6 @@ manifestation_00153:
1005
939
  manifestation_00154:
1006
940
  carrier_type_id: 1
1007
941
  language_id: 1
1008
- isbn: 0000000154
1009
942
  updated_at: 2010-03-01 16:14:18 +09:00
1010
943
  original_title: "Python tutorial"
1011
944
  price:
@@ -1020,7 +953,6 @@ manifestation_00154:
1020
953
  manifestation_00155:
1021
954
  carrier_type_id: 1
1022
955
  language_id: 1
1023
- isbn: 0000000155
1024
956
  updated_at: 2010-03-01 16:14:18 +09:00
1025
957
  original_title: "Line shapes of paramagnetic resonances in ruby"
1026
958
  price:
@@ -1035,7 +967,6 @@ manifestation_00155:
1035
967
  manifestation_00156:
1036
968
  carrier_type_id: 1
1037
969
  language_id: 1
1038
- isbn: 0000000156
1039
970
  updated_at: 2010-03-01 16:14:18 +09:00
1040
971
  original_title: "Perl programmer's reference"
1041
972
  price:
@@ -1050,7 +981,6 @@ manifestation_00156:
1050
981
  manifestation_00157:
1051
982
  carrier_type_id: 1
1052
983
  language_id: 1
1053
- isbn: 0000000157
1054
984
  updated_at: 2010-03-01 16:14:18 +09:00
1055
985
  original_title: "Technological capabilities in developing countries"
1056
986
  price:
@@ -1065,7 +995,6 @@ manifestation_00157:
1065
995
  manifestation_00158:
1066
996
  carrier_type_id: 1
1067
997
  language_id: 1
1068
- isbn: 0000000158
1069
998
  updated_at: 2010-03-01 16:14:18 +09:00
1070
999
  original_title: "phenomena of vagueness"
1071
1000
  price:
@@ -1080,7 +1009,6 @@ manifestation_00158:
1080
1009
  manifestation_00159:
1081
1010
  carrier_type_id: 1
1082
1011
  language_id: 1
1083
- isbn: 0000000159
1084
1012
  updated_at: 2010-03-01 16:14:18 +09:00
1085
1013
  original_title: "theory of consumer's demand"
1086
1014
  price:
@@ -1095,7 +1023,6 @@ manifestation_00159:
1095
1023
  manifestation_00160:
1096
1024
  carrier_type_id: 1
1097
1025
  language_id: 1
1098
- isbn: 0000000160
1099
1026
  updated_at: 2010-03-01 16:14:18 +09:00
1100
1027
  original_title: "theory of consumer's demand"
1101
1028
  price:
@@ -1110,7 +1037,6 @@ manifestation_00160:
1110
1037
  manifestation_00161:
1111
1038
  carrier_type_id: 1
1112
1039
  language_id: 1
1113
- isbn: 0000000161
1114
1040
  updated_at: 2010-03-01 16:14:18 +09:00
1115
1041
  original_title: "Monty Python, Shakespeare, and English Renaissance drama"
1116
1042
  price:
@@ -1125,7 +1051,6 @@ manifestation_00161:
1125
1051
  manifestation_00162:
1126
1052
  carrier_type_id: 1
1127
1053
  language_id: 1
1128
- isbn: 0000000162
1129
1054
  updated_at: 2010-03-01 16:14:18 +09:00
1130
1055
  original_title: "Analyzing computer system performance with PERL::PDQ"
1131
1056
  price:
@@ -1140,7 +1065,6 @@ manifestation_00162:
1140
1065
  manifestation_00163:
1141
1066
  carrier_type_id: 1
1142
1067
  language_id: 1
1143
- isbn: 0000000163
1144
1068
  updated_at: 2010-03-01 16:14:18 +09:00
1145
1069
  original_title: "equilibrium of the reaction between the manganate, permanganate, and hydroxide of potassium, and manganese dioxide"
1146
1070
  price:
@@ -1155,7 +1079,6 @@ manifestation_00163:
1155
1079
  manifestation_00164:
1156
1080
  carrier_type_id: 1
1157
1081
  language_id: 1
1158
- isbn: 0000000164
1159
1082
  updated_at: 2010-03-01 16:14:18 +09:00
1160
1083
  original_title: "Stimulated optical emission in ruby"
1161
1084
  price:
@@ -1170,7 +1093,6 @@ manifestation_00164:
1170
1093
  manifestation_00165:
1171
1094
  carrier_type_id: 1
1172
1095
  language_id: 1
1173
- isbn: 0000000165
1174
1096
  updated_at: 2010-03-01 16:14:18 +09:00
1175
1097
  original_title: "Strategic planning and risk analysis"
1176
1098
  price:
@@ -1185,7 +1107,6 @@ manifestation_00165:
1185
1107
  manifestation_00166:
1186
1108
  carrier_type_id: 1
1187
1109
  language_id: 1
1188
- isbn: 0000000166
1189
1110
  updated_at: 2010-03-01 16:14:18 +09:00
1190
1111
  original_title: "Performance assertion checking"
1191
1112
  price:
@@ -1200,7 +1121,6 @@ manifestation_00166:
1200
1121
  manifestation_00167:
1201
1122
  carrier_type_id: 1
1202
1123
  language_id: 1
1203
- isbn: 0000000167
1204
1124
  updated_at: 2010-03-01 16:14:18 +09:00
1205
1125
  original_title: "Spin-lattice relaxation time of ruby"
1206
1126
  price:
@@ -1215,7 +1135,6 @@ manifestation_00167:
1215
1135
  manifestation_00168:
1216
1136
  carrier_type_id: 1
1217
1137
  language_id: 1
1218
- isbn: 0000000168
1219
1138
  updated_at: 2010-03-01 16:14:18 +09:00
1220
1139
  original_title: "Mourning Ruby"
1221
1140
  price:
@@ -1230,7 +1149,6 @@ manifestation_00168:
1230
1149
  manifestation_00169:
1231
1150
  carrier_type_id: 1
1232
1151
  language_id: 1
1233
- isbn: 0000000169
1234
1152
  updated_at: 2010-03-01 16:14:18 +09:00
1235
1153
  original_title: "statistical analysis of banking performance in the Eastern Caribbean Currency Union in the 1990s"
1236
1154
  price:
@@ -1245,7 +1163,6 @@ manifestation_00169:
1245
1163
  manifestation_00170:
1246
1164
  carrier_type_id: 1
1247
1165
  language_id: 1
1248
- isbn: 0000000170
1249
1166
  updated_at: 2010-03-01 16:14:18 +09:00
1250
1167
  original_title: "Professional Perl programming / Perl programming"
1251
1168
  price:
@@ -1260,7 +1177,6 @@ manifestation_00170:
1260
1177
  manifestation_00171:
1261
1178
  carrier_type_id: 1
1262
1179
  language_id: 1
1263
- isbn: 0000000171
1264
1180
  updated_at: 2010-03-01 16:14:18 +09:00
1265
1181
  original_title: "Perl in a nutshell"
1266
1182
  price:
@@ -1275,7 +1191,6 @@ manifestation_00171:
1275
1191
  manifestation_00172:
1276
1192
  carrier_type_id: 1
1277
1193
  language_id: 1
1278
- isbn: 0000000172
1279
1194
  updated_at: 2010-03-01 16:14:18 +09:00
1280
1195
  original_title: "Programming Web services with Perl"
1281
1196
  price:
@@ -1290,7 +1205,6 @@ manifestation_00172:
1290
1205
  manifestation_00173:
1291
1206
  carrier_type_id: 1
1292
1207
  language_id: 1
1293
- isbn: 0000000173
1294
1208
  updated_at: 2010-03-01 16:14:18 +09:00
1295
1209
  original_title: "Proceedings of the Trieste Workshop on the search for New Elementary Particles / International journal of modern physics / Search for new elementary particles"
1296
1210
  price:
@@ -1305,7 +1219,6 @@ manifestation_00173:
1305
1219
  manifestation_00174:
1306
1220
  carrier_type_id: 1
1307
1221
  language_id: 1
1308
- isbn: 0000000174
1309
1222
  updated_at: 2010-03-01 16:14:18 +09:00
1310
1223
  original_title: "Europeras 3 & 4 / Europera"
1311
1224
  price:
@@ -1320,7 +1233,6 @@ manifestation_00174:
1320
1233
  manifestation_00175:
1321
1234
  carrier_type_id: 1
1322
1235
  language_id: 1
1323
- isbn: 0000000175
1324
1236
  updated_at: 2010-03-01 16:14:18 +09:00
1325
1237
  original_title: "Retreats from realism in recent English drama"
1326
1238
  price:
@@ -1335,7 +1247,6 @@ manifestation_00175:
1335
1247
  manifestation_00176:
1336
1248
  carrier_type_id: 1
1337
1249
  language_id: 1
1338
- isbn: 0000000176
1339
1250
  updated_at: 2010-03-01 16:14:18 +09:00
1340
1251
  original_title: "Python programming patterns"
1341
1252
  price:
@@ -1350,7 +1261,6 @@ manifestation_00176:
1350
1261
  manifestation_00177:
1351
1262
  carrier_type_id: 1
1352
1263
  language_id: 1
1353
- isbn: 0000000177
1354
1264
  updated_at: 2010-03-01 16:14:18 +09:00
1355
1265
  original_title: "Beginning Perl for bioinformatics"
1356
1266
  price:
@@ -1365,7 +1275,6 @@ manifestation_00177:
1365
1275
  manifestation_00178:
1366
1276
  carrier_type_id: 1
1367
1277
  language_id: 1
1368
- isbn: 0000000178
1369
1278
  updated_at: 2010-03-01 16:14:18 +09:00
1370
1279
  original_title: "Learning Perl"
1371
1280
  price:
@@ -1380,7 +1289,6 @@ manifestation_00178:
1380
1289
  manifestation_00179:
1381
1290
  carrier_type_id: 1
1382
1291
  language_id: 1
1383
- isbn: 0000000179
1384
1292
  updated_at: 2010-03-01 16:14:18 +09:00
1385
1293
  original_title: "Effective awk programming"
1386
1294
  price:
@@ -1395,7 +1303,6 @@ manifestation_00179:
1395
1303
  manifestation_00180:
1396
1304
  carrier_type_id: 1
1397
1305
  language_id: 1
1398
- isbn: 0000000180
1399
1306
  updated_at: 2010-03-01 16:14:18 +09:00
1400
1307
  original_title: "Python standard library / Annotated reference for Python 2.0"
1401
1308
  price:
@@ -1410,7 +1317,6 @@ manifestation_00180:
1410
1317
  manifestation_00181:
1411
1318
  carrier_type_id: 1
1412
1319
  language_id: 1
1413
- isbn: 0000000181
1414
1320
  updated_at: 2010-03-01 16:14:18 +09:00
1415
1321
  original_title: "Programming Python"
1416
1322
  price:
@@ -1425,7 +1331,6 @@ manifestation_00181:
1425
1331
  manifestation_00182:
1426
1332
  carrier_type_id: 1
1427
1333
  language_id: 1
1428
- isbn: 0000000182
1429
1334
  updated_at: 2010-03-01 16:14:18 +09:00
1430
1335
  original_title: "Perl CD bookshelf"
1431
1336
  price:
@@ -1440,7 +1345,6 @@ manifestation_00182:
1440
1345
  manifestation_00183:
1441
1346
  carrier_type_id: 1
1442
1347
  language_id: 1
1443
- isbn: 0000000183
1444
1348
  updated_at: 2010-03-01 16:14:18 +09:00
1445
1349
  original_title: "Programming Perl"
1446
1350
  price:
@@ -1455,7 +1359,6 @@ manifestation_00183:
1455
1359
  manifestation_00184:
1456
1360
  carrier_type_id: 1
1457
1361
  language_id: 1
1458
- isbn: 0000000184
1459
1362
  updated_at: 2010-03-01 16:14:18 +09:00
1460
1363
  original_title: "Sed & awk pocket reference / Sed and awk pocket reference"
1461
1364
  price:
@@ -1470,7 +1373,6 @@ manifestation_00184:
1470
1373
  manifestation_00185:
1471
1374
  carrier_type_id: 1
1472
1375
  language_id: 1
1473
- isbn: 0000000185
1474
1376
  updated_at: 2010-03-01 16:14:18 +09:00
1475
1377
  original_title: "Perl power!"
1476
1378
  price:
@@ -1485,7 +1387,6 @@ manifestation_00185:
1485
1387
  manifestation_00186:
1486
1388
  carrier_type_id: 1
1487
1389
  language_id: 1
1488
- isbn: 0000000186
1489
1390
  updated_at: 2010-03-01 16:14:18 +09:00
1490
1391
  original_title: "ATOKダイレクト API for Perl / Ruby?|?さらに使いこなす?|?ATOK.com"
1491
1392
  price:
@@ -1500,7 +1401,6 @@ manifestation_00186:
1500
1401
  manifestation_00187:
1501
1402
  carrier_type_id: 1
1502
1403
  language_id: 1
1503
- isbn: 0000000187
1504
1404
  updated_at: 2010-03-01 16:14:18 +09:00
1505
1405
  original_title: "Welcome ― Ruby Enterprise Edition"
1506
1406
  price:
@@ -1515,7 +1415,6 @@ manifestation_00187:
1515
1415
  manifestation_00188:
1516
1416
  carrier_type_id: 1
1517
1417
  language_id: 1
1518
- isbn: 0000000188
1519
1418
  updated_at: 2010-03-01 16:14:18 +09:00
1520
1419
  original_title: "Pythonクックブック"
1521
1420
  price:
@@ -1530,7 +1429,6 @@ manifestation_00188:
1530
1429
  manifestation_00189:
1531
1430
  carrier_type_id: 1
1532
1431
  language_id: 1
1533
- isbn: 0000000189
1534
1432
  updated_at: 2010-03-01 16:14:18 +09:00
1535
1433
  original_title: "みんなのPython インデントの世界へようこそ! object oriented-lightweight language Python"
1536
1434
  price:
@@ -1545,7 +1443,6 @@ manifestation_00189:
1545
1443
  manifestation_00190:
1546
1444
  carrier_type_id: 1
1547
1445
  language_id: 1
1548
- isbn: 0000000190
1549
1446
  updated_at: 2010-03-01 16:14:18 +09:00
1550
1447
  original_title: "Django | The Web framework for perfectionists with deadlines"
1551
1448
  price:
@@ -1560,7 +1457,6 @@ manifestation_00190:
1560
1457
  manifestation_00191:
1561
1458
  carrier_type_id: 1
1562
1459
  language_id: 1
1563
- isbn: 0000000191
1564
1460
  updated_at: 2010-03-01 16:14:18 +09:00
1565
1461
  original_title: "fac-back-opac - Google Code"
1566
1462
  price:
@@ -1575,13 +1471,12 @@ manifestation_00191:
1575
1471
  manifestation_00192:
1576
1472
  carrier_type_id: 1
1577
1473
  language_id: 1
1578
- isbn: 9784873113241
1579
1474
  updated_at: 2010-03-01 16:14:18 +09:00
1580
1475
  original_title: "Rubyクックブック"
1581
1476
  price:
1582
1477
  manifestation_identifier:
1583
1478
  depth:
1584
- date_of_publication: 2007-04-27
1479
+ pub_date: 2007-04-27
1585
1480
  access_address:
1586
1481
  id: 192
1587
1482
  height:
@@ -1590,14 +1485,12 @@ manifestation_00192:
1590
1485
  manifestation_00193:
1591
1486
  carrier_type_id: 1
1592
1487
  language_id: 1
1593
- isbn: 9784797340044
1594
- isbn10: 4797340045
1595
1488
  updated_at: 2010-03-01 16:14:18 +09:00
1596
1489
  original_title: "Rubyレシピブック"
1597
1490
  price:
1598
1491
  manifestation_identifier:
1599
1492
  depth:
1600
- date_of_publication: 2007-02-01
1493
+ pub_date: 2007-02-01
1601
1494
  access_address:
1602
1495
  id: 193
1603
1496
  height:
@@ -1606,7 +1499,6 @@ manifestation_00193:
1606
1499
  manifestation_00194:
1607
1500
  carrier_type_id: 1
1608
1501
  language_id: 1
1609
- isbn: 0000000194
1610
1502
  updated_at: 2010-03-01 16:14:18 +09:00
1611
1503
  original_title: "初めてのPerl 第3版"
1612
1504
  price:
@@ -1621,7 +1513,6 @@ manifestation_00194:
1621
1513
  manifestation_00195:
1622
1514
  carrier_type_id: 1
1623
1515
  language_id: 1
1624
- isbn: 0000000195
1625
1516
  updated_at: 2010-03-01 16:14:18 +09:00
1626
1517
  original_title: "続・初めてのPerl 改訂版"
1627
1518
  price:
@@ -1636,13 +1527,12 @@ manifestation_00195:
1636
1527
  manifestation_00196:
1637
1528
  carrier_type_id: 1
1638
1529
  language_id: 1
1639
- isbn: 9784797336610
1640
1530
  updated_at: 2010-03-01 16:14:18 +09:00
1641
1531
  original_title: "たのしいRuby 第2版 Rubyではじめる気軽なプログラミング"
1642
1532
  price:
1643
1533
  manifestation_identifier:
1644
1534
  depth:
1645
- date_of_publication: 2006-08-05
1535
+ pub_date: 2006-08-05
1646
1536
  access_address:
1647
1537
  id: 196
1648
1538
  height:
@@ -1651,7 +1541,6 @@ manifestation_00196:
1651
1541
  manifestation_00197:
1652
1542
  carrier_type_id: 1
1653
1543
  language_id: 1
1654
- isbn:
1655
1544
  updated_at: 2010-03-15 16:14:18 +09:00
1656
1545
  original_title: "Ruby"
1657
1546
  price:
@@ -1666,7 +1555,6 @@ manifestation_00197:
1666
1555
  manifestation_00198:
1667
1556
  carrier_type_id: 1
1668
1557
  language_id: 1
1669
- isbn:
1670
1558
  updated_at: 2010-03-15 16:14:18 +09:00
1671
1559
  original_title: "紅玉の本"
1672
1560
  price:
@@ -1681,9 +1569,8 @@ manifestation_00198:
1681
1569
  manifestation_00201:
1682
1570
  carrier_type_id: 1
1683
1571
  language_id: 1
1684
- isbn: 9876543210201
1685
1572
  updated_at: 2010-03-01 16:14:18 +09:00
1686
- original_title: "テスト雑誌1月号"
1573
+ original_title: "テスト雑誌2005年1月号"
1687
1574
  price:
1688
1575
  manifestation_identifier:
1689
1576
  depth:
@@ -1694,11 +1581,10 @@ manifestation_00201:
1694
1581
  width:
1695
1582
  created_at: 2007-11-19 17:55:41 UTC
1696
1583
  frequency_id: 3
1697
- issn: 12345678
1584
+ periodical: true
1698
1585
  manifestation_00202:
1699
1586
  carrier_type_id: 1
1700
1587
  language_id: 1
1701
- isbn: 9876543210202
1702
1588
  updated_at: 2010-03-01 16:14:18 +09:00
1703
1589
  original_title: "テスト雑誌2月号"
1704
1590
  price:
@@ -1711,13 +1597,15 @@ manifestation_00202:
1711
1597
  width:
1712
1598
  created_at: 2007-11-19 17:55:41 UTC
1713
1599
  frequency_id: 3
1714
- issn: 12345678
1600
+ serial_number: 2
1601
+ volume_number: 1
1602
+ issue_number: 2
1603
+ periodical: true
1715
1604
  manifestation_00203:
1716
1605
  carrier_type_id: 1
1717
1606
  language_id: 1
1718
- isbn: 9876543210203
1719
1607
  updated_at: 2010-03-01 16:14:18 +09:00
1720
- original_title: "テスト単行本記事"
1608
+ original_title: "テスト単行本記事2005"
1721
1609
  price:
1722
1610
  manifestation_identifier:
1723
1611
  depth:
@@ -1728,12 +1616,12 @@ manifestation_00203:
1728
1616
  width:
1729
1617
  created_at: 2010-03-03 17:00:00 UTC
1730
1618
  frequency_id: 1
1619
+ periodical: false
1731
1620
  manifestation_00204:
1732
1621
  carrier_type_id: 1
1733
1622
  language_id: 1
1734
- isbn: 5555567890001
1735
1623
  updated_at: 2010-03-03 20:00:00 +09:00
1736
- original_title: "テスト雑誌1月号の記事1"
1624
+ original_title: "テスト雑誌1月号の記事1 2005"
1737
1625
  price:
1738
1626
  manifestation_identifier:
1739
1627
  depth:
@@ -1743,16 +1631,16 @@ manifestation_00204:
1743
1631
  height:
1744
1632
  width:
1745
1633
  created_at: 2010-03-03 20:00:00 UTC
1634
+ periodical: true
1746
1635
  manifestation_00205:
1747
1636
  carrier_type_id: 1
1748
1637
  language_id: 1
1749
- isbn: 5555567890002
1750
1638
  updated_at: 2010-03-03 20:00:00 +09:00
1751
1639
  original_title: "テスト雑誌1月号の記事2"
1752
1640
  price:
1753
1641
  manifestation_identifier:
1754
1642
  depth:
1755
- date_of_publication:
1643
+ date_of_publication: 2000-01-01 00:00:00 +09:00
1756
1644
  access_address:
1757
1645
  id: 205
1758
1646
  height:
@@ -1761,13 +1649,12 @@ manifestation_00205:
1761
1649
  manifestation_00206:
1762
1650
  carrier_type_id: 1
1763
1651
  language_id: 1
1764
- isbn: 5555567890003
1765
1652
  updated_at: 2010-03-03 20:00:00 +09:00
1766
1653
  original_title: "テスト雑誌2月号の記事1"
1767
1654
  price:
1768
1655
  manifestation_identifier:
1769
1656
  depth:
1770
- date_of_publication:
1657
+ date_of_publication: 2010-01-01 00:00:00 +09:00
1771
1658
  access_address:
1772
1659
  id: 206
1773
1660
  height:
@@ -1776,7 +1663,6 @@ manifestation_00206:
1776
1663
  manifestation_00207:
1777
1664
  carrier_type_id: 1
1778
1665
  language_id: 1
1779
- isbn: 9876543210207
1780
1666
  updated_at: 2010-03-03 20:00:00 +09:00
1781
1667
  original_title: "試験単行本"
1782
1668
  price:
@@ -1791,7 +1677,6 @@ manifestation_00207:
1791
1677
  manifestation_00208:
1792
1678
  carrier_type_id: 1
1793
1679
  language_id: 1
1794
- isbn:
1795
1680
  updated_at: 2010-03-16 11:00:00 +09:00
1796
1681
  original_title: "ある出版物"
1797
1682
  price:
@@ -1806,7 +1691,6 @@ manifestation_00208:
1806
1691
  manifestation_00209:
1807
1692
  carrier_type_id: 1
1808
1693
  language_id: 1
1809
- isbn:
1810
1694
  updated_at: 2010-03-19 13:00:00 +09:00
1811
1695
  original_title: "権限確認Admin専用1"
1812
1696
  price:
@@ -1822,7 +1706,6 @@ manifestation_00209:
1822
1706
  manifestation_00210:
1823
1707
  carrier_type_id: 1
1824
1708
  language_id: 1
1825
- isbn:
1826
1709
  updated_at: 2010-03-19 13:00:00 +09:00
1827
1710
  original_title: "権限確認Admin専用2"
1828
1711
  price:
@@ -1839,7 +1722,6 @@ manifestation_00210:
1839
1722
  manifestation_00211:
1840
1723
  carrier_type_id: 1
1841
1724
  language_id: 1
1842
- isbn:
1843
1725
  updated_at: 2010-03-19 13:00:00 +09:00
1844
1726
  original_title: "権限確認Librarian以上用1"
1845
1727
  price:
@@ -1856,7 +1738,6 @@ manifestation_00211:
1856
1738
  manifestation_00212:
1857
1739
  carrier_type_id: 1
1858
1740
  language_id: 1
1859
- isbn:
1860
1741
  updated_at: 2010-03-19 13:00:00 +09:00
1861
1742
  original_title: "権限確認Librarian以上用2"
1862
1743
  price:
@@ -1873,7 +1754,6 @@ manifestation_00212:
1873
1754
  manifestation_00213:
1874
1755
  carrier_type_id: 1
1875
1756
  language_id: 1
1876
- isbn:
1877
1757
  updated_at: 2010-03-19 13:00:00 +09:00
1878
1758
  original_title: "権限確認User以上用1"
1879
1759
  price:
@@ -1890,7 +1770,6 @@ manifestation_00213:
1890
1770
  manifestation_00214:
1891
1771
  carrier_type_id: 1
1892
1772
  language_id: 1
1893
- isbn:
1894
1773
  updated_at: 2010-03-19 13:00:00 +09:00
1895
1774
  original_title: "権限確認User以上用2"
1896
1775
  price:
@@ -1907,7 +1786,6 @@ manifestation_00214:
1907
1786
  manifestation_00215:
1908
1787
  carrier_type_id: 1
1909
1788
  language_id: 1
1910
- isbn:
1911
1789
  updated_at: 2010-03-19 13:00:00 +09:00
1912
1790
  original_title: "権限確認"
1913
1791
  price:
@@ -1924,7 +1802,6 @@ manifestation_00215:
1924
1802
  manifestation_00216:
1925
1803
  carrier_type_id: 1
1926
1804
  language_id: 1
1927
- isbn:
1928
1805
  updated_at: 2010-03-19 13:00:00 +09:00
1929
1806
  original_title: "権限確認"
1930
1807
  price:
@@ -1939,44 +1816,30 @@ manifestation_00216:
1939
1816
  required_role_id: 1
1940
1817
  repository_content: false
1941
1818
 
1942
-
1943
-
1944
-
1945
-
1946
-
1947
-
1948
-
1949
1819
  # == Schema Information
1950
1820
  #
1951
1821
  # Table name: manifestations
1952
1822
  #
1953
- # id :integer not null, primary key
1954
- # original_title :text not null
1823
+ # id :integer not null, primary key
1824
+ # original_title :text not null
1955
1825
  # title_alternative :text
1956
1826
  # title_transcription :text
1957
1827
  # classification_number :string(255)
1958
1828
  # manifestation_identifier :string(255)
1959
1829
  # date_of_publication :datetime
1960
1830
  # date_copyrighted :datetime
1961
- # created_at :datetime
1962
- # updated_at :datetime
1831
+ # created_at :datetime not null
1832
+ # updated_at :datetime not null
1963
1833
  # deleted_at :datetime
1964
1834
  # access_address :string(255)
1965
- # language_id :integer default(1), not null
1966
- # carrier_type_id :integer default(1), not null
1967
- # extent_id :integer default(1), not null
1835
+ # language_id :integer default(1), not null
1836
+ # carrier_type_id :integer default(1), not null
1837
+ # extent_id :integer default(1), not null
1968
1838
  # start_page :integer
1969
1839
  # end_page :integer
1970
- # height :decimal(, )
1971
- # width :decimal(, )
1972
- # depth :decimal(, )
1973
- # isbn :string(255)
1974
- # isbn10 :string(255)
1975
- # wrong_isbn :string(255)
1976
- # nbn :string(255)
1977
- # lccn :string(255)
1978
- # oclc_number :string(255)
1979
- # issn :string(255)
1840
+ # height :integer
1841
+ # width :integer
1842
+ # depth :integer
1980
1843
  # price :integer
1981
1844
  # fulltext :text
1982
1845
  # volume_number_string :string(255)
@@ -1984,15 +1847,12 @@ manifestation_00216:
1984
1847
  # serial_number_string :string(255)
1985
1848
  # edition :integer
1986
1849
  # note :text
1987
- # repository_content :boolean default(FALSE), not null
1988
- # lock_version :integer default(0), not null
1989
- # required_role_id :integer default(1), not null
1990
- # state :string(255)
1991
- # required_score :integer default(0), not null
1992
- # frequency_id :integer default(1), not null
1993
- # subscription_master :boolean default(FALSE), not null
1994
- # ipaper_id :integer
1995
- # ipaper_access_key :string(255)
1850
+ # repository_content :boolean default(FALSE), not null
1851
+ # lock_version :integer default(0), not null
1852
+ # required_role_id :integer default(1), not null
1853
+ # required_score :integer default(0), not null
1854
+ # frequency_id :integer default(1), not null
1855
+ # subscription_master :boolean default(FALSE), not null
1996
1856
  # attachment_file_name :string(255)
1997
1857
  # attachment_content_type :string(255)
1998
1858
  # attachment_file_size :integer
@@ -2005,13 +1865,17 @@ manifestation_00216:
2005
1865
  # date_submitted :datetime
2006
1866
  # date_accepted :datetime
2007
1867
  # date_caputured :datetime
2008
- # ndl_bib_id :string(255)
2009
- # file_hash :string(255)
2010
1868
  # pub_date :string(255)
2011
1869
  # edition_string :string(255)
2012
1870
  # volume_number :integer
2013
1871
  # issue_number :integer
2014
1872
  # serial_number :integer
2015
- # ndc :string(255)
1873
+ # content_type_id :integer default(1)
1874
+ # year_of_publication :integer
1875
+ # attachment_meta :text
1876
+ # month_of_publication :integer
1877
+ # fulltext_content :boolean
1878
+ # doi :string(255)
1879
+ # periodical :boolean
1880
+ # statement_of_responsibility :text
2016
1881
  #
2017
-