enju_loc 0.1.1 → 0.2.0.beta.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (46) hide show
  1. checksums.yaml +4 -4
  2. data/README.rdoc +3 -3
  3. data/app/controllers/loc_search_controller.rb +3 -6
  4. data/app/policies/loc_search_policy.rb +9 -0
  5. data/app/views/loc_search/index.html.erb +8 -6
  6. data/config/locales/en.yml +1 -0
  7. data/config/locales/ja.yml +1 -0
  8. data/lib/enju_loc/engine.rb +1 -2
  9. data/lib/enju_loc/version.rb +1 -1
  10. data/spec/cassette_library/LocSearch/_ModsRecord/should_parse_MODS_metadata.yml +3 -3
  11. data/spec/cassette_library/LocSearch/_import_from_sru_response/should_create_a_valid_manifestation.yml +3 -3
  12. data/spec/cassette_library/LocSearch/_import_from_sru_response/should_create_lcsh_subjects_only.yml +3 -3
  13. data/spec/cassette_library/LocSearch/_import_from_sru_response/should_create_multiple_series_statements.yml +46 -37
  14. data/spec/cassette_library/LocSearch/_import_from_sru_response/should_distinguish_title_information_with_subject.yml +3 -3
  15. data/spec/cassette_library/LocSearch/_import_from_sru_response/should_import_a_manifestation_that_has_invalid_classification.yml +3 -3
  16. data/spec/cassette_library/LocSearch/_import_from_sru_response/should_import_another_serial.yml +3 -3
  17. data/spec/cassette_library/LocSearch/_import_from_sru_response/should_import_audio_book.yml +3 -3
  18. data/spec/cassette_library/LocSearch/_import_from_sru_response/should_import_e-resource.yml +3 -3
  19. data/spec/cassette_library/LocSearch/_import_from_sru_response/should_import_e-resource_packaged_.yml +3 -3
  20. data/spec/cassette_library/LocSearch/_import_from_sru_response/should_import_lccn_exact_math.yml +3 -3
  21. data/spec/cassette_library/LocSearch/_import_from_sru_response/should_import_notated_music.yml +3 -3
  22. data/spec/cassette_library/LocSearch/_import_from_sru_response/should_import_note_fields.yml +3 -3
  23. data/spec/cassette_library/LocSearch/_import_from_sru_response/should_import_publication_year.yml +3 -3
  24. data/spec/cassette_library/LocSearch/_import_from_sru_response/should_import_serial.yml +3 -3
  25. data/spec/cassette_library/LocSearch/_import_from_sru_response/should_import_video_publication.yml +3 -3
  26. data/spec/cassette_library/LocSearch/_import_from_sru_response/should_parse_title_information_properly.yml +3 -3
  27. data/spec/cassette_library/LocSearch/_import_from_sru_response/should_support_name_and_title_subjects.yml +3 -3
  28. data/spec/cassette_library/LocSearch/_search/should_return_a_search_result.yml +83 -121
  29. data/spec/cassette_library/LocSearchController/GET_index/should_get_index.yml +83 -121
  30. data/spec/cassette_library/LocSearchController/GET_index/should_get_index_with_page_parameter.yml +118 -113
  31. data/spec/cassette_library/LocSearchController/POST_create/should_create_a_bibliographic_record_if_lccn_is_set.yml +3 -3
  32. data/spec/cassette_library/LocSearchController/POST_create/should_not_create_a_bibliographic_record_if_lccn_is_not_set.yml +4 -4
  33. data/spec/cassette_library/loc_search/index/loc_search_menu/should_reflect_query_params_for_views.yml +517 -0
  34. data/spec/dummy/app/controllers/application_controller.rb +8 -3
  35. data/spec/dummy/app/models/user.rb +1 -2
  36. data/spec/dummy/config/application.rb +6 -25
  37. data/spec/dummy/config/environments/development.rb +25 -14
  38. data/spec/dummy/config/environments/production.rb +50 -31
  39. data/spec/dummy/config/environments/test.rb +23 -18
  40. data/spec/dummy/config/initializers/enju_leaf.rb +2 -0
  41. data/spec/fixtures/library_groups.yml +31 -0
  42. data/spec/models/loc_search_spec.rb +2 -2
  43. data/spec/support/devise.rb +2 -2
  44. data/spec/views/loc_search/index.html.erb_spec.rb +14 -0
  45. metadata +40 -33
  46. data/spec/dummy/config/application.yml +0 -38
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 48eaa23ed3197595e01a9d2454f91574bf4dd654
4
- data.tar.gz: b87a4ff66caa5c64c0f0458b8a9924547e5d2ca6
3
+ metadata.gz: b84ec356303bc8df39fc195a2951b6ad48b5f529
4
+ data.tar.gz: 91183bb0407d2121c2f5385c12ad71ab125db6d1
5
5
  SHA512:
6
- metadata.gz: 2b82ef7f8b19219a8828fdd59bc74bbec3104cb87d88202ce7464e10a04cf7c22edbf3eba929f901f35efab4b471d52b49d7cec8b596a02009d7d475654576b3
7
- data.tar.gz: dfaaff9a206607239abff68df544a8aae569793773ebaaa11dcda20679006ccd36bd423da4b67b84c53c3b5029c910cfbb20ef2bf739aabf0cc0c8869da4d3e9
6
+ metadata.gz: 808e12ca34b3494ec62ec11b29b985ad0b7527755a413f1d18eb0f3f6c901e93d64909018482037e60810a765cbe3a21a3516a2daa8890161843e875e28b80e1
7
+ data.tar.gz: 947e10b6a9e28492331203cf69f651bb4e20ec90206bc3c970e824fcbe214ad64d176aa3495f466334ce5e5d2dcd3ef614680f7265a25f1cab58387765967791
data/README.rdoc CHANGED
@@ -1,7 +1,7 @@
1
1
  = EnjuLoc
2
- {<img src="https://travis-ci.org/next-l/enju_loc.svg?branch=1.1" alt="Build Status" />}[https://travis-ci.org/next-l/enju_loc]
3
- {<img src="https://coveralls.io/repos/next-l/enju_loc/badge.svg?branch=1.1&service=github" alt="Coverage Status" />}[https://coveralls.io/github/next-l/enju_loc?branch=1.1]
4
- {<img src="https://hakiri.io/github/next-l/enju_loc/1.1.svg" alt="security" />}[https://hakiri.io/github/next-l/enju_loc/1.1]
2
+ {<img src="https://travis-ci.org/next-l/enju_ndl.svg?branch=1.2" alt="Build Status" />}[https://travis-ci.org/next-l/enju_ndl]
3
+ {<img src="https://coveralls.io/repos/next-l/enju_ndl/badge.svg?branch=1.2&service=github" alt="Coverage Status" />}[https://coveralls.io/github/next-l/enju_ndl?branch=1.2]
4
+ {<img src="https://hakiri.io/github/next-l/enju_loc/1.2.svg" alt="security" />}[https://hakiri.io/github/next-l/enju_loc/1.2]
5
5
 
6
6
  This project rocks and uses MIT-LICENSE.
7
7
 
@@ -1,6 +1,5 @@
1
1
  class LocSearchController < ApplicationController
2
- before_filter :authenticate_user!
3
- before_filter :check_librarian
2
+ before_action :check_policy, only: [:index, :create]
4
3
 
5
4
  def index
6
5
  if params[:page].to_i <= 0
@@ -41,9 +40,7 @@ class LocSearchController < ApplicationController
41
40
  end
42
41
 
43
42
  private
44
- def check_librarian
45
- unless current_user.try(:has_role?, 'Librarian')
46
- access_denied
47
- end
43
+ def check_policy
44
+ authorize LocSearch
48
45
  end
49
46
  end
@@ -0,0 +1,9 @@
1
+ class LocSearchPolicy < ApplicationPolicy
2
+ def index?
3
+ true if user.try(:has_role?, 'Librarian')
4
+ end
5
+
6
+ def create?
7
+ true if user.try(:has_role?, 'Librarian')
8
+ end
9
+ end
@@ -45,10 +45,12 @@
45
45
  </div>
46
46
  </div>
47
47
 
48
- <div id="submenu" class="ui-corner-all ui-widget-content">
49
- <% if defined?(EnjuNdl) %>
50
- <ul>
51
- <li><%= link_to t('enju_ndl.import_from_ndl_search'), ndl_books_path( :query => @query ) %></li>
52
- </ul>
48
+ <% if @query.present? %>
49
+ <div id="submenu" class="ui-corner-all ui-widget-content">
50
+ <ul>
51
+ <li><%= link_to t('enju_loc.same_query_in_loc_search'), "https://catalog.loc.gov/vwebv/search?searchArg=#{u(@query)}&searchCode=GKEY%5E*&searchType=0" %></li>
52
+ <% if defined?(EnjuNdl) %>
53
+ <li><%= link_to t('enju_ndl.import_from_ndl_search'), ndl_books_path( :query => @query ) %></li>
54
+ <% end %>
55
+ </div>
53
56
  <% end %>
54
- </div>
@@ -8,6 +8,7 @@ en:
8
8
  number_of_search_results:
9
9
  one: "1 record found."
10
10
  other: "%{count} records found."
11
+ same_query_in_loc_search: Search LC Online Catalog with the same query.
11
12
  activerecord:
12
13
  models:
13
14
  loc_search: LoC Catalog Search
@@ -6,6 +6,7 @@ ja:
6
6
  add: 追加
7
7
  already_exists: 登録済み
8
8
  number_of_search_results: "%{count} 件の資料が見つかりました。"
9
+ same_query_in_loc_search: "同じ検索語でLC Online Catalogを検索する"
9
10
  activerecord:
10
11
  models:
11
12
  loc_search: 米国議会図書館(LoC)蔵書検索
@@ -1,5 +1,4 @@
1
- require 'nokogiri'
2
- require 'faraday'
1
+ require 'enju_subject'
3
2
 
4
3
  module EnjuLoc
5
4
  class Engine < ::Rails::Engine
@@ -1,3 +1,3 @@
1
1
  module EnjuLoc
2
- VERSION = "0.1.1"
2
+ VERSION = "0.2.0.beta.1"
3
3
  end
@@ -21,7 +21,7 @@ http_interactions:
21
21
  Content-Length:
22
22
  - '7164'
23
23
  Server:
24
- - Metaproxy/1.9.3
24
+ - Metaproxy/1.11.3
25
25
  Connection:
26
26
  - Keep-Alive
27
27
  Content-Type:
@@ -109,5 +109,5 @@ http_interactions:
109
109
  \ <recordOrigin>Converted from MARCXML to MODS version 3.5 using MARC21slim2MODS3-5.xsl\n\t\t\t\t(Revision
110
110
  1.106 2014/12/19)</recordOrigin>\n </recordInfo>\n</mods></zs:recordData><zs:recordPosition>1</zs:recordPosition></zs:record></zs:records><zs:echoedSearchRetrieveRequest><zs:version>1.1</zs:version><zs:query>bath.lccn=2007012024</zs:query><zs:maximumRecords>10</zs:maximumRecords><zs:recordPacking>xml</zs:recordPacking><zs:recordSchema>mods</zs:recordSchema></zs:echoedSearchRetrieveRequest></zs:searchRetrieveResponse>\n"
111
111
  http_version:
112
- recorded_at: Fri, 06 Nov 2015 14:26:58 GMT
113
- recorded_with: VCR 3.0.0
112
+ recorded_at: Thu, 07 Jul 2016 15:06:26 GMT
113
+ recorded_with: VCR 3.0.3
@@ -21,7 +21,7 @@ http_interactions:
21
21
  Content-Length:
22
22
  - '7167'
23
23
  Server:
24
- - Metaproxy/1.9.3
24
+ - Metaproxy/1.11.3
25
25
  Connection:
26
26
  - Keep-Alive
27
27
  Content-Type:
@@ -109,5 +109,5 @@ http_interactions:
109
109
  \ <recordOrigin>Converted from MARCXML to MODS version 3.5 using MARC21slim2MODS3-5.xsl\n\t\t\t\t(Revision
110
110
  1.106 2014/12/19)</recordOrigin>\n </recordInfo>\n</mods></zs:recordData><zs:recordPosition>1</zs:recordPosition></zs:record></zs:records><zs:echoedSearchRetrieveRequest><zs:version>1.1</zs:version><zs:query>bath.lccn=\"^2007012024\"</zs:query><zs:maximumRecords>10</zs:maximumRecords><zs:recordPacking>xml</zs:recordPacking><zs:recordSchema>mods</zs:recordSchema></zs:echoedSearchRetrieveRequest></zs:searchRetrieveResponse>\n"
111
111
  http_version:
112
- recorded_at: Fri, 06 Nov 2015 14:26:40 GMT
113
- recorded_with: VCR 3.0.0
112
+ recorded_at: Thu, 07 Jul 2016 15:06:05 GMT
113
+ recorded_with: VCR 3.0.3
@@ -21,7 +21,7 @@ http_interactions:
21
21
  Content-Length:
22
22
  - '3457'
23
23
  Server:
24
- - Metaproxy/1.9.3
24
+ - Metaproxy/1.11.3
25
25
  Connection:
26
26
  - Keep-Alive
27
27
  Content-Type:
@@ -64,5 +64,5 @@ http_interactions:
64
64
  from MARCXML to MODS version 3.5 using MARC21slim2MODS3-5.xsl\n\t\t\t\t(Revision
65
65
  1.106 2014/12/19)</recordOrigin>\n </recordInfo>\n</mods></zs:recordData><zs:recordPosition>1</zs:recordPosition></zs:record></zs:records><zs:echoedSearchRetrieveRequest><zs:version>1.1</zs:version><zs:query>bath.lccn=\"^2011281911\"</zs:query><zs:maximumRecords>10</zs:maximumRecords><zs:recordPacking>xml</zs:recordPacking><zs:recordSchema>mods</zs:recordSchema></zs:echoedSearchRetrieveRequest></zs:searchRetrieveResponse>\n"
66
66
  http_version:
67
- recorded_at: Fri, 06 Nov 2015 14:26:42 GMT
68
- recorded_with: VCR 3.0.0
67
+ recorded_at: Thu, 07 Jul 2016 15:06:09 GMT
68
+ recorded_with: VCR 3.0.3
@@ -19,9 +19,9 @@ http_interactions:
19
19
  message: OK
20
20
  headers:
21
21
  Content-Length:
22
- - '3698'
22
+ - '4314'
23
23
  Server:
24
- - Metaproxy/1.9.3
24
+ - Metaproxy/1.11.3
25
25
  Connection:
26
26
  - Keep-Alive
27
27
  Content-Type:
@@ -31,41 +31,50 @@ http_interactions:
31
31
  string: "<?xml version=\"1.0\"?>\n<zs:searchRetrieveResponse xmlns:zs=\"http://www.loc.gov/zing/srw/\"><zs:version>1.1</zs:version><zs:numberOfRecords>1</zs:numberOfRecords><zs:records><zs:record><zs:recordSchema>mods</zs:recordSchema><zs:recordPacking>xml</zs:recordPacking><zs:recordData><mods
32
32
  xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://www.loc.gov/mods/v3\"
33
33
  version=\"3.5\" xsi:schemaLocation=\"http://www.loc.gov/mods/v3 http://www.loc.gov/standards/mods/v3/mods-3-5.xsd\">\n
34
- \ <titleInfo>\n <nonSort>The </nonSort>\n <title>Rails view</title>\n
35
- \ <subTitle>creating a beautiful and maintainable user experience</subTitle>\n
34
+ \ <titleInfo>\n <nonSort>The </nonSort>\n <title>Rails View</title>\n
35
+ \ <subTitle>Creating a Beautiful and Maintainable User Experience</subTitle>\n
36
36
  \ </titleInfo>\n <name type=\"personal\" usage=\"primary\">\n <namePart>Athayde,
37
- John.</namePart>\n </name>\n <name type=\"personal\">\n <namePart>Williams,
38
- Bruce.</namePart>\n </name>\n <typeOfResource>text</typeOfResource>\n <genre
39
- authority=\"marcgt\">bibliography</genre>\n <originInfo>\n <place>\n <placeTerm
40
- type=\"code\" authority=\"marccountry\">txu</placeTerm>\n </place>\n <place>\n
41
- \ <placeTerm type=\"text\">Dallas, Tx</placeTerm>\n </place>\n <publisher>Pragmatic
42
- Bookshelf</publisher>\n <dateIssued>2012</dateIssued>\n <issuance>monographic</issuance>\n
43
- \ </originInfo>\n <language>\n <languageTerm authority=\"iso639-2b\" type=\"code\">eng</languageTerm>\n
37
+ John</namePart>\n <role>\n <roleTerm type=\"text\">author.</roleTerm>\n
38
+ \ </role>\n </name>\n <name type=\"personal\">\n <namePart>Williams,
39
+ Bruce</namePart>\n <namePart type=\"termsOfAddress\">(Software engineer)</namePart>\n
40
+ \ <role>\n <roleTerm type=\"text\">author.</roleTerm>\n </role>\n
41
+ \ </name>\n <typeOfResource>text</typeOfResource>\n <genre authority=\"marcgt\">bibliography</genre>\n
42
+ \ <genre authority=\"rdacontent\">text</genre>\n <originInfo>\n <place>\n
43
+ \ <placeTerm type=\"code\" authority=\"marccountry\">txu</placeTerm>\n
44
+ \ </place>\n <dateIssued encoding=\"marc\">2012</dateIssued>\n <issuance>monographic</issuance>\n
45
+ \ </originInfo>\n <originInfo eventType=\"publication\">\n <place>\n <placeTerm
46
+ type=\"text\">Dallas, Texas :</placeTerm>\n </place>\n <publisher>The
47
+ Pragmatic Bookshelf,</publisher>\n <dateIssued>[2012]</dateIssued>\n </originInfo>\n
48
+ \ <language>\n <languageTerm authority=\"iso639-2b\" type=\"code\">eng</languageTerm>\n
44
49
  \ </language>\n <physicalDescription>\n <form authority=\"marcform\">print</form>\n
45
- \ <extent>xiv, 245 p. : ill. ; 23 cm.</extent>\n </physicalDescription>\n
46
- \ <abstract type=\"Summary\">\"Break free from tangles of logic and markup
47
- in your views, and implement your user interface in Rails cleanly and maintainably.
48
- Build up solid, sustainable layouts with HTML5. Then learn to manage your
49
- forms and keep your markup clean. Learn when (and when not) to use Presenters,
50
- and how to tame HTML emails. Master the asset pipeline introduced in Rails
51
- 3.1 as you use Sass and CoffeeScript to create easy-to-manage code for enjoyable
52
- user interfaces\"--P. [4] of cover.</abstract>\n <note type=\"statement of
53
- responsibility\" altRepGroup=\"00\">John Athayde, Bruce Williams.</note>\n
54
- \ <note type=\"bibliography\">Includes bibliographical references (p. [235])
55
- and index.</note>\n <subject authority=\"lcsh\">\n <titleInfo>\n <title>Ruby
56
- on rails (Electronic resource)</title>\n </titleInfo>\n </subject>\n <subject
57
- authority=\"lcsh\">\n <topic>Web site development</topic>\n <genre>Handbooks,
58
- manuals, etc</genre>\n </subject>\n <relatedItem type=\"series\">\n <titleInfo>\n
59
- \ <title>Pragmatic programmers</title>\n </titleInfo>\n </relatedItem>\n
60
- \ <relatedItem type=\"series\">\n <titleInfo>\n <title>Facets of Ruby
61
- series</title>\n </titleInfo>\n </relatedItem>\n <identifier type=\"isbn\">9781934356876
62
- (pbk.)</identifier>\n <identifier type=\"isbn\">1934356875 (pbk.)</identifier>\n
63
- \ <identifier type=\"lccn\">2012471967</identifier>\n <recordInfo>\n <descriptionStandard>aacr</descriptionStandard>\n
64
- \ <recordContentSource authority=\"marcorg\">DLC</recordContentSource>\n
65
- \ <recordCreationDate encoding=\"marc\">121102</recordCreationDate>\n <recordChangeDate
66
- encoding=\"iso8601\">20121102161644.0</recordChangeDate>\n <recordIdentifier>17516814</recordIdentifier>\n
67
- \ <recordOrigin>Converted from MARCXML to MODS version 3.5 using MARC21slim2MODS3-5.xsl\n\t\t\t\t(Revision
68
- 1.106 2014/12/19)</recordOrigin>\n </recordInfo>\n</mods></zs:recordData><zs:recordPosition>1</zs:recordPosition></zs:record></zs:records><zs:echoedSearchRetrieveRequest><zs:version>1.1</zs:version><zs:query>bath.lccn=\"^2012471967\"</zs:query><zs:maximumRecords>10</zs:maximumRecords><zs:recordPacking>xml</zs:recordPacking><zs:recordSchema>mods</zs:recordSchema></zs:echoedSearchRetrieveRequest></zs:searchRetrieveResponse>\n"
50
+ \ <extent>xiv, 245 pages : illustrations ; 23 cm.</extent>\n <form type=\"media\"
51
+ authority=\"rdamedia\">unmediated</form>\n <form type=\"carrier\" authority=\"rdacarrier\">volume</form>\n
52
+ \ </physicalDescription>\n <abstract type=\"Summary\">\"Break free from tangles
53
+ of logic and markup in your views, and implement your user interface in Rails
54
+ cleanly and maintainably. Build up solid, sustainable layouts with HTML5.
55
+ Then learn to manage your forms and keep your markup clean. Learn when (and
56
+ when not) to use Presenters, and how to tame HTML emails. Master the asset
57
+ pipeline introduced in Rails 3.1 as you use Sass and CoffeeScript to create
58
+ easy-to-manage code for enjoyable user interfaces\"--P. [4] of cover.</abstract>\n
59
+ \ <note type=\"statement of responsibility\" altRepGroup=\"00\">John Athayde,
60
+ Bruce Williams.</note>\n <note type=\"bibliography\">Includes bibliographical
61
+ references (pages 235) and index.</note>\n <subject authority=\"lcsh\">\n
62
+ \ <titleInfo>\n <title>Ruby on rails (Electronic resource)</title>\n
63
+ \ </titleInfo>\n </subject>\n <subject authority=\"lcsh\">\n <topic>Web
64
+ site development</topic>\n </subject>\n <classification authority=\"lcc\">MLCM
65
+ 2015/43138 (T)</classification>\n <relatedItem type=\"series\">\n <titleInfo>\n
66
+ \ <title>The Pragmatic Programmers</title>\n </titleInfo>\n </relatedItem>\n
67
+ \ <relatedItem type=\"series\">\n <titleInfo>\n <title>The Facets
68
+ of Ruby Series</title>\n </titleInfo>\n </relatedItem>\n <identifier
69
+ type=\"isbn\">9781934356876 (alk. paper)</identifier>\n <identifier type=\"lccn\">2012471967</identifier>\n
70
+ \ <recordInfo>\n <descriptionStandard>rda</descriptionStandard>\n <recordContentSource
71
+ authority=\"marcorg\">DLC</recordContentSource>\n <recordCreationDate encoding=\"marc\">121102</recordCreationDate>\n
72
+ \ <recordChangeDate encoding=\"iso8601\">20160111150029.0</recordChangeDate>\n
73
+ \ <recordIdentifier>17516814</recordIdentifier>\n <recordOrigin>Converted
74
+ from MARCXML to MODS version 3.5 using MARC21slim2MODS3-5.xsl\n\t\t\t\t(Revision
75
+ 1.106 2014/12/19)</recordOrigin>\n <languageOfCataloging>\n <languageTerm
76
+ authority=\"iso639-2b\" type=\"code\">eng</languageTerm>\n </languageOfCataloging>\n
77
+ \ </recordInfo>\n</mods></zs:recordData><zs:recordPosition>1</zs:recordPosition></zs:record></zs:records><zs:echoedSearchRetrieveRequest><zs:version>1.1</zs:version><zs:query>bath.lccn=\"^2012471967\"</zs:query><zs:maximumRecords>10</zs:maximumRecords><zs:recordPacking>xml</zs:recordPacking><zs:recordSchema>mods</zs:recordSchema></zs:echoedSearchRetrieveRequest></zs:searchRetrieveResponse>\n"
69
78
  http_version:
70
- recorded_at: Fri, 06 Nov 2015 14:26:41 GMT
71
- recorded_with: VCR 3.0.0
79
+ recorded_at: Thu, 07 Jul 2016 15:06:08 GMT
80
+ recorded_with: VCR 3.0.3
@@ -21,7 +21,7 @@ http_interactions:
21
21
  Content-Length:
22
22
  - '3675'
23
23
  Server:
24
- - Metaproxy/1.9.3
24
+ - Metaproxy/1.11.3
25
25
  Connection:
26
26
  - Keep-Alive
27
27
  Content-Type:
@@ -65,5 +65,5 @@ http_interactions:
65
65
  \ <recordOrigin>Converted from MARCXML to MODS version 3.5 using MARC21slim2MODS3-5.xsl\n\t\t\t\t(Revision
66
66
  1.106 2014/12/19)</recordOrigin>\n </recordInfo>\n</mods></zs:recordData><zs:recordPosition>1</zs:recordPosition></zs:record></zs:records><zs:echoedSearchRetrieveRequest><zs:version>1.1</zs:version><zs:query>bath.lccn=\"^2008273186\"</zs:query><zs:maximumRecords>10</zs:maximumRecords><zs:recordPacking>xml</zs:recordPacking><zs:recordSchema>mods</zs:recordSchema></zs:echoedSearchRetrieveRequest></zs:searchRetrieveResponse>\n"
67
67
  http_version:
68
- recorded_at: Fri, 06 Nov 2015 14:26:41 GMT
69
- recorded_with: VCR 3.0.0
68
+ recorded_at: Thu, 07 Jul 2016 15:06:07 GMT
69
+ recorded_with: VCR 3.0.3
@@ -21,7 +21,7 @@ http_interactions:
21
21
  Content-Length:
22
22
  - '4688'
23
23
  Server:
24
- - Metaproxy/1.9.3
24
+ - Metaproxy/1.11.3
25
25
  Connection:
26
26
  - Keep-Alive
27
27
  Content-Type:
@@ -80,5 +80,5 @@ http_interactions:
80
80
  \ <recordOrigin>Converted from MARCXML to MODS version 3.5 using MARC21slim2MODS3-5.xsl\n\t\t\t\t(Revision
81
81
  1.106 2014/12/19)</recordOrigin>\n </recordInfo>\n</mods></zs:recordData><zs:recordPosition>1</zs:recordPosition></zs:record></zs:records><zs:echoedSearchRetrieveRequest><zs:version>1.1</zs:version><zs:query>bath.lccn=\"^2014381788\"</zs:query><zs:maximumRecords>10</zs:maximumRecords><zs:recordPacking>xml</zs:recordPacking><zs:recordSchema>mods</zs:recordSchema></zs:echoedSearchRetrieveRequest></zs:searchRetrieveResponse>\n"
82
82
  http_version:
83
- recorded_at: Fri, 06 Nov 2015 14:26:52 GMT
84
- recorded_with: VCR 3.0.0
83
+ recorded_at: Thu, 07 Jul 2016 15:06:18 GMT
84
+ recorded_with: VCR 3.0.3
@@ -21,7 +21,7 @@ http_interactions:
21
21
  Content-Length:
22
22
  - '4889'
23
23
  Server:
24
- - Metaproxy/1.9.3
24
+ - Metaproxy/1.11.3
25
25
  Connection:
26
26
  - Keep-Alive
27
27
  Content-Type:
@@ -83,5 +83,5 @@ http_interactions:
83
83
  authority=\"iso639-2b\" type=\"code\">eng</languageTerm>\n </languageOfCataloging>\n
84
84
  \ </recordInfo>\n</mods></zs:recordData><zs:recordPosition>1</zs:recordPosition></zs:record></zs:records><zs:echoedSearchRetrieveRequest><zs:version>1.1</zs:version><zs:query>bath.lccn=\"^88651712\"</zs:query><zs:maximumRecords>10</zs:maximumRecords><zs:recordPacking>xml</zs:recordPacking><zs:recordSchema>mods</zs:recordSchema></zs:echoedSearchRetrieveRequest></zs:searchRetrieveResponse>\n"
85
85
  http_version:
86
- recorded_at: Fri, 06 Nov 2015 14:26:52 GMT
87
- recorded_with: VCR 3.0.0
86
+ recorded_at: Thu, 07 Jul 2016 15:06:17 GMT
87
+ recorded_with: VCR 3.0.3
@@ -21,7 +21,7 @@ http_interactions:
21
21
  Content-Length:
22
22
  - '5575'
23
23
  Server:
24
- - Metaproxy/1.9.3
24
+ - Metaproxy/1.11.3
25
25
  Connection:
26
26
  - Keep-Alive
27
27
  Content-Type:
@@ -91,5 +91,5 @@ http_interactions:
91
91
  \ <recordOrigin>Converted from MARCXML to MODS version 3.5 using MARC21slim2MODS3-5.xsl\n\t\t\t\t(Revision
92
92
  1.106 2014/12/19)</recordOrigin>\n </recordInfo>\n</mods></zs:recordData><zs:recordPosition>1</zs:recordPosition></zs:record></zs:records><zs:echoedSearchRetrieveRequest><zs:version>1.1</zs:version><zs:query>bath.lccn=\"^2007576782\"</zs:query><zs:maximumRecords>10</zs:maximumRecords><zs:recordPacking>xml</zs:recordPacking><zs:recordSchema>mods</zs:recordSchema></zs:echoedSearchRetrieveRequest></zs:searchRetrieveResponse>\n"
93
93
  http_version:
94
- recorded_at: Fri, 06 Nov 2015 14:26:50 GMT
95
- recorded_with: VCR 3.0.0
94
+ recorded_at: Thu, 07 Jul 2016 15:06:15 GMT
95
+ recorded_with: VCR 3.0.3
@@ -21,7 +21,7 @@ http_interactions:
21
21
  Content-Length:
22
22
  - '3971'
23
23
  Server:
24
- - Metaproxy/1.9.3
24
+ - Metaproxy/1.11.3
25
25
  Connection:
26
26
  - Keep-Alive
27
27
  Content-Type:
@@ -70,5 +70,5 @@ http_interactions:
70
70
  from MARCXML to MODS version 3.5 using MARC21slim2MODS3-5.xsl\n\t\t\t\t(Revision
71
71
  1.106 2014/12/19)</recordOrigin>\n </recordInfo>\n</mods></zs:recordData><zs:recordPosition>1</zs:recordPosition></zs:record></zs:records><zs:echoedSearchRetrieveRequest><zs:version>1.1</zs:version><zs:query>bath.lccn=\"^2005568297\"</zs:query><zs:maximumRecords>10</zs:maximumRecords><zs:recordPacking>xml</zs:recordPacking><zs:recordSchema>mods</zs:recordSchema></zs:echoedSearchRetrieveRequest></zs:searchRetrieveResponse>\n"
72
72
  http_version:
73
- recorded_at: Fri, 06 Nov 2015 14:26:46 GMT
74
- recorded_with: VCR 3.0.0
73
+ recorded_at: Thu, 07 Jul 2016 15:06:13 GMT
74
+ recorded_with: VCR 3.0.3
@@ -21,7 +21,7 @@ http_interactions:
21
21
  Content-Length:
22
22
  - '3870'
23
23
  Server:
24
- - Metaproxy/1.9.3
24
+ - Metaproxy/1.11.3
25
25
  Connection:
26
26
  - Keep-Alive
27
27
  Content-Type:
@@ -69,5 +69,5 @@ http_interactions:
69
69
  from MARCXML to MODS version 3.5 using MARC21slim2MODS3-5.xsl\n\t\t\t\t(Revision
70
70
  1.106 2014/12/19)</recordOrigin>\n </recordInfo>\n</mods></zs:recordData><zs:recordPosition>1</zs:recordPosition></zs:record></zs:records><zs:echoedSearchRetrieveRequest><zs:version>1.1</zs:version><zs:query>bath.lccn=\"^2006575029\"</zs:query><zs:maximumRecords>10</zs:maximumRecords><zs:recordPacking>xml</zs:recordPacking><zs:recordSchema>mods</zs:recordSchema></zs:echoedSearchRetrieveRequest></zs:searchRetrieveResponse>\n"
71
71
  http_version:
72
- recorded_at: Fri, 06 Nov 2015 14:26:47 GMT
73
- recorded_with: VCR 3.0.0
72
+ recorded_at: Thu, 07 Jul 2016 15:06:14 GMT
73
+ recorded_with: VCR 3.0.3
@@ -21,7 +21,7 @@ http_interactions:
21
21
  Content-Length:
22
22
  - '2513'
23
23
  Server:
24
- - Metaproxy/1.9.3
24
+ - Metaproxy/1.11.3
25
25
  Connection:
26
26
  - Keep-Alive
27
27
  Content-Type:
@@ -53,5 +53,5 @@ http_interactions:
53
53
  from MARCXML to MODS version 3.5 using MARC21slim2MODS3-5.xsl\n\t\t\t\t(Revision
54
54
  1.106 2014/12/19)</recordOrigin>\n </recordInfo>\n</mods></zs:recordData><zs:recordPosition>1</zs:recordPosition></zs:record></zs:records><zs:echoedSearchRetrieveRequest><zs:version>1.1</zs:version><zs:query>bath.lccn=\"^93028401\"</zs:query><zs:maximumRecords>10</zs:maximumRecords><zs:recordPacking>xml</zs:recordPacking><zs:recordSchema>mods</zs:recordSchema></zs:echoedSearchRetrieveRequest></zs:searchRetrieveResponse>\n"
55
55
  http_version:
56
- recorded_at: Fri, 06 Nov 2015 14:26:53 GMT
57
- recorded_with: VCR 3.0.0
56
+ recorded_at: Thu, 07 Jul 2016 15:06:21 GMT
57
+ recorded_with: VCR 3.0.3
@@ -21,7 +21,7 @@ http_interactions:
21
21
  Content-Length:
22
22
  - '6736'
23
23
  Server:
24
- - Metaproxy/1.9.3
24
+ - Metaproxy/1.11.3
25
25
  Connection:
26
26
  - Keep-Alive
27
27
  Content-Type:
@@ -103,5 +103,5 @@ http_interactions:
103
103
  authority=\"iso639-2b\" type=\"code\">eng</languageTerm>\n </languageOfCataloging>\n
104
104
  \ </recordInfo>\n</mods></zs:recordData><zs:recordPosition>1</zs:recordPosition></zs:record></zs:records><zs:echoedSearchRetrieveRequest><zs:version>1.1</zs:version><zs:query>bath.lccn=\"^2014563060\"</zs:query><zs:maximumRecords>10</zs:maximumRecords><zs:recordPacking>xml</zs:recordPacking><zs:recordSchema>mods</zs:recordSchema></zs:echoedSearchRetrieveRequest></zs:searchRetrieveResponse>\n"
105
105
  http_version:
106
- recorded_at: Fri, 06 Nov 2015 14:26:53 GMT
107
- recorded_with: VCR 3.0.0
106
+ recorded_at: Thu, 07 Jul 2016 15:06:20 GMT
107
+ recorded_with: VCR 3.0.3
@@ -21,7 +21,7 @@ http_interactions:
21
21
  Content-Length:
22
22
  - '3977'
23
23
  Server:
24
- - Metaproxy/1.9.3
24
+ - Metaproxy/1.11.3
25
25
  Connection:
26
26
  - Keep-Alive
27
27
  Content-Type:
@@ -70,5 +70,5 @@ http_interactions:
70
70
  \ <recordOrigin>Converted from MARCXML to MODS version 3.5 using MARC21slim2MODS3-5.xsl\n\t\t\t\t(Revision
71
71
  1.106 2014/12/19)</recordOrigin>\n </recordInfo>\n</mods></zs:recordData><zs:recordPosition>1</zs:recordPosition></zs:record></zs:records><zs:echoedSearchRetrieveRequest><zs:version>1.1</zs:version><zs:query>bath.lccn=\"^2010526151\"</zs:query><zs:maximumRecords>10</zs:maximumRecords><zs:recordPacking>xml</zs:recordPacking><zs:recordSchema>mods</zs:recordSchema></zs:echoedSearchRetrieveRequest></zs:searchRetrieveResponse>\n"
72
72
  http_version:
73
- recorded_at: Fri, 06 Nov 2015 14:26:45 GMT
74
- recorded_with: VCR 3.0.0
73
+ recorded_at: Thu, 07 Jul 2016 15:06:12 GMT
74
+ recorded_with: VCR 3.0.3
@@ -21,7 +21,7 @@ http_interactions:
21
21
  Content-Length:
22
22
  - '4559'
23
23
  Server:
24
- - Metaproxy/1.9.3
24
+ - Metaproxy/1.11.3
25
25
  Connection:
26
26
  - Keep-Alive
27
27
  Content-Type:
@@ -76,5 +76,5 @@ http_interactions:
76
76
  \ <recordOrigin>Converted from MARCXML to MODS version 3.5 using MARC21slim2MODS3-5.xsl\n\t\t\t\t(Revision
77
77
  1.106 2014/12/19)</recordOrigin>\n </recordInfo>\n</mods></zs:recordData><zs:recordPosition>1</zs:recordPosition></zs:record></zs:records><zs:echoedSearchRetrieveRequest><zs:version>1.1</zs:version><zs:query>bath.lccn=\"^2001315134\"</zs:query><zs:maximumRecords>10</zs:maximumRecords><zs:recordPacking>xml</zs:recordPacking><zs:recordSchema>mods</zs:recordSchema></zs:echoedSearchRetrieveRequest></zs:searchRetrieveResponse>\n"
78
78
  http_version:
79
- recorded_at: Fri, 06 Nov 2015 14:26:46 GMT
80
- recorded_with: VCR 3.0.0
79
+ recorded_at: Thu, 07 Jul 2016 15:06:13 GMT
80
+ recorded_with: VCR 3.0.3
@@ -21,7 +21,7 @@ http_interactions:
21
21
  Content-Length:
22
22
  - '3736'
23
23
  Server:
24
- - Metaproxy/1.9.3
24
+ - Metaproxy/1.11.3
25
25
  Connection:
26
26
  - Keep-Alive
27
27
  Content-Type:
@@ -67,5 +67,5 @@ http_interactions:
67
67
  authority=\"iso639-2b\" type=\"code\">eng</languageTerm>\n </languageOfCataloging>\n
68
68
  \ </recordInfo>\n</mods></zs:recordData><zs:recordPosition>1</zs:recordPosition></zs:record></zs:records><zs:echoedSearchRetrieveRequest><zs:version>1.1</zs:version><zs:query>bath.lccn=\"^00200486\"</zs:query><zs:maximumRecords>10</zs:maximumRecords><zs:recordPacking>xml</zs:recordPacking><zs:recordSchema>mods</zs:recordSchema></zs:echoedSearchRetrieveRequest></zs:searchRetrieveResponse>\n"
69
69
  http_version:
70
- recorded_at: Fri, 06 Nov 2015 14:26:52 GMT
71
- recorded_with: VCR 3.0.0
70
+ recorded_at: Thu, 07 Jul 2016 15:06:17 GMT
71
+ recorded_with: VCR 3.0.3