enju_ndl 0.1.0.pre21 → 0.1.0.pre22

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (38) hide show
  1. checksums.yaml +4 -4
  2. data/app/controllers/ndl_books_controller.rb +1 -1
  3. data/app/helpers/ndl_books_helper.rb +5 -5
  4. data/app/models/ndl_book.rb +1 -1
  5. data/lib/enju_ndl/ndl_search.rb +11 -12
  6. data/lib/enju_ndl/version.rb +1 -1
  7. data/spec/cassette_library/ImportRequest/should_import_isbn.yml +11 -11
  8. data/spec/cassette_library/Manifestation/should_imporrt_a_bibliographic_record.yml +12 -12
  9. data/spec/cassette_library/Manifestation/should_import_isbn.yml +10 -10
  10. data/spec/cassette_library/NdlBook/import/should_get_series_title.yml +6 -6
  11. data/spec/cassette_library/NdlBook/import/should_get_volume_number.yml +6 -6
  12. data/spec/cassette_library/NdlBook/import/should_import_audio_cd.yml +6 -6
  13. data/spec/cassette_library/NdlBook/import/should_import_bibliographic_record.yml +6 -6
  14. data/spec/cassette_library/NdlBook/import/should_import_bibliographic_record_that_does_not_have_any_classifications.yml +5 -5
  15. data/spec/cassette_library/NdlBook/import/should_import_pud_date_is_nil.yml +6 -6
  16. data/spec/cassette_library/NdlBook/import/should_import_series_statement.yml +6 -6
  17. data/spec/cassette_library/NdlBook/import/should_import_series_statement_if_the_resource_is_periodical.yml +144 -181
  18. data/spec/cassette_library/NdlBook/import/should_import_title_alternative.yml +6 -6
  19. data/spec/cassette_library/NdlBook/import/should_import_url_contain_whitespace.yml +5 -5
  20. data/spec/cassette_library/NdlBook/import/should_import_video_dvd.yml +6 -6
  21. data/spec/cassette_library/NdlBook/import/should_import_volume_number_string.yml +135 -133
  22. data/spec/cassette_library/NdlBook/import/should_not_get_series_title_if_book_has_not_series_title.yml +5 -5
  23. data/spec/cassette_library/NdlBook/import/should_not_get_volume_number_if_book_has_not_volume.yml +6 -6
  24. data/spec/cassette_library/NdlBook/search/should_not_distinguish_double_byte_space_from_one-byte_space_in_a_query.yml +12 -12
  25. data/spec/cassette_library/NdlBook/search/should_search_bibliographic_record.yml +34 -32
  26. data/spec/cassette_library/NdlBooksController/GET_index/should_get_index.yml +8 -8
  27. data/spec/cassette_library/NdlBooksController/POST_create/{should_create_a_bibliographic_record_if_nbn_is_set.yml → should_create_a_bibliographic_record_if_jpno_is_set.yml} +5 -5
  28. data/spec/cassette_library/NdlBooksController/POST_create/{should_not_create_a_bibliographic_record_if_nbn_is_not_set.yml → should_not_create_a_bibliographic_record_if_jpno_is_not_set.yml} +6 -6
  29. data/spec/cassette_library/Question/should_respond_to_search_crd.yml +3 -3
  30. data/spec/controllers/ndl_books_controller_spec.rb +5 -5
  31. data/spec/dummy/db/development.sqlite3 +0 -0
  32. data/spec/dummy/db/migrate/20130509185724_add_statement_of_responsibility_to_manifestation.rb +5 -0
  33. data/spec/dummy/db/schema.rb +2 -1
  34. data/spec/dummy/db/test.sqlite3 +0 -0
  35. data/spec/fixtures/classification_types.yml +13 -0
  36. data/spec/fixtures/identifier_types.yml +7 -0
  37. data/spec/models/ndl_book_spec.rb +2 -1
  38. metadata +14 -10
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: fe6c232bbe1c2eb8ad59591b0224f985f200760f
4
- data.tar.gz: 3e4e0c5fbeb4a8e5648ee9108d04414a74db400f
3
+ metadata.gz: 84ccb1e7188c8628760fd4e8266ecc5e6a838a71
4
+ data.tar.gz: c5fc0c1aa194d4d464f33d0fc972344c11f2b8cf
5
5
  SHA512:
