enju_biblio 0.1.0.pre2 → 0.1.0.pre3

Sign up to get free protection for your applications and to get access to all the features.
Files changed (66) hide show
  1. data/app/controllers/carrier_types_controller.rb +1 -0
  2. data/app/controllers/content_types_controller.rb +1 -4
  3. data/app/controllers/countries_controller.rb +1 -4
  4. data/app/controllers/create_types_controller.rb +1 -0
  5. data/app/controllers/extents_controller.rb +1 -4
  6. data/app/controllers/form_of_works_controller.rb +1 -0
  7. data/app/controllers/frequencies_controller.rb +1 -0
  8. data/app/controllers/languages_controller.rb +1 -4
  9. data/app/controllers/licenses_controller.rb +1 -4
  10. data/app/controllers/manifestation_relationship_types_controller.rb +1 -0
  11. data/app/controllers/manifestation_relationships_controller.rb +7 -4
  12. data/app/controllers/manifestations_controller.rb +1 -1
  13. data/app/controllers/medium_of_performances_controller.rb +1 -4
  14. data/app/controllers/patron_relationship_types_controller.rb +1 -0
  15. data/app/controllers/patron_relationships_controller.rb +7 -4
  16. data/app/controllers/patron_types_controller.rb +1 -4
  17. data/app/controllers/produce_types_controller.rb +1 -0
  18. data/app/controllers/realize_types_controller.rb +1 -0
  19. data/app/controllers/series_has_manifestations_controller.rb +2 -0
  20. data/app/controllers/series_statement_relationships_controller.rb +20 -0
  21. data/app/controllers/series_statements_controller.rb +24 -1
  22. data/app/models/picture_file.rb +2 -0
  23. data/app/models/series_statement.rb +20 -4
  24. data/app/models/series_statement_relationship.rb +17 -0
  25. data/app/views/items/show.html.erb +1 -1
  26. data/app/views/manifestation_relationships/index.html.erb +1 -1
  27. data/app/views/manifestations/_submenu_series_statement.html.erb +1 -0
  28. data/app/views/patron_relationships/index.html.erb +1 -1
  29. data/app/views/patrons/_work_list.html.erb +1 -1
  30. data/app/views/patrons/show.html.erb +2 -2
  31. data/app/views/series_statement_relationships/_form.html.erb +27 -0
  32. data/app/views/series_statement_relationships/edit.html.erb +15 -0
  33. data/app/views/series_statement_relationships/index.html.erb +34 -0
  34. data/app/views/series_statement_relationships/new.html.erb +14 -0
  35. data/app/views/series_statement_relationships/show.html.erb +24 -0
  36. data/app/views/series_statements/_index_parent.html.erb +55 -0
  37. data/app/views/series_statements/index.html.erb +2 -0
  38. data/config/locales/translation_en.yml +6 -0
  39. data/config/locales/translation_ja.yml +6 -0
  40. data/config/routes.rb +3 -0
  41. data/db/migrate/20120728204337_create_series_statement_relationships.rb +11 -0
  42. data/lib/enju_biblio/version.rb +1 -1
  43. data/lib/generators/enju_biblio/views_generator.rb +1 -0
  44. data/spec/cassette_library/enju_ndl/manifestation.yml +10 -10
  45. data/spec/cassette_library/enju_ndl/ndl_search.yml +18 -18
  46. data/spec/controllers/series_statement_relationships_controller_spec.rb +179 -0
  47. data/spec/dummy/app/models/ability.rb +2 -0
  48. data/spec/dummy/db/schema.rb +9 -1
  49. data/spec/dummy/db/test.sqlite3 +0 -0
  50. data/spec/dummy/solr/conf/schema.xml +1 -7
  51. data/spec/dummy/solr/data/test/index/segments.gen +0 -0
  52. data/spec/dummy/solr/data/test/index/segments_5hq +0 -0
  53. data/spec/dummy/solr/data/test/spellchecker/segments_1 +0 -0
  54. data/spec/dummy/tmp/cache/4F7/F90/default_role +0 -0
  55. data/spec/dummy/tmp/cache/6E4/420/search_engine_all +0 -0
  56. data/spec/factories/series_statement_relationship.rb +8 -0
  57. data/spec/models/series_statement_relationship_spec.rb +4 -0
  58. data/spec/requests/series_statement_relationships_spec.rb +11 -0
  59. data/spec/routing/series_statement_relationships_routing_spec.rb +35 -0
  60. data/spec/views/series_statement_relationships/edit.html.erb_spec.rb +20 -0
  61. data/spec/views/series_statement_relationships/index.html.erb_spec.rb +23 -0
  62. data/spec/views/series_statement_relationships/new.html.erb_spec.rb +20 -0
  63. data/spec/views/series_statement_relationships/show.html.erb_spec.rb +17 -0
  64. metadata +31 -6
  65. data/spec/dummy/db/development.sqlite3 +0 -0
  66. data/spec/dummy/solr/data/test/index/segments_q1 +0 -0
