enju_biblio 0.1.0.pre37 → 0.1.0.pre38
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/app/assets/javascripts/addresses.js +2 -0
- data/app/assets/javascripts/identifier_types.js +2 -0
- data/app/assets/javascripts/identifiers.js +2 -0
- data/app/assets/stylesheets/addresses.css +4 -0
- data/app/assets/stylesheets/identifier_types.css +4 -0
- data/app/assets/stylesheets/identifiers.css +4 -0
- data/app/controllers/addresses_controller.rb +2 -0
- data/app/controllers/carrier_types_controller.rb +85 -5
- data/app/controllers/identifier_types_controller.rb +84 -0
- data/app/controllers/identifiers_controller.rb +14 -0
- data/app/controllers/manifestations_controller.rb +14 -21
- data/app/helpers/addresses_helper.rb +2 -0
- data/app/helpers/identifier_types_helper.rb +2 -0
- data/app/helpers/identifiers_helper.rb +2 -0
- data/app/models/carrier_type.rb +2 -0
- data/app/models/enju_biblio/ability.rb +12 -0
- data/app/models/identifier.rb +65 -0
- data/app/models/identifier_type.rb +21 -0
- data/app/models/import_request.rb +1 -0
- data/app/models/manifestation.rb +28 -87
- data/app/models/page_sweeper.rb +0 -2
- data/app/models/resource_import_file.rb +34 -18
- data/app/views/addresses/_form.html.erb +57 -0
- data/app/views/addresses/edit.html.erb +6 -0
- data/app/views/addresses/index.html.erb +41 -0
- data/app/views/addresses/new.html.erb +5 -0
- data/app/views/addresses/show.html.erb +55 -0
- data/app/views/carrier_types/_form.html.erb +4 -1
- data/app/views/carrier_types/index.html.erb +1 -1
- data/app/views/identifier_types/_form.html.erb +22 -0
- data/app/views/identifier_types/edit.html.erb +13 -0
- data/app/views/identifier_types/index.html.erb +45 -0
- data/app/views/identifier_types/new.html.erb +12 -0
- data/app/views/identifier_types/show.html.erb +24 -0
- data/app/views/identifiers/_form.html.erb +30 -0
- data/app/views/identifiers/edit.html.erb +15 -0
- data/app/views/identifiers/index.html.erb +33 -0
- data/app/views/identifiers/new.html.erb +14 -0
- data/app/views/identifiers/show.html.erb +29 -0
- data/app/views/items/index.csv.erb +1 -1
- data/app/views/items/index.html.erb +2 -1
- data/app/views/manifestations/_form.html.erb +17 -36
- data/app/views/manifestations/_show.mods.builder +6 -2
- data/app/views/manifestations/_show.rdf.builder +7 -6
- data/app/views/manifestations/_show_detail_librarian.html.erb +5 -15
- data/app/views/manifestations/_show_detail_user.html.erb +5 -15
- data/app/views/manifestations/_show_index.html.erb +1 -1
- data/app/views/manifestations/index.csv.erb +1 -1
- data/app/views/manifestations/index.rss.builder +3 -1
- data/app/views/manifestations/show.mobile.erb +1 -1
- data/config/locales/translation_en.yml +14 -7
- data/config/locales/translation_ja.yml +15 -8
- data/config/routes.rb +6 -8
- data/db/migrate/005_create_manifestations.rb +0 -12
- data/db/migrate/20130506175303_create_identifier_types.rb +12 -0
- data/db/migrate/20130506175834_create_identifiers.rb +14 -0
- data/lib/enju_biblio/version.rb +1 -1
- data/lib/generators/enju_biblio/setup/templates/db/fixtures/identifier_types.yml +27 -0
- data/spec/controllers/identifier_types_controller_spec.rb +167 -0
- data/spec/controllers/identifiers_controller_spec.rb +446 -0
- data/spec/controllers/import_requests_controller_spec.rb +1 -1
- data/spec/controllers/manifestations_controller_spec.rb +12 -10
- data/spec/dummy/app/models/ability.rb +12 -0
- data/spec/dummy/db/development.sqlite3 +0 -0
- data/spec/dummy/db/migrate/20130504195916_add_subject_heading_type_id_to_subject.rb +5 -0
- data/spec/dummy/db/schema.rb +26 -16
- data/spec/dummy/db/test.sqlite3 +0 -0
- data/spec/dummy/solr/data/test/index/segments.gen +0 -0
- data/spec/dummy/solr/data/test/index/segments_myc +0 -0
- data/spec/dummy/tmp/cache/4AD/470/country_all +0 -0
- data/spec/factories/identifier.rb +6 -0
- data/spec/factories/identifier_type.rb +5 -0
- data/spec/fixtures/identifier_types.yml +29 -0
- data/spec/fixtures/identifiers.yml +113 -0
- data/spec/fixtures/manifestations.yml +0 -137
- data/spec/fixtures/subject_heading_types.yml +39 -0
- data/spec/fixtures/subject_types.yml +4 -4
- data/spec/models/identifier_spec.rb +22 -0
- data/spec/models/identifier_type_spec.rb +21 -0
- data/spec/models/manifestation_spec.rb +0 -11
- data/spec/models/resource_import_file_spec.rb +7 -7
- data/spec/routing/manifestations_routing_spec.rb +1 -1
- metadata +66 -16
- data/app/views/manifestations/_show_periodical_master.html.erb +0 -23
- data/app/views/manifestations/_show_series_statement.html.erb +0 -30
- data/spec/dummy/solr/data/test/index/segments_l8s +0 -0
@@ -149,6 +149,18 @@ describe ManifestationsController do
|
|
149
149
|
response.should be_success
|
150
150
|
response.should render_template("manifestations/_tag_cloud")
|
151
151
|
end
|
152
|
+
|
153
|
+
it "should show manifestation with isbn", :solr => true do
|
154
|
+
get :index, :isbn => "4798002062"
|
155
|
+
response.should be_success
|
156
|
+
assigns(:manifestations).count.should eq 1
|
157
|
+
end
|
158
|
+
|
159
|
+
it "should not show missing manifestation with isbn", :solr => true do
|
160
|
+
get :index, :isbn => "47980020620"
|
161
|
+
response.should be_success
|
162
|
+
assigns(:manifestations).should be_empty
|
163
|
+
end
|
152
164
|
end
|
153
165
|
end
|
154
166
|
|
@@ -214,16 +226,6 @@ describe ManifestationsController do
|
|
214
226
|
response.should render_template("manifestations/show")
|
215
227
|
end
|
216
228
|
|
217
|
-
it "should show_manifestation with isbn" do
|
218
|
-
get :show, :isbn => "4798002062"
|
219
|
-
response.should redirect_to manifestation_url(assigns(:manifestation))
|
220
|
-
end
|
221
|
-
|
222
|
-
it "should not show missing manifestation with isbn" do
|
223
|
-
get :show, :isbn => "47980020620"
|
224
|
-
response.should be_missing
|
225
|
-
end
|
226
|
-
|
227
229
|
it "should show manifestation with holding" do
|
228
230
|
get :show, :id => 1, :mode => 'holding'
|
229
231
|
response.should be_success
|
@@ -9,6 +9,10 @@
|
|
9
9
|
can [:destroy, :delete], CarrierType do |carrier_type|
|
10
10
|
true unless carrier_type.manifestations.exists?
|
11
11
|
end if LibraryGroup.site_config.network_access_allowed?(ip_address)
|
12
|
+
can [:read, :create, :update], IdentifierType
|
13
|
+
can [:destroy, :delete], IdentifierType do |identifier_type|
|
14
|
+
true unless identifier_type.identifiers.exists?
|
15
|
+
end if LibraryGroup.site_config.network_access_allowed?(ip_address)
|
12
16
|
can [:read, :create, :update], Item
|
13
17
|
can [:destroy, :delete], Item do |item|
|
14
18
|
item.removable?
|
@@ -22,6 +26,7 @@
|
|
22
26
|
CreateType,
|
23
27
|
Donate,
|
24
28
|
Exemplify,
|
29
|
+
Identifier,
|
25
30
|
ImportRequest,
|
26
31
|
ManifestationRelationship,
|
27
32
|
ManifestationRelationshipType,
|
@@ -58,6 +63,7 @@
|
|
58
63
|
Extent,
|
59
64
|
Frequency,
|
60
65
|
FormOfWork,
|
66
|
+
IdentifierType,
|
61
67
|
Language,
|
62
68
|
License,
|
63
69
|
MediumOfPerformance,
|
@@ -85,6 +91,7 @@
|
|
85
91
|
Create,
|
86
92
|
Donate,
|
87
93
|
Exemplify,
|
94
|
+
Identifier,
|
88
95
|
ImportRequest,
|
89
96
|
ManifestationRelationship,
|
90
97
|
Own,
|
@@ -103,6 +110,7 @@
|
|
103
110
|
Extent,
|
104
111
|
Frequency,
|
105
112
|
FormOfWork,
|
113
|
+
IdentifierType,
|
106
114
|
Language,
|
107
115
|
License,
|
108
116
|
ManifestationRelationshipType,
|
@@ -148,9 +156,11 @@
|
|
148
156
|
Country,
|
149
157
|
Create,
|
150
158
|
Exemplify,
|
159
|
+
Identifier,
|
151
160
|
Extent,
|
152
161
|
Frequency,
|
153
162
|
FormOfWork,
|
163
|
+
IdentifierType,
|
154
164
|
Language,
|
155
165
|
License,
|
156
166
|
ManifestationRelationship,
|
@@ -181,6 +191,8 @@
|
|
181
191
|
Extent,
|
182
192
|
Frequency,
|
183
193
|
FormOfWork,
|
194
|
+
Identifier,
|
195
|
+
IdentifierType,
|
184
196
|
Item,
|
185
197
|
Language,
|
186
198
|
License,
|
Binary file
|
data/spec/dummy/db/schema.rb
CHANGED
@@ -11,7 +11,7 @@
|
|
11
11
|
#
|
12
12
|
# It's strongly recommended to check this file into your version control system.
|
13
13
|
|
14
|
-
ActiveRecord::Schema.define(:version =>
|
14
|
+
ActiveRecord::Schema.define(:version => 20130506175834) do
|
15
15
|
|
16
16
|
create_table "baskets", :force => true do |t|
|
17
17
|
t.integer "user_id"
|
@@ -384,6 +384,27 @@ ActiveRecord::Schema.define(:version => 20130504143515) do
|
|
384
384
|
t.datetime "updated_at", :null => false
|
385
385
|
end
|
386
386
|
|
387
|
+
create_table "identifier_types", :force => true do |t|
|
388
|
+
t.string "name"
|
389
|
+
t.text "display_name"
|
390
|
+
t.text "note"
|
391
|
+
t.integer "position"
|
392
|
+
t.datetime "created_at", :null => false
|
393
|
+
t.datetime "updated_at", :null => false
|
394
|
+
end
|
395
|
+
|
396
|
+
create_table "identifiers", :force => true do |t|
|
397
|
+
t.string "body", :null => false
|
398
|
+
t.integer "identifier_type_id", :null => false
|
399
|
+
t.integer "manifestation_id"
|
400
|
+
t.boolean "primary"
|
401
|
+
t.integer "position"
|
402
|
+
t.datetime "created_at", :null => false
|
403
|
+
t.datetime "updated_at", :null => false
|
404
|
+
end
|
405
|
+
|
406
|
+
add_index "identifiers", ["body", "identifier_type_id"], :name => "index_identifiers_on_body_and_identifier_type_id"
|
407
|
+
|
387
408
|
create_table "import_requests", :force => true do |t|
|
388
409
|
t.string "isbn"
|
389
410
|
t.string "state"
|
@@ -617,13 +638,6 @@ ActiveRecord::Schema.define(:version => 20130504143515) do
|
|
617
638
|
t.integer "height"
|
618
639
|
t.integer "width"
|
619
640
|
t.integer "depth"
|
620
|
-
t.string "isbn"
|
621
|
-
t.string "isbn10"
|
622
|
-
t.string "wrong_isbn"
|
623
|
-
t.string "nbn"
|
624
|
-
t.string "lccn"
|
625
|
-
t.string "oclc_number"
|
626
|
-
t.string "issn"
|
627
641
|
t.integer "price"
|
628
642
|
t.text "fulltext"
|
629
643
|
t.string "volume_number_string"
|
@@ -668,12 +682,7 @@ ActiveRecord::Schema.define(:version => 20130504143515) do
|
|
668
682
|
add_index "manifestations", ["access_address"], :name => "index_manifestations_on_access_address"
|
669
683
|
add_index "manifestations", ["date_of_publication"], :name => "index_manifestations_on_date_of_publication"
|
670
684
|
add_index "manifestations", ["doi"], :name => "index_manifestations_on_doi"
|
671
|
-
add_index "manifestations", ["isbn"], :name => "index_manifestations_on_isbn"
|
672
|
-
add_index "manifestations", ["issn"], :name => "index_manifestations_on_issn"
|
673
|
-
add_index "manifestations", ["lccn"], :name => "index_manifestations_on_lccn"
|
674
685
|
add_index "manifestations", ["manifestation_identifier"], :name => "index_manifestations_on_manifestation_identifier"
|
675
|
-
add_index "manifestations", ["nbn"], :name => "index_manifestations_on_nbn"
|
676
|
-
add_index "manifestations", ["oclc_number"], :name => "index_manifestations_on_oclc_number"
|
677
686
|
add_index "manifestations", ["updated_at"], :name => "index_manifestations_on_updated_at"
|
678
687
|
|
679
688
|
create_table "medium_of_performances", :force => true do |t|
|
@@ -1146,16 +1155,17 @@ ActiveRecord::Schema.define(:version => 20130504143515) do
|
|
1146
1155
|
t.integer "use_term_id"
|
1147
1156
|
t.string "term"
|
1148
1157
|
t.text "term_transcription"
|
1149
|
-
t.integer "subject_type_id",
|
1158
|
+
t.integer "subject_type_id", :null => false
|
1150
1159
|
t.text "scope_note"
|
1151
1160
|
t.text "note"
|
1152
|
-
t.integer "required_role_id",
|
1153
|
-
t.integer "lock_version",
|
1161
|
+
t.integer "required_role_id", :default => 1, :null => false
|
1162
|
+
t.integer "lock_version", :default => 0, :null => false
|
1154
1163
|
t.datetime "created_at"
|
1155
1164
|
t.datetime "updated_at"
|
1156
1165
|
t.datetime "deleted_at"
|
1157
1166
|
t.string "url"
|
1158
1167
|
t.integer "manifestation_id"
|
1168
|
+
t.integer "subject_heading_type_id"
|
1159
1169
|
end
|
1160
1170
|
|
1161
1171
|
add_index "subjects", ["manifestation_id"], :name => "index_subjects_on_manifestation_id"
|
data/spec/dummy/db/test.sqlite3
CHANGED
Binary file
|
Binary file
|
Binary file
|
Binary file
|
@@ -0,0 +1,29 @@
|
|
1
|
+
# Read about fixtures at http://api.rubyonrails.org/classes/ActiveRecord/Fixtures.html
|
2
|
+
|
3
|
+
one:
|
4
|
+
name: isbn
|
5
|
+
display_name: ISBN
|
6
|
+
note:
|
7
|
+
position: 1
|
8
|
+
id: 1
|
9
|
+
|
10
|
+
two:
|
11
|
+
name: issn
|
12
|
+
display_name: ISSN
|
13
|
+
note:
|
14
|
+
position: 2
|
15
|
+
id: 2
|
16
|
+
|
17
|
+
# == Schema Information
|
18
|
+
#
|
19
|
+
# Table name: identifier_types
|
20
|
+
#
|
21
|
+
# id :integer not null, primary key
|
22
|
+
# name :string(255)
|
23
|
+
# display_name :text
|
24
|
+
# note :text
|
25
|
+
# position :integer
|
26
|
+
# created_at :datetime not null
|
27
|
+
# updated_at :datetime not null
|
28
|
+
#
|
29
|
+
|
@@ -0,0 +1,113 @@
|
|
1
|
+
# Read about fixtures at http://api.rubyonrails.org/classes/ActiveRecord/Fixtures.html
|
2
|
+
|
3
|
+
one:
|
4
|
+
body: 12345678
|
5
|
+
manifestation_id: 1
|
6
|
+
identifier_type_id: 1
|
7
|
+
primary: false
|
8
|
+
|
9
|
+
two:
|
10
|
+
body: 99999999
|
11
|
+
manifestation_id: 2
|
12
|
+
identifier_type_id: 2
|
13
|
+
primary: false
|
14
|
+
|
15
|
+
identifier_00001:
|
16
|
+
manifestation_id: 1
|
17
|
+
identifier_type_id: 1
|
18
|
+
body: "4798002062"
|
19
|
+
|
20
|
+
identifier_00002:
|
21
|
+
manifestation_id: 2
|
22
|
+
identifier_type_id: 1
|
23
|
+
body: "4915724824"
|
24
|
+
|
25
|
+
identifier_00003:
|
26
|
+
manifestation_id: 3
|
27
|
+
identifier_type_id: 1
|
28
|
+
body: "4897063590"
|
29
|
+
|
30
|
+
identifier_00004:
|
31
|
+
manifestation_id: 4
|
32
|
+
identifier_type_id: 1
|
33
|
+
body: 0471412791
|
34
|
+
|
35
|
+
identifier_00005:
|
36
|
+
manifestation_id: 7
|
37
|
+
identifier_type_id: 1
|
38
|
+
body: 0470844701
|
39
|
+
|
40
|
+
identifier_00006:
|
41
|
+
manifestation_id: 8
|
42
|
+
identifier_type_id: 1
|
43
|
+
body: "4798101028"
|
44
|
+
|
45
|
+
identifier_00007:
|
46
|
+
manifestation_id: 9
|
47
|
+
identifier_type_id: 1
|
48
|
+
body: "4641143331"
|
49
|
+
|
50
|
+
identifier_00008:
|
51
|
+
manifestation_id: 10
|
52
|
+
identifier_type_id: 1
|
53
|
+
body: "9784774127804"
|
54
|
+
|
55
|
+
identifier_00009:
|
56
|
+
manifestation_id: 21
|
57
|
+
identifier_type_id: 1
|
58
|
+
body: "4822281167"
|
59
|
+
|
60
|
+
identifier_00114:
|
61
|
+
manifestation_id: 114
|
62
|
+
identifier_type_id: 1
|
63
|
+
body: "9784756137470"
|
64
|
+
|
65
|
+
identifier_00116:
|
66
|
+
manifestation_id: 116
|
67
|
+
identifier_type_id: 1
|
68
|
+
body: "9784756100917"
|
69
|
+
|
70
|
+
identifier_00120:
|
71
|
+
manifestation_id: 120
|
72
|
+
identifier_type_id: 1
|
73
|
+
body: "9784274063855"
|
74
|
+
|
75
|
+
identifier_00192:
|
76
|
+
manifestation_id: 192
|
77
|
+
identifier_type_id: 1
|
78
|
+
body: "9784873113241"
|
79
|
+
|
80
|
+
identifier_00193_1:
|
81
|
+
manifestation_id: 193
|
82
|
+
identifier_type_id: 1
|
83
|
+
body: "9784797340044"
|
84
|
+
|
85
|
+
identifier_00193_2:
|
86
|
+
manifestation_id: 193
|
87
|
+
identifier_type_id: 1
|
88
|
+
body: "4797340045"
|
89
|
+
|
90
|
+
identifier_00196:
|
91
|
+
manifestation_id: 196
|
92
|
+
identifier_type_id: 1
|
93
|
+
body: "9784797336610"
|
94
|
+
|
95
|
+
identifier_00201:
|
96
|
+
manifestation_id: 201
|
97
|
+
identifier_type_id: 2
|
98
|
+
body: "09130000"
|
99
|
+
|
100
|
+
# == Schema Information
|
101
|
+
#
|
102
|
+
# Table name: identifiers
|
103
|
+
#
|
104
|
+
# id :integer not null, primary key
|
105
|
+
# body :string(255) not null
|
106
|
+
# identifier_type_id :integer not null
|
107
|
+
# manifestation_id :integer
|
108
|
+
# primary :boolean
|
109
|
+
# position :integer
|
110
|
+
# created_at :datetime not null
|
111
|
+
# updated_at :datetime not null
|
112
|
+
#
|
113
|
+
|
@@ -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,7 +379,6 @@ 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:
|
@@ -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,7 +407,6 @@ 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:
|
@@ -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,7 +463,6 @@ 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:
|
@@ -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,7 +1471,6 @@ 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:
|
@@ -1590,8 +1485,6 @@ 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:
|
@@ -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,7 +1527,6 @@ 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:
|
@@ -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,7 +1569,6 @@ manifestation_00198:
|
|
1681
1569
|
manifestation_00201:
|
1682
1570
|
carrier_type_id: 1
|
1683
1571
|
language_id: 1
|
1684
|
-
isbn:
|
1685
1572
|
updated_at: 2010-03-01 16:14:18 +09:00
|
1686
1573
|
original_title: "テスト雑誌2005年1月号"
|
1687
1574
|
price:
|
@@ -1694,12 +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: 09130000
|
1698
1584
|
periodical: true
|
1699
1585
|
manifestation_00202:
|
1700
1586
|
carrier_type_id: 1
|
1701
1587
|
language_id: 1
|
1702
|
-
isbn:
|
1703
1588
|
updated_at: 2010-03-01 16:14:18 +09:00
|
1704
1589
|
original_title: "テスト雑誌2月号"
|
1705
1590
|
price:
|
@@ -1712,7 +1597,6 @@ manifestation_00202:
|
|
1712
1597
|
width:
|
1713
1598
|
created_at: 2007-11-19 17:55:41 UTC
|
1714
1599
|
frequency_id: 3
|
1715
|
-
issn:
|
1716
1600
|
serial_number: 2
|
1717
1601
|
volume_number: 1
|
1718
1602
|
issue_number: 2
|
@@ -1720,7 +1604,6 @@ manifestation_00202:
|
|
1720
1604
|
manifestation_00203:
|
1721
1605
|
carrier_type_id: 1
|
1722
1606
|
language_id: 1
|
1723
|
-
isbn:
|
1724
1607
|
updated_at: 2010-03-01 16:14:18 +09:00
|
1725
1608
|
original_title: "テスト単行本記事2005"
|
1726
1609
|
price:
|
@@ -1737,7 +1620,6 @@ manifestation_00203:
|
|
1737
1620
|
manifestation_00204:
|
1738
1621
|
carrier_type_id: 1
|
1739
1622
|
language_id: 1
|
1740
|
-
isbn:
|
1741
1623
|
updated_at: 2010-03-03 20:00:00 +09:00
|
1742
1624
|
original_title: "テスト雑誌1月号の記事1 2005"
|
1743
1625
|
price:
|
@@ -1753,7 +1635,6 @@ manifestation_00204:
|
|
1753
1635
|
manifestation_00205:
|
1754
1636
|
carrier_type_id: 1
|
1755
1637
|
language_id: 1
|
1756
|
-
isbn:
|
1757
1638
|
updated_at: 2010-03-03 20:00:00 +09:00
|
1758
1639
|
original_title: "テスト雑誌1月号の記事2"
|
1759
1640
|
price:
|
@@ -1768,7 +1649,6 @@ manifestation_00205:
|
|
1768
1649
|
manifestation_00206:
|
1769
1650
|
carrier_type_id: 1
|
1770
1651
|
language_id: 1
|
1771
|
-
isbn:
|
1772
1652
|
updated_at: 2010-03-03 20:00:00 +09:00
|
1773
1653
|
original_title: "テスト雑誌2月号の記事1"
|
1774
1654
|
price:
|
@@ -1783,7 +1663,6 @@ manifestation_00206:
|
|
1783
1663
|
manifestation_00207:
|
1784
1664
|
carrier_type_id: 1
|
1785
1665
|
language_id: 1
|
1786
|
-
isbn:
|
1787
1666
|
updated_at: 2010-03-03 20:00:00 +09:00
|
1788
1667
|
original_title: "試験単行本"
|
1789
1668
|
price:
|
@@ -1798,7 +1677,6 @@ manifestation_00207:
|
|
1798
1677
|
manifestation_00208:
|
1799
1678
|
carrier_type_id: 1
|
1800
1679
|
language_id: 1
|
1801
|
-
isbn:
|
1802
1680
|
updated_at: 2010-03-16 11:00:00 +09:00
|
1803
1681
|
original_title: "ある出版物"
|
1804
1682
|
price:
|
@@ -1813,7 +1691,6 @@ manifestation_00208:
|
|
1813
1691
|
manifestation_00209:
|
1814
1692
|
carrier_type_id: 1
|
1815
1693
|
language_id: 1
|
1816
|
-
isbn:
|
1817
1694
|
updated_at: 2010-03-19 13:00:00 +09:00
|
1818
1695
|
original_title: "権限確認Admin専用1"
|
1819
1696
|
price:
|
@@ -1829,7 +1706,6 @@ manifestation_00209:
|
|
1829
1706
|
manifestation_00210:
|
1830
1707
|
carrier_type_id: 1
|
1831
1708
|
language_id: 1
|
1832
|
-
isbn:
|
1833
1709
|
updated_at: 2010-03-19 13:00:00 +09:00
|
1834
1710
|
original_title: "権限確認Admin専用2"
|
1835
1711
|
price:
|
@@ -1846,7 +1722,6 @@ manifestation_00210:
|
|
1846
1722
|
manifestation_00211:
|
1847
1723
|
carrier_type_id: 1
|
1848
1724
|
language_id: 1
|
1849
|
-
isbn:
|
1850
1725
|
updated_at: 2010-03-19 13:00:00 +09:00
|
1851
1726
|
original_title: "権限確認Librarian以上用1"
|
1852
1727
|
price:
|
@@ -1863,7 +1738,6 @@ manifestation_00211:
|
|
1863
1738
|
manifestation_00212:
|
1864
1739
|
carrier_type_id: 1
|
1865
1740
|
language_id: 1
|
1866
|
-
isbn:
|
1867
1741
|
updated_at: 2010-03-19 13:00:00 +09:00
|
1868
1742
|
original_title: "権限確認Librarian以上用2"
|
1869
1743
|
price:
|
@@ -1880,7 +1754,6 @@ manifestation_00212:
|
|
1880
1754
|
manifestation_00213:
|
1881
1755
|
carrier_type_id: 1
|
1882
1756
|
language_id: 1
|
1883
|
-
isbn:
|
1884
1757
|
updated_at: 2010-03-19 13:00:00 +09:00
|
1885
1758
|
original_title: "権限確認User以上用1"
|
1886
1759
|
price:
|
@@ -1897,7 +1770,6 @@ manifestation_00213:
|
|
1897
1770
|
manifestation_00214:
|
1898
1771
|
carrier_type_id: 1
|
1899
1772
|
language_id: 1
|
1900
|
-
isbn:
|
1901
1773
|
updated_at: 2010-03-19 13:00:00 +09:00
|
1902
1774
|
original_title: "権限確認User以上用2"
|
1903
1775
|
price:
|
@@ -1914,7 +1786,6 @@ manifestation_00214:
|
|
1914
1786
|
manifestation_00215:
|
1915
1787
|
carrier_type_id: 1
|
1916
1788
|
language_id: 1
|
1917
|
-
isbn:
|
1918
1789
|
updated_at: 2010-03-19 13:00:00 +09:00
|
1919
1790
|
original_title: "権限確認"
|
1920
1791
|
price:
|
@@ -1931,7 +1802,6 @@ manifestation_00215:
|
|
1931
1802
|
manifestation_00216:
|
1932
1803
|
carrier_type_id: 1
|
1933
1804
|
language_id: 1
|
1934
|
-
isbn:
|
1935
1805
|
updated_at: 2010-03-19 13:00:00 +09:00
|
1936
1806
|
original_title: "権限確認"
|
1937
1807
|
price:
|
@@ -1970,13 +1840,6 @@ manifestation_00216:
|
|
1970
1840
|
# height :integer
|
1971
1841
|
# width :integer
|
1972
1842
|
# depth :integer
|
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)
|
1980
1843
|
# price :integer
|
1981
1844
|
# fulltext :text
|
1982
1845
|
# volume_number_string :string(255)
|