6
- metadata.gz: 2eed2d32e2004bb1fe90dd9f5cf1a1175b915c936742f52b120ce80fcad07e77adf3be46c25ad99e0269f007a4e5088d03021f4f0e8e0f536740c832413d0264
7
- data.tar.gz: 5026816a1a84a5a6ee8be54f8c913489fb3bece50af68ca79b9e637884d5b5b435ddd1bf3d4c360f914ad240c7e95efaf99f13386e76cafa1b9b1e5f7bd828aa
6
+ metadata.gz: 0ed0245778cc8dbf5c52e905361f7b3735efef1b2ddfc4b4ecc4c10738cfc9a6ec58db927178a566a873624d986b14e570709c74e169c0e9453c738eed574ff2
7
+ data.tar.gz: a3475c91e640165f4c7b35cd755d02eca943114add7e8ae1a1984001955fb11a3b83682daa99e20e346efe923193cafcfc60088ae1547b35ebe6efd691d9f66a
@@ -22,7 +22,7 @@ class NdlBooksController < ApplicationController
22
22
  def create
23
23
  if params[:book]
24
24
  begin
25
- @manifestation = NdlBook.import_from_sru_response(params[:book][:nbn])
25
+ @manifestation = NdlBook.import_from_sru_response(params[:book][:jpno])
26
26
  rescue EnjuNdl::RecordNotFound
27
27
  end
28
28
  respond_to do |format|
@@ -1,15 +1,15 @@
1
1
  # -*- encoding: utf-8 -*-
2
2
  module NdlBooksHelper
3
- def link_to_import_from_ndl(nbn)
4
- if nbn.blank?
3
+ def link_to_import_from_ndl(jpno)
4
+ if jpno.blank?
5
5
  t('enju_ndl.not_available')
6
6
  else
7
- identifier_type = IdentifierType.where(:name => 'nbn').first
7
+ identifier_type = IdentifierType.where(:name => 'jpno').first
8
8
  if identifier_type
9
- manifestation = Identifier.where(:body => nbn, :identifier_type_id => identifier_type.id).first.try(:manifestation)
9
+ manifestation = Identifier.where(:body => jpno, :identifier_type_id => identifier_type.id).first.try(:manifestation)
10
10
  end
11
11
  unless manifestation
12
- link_to t('enju_ndl.add'), ndl_books_path(:book => {:nbn => nbn}), :method => :post
12
+ link_to t('enju_ndl.add'), ndl_books_path(:book => {:jpno => jpno}), :method => :post
13
13
  else
14
14
  link_to t('enju_ndl.already_exists'), manifestation
15
15
  end
@@ -62,7 +62,7 @@ class NdlBook
62
62
  end
63
63
 
64
64
  def self.import_from_sru_response(jpno)
65
- identifier = Identifier.where(:body => jpno, :identifier_type_id => IdentifierType.where(:name => 'nbn').first_or_create.id).first
65
+ identifier = Identifier.where(:body => jpno, :identifier_type_id => IdentifierType.where(:name => 'jpno').first_or_create.id).first
66
66
  return if identifier
67
67
  url = "http://iss.ndl.go.jp/api/sru?operation=searchRetrieve&recordSchema=dcndl&&maximumRecords=1&&query=%28jpno=#{jpno}%29&onlyBib=true"
68
68
  xml = open(url).read
@@ -27,8 +27,8 @@ module EnjuNdl
27
27
  end
28
28
 
29
29
  def import_record(doc)
30
- nbn = doc.at('//dcterms:identifier[@rdf:datatype="http://ndl.go.jp/dcndl/terms/JPNO"]').try(:content)
31
- identifier = Identifier.where(:body => nbn, :identifier_type_id => IdentifierType.where(:name => 'nbn').first_or_create.id).first
30
+ jpno = doc.at('//dcterms:identifier[@rdf:datatype="http://ndl.go.jp/dcndl/terms/JPNO"]').try(:content)
31
+ identifier = Identifier.where(:body => jpno, :identifier_type_id => IdentifierType.where(:name => 'jpno').first_or_create.id).first
32
32
  return identifier.manifestation if identifier
33
33
 
34
34
  publishers = get_publishers(doc)
@@ -82,6 +82,7 @@ module EnjuNdl
82
82
  volume_number_string = doc.at('//dcndl:volume/rdf:Description/rdf:value').try(:content)
83
83
  extent = get_extent(doc)
84
84
  publication_periodicity = doc.at('//dcndl:publicationPeriodicity').try(:content)
85
+ statement_of_responsibility = doc.xpath('//dc:creator').map{|e| e.content}.join("; ")
85
86
 
86
87
  manifestation = nil
87
88
  Patron.transaction do
@@ -100,6 +101,7 @@ module EnjuNdl
100
101
  :description => description,
101
102
  :volume_number_string => volume_number_string,
102
103
  :price => price,
104
+ :statement_of_responsibility => statement_of_responsibility,
103
105
  :start_page => extent[:start_page],
104
106
  :end_page => extent[:end_page],
105
107
  :height => extent[:height]
@@ -109,17 +111,17 @@ module EnjuNdl
109
111
  identifier[:isbn] = Identifier.new(:body => isbn)
110
112
  identifier[:isbn].identifier_type = IdentifierType.where(:name => 'isbn').first_or_create