@@ -22,7 +22,7 @@
22
22
  <% end %>
23
23
  </table>
24
24
 
25
- <br />
25
+ <%= paginate(@manifestation_relationships) %>
26
26
 
27
27
  </div>
28
28
  </div>
@@ -4,5 +4,6 @@
4
4
  <% end %>
5
5
  <% if can? :update, @series_statement %>
6
6
  <li><%= link_to t('page.edit'), edit_series_statement_path(@series_statement) %></li>
7
+ <li><%= link_to t('page.add_child'), series_statements_path(:parent_id => @series_statement.id) %></li>
7
8
  <% end %>
8
9
  </ul>
@@ -22,7 +22,7 @@
22
22
  <% end %>
23
23
  </table>
24
24
 
25
- <br />
25
+ <%= paginate(@manifestation_relationships) %>
26
26
 
27
27
  </div>
28
28
  </div>
@@ -1,5 +1,5 @@
1
1
  <div id="work">
2
- <%= paginate(@works, :param_name => :work_list_page, :remote => true -%>
2
+ <%= paginate(@works, :param_name => :work_list_page, :remote => true) -%>
3
3
  <ul>
4
4
  <%- @works.each do |work| -%>
5
5
  <li>
@@ -122,11 +122,11 @@
122
122
  <%- if !@patron.user or (@patron.user and current_user.try(:has_role?, 'Administrator')) %>
123
123
  <tr>
124
124
  <td><strong><%= t('activerecord.attributes.patron.date_of_birth') -%>:</strong></td>
125
- <td><%= l(@patron.date_of_birth, :formats => :only_date) if @patron.date_of_birth -%></td>
125
+ <td><%= l(@patron.date_of_birth, :format => :only_date) if @patron.date_of_birth -%></td>
126
126
  </tr>
127
127
  <tr>
128
128
  <td><strong><%= t('activerecord.attributes.patron.date_of_death') -%>:</strong></td>
129
- <td><%= l(@patron.date_of_death, :formats => :only_date) if @patron.date_of_death -%></td>
129
+ <td><%= l(@patron.date_of_death, :format => :only_date) if @patron.date_of_death -%></td>
130
130
  </tr>
131
131
  <% end %>
132
132
  <%- end -%>
@@ -0,0 +1,27 @@
1
+ <%= form_for(@series_statement_relationship) do |f| %>
2
+ <%= f.error_messages -%>
3
+
4
+ <div class="field">
5
+ <% if @series_statement_relationship.try(:parent) %>
6
+ <%= f.label :parent_id %><br />
7
+ <%= link_to @series_statement_relationship.parent.original_title, @series_statement_relationship.parent %>
8
+ <%= f.hidden_field :parent_id %>
9
+ <% else %>
10
+ <%= f.label :parent_id %><br />
11
+ <%= f.text_field :parent_id %>
12
+ <% end %>
13
+ </div>
14
+ <div class="field">
15
+ <% if @series_statement_relationship.child.try(:original_title) %>
16
+ <%= f.label :child_id %><br />
17
+ <%= link_to @series_statement_relationship.child.original_title, @series_statement_relationship.child %>
18
+ <%= f.hidden_field :child_id %>
19
+ <% else %>
20
+ <%= f.label :child_id %><br />
21
+ <%= f.text_field :child_id %>
22
+ <% end %>
23
+ </div>
24
+ <div class="actions">
25
+ <%= f.submit %>
26
+ </div>
27
+ <% end %>
@@ -0,0 +1,15 @@
1
+ <div id="content_detail" class="ui-corner-all">
2
+ <h1 class="title"><%= t('page.editing', :model => t('activerecord.models.series_statement_relationship')) -%></h1>
3
+ <div id="content_list">
4
+
5
+ <%= render 'form' %>
6
+
7
+ </div>
8
+ </div>
9
+
10
+ <div id="submenu" class="ui-corner-all">
11
+ <ul>
12
+ <li><%= link_to t('page.show'), @series_statement_relationship %></li>
13
+ <li><%= link_to t('page.back'), series_statement_relationships_path %></li>
14
+ </ul>
15
+ </div>
@@ -0,0 +1,34 @@
1
+ <div id="content_detail" class="ui-corner-all">
2
+ <h1 class="title"><%= t('page.listing', :model => t('activerecord.models.series_statement_relationship')) -%></h1>
3
+ <div id="content_list">
4
+
5
+ <table class="table table-striped index">
6
+ <tr>
7
+ <th><%= t('activerecord.attributes.series_statement_relationship.parent_id') %></th>
8
+ <th><%= t('activerecord.attributes.series_statement_relationship.child_id') %></th>
9
+ <th></th>
10
+ <th></th>
11
+ <th></th>
12
+ </tr>
13
+
14
+ <% @series_statement_relationships.each do |series_statement_relationship| %>
15
+ <tr>
16
+ <td><%= link_to series_statement_relationship.parent.original_title, series_statement_relationship.parent %></td>
17
+ <td><%= link_to series_statement_relationship.child.original_title, series_statement_relationship.child %></td>
18
+ <td><%= link_to t('page.show'), series_statement_relationship %></td>
19
+ <td><%= link_to t('page.edit'), edit_series_statement_relationship_path(series_statement_relationship) %></td>
20
+ <td><%= link_to t('page.destroy'), series_statement_relationship, method: :delete, data: { confirm: t('page.are_you_sure') } %></td>
21
+ </tr>
22
+ <% end %>
23
+ </table>
24
+
25
+ <%= paginate(@series_statement_relationships) %>
26
+
27
+ </div>
28
+ </div>
29
+
30
+ <div id="submenu" class="ui-corner-all">
31
+ <ul>
32
+ <li><%= link_to t('page.new', :model => t('activerecord.models.series_statement_relationship')), new_series_statement_relationship_path -%></li>
33
+ </ul>
34
+ </div>
@@ -0,0 +1,14 @@
1
+ <div id="content_detail" class="ui-corner-all">
2
+ <h1 class="title"><%= t('page.new', :model => t('activerecord.models.series_statement_relationship')) -%></h1>
3
+ <div id="content_list">
4
+
5
+ <%= render 'form' %>
6
+
7
+ </div>
8
+ </div>
9
+
10
+ <div id="submenu" class="ui-corner-all">
11
+ <ul>
12
+ <li><%= link_to t('page.back'), series_statement_relationships_path %></li>
13
+ </ul>
14
+ </div>
@@ -0,0 +1,24 @@
1
+ <div id="content_detail" class="ui-corner-all">
2
+ <h1 class="title"><%= t('page.showing', :model => t('activerecord.models.series_statement_relationship')) -%></h1>
3
+ <div id="content_list">
4
+ <p id="notice"><%= notice %></p>
5
+
6
+ <p>
7
+ <b><%= t('activerecord.attributes.series_statement_relationship.parent_id') %></b>
8
+ <%= link_to @series_statement_relationship.parent.original_title, @series_statement_relationship.parent %>
9
+ </p>
10
+
11
+ <p>
12
+ <b><%= t('activerecord.attributes.series_statement_relationship.child_id') %></b>
13
+ <%= link_to @series_statement_relationship.child.original_title, @series_statement_relationship.child %>
14
+ </p>
15
+
16
+ </div>
17
+ </div>
18
+
19
+ <div id="submenu" class="ui-corner-all">
20
+ <ul>
21
+ <li><%= link_to t('page.edit'), edit_series_statement_relationship_path(@series_statement_relationship) %></li>
22
+ <li><%= link_to t('page.back'), series_statement_relationships_path %></li>
23
+ </ul>
24
+ </div>
@@ -0,0 +1,55 @@
1
+ <div id="content_detail" class="ui-corner-all">
2
+ <h1 class="title"><%= t('page.listing', :model => t('activerecord.models.series_statement')) -%></h1>
3
+ <div id="content_list">
4
+
5
+ <div class="search_form">
6
+ <h2>[S] <%= link_to @parent.original_title, @parent %></h2>
7
+ <%= form_for :series_statements, :url => series_statements_path, :html => {:method => 'get'} do -%>
8
+ <p>
9
+ <%= t('page.search_term') -%>: <%= search_field_tag 'query', h(@query), {:id => 'search_form_top', :class => 'search_form', :placeholder => t('page.search_term')} -%>
10
+ <%- if can? :update, @parent -%>
11
+ <%= render 'page/add' %>
12
+ <%- end -%>
13
+ <%= hidden_field_tag :parent_id, @parent.id %>
14
+ <%= submit_tag t('page.search') -%>
15
+ <%= link_to t('page.back_to_index'), series_statements_path -%>
16
+ </p>
17
+ <%- end -%>
18
+ </div>
19
+
20
+ <table class="table table-striped index">
21
+ <tr>
22
+ <th><%= t('activerecord.attributes.series_statement.original_title') -%></th>
23
+ <th><%= t('activerecord.attributes.series_statement.issn') -%></th>
24
+ <th><%= t('activerecord.attributes.series_statement.series_statement_identifier') -%></th>
25
+ <th id="edit_icons"></th>
26
+ </tr>
27
+
28
+ <%- @series_statements.each do |series_statement| -%>
29
+ <tr class="line<%= cycle("0", "1") -%>">
30
+ <td><%= link_to series_statement.original_title, series_statement -%></td>
31
+ <td><%= series_statement.issn -%></td>
32
+ <td><%= series_statement.series_statement_identifier -%></td>
33
+ <td>
34
+ <%- if can? :update, series_statement -%>
35
+ <%- if params[:mode] == 'add' -%>
36
+ <%= link_to t('page.add'), new_series_statement_relationship_path(:parent_id => @parent.id, :child_id => series_statement.id) unless series_statement.parents.where(:id => @parent.id).first or series_statement == @parent -%>
37
+ <%- else -%>
38
+ <% relationship = SeriesStatementRelationship.where(:parent_id => @parent.id, :child_id => series_statement.id).first %>
39
+ <%= link_to t('page.destroy'), series_statement_relationship_path(relationship), :data => {:confirm => t('page.are_you_sure')}, :method => :delete if series_statement.parents.where(:id => @parent.id).first -%>
40
+ <%- end -%>
41
+ <%- end -%>
42
+ </td>
43
+ </tr>
44
+ <%- end -%>
45
+ </table>
46
+
47
+ <%= paginate(@series_statements) -%>
48
+ </div>
49
+ </div>
50
+
51
+ <div id="submenu" class="ui-corner-all">
52
+ <ul>
53
+ <li><%= link_to t('page.listing', :model => t('activerecord.models.series_statement_merge_list')), @series_statement_merge_list -%></li>
54
+ </ul>
55
+ </div>
@@ -1,5 +1,7 @@
1
1
  <%- if @manifestation -%>
2
2
  <%= render 'index_manifestation' -%>
3
+ <%- elsif @parent -%>
4
+ <%= render 'index_parent' -%>
3
5
  <%- elsif @series_statement_merge_list -%>
4
6
  <%= render 'index_series_statement_merge_list' -%>
5
7
  <%- else -%>
@@ -34,6 +34,12 @@ en:
34
34
  resource_import_result: Resource Import Result
35
35
  series_has_manifestation: Series statement to manifestation
36
36
  series_statement: Series statement
37
+ series_statement_relationship: Series statement relationship
38
+
39
+ attributes:
40
+ series_statement_relationship:
41
+ parent_id: Parent
42
+ child_id: Child
37
43
 
38
44
  resource_import_file:
39
45
  update_relationship: Update relationship
@@ -34,6 +34,12 @@ ja:
34
34
  resource_import_result: 資料インポートの結果
35
35
  series_has_manifestation: シリーズ情報と資料の関係
36
36
  series_statement: シリーズ情報
37
+ series_statement_relationship: シリーズ情報の関係
38
+
39
+ attributes:
40
+ series_statement_relationship:
41
+ parent_id: 親
42
+ child_id: 子
37
43
 
38
44
  resource_import_file:
39
45
  update_relationship: 関連を更新
@@ -69,8 +69,11 @@ Rails.application.routes.draw do
69
69
  resources :series_statements do
70
70
  resources :manifestations
71
71
  resources :series_has_manifestations
72
+ resources :series_statement_relationships
72
73
  end
73
74
 
75
+ resources :series_statement_relationships
76
+
74
77
  resources :countries
75
78
  resources :languages
76
79
  resources :form_of_works
@@ -0,0 +1,11 @@
1
+ class CreateSeriesStatementRelationships < ActiveRecord::Migration
2
+ def change
3
+ create_table :series_statement_relationships do |t|
4
+ t.integer :parent_id
5
+ t.integer :child_id
6
+ t.integer :position
7
+
8
+ t.timestamps
9
+ end
10
+ end
11
+ end
@@ -1,3 +1,3 @@
1
1
  module EnjuBiblio
2
- VERSION = "0.1.0.pre2"
2
+ VERSION = "0.1.0.pre3"
3
3
  end
@@ -39,6 +39,7 @@ module EnjuBiblio
39
39
  resource_import_files
40
40
  resource_import_results
41
41
  series_has_manifestations
42
+ series_statement_relationships
42
43
  series_statements
43
44
  )
