enju_nii 0.1.0.pre8 → 0.1.0.pre9
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/enju_nii.rb +5 -0
- data/lib/enju_nii/cinii_book.rb +1 -1
- data/lib/enju_nii/version.rb +1 -1
- data/spec/dummy/app/controllers/application_controller.rb +4 -0
- data/spec/dummy/config/application.rb +1 -1
- data/spec/dummy/db/development.sqlite3 +0 -0
- data/spec/dummy/db/migrate/{001_create_patrons.rb → 001_create_agents.rb} +8 -8
- data/spec/dummy/db/migrate/005_create_manifestations.rb +7 -18
- data/spec/dummy/db/migrate/012_create_owns.rb +2 -2
- data/spec/dummy/db/migrate/015_create_creates.rb +2 -2
- data/spec/dummy/db/migrate/047_create_produces.rb +2 -2
- data/spec/dummy/db/migrate/077_create_user_groups.rb +12 -0
- data/spec/dummy/db/migrate/080_create_library_groups.rb +25 -0
- data/spec/dummy/db/migrate/125_create_donates.rb +2 -2
- data/spec/dummy/db/migrate/20080830154109_create_realizes.rb +2 -2
- data/spec/dummy/db/migrate/{20080905191442_create_patron_types.rb → 20080905191442_create_agent_types.rb} +2 -2
- data/spec/dummy/db/migrate/20081028083142_create_agent_import_files.rb +22 -0
- data/spec/dummy/db/migrate/20081028083208_create_resource_import_files.rb +1 -1
- data/spec/dummy/db/migrate/{20090812151902_create_patron_relationship_types.rb → 20090812151902_create_agent_relationship_types.rb} +2 -2
- data/spec/dummy/db/migrate/20091012101112_add_dcndl_schema.rb +2 -2
- data/spec/dummy/db/migrate/20100211105551_add_admin_networks_to_library_group.rb +9 -0
- data/spec/dummy/db/migrate/20100222124420_add_allow_bookmark_external_url_to_library_group.rb +9 -0
- data/spec/dummy/db/migrate/20100606073747_create_agent_relationships.rb +13 -0
- data/spec/dummy/db/migrate/20100814091104_add_position_to_agent_relationship.rb +11 -0
- data/spec/dummy/db/migrate/20100925074559_create_agent_import_results.rb +12 -0
- data/spec/dummy/db/migrate/20110115022329_add_position_to_library_group.rb +9 -0
- data/spec/dummy/db/migrate/20110222073537_add_url_to_library_group.rb +9 -0
- data/spec/dummy/db/migrate/20110301121550_add_birth_date_and_death_date_to_agent.rb +11 -0
- data/spec/dummy/db/migrate/20110318183304_add_valid_period_for_new_user_to_user_group.rb +11 -0
- data/spec/dummy/db/migrate/20111020063828_remove_dsbl_from_library_group.rb +11 -0
- data/spec/dummy/db/migrate/20111201155456_create_users.rb +0 -5
- data/spec/dummy/db/migrate/20111201155513_add_devise_to_users.rb +8 -16
- data/spec/dummy/db/migrate/20120413161403_add_fingerprint_to_agent_import_file.rb +5 -0
- data/spec/dummy/db/migrate/20120413170720_add_error_message_to_agent_import_file.rb +5 -0
- data/spec/dummy/db/migrate/20120511072422_add_agent_identifier_to_agent.rb +6 -0
- data/spec/dummy/db/migrate/20120602141129_add_edit_mode_to_agent_import_file.rb +5 -0
- data/spec/dummy/db/migrate/20121116031206_add_fulltext_content_to_manifestation.rb +5 -0
- data/spec/dummy/db/migrate/20121116033446_add_doi_to_manifestation.rb +6 -0
- data/spec/dummy/db/migrate/20130221154434_add_additional_attributes_to_user.rb +26 -0
- data/spec/dummy/db/migrate/20130421093852_add_periodical_to_manifestation.rb +5 -0
- data/spec/dummy/db/migrate/20130421155019_add_creator_string_to_series_statement.rb +7 -0
- data/spec/dummy/db/migrate/20130421164124_add_series_master_to_series_statement.rb +5 -0
- data/spec/dummy/db/migrate/20130429020822_add_root_manifestation_id_to_series_statement.rb +6 -0
- data/spec/dummy/db/migrate/20130504133816_add_manifestation_id_to_subject.rb +6 -0
- data/spec/dummy/db/migrate/20130504143515_add_manifestation_id_to_classification.rb +6 -0
- data/spec/dummy/db/migrate/20130504195916_add_subject_heading_type_id_to_subject.rb +5 -0
- data/spec/dummy/db/migrate/20130506175303_create_identifier_types.rb +12 -0
- data/spec/dummy/db/migrate/20130506175834_create_identifiers.rb +14 -0
- data/spec/dummy/db/migrate/20130511144310_add_manifestation_id_to_item.rb +5 -0
- data/spec/dummy/db/schema.rb +225 -210
- data/spec/dummy/db/test.sqlite3 +0 -0
- data/spec/fixtures/{patron_types.yml → agent_types.yml} +4 -4
- data/spec/fixtures/identifiers.yml +113 -0
- data/spec/fixtures/library_groups.yml +33 -0
- data/spec/fixtures/manifestations.yml +1883 -0
- metadata +95 -59
- data/spec/dummy/app/models/role.rb +0 -47
- data/spec/dummy/app/models/user_has_role.rb +0 -4
- data/spec/dummy/db/migrate/143_create_subject_has_classifications.rb +0 -16
- data/spec/dummy/db/migrate/20080606052544_create_work_has_subjects.rb +0 -18
- data/spec/dummy/db/migrate/20081028083142_create_patron_import_files.rb +0 -22
- data/spec/dummy/db/migrate/20090208044541_create_subject_heading_type_has_subjects.rb +0 -16
- data/spec/dummy/db/migrate/20100606073747_create_patron_relationships.rb +0 -13
- data/spec/dummy/db/migrate/20100814091104_add_position_to_patron_relationship.rb +0 -11
- data/spec/dummy/db/migrate/20100925074559_create_patron_import_results.rb +0 -12
- data/spec/dummy/db/migrate/20110301121550_add_birth_date_and_death_date_to_patron.rb +0 -11
- data/spec/dummy/db/migrate/20110425133109_add_issn_to_series_statement.rb +0 -9
- data/spec/dummy/db/migrate/20110618091240_add_periodical_to_series_statement.rb +0 -9
- data/spec/dummy/db/migrate/20110820131417_create_series_has_manifestations.rb +0 -13
- data/spec/dummy/db/migrate/20110916053430_rename_manifestation_number_list_to_number_string.rb +0 -13
- data/spec/dummy/db/migrate/20110918161853_rename_series_statement_manifestation_id_to_root_manifestation_id.rb +0 -13
- data/spec/dummy/db/migrate/20120413161403_add_fingerprint_to_patron_import_file.rb +0 -5
- data/spec/dummy/db/migrate/20120413170720_add_error_message_to_patron_import_file.rb +0 -5
- data/spec/dummy/db/migrate/20120415060308_rename_resource_import_file_imported_at_to_executed_at.rb +0 -9
- data/spec/dummy/db/migrate/20120415060323_rename_patron_import_file_imported_at_to_executed_at.rb +0 -9
- data/spec/dummy/db/migrate/20120511072422_add_patron_identifier_to_patron.rb +0 -6
- data/spec/dummy/db/migrate/20120602141129_add_edit_mode_to_patron_import_file.rb +0 -5
- data/spec/dummy/lib/master_model.rb +0 -41
data/spec/dummy/db/test.sqlite3
CHANGED
Binary file
|
@@ -1,19 +1,19 @@
|
|
1
1
|
---
|
2
|
-
|
2
|
+
agent_type_00001:
|
3
3
|
id: 1
|
4
4
|
name: Person
|
5
5
|
display_name: Person
|
6
6
|
note:
|
7
7
|
position: 1
|
8
8
|
|
9
|
-
|
9
|
+
agent_type_00002:
|
10
10
|
id: 2
|
11
11
|
name: CorporateBody
|
12
12
|
display_name: CorporateBody
|
13
13
|
note:
|
14
14
|
position: 2
|
15
15
|
|
16
|
-
|
16
|
+
agent_type_00003:
|
17
17
|
id: 3
|
18
18
|
name: Conference
|
19
19
|
display_name: Conference
|
@@ -22,7 +22,7 @@ patron_type_00003:
|
|
22
22
|
|
23
23
|
# == Schema Information
|
24
24
|
#
|
25
|
-
# Table name:
|
25
|
+
# Table name: agent_types
|
26
26
|
#
|
27
27
|
# id :integer not null, primary key
|
28
28
|
# name :string(255) not null
|
@@ -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
|
+
|
@@ -0,0 +1,33 @@
|
|
1
|
+
# Read about fixtures at http://ar.rubyonrails.org/classes/Fixtures.html
|
2
|
+
one:
|
3
|
+
id: 1
|
4
|
+
name: enju_library
|
5
|
+
display_name: "<%= I18n.locale %>: Enju Library"
|
6
|
+
short_name: enju
|
7
|
+
email: next-l@library.example.jp
|
8
|
+
note:
|
9
|
+
my_networks: 0.0.0.0/0
|
10
|
+
url: "http://localhost:3000/"
|
11
|
+
|
12
|
+
|
13
|
+
# == Schema Information
|
14
|
+
#
|
15
|
+
# Table name: library_groups
|
16
|
+
#
|
17
|
+
# id :integer not null, primary key
|
18
|
+
# name :string(255) not null
|
19
|
+
# display_name :text
|
20
|
+
# short_name :string(255) not null
|
21
|
+
# email :string(255)
|
22
|
+
# my_networks :text
|
23
|
+
# login_banner :text
|
24
|
+
# note :text
|
25
|
+
# country_id :integer
|
26
|
+
# created_at :datetime not null
|
27
|
+
# updated_at :datetime not null
|
28
|
+
# admin_networks :text
|
29
|
+
# allow_bookmark_external_url :boolean default(FALSE), not null
|
30
|
+
# position :integer
|
31
|
+
# url :string(255) default("http://localhost:3000/")
|
32
|
+
#
|
33
|
+
|
@@ -0,0 +1,1883 @@
|
|
1
|
+
---
|
2
|
+
manifestation_00001:
|
3
|
+
carrier_type_id: 1
|
4
|
+
language_id: 1
|
5
|
+
updated_at: 2007-11-19 16:59:00.293393 +09:00
|
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"
|
7
|
+
price:
|
8
|
+
manifestation_identifier:
|
9
|
+
depth:
|
10
|
+
date_of_publication:
|
11
|
+
access_address:
|
12
|
+
id: 1
|
13
|
+
height:
|
14
|
+
width:
|
15
|
+
created_at: 2007-11-19 16:59:00.293393 +09:00
|
16
|
+
start_page: 1
|
17
|
+
end_page: 100
|
18
|
+
repository_content: true
|
19
|
+
manifestation_00002:
|
20
|
+
carrier_type_id: 1
|
21
|
+
language_id: 1
|
22
|
+
updated_at: 2007-11-19 16:59:01.991512 +09:00
|
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"
|
24
|
+
price:
|
25
|
+
manifestation_identifier:
|
26
|
+
depth:
|
27
|
+
date_of_publication:
|
28
|
+
access_address:
|
29
|
+
id: 2
|
30
|
+
height:
|
31
|
+
width:
|
32
|
+
created_at: 2007-11-19 16:59:01.991512 +09:00
|
33
|
+
repository_content: false
|
34
|
+
manifestation_00003:
|
35
|
+
carrier_type_id: 1
|
36
|
+
language_id: 1
|
37
|
+
updated_at: 2007-11-19 16:59:02.618359 +09:00
|
38
|
+
original_title: !binary |
|
39
|
+
44GT44KM44GL44KJ44Gu55Sf5ZG956eR5a2m56CU56m26ICF44Gu44Gf44KB
|
40
|
+
44Gu44OQ44Kk44Kq54m56Kix5YWl6ZaA6Kyb5bqn
|
41
|
+
|
42
|
+
price:
|
43
|
+
manifestation_identifier:
|
44
|
+
depth:
|
45
|
+
date_of_publication:
|
46
|
+
access_address: "http://www.slis.keio.ac.jp/"
|
47
|
+
id: 3
|
48
|
+
height:
|
49
|
+
width:
|
50
|
+
created_at: 2007-11-19 16:59:02.618359 +09:00
|
51
|
+
manifestation_00004:
|
52
|
+
carrier_type_id: 1
|
53
|
+
language_id: 1
|
54
|
+
updated_at: 2007-11-19 16:59:03.275738 +09:00
|
55
|
+
original_title: THE BIOTECH INVESTOR'S BIBLE
|
56
|
+
price:
|
57
|
+
manifestation_identifier:
|
58
|
+
depth:
|
59
|
+
date_of_publication:
|
60
|
+
access_address:
|
61
|
+
id: 4
|
62
|
+
height:
|
63
|
+
width:
|
64
|
+
created_at: 2007-11-19 16:59:03.275738 +09:00
|
65
|
+
manifestation_00005:
|
66
|
+
carrier_type_id: 1
|
67
|
+
language_id: 1
|
68
|
+
updated_at: 2007-11-19 16:59:04.333183 +09:00
|
69
|
+
original_title: !binary |
|
70
|
+
6aGn5a6i5rqA6Laz5Z6L44Oe44O844Kx44OG44Kj44Oz44Kw44Gu5qeL5Zuz
|
71
|
+
|
72
|
+
price:
|
73
|
+
manifestation_identifier:
|
74
|
+
depth:
|
75
|
+
date_of_publication:
|
76
|
+
access_address:
|
77
|
+
id: 5
|
78
|
+
height:
|
79
|
+
width:
|
80
|
+
created_at: 2007-11-19 16:59:04.333183 +09:00
|
81
|
+
manifestation_00006:
|
82
|
+
carrier_type_id: 1
|
83
|
+
language_id: 1
|
84
|
+
updated_at: 2007-11-19 16:59:05.255684 +09:00
|
85
|
+
original_title: !binary |
|
86
|
+
5LuV57WE44G/6Z2p5paw44Gu5pmC5Luj
|
87
|
+
|
88
|
+
price:
|
89
|
+
manifestation_identifier:
|
90
|
+
depth:
|
91
|
+
date_of_publication:
|
92
|
+
access_address:
|
93
|
+
id: 6
|
94
|
+
height:
|
95
|
+
width:
|
96
|
+
created_at: 2007-11-19 16:59:05.255684 +09:00
|
97
|
+
manifestation_00007:
|
98
|
+
carrier_type_id: 1
|
99
|
+
language_id: 1
|
100
|
+
updated_at: 2007-11-19 16:59:06.892741 +09:00
|
101
|
+
original_title: dictionary of e-business
|
102
|
+
price:
|
103
|
+
manifestation_identifier:
|
104
|
+
depth:
|
105
|
+
date_of_publication:
|
106
|
+
access_address:
|
107
|
+
id: 7
|
108
|
+
height:
|
109
|
+
width:
|
110
|
+
created_at: 2007-11-19 16:59:06.892741 +09:00
|
111
|
+
manifestation_00008:
|
112
|
+
carrier_type_id: 1
|
113
|
+
language_id: 1
|
114
|
+
updated_at: 2007-11-19 16:59:07.463333 +09:00
|
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"
|
116
|
+
price:
|
117
|
+
manifestation_identifier:
|
118
|
+
depth:
|
119
|
+
date_of_publication:
|
120
|
+
access_address:
|
121
|
+
id: 8
|
122
|
+
height:
|
123
|
+
width:
|
124
|
+
created_at: 2007-11-19 16:59:07.463333 +09:00
|
125
|
+
manifestation_00009:
|
126
|
+
carrier_type_id: 1
|
127
|
+
language_id: 1
|
128
|
+
updated_at: 2007-11-19 16:59:08.166195 +09:00
|
129
|
+
original_title: !binary |
|
130
|
+
6YCQ5p2h6Kej6Kqs5LiN5q2j56u25LqJ6Ziy5q2i5rOV
|
131
|
+
|
132
|
+
price:
|
133
|
+
manifestation_identifier:
|
134
|
+
depth:
|
135
|
+
date_of_publication:
|
136
|
+
access_address:
|
137
|
+
id: 9
|
138
|
+
height:
|
139
|
+
width:
|
140
|
+
created_at: 2007-11-19 16:59:08.166195 +09:00
|
141
|
+
manifestation_00010:
|
142
|
+
carrier_type_id: 1
|
143
|
+
language_id: 1
|
144
|
+
updated_at: 2007-11-19 16:59:09.799724 +09:00
|
145
|
+
original_title: "Apache Lucene入門 : Java・オープンソース・全文検索システムの構築"
|
146
|
+
price:
|
147
|
+
manifestation_identifier:
|
148
|
+
depth:
|
149
|
+
date_of_publication:
|
150
|
+
access_address:
|
151
|
+
id: 10
|
152
|
+
height:
|
153
|
+
width:
|
154
|
+
created_at: 2007-11-19 16:59:09.799724 +09:00
|
155
|
+
manifestation_00021:
|
156
|
+
carrier_type_id: 1
|
157
|
+
updated_at: 2007-11-19 16:59:20.799724 +09:00
|
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"
|
159
|
+
price:
|
160
|
+
manifestation_identifier:
|
161
|
+
depth:
|
162
|
+
date_of_publication:
|
163
|
+
access_address:
|
164
|
+
id: 11
|
165
|
+
height:
|
166
|
+
width:
|
167
|
+
created_at: 2007-11-19 16:59:20.799724 +09:00
|
168
|
+
required_role_id: 2
|
169
|
+
manifestation_00022:
|
170
|
+
carrier_type_id: 1
|
171
|
+
updated_at: 2007-11-19 16:59:21.799724 +09:00
|
172
|
+
original_title: "YouTube - Open Source ILS Song"
|
173
|
+
price:
|
174
|
+
manifestation_identifier:
|
175
|
+
depth:
|
176
|
+
date_of_publication:
|
177
|
+
access_address: "http://jp.youtube.com/watch?v=BSHBzd9ftDE"
|
178
|
+
id: 22
|
179
|
+
height:
|
180
|
+
width:
|
181
|
+
created_at: 2008-04-17 00:34:01 +09:00
|
182
|
+
required_role_id: 1
|
183
|
+
manifestation_00023:
|
184
|
+
carrier_type_id: 1
|
185
|
+
updated_at: 2008-04-17 00:34:01 +09:00
|
186
|
+
original_title: "世界の美しい図書館集めてみた【第一弾】"
|
187
|
+
price:
|
188
|
+
manifestation_identifier:
|
189
|
+
depth:
|
190
|
+
date_of_publication:
|
191
|
+
access_address: "http://www.nicovideo.jp/watch/sm3015373"
|
192
|
+
id: 23
|
193
|
+
height:
|
194
|
+
width:
|
195
|
+
created_at: 2007-11-19 16:58:58.799724 +09:00
|
196
|
+
required_role_id: 4
|
197
|
+
manifestation_00101:
|
198
|
+
carrier_type_id: 1
|
199
|
+
language_id: 1
|
200
|
+
updated_at: 2010-03-01 16:14:18 +09:00
|
201
|
+
original_title: "CGI基礎講座 : Perl・プログラミング・日本語処理"
|
202
|
+
price:
|
203
|
+
manifestation_identifier:
|
204
|
+
depth:
|
205
|
+
date_of_publication:
|
206
|
+
access_address:
|
207
|
+
id: 101
|
208
|
+
height:
|
209
|
+
width:
|
210
|
+
created_at: 2010-02-21 15:47:09 UTC
|
211
|
+
manifestation_00102:
|
212
|
+
carrier_type_id: 1
|
213
|
+
language_id: 1
|
214
|
+
updated_at: 2010-03-01 16:14:18 +09:00
|
215
|
+
original_title: "CGIレスキュー実践Perlプログラミング : Web裏技"
|
216
|
+
price:
|
217
|
+
manifestation_identifier:
|
218
|
+
depth:
|
219
|
+
date_of_publication:
|
220
|
+
access_address:
|
221
|
+
id: 102
|
222
|
+
height:
|
223
|
+
width:
|
224
|
+
created_at: 2010-02-21 14:57:08 UTC
|
225
|
+
manifestation_00103:
|
226
|
+
carrier_type_id: 1
|
227
|
+
language_id: 1
|
228
|
+
updated_at: 2010-03-01 16:14:18 +09:00
|
229
|
+
original_title: "Perlクックブック. v.2"
|
230
|
+
price:
|
231
|
+
manifestation_identifier:
|
232
|
+
depth:
|
233
|
+
date_of_publication:
|
234
|
+
access_address:
|
235
|
+
id: 103
|
236
|
+
height:
|
237
|
+
width:
|
238
|
+
created_at: 2010-02-21 10:51:48 UTC
|
239
|
+
manifestation_00104:
|
240
|
+
carrier_type_id: 1
|
241
|
+
language_id: 1
|
242
|
+
updated_at: 2010-03-01 16:14:18 +09:00
|
243
|
+
original_title: "Perlクックブック. v.1"
|
244
|
+
price:
|
245
|
+
manifestation_identifier:
|
246
|
+
depth:
|
247
|
+
date_of_publication:
|
248
|
+
access_address:
|
249
|
+
id: 104
|
250
|
+
height:
|
251
|
+
width:
|
252
|
+
created_at: 2010-02-21 10:51:33 UTC
|
253
|
+
manifestation_00105:
|
254
|
+
carrier_type_id: 1
|
255
|
+
language_id: 1
|
256
|
+
updated_at: 2010-03-01 16:14:18 +09:00
|
257
|
+
original_title: "初めてのPerl. 続"
|
258
|
+
price:
|
259
|
+
manifestation_identifier:
|
260
|
+
depth:
|
261
|
+
date_of_publication:
|
262
|
+
access_address:
|
263
|
+
id: 105
|
264
|
+
height:
|
265
|
+
width:
|
266
|
+
created_at: 2010-02-21 10:48:14 UTC
|
267
|
+
manifestation_00106:
|
268
|
+
carrier_type_id: 1
|
269
|
+
language_id: 1
|
270
|
+
updated_at: 2010-03-01 16:14:18 +09:00
|
271
|
+
original_title: "Perl & XML"
|
272
|
+
price:
|
273
|
+
manifestation_identifier:
|
274
|
+
depth:
|
275
|
+
date_of_publication:
|
276
|
+
access_address:
|
277
|
+
id: 106
|
278
|
+
height:
|
279
|
+
width:
|
280
|
+
created_at: 2010-02-21 10:45:48 UTC
|
281
|
+
manifestation_00107:
|
282
|
+
carrier_type_id: 1
|
283
|
+
language_id: 1
|
284
|
+
updated_at: 2010-03-01 16:14:18 +09:00
|
285
|
+
original_title: "はじめてのPerlモジュール : 厳選実用モジュール集"
|
286
|
+
price:
|
287
|
+
manifestation_identifier:
|
288
|
+
depth:
|
289
|
+
date_of_publication:
|
290
|
+
access_address:
|
291
|
+
id: 107
|
292
|
+
height:
|
293
|
+
width:
|
294
|
+
created_at: 2010-02-21 09:59:01 UTC
|
295
|
+
manifestation_00108:
|
296
|
+
carrier_type_id: 1
|
297
|
+
language_id: 1
|
298
|
+
updated_at: 2010-03-01 16:14:18 +09:00
|
299
|
+
original_title: "Perl 5パワフルテクニック大全集"
|
300
|
+
price:
|
301
|
+
manifestation_identifier:
|
302
|
+
depth:
|
303
|
+
date_of_publication:
|
304
|
+
access_address:
|
305
|
+
id: 108
|
306
|
+
height:
|
307
|
+
width:
|
308
|
+
created_at: 2010-02-21 08:13:17 UTC
|
309
|
+
manifestation_00109:
|
310
|
+
carrier_type_id: 1
|
311
|
+
language_id: 1
|
312
|
+
updated_at: 2010-03-01 16:14:18 +09:00
|
313
|
+
original_title: "CGI/Perlパワープログラミング"
|
314
|
+
price:
|
315
|
+
manifestation_identifier:
|
316
|
+
depth:
|
317
|
+
date_of_publication:
|
318
|
+
access_address:
|
319
|
+
id: 109
|
320
|
+
height:
|
321
|
+
width:
|
322
|
+
created_at: 2010-02-20 17:26:08 UTC
|
323
|
+
manifestation_00110:
|
324
|
+
carrier_type_id: 1
|
325
|
+
language_id: 1
|
326
|
+
updated_at: 2010-03-01 16:14:18 +09:00
|
327
|
+
original_title: "Ruby/GTKプログラミング入門 : Rubyで作って遊ぶGUIプログラミング"
|
328
|
+
price:
|
329
|
+
manifestation_identifier:
|
330
|
+
depth:
|
331
|
+
date_of_publication:
|
332
|
+
access_address:
|
333
|
+
id: 110
|
334
|
+
height:
|
335
|
+
width:
|
336
|
+
created_at: 2010-02-19 13:09:56 UTC
|
337
|
+
manifestation_00111:
|
338
|
+
carrier_type_id: 1
|
339
|
+
language_id: 1
|
340
|
+
updated_at: 2010-03-01 16:14:18 +09:00
|
341
|
+
original_title: "すぐわかるPerl"
|
342
|
+
price:
|
343
|
+
manifestation_identifier:
|
344
|
+
depth:
|
345
|
+
date_of_publication:
|
346
|
+
access_address:
|
347
|
+
id: 111
|
348
|
+
height:
|
349
|
+
width:
|
350
|
+
created_at: 2010-02-19 13:07:28 UTC
|
351
|
+
manifestation_00112:
|
352
|
+
carrier_type_id: 1
|
353
|
+
language_id: 1
|
354
|
+
updated_at: 2010-03-01 16:14:18 +09:00
|
355
|
+
original_title: "CGIのための実践入門Perl : 対話的・動きのあるWebページを作ろう"
|
356
|
+
price:
|
357
|
+
manifestation_identifier:
|
358
|
+
depth:
|
359
|
+
date_of_publication:
|
360
|
+
access_address:
|
361
|
+
id: 112
|
362
|
+
height:
|
363
|
+
width:
|
364
|
+
created_at: 2010-02-19 13:06:51 UTC
|
365
|
+
manifestation_00113:
|
366
|
+
carrier_type_id: 1
|
367
|
+
language_id: 1
|
368
|
+
updated_at: 2010-03-01 16:14:18 +09:00
|
369
|
+
original_title: "プログラミングは難しくない! : ウェブではじめるJavaScript/Perl/Java"
|
370
|
+
price:
|
371
|
+
manifestation_identifier:
|
372
|
+
depth:
|
373
|
+
date_of_publication:
|
374
|
+
access_address:
|
375
|
+
id: 113
|
376
|
+
height:
|
377
|
+
width:
|
378
|
+
created_at: 2010-02-19 11:02:27 UTC
|
379
|
+
manifestation_00114:
|
380
|
+
carrier_type_id: 1
|
381
|
+
language_id: 1
|
382
|
+
updated_at: 2010-03-01 16:14:18 +09:00
|
383
|
+
original_title: "Rubyを256倍使うための本. 魔道編"
|
384
|
+
price:
|
385
|
+
manifestation_identifier:
|
386
|
+
depth:
|
387
|
+
pub_date: 2001-03-20
|
388
|
+
access_address:
|
389
|
+
id: 114
|
390
|
+
height:
|
391
|
+
width:
|
392
|
+
created_at: 2010-02-19 05:46:08 UTC
|
393
|
+
manifestation_00115:
|
394
|
+
carrier_type_id: 1
|
395
|
+
language_id: 1
|
396
|
+
updated_at: 2010-03-01 16:14:18 +09:00
|
397
|
+
original_title: "入門Perl"
|
398
|
+
price:
|
399
|
+
manifestation_identifier:
|
400
|
+
depth:
|
401
|
+
date_of_publication:
|
402
|
+
access_address:
|
403
|
+
id: 115
|
404
|
+
height:
|
405
|
+
width:
|
406
|
+
created_at: 2010-02-19 05:40:17 UTC
|
407
|
+
manifestation_00116:
|
408
|
+
carrier_type_id: 1
|
409
|
+
language_id: 1
|
410
|
+
updated_at: 2010-03-01 16:14:18 +09:00
|
411
|
+
original_title: "sed & awkプログラミング : UNIX power tools"
|
412
|
+
price:
|
413
|
+
manifestation_identifier:
|
414
|
+
depth:
|
415
|
+
pub_date: 1991-12-24
|
416
|
+
access_address:
|
417
|
+
id: 116
|
418
|
+
height:
|
419
|
+
width:
|
420
|
+
created_at: 2010-02-19 05:39:01 UTC
|
421
|
+
manifestation_00117:
|
422
|
+
carrier_type_id: 1
|
423
|
+
language_id: 1
|
424
|
+
updated_at: 2010-03-01 16:14:18 +09:00
|
425
|
+
original_title: "Perlの達人"
|
426
|
+
price:
|
427
|
+
manifestation_identifier:
|
428
|
+
depth:
|
429
|
+
date_of_publication:
|
430
|
+
access_address:
|
431
|
+
id: 117
|
432
|
+
height:
|
433
|
+
width:
|
434
|
+
created_at: 2010-02-18 10:23:27 UTC
|
435
|
+
manifestation_00118:
|
436
|
+
carrier_type_id: 1
|
437
|
+
language_id: 1
|
438
|
+
updated_at: 2010-03-01 16:14:18 +09:00
|
439
|
+
original_title: "ナチ強制・絶滅収容所 : 18施設内の生と死"
|
440
|
+
price:
|
441
|
+
manifestation_identifier:
|
442
|
+
depth:
|
443
|
+
date_of_publication:
|
444
|
+
access_address:
|
445
|
+
id: 118
|
446
|
+
height:
|
447
|
+
width:
|
448
|
+
created_at: 2010-02-17 01:12:08 UTC
|
449
|
+
manifestation_00119:
|
450
|
+
carrier_type_id: 1
|
451
|
+
language_id: 1
|
452
|
+
updated_at: 2010-03-01 16:14:18 +09:00
|
453
|
+
original_title: "Perl基礎講座"
|
454
|
+
price:
|
455
|
+
manifestation_identifier:
|
456
|
+
depth:
|
457
|
+
date_of_publication:
|
458
|
+
access_address:
|
459
|
+
id: 119
|
460
|
+
height:
|
461
|
+
width:
|
462
|
+
created_at: 2010-02-16 04:30:37 UTC
|
463
|
+
manifestation_00120:
|
464
|
+
carrier_type_id: 1
|
465
|
+
language_id: 1
|
466
|
+
updated_at: 2010-03-01 16:14:18 +09:00
|
467
|
+
original_title: "Rubyプログラミング入門"
|
468
|
+
price:
|
469
|
+
manifestation_identifier:
|
470
|
+
depth:
|
471
|
+
pub_date: 2000-10-01
|
472
|
+
access_address:
|
473
|
+
id: 120
|
474
|
+
height:
|
475
|
+
width:
|
476
|
+
created_at: 2010-02-16 04:29:59 UTC
|
477
|
+
manifestation_00121:
|
478
|
+
carrier_type_id: 1
|
479
|
+
language_id: 1
|
480
|
+
updated_at: 2010-03-01 16:14:18 +09:00
|
481
|
+
original_title: "Django×Python"
|
482
|
+
price:
|
483
|
+
manifestation_identifier:
|
484
|
+
depth:
|
485
|
+
date_of_publication:
|
486
|
+
access_address:
|
487
|
+
id: 121
|
488
|
+
height:
|
489
|
+
width:
|
490
|
+
created_at: 2010-01-30 06:22:35 UTC
|
491
|
+
manifestation_00122:
|
492
|
+
carrier_type_id: 1
|
493
|
+
language_id: 1
|
494
|
+
updated_at: 2010-03-01 16:14:18 +09:00
|
495
|
+
original_title: "みんなのPython"
|
496
|
+
price:
|
497
|
+
manifestation_identifier:
|
498
|
+
depth:
|
499
|
+
date_of_publication:
|
500
|
+
access_address:
|
501
|
+
id: 122
|
502
|
+
height:
|
503
|
+
width:
|
504
|
+
created_at: 2010-01-30 06:17:32 UTC
|
505
|
+
manifestation_00123:
|
506
|
+
carrier_type_id: 1
|
507
|
+
language_id: 1
|
508
|
+
updated_at: 2010-03-01 16:14:18 +09:00
|
509
|
+
original_title: "Rubyでgroonga使って全文検索 - ラングバ"
|
510
|
+
price:
|
511
|
+
manifestation_identifier:
|
512
|
+
depth:
|
513
|
+
date_of_publication:
|
514
|
+
access_address:
|
515
|
+
id: 123
|
516
|
+
height:
|
517
|
+
width:
|
518
|
+
created_at: 2009-10-25 13:20:34 UTC
|
519
|
+
manifestation_00124:
|
520
|
+
carrier_type_id: 1
|
521
|
+
language_id: 1
|
522
|
+
updated_at: 2010-03-01 16:14:18 +09:00
|
523
|
+
original_title: "まちづくり三鷹図書館(Ruby図書館情報システム デモサイト)"
|
524
|
+
price:
|
525
|
+
manifestation_identifier:
|
526
|
+
depth:
|
527
|
+
date_of_publication:
|
528
|
+
access_address:
|
529
|
+
id: 124
|
530
|
+
height:
|
531
|
+
width:
|
532
|
+
created_at: 2009-10-20 13:46:44 UTC
|
533
|
+
manifestation_00125:
|
534
|
+
carrier_type_id: 1
|
535
|
+
language_id: 1
|
536
|
+
updated_at: 2010-03-01 16:14:18 +09:00
|
537
|
+
original_title: "Ruby on Rails入門 : 優しいRailsの育て方"
|
538
|
+
price:
|
539
|
+
manifestation_identifier:
|
540
|
+
depth:
|
541
|
+
date_of_publication:
|
542
|
+
access_address:
|
543
|
+
id: 125
|
544
|
+
height:
|
545
|
+
width:
|
546
|
+
created_at: 2009-10-16 05:16:48 UTC
|
547
|
+
manifestation_00126:
|
548
|
+
carrier_type_id: 1
|
549
|
+
language_id: 1
|
550
|
+
updated_at: 2010-03-01 16:14:18 +09:00
|
551
|
+
original_title: "Ruby Cookbook"
|
552
|
+
price:
|
553
|
+
manifestation_identifier:
|
554
|
+
depth:
|
555
|
+
date_of_publication:
|
556
|
+
access_address:
|
557
|
+
id: 126
|
558
|
+
height:
|
559
|
+
width:
|
560
|
+
created_at: 2009-06-29 12:44:11 UTC
|
561
|
+
manifestation_00127:
|
562
|
+
carrier_type_id: 1
|
563
|
+
language_id: 1
|
564
|
+
updated_at: 2010-03-01 16:14:18 +09:00
|
565
|
+
original_title: "CGI programming on the World Wide Web"
|
566
|
+
price:
|
567
|
+
manifestation_identifier:
|
568
|
+
depth:
|
569
|
+
date_of_publication:
|
570
|
+
access_address:
|
571
|
+
id: 127
|
572
|
+
height:
|
573
|
+
width:
|
574
|
+
created_at: 2009-06-19 13:45:14 UTC
|
575
|
+
manifestation_00128:
|
576
|
+
carrier_type_id: 1
|
577
|
+
language_id: 1
|
578
|
+
updated_at: 2010-03-01 16:14:18 +09:00
|
579
|
+
original_title: "Genomic Perl"
|
580
|
+
price:
|
581
|
+
manifestation_identifier:
|
582
|
+
depth:
|
583
|
+
date_of_publication:
|
584
|
+
access_address:
|
585
|
+
id: 128
|
586
|
+
height:
|
587
|
+
width:
|
588
|
+
created_at: 2009-06-19 13:27:46 UTC
|
589
|
+
manifestation_00129:
|
590
|
+
carrier_type_id: 1
|
591
|
+
language_id: 1
|
592
|
+
updated_at: 2010-03-01 16:14:18 +09:00
|
593
|
+
original_title: "Indians of the Pacific Northwest"
|
594
|
+
price:
|
595
|
+
manifestation_identifier:
|
596
|
+
depth:
|
597
|
+
date_of_publication:
|
598
|
+
access_address:
|
599
|
+
id: 129
|
600
|
+
height:
|
601
|
+
width:
|
602
|
+
created_at: 2009-06-19 12:16:23 UTC
|
603
|
+
manifestation_00130:
|
604
|
+
carrier_type_id: 1
|
605
|
+
language_id: 1
|
606
|
+
updated_at: 2010-03-01 16:14:18 +09:00
|
607
|
+
original_title: "Massachusetts acid rain monitoring project / Massachusetts acid rain monitoring project A.R.M"
|
608
|
+
price:
|
609
|
+
manifestation_identifier:
|
610
|
+
depth:
|
611
|
+
date_of_publication:
|
612
|
+
access_address:
|
613
|
+
id: 130
|
614
|
+
height:
|
615
|
+
width:
|
616
|
+
created_at: 2009-06-19 12:03:29 UTC
|
617
|
+
manifestation_00131:
|
618
|
+
carrier_type_id: 1
|
619
|
+
language_id: 1
|
620
|
+
updated_at: 2010-03-01 16:14:18 +09:00
|
621
|
+
original_title: "International Symposium Genes and Chromosomes Structure and Function"
|
622
|
+
price:
|
623
|
+
manifestation_identifier:
|
624
|
+
depth:
|
625
|
+
date_of_publication:
|
626
|
+
access_address:
|
627
|
+
id: 131
|
628
|
+
height:
|
629
|
+
width:
|
630
|
+
created_at: 2009-06-19 12:02:48 UTC
|
631
|
+
manifestation_00132:
|
632
|
+
carrier_type_id: 1
|
633
|
+
language_id: 1
|
634
|
+
updated_at: 2010-03-01 16:14:18 +09:00
|
635
|
+
original_title: "Perl black book, 2nd edition"
|
636
|
+
price:
|
637
|
+
manifestation_identifier:
|
638
|
+
depth:
|
639
|
+
date_of_publication:
|
640
|
+
access_address:
|
641
|
+
id: 132
|
642
|
+
height:
|
643
|
+
width:
|
644
|
+
created_at: 2009-06-19 11:42:02 UTC
|
645
|
+
manifestation_00133:
|
646
|
+
carrier_type_id: 1
|
647
|
+
language_id: 1
|
648
|
+
updated_at: 2010-03-01 16:14:18 +09:00
|
649
|
+
original_title: "Python scripting for computational science"
|
650
|
+
price:
|
651
|
+
manifestation_identifier:
|
652
|
+
depth:
|
653
|
+
date_of_publication:
|
654
|
+
access_address:
|
655
|
+
id: 133
|
656
|
+
height:
|
657
|
+
width:
|
658
|
+
created_at: 2009-06-19 11:18:01 UTC
|
659
|
+
manifestation_00134:
|
660
|
+
carrier_type_id: 1
|
661
|
+
language_id: 1
|
662
|
+
updated_at: 2010-03-01 16:14:18 +09:00
|
663
|
+
original_title: "Tests on a gold ore from the Ruby Basin, Black Hills"
|
664
|
+
price:
|
665
|
+
manifestation_identifier:
|
666
|
+
depth:
|
667
|
+
date_of_publication:
|
668
|
+
access_address:
|
669
|
+
id: 134
|
670
|
+
height:
|
671
|
+
width:
|
672
|
+
created_at: 2009-06-19 11:06:07 UTC
|
673
|
+
manifestation_00135:
|
674
|
+
carrier_type_id: 1
|
675
|
+
language_id: 1
|
676
|
+
updated_at: 2010-03-01 16:14:18 +09:00
|
677
|
+
original_title: "Official guide to programming with CGI.pm / Programming with CGI.pm / Official guide to programming with CGI.pm"
|
678
|
+
price:
|
679
|
+
manifestation_identifier:
|
680
|
+
depth:
|
681
|
+
date_of_publication:
|
682
|
+
access_address:
|
683
|
+
id: 135
|
684
|
+
height:
|
685
|
+
width:
|
686
|
+
created_at: 2009-06-19 10:54:21 UTC
|
687
|
+
manifestation_00136:
|
688
|
+
carrier_type_id: 1
|
689
|
+
language_id: 1
|
690
|
+
updated_at: 2010-03-01 16:14:18 +09:00
|
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"
|
692
|
+
price:
|
693
|
+
manifestation_identifier:
|
694
|
+
depth:
|
695
|
+
date_of_publication:
|
696
|
+
access_address:
|
697
|
+
id: 136
|
698
|
+
height:
|
699
|
+
width:
|
700
|
+
created_at: 2009-06-19 10:46:46 UTC
|
701
|
+
manifestation_00137:
|
702
|
+
carrier_type_id: 1
|
703
|
+
language_id: 1
|
704
|
+
updated_at: 2010-03-01 16:14:18 +09:00
|
705
|
+
original_title: "Femtosecond time-resolved spectroscopy of organic molecular crystals / Time-resolved spectroscopy of organic molecular crystals, Femtosecond"
|
706
|
+
price:
|
707
|
+
manifestation_identifier:
|
708
|
+
depth:
|
709
|
+
date_of_publication:
|
710
|
+
access_address:
|
711
|
+
id: 137
|
712
|
+
height:
|
713
|
+
width:
|
714
|
+
created_at: 2009-06-19 10:18:59 UTC
|
715
|
+
manifestation_00138:
|
716
|
+
carrier_type_id: 1
|
717
|
+
language_id: 1
|
718
|
+
updated_at: 2010-03-01 16:14:18 +09:00
|
719
|
+
original_title: "CGI programming with Perl"
|
720
|
+
price:
|
721
|
+
manifestation_identifier:
|
722
|
+
depth:
|
723
|
+
date_of_publication:
|
724
|
+
access_address:
|
725
|
+
id: 138
|
726
|
+
height:
|
727
|
+
width:
|
728
|
+
created_at: 2009-06-19 09:19:08 UTC
|
729
|
+
manifestation_00139:
|
730
|
+
carrier_type_id: 1
|
731
|
+
language_id: 1
|
732
|
+
updated_at: 2010-03-01 16:14:18 +09:00
|
733
|
+
original_title: "Python and XML / Python & XML / XML processing with Python"
|
734
|
+
price:
|
735
|
+
manifestation_identifier:
|
736
|
+
depth:
|
737
|
+
date_of_publication:
|
738
|
+
access_address:
|
739
|
+
id: 139
|
740
|
+
height:
|
741
|
+
width:
|
742
|
+
created_at: 2009-06-19 09:19:02 UTC
|
743
|
+
manifestation_00140:
|
744
|
+
carrier_type_id: 1
|
745
|
+
language_id: 1
|
746
|
+
updated_at: 2010-03-01 16:14:18 +09:00
|
747
|
+
original_title: "Perl cookbook / Solutions and examples for Perl programmers"
|
748
|
+
price:
|
749
|
+
manifestation_identifier:
|
750
|
+
depth:
|
751
|
+
date_of_publication:
|
752
|
+
access_address:
|
753
|
+
id: 140
|
754
|
+
height:
|
755
|
+
width:
|
756
|
+
created_at: 2009-06-19 09:19:01 UTC
|
757
|
+
manifestation_00141:
|
758
|
+
carrier_type_id: 1
|
759
|
+
language_id: 1
|
760
|
+
updated_at: 2010-03-01 16:14:18 +09:00
|
761
|
+
original_title: "Mastering Perl/Tk / Perl/Tk"
|
762
|
+
price:
|
763
|
+
manifestation_identifier:
|
764
|
+
depth:
|
765
|
+
date_of_publication:
|
766
|
+
access_address:
|
767
|
+
id: 141
|
768
|
+
height:
|
769
|
+
width:
|
770
|
+
created_at: 2009-06-19 09:19:00 UTC
|
771
|
+
manifestation_00142:
|
772
|
+
carrier_type_id: 1
|
773
|
+
language_id: 1
|
774
|
+
updated_at: 2010-03-01 16:14:18 +09:00
|
775
|
+
original_title: "Mastering algorithms with Perl / Practical programming through computer science"
|
776
|
+
price:
|
777
|
+
manifestation_identifier:
|
778
|
+
depth:
|
779
|
+
date_of_publication:
|
780
|
+
access_address:
|
781
|
+
id: 142
|
782
|
+
height:
|
783
|
+
width:
|
784
|
+
created_at: 2009-06-19 09:18:58 UTC
|
785
|
+
manifestation_00143:
|
786
|
+
carrier_type_id: 1
|
787
|
+
language_id: 1
|
788
|
+
updated_at: 2010-03-01 16:14:18 +09:00
|
789
|
+
original_title: "Programming Perl"
|
790
|
+
price:
|
791
|
+
manifestation_identifier:
|
792
|
+
depth:
|
793
|
+
date_of_publication:
|
794
|
+
access_address:
|
795
|
+
id: 143
|
796
|
+
height:
|
797
|
+
width:
|
798
|
+
created_at: 2009-06-19 09:18:45 UTC
|
799
|
+
manifestation_00144:
|
800
|
+
carrier_type_id: 1
|
801
|
+
language_id: 1
|
802
|
+
updated_at: 2010-03-01 16:14:18 +09:00
|
803
|
+
original_title: "Fort Worth & Tarrant County / Fort Worth and Tarrant County"
|
804
|
+
price:
|
805
|
+
manifestation_identifier:
|
806
|
+
depth:
|
807
|
+
date_of_publication:
|
808
|
+
access_address:
|
809
|
+
id: 144
|
810
|
+
height:
|
811
|
+
width:
|
812
|
+
created_at: 2009-06-19 07:49:42 UTC
|
813
|
+
manifestation_00145:
|
814
|
+
carrier_type_id: 1
|
815
|
+
language_id: 1
|
816
|
+
updated_at: 2010-03-01 16:14:18 +09:00
|
817
|
+
original_title: "Monty Python's Spamalot [sound recording] / Spamalot / Spamalot / Monty Python and the Holy Grail (Motion picture)"
|
818
|
+
price:
|
819
|
+
manifestation_identifier:
|
820
|
+
depth:
|
821
|
+
date_of_publication:
|
822
|
+
access_address:
|
823
|
+
id: 145
|
824
|
+
height:
|
825
|
+
width:
|
826
|
+
created_at: 2009-06-19 06:44:35 UTC
|
827
|
+
manifestation_00146:
|
828
|
+
carrier_type_id: 1
|
829
|
+
language_id: 1
|
830
|
+
updated_at: 2010-03-01 16:14:18 +09:00
|
831
|
+
original_title: "AWK programming language"
|
832
|
+
price:
|
833
|
+
manifestation_identifier:
|
834
|
+
depth:
|
835
|
+
date_of_publication:
|
836
|
+
access_address:
|
837
|
+
id: 146
|
838
|
+
height:
|
839
|
+
width:
|
840
|
+
created_at: 2009-06-19 06:28:27 UTC
|
841
|
+
manifestation_00147:
|
842
|
+
carrier_type_id: 1
|
843
|
+
language_id: 1
|
844
|
+
updated_at: 2010-03-01 16:14:18 +09:00
|
845
|
+
original_title: "Toting the lead row"
|
846
|
+
price:
|
847
|
+
manifestation_identifier:
|
848
|
+
depth:
|
849
|
+
date_of_publication:
|
850
|
+
access_address:
|
851
|
+
id: 147
|
852
|
+
height:
|
853
|
+
width:
|
854
|
+
created_at: 2009-06-19 02:16:22 UTC
|
855
|
+
manifestation_00148:
|
856
|
+
carrier_type_id: 1
|
857
|
+
language_id: 1
|
858
|
+
updated_at: 2010-03-01 16:14:18 +09:00
|
859
|
+
original_title: "Afro-American blues and game songs"
|
860
|
+
price:
|
861
|
+
manifestation_identifier:
|
862
|
+
depth:
|
863
|
+
date_of_publication:
|
864
|
+
access_address:
|
865
|
+
id: 148
|
866
|
+
height:
|
867
|
+
width:
|
868
|
+
created_at: 2009-06-19 02:09:17 UTC
|
869
|
+
manifestation_00149:
|
870
|
+
carrier_type_id: 1
|
871
|
+
language_id: 1
|
872
|
+
updated_at: 2010-03-01 16:14:18 +09:00
|
873
|
+
original_title: "Perl/Tk pocket reference"
|
874
|
+
price:
|
875
|
+
manifestation_identifier:
|
876
|
+
depth:
|
877
|
+
date_of_publication:
|
878
|
+
access_address:
|
879
|
+
id: 149
|
880
|
+
height:
|
881
|
+
width:
|
882
|
+
created_at: 2009-06-19 01:10:56 UTC
|
883
|
+
manifestation_00150:
|
884
|
+
carrier_type_id: 1
|
885
|
+
language_id: 1
|
886
|
+
updated_at: 2010-03-01 16:14:18 +09:00
|
887
|
+
original_title: "politics of improving urban air quality"
|
888
|
+
price:
|
889
|
+
manifestation_identifier:
|
890
|
+
depth:
|
891
|
+
date_of_publication:
|
892
|
+
access_address:
|
893
|
+
id: 150
|
894
|
+
height:
|
895
|
+
width:
|
896
|
+
created_at: 2009-06-19 00:42:38 UTC
|
897
|
+
manifestation_00151:
|
898
|
+
carrier_type_id: 1
|
899
|
+
language_id: 1
|
900
|
+
updated_at: 2010-03-01 16:14:18 +09:00
|
901
|
+
original_title: "Perl developer's dictionary"
|
902
|
+
price:
|
903
|
+
manifestation_identifier:
|
904
|
+
depth:
|
905
|
+
date_of_publication:
|
906
|
+
access_address:
|
907
|
+
id: 151
|
908
|
+
height:
|
909
|
+
width:
|
910
|
+
created_at: 2009-06-19 00:13:13 UTC
|
911
|
+
manifestation_00152:
|
912
|
+
carrier_type_id: 1
|
913
|
+
language_id: 1
|
914
|
+
updated_at: 2010-03-01 16:14:18 +09:00
|
915
|
+
original_title: "Andrテδゥ Poitiers"
|
916
|
+
price:
|
917
|
+
manifestation_identifier:
|
918
|
+
depth:
|
919
|
+
date_of_publication:
|
920
|
+
access_address:
|
921
|
+
id: 152
|
922
|
+
height:
|
923
|
+
width:
|
924
|
+
created_at: 2009-06-18 23:58:14 UTC
|
925
|
+
manifestation_00153:
|
926
|
+
carrier_type_id: 1
|
927
|
+
language_id: 1
|
928
|
+
updated_at: 2010-03-01 16:14:18 +09:00
|
929
|
+
original_title: "PERL and CGI for the World Wide Web [electronic resource] / Visual QuickStart guide"
|
930
|
+
price:
|
931
|
+
manifestation_identifier:
|
932
|
+
depth:
|
933
|
+
date_of_publication:
|
934
|
+
access_address:
|
935
|
+
id: 153
|
936
|
+
height:
|
937
|
+
width:
|
938
|
+
created_at: 2009-06-18 23:43:08 UTC
|
939
|
+
manifestation_00154:
|
940
|
+
carrier_type_id: 1
|
941
|
+
language_id: 1
|
942
|
+
updated_at: 2010-03-01 16:14:18 +09:00
|
943
|
+
original_title: "Python tutorial"
|
944
|
+
price:
|
945
|
+
manifestation_identifier:
|
946
|
+
depth:
|
947
|
+
date_of_publication:
|
948
|
+
access_address:
|
949
|
+
id: 154
|
950
|
+
height:
|
951
|
+
width:
|
952
|
+
created_at: 2009-06-18 23:17:40 UTC
|
953
|
+
manifestation_00155:
|
954
|
+
carrier_type_id: 1
|
955
|
+
language_id: 1
|
956
|
+
updated_at: 2010-03-01 16:14:18 +09:00
|
957
|
+
original_title: "Line shapes of paramagnetic resonances in ruby"
|
958
|
+
price:
|
959
|
+
manifestation_identifier:
|
960
|
+
depth:
|
961
|
+
date_of_publication:
|
962
|
+
access_address:
|
963
|
+
id: 155
|
964
|
+
height:
|
965
|
+
width:
|
966
|
+
created_at: 2009-06-18 22:44:00 UTC
|
967
|
+
manifestation_00156:
|
968
|
+
carrier_type_id: 1
|
969
|
+
language_id: 1
|
970
|
+
updated_at: 2010-03-01 16:14:18 +09:00
|
971
|
+
original_title: "Perl programmer's reference"
|
972
|
+
price:
|
973
|
+
manifestation_identifier:
|
974
|
+
depth:
|
975
|
+
date_of_publication:
|
976
|
+
access_address:
|
977
|
+
id: 156
|
978
|
+
height:
|
979
|
+
width:
|
980
|
+
created_at: 2009-06-18 22:19:34 UTC
|
981
|
+
manifestation_00157:
|
982
|
+
carrier_type_id: 1
|
983
|
+
language_id: 1
|
984
|
+
updated_at: 2010-03-01 16:14:18 +09:00
|
985
|
+
original_title: "Technological capabilities in developing countries"
|
986
|
+
price:
|
987
|
+
manifestation_identifier:
|
988
|
+
depth:
|
989
|
+
date_of_publication:
|
990
|
+
access_address:
|
991
|
+
id: 157
|
992
|
+
height:
|
993
|
+
width:
|
994
|
+
created_at: 2009-06-18 21:58:42 UTC
|
995
|
+
manifestation_00158:
|
996
|
+
carrier_type_id: 1
|
997
|
+
language_id: 1
|
998
|
+
updated_at: 2010-03-01 16:14:18 +09:00
|
999
|
+
original_title: "phenomena of vagueness"
|
1000
|
+
price:
|
1001
|
+
manifestation_identifier:
|
1002
|
+
depth:
|
1003
|
+
date_of_publication:
|
1004
|
+
access_address:
|
1005
|
+
id: 158
|
1006
|
+
height:
|
1007
|
+
width:
|
1008
|
+
created_at: 2009-06-18 21:44:38 UTC
|
1009
|
+
manifestation_00159:
|
1010
|
+
carrier_type_id: 1
|
1011
|
+
language_id: 1
|
1012
|
+
updated_at: 2010-03-01 16:14:18 +09:00
|
1013
|
+
original_title: "theory of consumer's demand"
|
1014
|
+
price:
|
1015
|
+
manifestation_identifier:
|
1016
|
+
depth:
|
1017
|
+
date_of_publication:
|
1018
|
+
access_address:
|
1019
|
+
id: 159
|
1020
|
+
height:
|
1021
|
+
width:
|
1022
|
+
created_at: 2009-06-18 21:10:02 UTC
|
1023
|
+
manifestation_00160:
|
1024
|
+
carrier_type_id: 1
|
1025
|
+
language_id: 1
|
1026
|
+
updated_at: 2010-03-01 16:14:18 +09:00
|
1027
|
+
original_title: "theory of consumer's demand"
|
1028
|
+
price:
|
1029
|
+
manifestation_identifier:
|
1030
|
+
depth:
|
1031
|
+
date_of_publication:
|
1032
|
+
access_address:
|
1033
|
+
id: 160
|
1034
|
+
height:
|
1035
|
+
width:
|
1036
|
+
created_at: 2009-06-18 21:10:01 UTC
|
1037
|
+
manifestation_00161:
|
1038
|
+
carrier_type_id: 1
|
1039
|
+
language_id: 1
|
1040
|
+
updated_at: 2010-03-01 16:14:18 +09:00
|
1041
|
+
original_title: "Monty Python, Shakespeare, and English Renaissance drama"
|
1042
|
+
price:
|
1043
|
+
manifestation_identifier:
|
1044
|
+
depth:
|
1045
|
+
date_of_publication:
|
1046
|
+
access_address:
|
1047
|
+
id: 161
|
1048
|
+
height:
|
1049
|
+
width:
|
1050
|
+
created_at: 2009-06-18 20:37:58 UTC
|
1051
|
+
manifestation_00162:
|
1052
|
+
carrier_type_id: 1
|
1053
|
+
language_id: 1
|
1054
|
+
updated_at: 2010-03-01 16:14:18 +09:00
|
1055
|
+
original_title: "Analyzing computer system performance with PERL::PDQ"
|
1056
|
+
price:
|
1057
|
+
manifestation_identifier:
|
1058
|
+
depth:
|
1059
|
+
date_of_publication:
|
1060
|
+
access_address:
|
1061
|
+
id: 162
|
1062
|
+
height:
|
1063
|
+
width:
|
1064
|
+
created_at: 2009-06-18 20:29:54 UTC
|
1065
|
+
manifestation_00163:
|
1066
|
+
carrier_type_id: 1
|
1067
|
+
language_id: 1
|
1068
|
+
updated_at: 2010-03-01 16:14:18 +09:00
|
1069
|
+
original_title: "equilibrium of the reaction between the manganate, permanganate, and hydroxide of potassium, and manganese dioxide"
|
1070
|
+
price:
|
1071
|
+
manifestation_identifier:
|
1072
|
+
depth:
|
1073
|
+
date_of_publication:
|
1074
|
+
access_address:
|
1075
|
+
id: 163
|
1076
|
+
height:
|
1077
|
+
width:
|
1078
|
+
created_at: 2009-06-18 20:16:44 UTC
|
1079
|
+
manifestation_00164:
|
1080
|
+
carrier_type_id: 1
|
1081
|
+
language_id: 1
|
1082
|
+
updated_at: 2010-03-01 16:14:18 +09:00
|
1083
|
+
original_title: "Stimulated optical emission in ruby"
|
1084
|
+
price:
|
1085
|
+
manifestation_identifier:
|
1086
|
+
depth:
|
1087
|
+
date_of_publication:
|
1088
|
+
access_address:
|
1089
|
+
id: 164
|
1090
|
+
height:
|
1091
|
+
width:
|
1092
|
+
created_at: 2009-06-18 20:05:25 UTC
|
1093
|
+
manifestation_00165:
|
1094
|
+
carrier_type_id: 1
|
1095
|
+
language_id: 1
|
1096
|
+
updated_at: 2010-03-01 16:14:18 +09:00
|
1097
|
+
original_title: "Strategic planning and risk analysis"
|
1098
|
+
price:
|
1099
|
+
manifestation_identifier:
|
1100
|
+
depth:
|
1101
|
+
date_of_publication:
|
1102
|
+
access_address:
|
1103
|
+
id: 165
|
1104
|
+
height:
|
1105
|
+
width:
|
1106
|
+
created_at: 2009-06-18 17:41:41 UTC
|
1107
|
+
manifestation_00166:
|
1108
|
+
carrier_type_id: 1
|
1109
|
+
language_id: 1
|
1110
|
+
updated_at: 2010-03-01 16:14:18 +09:00
|
1111
|
+
original_title: "Performance assertion checking"
|
1112
|
+
price:
|
1113
|
+
manifestation_identifier:
|
1114
|
+
depth:
|
1115
|
+
date_of_publication:
|
1116
|
+
access_address:
|
1117
|
+
id: 166
|
1118
|
+
height:
|
1119
|
+
width:
|
1120
|
+
created_at: 2009-06-18 17:34:03 UTC
|
1121
|
+
manifestation_00167:
|
1122
|
+
carrier_type_id: 1
|
1123
|
+
language_id: 1
|
1124
|
+
updated_at: 2010-03-01 16:14:18 +09:00
|
1125
|
+
original_title: "Spin-lattice relaxation time of ruby"
|
1126
|
+
price:
|
1127
|
+
manifestation_identifier:
|
1128
|
+
depth:
|
1129
|
+
date_of_publication:
|
1130
|
+
access_address:
|
1131
|
+
id: 167
|
1132
|
+
height:
|
1133
|
+
width:
|
1134
|
+
created_at: 2009-06-18 16:26:38 UTC
|
1135
|
+
manifestation_00168:
|
1136
|
+
carrier_type_id: 1
|
1137
|
+
language_id: 1
|
1138
|
+
updated_at: 2010-03-01 16:14:18 +09:00
|
1139
|
+
original_title: "Mourning Ruby"
|
1140
|
+
price:
|
1141
|
+
manifestation_identifier:
|
1142
|
+
depth:
|
1143
|
+
date_of_publication:
|
1144
|
+
access_address:
|
1145
|
+
id: 168
|
1146
|
+
height:
|
1147
|
+
width:
|
1148
|
+
created_at: 2009-06-18 16:25:25 UTC
|
1149
|
+
manifestation_00169:
|
1150
|
+
carrier_type_id: 1
|
1151
|
+
language_id: 1
|
1152
|
+
updated_at: 2010-03-01 16:14:18 +09:00
|
1153
|
+
original_title: "statistical analysis of banking performance in the Eastern Caribbean Currency Union in the 1990s"
|
1154
|
+
price:
|
1155
|
+
manifestation_identifier:
|
1156
|
+
depth:
|
1157
|
+
date_of_publication:
|
1158
|
+
access_address:
|
1159
|
+
id: 169
|
1160
|
+
height:
|
1161
|
+
width:
|
1162
|
+
created_at: 2009-06-18 15:53:44 UTC
|
1163
|
+
manifestation_00170:
|
1164
|
+
carrier_type_id: 1
|
1165
|
+
language_id: 1
|
1166
|
+
updated_at: 2010-03-01 16:14:18 +09:00
|
1167
|
+
original_title: "Professional Perl programming / Perl programming"
|
1168
|
+
price:
|
1169
|
+
manifestation_identifier:
|
1170
|
+
depth:
|
1171
|
+
date_of_publication:
|
1172
|
+
access_address:
|
1173
|
+
id: 170
|
1174
|
+
height:
|
1175
|
+
width:
|
1176
|
+
created_at: 2009-06-18 15:52:50 UTC
|
1177
|
+
manifestation_00171:
|
1178
|
+
carrier_type_id: 1
|
1179
|
+
language_id: 1
|
1180
|
+
updated_at: 2010-03-01 16:14:18 +09:00
|
1181
|
+
original_title: "Perl in a nutshell"
|
1182
|
+
price:
|
1183
|
+
manifestation_identifier:
|
1184
|
+
depth:
|
1185
|
+
date_of_publication:
|
1186
|
+
access_address:
|
1187
|
+
id: 171
|
1188
|
+
height:
|
1189
|
+
width:
|
1190
|
+
created_at: 2009-06-18 15:40:53 UTC
|
1191
|
+
manifestation_00172:
|
1192
|
+
carrier_type_id: 1
|
1193
|
+
language_id: 1
|
1194
|
+
updated_at: 2010-03-01 16:14:18 +09:00
|
1195
|
+
original_title: "Programming Web services with Perl"
|
1196
|
+
price:
|
1197
|
+
manifestation_identifier:
|
1198
|
+
depth:
|
1199
|
+
date_of_publication:
|
1200
|
+
access_address:
|
1201
|
+
id: 172
|
1202
|
+
height:
|
1203
|
+
width:
|
1204
|
+
created_at: 2009-06-18 15:34:21 UTC
|
1205
|
+
manifestation_00173:
|
1206
|
+
carrier_type_id: 1
|
1207
|
+
language_id: 1
|
1208
|
+
updated_at: 2010-03-01 16:14:18 +09:00
|
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"
|
1210
|
+
price:
|
1211
|
+
manifestation_identifier:
|
1212
|
+
depth:
|
1213
|
+
date_of_publication:
|
1214
|
+
access_address:
|
1215
|
+
id: 173
|
1216
|
+
height:
|
1217
|
+
width:
|
1218
|
+
created_at: 2009-06-18 15:08:06 UTC
|
1219
|
+
manifestation_00174:
|
1220
|
+
carrier_type_id: 1
|
1221
|
+
language_id: 1
|
1222
|
+
updated_at: 2010-03-01 16:14:18 +09:00
|
1223
|
+
original_title: "Europeras 3 & 4 / Europera"
|
1224
|
+
price:
|
1225
|
+
manifestation_identifier:
|
1226
|
+
depth:
|
1227
|
+
date_of_publication:
|
1228
|
+
access_address:
|
1229
|
+
id: 174
|
1230
|
+
height:
|
1231
|
+
width:
|
1232
|
+
created_at: 2009-06-18 15:05:43 UTC
|
1233
|
+
manifestation_00175:
|
1234
|
+
carrier_type_id: 1
|
1235
|
+
language_id: 1
|
1236
|
+
updated_at: 2010-03-01 16:14:18 +09:00
|
1237
|
+
original_title: "Retreats from realism in recent English drama"
|
1238
|
+
price:
|
1239
|
+
manifestation_identifier:
|
1240
|
+
depth:
|
1241
|
+
date_of_publication:
|
1242
|
+
access_address:
|
1243
|
+
id: 175
|
1244
|
+
height:
|
1245
|
+
width:
|
1246
|
+
created_at: 2009-06-18 15:03:06 UTC
|
1247
|
+
manifestation_00176:
|
1248
|
+
carrier_type_id: 1
|
1249
|
+
language_id: 1
|
1250
|
+
updated_at: 2010-03-01 16:14:18 +09:00
|
1251
|
+
original_title: "Python programming patterns"
|
1252
|
+
price:
|
1253
|
+
manifestation_identifier:
|
1254
|
+
depth:
|
1255
|
+
date_of_publication:
|
1256
|
+
access_address:
|
1257
|
+
id: 176
|
1258
|
+
height:
|
1259
|
+
width:
|
1260
|
+
created_at: 2009-06-18 14:52:11 UTC
|
1261
|
+
manifestation_00177:
|
1262
|
+
carrier_type_id: 1
|
1263
|
+
language_id: 1
|
1264
|
+
updated_at: 2010-03-01 16:14:18 +09:00
|
1265
|
+
original_title: "Beginning Perl for bioinformatics"
|
1266
|
+
price:
|
1267
|
+
manifestation_identifier:
|
1268
|
+
depth:
|
1269
|
+
date_of_publication:
|
1270
|
+
access_address:
|
1271
|
+
id: 177
|
1272
|
+
height:
|
1273
|
+
width:
|
1274
|
+
created_at: 2009-06-18 13:45:13 UTC
|
1275
|
+
manifestation_00178:
|
1276
|
+
carrier_type_id: 1
|
1277
|
+
language_id: 1
|
1278
|
+
updated_at: 2010-03-01 16:14:18 +09:00
|
1279
|
+
original_title: "Learning Perl"
|
1280
|
+
price:
|
1281
|
+
manifestation_identifier:
|
1282
|
+
depth:
|
1283
|
+
date_of_publication:
|
1284
|
+
access_address:
|
1285
|
+
id: 178
|
1286
|
+
height:
|
1287
|
+
width:
|
1288
|
+
created_at: 2009-06-18 13:45:11 UTC
|
1289
|
+
manifestation_00179:
|
1290
|
+
carrier_type_id: 1
|
1291
|
+
language_id: 1
|
1292
|
+
updated_at: 2010-03-01 16:14:18 +09:00
|
1293
|
+
original_title: "Effective awk programming"
|
1294
|
+
price:
|
1295
|
+
manifestation_identifier:
|
1296
|
+
depth:
|
1297
|
+
date_of_publication:
|
1298
|
+
access_address:
|
1299
|
+
id: 179
|
1300
|
+
height:
|
1301
|
+
width:
|
1302
|
+
created_at: 2009-06-18 13:45:09 UTC
|
1303
|
+
manifestation_00180:
|
1304
|
+
carrier_type_id: 1
|
1305
|
+
language_id: 1
|
1306
|
+
updated_at: 2010-03-01 16:14:18 +09:00
|
1307
|
+
original_title: "Python standard library / Annotated reference for Python 2.0"
|
1308
|
+
price:
|
1309
|
+
manifestation_identifier:
|
1310
|
+
depth:
|
1311
|
+
date_of_publication:
|
1312
|
+
access_address:
|
1313
|
+
id: 180
|
1314
|
+
height:
|
1315
|
+
width:
|
1316
|
+
created_at: 2009-06-18 13:45:04 UTC
|
1317
|
+
manifestation_00181:
|
1318
|
+
carrier_type_id: 1
|
1319
|
+
language_id: 1
|
1320
|
+
updated_at: 2010-03-01 16:14:18 +09:00
|
1321
|
+
original_title: "Programming Python"
|
1322
|
+
price:
|
1323
|
+
manifestation_identifier:
|
1324
|
+
depth:
|
1325
|
+
date_of_publication:
|
1326
|
+
access_address:
|
1327
|
+
id: 181
|
1328
|
+
height:
|
1329
|
+
width:
|
1330
|
+
created_at: 2009-06-18 13:45:04 UTC
|
1331
|
+
manifestation_00182:
|
1332
|
+
carrier_type_id: 1
|
1333
|
+
language_id: 1
|
1334
|
+
updated_at: 2010-03-01 16:14:18 +09:00
|
1335
|
+
original_title: "Perl CD bookshelf"
|
1336
|
+
price:
|
1337
|
+
manifestation_identifier:
|
1338
|
+
depth:
|
1339
|
+
date_of_publication:
|
1340
|
+
access_address:
|
1341
|
+
id: 182
|
1342
|
+
height:
|
1343
|
+
width:
|
1344
|
+
created_at: 2009-06-18 13:44:56 UTC
|
1345
|
+
manifestation_00183:
|
1346
|
+
carrier_type_id: 1
|
1347
|
+
language_id: 1
|
1348
|
+
updated_at: 2010-03-01 16:14:18 +09:00
|
1349
|
+
original_title: "Programming Perl"
|
1350
|
+
price:
|
1351
|
+
manifestation_identifier:
|
1352
|
+
depth:
|
1353
|
+
date_of_publication:
|
1354
|
+
access_address:
|
1355
|
+
id: 183
|
1356
|
+
height:
|
1357
|
+
width:
|
1358
|
+
created_at: 2009-06-18 13:44:55 UTC
|
1359
|
+
manifestation_00184:
|
1360
|
+
carrier_type_id: 1
|
1361
|
+
language_id: 1
|
1362
|
+
updated_at: 2010-03-01 16:14:18 +09:00
|
1363
|
+
original_title: "Sed & awk pocket reference / Sed and awk pocket reference"
|
1364
|
+
price:
|
1365
|
+
manifestation_identifier:
|
1366
|
+
depth:
|
1367
|
+
date_of_publication:
|
1368
|
+
access_address:
|
1369
|
+
id: 184
|
1370
|
+
height:
|
1371
|
+
width:
|
1372
|
+
created_at: 2009-06-18 13:44:54 UTC
|
1373
|
+
manifestation_00185:
|
1374
|
+
carrier_type_id: 1
|
1375
|
+
language_id: 1
|
1376
|
+
updated_at: 2010-03-01 16:14:18 +09:00
|
1377
|
+
original_title: "Perl power!"
|
1378
|
+
price:
|
1379
|
+
manifestation_identifier:
|
1380
|
+
depth:
|
1381
|
+
date_of_publication:
|
1382
|
+
access_address:
|
1383
|
+
id: 185
|
1384
|
+
height:
|
1385
|
+
width:
|
1386
|
+
created_at: 2009-06-18 13:41:37 UTC
|
1387
|
+
manifestation_00186:
|
1388
|
+
carrier_type_id: 1
|
1389
|
+
language_id: 1
|
1390
|
+
updated_at: 2010-03-01 16:14:18 +09:00
|
1391
|
+
original_title: "ATOKダイレクト API for Perl / Ruby?|?さらに使いこなす?|?ATOK.com"
|
1392
|
+
price:
|
1393
|
+
manifestation_identifier:
|
1394
|
+
depth:
|
1395
|
+
date_of_publication:
|
1396
|
+
access_address:
|
1397
|
+
id: 186
|
1398
|
+
height:
|
1399
|
+
width:
|
1400
|
+
created_at: 2008-12-19 17:52:47 UTC
|
1401
|
+
manifestation_00187:
|
1402
|
+
carrier_type_id: 1
|
1403
|
+
language_id: 1
|
1404
|
+
updated_at: 2010-03-01 16:14:18 +09:00
|
1405
|
+
original_title: "Welcome ― Ruby Enterprise Edition"
|
1406
|
+
price:
|
1407
|
+
manifestation_identifier:
|
1408
|
+
depth:
|
1409
|
+
date_of_publication:
|
1410
|
+
access_address:
|
1411
|
+
id: 187
|
1412
|
+
height:
|
1413
|
+
width:
|
1414
|
+
created_at: 2008-10-19 15:58:50 UTC
|
1415
|
+
manifestation_00188:
|
1416
|
+
carrier_type_id: 1
|
1417
|
+
language_id: 1
|
1418
|
+
updated_at: 2010-03-01 16:14:18 +09:00
|
1419
|
+
original_title: "Pythonクックブック"
|
1420
|
+
price:
|
1421
|
+
manifestation_identifier:
|
1422
|
+
depth:
|
1423
|
+
date_of_publication:
|
1424
|
+
access_address:
|
1425
|
+
id: 188
|
1426
|
+
height:
|
1427
|
+
width:
|
1428
|
+
created_at: 2008-08-22 00:27:29 UTC
|
1429
|
+
manifestation_00189:
|
1430
|
+
carrier_type_id: 1
|
1431
|
+
language_id: 1
|
1432
|
+
updated_at: 2010-03-01 16:14:18 +09:00
|
1433
|
+
original_title: "みんなのPython インデントの世界へようこそ! object oriented-lightweight language Python"
|
1434
|
+
price:
|
1435
|
+
manifestation_identifier:
|
1436
|
+
depth:
|
1437
|
+
date_of_publication:
|
1438
|
+
access_address:
|
1439
|
+
id: 189
|
1440
|
+
height:
|
1441
|
+
width:
|
1442
|
+
created_at: 2008-08-22 00:20:59 UTC
|
1443
|
+
manifestation_00190:
|
1444
|
+
carrier_type_id: 1
|
1445
|
+
language_id: 1
|
1446
|
+
updated_at: 2010-03-01 16:14:18 +09:00
|
1447
|
+
original_title: "Django | The Web framework for perfectionists with deadlines"
|
1448
|
+
price:
|
1449
|
+
manifestation_identifier:
|
1450
|
+
depth:
|
1451
|
+
date_of_publication:
|
1452
|
+
access_address:
|
1453
|
+
id: 190
|
1454
|
+
height:
|
1455
|
+
width:
|
1456
|
+
created_at: 2008-05-20 13:06:31 UTC
|
1457
|
+
manifestation_00191:
|
1458
|
+
carrier_type_id: 1
|
1459
|
+
language_id: 1
|
1460
|
+
updated_at: 2010-03-01 16:14:18 +09:00
|
1461
|
+
original_title: "fac-back-opac - Google Code"
|
1462
|
+
price:
|
1463
|
+
manifestation_identifier:
|
1464
|
+
depth:
|
1465
|
+
date_of_publication:
|
1466
|
+
access_address:
|
1467
|
+
id: 191
|
1468
|
+
height:
|
1469
|
+
width:
|
1470
|
+
created_at: 2008-05-19 22:36:11 UTC
|
1471
|
+
manifestation_00192:
|
1472
|
+
carrier_type_id: 1
|
1473
|
+
language_id: 1
|
1474
|
+
updated_at: 2010-03-01 16:14:18 +09:00
|
1475
|
+
original_title: "Rubyクックブック"
|
1476
|
+
price:
|
1477
|
+
manifestation_identifier:
|
1478
|
+
depth:
|
1479
|
+
pub_date: 2007-04-27
|
1480
|
+
access_address:
|
1481
|
+
id: 192
|
1482
|
+
height:
|
1483
|
+
width:
|
1484
|
+
created_at: 2008-03-05 01:37:55 UTC
|
1485
|
+
manifestation_00193:
|
1486
|
+
carrier_type_id: 1
|
1487
|
+
language_id: 1
|
1488
|
+
updated_at: 2010-03-01 16:14:18 +09:00
|
1489
|
+
original_title: "Rubyレシピブック"
|
1490
|
+
price:
|
1491
|
+
manifestation_identifier:
|
1492
|
+
depth:
|
1493
|
+
pub_date: 2007-02-01
|
1494
|
+
access_address:
|
1495
|
+
id: 193
|
1496
|
+
height:
|
1497
|
+
width:
|
1498
|
+
created_at: 2008-03-05 01:30:39 UTC
|
1499
|
+
manifestation_00194:
|
1500
|
+
carrier_type_id: 1
|
1501
|
+
language_id: 1
|
1502
|
+
updated_at: 2010-03-01 16:14:18 +09:00
|
1503
|
+
original_title: "初めてのPerl 第3版"
|
1504
|
+
price:
|
1505
|
+
manifestation_identifier:
|
1506
|
+
depth:
|
1507
|
+
date_of_publication:
|
1508
|
+
access_address:
|
1509
|
+
id: 194
|
1510
|
+
height:
|
1511
|
+
width:
|
1512
|
+
created_at: 2007-11-19 17:56:37 UTC
|
1513
|
+
manifestation_00195:
|
1514
|
+
carrier_type_id: 1
|
1515
|
+
language_id: 1
|
1516
|
+
updated_at: 2010-03-01 16:14:18 +09:00
|
1517
|
+
original_title: "続・初めてのPerl 改訂版"
|
1518
|
+
price:
|
1519
|
+
manifestation_identifier:
|
1520
|
+
depth:
|
1521
|
+
date_of_publication:
|
1522
|
+
access_address:
|
1523
|
+
id: 195
|
1524
|
+
height:
|
1525
|
+
width:
|
1526
|
+
created_at: 2007-11-19 17:55:42 UTC
|
1527
|
+
manifestation_00196:
|
1528
|
+
carrier_type_id: 1
|
1529
|
+
language_id: 1
|
1530
|
+
updated_at: 2010-03-01 16:14:18 +09:00
|
1531
|
+
original_title: "たのしいRuby 第2版 Rubyではじめる気軽なプログラミング"
|
1532
|
+
price:
|
1533
|
+
manifestation_identifier:
|
1534
|
+
depth:
|
1535
|
+
pub_date: 2006-08-05
|
1536
|
+
access_address:
|
1537
|
+
id: 196
|
1538
|
+
height:
|
1539
|
+
width:
|
1540
|
+
created_at: 2007-11-19 17:55:41 UTC
|
1541
|
+
manifestation_00197:
|
1542
|
+
carrier_type_id: 1
|
1543
|
+
language_id: 1
|
1544
|
+
updated_at: 2010-03-15 16:14:18 +09:00
|
1545
|
+
original_title: "Ruby"
|
1546
|
+
price:
|
1547
|
+
manifestation_identifier:
|
1548
|
+
depth:
|
1549
|
+
date_of_publication:
|
1550
|
+
access_address:
|
1551
|
+
id: 197
|
1552
|
+
height:
|
1553
|
+
width:
|
1554
|
+
created_at: 2007-11-19 17:55:41 UTC
|
1555
|
+
manifestation_00198:
|
1556
|
+
carrier_type_id: 1
|
1557
|
+
language_id: 1
|
1558
|
+
updated_at: 2010-03-15 16:14:18 +09:00
|
1559
|
+
original_title: "紅玉の本"
|
1560
|
+
price:
|
1561
|
+
manifestation_identifier:
|
1562
|
+
depth:
|
1563
|
+
date_of_publication:
|
1564
|
+
access_address:
|
1565
|
+
id: 198
|
1566
|
+
height:
|
1567
|
+
width:
|
1568
|
+
created_at: 2007-11-19 17:55:41 UTC
|
1569
|
+
manifestation_00201:
|
1570
|
+
carrier_type_id: 1
|
1571
|
+
language_id: 1
|
1572
|
+
updated_at: 2010-03-01 16:14:18 +09:00
|
1573
|
+
original_title: "テスト雑誌2005年1月号"
|
1574
|
+
price:
|
1575
|
+
manifestation_identifier:
|
1576
|
+
depth:
|
1577
|
+
date_of_publication:
|
1578
|
+
access_address:
|
1579
|
+
id: 201
|
1580
|
+
height:
|
1581
|
+
width:
|
1582
|
+
created_at: 2007-11-19 17:55:41 UTC
|
1583
|
+
frequency_id: 3
|
1584
|
+
periodical: true
|
1585
|
+
manifestation_00202:
|
1586
|
+
carrier_type_id: 1
|
1587
|
+
language_id: 1
|
1588
|
+
updated_at: 2010-03-01 16:14:18 +09:00
|
1589
|
+
original_title: "テスト雑誌2月号"
|
1590
|
+
price:
|
1591
|
+
manifestation_identifier:
|
1592
|
+
depth:
|
1593
|
+
date_of_publication:
|
1594
|
+
access_address:
|
1595
|
+
id: 202
|
1596
|
+
height:
|
1597
|
+
width:
|
1598
|
+
created_at: 2007-11-19 17:55:41 UTC
|
1599
|
+
frequency_id: 3
|
1600
|
+
serial_number: 2
|
1601
|
+
volume_number: 1
|
1602
|
+
issue_number: 2
|
1603
|
+
periodical: true
|
1604
|
+
manifestation_00203:
|
1605
|
+
carrier_type_id: 1
|
1606
|
+
language_id: 1
|
1607
|
+
updated_at: 2010-03-01 16:14:18 +09:00
|
1608
|
+
original_title: "テスト単行本記事2005"
|
1609
|
+
price:
|
1610
|
+
manifestation_identifier:
|
1611
|
+
depth:
|
1612
|
+
date_of_publication:
|
1613
|
+
access_address:
|
1614
|
+
id: 203
|
1615
|
+
height:
|
1616
|
+
width:
|
1617
|
+
created_at: 2010-03-03 17:00:00 UTC
|
1618
|
+
frequency_id: 1
|
1619
|
+
periodical: false
|
1620
|
+
manifestation_00204:
|
1621
|
+
carrier_type_id: 1
|
1622
|
+
language_id: 1
|
1623
|
+
updated_at: 2010-03-03 20:00:00 +09:00
|
1624
|
+
original_title: "テスト雑誌1月号の記事1 2005"
|
1625
|
+
price:
|
1626
|
+
manifestation_identifier:
|
1627
|
+
depth:
|
1628
|
+
date_of_publication:
|
1629
|
+
access_address:
|
1630
|
+
id: 204
|
1631
|
+
height:
|
1632
|
+
width:
|
1633
|
+
created_at: 2010-03-03 20:00:00 UTC
|
1634
|
+
periodical: true
|
1635
|
+
manifestation_00205:
|
1636
|
+
carrier_type_id: 1
|
1637
|
+
language_id: 1
|
1638
|
+
updated_at: 2010-03-03 20:00:00 +09:00
|
1639
|
+
original_title: "テスト雑誌1月号の記事2"
|
1640
|
+
price:
|
1641
|
+
manifestation_identifier:
|
1642
|
+
depth:
|
1643
|
+
date_of_publication: 2000-01-01 00:00:00 +09:00
|
1644
|
+
access_address:
|
1645
|
+
id: 205
|
1646
|
+
height:
|
1647
|
+
width:
|
1648
|
+
created_at: 2010-03-03 20:00:00 UTC
|
1649
|
+
manifestation_00206:
|
1650
|
+
carrier_type_id: 1
|
1651
|
+
language_id: 1
|
1652
|
+
updated_at: 2010-03-03 20:00:00 +09:00
|
1653
|
+
original_title: "テスト雑誌2月号の記事1"
|
1654
|
+
price:
|
1655
|
+
manifestation_identifier:
|
1656
|
+
depth:
|
1657
|
+
date_of_publication: 2010-01-01 00:00:00 +09:00
|
1658
|
+
access_address:
|
1659
|
+
id: 206
|
1660
|
+
height:
|
1661
|
+
width:
|
1662
|
+
created_at: 2010-03-03 20:00:00 UTC
|
1663
|
+
manifestation_00207:
|
1664
|
+
carrier_type_id: 1
|
1665
|
+
language_id: 1
|
1666
|
+
updated_at: 2010-03-03 20:00:00 +09:00
|
1667
|
+
original_title: "試験単行本"
|
1668
|
+
price:
|
1669
|
+
manifestation_identifier:
|
1670
|
+
depth:
|
1671
|
+
date_of_publication:
|
1672
|
+
access_address:
|
1673
|
+
id: 207
|
1674
|
+
height:
|
1675
|
+
width:
|
1676
|
+
created_at: 2010-03-03 20:00:00 UTC
|
1677
|
+
manifestation_00208:
|
1678
|
+
carrier_type_id: 1
|
1679
|
+
language_id: 1
|
1680
|
+
updated_at: 2010-03-16 11:00:00 +09:00
|
1681
|
+
original_title: "ある出版物"
|
1682
|
+
price:
|
1683
|
+
manifestation_identifier:
|
1684
|
+
depth:
|
1685
|
+
date_of_publication:
|
1686
|
+
access_address:
|
1687
|
+
id: 208
|
1688
|
+
height:
|
1689
|
+
width:
|
1690
|
+
created_at: 2010-03-16 11:00:00 UTC
|
1691
|
+
manifestation_00209:
|
1692
|
+
carrier_type_id: 1
|
1693
|
+
language_id: 1
|
1694
|
+
updated_at: 2010-03-19 13:00:00 +09:00
|
1695
|
+
original_title: "権限確認Admin専用1"
|
1696
|
+
price:
|
1697
|
+
manifestation_identifier:
|
1698
|
+
depth:
|
1699
|
+
date_of_publication:
|
1700
|
+
access_address:
|
1701
|
+
id: 209
|
1702
|
+
height:
|
1703
|
+
width:
|
1704
|
+
created_at: 2010-03-19 13:00:00 UTC
|
1705
|
+
required_role_id: 4
|
1706
|
+
manifestation_00210:
|
1707
|
+
carrier_type_id: 1
|
1708
|
+
language_id: 1
|
1709
|
+
updated_at: 2010-03-19 13:00:00 +09:00
|
1710
|
+
original_title: "権限確認Admin専用2"
|
1711
|
+
price:
|
1712
|
+
manifestation_identifier:
|
1713
|
+
depth:
|
1714
|
+
date_of_publication:
|
1715
|
+
access_address:
|
1716
|
+
id: 210
|
1717
|
+
height:
|
1718
|
+
width:
|
1719
|
+
created_at: 2010-03-19 13:00:00 UTC
|
1720
|
+
required_role_id: 4
|
1721
|
+
repository_content: true
|
1722
|
+
manifestation_00211:
|
1723
|
+
carrier_type_id: 1
|
1724
|
+
language_id: 1
|
1725
|
+
updated_at: 2010-03-19 13:00:00 +09:00
|
1726
|
+
original_title: "権限確認Librarian以上用1"
|
1727
|
+
price:
|
1728
|
+
manifestation_identifier:
|
1729
|
+
depth:
|
1730
|
+
date_of_publication:
|
1731
|
+
access_address:
|
1732
|
+
id: 211
|
1733
|
+
height:
|
1734
|
+
width:
|
1735
|
+
created_at: 2010-03-19 13:00:00 UTC
|
1736
|
+
required_role_id: 3
|
1737
|
+
repository_content: true
|
1738
|
+
manifestation_00212:
|
1739
|
+
carrier_type_id: 1
|
1740
|
+
language_id: 1
|
1741
|
+
updated_at: 2010-03-19 13:00:00 +09:00
|
1742
|
+
original_title: "権限確認Librarian以上用2"
|
1743
|
+
price:
|
1744
|
+
manifestation_identifier:
|
1745
|
+
depth:
|
1746
|
+
date_of_publication:
|
1747
|
+
access_address:
|
1748
|
+
id: 212
|
1749
|
+
height:
|
1750
|
+
width:
|
1751
|
+
created_at: 2010-03-19 13:00:00 UTC
|
1752
|
+
required_role_id: 3
|
1753
|
+
repository_content: true
|
1754
|
+
manifestation_00213:
|
1755
|
+
carrier_type_id: 1
|
1756
|
+
language_id: 1
|
1757
|
+
updated_at: 2010-03-19 13:00:00 +09:00
|
1758
|
+
original_title: "権限確認User以上用1"
|
1759
|
+
price:
|
1760
|
+
manifestation_identifier:
|
1761
|
+
depth:
|
1762
|
+
date_of_publication:
|
1763
|
+
access_address:
|
1764
|
+
id: 213
|
1765
|
+
height:
|
1766
|
+
width:
|
1767
|
+
created_at: 2010-03-19 13:00:00 UTC
|
1768
|
+
required_role_id: 2
|
1769
|
+
repository_content: true
|
1770
|
+
manifestation_00214:
|
1771
|
+
carrier_type_id: 1
|
1772
|
+
language_id: 1
|
1773
|
+
updated_at: 2010-03-19 13:00:00 +09:00
|
1774
|
+
original_title: "権限確認User以上用2"
|
1775
|
+
price:
|
1776
|
+
manifestation_identifier:
|
1777
|
+
depth:
|
1778
|
+
date_of_publication:
|
1779
|
+
access_address:
|
1780
|
+
id: 214
|
1781
|
+
height:
|
1782
|
+
width:
|
1783
|
+
created_at: 2010-03-19 13:00:00 UTC
|
1784
|
+
required_role_id: 2
|
1785
|
+
repository_content: false
|
1786
|
+
manifestation_00215:
|
1787
|
+
carrier_type_id: 1
|
1788
|
+
language_id: 1
|
1789
|
+
updated_at: 2010-03-19 13:00:00 +09:00
|
1790
|
+
original_title: "権限確認"
|
1791
|
+
price:
|
1792
|
+
manifestation_identifier:
|
1793
|
+
depth:
|
1794
|
+
date_of_publication:
|
1795
|
+
access_address:
|
1796
|
+
id: 215
|
1797
|
+
height:
|
1798
|
+
width:
|
1799
|
+
created_at: 2010-03-19 13:00:00 UTC
|
1800
|
+
required_role_id: 1
|
1801
|
+
repository_content: true
|
1802
|
+
manifestation_00216:
|
1803
|
+
carrier_type_id: 1
|
1804
|
+
language_id: 1
|
1805
|
+
updated_at: 2010-03-19 13:00:00 +09:00
|
1806
|
+
original_title: "権限確認"
|
1807
|
+
price:
|
1808
|
+
manifestation_identifier:
|
1809
|
+
depth:
|
1810
|
+
date_of_publication:
|
1811
|
+
access_address:
|
1812
|
+
id: 216
|
1813
|
+
height:
|
1814
|
+
width:
|
1815
|
+
created_at: 2010-03-19 13:00:00 UTC
|
1816
|
+
required_role_id: 1
|
1817
|
+
repository_content: false
|
1818
|
+
|
1819
|
+
# == Schema Information
|
1820
|
+
#
|
1821
|
+
# Table name: manifestations
|
1822
|
+
#
|
1823
|
+
# id :integer not null, primary key
|
1824
|
+
# original_title :text not null
|
1825
|
+
# title_alternative :text
|
1826
|
+
# title_transcription :text
|
1827
|
+
# classification_number :string(255)
|
1828
|
+
# manifestation_identifier :string(255)
|
1829
|
+
# date_of_publication :datetime
|
1830
|
+
# date_copyrighted :datetime
|
1831
|
+
# created_at :datetime not null
|
1832
|
+
# updated_at :datetime not null
|
1833
|
+
# deleted_at :datetime
|
1834
|
+
# access_address :string(255)
|
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
|
1838
|
+
# start_page :integer
|
1839
|
+
# end_page :integer
|
1840
|
+
# height :integer
|
1841
|
+
# width :integer
|
1842
|
+
# depth :integer
|
1843
|
+
# price :integer
|
1844
|
+
# fulltext :text
|
1845
|
+
# volume_number_string :string(255)
|
1846
|
+
# issue_number_string :string(255)
|
1847
|
+
# serial_number_string :string(255)
|
1848
|
+
# edition :integer
|
1849
|
+
# note :text
|
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
|
+
# state :string(255)
|
1854
|
+
# required_score :integer default(0), not null
|
1855
|
+
# frequency_id :integer default(1), not null
|
1856
|
+
# subscription_master :boolean default(FALSE), not null
|
1857
|
+
# attachment_file_name :string(255)
|
1858
|
+
# attachment_content_type :string(255)
|
1859
|
+
# attachment_file_size :integer
|
1860
|
+
# attachment_updated_at :datetime
|
1861
|
+
# title_alternative_transcription :text
|
1862
|
+
# description :text
|
1863
|
+
# abstract :text
|
1864
|
+
# available_at :datetime
|
1865
|
+
# valid_until :datetime
|
1866
|
+
# date_submitted :datetime
|
1867
|
+
# date_accepted :datetime
|
1868
|
+
# date_caputured :datetime
|
1869
|
+
# pub_date :string(255)
|
1870
|
+
# edition_string :string(255)
|
1871
|
+
# volume_number :integer
|
1872
|
+
# issue_number :integer
|
1873
|
+
# serial_number :integer
|
1874
|
+
# ndc :string(255)
|
1875
|
+
# content_type_id :integer default(1)
|
1876
|
+
# year_of_publication :integer
|
1877
|
+
# attachment_meta :text
|
1878
|
+
# month_of_publication :integer
|
1879
|
+
# fulltext_content :boolean
|
1880
|
+
# doi :string(255)
|
1881
|
+
# periodical :boolean
|
1882
|
+
#
|
1883
|
+
|