111
113
  end
112
- if nbn
113
- identifier[:nbn] = Identifier.new(:body => nbn)
114
- identifier[:nbn].identifier_type = IdentifierType.where(:name => 'nbn').first_or_create
114
+ if jpno
115
+ identifier[:jpno] = Identifier.new(:body => jpno)
116
+ identifier[:jpno].identifier_type = IdentifierType.where(:name => 'jpno').first_or_create
115
117
  end
116
118
  if issn
117
119
  identifier[:issn] = Identifier.new(:body => issn)
118
120
  identifier[:issn].identifier_type = IdentifierType.where(:name => 'issn').first_or_create
119
121
  end
120
122
  if issn_l
121
- identifier[:issn] = Identifier.new(:body => issn_l)
122
- identifier[:issn].identifier_type = IdentifierType.where(:name => 'issn_l').first_or_create
123
+ identifier[:issn_l] = Identifier.new(:body => issn_l)
124
+ identifier[:issn_l].identifier_type = IdentifierType.where(:name => 'issn_l').first_or_create
123
125
  end
124
126
  manifestation.carrier_type = carrier_type if carrier_type
125
127
  manifestation.manifestation_content_type = content_type if content_type
@@ -170,13 +172,10 @@ module EnjuNdl
170
172
  ndc9_url = classification_urls.map{|url| URI.parse(URI.escape(url))}.select{|u| u.path.split('/').reverse[1] == 'ndc9'}.first
171
173
  if ndc9_url
172
174
  ndc = ndc9_url.path.split('/').last
173
- classification_type = ClassificationType.where(:name => 'ndc9').first
174
- unless classification_type
175
- classification_type = ClassificationType.create!(:name => 'ndc9', :display_name => 'NDC9')
176
- end
175
+ classification_type = ClassificationType.where(:name => 'ndc9').first_or_create
177
176
  classification = Classification.new(:category => ndc)
178
177
  classification.classification_type = classification_type
179
- manifestation.classifications << classification if classification
178
+ manifestation.classifications << classification if classification.valid?
180
179
  end
181
180
  end
182
181
  end
@@ -1,3 +1,3 @@
1
1
  module EnjuNdl
2
- VERSION = "0.1.0.pre21"
2
+ VERSION = "0.1.0.pre22"
3
3
  end
@@ -19,7 +19,7 @@ http_interactions:
19
19
  message: OK
20
20
  headers:
21
21
  date:
22
- - Wed, 08 May 2013 02:55:41 GMT
22
+ - Tue, 14 May 2013 04:32:13 GMT
23
23
  server:
24
24
  - Apache
25
25
  etag:
@@ -27,7 +27,7 @@ http_interactions:
27
27
  x-ua-compatible:
28
28
  - IE=Edge,chrome=1
29
29
  x-runtime:
30
- - '0.058122'
30
+ - '0.156912'
31
31
  cache-control:
32
32
  - max-age=0, private, must-revalidate
33
33
  status:
@@ -35,9 +35,9 @@ http_interactions:
35
35
  content-type:
36
36
  - application/xml; charset=utf-8
37
37
  set-cookie:
38
- - _front_session_id=e9a4a45e07a436e01fbe973891e1ae3b; domain=.iss.ndl.go.jp;
39
- path=/; expires=Wed, 08-May-2013 03:55:41 GMT; HttpOnly
40
- - serverid=1101; path=/
38
+ - _front_session_id=11682605034e79f5249db8953d65d13b; domain=.iss.ndl.go.jp;
39
+ path=/; expires=Tue, 14-May-2013 05:32:13 GMT; HttpOnly
40
+ - serverid=1102; path=/
41
41
  vary:
42
42
  - Accept-Encoding,User-Agent
43
43
  content-encoding:
@@ -111,7 +111,7 @@ http_interactions:
111
111
  bWVkaW8vc2VhcmNoL2Jvb2suZG8/YmliaWQ9MzQyODAxIi8+CiAgICA8L2l0
112
112
  ZW0+CiAgPC9jaGFubmVsPgo8L3Jzcz4K
113
113
  http_version: '1.0'
114
- recorded_at: Wed, 08 May 2013 02:55:41 GMT
114
+ recorded_at: Tue, 14 May 2013 04:32:13 GMT
115
115
  - request:
116
116
  method: get
117
117
  uri: http://iss.ndl.go.jp/books/R100000002-I000007602726-00.rdf
@@ -131,7 +131,7 @@ http_interactions:
131
131
  message: OK
132
132
  headers:
133
133
  date:
134
- - Wed, 08 May 2013 02:55:41 GMT
134
+ - Tue, 14 May 2013 04:32:13 GMT
135
135
  server:
136
136
  - Apache
137
137
  etag:
@@ -139,7 +139,7 @@ http_interactions:
139
139
  x-ua-compatible:
140
140
  - IE=Edge,chrome=1
141
141
  x-runtime:
142
- - '0.852166'
142
+ - '0.602924'
143
143
  cache-control:
144
144
  - max-age=0, private, must-revalidate
145
145
  status:
@@ -147,8 +147,8 @@ http_interactions:
147
147
  content-type:
148
148
  - application/rdf+xml; charset=utf-8
149
149
  set-cookie:
150
- - _front_session_id=b082d107a411297e6ecc8722a500fd62; domain=.iss.ndl.go.jp;
151
- path=/; expires=Wed, 08-May-2013 03:55:42 GMT; HttpOnly
150
+ - _front_session_id=030f851bb6f82d7f5c5ef317686c880c; domain=.iss.ndl.go.jp;
151
+ path=/; expires=Tue, 14-May-2013 05:32:14 GMT; HttpOnly
152
152
  - serverid=1105; path=/
153
153
  vary:
154
154
  - Accept-Encoding,User-Agent
@@ -500,5 +500,5 @@ http_interactions:
500
500
  5p62PC9kY3Rlcm1zOmRlc2NyaXB0aW9uPgogIDwvZGNuZGw6SXRlbT4KPC9y
501
501
  ZGY6UkRGPg==
502
502
  http_version: '1.0'
503
- recorded_at: Wed, 08 May 2013 02:55:43 GMT
503
+ recorded_at: Tue, 14 May 2013 04:32:14 GMT
504
504
  recorded_with: VCR 2.4.0
@@ -19,7 +19,7 @@ http_interactions:
19
19
  message: OK
20
20
  headers:
21
21
  date:
22
- - Wed, 08 May 2013 02:55:42 GMT
22
+ - Tue, 14 May 2013 04:32:14 GMT
23
23
  server:
24
24
  - Apache
25
25
  etag:
@@ -27,7 +27,7 @@ http_interactions:
27
27
  x-ua-compatible:
28
28
  - IE=Edge,chrome=1
29
29
  x-runtime:
30
- - '0.184796'
30
+ - '0.258587'
31
31
  cache-control:
32
32
  - max-age=0, private, must-revalidate
33
33
  status:
@@ -35,9 +35,9 @@ http_interactions:
35
35
  content-type:
36
36
  - application/xml; charset=utf-8
37
37
  set-cookie:
38
- - _front_session_id=debc6b769599b726448c4ac9c5bdbe3f; domain=.iss.ndl.go.jp;
39
- path=/; expires=Wed, 08-May-2013 03:55:43 GMT; HttpOnly
40
- - serverid=1105; path=/
38
+ - _front_session_id=65124793615290622cfbc99da20076c0; domain=.iss.ndl.go.jp;
39
+ path=/; expires=Tue, 14-May-2013 05:32:14 GMT; HttpOnly
40
+ - serverid=1102; path=/
41
41
  vary:
42
42
  - Accept-Encoding,User-Agent
43
43
  content-encoding:
@@ -113,7 +113,7 @@ http_interactions:
113
113
  b29rLmRvP2JpYmlkPTEyNTIwNCIvPgogICAgPC9pdGVtPgogIDwvY2hhbm5l
114
114
  bD4KPC9yc3M+Cg==
115
115
  http_version: '1.0'
116
- recorded_at: Wed, 08 May 2013 02:55:43 GMT
116
+ recorded_at: Tue, 14 May 2013 04:32:15 GMT
117
117
  - request:
118
118
  method: get
119
119
  uri: http://iss.ndl.go.jp/books/R100000002-I000002539673-00.rdf
@@ -133,7 +133,7 @@ http_interactions:
133
133
  message: OK
134
134
  headers:
135
135
  date:
136
- - Wed, 08 May 2013 02:55:43 GMT
136
+ - Tue, 14 May 2013 04:32:15 GMT
137
137
  server:
138
138
  - Apache
139
139
  etag:
@@ -141,7 +141,7 @@ http_interactions:
141
141
  x-ua-compatible:
142
142
  - IE=Edge,chrome=1
143
143
  x-runtime:
144
- - '2.011046'
144
+ - '2.032275'
145
145
  cache-control:
146
146
  - max-age=0, private, must-revalidate
147
147
  status:
@@ -149,9 +149,9 @@ http_interactions:
149
149
  content-type:
150
150
  - application/rdf+xml; charset=utf-8
151
151
  set-cookie:
152
- - _front_session_id=d3c8deaee600dc3a1b9e54757fc6309b; domain=.iss.ndl.go.jp;
153
- path=/; expires=Wed, 08-May-2013 03:55:45 GMT; HttpOnly
154
- - serverid=1101; path=/
152
+ - _front_session_id=4b2228ff84e4e9e8eada3876ca6eca5a; domain=.iss.ndl.go.jp;
153
+ path=/; expires=Tue, 14-May-2013 05:32:17 GMT; HttpOnly
154
+ - serverid=1102; path=/
155
155
  vary:
156
156
  - Accept-Encoding,User-Agent
157
157
  content-encoding:
@@ -1164,5 +1164,5 @@ http_interactions:
1164
1164
  ZGVzY3JpcHRpb24+6YWN572u5aC05omAIDog5LiA6Iis6ZaL5p62PC9kY3Rl
1165
1165
  cm1zOmRlc2NyaXB0aW9uPgogIDwvZGNuZGw6SXRlbT4KPC9yZGY6UkRGPg==
1166
1166
  http_version: '1.0'
1167
- recorded_at: Wed, 08 May 2013 02:55:45 GMT
1167
+ recorded_at: Tue, 14 May 2013 04:32:17 GMT
1168
1168
  recorded_with: VCR 2.4.0
@@ -19,7 +19,7 @@ http_interactions:
19
19
  message: OK
20
20
  headers:
21
21
  date:
22
- - Wed, 08 May 2013 02:55:45 GMT
22
+ - Tue, 14 May 2013 04:32:17 GMT
23
23
  server:
24
24
  - Apache
25
25
  etag:
@@ -27,7 +27,7 @@ http_interactions:
27
27
  x-ua-compatible:
28
28
  - IE=Edge,chrome=1
29
29
  x-runtime:
30
- - '0.147576'
30
+ - '0.141928'
31
31
  cache-control:
32
32
  - max-age=0, private, must-revalidate
33
33
  status:
@@ -35,8 +35,8 @@ http_interactions:
35
35
  content-type:
36
36
  - application/xml; charset=utf-8
37
37
  set-cookie:
38
- - _front_session_id=7bd3c60e1cce65e90bc70e5ed04edd76; domain=.iss.ndl.go.jp;
39
- path=/; expires=Wed, 08-May-2013 03:55:45 GMT; HttpOnly
38
+ - _front_session_id=18d6697ea828cab1c324589688a81c98; domain=.iss.ndl.go.jp;
39
+ path=/; expires=Tue, 14-May-2013 05:32:17 GMT; HttpOnly
40
40
  - serverid=1102; path=/
41
41
  vary:
42
42
  - Accept-Encoding,User-Agent
@@ -111,7 +111,7 @@ http_interactions:
111
111
  bWVkaW8vc2VhcmNoL2Jvb2suZG8/YmliaWQ9MzQyODAxIi8+CiAgICA8L2l0
112
112
  ZW0+CiAgPC9jaGFubmVsPgo8L3Jzcz4K
113
113
  http_version: '1.0'
114
- recorded_at: Wed, 08 May 2013 02:55:45 GMT
114
+ recorded_at: Tue, 14 May 2013 04:32:18 GMT
115
115
  - request:
116
116
  method: get
117
117
  uri: http://iss.ndl.go.jp/books/R100000002-I000007602726-00.rdf
@@ -131,7 +131,7 @@ http_interactions:
131
131
  message: OK
132
132
  headers:
133
133
  date:
134
- - Wed, 08 May 2013 02:55:45 GMT
134
+ - Tue, 14 May 2013 04:32:18 GMT
135
135
  server:
136
136
  - Apache
137
137
  etag:
@@ -139,7 +139,7 @@ http_interactions:
139
139
  x-ua-compatible:
140
140
  - IE=Edge,chrome=1
141
141
  x-runtime:
142
- - '0.583153'
142
+ - '0.652397'
143
143
  cache-control:
144
144
  - max-age=0, private, must-revalidate
145
145
  status:
@@ -147,8 +147,8 @@ http_interactions:
147
147
  content-type:
148
148
  - application/rdf+xml; charset=utf-8
149
149
  set-cookie:
150
- - _front_session_id=cc80464b8ab1d0e2c9cac7b3ba4e4583; domain=.iss.ndl.go.jp;
151
- path=/; expires=Wed, 08-May-2013 03:55:46 GMT; HttpOnly
150
+ - _front_session_id=db8711af4ad4c2361c47817fb1e835f9; domain=.iss.ndl.go.jp;
151
+ path=/; expires=Tue, 14-May-2013 05:32:18 GMT; HttpOnly
152
152
  - serverid=1101; path=/
153
153
  vary:
154
154
  - Accept-Encoding,User-Agent
@@ -500,5 +500,5 @@ http_interactions:
500
500
  5p62PC9kY3Rlcm1zOmRlc2NyaXB0aW9uPgogIDwvZGNuZGw6SXRlbT4KPC9y
501
501
  ZGY6UkRGPg==
502
502
  http_version: '1.0'