44
45
 
@@ -17,7 +17,7 @@ http_interactions:
17
17
  message: OK
18
18
  headers:
19
19
  date:
20
- - Sat, 02 Jun 2012 13:40:23 GMT
20
+ - Fri, 01 Jun 2012 00:05:07 GMT
21
21
  server:
22
22
  - Apache
23
23
  x-powered-by:
@@ -27,7 +27,7 @@ http_interactions:
27
27
  x-ua-compatible:
28
28
  - IE=Edge,chrome=1
29
29
  x-runtime:
30
- - "0.153323"
30
+ - "0.224538"
31
31
  cache-control:
32
32
  - max-age=0, private, must-revalidate
33
33
  content-length:
@@ -37,8 +37,8 @@ http_interactions:
37
37
  content-type:
38
38
  - application/xml; charset=utf-8
39
39
  set-cookie:
40
- - _front_session_id=726567f43b738891cd20529045366623; domain=.iss.ndl.go.jp; path=/; expires=Sat, 02-Jun-2012 14:40:23 GMT; HttpOnly
41
- - serverid=1105; path=/
40
+ - _front_session_id=7d526ab7c3f484c682b7ee59096e66bf; domain=.iss.ndl.go.jp; path=/; expires=Fri, 01-Jun-2012 01:05:07 GMT; HttpOnly
41
+ - serverid=1102; path=/
42
42
  vary:
43
43
  - Accept-Encoding,User-Agent
44
44
  connection:
@@ -102,7 +102,7 @@ http_interactions:
102
102
  ZGVzY3JpcHRpb24+CiAgICA8L2l0ZW0+CiAgPC9jaGFubmVsPgo8L3Jzcz4K
103
103
 
104
104
  http_version: "1.0"
105
- recorded_at: Sat, 02 Jun 2012 13:40:23 GMT
105
+ recorded_at: Fri, 01 Jun 2012 00:05:08 GMT
106
106
  - request:
107
107
  method: get
108
108
  uri: http://iss.ndl.go.jp/books/R100000002-I000007602726-00.rdf
@@ -120,7 +120,7 @@ http_interactions:
120
120
  message: OK
121
121
  headers:
122
122
  date:
123
- - Sat, 02 Jun 2012 13:40:23 GMT
123
+ - Fri, 01 Jun 2012 00:05:08 GMT
124
124
  server:
125
125
  - Apache
126
126
  x-powered-by:
@@ -130,7 +130,7 @@ http_interactions:
130
130
  x-ua-compatible:
131
131
  - IE=Edge,chrome=1
132
132
  x-runtime:
133
- - "0.886560"
133
+ - "0.406517"
134
134
  cache-control:
135
135
  - max-age=0, private, must-revalidate
136
136
  content-length:
@@ -140,8 +140,8 @@ http_interactions:
140
140
  content-type:
141
141
  - application/rdf+xml; charset=utf-8
142
142
  set-cookie:
143
- - _front_session_id=f2df568d1169394863f7ae3973585aa4; domain=.iss.ndl.go.jp; path=/; expires=Sat, 02-Jun-2012 14:40:24 GMT; HttpOnly
144
- - serverid=1101; path=/
143
+ - _front_session_id=27b1944a32962a13f3e8284d0e281ea8; domain=.iss.ndl.go.jp; path=/; expires=Fri, 01-Jun-2012 01:05:08 GMT; HttpOnly
144
+ - serverid=1105; path=/
145
145
  vary:
146
146
  - Accept-Encoding,User-Agent
147
147
  connection:
@@ -519,5 +519,5 @@ http_interactions:
519
519
  dGlvbj4KICA8L2RjbmRsOkl0ZW0+CjwvcmRmOlJERj4=
520
520
 
521
521
  http_version: "1.0"
522
- recorded_at: Sat, 02 Jun 2012 13:40:24 GMT
522
+ recorded_at: Fri, 01 Jun 2012 00:05:08 GMT
523
523
  recorded_with: VCR 2.2.0
@@ -17,7 +17,7 @@ http_interactions:
17
17
  message: OK