503
- recorded_at: Wed, 08 May 2013 02:55:46 GMT
503
+ recorded_at: Tue, 14 May 2013 04:32:18 GMT
504
504
  recorded_with: VCR 2.4.0
@@ -19,7 +19,7 @@ http_interactions:
19
19
  message: OK
20
20
  headers:
21
21
  date:
22
- - Mon, 06 May 2013 19:53:04 GMT
22
+ - Tue, 14 May 2013 04:32:30 GMT
23
23
  server:
24
24
  - Apache
25
25
  etag:
@@ -27,7 +27,7 @@ http_interactions:
27
27
  x-ua-compatible:
28
28
  - IE=Edge,chrome=1
29
29
  x-runtime:
30
- - '0.256298'
30
+ - '0.456958'
31
31
  cache-control:
32
32
  - max-age=0, private, must-revalidate
33
33
  status:
@@ -35,9 +35,9 @@ http_interactions:
35
35
  content-type:
36
36
  - application/xml; charset=utf-8
37
37
  set-cookie:
38
- - _front_session_id=657a8696f2d7c6c9ecb803b98162718e; domain=.iss.ndl.go.jp;
39
- path=/; expires=Mon, 06-May-2013 20:53:04 GMT; HttpOnly
40
- - serverid=1102; path=/
38
+ - _front_session_id=9e7d29218cdad98b371b463874026ee1; domain=.iss.ndl.go.jp;
39
+ path=/; expires=Tue, 14-May-2013 05:32:30 GMT; HttpOnly
40
+ - serverid=1101; path=/
41
41
  vary:
42
42
  - Accept-Encoding,User-Agent
43
43
  content-encoding:
@@ -109,5 +109,5 @@ http_interactions:
109
109
  dHA6Ly9pZC5uZGwuZ28uanAvYmliLzAwMDAwODE4MDAwMyIvPgogICAgPC9p
110
110
  dGVtPgogIDwvY2hhbm5lbD4KPC9yc3M+Cg==
111
111
  http_version: '1.0'
112
- recorded_at: Mon, 06 May 2013 19:53:04 GMT
112
+ recorded_at: Tue, 14 May 2013 04:32:31 GMT
113
113
  recorded_with: VCR 2.4.0
@@ -19,7 +19,7 @@ http_interactions:
19
19
  message: OK
20
20
  headers:
21
21
  date:
22
- - Mon, 06 May 2013 19:53:04 GMT
22
+ - Tue, 14 May 2013 04:32:29 GMT
23
23
  server:
24
24
  - Apache
25
25
  etag:
@@ -27,7 +27,7 @@ http_interactions:
27
27
  x-ua-compatible:
28
28
  - IE=Edge,chrome=1
29
29
  x-runtime:
30
- - '0.212838'
30
+ - '0.204996'
31
31
  cache-control:
32
32
  - max-age=0, private, must-revalidate
33
33
  status:
@@ -35,9 +35,9 @@ http_interactions:
35
35
  content-type:
36
36
  - application/xml; charset=utf-8
37
37
  set-cookie:
38
- - _front_session_id=75b6f5fd54fb92c4fa38287572b2e960; domain=.iss.ndl.go.jp;
39
- path=/; expires=Mon, 06-May-2013 20:53:04 GMT; HttpOnly
40
- - serverid=1105; path=/
38
+ - _front_session_id=20bacbb64d9b26820be5cb8ffc8e440f; domain=.iss.ndl.go.jp;
39
+ path=/; expires=Tue, 14-May-2013 05:32:30 GMT; HttpOnly
40
+ - serverid=1101; path=/
41
41
  vary:
42
42
  - Accept-Encoding,User-Agent
43
43
  content-encoding:
@@ -110,5 +110,5 @@ http_interactions:
110
110
  OnJlc291cmNlPSJodHRwOi8vaWQubmRsLmdvLmpwL2JpYi8wMjM1OTE1MjMi
111
111
  Lz4KICAgIDwvaXRlbT4KICA8L2NoYW5uZWw+CjwvcnNzPgo=
112
112
  http_version: '1.0'
113
- recorded_at: Mon, 06 May 2013 19:53:04 GMT
113
+ recorded_at: Tue, 14 May 2013 04:32:30 GMT
114
114
  recorded_with: VCR 2.4.0
@@ -19,7 +19,7 @@ http_interactions:
19
19
  message: OK
20
20
  headers:
21
21
  date:
22
- - Mon, 06 May 2013 19:53:02 GMT
22
+ - Tue, 14 May 2013 04:32:28 GMT
23
23
  server:
24
24
  - Apache
25
25
  etag:
@@ -27,7 +27,7 @@ http_interactions:
27
27
  x-ua-compatible:
28
28
  - IE=Edge,chrome=1
29
29
  x-runtime:
30
- - '0.170931'
30
+ - '0.247585'
31
31
  cache-control:
32
32
  - max-age=0, private, must-revalidate
33
33
  status:
@@ -35,9 +35,9 @@ http_interactions:
35
35
  content-type:
36
36
  - application/xml; charset=utf-8
37
37
  set-cookie:
38
- - _front_session_id=d5bbfeff0649b267559c41614df68f40; domain=.iss.ndl.go.jp;
39
- path=/; expires=Mon, 06-May-2013 20:53:03 GMT; HttpOnly
40
- - serverid=1101; path=/
38
+ - _front_session_id=12e17ae62b00f688ebf8e13bc9a55d6b; domain=.iss.ndl.go.jp;
39
+ path=/; expires=Tue, 14-May-2013 05:32:28 GMT; HttpOnly
40
+ - serverid=1105; path=/
41
41
  vary:
42
42
  - Accept-Encoding,User-Agent
43
43
  content-encoding:
@@ -156,5 +156,5 @@ http_interactions:
156
156
  PjE8L3JlY29yZFBvc2l0aW9uPgogICAgPC9yZWNvcmQ+CiAgPC9yZWNvcmRz
157
157
  Pgo8L3NlYXJjaFJldHJpZXZlUmVzcG9uc2U+Cg==
158
158
  http_version: '1.0'
159
- recorded_at: Mon, 06 May 2013 19:53:03 GMT
159
+ recorded_at: Tue, 14 May 2013 04:32:28 GMT
160
160
  recorded_with: VCR 2.4.0
@@ -19,7 +19,7 @@ http_interactions:
19
19
  message: OK
20
20
  headers:
21
21
  date:
22
- - Mon, 06 May 2013 19:52:54 GMT
22
+ - Tue, 14 May 2013 04:32:22 GMT
23
23
  server:
24
24
  - Apache
25
25
  etag:
@@ -27,7 +27,7 @@ http_interactions:
27
27
  x-ua-compatible:
28
28
  - IE=Edge,chrome=1
29
29
  x-runtime:
30
- - '0.247530'
30
+ - '0.211172'
31
31
  cache-control:
32
32
  - max-age=0, private, must-revalidate
33
33
  status:
@@ -35,9 +35,9 @@ http_interactions:
35
35
  content-type:
36
36
  - application/xml; charset=utf-8
37
37
  set-cookie:
38
- - _front_session_id=f62dd4f1911cfdba14099561a88fb8dd; domain=.iss.ndl.go.jp;
39
- path=/; expires=Mon, 06-May-2013 20:52:55 GMT; HttpOnly
40
- - serverid=1102; path=/
38
+ - _front_session_id=f0649eea993af0256f93f0bc5c9f1400; domain=.iss.ndl.go.jp;
39
+ path=/; expires=Tue, 14-May-2013 05:32:22 GMT; HttpOnly
40
+ - serverid=1101; path=/
41
41
  vary:
42
42
  - Accept-Encoding,User-Agent
43
43
  content-encoding:
@@ -190,5 +190,5 @@ http_interactions:
190
190
  b24+MTwvcmVjb3JkUG9zaXRpb24+CiAgICA8L3JlY29yZD4KICA8L3JlY29y
191
191
  ZHM+Cjwvc2VhcmNoUmV0cmlldmVSZXNwb25zZT4K
192
192
  http_version: '1.0'
193
- recorded_at: Mon, 06 May 2013 19:52:55 GMT
193
+ recorded_at: Tue, 14 May 2013 04:32:22 GMT
194
194
  recorded_with: VCR 2.4.0
@@ -19,7 +19,7 @@ http_interactions:
19
19
  message: OK
20
20
  headers:
21
21
  date:
22
- - Mon, 06 May 2013 19:52:55 GMT
22
+ - Tue, 14 May 2013 04:32:23 GMT
23
23
  server:
24
24
  - Apache
25
25
  etag:
@@ -27,7 +27,7 @@ http_interactions:
27
27
  x-ua-compatible:
28
28
  - IE=Edge,chrome=1
29
29
  x-runtime:
30
- - '0.234703'
30
+ - '0.217347'
31
31
  cache-control:
32
32
  - max-age=0, private, must-revalidate
33
33
  status:
@@ -35,8 +35,8 @@ http_interactions:
35
35
  content-type:
36
36
  - application/xml; charset=utf-8
37
37
  set-cookie:
38
- - _front_session_id=9bb0c16633aaeae80f127930a050c849; domain=.iss.ndl.go.jp;
39
- path=/; expires=Mon, 06-May-2013 20:52:56 GMT; HttpOnly
38
+ - _front_session_id=726113335917a32a381aa83a4bf09f86; domain=.iss.ndl.go.jp;
39
+ path=/; expires=Tue, 14-May-2013 05:32:23 GMT; HttpOnly
40
40
  - serverid=1102; path=/