18
18
  headers:
19
19
  date:
20
- - Sat, 02 Jun 2012 14:18:10 GMT
20
+ - Wed, 06 Jun 2012 00:47:18 GMT
21
21
  server:
22
22
  - Apache
23
23
  x-powered-by:
@@ -27,7 +27,7 @@ http_interactions:
27
27
  x-ua-compatible:
28
28
  - IE=Edge,chrome=1
29
29
  x-runtime:
30
- - "0.159388"
30
+ - "0.159748"
31
31
  cache-control:
32
32
  - max-age=0, private, must-revalidate
33
33
  content-length:
@@ -37,7 +37,7 @@ http_interactions:
37
37
  content-type:
38
38
  - application/xml; charset=utf-8
39
39
  set-cookie:
40
- - _front_session_id=5170aa59dc71a4b1408f4b5001e315c3; domain=.iss.ndl.go.jp; path=/; expires=Sat, 02-Jun-2012 15:18:10 GMT; HttpOnly
40
+ - _front_session_id=6cbce8417ee4d4abc56ba0833e296639; domain=.iss.ndl.go.jp; path=/; expires=Wed, 06-Jun-2012 01:47:18 GMT; HttpOnly
41
41
  - serverid=1105; path=/
42
42
  vary:
43
43
  - Accept-Encoding,User-Agent
@@ -103,7 +103,7 @@ http_interactions:
103
103
  dGlvbj4KICAgIDwvaXRlbT4KICA8L2NoYW5uZWw+CjwvcnNzPgo=
104
104
 
105
105
  http_version: "1.0"
106
- recorded_at: Sat, 02 Jun 2012 14:18:10 GMT
106
+ recorded_at: Wed, 06 Jun 2012 00:47:20 GMT
107
107
  - request:
108
108
  method: get
109
109
  uri: http://iss.ndl.go.jp/books/R100000002-I000009423883-00.rdf
@@ -121,7 +121,7 @@ http_interactions:
121
121
  message: OK
122
122
  headers:
123
123
  date:
124
- - Sat, 02 Jun 2012 14:18:10 GMT
124
+ - Wed, 06 Jun 2012 00:47:19 GMT
125
125
  server:
126
126
  - Apache
127
127
  x-powered-by:
@@ -131,7 +131,7 @@ http_interactions:
131
131
  x-ua-compatible:
132
132
  - IE=Edge,chrome=1
133
133
  x-runtime:
134
- - "0.836118"
134
+ - "0.744922"
135
135
  cache-control:
136
136
  - max-age=0, private, must-revalidate
137
137
  content-length:
@@ -141,7 +141,7 @@ http_interactions:
141
141
  content-type:
142
142
  - application/rdf+xml; charset=utf-8
143
143
  set-cookie:
144
- - _front_session_id=b364b1688e10e7bf73c43a9bacc873f3; domain=.iss.ndl.go.jp; path=/; expires=Sat, 02-Jun-2012 15:18:11 GMT; HttpOnly
144
+ - _front_session_id=fef35c7dea106d383888b8651402db4c; domain=.iss.ndl.go.jp; path=/; expires=Wed, 06-Jun-2012 01:47:19 GMT; HttpOnly
145
145
  - serverid=1102; path=/
146
146
  vary:
147
147
  - Accept-Encoding,User-Agent
@@ -574,7 +574,7 @@ http_interactions:
574
574
  Y3JpcHRpb24+CiAgPC9kY25kbDpJdGVtPgo8L3JkZjpSREY+
575
575
 
576
576
  http_version: "1.0"
577
- recorded_at: Sat, 02 Jun 2012 14:18:11 GMT
577
+ recorded_at: Wed, 06 Jun 2012 00:47:21 GMT
578
578
  - request:
579
579
  method: get
580
580
  uri: http://iss.ndl.go.jp/api/opensearch?dpid=iss-ndl-opac&isbn=9784873114422&cnt=10&idx=1
@@ -592,7 +592,7 @@ http_interactions:
592
592
  message: OK
593
593
  headers:
594
594
  date:
595
- - Sat, 02 Jun 2012 15:28:30 GMT
595
+ - Thu, 07 Jun 2012 12:39:42 GMT
596
596
  server:
597
597
  - Apache
598
598
  x-powered-by:
@@ -602,7 +602,7 @@ http_interactions:
602
602
  x-ua-compatible:
603
603
  - IE=Edge,chrome=1
604
604
  x-runtime:
605
- - "0.086686"
605
+ - "0.118518"
606
606
  cache-control:
607
607
  - max-age=0, private, must-revalidate
608
608
  content-length:
@@ -612,8 +612,8 @@ http_interactions:
612
612
  content-type:
613
613
  - application/xml; charset=utf-8
614
614
  set-cookie:
615
- - _front_session_id=dfdbd2213e07e3aa4dbb75a35d02e1da; domain=.iss.ndl.go.jp; path=/; expires=Sat, 02-Jun-2012 16:28:30 GMT; HttpOnly
616
- - serverid=1101; path=/
615
+ - _front_session_id=5bf7f7538d18506400e1081810dc1c1c; domain=.iss.ndl.go.jp; path=/; expires=Thu, 07-Jun-2012 13:39:42 GMT; HttpOnly
616
+ - serverid=1102; path=/
617
617
  vary:
618
618
  - Accept-Encoding,User-Agent
619
619
  connection:
@@ -679,7 +679,7 @@ http_interactions:
679
679
  Y3JpcHRpb24+CiAgICA8L2l0ZW0+CiAgPC9jaGFubmVsPgo8L3Jzcz4K
680
680
 
681
681
  http_version: "1.0"
682
- recorded_at: Sat, 02 Jun 2012 15:28:30 GMT
682
+ recorded_at: Thu, 07 Jun 2012 12:39:43 GMT
683
683
  - request:
684
684
  method: get
685
685
  uri: http://iss.ndl.go.jp/books/R100000002-I000010712584-00.rdf
@@ -697,7 +697,7 @@ http_interactions:
697
697
  message: OK
698
698
  headers:
699
699
  date:
700
- - Sat, 02 Jun 2012 15:28:30 GMT
700
+ - Thu, 07 Jun 2012 12:39:42 GMT
701
701
  server:
702
702
  - Apache
703
703
  x-powered-by:
@@ -707,7 +707,7 @@ http_interactions:
707
707
  x-ua-compatible:
708
708
  - IE=Edge,chrome=1
709
709
  x-runtime:
710
- - "0.892157"
710
+ - "0.918968"
711
711
  cache-control:
712
712
  - max-age=0, private, must-revalidate
713
713
  content-length:
@@ -717,8 +717,8 @@ http_interactions:
717
717
  content-type:
718
718
  - application/rdf+xml; charset=utf-8
719
719
  set-cookie:
720
- - _front_session_id=26fdffc6b12b561c67c3656670a6d93c; domain=.iss.ndl.go.jp; path=/; expires=Sat, 02-Jun-2012 16:28:31 GMT; HttpOnly
721
- - serverid=1101; path=/
720
+ - _front_session_id=0ea752e083d0c700c523bbee26d499fc; domain=.iss.ndl.go.jp; path=/; expires=Thu, 07-Jun-2012 13:39:43 GMT; HttpOnly
721
+ - serverid=1105; path=/
722
722
  vary:
723
723
  - Accept-Encoding,User-Agent
724
724
  connection:
@@ -1136,5 +1136,5 @@ http_interactions:
1136
1136
  PC9yZGY6UkRGPg==
1137
1137
 
1138
1138
  http_version: "1.0"
1139
- recorded_at: Sat, 02 Jun 2012 15:28:31 GMT
1139
+ recorded_at: Thu, 07 Jun 2012 12:39:44 GMT
1140
1140
  recorded_with: VCR 2.2.0