41
41
  vary:
42
42
  - Accept-Encoding,User-Agent
@@ -182,5 +182,5 @@ http_interactions:
182
182
  PjE8L3JlY29yZFBvc2l0aW9uPgogICAgPC9yZWNvcmQ+CiAgPC9yZWNvcmRz
183
183
  Pgo8L3NlYXJjaFJldHJpZXZlUmVzcG9uc2U+Cg==
184
184
  http_version: '1.0'
185
- recorded_at: Mon, 06 May 2013 19:52:56 GMT
185
+ recorded_at: Tue, 14 May 2013 04:32:23 GMT
186
186
  recorded_with: VCR 2.4.0
@@ -19,7 +19,7 @@ http_interactions:
19
19
  message: OK
20
20
  headers:
21
21
  date:
22
- - Mon, 06 May 2013 19:53:01 GMT
22
+ - Tue, 14 May 2013 04:32:27 GMT
23
23
  server:
24
24
  - Apache
25
25
  etag:
@@ -27,7 +27,7 @@ http_interactions:
27
27
  x-ua-compatible:
28
28
  - IE=Edge,chrome=1
29
29
  x-runtime:
30
- - '0.172234'
30
+ - '0.160966'
31
31
  cache-control:
32
32
  - max-age=0, private, must-revalidate
33
33
  status:
@@ -35,9 +35,9 @@ http_interactions:
35
35
  content-type:
36
36
  - application/xml; charset=utf-8
37
37
  set-cookie:
38
- - _front_session_id=845c4031f7010e3050e8bb2998fc8963; domain=.iss.ndl.go.jp;
39
- path=/; expires=Mon, 06-May-2013 20:53:01 GMT; HttpOnly
40
- - serverid=1105; path=/
38
+ - _front_session_id=ccb8634b0edc9e212e72f7ecaa466bc9; domain=.iss.ndl.go.jp;
39
+ path=/; expires=Tue, 14-May-2013 05:32:27 GMT; HttpOnly
40
+ - serverid=1102; path=/
41
41
  vary:
42
42
  - Accept-Encoding,User-Agent
43
43
  content-encoding:
@@ -138,5 +138,5 @@ http_interactions:
138
138
  dGlvbj4KICAgIDwvcmVjb3JkPgogIDwvcmVjb3Jkcz4KPC9zZWFyY2hSZXRy
139
139
  aWV2ZVJlc3BvbnNlPgo=
140
140
  http_version: '1.0'
141
- recorded_at: Mon, 06 May 2013 19:53:01 GMT
141
+ recorded_at: Tue, 14 May 2013 04:32:27 GMT
142
142
  recorded_with: VCR 2.4.0
@@ -19,7 +19,7 @@ http_interactions:
19
19
  message: OK
20
20
  headers:
21
21
  date:
22
- - Mon, 06 May 2013 19:52:59 GMT
22
+ - Tue, 14 May 2013 04:32:25 GMT
23
23
  server:
24
24
  - Apache
25
25
  etag:
@@ -27,7 +27,7 @@ http_interactions:
27
27
  x-ua-compatible:
28
28
  - IE=Edge,chrome=1
29
29
  x-runtime:
30
- - '0.258405'
30
+ - '0.300924'
31
31
  cache-control:
32
32
  - max-age=0, private, must-revalidate
33
33
  status:
@@ -35,9 +35,9 @@ http_interactions:
35
35
  content-type:
36
36
  - application/xml; charset=utf-8
37
37
  set-cookie:
38
- - _front_session_id=e488b2c7f1d49a1a9da942bba092779d; domain=.iss.ndl.go.jp;
39
- path=/; expires=Mon, 06-May-2013 20:53:00 GMT; HttpOnly
40
- - serverid=1105; path=/
38
+ - _front_session_id=ebd6bd3e271d6b8b3602b8e8aa3d3224; domain=.iss.ndl.go.jp;
39
+ path=/; expires=Tue, 14-May-2013 05:32:25 GMT; HttpOnly
40
+ - serverid=1102; path=/
41
41
  vary:
42
42
  - Accept-Encoding,User-Agent
43
43
  content-encoding:
@@ -219,5 +219,5 @@ http_interactions:
219
219
  b3JkUG9zaXRpb24+MTwvcmVjb3JkUG9zaXRpb24+CiAgICA8L3JlY29yZD4K
220
220
  ICA8L3JlY29yZHM+Cjwvc2VhcmNoUmV0cmlldmVSZXNwb25zZT4K
221
221
  http_version: '1.0'
222
- recorded_at: Mon, 06 May 2013 19:53:00 GMT
222
+ recorded_at: Tue, 14 May 2013 04:32:25 GMT
223
223
  recorded_with: VCR 2.4.0