maltese 0.2 → 0.2.2

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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: f41a23fedf6c3efd8670dfa4e871f2d60f8f876b83e379d6afe072ca27c58bc0
4
- data.tar.gz: e2eea027c2a719eaa0b6f225079f1ffc034b116557ac38abdc45363f84486d52
3
+ metadata.gz: 31342a514a177410dc691a6f63642a7f447f177af98dc2540f7ea6de46685887
4
+ data.tar.gz: 6bfad2ffbaddd86963c85d8a8160fd9620ccb2372a56258233d5dc03340fffa3
5
5
  SHA512:
6
- metadata.gz: 1b8fb0f01005360c3fec2c7c620ab425cafee1382e6231e48faa124e4e05d6053e336d55b2715d702c12f14d69f5dc65e1f90dfc3da724b23041a85950591f36
7
- data.tar.gz: b548736e21fd448d5b0da829abf366c1c7aadd4e0afce6adb1daec88533c3eba5384c9dc05e19dcbcaf800c9ae86fb75485806cf61a09021be116801767ac273
6
+ metadata.gz: 441fb9274d64f89a0d118a4e7bb8e13cde32ccca5d7a61cc0ae656f96fddee403369a74d9a61e7585d3698d39af6f235d251709f5b40150d3c548b17fb3e31c5
7
+ data.tar.gz: 75fbaf275f8860cd5be8c683efde7677f09e6b435bd39406a70469edf2c779ee577e6149dec57956150574ad91b3dab269425acef3b6a978350024e56a0a3310
data/.gitignore CHANGED
@@ -2,6 +2,7 @@
2
2
  *.rbc
3
3
  /.config
4
4
  /coverage/
5
+ /bin/coverage/
5
6
  /InstalledFiles
6
7
  /pkg/
7
8
  /spec/reports/
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- maltese (0.2)
4
+ maltese (0.2.2)
5
5
  activesupport (>= 4.2.5, < 6)
6
6
  dotenv (~> 2.1, >= 2.1.1)
7
7
  fog-aws (~> 0.7.6)
@@ -77,7 +77,7 @@ GEM
77
77
  multipart-post (2.0.0)
78
78
  nokogiri (1.8.4)
79
79
  mini_portile2 (~> 2.3.0)
80
- oj (3.6.7)
80
+ oj (3.6.8)
81
81
  public_suffix (3.0.3)
82
82
  rack (2.0.5)
83
83
  rack-test (0.8.3)
@@ -18,7 +18,7 @@ module Maltese
18
18
  end
19
19
 
20
20
  def initialize(attributes={})
21
- @sitemap_bucket = attributes[:sitemap_bucket].presence || "sitemaps-search-datacite"
21
+ @sitemap_bucket = attributes[:sitemap_bucket].presence || "sitemaps-search-datacite-test"
22
22
  @from_date = attributes[:from_date].presence || (Time.now.to_date - 1.day).iso8601
23
23
  @until_date = attributes[:until_date].presence || Time.now.to_date.iso8601
24
24
  @solr_username = ENV['SOLR_USERNAME']
@@ -26,15 +26,11 @@ module Maltese
26
26
  end
27
27
 
28
28
  def sitemap_url
29
- ENV['RACK'] == "test" ? "https://search.test.datacite.org" : "https://search.datacite.org"
29
+ ENV['RACK_ENV'] == "production" ? "https://search.datacite.org/" : "https://search.test.datacite.org/"
30
30
  end
31
31
 
32
32
  def search_path
33
- ENV['RACK'] == "test" ? "https://solr.test.datacite.org/api?" : "https://solr.datacite.org/api?"
34
- end
35
-
36
- def sitemaps_path
37
- ENV['RACK'] == "test" ? 'sitemaps-test' : 'sitemaps/'
33
+ ENV['RACK_ENV'] == "production" ? "https://solr.datacite.org/api?" : "https://solr.test.datacite.org/api?"
38
34
  end
39
35
 
40
36
  def timeout
@@ -50,7 +46,6 @@ module Maltese
50
46
  default_host: sitemap_url,
51
47
  sitemaps_host: sitemap_url,
52
48
  adapter: s3_adapter,
53
- sitemaps_path: sitemaps_path,
54
49
  finalize: false)
55
50
  end
56
51
 
@@ -1,3 +1,3 @@
1
1
  module Maltese
2
- VERSION = "0.2"
2
+ VERSION = "0.2.2"
3
3
  end
data/spec/cli_spec.rb CHANGED
@@ -17,7 +17,7 @@ describe Maltese::CLI do
17
17
  it 'should succeed' do
18
18
  subject.options = cli_options
19
19
  expect { subject.sitemap }.to output(/266 links/).to_stdout
20
- sitemap = Zlib::GzipReader.open("public/sitemaps-test/sitemap.xml.gz") { |gz| gz.read }
20
+ sitemap = Zlib::GzipReader.open("public/sitemap.xml.gz") { |gz| gz.read }
21
21
  doc = Nokogiri::XML(sitemap)
22
22
  expect(doc.xpath("//xmlns:url").size).to eq(266)
23
23
  expect(doc.xpath("//xmlns:loc").last.text).to eq("https://search.test.datacite.org/works/10.0133/37522")
@@ -19,7 +19,7 @@ http_interactions:
19
19
  message: OK
20
20
  headers:
21
21
  Date:
22
- - Sat, 08 Sep 2018 12:57:40 GMT
22
+ - Sat, 08 Sep 2018 22:52:22 GMT
23
23
  Content-Type:
24
24
  - application/json;charset=UTF-8
25
25
  Connection:
@@ -36,11 +36,11 @@ http_interactions:
36
36
  - DNT,X-CustomHeader,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Content-Range,Range,Authorization
37
37
  body:
38
38
  encoding: ASCII-8BIT
39
- string: '{"responseHeader":{"status":0,"QTime":49},"response":{"numFound":265,"start":0,"docs":[]}}
39
+ string: '{"responseHeader":{"status":0,"QTime":45},"response":{"numFound":265,"start":0,"docs":[]}}
40
40
 
41
41
  '
42
42
  http_version:
43
- recorded_at: Sat, 08 Sep 2018 12:57:40 GMT
43
+ recorded_at: Sat, 08 Sep 2018 22:52:22 GMT
44
44
  - request:
45
45
  method: get
46
46
  uri: https://solr.test.datacite.org/api?fl=doi,updated&fq=updated:%5B2018-03-15T00:00:00Z%20TO%202018-04-08T23:59:59Z%5D%20AND%20has_metadata:true%20AND%20is_active:true&q=*:*&rows=50000&sort=updated%20asc&start=0&wt=json
@@ -60,7 +60,7 @@ http_interactions:
60
60
  message: OK
61
61
  headers:
62
62
  Date:
63
- - Sat, 08 Sep 2018 12:57:40 GMT
63
+ - Sat, 08 Sep 2018 22:52:23 GMT
64
64
  Content-Type:
65
65
  - application/json;charset=UTF-8
66
66
  Connection:
@@ -77,11 +77,11 @@ http_interactions:
77
77
  - DNT,X-CustomHeader,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Content-Range,Range,Authorization
78
78
  body:
79
79
  encoding: ASCII-8BIT
80
- string: '{"responseHeader":{"status":0,"QTime":1},"response":{"numFound":265,"start":0,"docs":[{"updated":"2018-03-15T09:57:00Z","doi":"10.0133/1521107796250"},{"updated":"2018-03-15T09:58:59Z","doi":"10.0133/36983"},{"updated":"2018-03-15T10:03:15Z","doi":"10.0133/36990"},{"updated":"2018-03-15T10:20:22Z","doi":"10.0133/36974"},{"updated":"2018-03-15T10:28:52Z","doi":"10.0133/36991"},{"updated":"2018-03-15T10:28:55Z","doi":"10.0133/36992"},{"updated":"2018-03-15T10:30:52Z","doi":"10.0133/36994"},{"updated":"2018-03-15T11:43:27Z","doi":"10.25499/V3CQF9MP9PGHVMKOK4BGVESQRG"},{"updated":"2018-03-15T11:55:18Z","doi":"10.4124/TBD6DFCNV7.1"},{"updated":"2018-03-15T12:01:51Z","doi":"10.25499/NN6XPZMCAWFYE4C4U24AVM7UYC"},{"updated":"2018-03-15T12:02:33Z","doi":"10.25499/B7TDRUIIUOBMEYTAI2D2OQISUF"},{"updated":"2018-03-15T12:02:35Z","doi":"10.25499/9PPX2HMEIRM5V9XNVWSK4DPZHE"},{"updated":"2018-03-15T14:04:26Z","doi":"10.25499/YY6HMZZCJQ4IVAPIJ2V6VB3VFG"},{"updated":"2018-03-15T14:04:45Z","doi":"10.25499/32WT74C59PV5E6K2T6V5DCRBAF"},{"updated":"2018-03-15T14:04:47Z","doi":"10.25499/XZWXOIDVE799VCX5MF3RO23SIG"},{"updated":"2018-03-15T14:54:02Z","doi":"10.25499/FINYT33PBFCBENX9CTFEDYGBYH"},{"updated":"2018-03-15T15:24:41Z","doi":"10.4124/TEST31174"},{"updated":"2018-03-15T17:51:54Z","doi":"10.4124/TEST90956"},{"updated":"2018-03-15T17:52:36Z","doi":"10.4124/TEST93333"},{"updated":"2018-03-15T17:53:16Z","doi":"10.4124/TEST41361"},{"updated":"2018-03-15T18:13:06Z","doi":"10.4124/TEST25895"},{"updated":"2018-03-15T18:15:31Z","doi":"10.4124/TEST10959"},{"updated":"2018-03-15T18:16:19Z","doi":"10.4124/TEST12971"},{"updated":"2018-03-15T18:17:38Z","doi":"10.4124/TEST68679"},{"updated":"2018-03-16T10:02:53Z","doi":"10.0133/1521194550071"},{"updated":"2018-03-16T10:04:32Z","doi":"10.0133/37003"},{"updated":"2018-03-16T10:08:19Z","doi":"10.0133/37010"},{"updated":"2018-03-16T10:30:53Z","doi":"10.0133/37012"},{"updated":"2018-03-16T10:30:56Z","doi":"10.0133/37011"},{"updated":"2018-03-16T10:32:52Z","doi":"10.0133/37014"},{"updated":"2018-03-16T13:24:53Z","doi":"10.0133/37017"},{"updated":"2018-03-16T13:26:52Z","doi":"10.0133/37018"},{"updated":"2018-03-16T15:58:49Z","doi":"10.4124/M5VRJ5JDH8.1"},{"updated":"2018-03-16T16:20:06Z","doi":"10.4124/ZBWBRNY7VW.1"},{"updated":"2018-03-16T16:55:39Z","doi":"10.4124/VBZNB7MDHD.1"},{"updated":"2018-03-16T19:11:13Z","doi":"10.24354/8C97KQ405"},{"updated":"2018-03-16T19:45:34Z","doi":"10.24354/T722H880Z"},{"updated":"2018-03-18T07:16:53Z","doi":"10.0133/1521357387134"},{"updated":"2018-03-18T07:21:38Z","doi":"10.0133/37025"},{"updated":"2018-03-18T07:29:23Z","doi":"10.0133/37032"},{"updated":"2018-03-18T07:35:40Z","doi":"10.0133/1521358516729"},{"updated":"2018-03-18T07:38:24Z","doi":"10.0133/37039"},{"updated":"2018-03-18T07:44:06Z","doi":"10.0133/37046"},{"updated":"2018-03-18T08:10:54Z","doi":"10.0133/37048"},{"updated":"2018-03-18T08:10:56Z","doi":"10.0133/37047"},{"updated":"2018-03-18T08:12:52Z","doi":"10.0133/37050"},{"updated":"2018-03-18T08:40:54Z","doi":"10.0133/37053"},{"updated":"2018-03-18T08:42:52Z","doi":"10.0133/37056"},{"updated":"2018-03-18T08:42:54Z","doi":"10.0133/37054"},{"updated":"2018-03-18T21:36:52Z","doi":"10.25499/RWGAYBZUGR23V4TFCB6NRXB5IC"},{"updated":"2018-03-19T08:46:20Z","doi":"10.0133/1521449157387"},{"updated":"2018-03-19T08:48:03Z","doi":"10.0133/37065"},{"updated":"2018-03-19T08:51:51Z","doi":"10.0133/37072"},{"updated":"2018-03-19T13:28:54Z","doi":"10.0133/37074"},{"updated":"2018-03-19T14:47:13Z","doi":"10.0133/1521470737379"},{"updated":"2018-03-19T14:48:54Z","doi":"10.0133/37083"},{"updated":"2018-03-19T14:52:16Z","doi":"10.0133/37090"},{"updated":"2018-03-20T10:17:01Z","doi":"10.18711/OQC0TZO1"},{"updated":"2018-03-20T10:36:29Z","doi":"10.18711/XO8BKEMO"},{"updated":"2018-03-20T10:55:22Z","doi":"10.5256/F1000RESEARCH.62588.R16484"},{"updated":"2018-03-20T11:05:22Z","doi":"10.5256/F1000RESEARCH.62588.R16485"},{"updated":"2018-03-20T11:05:22Z","doi":"10.5256/F1000RESEARCH.62588.R16486"},{"updated":"2018-03-20T11:05:22Z","doi":"10.5256/F1000RESEARCH.62588.R16487"},{"updated":"2018-03-20T11:15:22Z","doi":"10.5256/F1000RESEARCH.62714.R16492"},{"updated":"2018-03-20T11:45:22Z","doi":"10.5256/F1000RESEARCH.62714.R16489"},{"updated":"2018-03-20T12:20:22Z","doi":"10.21956/GATESOPENRES.537.R357"},{"updated":"2018-03-20T12:20:22Z","doi":"10.21956/GATESOPENRES.537.R358"},{"updated":"2018-03-20T12:50:33Z","doi":"10.18711/362RN2U1"},{"updated":"2018-03-20T13:00:40Z","doi":"10.18711/GZVK8KT6"},{"updated":"2018-03-20T14:36:49Z","doi":"10.18711/JSYB6GEY"},{"updated":"2018-03-20T15:18:01Z","doi":"10.18711/JJED9J3P"},{"updated":"2018-03-20T15:43:48Z","doi":"10.4124/930C0D94-F524-49FC-AAD8-3565B512D595"},{"updated":"2018-03-20T15:59:20Z","doi":"10.4124/A330D8B8-8903-4340-82F9-373883FBF6AE"},{"updated":"2018-03-20T16:19:44Z","doi":"10.18711/ALLAB15M"},{"updated":"2018-03-21T08:56:54Z","doi":"10.0133/37094"},{"updated":"2018-03-21T10:10:42Z","doi":"10.18711/OPB2KK4W"},{"updated":"2018-03-21T10:15:13Z","doi":"10.18711/0JDFNQ2C"},{"updated":"2018-03-21T10:39:50Z","doi":"10.0133/1521628766400"},{"updated":"2018-03-21T10:41:52Z","doi":"10.0133/37102"},{"updated":"2018-03-21T10:45:55Z","doi":"10.0133/37109"},{"updated":"2018-03-21T11:14:54Z","doi":"10.0133/37110"},{"updated":"2018-03-21T14:35:51Z","doi":"10.4124/TEST52413"},{"updated":"2018-03-21T14:41:40Z","doi":"10.0133/1521643275128"},{"updated":"2018-03-21T14:43:19Z","doi":"10.0133/37119"},{"updated":"2018-03-21T14:48:11Z","doi":"10.0133/37126"},{"updated":"2018-03-21T14:49:49Z","doi":"10.4124/TEST52414"},{"updated":"2018-03-21T14:51:05Z","doi":"10.0133/1521643765524"},{"updated":"2018-03-21T14:52:56Z","doi":"10.0133/37133"},{"updated":"2018-03-21T14:56:50Z","doi":"10.0133/37140"},{"updated":"2018-03-21T15:26:26Z","doi":"10.25620/ICIBER.ISSN.1476-4687"},{"updated":"2018-03-21T16:22:42Z","doi":"10.4124/55YP43BPKS.1"},{"updated":"2018-03-21T16:22:58Z","doi":"10.4124/55YP43BPKS.2"},{"updated":"2018-03-21T16:34:52Z","doi":"10.4124/XNFJTJJXGJ.1"},{"updated":"2018-03-21T16:46:35Z","doi":"10.4124/XNFJTJJXGJ.2"},{"updated":"2018-03-21T17:02:42Z","doi":"10.4124/XNFJTJJXGJ.3"},{"updated":"2018-03-21T19:58:36Z","doi":"10.18711/X56MF6P7"},{"updated":"2018-03-22T10:55:22Z","doi":"10.5256/F1000RESEARCH.63076.R16503"},{"updated":"2018-03-22T11:10:22Z","doi":"10.5256/F1000RESEARCH.63076.R16504"},{"updated":"2018-03-22T11:15:22Z","doi":"10.5256/F1000RESEARCH.63076.R16506"},{"updated":"2018-03-22T11:40:22Z","doi":"10.5256/F1000RESEARCH.63085.R16510"},{"updated":"2018-03-22T11:50:22Z","doi":"10.21956/GATESOPENRES.553.R456"},{"updated":"2018-03-22T11:55:22Z","doi":"10.21956/GATESOPENRES.553.R457"},{"updated":"2018-03-22T12:05:22Z","doi":"10.21956/GATESOPENRES.1120.R461"},{"updated":"2018-03-22T12:45:39Z","doi":"10.15770/0000-001A"},{"updated":"2018-03-22T12:45:40Z","doi":"10.15770/0000-001M"},{"updated":"2018-03-22T14:31:30Z","doi":"10.18711/CSANFMN1"},{"updated":"2018-03-22T14:36:31Z","doi":"10.18711/QK3R7PQP"},{"updated":"2018-03-22T14:55:49Z","doi":"10.25499/J3M7BOSEJAS5VJGA4Q4P6MI9IG"},{"updated":"2018-03-22T14:55:56Z","doi":"10.25499/YOF9GCHQ3D2TECT7HZF625V99F"},{"updated":"2018-03-22T14:56:10Z","doi":"10.25499/OODK9CACIQV3V2XNZSFJ5KDOJD"},{"updated":"2018-03-22T14:56:12Z","doi":"10.25499/R42626B4YVZ2ETCQ64DV7KAASH"},{"updated":"2018-03-22T14:56:37Z","doi":"10.25499/CQW4OJ6KBT24V4KP2C53QEMCTH"},{"updated":"2018-03-22T14:56:58Z","doi":"10.25499/NDGB4WCHQKMJE9KYYY7BY9ID5C"},{"updated":"2018-03-22T16:00:22Z","doi":"10.5256/F1000RESEARCH.60647.R16516"},{"updated":"2018-03-22T16:51:03Z","doi":"10.4124/XWT8CPCVNR.1"},{"updated":"2018-03-23T11:25:23Z","doi":"10.5256/F1000RESEARCH.58332.R16525"},{"updated":"2018-03-23T11:45:23Z","doi":"10.5256/F1000RESEARCH.63108.R16526"},{"updated":"2018-03-23T15:03:09Z","doi":"10.4124/P4BF9YJTC9.1"},{"updated":"2018-03-23T15:04:22Z","doi":"10.4124/P4BF9YJTC9.2"},{"updated":"2018-03-23T15:43:50Z","doi":"10.4124/M383JVWW8P.1"},{"updated":"2018-03-23T16:43:07Z","doi":"10.18711/1KTYIXIF"},{"updated":"2018-03-23T16:45:48Z","doi":"10.18711/UHT655R7"},{"updated":"2018-03-23T20:43:55Z","doi":"10.24354/KW52J804P"},{"updated":"2018-03-23T21:14:45Z","doi":"10.24354/1N79H428D"},{"updated":"2018-03-26T10:05:23Z","doi":"10.5256/F1000RESEARCH.65620.R16542"},{"updated":"2018-03-26T10:10:23Z","doi":"10.5256/F1000RESEARCH.65621.R16543"},{"updated":"2018-03-26T10:20:23Z","doi":"10.5256/F1000RESEARCH.65621.R16544"},{"updated":"2018-03-26T10:30:23Z","doi":"10.5256/F1000RESEARCH.65622.R16545"},{"updated":"2018-03-26T10:35:23Z","doi":"10.5256/F1000RESEARCH.65622.R16546"},{"updated":"2018-03-26T10:50:23Z","doi":"10.5256/F1000RESEARCH.65644.R16547"},{"updated":"2018-03-26T10:55:23Z","doi":"10.5256/F1000RESEARCH.65649.R16549"},{"updated":"2018-03-26T11:00:23Z","doi":"10.5256/F1000RESEARCH.65651.R16550"},{"updated":"2018-03-26T14:20:23Z","doi":"10.21956/WELLCOMEOPENRES.65268.R16503"},{"updated":"2018-03-26T20:40:15Z","doi":"10.24354/73666448X"},{"updated":"2018-03-26T23:02:56Z","doi":"10.24354/NZ805Z68Q"},{"updated":"2018-03-27T07:44:41Z","doi":"10.18711/A7RN83BQ"},{"updated":"2018-03-27T08:05:37Z","doi":"10.18711/0K47HBEQ"},{"updated":"2018-03-27T09:40:23Z","doi":"10.5256/F1000RESEARCH.65677.R16572"},{"updated":"2018-03-29T13:33:09Z","doi":"10.4124/N9CDH5HRG9.1"},{"updated":"2018-03-29T13:33:09Z","doi":"10.4124/JTFC7DXRKP.1"},{"updated":"2018-03-29T13:33:09Z","doi":"10.4124/DS72XJRXYG.2"},{"updated":"2018-03-29T13:33:09Z","doi":"10.4124/GSX9DS3J5Y.1"},{"updated":"2018-03-29T14:36:09Z","doi":"10.4124/HSKBM6P6RY.1"},{"updated":"2018-03-29T15:13:16Z","doi":"10.7490/F1000RESEARCH.1130985.1"},{"updated":"2018-03-29T15:31:01Z","doi":"10.7490/F1000RESEARCH.1130987.1"},{"updated":"2018-03-30T13:50:31Z","doi":"10.0174/PHAIDRA.15"},{"updated":"2018-03-30T13:53:36Z","doi":"10.0174/PHAIDRA.16"},{"updated":"2018-04-03T07:25:32Z","doi":"10.0133/1522740326511"},{"updated":"2018-04-03T07:28:39Z","doi":"10.0133/37147"},{"updated":"2018-04-03T07:33:12Z","doi":"10.0133/37154"},{"updated":"2018-04-03T07:42:45Z","doi":"10.0133/1522741361930"},{"updated":"2018-04-03T07:47:09Z","doi":"10.0133/37161"},{"updated":"2018-04-03T07:50:48Z","doi":"10.0133/37168"},{"updated":"2018-04-03T10:55:48Z","doi":"10.18711/NF5ZUWUX"},{"updated":"2018-04-03T11:00:02Z","doi":"10.0133/1522753198258"},{"updated":"2018-04-03T11:09:17Z","doi":"10.0133/37182"},{"updated":"2018-04-03T11:26:27Z","doi":"10.14278/RODARETEST.4"},{"updated":"2018-04-03T11:26:27Z","doi":"10.14278/RODARETEST.3"},{"updated":"2018-04-03T12:06:01Z","doi":"10.7490/F1000RESEARCH.1131058.1"},{"updated":"2018-04-03T13:56:16Z","doi":"10.0180/OPARADEV-21"},{"updated":"2018-04-03T14:53:25Z","doi":"10.0133/37198"},{"updated":"2018-04-03T16:33:50Z","doi":"10.0123/DSPACE-6-SUBMISSIONPROCESS/4"},{"updated":"2018-04-04T06:04:36Z","doi":"10.0133/37200"},{"updated":"2018-04-04T06:19:34Z","doi":"10.0133/37202"},{"updated":"2018-04-04T06:26:07Z","doi":"10.0133/1522823164967"},{"updated":"2018-04-04T06:27:05Z","doi":"10.0133/37204"},{"updated":"2018-04-04T06:30:48Z","doi":"10.0133/37206"},{"updated":"2018-04-04T06:35:31Z","doi":"10.0133/37212"},{"updated":"2018-04-04T06:42:54Z","doi":"10.0133/1522824170260"},{"updated":"2018-04-04T06:44:46Z","doi":"10.0133/37224"},{"updated":"2018-04-04T07:12:33Z","doi":"10.0133/37232"},{"updated":"2018-04-04T07:12:36Z","doi":"10.0133/37233"},{"updated":"2018-04-04T07:14:33Z","doi":"10.0133/37235"},{"updated":"2018-04-04T08:52:33Z","doi":"10.0133/37239"},{"updated":"2018-04-04T08:52:39Z","doi":"10.0133/37238"},{"updated":"2018-04-04T09:20:10Z","doi":"10.0133/1522833606936"},{"updated":"2018-04-04T09:22:53Z","doi":"10.0133/37249"},{"updated":"2018-04-04T09:26:52Z","doi":"10.0133/37256"},{"updated":"2018-04-04T09:54:25Z","doi":"10.4124/31763EC9-22AC-4CEF-B533-86EEEE108E96"},{"updated":"2018-04-04T12:41:01Z","doi":"10.0133/1522845656642"},{"updated":"2018-04-04T12:42:39Z","doi":"10.0133/37267"},{"updated":"2018-04-04T12:46:13Z","doi":"10.0133/37274"},{"updated":"2018-04-04T13:28:34Z","doi":"10.0133/1522848510933"},{"updated":"2018-04-04T13:30:19Z","doi":"10.0133/37282"},{"updated":"2018-04-04T13:34:25Z","doi":"10.0133/37289"},{"updated":"2018-04-04T13:42:13Z","doi":"10.18711/PI6L21QH"},{"updated":"2018-04-04T13:57:59Z","doi":"10.0133/1522850275047"},{"updated":"2018-04-04T14:00:11Z","doi":"10.0133/37298"},{"updated":"2018-04-04T14:05:26Z","doi":"10.0133/37305"},{"updated":"2018-04-04T14:16:34Z","doi":"10.0133/37306"},{"updated":"2018-04-04T14:16:36Z","doi":"10.0133/37307"},{"updated":"2018-04-04T14:16:37Z","doi":"10.0133/37309"},{"updated":"2018-04-04T14:26:12Z","doi":"10.0133/1522851969004"},{"updated":"2018-04-04T14:27:46Z","doi":"10.0133/37318"},{"updated":"2018-04-04T14:31:11Z","doi":"10.0133/37325"},{"updated":"2018-04-04T14:48:33Z","doi":"10.0133/37327"},{"updated":"2018-04-04T14:48:35Z","doi":"10.0133/37326"},{"updated":"2018-04-04T14:50:32Z","doi":"10.0133/37329"},{"updated":"2018-04-04T15:21:41Z","doi":"10.4124/TEST38356"},{"updated":"2018-04-05T07:25:52Z","doi":"10.0133/1522913147296"},{"updated":"2018-04-05T07:27:54Z","doi":"10.0133/37338"},{"updated":"2018-04-05T07:33:35Z","doi":"10.0133/37345"},{"updated":"2018-04-05T07:56:33Z","doi":"10.0133/37347"},{"updated":"2018-04-05T07:56:35Z","doi":"10.0133/37349"},{"updated":"2018-04-05T07:56:37Z","doi":"10.0133/37346"},{"updated":"2018-04-05T08:11:05Z","doi":"10.0133/1522915861265"},{"updated":"2018-04-05T08:12:54Z","doi":"10.0133/37357"},{"updated":"2018-04-05T08:16:42Z","doi":"10.0133/37364"},{"updated":"2018-04-05T08:34:34Z","doi":"10.0133/37366"},{"updated":"2018-04-05T08:34:35Z","doi":"10.0133/37365"},{"updated":"2018-04-05T08:36:33Z","doi":"10.0133/37368"},{"updated":"2018-04-05T09:24:34Z","doi":"10.0133/37372"},{"updated":"2018-04-05T09:39:32Z","doi":"10.14278/RODARETEST.6"},{"updated":"2018-04-05T10:13:02Z","doi":"10.5256/F1000RESEARCH.55080.S186591"},{"updated":"2018-04-05T12:07:19Z","doi":"10.0123/DSPACE-6-SUBMISSIONPROCESS/6"},{"updated":"2018-04-05T12:09:38Z","doi":"10.0123/DSPACE-6-SUBMISSIONPROCESS/8"},{"updated":"2018-04-05T12:20:02Z","doi":"10.21956/WELLCOMEOPENRES.67749.R16669"},{"updated":"2018-04-05T12:27:39Z","doi":"10.14278/RODARETEST.7"},{"updated":"2018-04-05T12:27:40Z","doi":"10.14278/RODARETEST.5"},{"updated":"2018-04-05T12:45:02Z","doi":"10.21956/WELLCOMEOPENRES.67749.R16671"},{"updated":"2018-04-05T13:30:02Z","doi":"10.5256/F1000RESEARCH.50801.R15113"},{"updated":"2018-04-05T13:35:02Z","doi":"10.21956/WELLCOMEOPENRES.67750.R16670"},{"updated":"2018-04-05T15:11:02Z","doi":"10.5256/WELLCOMEOPENRES.63076.D202292"},{"updated":"2018-04-06T08:33:50Z","doi":"10.0133/1523003625184"},{"updated":"2018-04-06T08:36:09Z","doi":"10.0133/37380"},{"updated":"2018-04-06T08:40:16Z","doi":"10.0133/37387"},{"updated":"2018-04-06T08:45:02Z","doi":"10.21956/WELLCOMEOPENRES.67751.R16674"},{"updated":"2018-04-06T09:04:33Z","doi":"10.0133/37388"},{"updated":"2018-04-06T09:04:36Z","doi":"10.0133/37389"},{"updated":"2018-04-06T09:06:33Z","doi":"10.0133/37391"},{"updated":"2018-04-06T09:34:34Z","doi":"10.0133/37394"},{"updated":"2018-04-06T09:34:38Z","doi":"10.0133/37395"},{"updated":"2018-04-06T09:36:34Z","doi":"10.0133/37397"},{"updated":"2018-04-06T09:45:27Z","doi":"10.0133/1523007923642"},{"updated":"2018-04-06T09:48:16Z","doi":"10.0133/37406"},{"updated":"2018-04-06T10:00:58Z","doi":"10.0133/1523008854129"},{"updated":"2018-04-06T10:05:44Z","doi":"10.0133/37420"},{"updated":"2018-04-06T10:11:15Z","doi":"10.0133/37427"},{"updated":"2018-04-06T12:15:02Z","doi":"10.5256/F1000RESEARCH.60315.R16703"},{"updated":"2018-04-06T12:26:35Z","doi":"10.0133/37428"},{"updated":"2018-04-06T12:43:15Z","doi":"10.0133/1523018589961"},{"updated":"2018-04-06T12:45:37Z","doi":"10.0133/37435"},{"updated":"2018-04-06T12:50:39Z","doi":"10.0133/37442"},{"updated":"2018-04-06T13:12:33Z","doi":"10.0133/37443"},{"updated":"2018-04-06T13:14:33Z","doi":"10.0133/37444"},{"updated":"2018-04-06T13:14:34Z","doi":"10.0133/37446"},{"updated":"2018-04-06T13:48:47Z","doi":"10.0133/1523022520924"},{"updated":"2018-04-06T13:51:52Z","doi":"10.0133/37455"},{"updated":"2018-04-06T13:59:43Z","doi":"10.0133/37462"},{"updated":"2018-04-06T14:06:29Z","doi":"10.0133/1523023585173"},{"updated":"2018-04-06T14:10:09Z","doi":"10.0133/37469"},{"updated":"2018-04-06T14:17:34Z","doi":"10.0133/37476"},{"updated":"2018-04-06T14:32:25Z","doi":"10.0133/1523025138580"},{"updated":"2018-04-06T14:32:36Z","doi":"10.18711/QPN3RHCN"},{"updated":"2018-04-06T14:35:41Z","doi":"10.0133/37483"},{"updated":"2018-04-06T14:42:56Z","doi":"10.0133/37490"},{"updated":"2018-04-06T15:05:14Z","doi":"10.0133/1523027110901"},{"updated":"2018-04-06T15:08:06Z","doi":"10.0133/37497"},{"updated":"2018-04-06T15:15:01Z","doi":"10.0133/37504"},{"updated":"2018-04-06T16:30:09Z","doi":"10.0133/1523032201243"},{"updated":"2018-04-06T16:32:45Z","doi":"10.0133/37511"},{"updated":"2018-04-06T16:38:16Z","doi":"10.0133/37518"},{"updated":"2018-04-06T16:58:33Z","doi":"10.0133/37519"},{"updated":"2018-04-06T17:00:34Z","doi":"10.0133/37520"},{"updated":"2018-04-06T17:00:36Z","doi":"10.0133/37522"}]}}
80
+ string: '{"responseHeader":{"status":0,"QTime":0},"response":{"numFound":265,"start":0,"docs":[{"updated":"2018-03-15T09:57:00Z","doi":"10.0133/1521107796250"},{"updated":"2018-03-15T09:58:59Z","doi":"10.0133/36983"},{"updated":"2018-03-15T10:03:15Z","doi":"10.0133/36990"},{"updated":"2018-03-15T10:20:22Z","doi":"10.0133/36974"},{"updated":"2018-03-15T10:28:52Z","doi":"10.0133/36991"},{"updated":"2018-03-15T10:28:55Z","doi":"10.0133/36992"},{"updated":"2018-03-15T10:30:52Z","doi":"10.0133/36994"},{"updated":"2018-03-15T11:43:27Z","doi":"10.25499/V3CQF9MP9PGHVMKOK4BGVESQRG"},{"updated":"2018-03-15T11:55:18Z","doi":"10.4124/TBD6DFCNV7.1"},{"updated":"2018-03-15T12:01:51Z","doi":"10.25499/NN6XPZMCAWFYE4C4U24AVM7UYC"},{"updated":"2018-03-15T12:02:33Z","doi":"10.25499/B7TDRUIIUOBMEYTAI2D2OQISUF"},{"updated":"2018-03-15T12:02:35Z","doi":"10.25499/9PPX2HMEIRM5V9XNVWSK4DPZHE"},{"updated":"2018-03-15T14:04:26Z","doi":"10.25499/YY6HMZZCJQ4IVAPIJ2V6VB3VFG"},{"updated":"2018-03-15T14:04:45Z","doi":"10.25499/32WT74C59PV5E6K2T6V5DCRBAF"},{"updated":"2018-03-15T14:04:47Z","doi":"10.25499/XZWXOIDVE799VCX5MF3RO23SIG"},{"updated":"2018-03-15T14:54:02Z","doi":"10.25499/FINYT33PBFCBENX9CTFEDYGBYH"},{"updated":"2018-03-15T15:24:41Z","doi":"10.4124/TEST31174"},{"updated":"2018-03-15T17:51:54Z","doi":"10.4124/TEST90956"},{"updated":"2018-03-15T17:52:36Z","doi":"10.4124/TEST93333"},{"updated":"2018-03-15T17:53:16Z","doi":"10.4124/TEST41361"},{"updated":"2018-03-15T18:13:06Z","doi":"10.4124/TEST25895"},{"updated":"2018-03-15T18:15:31Z","doi":"10.4124/TEST10959"},{"updated":"2018-03-15T18:16:19Z","doi":"10.4124/TEST12971"},{"updated":"2018-03-15T18:17:38Z","doi":"10.4124/TEST68679"},{"updated":"2018-03-16T10:02:53Z","doi":"10.0133/1521194550071"},{"updated":"2018-03-16T10:04:32Z","doi":"10.0133/37003"},{"updated":"2018-03-16T10:08:19Z","doi":"10.0133/37010"},{"updated":"2018-03-16T10:30:53Z","doi":"10.0133/37012"},{"updated":"2018-03-16T10:30:56Z","doi":"10.0133/37011"},{"updated":"2018-03-16T10:32:52Z","doi":"10.0133/37014"},{"updated":"2018-03-16T13:24:53Z","doi":"10.0133/37017"},{"updated":"2018-03-16T13:26:52Z","doi":"10.0133/37018"},{"updated":"2018-03-16T15:58:49Z","doi":"10.4124/M5VRJ5JDH8.1"},{"updated":"2018-03-16T16:20:06Z","doi":"10.4124/ZBWBRNY7VW.1"},{"updated":"2018-03-16T16:55:39Z","doi":"10.4124/VBZNB7MDHD.1"},{"updated":"2018-03-16T19:11:13Z","doi":"10.24354/8C97KQ405"},{"updated":"2018-03-16T19:45:34Z","doi":"10.24354/T722H880Z"},{"updated":"2018-03-18T07:16:53Z","doi":"10.0133/1521357387134"},{"updated":"2018-03-18T07:21:38Z","doi":"10.0133/37025"},{"updated":"2018-03-18T07:29:23Z","doi":"10.0133/37032"},{"updated":"2018-03-18T07:35:40Z","doi":"10.0133/1521358516729"},{"updated":"2018-03-18T07:38:24Z","doi":"10.0133/37039"},{"updated":"2018-03-18T07:44:06Z","doi":"10.0133/37046"},{"updated":"2018-03-18T08:10:54Z","doi":"10.0133/37048"},{"updated":"2018-03-18T08:10:56Z","doi":"10.0133/37047"},{"updated":"2018-03-18T08:12:52Z","doi":"10.0133/37050"},{"updated":"2018-03-18T08:40:54Z","doi":"10.0133/37053"},{"updated":"2018-03-18T08:42:52Z","doi":"10.0133/37056"},{"updated":"2018-03-18T08:42:54Z","doi":"10.0133/37054"},{"updated":"2018-03-18T21:36:52Z","doi":"10.25499/RWGAYBZUGR23V4TFCB6NRXB5IC"},{"updated":"2018-03-19T08:46:20Z","doi":"10.0133/1521449157387"},{"updated":"2018-03-19T08:48:03Z","doi":"10.0133/37065"},{"updated":"2018-03-19T08:51:51Z","doi":"10.0133/37072"},{"updated":"2018-03-19T13:28:54Z","doi":"10.0133/37074"},{"updated":"2018-03-19T14:47:13Z","doi":"10.0133/1521470737379"},{"updated":"2018-03-19T14:48:54Z","doi":"10.0133/37083"},{"updated":"2018-03-19T14:52:16Z","doi":"10.0133/37090"},{"updated":"2018-03-20T10:17:01Z","doi":"10.18711/OQC0TZO1"},{"updated":"2018-03-20T10:36:29Z","doi":"10.18711/XO8BKEMO"},{"updated":"2018-03-20T10:55:22Z","doi":"10.5256/F1000RESEARCH.62588.R16484"},{"updated":"2018-03-20T11:05:22Z","doi":"10.5256/F1000RESEARCH.62588.R16485"},{"updated":"2018-03-20T11:05:22Z","doi":"10.5256/F1000RESEARCH.62588.R16486"},{"updated":"2018-03-20T11:05:22Z","doi":"10.5256/F1000RESEARCH.62588.R16487"},{"updated":"2018-03-20T11:15:22Z","doi":"10.5256/F1000RESEARCH.62714.R16492"},{"updated":"2018-03-20T11:45:22Z","doi":"10.5256/F1000RESEARCH.62714.R16489"},{"updated":"2018-03-20T12:20:22Z","doi":"10.21956/GATESOPENRES.537.R357"},{"updated":"2018-03-20T12:20:22Z","doi":"10.21956/GATESOPENRES.537.R358"},{"updated":"2018-03-20T12:50:33Z","doi":"10.18711/362RN2U1"},{"updated":"2018-03-20T13:00:40Z","doi":"10.18711/GZVK8KT6"},{"updated":"2018-03-20T14:36:49Z","doi":"10.18711/JSYB6GEY"},{"updated":"2018-03-20T15:18:01Z","doi":"10.18711/JJED9J3P"},{"updated":"2018-03-20T15:43:48Z","doi":"10.4124/930C0D94-F524-49FC-AAD8-3565B512D595"},{"updated":"2018-03-20T15:59:20Z","doi":"10.4124/A330D8B8-8903-4340-82F9-373883FBF6AE"},{"updated":"2018-03-20T16:19:44Z","doi":"10.18711/ALLAB15M"},{"updated":"2018-03-21T08:56:54Z","doi":"10.0133/37094"},{"updated":"2018-03-21T10:10:42Z","doi":"10.18711/OPB2KK4W"},{"updated":"2018-03-21T10:15:13Z","doi":"10.18711/0JDFNQ2C"},{"updated":"2018-03-21T10:39:50Z","doi":"10.0133/1521628766400"},{"updated":"2018-03-21T10:41:52Z","doi":"10.0133/37102"},{"updated":"2018-03-21T10:45:55Z","doi":"10.0133/37109"},{"updated":"2018-03-21T11:14:54Z","doi":"10.0133/37110"},{"updated":"2018-03-21T14:35:51Z","doi":"10.4124/TEST52413"},{"updated":"2018-03-21T14:41:40Z","doi":"10.0133/1521643275128"},{"updated":"2018-03-21T14:43:19Z","doi":"10.0133/37119"},{"updated":"2018-03-21T14:48:11Z","doi":"10.0133/37126"},{"updated":"2018-03-21T14:49:49Z","doi":"10.4124/TEST52414"},{"updated":"2018-03-21T14:51:05Z","doi":"10.0133/1521643765524"},{"updated":"2018-03-21T14:52:56Z","doi":"10.0133/37133"},{"updated":"2018-03-21T14:56:50Z","doi":"10.0133/37140"},{"updated":"2018-03-21T15:26:26Z","doi":"10.25620/ICIBER.ISSN.1476-4687"},{"updated":"2018-03-21T16:22:42Z","doi":"10.4124/55YP43BPKS.1"},{"updated":"2018-03-21T16:22:58Z","doi":"10.4124/55YP43BPKS.2"},{"updated":"2018-03-21T16:34:52Z","doi":"10.4124/XNFJTJJXGJ.1"},{"updated":"2018-03-21T16:46:35Z","doi":"10.4124/XNFJTJJXGJ.2"},{"updated":"2018-03-21T17:02:42Z","doi":"10.4124/XNFJTJJXGJ.3"},{"updated":"2018-03-21T19:58:36Z","doi":"10.18711/X56MF6P7"},{"updated":"2018-03-22T10:55:22Z","doi":"10.5256/F1000RESEARCH.63076.R16503"},{"updated":"2018-03-22T11:10:22Z","doi":"10.5256/F1000RESEARCH.63076.R16504"},{"updated":"2018-03-22T11:15:22Z","doi":"10.5256/F1000RESEARCH.63076.R16506"},{"updated":"2018-03-22T11:40:22Z","doi":"10.5256/F1000RESEARCH.63085.R16510"},{"updated":"2018-03-22T11:50:22Z","doi":"10.21956/GATESOPENRES.553.R456"},{"updated":"2018-03-22T11:55:22Z","doi":"10.21956/GATESOPENRES.553.R457"},{"updated":"2018-03-22T12:05:22Z","doi":"10.21956/GATESOPENRES.1120.R461"},{"updated":"2018-03-22T12:45:39Z","doi":"10.15770/0000-001A"},{"updated":"2018-03-22T12:45:40Z","doi":"10.15770/0000-001M"},{"updated":"2018-03-22T14:31:30Z","doi":"10.18711/CSANFMN1"},{"updated":"2018-03-22T14:36:31Z","doi":"10.18711/QK3R7PQP"},{"updated":"2018-03-22T14:55:49Z","doi":"10.25499/J3M7BOSEJAS5VJGA4Q4P6MI9IG"},{"updated":"2018-03-22T14:55:56Z","doi":"10.25499/YOF9GCHQ3D2TECT7HZF625V99F"},{"updated":"2018-03-22T14:56:10Z","doi":"10.25499/OODK9CACIQV3V2XNZSFJ5KDOJD"},{"updated":"2018-03-22T14:56:12Z","doi":"10.25499/R42626B4YVZ2ETCQ64DV7KAASH"},{"updated":"2018-03-22T14:56:37Z","doi":"10.25499/CQW4OJ6KBT24V4KP2C53QEMCTH"},{"updated":"2018-03-22T14:56:58Z","doi":"10.25499/NDGB4WCHQKMJE9KYYY7BY9ID5C"},{"updated":"2018-03-22T16:00:22Z","doi":"10.5256/F1000RESEARCH.60647.R16516"},{"updated":"2018-03-22T16:51:03Z","doi":"10.4124/XWT8CPCVNR.1"},{"updated":"2018-03-23T11:25:23Z","doi":"10.5256/F1000RESEARCH.58332.R16525"},{"updated":"2018-03-23T11:45:23Z","doi":"10.5256/F1000RESEARCH.63108.R16526"},{"updated":"2018-03-23T15:03:09Z","doi":"10.4124/P4BF9YJTC9.1"},{"updated":"2018-03-23T15:04:22Z","doi":"10.4124/P4BF9YJTC9.2"},{"updated":"2018-03-23T15:43:50Z","doi":"10.4124/M383JVWW8P.1"},{"updated":"2018-03-23T16:43:07Z","doi":"10.18711/1KTYIXIF"},{"updated":"2018-03-23T16:45:48Z","doi":"10.18711/UHT655R7"},{"updated":"2018-03-23T20:43:55Z","doi":"10.24354/KW52J804P"},{"updated":"2018-03-23T21:14:45Z","doi":"10.24354/1N79H428D"},{"updated":"2018-03-26T10:05:23Z","doi":"10.5256/F1000RESEARCH.65620.R16542"},{"updated":"2018-03-26T10:10:23Z","doi":"10.5256/F1000RESEARCH.65621.R16543"},{"updated":"2018-03-26T10:20:23Z","doi":"10.5256/F1000RESEARCH.65621.R16544"},{"updated":"2018-03-26T10:30:23Z","doi":"10.5256/F1000RESEARCH.65622.R16545"},{"updated":"2018-03-26T10:35:23Z","doi":"10.5256/F1000RESEARCH.65622.R16546"},{"updated":"2018-03-26T10:50:23Z","doi":"10.5256/F1000RESEARCH.65644.R16547"},{"updated":"2018-03-26T10:55:23Z","doi":"10.5256/F1000RESEARCH.65649.R16549"},{"updated":"2018-03-26T11:00:23Z","doi":"10.5256/F1000RESEARCH.65651.R16550"},{"updated":"2018-03-26T14:20:23Z","doi":"10.21956/WELLCOMEOPENRES.65268.R16503"},{"updated":"2018-03-26T20:40:15Z","doi":"10.24354/73666448X"},{"updated":"2018-03-26T23:02:56Z","doi":"10.24354/NZ805Z68Q"},{"updated":"2018-03-27T07:44:41Z","doi":"10.18711/A7RN83BQ"},{"updated":"2018-03-27T08:05:37Z","doi":"10.18711/0K47HBEQ"},{"updated":"2018-03-27T09:40:23Z","doi":"10.5256/F1000RESEARCH.65677.R16572"},{"updated":"2018-03-29T13:33:09Z","doi":"10.4124/N9CDH5HRG9.1"},{"updated":"2018-03-29T13:33:09Z","doi":"10.4124/JTFC7DXRKP.1"},{"updated":"2018-03-29T13:33:09Z","doi":"10.4124/DS72XJRXYG.2"},{"updated":"2018-03-29T13:33:09Z","doi":"10.4124/GSX9DS3J5Y.1"},{"updated":"2018-03-29T14:36:09Z","doi":"10.4124/HSKBM6P6RY.1"},{"updated":"2018-03-29T15:13:16Z","doi":"10.7490/F1000RESEARCH.1130985.1"},{"updated":"2018-03-29T15:31:01Z","doi":"10.7490/F1000RESEARCH.1130987.1"},{"updated":"2018-03-30T13:50:31Z","doi":"10.0174/PHAIDRA.15"},{"updated":"2018-03-30T13:53:36Z","doi":"10.0174/PHAIDRA.16"},{"updated":"2018-04-03T07:25:32Z","doi":"10.0133/1522740326511"},{"updated":"2018-04-03T07:28:39Z","doi":"10.0133/37147"},{"updated":"2018-04-03T07:33:12Z","doi":"10.0133/37154"},{"updated":"2018-04-03T07:42:45Z","doi":"10.0133/1522741361930"},{"updated":"2018-04-03T07:47:09Z","doi":"10.0133/37161"},{"updated":"2018-04-03T07:50:48Z","doi":"10.0133/37168"},{"updated":"2018-04-03T10:55:48Z","doi":"10.18711/NF5ZUWUX"},{"updated":"2018-04-03T11:00:02Z","doi":"10.0133/1522753198258"},{"updated":"2018-04-03T11:09:17Z","doi":"10.0133/37182"},{"updated":"2018-04-03T11:26:27Z","doi":"10.14278/RODARETEST.4"},{"updated":"2018-04-03T11:26:27Z","doi":"10.14278/RODARETEST.3"},{"updated":"2018-04-03T12:06:01Z","doi":"10.7490/F1000RESEARCH.1131058.1"},{"updated":"2018-04-03T13:56:16Z","doi":"10.0180/OPARADEV-21"},{"updated":"2018-04-03T14:53:25Z","doi":"10.0133/37198"},{"updated":"2018-04-03T16:33:50Z","doi":"10.0123/DSPACE-6-SUBMISSIONPROCESS/4"},{"updated":"2018-04-04T06:04:36Z","doi":"10.0133/37200"},{"updated":"2018-04-04T06:19:34Z","doi":"10.0133/37202"},{"updated":"2018-04-04T06:26:07Z","doi":"10.0133/1522823164967"},{"updated":"2018-04-04T06:27:05Z","doi":"10.0133/37204"},{"updated":"2018-04-04T06:30:48Z","doi":"10.0133/37206"},{"updated":"2018-04-04T06:35:31Z","doi":"10.0133/37212"},{"updated":"2018-04-04T06:42:54Z","doi":"10.0133/1522824170260"},{"updated":"2018-04-04T06:44:46Z","doi":"10.0133/37224"},{"updated":"2018-04-04T07:12:33Z","doi":"10.0133/37232"},{"updated":"2018-04-04T07:12:36Z","doi":"10.0133/37233"},{"updated":"2018-04-04T07:14:33Z","doi":"10.0133/37235"},{"updated":"2018-04-04T08:52:33Z","doi":"10.0133/37239"},{"updated":"2018-04-04T08:52:39Z","doi":"10.0133/37238"},{"updated":"2018-04-04T09:20:10Z","doi":"10.0133/1522833606936"},{"updated":"2018-04-04T09:22:53Z","doi":"10.0133/37249"},{"updated":"2018-04-04T09:26:52Z","doi":"10.0133/37256"},{"updated":"2018-04-04T09:54:25Z","doi":"10.4124/31763EC9-22AC-4CEF-B533-86EEEE108E96"},{"updated":"2018-04-04T12:41:01Z","doi":"10.0133/1522845656642"},{"updated":"2018-04-04T12:42:39Z","doi":"10.0133/37267"},{"updated":"2018-04-04T12:46:13Z","doi":"10.0133/37274"},{"updated":"2018-04-04T13:28:34Z","doi":"10.0133/1522848510933"},{"updated":"2018-04-04T13:30:19Z","doi":"10.0133/37282"},{"updated":"2018-04-04T13:34:25Z","doi":"10.0133/37289"},{"updated":"2018-04-04T13:42:13Z","doi":"10.18711/PI6L21QH"},{"updated":"2018-04-04T13:57:59Z","doi":"10.0133/1522850275047"},{"updated":"2018-04-04T14:00:11Z","doi":"10.0133/37298"},{"updated":"2018-04-04T14:05:26Z","doi":"10.0133/37305"},{"updated":"2018-04-04T14:16:34Z","doi":"10.0133/37306"},{"updated":"2018-04-04T14:16:36Z","doi":"10.0133/37307"},{"updated":"2018-04-04T14:16:37Z","doi":"10.0133/37309"},{"updated":"2018-04-04T14:26:12Z","doi":"10.0133/1522851969004"},{"updated":"2018-04-04T14:27:46Z","doi":"10.0133/37318"},{"updated":"2018-04-04T14:31:11Z","doi":"10.0133/37325"},{"updated":"2018-04-04T14:48:33Z","doi":"10.0133/37327"},{"updated":"2018-04-04T14:48:35Z","doi":"10.0133/37326"},{"updated":"2018-04-04T14:50:32Z","doi":"10.0133/37329"},{"updated":"2018-04-04T15:21:41Z","doi":"10.4124/TEST38356"},{"updated":"2018-04-05T07:25:52Z","doi":"10.0133/1522913147296"},{"updated":"2018-04-05T07:27:54Z","doi":"10.0133/37338"},{"updated":"2018-04-05T07:33:35Z","doi":"10.0133/37345"},{"updated":"2018-04-05T07:56:33Z","doi":"10.0133/37347"},{"updated":"2018-04-05T07:56:35Z","doi":"10.0133/37349"},{"updated":"2018-04-05T07:56:37Z","doi":"10.0133/37346"},{"updated":"2018-04-05T08:11:05Z","doi":"10.0133/1522915861265"},{"updated":"2018-04-05T08:12:54Z","doi":"10.0133/37357"},{"updated":"2018-04-05T08:16:42Z","doi":"10.0133/37364"},{"updated":"2018-04-05T08:34:34Z","doi":"10.0133/37366"},{"updated":"2018-04-05T08:34:35Z","doi":"10.0133/37365"},{"updated":"2018-04-05T08:36:33Z","doi":"10.0133/37368"},{"updated":"2018-04-05T09:24:34Z","doi":"10.0133/37372"},{"updated":"2018-04-05T09:39:32Z","doi":"10.14278/RODARETEST.6"},{"updated":"2018-04-05T10:13:02Z","doi":"10.5256/F1000RESEARCH.55080.S186591"},{"updated":"2018-04-05T12:07:19Z","doi":"10.0123/DSPACE-6-SUBMISSIONPROCESS/6"},{"updated":"2018-04-05T12:09:38Z","doi":"10.0123/DSPACE-6-SUBMISSIONPROCESS/8"},{"updated":"2018-04-05T12:20:02Z","doi":"10.21956/WELLCOMEOPENRES.67749.R16669"},{"updated":"2018-04-05T12:27:39Z","doi":"10.14278/RODARETEST.7"},{"updated":"2018-04-05T12:27:40Z","doi":"10.14278/RODARETEST.5"},{"updated":"2018-04-05T12:45:02Z","doi":"10.21956/WELLCOMEOPENRES.67749.R16671"},{"updated":"2018-04-05T13:30:02Z","doi":"10.5256/F1000RESEARCH.50801.R15113"},{"updated":"2018-04-05T13:35:02Z","doi":"10.21956/WELLCOMEOPENRES.67750.R16670"},{"updated":"2018-04-05T15:11:02Z","doi":"10.5256/WELLCOMEOPENRES.63076.D202292"},{"updated":"2018-04-06T08:33:50Z","doi":"10.0133/1523003625184"},{"updated":"2018-04-06T08:36:09Z","doi":"10.0133/37380"},{"updated":"2018-04-06T08:40:16Z","doi":"10.0133/37387"},{"updated":"2018-04-06T08:45:02Z","doi":"10.21956/WELLCOMEOPENRES.67751.R16674"},{"updated":"2018-04-06T09:04:33Z","doi":"10.0133/37388"},{"updated":"2018-04-06T09:04:36Z","doi":"10.0133/37389"},{"updated":"2018-04-06T09:06:33Z","doi":"10.0133/37391"},{"updated":"2018-04-06T09:34:34Z","doi":"10.0133/37394"},{"updated":"2018-04-06T09:34:38Z","doi":"10.0133/37395"},{"updated":"2018-04-06T09:36:34Z","doi":"10.0133/37397"},{"updated":"2018-04-06T09:45:27Z","doi":"10.0133/1523007923642"},{"updated":"2018-04-06T09:48:16Z","doi":"10.0133/37406"},{"updated":"2018-04-06T10:00:58Z","doi":"10.0133/1523008854129"},{"updated":"2018-04-06T10:05:44Z","doi":"10.0133/37420"},{"updated":"2018-04-06T10:11:15Z","doi":"10.0133/37427"},{"updated":"2018-04-06T12:15:02Z","doi":"10.5256/F1000RESEARCH.60315.R16703"},{"updated":"2018-04-06T12:26:35Z","doi":"10.0133/37428"},{"updated":"2018-04-06T12:43:15Z","doi":"10.0133/1523018589961"},{"updated":"2018-04-06T12:45:37Z","doi":"10.0133/37435"},{"updated":"2018-04-06T12:50:39Z","doi":"10.0133/37442"},{"updated":"2018-04-06T13:12:33Z","doi":"10.0133/37443"},{"updated":"2018-04-06T13:14:33Z","doi":"10.0133/37444"},{"updated":"2018-04-06T13:14:34Z","doi":"10.0133/37446"},{"updated":"2018-04-06T13:48:47Z","doi":"10.0133/1523022520924"},{"updated":"2018-04-06T13:51:52Z","doi":"10.0133/37455"},{"updated":"2018-04-06T13:59:43Z","doi":"10.0133/37462"},{"updated":"2018-04-06T14:06:29Z","doi":"10.0133/1523023585173"},{"updated":"2018-04-06T14:10:09Z","doi":"10.0133/37469"},{"updated":"2018-04-06T14:17:34Z","doi":"10.0133/37476"},{"updated":"2018-04-06T14:32:25Z","doi":"10.0133/1523025138580"},{"updated":"2018-04-06T14:32:36Z","doi":"10.18711/QPN3RHCN"},{"updated":"2018-04-06T14:35:41Z","doi":"10.0133/37483"},{"updated":"2018-04-06T14:42:56Z","doi":"10.0133/37490"},{"updated":"2018-04-06T15:05:14Z","doi":"10.0133/1523027110901"},{"updated":"2018-04-06T15:08:06Z","doi":"10.0133/37497"},{"updated":"2018-04-06T15:15:01Z","doi":"10.0133/37504"},{"updated":"2018-04-06T16:30:09Z","doi":"10.0133/1523032201243"},{"updated":"2018-04-06T16:32:45Z","doi":"10.0133/37511"},{"updated":"2018-04-06T16:38:16Z","doi":"10.0133/37518"},{"updated":"2018-04-06T16:58:33Z","doi":"10.0133/37519"},{"updated":"2018-04-06T17:00:34Z","doi":"10.0133/37520"},{"updated":"2018-04-06T17:00:36Z","doi":"10.0133/37522"}]}}
81
81
 
82
82
  '
83
83
  http_version:
84
- recorded_at: Sat, 08 Sep 2018 12:57:40 GMT
84
+ recorded_at: Sat, 08 Sep 2018 22:52:23 GMT
85
85
  - request:
86
86
  method: get
87
87
  uri: https://s3.amazonaws.com/
@@ -92,23 +92,23 @@ http_interactions:
92
92
  User-Agent:
93
93
  - fog-core/1.45.0
94
94
  X-Amz-Date:
95
- - 20180908T125740Z
95
+ - 20180908T225223Z
96
96
  X-Amz-Content-Sha256:
97
97
  - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
98
98
  Authorization:
99
99
  - AWS4-HMAC-SHA256 Credential=<AWS_ACCESS_KEY_ID>/20180908/us-east-1/s3/aws4_request,
100
- SignedHeaders=host;x-amz-content-sha256;x-amz-date, Signature=1aaa914a9010c07333c8f0f4086c89ec124985859244e92973c2d1b97caf14d9
100
+ SignedHeaders=host;x-amz-content-sha256;x-amz-date, Signature=7f1b9c642e1ee5b71f9d8e3320a057f401fc7f71a172e0b2b84c02484fc18f08
101
101
  response:
102
102
  status:
103
103
  code: 200
104
104
  message: OK
105
105
  headers:
106
106
  X-Amz-Id-2:
107
- - M6yvEJuw+T5iIsl0aVdJ8Av53nuFZJ2Fc2bUYYaNbyGc/LInyY8+eDzhNZPCPguWx029xd+DZbI=
107
+ - iJ+U6cARiidl9kUy1U2X//4FZ65pmB/+mkMdnm2c4ofIOLzU/DDy0a7FK7Ej1ryilBX+bfV48DY=
108
108
  X-Amz-Request-Id:
109
- - 25CCEA6B7E605CDC
109
+ - 0DD3BBA77F92E0A8
110
110
  Date:
111
- - Sat, 08 Sep 2018 12:57:42 GMT
111
+ - Sat, 08 Sep 2018 22:52:24 GMT
112
112
  Content-Type:
113
113
  - application/xml
114
114
  Server:
@@ -119,10 +119,10 @@ http_interactions:
119
119
  <?xml version="1.0" encoding="UTF-8"?>
120
120
  <ListAllMyBucketsResult xmlns="http://s3.amazonaws.com/doc/2006-03-01/"><Owner><ID>8170cc616e9d1833db4bade0c7af0010f04464343a1004b67a00fbcb41e361de</ID><DisplayName>infrastructure</DisplayName></Owner><Buckets><Bucket><Name>assets.datacite.org</Name><CreationDate>2018-01-03T09:09:55.000Z</CreationDate></Bucket><Bucket><Name>assets.test.datacite.org</Name><CreationDate>2018-01-06T05:16:26.000Z</CreationDate></Bucket><Bucket><Name>blog.datacite.org</Name><CreationDate>2018-01-03T09:10:38.000Z</CreationDate></Bucket><Bucket><Name>blog.stage.datacite.org</Name><CreationDate>2018-01-02T20:25:03.000Z</CreationDate></Bucket><Bucket><Name>book.openingscience.org</Name><CreationDate>2018-02-14T07:04:58.000Z</CreationDate></Bucket><Bucket><Name>doi.datacite.org</Name><CreationDate>2018-01-03T11:37:50.000Z</CreationDate></Bucket><Bucket><Name>doi.stage.datacite.org</Name><CreationDate>2018-01-02T22:58:15.000Z</CreationDate></Bucket><Bucket><Name>lagotto.io</Name><CreationDate>2016-01-10T10:12:40.000Z</CreationDate></Bucket><Bucket><Name>logs-us.datacite.org</Name><CreationDate>2018-05-16T04:19:36.000Z</CreationDate></Bucket><Bucket><Name>logs.datacite.org</Name><CreationDate>2017-12-18T08:18:02.000Z</CreationDate></Bucket><Bucket><Name>logs.stage.datacite.org</Name><CreationDate>2018-03-25T06:50:47.000Z</CreationDate></Bucket><Bucket><Name>ops.datacite.org</Name><CreationDate>2016-06-03T19:38:04.000Z</CreationDate></Bucket><Bucket><Name>papertrail.datacite.org</Name><CreationDate>2016-01-04T23:25:19.000Z</CreationDate></Bucket><Bucket><Name>pidapalooza.org</Name><CreationDate>2018-01-04T06:48:35.000Z</CreationDate></Bucket><Bucket><Name>repositoryfinder.datacite.org</Name><CreationDate>2018-05-11T20:48:24.000Z</CreationDate></Bucket><Bucket><Name>repositoryfinder.stage.datacite.org</Name><CreationDate>2018-05-11T17:58:52.000Z</CreationDate></Bucket><Bucket><Name>schema.datacite.org</Name><CreationDate>2018-01-03T11:50:01.000Z</CreationDate></Bucket><Bucket><Name>schema.stage.datacite.org</Name><CreationDate>2018-01-03T11:48:28.000Z</CreationDate></Bucket><Bucket><Name>search.test.datacite.org</Name><CreationDate>2018-09-08T09:50:14.000Z</CreationDate></Bucket><Bucket><Name>sitemaps-search-datacite</Name><CreationDate>2018-09-08T09:57:15.000Z</CreationDate></Bucket><Bucket><Name>sitemaps-search-datacite-test</Name><CreationDate>2018-09-08T10:25:14.000Z</CreationDate></Bucket><Bucket><Name>stats.datacite.org</Name><CreationDate>2018-01-03T11:53:10.000Z</CreationDate></Bucket><Bucket><Name>stats.stage.datacite.org</Name><CreationDate>2018-01-02T21:15:31.000Z</CreationDate></Bucket><Bucket><Name>test.datacite.org</Name><CreationDate>2018-01-03T11:41:00.000Z</CreationDate></Bucket><Bucket><Name>www.datacite.org</Name><CreationDate>2018-01-03T11:33:53.000Z</CreationDate></Bucket><Bucket><Name>www.stage.datacite.org</Name><CreationDate>2018-01-02T20:05:21.000Z</CreationDate></Bucket></Buckets></ListAllMyBucketsResult>
121
121
  http_version:
122
- recorded_at: Sat, 08 Sep 2018 12:57:41 GMT
122
+ recorded_at: Sat, 08 Sep 2018 22:52:23 GMT
123
123
  - request:
124
124
  method: put
125
- uri: https://sitemaps-search-datacite-test.s3-eu-west-1.amazonaws.com/sitemaps-test/sitemap.xml.gz
125
+ uri: https://sitemaps-search-datacite-test.s3-eu-west-1.amazonaws.com/sitemap.xml.gz
126
126
  body:
127
127
  encoding: US-ASCII
128
128
  string: ''
@@ -134,28 +134,28 @@ http_interactions:
134
134
  X-Amz-Acl:
135
135
  - public-read
136
136
  X-Amz-Date:
137
- - 20180908T125742Z
137
+ - 20180908T225229Z
138
138
  X-Amz-Content-Sha256:
139
139
  - STREAMING-AWS4-HMAC-SHA256-PAYLOAD
140
140
  X-Amz-Decoded-Content-Length:
141
- - '4112'
141
+ - '4083'
142
142
  Authorization:
143
143
  - AWS4-HMAC-SHA256 Credential=<AWS_ACCESS_KEY_ID>/20180908/eu-west-1/s3/aws4_request,
144
144
  SignedHeaders=content-type;host;x-amz-acl;x-amz-content-sha256;x-amz-date;x-amz-decoded-content-length,
145
- Signature=3c14b44c8a03380011bdfcb6e69f809c6996707fdc89a2888d44aff94892b028
145
+ Signature=239fe00e3b7aa236f4c069e23bb08cd84cc5bc28dcb908f4099a0d366ce47995
146
146
  response:
147
147
  status:
148
148
  code: 200
149
149
  message: OK
150
150
  headers:
151
151
  X-Amz-Id-2:
152
- - 92nT+XneztSLyqfZI7mIzwr7kQO5S22dDumumV43J6W+msSIcUZHxGMUe+EHw8Ib9O/EDNUU6KU=
152
+ - YcgaczpB3JGJyFG80ON7bYQKLlEdnpGmOdmlAYn5iDHP2Yl+2yvpHYeIZka7dITb+nWuLuVctag=
153
153
  X-Amz-Request-Id:
154
- - 37BEAA41B0BBDE56
154
+ - '08F1D71C20E33FED'
155
155
  Date:
156
- - Sat, 08 Sep 2018 12:57:42 GMT
156
+ - Sat, 08 Sep 2018 22:52:30 GMT
157
157
  Etag:
158
- - '"1dee993fbb1304fe63ea636c3db056b3"'
158
+ - '"d990e7c75c0ee0e4d2abad42e92df93f"'
159
159
  Content-Length:
160
160
  - '0'
161
161
  Server:
@@ -164,5 +164,5 @@ http_interactions:
164
164
  encoding: ASCII-8BIT
165
165
  string: ''
166
166
  http_version:
167
- recorded_at: Sat, 08 Sep 2018 12:57:41 GMT
167
+ recorded_at: Sat, 08 Sep 2018 22:52:29 GMT
168
168
  recorded_with: VCR 3.0.3
@@ -19,7 +19,7 @@ http_interactions:
19
19
  message: OK
20
20
  headers:
21
21
  Date:
22
- - Sat, 08 Sep 2018 12:57:41 GMT
22
+ - Sat, 08 Sep 2018 22:52:29 GMT
23
23
  Content-Type:
24
24
  - application/json;charset=UTF-8
25
25
  Connection:
@@ -36,9 +36,9 @@ http_interactions:
36
36
  - DNT,X-CustomHeader,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Content-Range,Range,Authorization
37
37
  body:
38
38
  encoding: ASCII-8BIT
39
- string: '{"responseHeader":{"status":0,"QTime":2},"response":{"numFound":0,"start":0,"docs":[]}}
39
+ string: '{"responseHeader":{"status":0,"QTime":1},"response":{"numFound":0,"start":0,"docs":[]}}
40
40
 
41
41
  '
42
42
  http_version:
43
- recorded_at: Sat, 08 Sep 2018 12:57:41 GMT
43
+ recorded_at: Sat, 08 Sep 2018 22:52:29 GMT
44
44
  recorded_with: VCR 3.0.3
@@ -19,7 +19,7 @@ http_interactions:
19
19
  message: OK
20
20
  headers:
21
21
  Date:
22
- - Sat, 08 Sep 2018 13:04:22 GMT
22
+ - Sat, 08 Sep 2018 22:52:32 GMT
23
23
  Content-Type:
24
24
  - application/json;charset=UTF-8
25
25
  Connection:
@@ -19,7 +19,7 @@ http_interactions:
19
19
  message: OK
20
20
  headers:
21
21
  Date:
22
- - Sat, 08 Sep 2018 13:04:22 GMT
22
+ - Sat, 08 Sep 2018 22:52:32 GMT
23
23
  Content-Type:
24
24
  - application/json;charset=UTF-8
25
25
  Connection:
@@ -36,7 +36,7 @@ http_interactions:
36
36
  - DNT,X-CustomHeader,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Content-Range,Range,Authorization
37
37
  body:
38
38
  encoding: ASCII-8BIT
39
- string: '{"responseHeader":{"status":0,"QTime":2},"response":{"numFound":4,"start":0,"docs":[{"updated":"2018-04-09T10:25:02Z","doi":"10.5256/F1000RESEARCH.68843.R16717"},{"updated":"2018-04-09T11:05:02Z","doi":"10.5256/F1000RESEARCH.68852.R16719"},{"updated":"2018-04-09T11:05:02Z","doi":"10.5256/F1000RESEARCH.68852.R16720"},{"updated":"2018-04-09T11:40:02Z","doi":"10.5256/F1000RESEARCH.68854.R16723"}]}}
39
+ string: '{"responseHeader":{"status":0,"QTime":0},"response":{"numFound":4,"start":0,"docs":[{"updated":"2018-04-09T10:25:02Z","doi":"10.5256/F1000RESEARCH.68843.R16717"},{"updated":"2018-04-09T11:05:02Z","doi":"10.5256/F1000RESEARCH.68852.R16719"},{"updated":"2018-04-09T11:05:02Z","doi":"10.5256/F1000RESEARCH.68852.R16720"},{"updated":"2018-04-09T11:40:02Z","doi":"10.5256/F1000RESEARCH.68854.R16723"}]}}
40
40
 
41
41
  '
42
42
  http_version:
@@ -19,7 +19,7 @@ http_interactions:
19
19
  message: OK
20
20
  headers:
21
21
  Date:
22
- - Sat, 08 Sep 2018 13:04:27 GMT
22
+ - Sat, 08 Sep 2018 22:52:32 GMT
23
23
  Content-Type:
24
24
  - application/json;charset=UTF-8
25
25
  Connection:
@@ -19,7 +19,7 @@ http_interactions:
19
19
  message: OK
20
20
  headers:
21
21
  Date:
22
- - Sat, 08 Sep 2018 13:04:27 GMT
22
+ - Sat, 08 Sep 2018 22:52:32 GMT
23
23
  Content-Type:
24
24
  - application/json;charset=UTF-8
25
25
  Connection:
@@ -36,7 +36,7 @@ http_interactions:
36
36
  - DNT,X-CustomHeader,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Content-Range,Range,Authorization
37
37
  body:
38
38
  encoding: ASCII-8BIT
39
- string: '{"responseHeader":{"status":0,"QTime":1},"response":{"numFound":4,"start":0,"docs":[]}}
39
+ string: '{"responseHeader":{"status":0,"QTime":0},"response":{"numFound":4,"start":0,"docs":[]}}
40
40
 
41
41
  '
42
42
  http_version:
@@ -10,23 +10,23 @@ http_interactions:
10
10
  User-Agent:
11
11
  - fog-core/1.45.0
12
12
  X-Amz-Date:
13
- - 20180908T130424Z
13
+ - 20180908T225234Z
14
14
  X-Amz-Content-Sha256:
15
15
  - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
16
16
  Authorization:
17
17
  - AWS4-HMAC-SHA256 Credential=<AWS_ACCESS_KEY_ID>/20180908/us-east-1/s3/aws4_request,
18
- SignedHeaders=host;x-amz-content-sha256;x-amz-date, Signature=30a449c467ce4bc013b3fd46fd38eac33ad7fcc1e35e6ea7d8c4857f980f0f0b
18
+ SignedHeaders=host;x-amz-content-sha256;x-amz-date, Signature=3915399ae5ae1051ac87e3755a7c07be9e307990cf845f21c63b8743f61c0774
19
19
  response:
20
20
  status:
21
21
  code: 200
22
22
  message: OK
23
23
  headers:
24
24
  X-Amz-Id-2:
25
- - hykJSKsU3uGDVjpTIkgkSl5FHh0PGPlX73onxHuT6tBwqIn9IUw0anNDw50+etvVvuNLZgHlGO0=
25
+ - Ul08Yp6a47+6/w1raUppi4rnMhnzre+ufOtKb+6mndZvG0LliramKMA3ssqm6kqQ5cMcvr5Bb6k=
26
26
  X-Amz-Request-Id:
27
- - 50C6014A002CFC3D
27
+ - 6FAACA0CC0E88B08
28
28
  Date:
29
- - Sat, 08 Sep 2018 13:04:26 GMT
29
+ - Sat, 08 Sep 2018 22:52:35 GMT
30
30
  Content-Type:
31
31
  - application/xml
32
32
  Server:
@@ -40,7 +40,7 @@ http_interactions:
40
40
  recorded_at: Sun, 08 Apr 2018 22:00:00 GMT
41
41
  - request:
42
42
  method: put
43
- uri: https://sitemaps-search-datacite.s3-eu-west-1.amazonaws.com/sitemaps-test/sitemap.xml.gz
43
+ uri: https://sitemaps-search-datacite-test.s3-eu-west-1.amazonaws.com/sitemap.xml.gz
44
44
  body:
45
45
  encoding: US-ASCII
46
46
  string: ''
@@ -52,7 +52,7 @@ http_interactions:
52
52
  X-Amz-Acl:
53
53
  - public-read
54
54
  X-Amz-Date:
55
- - 20180908T130426Z
55
+ - 20180908T225235Z
56
56
  X-Amz-Content-Sha256:
57
57
  - STREAMING-AWS4-HMAC-SHA256-PAYLOAD
58
58
  X-Amz-Decoded-Content-Length:
@@ -60,20 +60,20 @@ http_interactions:
60
60
  Authorization:
61
61
  - AWS4-HMAC-SHA256 Credential=<AWS_ACCESS_KEY_ID>/20180908/eu-west-1/s3/aws4_request,
62
62
  SignedHeaders=content-type;host;x-amz-acl;x-amz-content-sha256;x-amz-date;x-amz-decoded-content-length,
63
- Signature=ce4bf98b15ce4dc81cef9b83178d46497934cdbd108eaf5184105565444caf58
63
+ Signature=5184c8481c71d46dd145ad52c799737809cfbe649449ef6046bf566d1ee237b0
64
64
  response:
65
65
  status:
66
66
  code: 200
67
67
  message: OK
68
68
  headers:
69
69
  X-Amz-Id-2:
70
- - I08HhtCExzACZxiKma8t1eDrbhVwafIf8iZWVVe3A6rKZxp/USopngKS5HRA0C0TVLF8FFaJ07U=
70
+ - bWCj1MpzEn5vwI19oxg3z7gJhAZWig6IOzOcYsD9zQS5yAdyGV2/n1vsep8lSqIYNNlzVo2pv2s=
71
71
  X-Amz-Request-Id:
72
- - 61616D2A16DC4641
72
+ - 7709C862F0A11E5B
73
73
  Date:
74
- - Sat, 08 Sep 2018 13:04:26 GMT
74
+ - Sat, 08 Sep 2018 22:52:35 GMT
75
75
  Etag:
76
- - '"7f6c4a6a1d08331a783ad40333526f8a"'
76
+ - '"3d7301afa56ca293f329e16929d0da6b"'
77
77
  Content-Length:
78
78
  - '0'
79
79
  Server:
@@ -10,23 +10,23 @@ http_interactions:
10
10
  User-Agent:
11
11
  - fog-core/1.45.0
12
12
  X-Amz-Date:
13
- - 20180908T130426Z
13
+ - 20180908T225231Z
14
14
  X-Amz-Content-Sha256:
15
15
  - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
16
16
  Authorization:
17
17
  - AWS4-HMAC-SHA256 Credential=<AWS_ACCESS_KEY_ID>/20180908/us-east-1/s3/aws4_request,
18
- SignedHeaders=host;x-amz-content-sha256;x-amz-date, Signature=bdb4d00565ef3c75fc83346a38caba7f8d7cf2ef7c0725a3038dcdf5b5537659
18
+ SignedHeaders=host;x-amz-content-sha256;x-amz-date, Signature=4809335dfcff0706d1cb12c32bd1d5e3ce586ad64fc785d621a8a6a67a057197
19
19
  response:
20
20
  status:
21
21
  code: 200
22
22
  message: OK
23
23
  headers:
24
24
  X-Amz-Id-2:
25
- - WKzrs+2G3rvyMseoIsfhFG85YNBMiO/egfcIOK5HnEBBn5QXwHkcdDmq1QDOqZpJ1MN3Z6LMwx0=
25
+ - bPS2LDaDb8FD2R31osZEaA+H1YzzGXAlHcnD0ms5hGOW1c8tIM1lnhy38AtJXPXaJTZqH/FRhto=
26
26
  X-Amz-Request-Id:
27
- - 9390FAB989FA697F
27
+ - 395C053ADA08B7F9
28
28
  Date:
29
- - Sat, 08 Sep 2018 13:04:27 GMT
29
+ - Sat, 08 Sep 2018 22:52:34 GMT
30
30
  Content-Type:
31
31
  - application/xml
32
32
  Server:
@@ -40,7 +40,7 @@ http_interactions:
40
40
  recorded_at: Sun, 08 Apr 2018 22:00:00 GMT
41
41
  - request:
42
42
  method: put
43
- uri: https://sitemaps-search-datacite.s3-eu-west-1.amazonaws.com/sitemaps-test/sitemap.xml.gz
43
+ uri: https://sitemaps-search-datacite-test.s3-eu-west-1.amazonaws.com/sitemap.xml.gz
44
44
  body:
45
45
  encoding: US-ASCII
46
46
  string: ''
@@ -52,28 +52,28 @@ http_interactions:
52
52
  X-Amz-Acl:
53
53
  - public-read
54
54
  X-Amz-Date:
55
- - 20180908T130427Z
55
+ - 20180908T225234Z
56
56
  X-Amz-Content-Sha256:
57
57
  - STREAMING-AWS4-HMAC-SHA256-PAYLOAD
58
58
  X-Amz-Decoded-Content-Length:
59
- - '29478'
59
+ - '29477'
60
60
  Authorization:
61
61
  - AWS4-HMAC-SHA256 Credential=<AWS_ACCESS_KEY_ID>/20180908/eu-west-1/s3/aws4_request,
62
62
  SignedHeaders=content-type;host;x-amz-acl;x-amz-content-sha256;x-amz-date;x-amz-decoded-content-length,
63
- Signature=0c868da9ca6da7a2b1bc7b082ff79daf9cb5f7617c493238d71f7cb9c509b687
63
+ Signature=8a89f8ea4dc72ca2b8df57064d44bc0cf9ee4df1f2841fe3d2c87f2c6ebb8743
64
64
  response:
65
65
  status:
66
66
  code: 200
67
67
  message: OK
68
68
  headers:
69
69
  X-Amz-Id-2:
70
- - HJjGAw/lCzv2B8O7dVxlpJ+JEBm89yjc2DC0dYQCtfzZuGUxrXjTp5YlUW6SH1bbiCVoRFInc2M=
70
+ - ciy4VD5rRm6nxdV5ULj3e0mXB0eatIcEHH7RuOYgVvaxhl3DLhb5jbNCoeN3V42T9mXBMilPiWI=
71
71
  X-Amz-Request-Id:
72
- - 37EFBBC2F7039344
72
+ - B2498A85D0432342
73
73
  Date:
74
- - Sat, 08 Sep 2018 13:04:27 GMT
74
+ - Sat, 08 Sep 2018 22:52:34 GMT
75
75
  Etag:
76
- - '"121d824eb89fe28918038dd45f51c07d"'
76
+ - '"5f55ade3c71bb6bf2338e9cb1210c4e2"'
77
77
  Content-Length:
78
78
  - '0'
79
79
  Server:
@@ -19,7 +19,7 @@ http_interactions:
19
19
  message: OK
20
20
  headers:
21
21
  Date:
22
- - Sat, 08 Sep 2018 13:04:22 GMT
22
+ - Sat, 08 Sep 2018 22:52:32 GMT
23
23
  Content-Type:
24
24
  - application/json;charset=UTF-8
25
25
  Connection:
@@ -36,7 +36,7 @@ http_interactions:
36
36
  - DNT,X-CustomHeader,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Content-Range,Range,Authorization
37
37
  body:
38
38
  encoding: ASCII-8BIT
39
- string: '{"responseHeader":{"status":0,"QTime":1},"response":{"numFound":0,"start":0,"docs":[]}}
39
+ string: '{"responseHeader":{"status":0,"QTime":0},"response":{"numFound":0,"start":0,"docs":[]}}
40
40
 
41
41
  '
42
42
  http_version:
@@ -19,7 +19,7 @@ http_interactions:
19
19
  message: OK
20
20
  headers:
21
21
  Date:
22
- - Sat, 08 Sep 2018 13:04:22 GMT
22
+ - Sat, 08 Sep 2018 22:52:29 GMT
23
23
  Content-Type:
24
24
  - application/json;charset=UTF-8
25
25
  Connection:
@@ -60,7 +60,7 @@ http_interactions:
60
60
  message: OK
61
61
  headers:
62
62
  Date:
63
- - Sat, 08 Sep 2018 13:04:22 GMT
63
+ - Sat, 08 Sep 2018 22:52:30 GMT
64
64
  Content-Type:
65
65
  - application/json;charset=UTF-8
66
66
  Connection:
@@ -92,32 +92,32 @@ http_interactions:
92
92
  User-Agent:
93
93
  - fog-core/1.45.0
94
94
  X-Amz-Date:
95
- - 20180408T215320Z
95
+ - 20180408T220000Z
96
96
  X-Amz-Content-Sha256:
97
97
  - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
98
98
  Authorization:
99
99
  - AWS4-HMAC-SHA256 Credential=<AWS_ACCESS_KEY_ID>/20180408/us-east-1/s3/aws4_request,
100
- SignedHeaders=host;x-amz-content-sha256;x-amz-date, Signature=3e4720f35d3e7621e26b16dfd8181bb2b171e156b08872841f6a9d76f80c9f39
100
+ SignedHeaders=host;x-amz-content-sha256;x-amz-date, Signature=66e6edc9e291e9fec7f58a56037a36db17830565105b4cf801ae768dfda1ff2d
101
101
  response:
102
102
  status:
103
103
  code: 403
104
104
  message: Forbidden
105
105
  headers:
106
106
  X-Amz-Request-Id:
107
- - 2BEE35CFC2AC1287
107
+ - B7895DC13BE05211
108
108
  X-Amz-Id-2:
109
- - COJmJWioMq4nNw6E/OoQkq59l3mw+0wBoHyIe9yOpOYQ2RkhmPJXKNGDWik1C9I1FXfSh31N6RY=
109
+ - VDp0eVs9gcpXN0OeNwtFSBc0UMKw0Tp4IZ2tfD0WkLU5wm5yRckbmL5x1zJW3yf7pneNN8Pgb4c=
110
110
  Content-Type:
111
111
  - application/xml
112
112
  Date:
113
- - Sat, 08 Sep 2018 13:04:22 GMT
113
+ - Sat, 08 Sep 2018 22:52:29 GMT
114
114
  Server:
115
115
  - AmazonS3
116
116
  body:
117
117
  encoding: ASCII-8BIT
118
118
  string: |-
119
119
  <?xml version="1.0" encoding="UTF-8"?>
120
- <Error><Code>RequestTimeTooSkewed</Code><Message>The difference between the request time and the current time is too large.</Message><RequestTime>20180408T215320Z</RequestTime><ServerTime>2018-09-08T13:04:24Z</ServerTime><MaxAllowedSkewMilliseconds>900000</MaxAllowedSkewMilliseconds><RequestId>2BEE35CFC2AC1287</RequestId><HostId>COJmJWioMq4nNw6E/OoQkq59l3mw+0wBoHyIe9yOpOYQ2RkhmPJXKNGDWik1C9I1FXfSh31N6RY=</HostId></Error>
120
+ <Error><Code>RequestTimeTooSkewed</Code><Message>The difference between the request time and the current time is too large.</Message><RequestTime>20180408T220000Z</RequestTime><ServerTime>2018-09-08T22:52:31Z</ServerTime><MaxAllowedSkewMilliseconds>900000</MaxAllowedSkewMilliseconds><RequestId>B7895DC13BE05211</RequestId><HostId>VDp0eVs9gcpXN0OeNwtFSBc0UMKw0Tp4IZ2tfD0WkLU5wm5yRckbmL5x1zJW3yf7pneNN8Pgb4c=</HostId></Error>
121
121
  http_version:
122
122
  recorded_at: Sun, 08 Apr 2018 22:00:00 GMT
123
123
  - request:
@@ -130,32 +130,32 @@ http_interactions:
130
130
  User-Agent:
131
131
  - fog-core/1.45.0
132
132
  X-Amz-Date:
133
- - 20180408T215320Z
133
+ - 20180408T220000Z
134
134
  X-Amz-Content-Sha256:
135
135
  - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
136
136
  Authorization:
137
137
  - AWS4-HMAC-SHA256 Credential=<AWS_ACCESS_KEY_ID>/20180408/us-east-1/s3/aws4_request,
138
- SignedHeaders=host;x-amz-content-sha256;x-amz-date, Signature=3e4720f35d3e7621e26b16dfd8181bb2b171e156b08872841f6a9d76f80c9f39
138
+ SignedHeaders=host;x-amz-content-sha256;x-amz-date, Signature=66e6edc9e291e9fec7f58a56037a36db17830565105b4cf801ae768dfda1ff2d
139
139
  response:
140
140
  status:
141
141
  code: 403
142
142
  message: Forbidden
143
143
  headers:
144
144
  X-Amz-Request-Id:
145
- - 8919A29E0A2C9372
145
+ - 555405CF74750628
146
146
  X-Amz-Id-2:
147
- - w3hpygoDxpyls/91VlvzaQ8gKWO7rn9D8Ic5Y5ykjDyJhdMgpL9TGVUsDwaPXhp2JyZkBSLBOxQ=
147
+ - SUw/P6+hxIZgX/lSzXHQ+JYTD6Hl/3zVEwAEIUvMHSJJJd1xKtFMWphIricB6amnzbwdwIAJS9k=
148
148
  Content-Type:
149
149
  - application/xml
150
150
  Date:
151
- - Sat, 08 Sep 2018 13:04:23 GMT
151
+ - Sat, 08 Sep 2018 22:52:29 GMT
152
152
  Server:
153
153
  - AmazonS3
154
154
  body:
155
155
  encoding: ASCII-8BIT
156
156
  string: |-
157
157
  <?xml version="1.0" encoding="UTF-8"?>
158
- <Error><Code>RequestTimeTooSkewed</Code><Message>The difference between the request time and the current time is too large.</Message><RequestTime>20180408T215320Z</RequestTime><ServerTime>2018-09-08T13:04:24Z</ServerTime><MaxAllowedSkewMilliseconds>900000</MaxAllowedSkewMilliseconds><RequestId>8919A29E0A2C9372</RequestId><HostId>w3hpygoDxpyls/91VlvzaQ8gKWO7rn9D8Ic5Y5ykjDyJhdMgpL9TGVUsDwaPXhp2JyZkBSLBOxQ=</HostId></Error>
158
+ <Error><Code>RequestTimeTooSkewed</Code><Message>The difference between the request time and the current time is too large.</Message><RequestTime>20180408T220000Z</RequestTime><ServerTime>2018-09-08T22:52:31Z</ServerTime><MaxAllowedSkewMilliseconds>900000</MaxAllowedSkewMilliseconds><RequestId>555405CF74750628</RequestId><HostId>SUw/P6+hxIZgX/lSzXHQ+JYTD6Hl/3zVEwAEIUvMHSJJJd1xKtFMWphIricB6amnzbwdwIAJS9k=</HostId></Error>
159
159
  http_version:
160
160
  recorded_at: Sun, 08 Apr 2018 22:00:00 GMT
161
161
  - request:
@@ -168,32 +168,32 @@ http_interactions:
168
168
  User-Agent:
169
169
  - fog-core/1.45.0
170
170
  X-Amz-Date:
171
- - 20180408T215320Z
171
+ - 20180408T220000Z
172
172
  X-Amz-Content-Sha256:
173
173
  - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
174
174
  Authorization:
175
175
  - AWS4-HMAC-SHA256 Credential=<AWS_ACCESS_KEY_ID>/20180408/us-east-1/s3/aws4_request,
176
- SignedHeaders=host;x-amz-content-sha256;x-amz-date, Signature=3e4720f35d3e7621e26b16dfd8181bb2b171e156b08872841f6a9d76f80c9f39
176
+ SignedHeaders=host;x-amz-content-sha256;x-amz-date, Signature=66e6edc9e291e9fec7f58a56037a36db17830565105b4cf801ae768dfda1ff2d
177
177
  response:
178
178
  status:
179
179
  code: 403
180
180
  message: Forbidden
181
181
  headers:
182
182
  X-Amz-Request-Id:
183
- - 73022FB10C2F114F
183
+ - 84F52E2F7914D75D
184
184
  X-Amz-Id-2:
185
- - BnNfqRi+5RDJ9VrsA+7jICMGZSUMsuLXtzkGYY0rvJ8XjLyYWpgKCc07FySmEBVE+7TcKvgT8eM=
185
+ - LT0Q+9Dg1HsU5WFo2Eb44efhtup8aUxOud6FcSR38K7OETxLVQmHq0+vMG1scZ7ebL5A8PM6Nn4=
186
186
  Content-Type:
187
187
  - application/xml
188
188
  Date:
189
- - Sat, 08 Sep 2018 13:04:23 GMT
189
+ - Sat, 08 Sep 2018 22:52:31 GMT
190
190
  Server:
191
191
  - AmazonS3
192
192
  body:
193
193
  encoding: ASCII-8BIT
194
194
  string: |-
195
195
  <?xml version="1.0" encoding="UTF-8"?>
196
- <Error><Code>RequestTimeTooSkewed</Code><Message>The difference between the request time and the current time is too large.</Message><RequestTime>20180408T215320Z</RequestTime><ServerTime>2018-09-08T13:04:25Z</ServerTime><MaxAllowedSkewMilliseconds>900000</MaxAllowedSkewMilliseconds><RequestId>73022FB10C2F114F</RequestId><HostId>BnNfqRi+5RDJ9VrsA+7jICMGZSUMsuLXtzkGYY0rvJ8XjLyYWpgKCc07FySmEBVE+7TcKvgT8eM=</HostId></Error>
196
+ <Error><Code>RequestTimeTooSkewed</Code><Message>The difference between the request time and the current time is too large.</Message><RequestTime>20180408T220000Z</RequestTime><ServerTime>2018-09-08T22:52:32Z</ServerTime><MaxAllowedSkewMilliseconds>900000</MaxAllowedSkewMilliseconds><RequestId>84F52E2F7914D75D</RequestId><HostId>LT0Q+9Dg1HsU5WFo2Eb44efhtup8aUxOud6FcSR38K7OETxLVQmHq0+vMG1scZ7ebL5A8PM6Nn4=</HostId></Error>
197
197
  http_version:
198
198
  recorded_at: Sun, 08 Apr 2018 22:00:00 GMT
199
199
  - request:
@@ -206,37 +206,37 @@ http_interactions:
206
206
  User-Agent:
207
207
  - fog-core/1.45.0
208
208
  X-Amz-Date:
209
- - 20180408T215320Z
209
+ - 20180408T220000Z
210
210
  X-Amz-Content-Sha256:
211
211
  - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
212
212
  Authorization:
213
213
  - AWS4-HMAC-SHA256 Credential=<AWS_ACCESS_KEY_ID>/20180408/us-east-1/s3/aws4_request,
214
- SignedHeaders=host;x-amz-content-sha256;x-amz-date, Signature=3e4720f35d3e7621e26b16dfd8181bb2b171e156b08872841f6a9d76f80c9f39
214
+ SignedHeaders=host;x-amz-content-sha256;x-amz-date, Signature=66e6edc9e291e9fec7f58a56037a36db17830565105b4cf801ae768dfda1ff2d
215
215
  response:
216
216
  status:
217
217
  code: 403
218
218
  message: Forbidden
219
219
  headers:
220
220
  X-Amz-Request-Id:
221
- - 309A38C5178F7C0B
221
+ - 0F7DA6A0FC3A0364
222
222
  X-Amz-Id-2:
223
- - LW+tqo4WUUSKYifktQ/vjTc558Zln8uM4PecDB89pBwjo+N65MyS4/pHuoWL42tXzLKLpwQwuKQ=
223
+ - r4shHCltWav9+25vrNj0m3Gi8SWeu9h2w9zhZbqeBXiKzj6lUdXhkb4+XwgbYkT62vMQNmpHm50=
224
224
  Content-Type:
225
225
  - application/xml
226
226
  Date:
227
- - Sat, 08 Sep 2018 13:04:24 GMT
227
+ - Sat, 08 Sep 2018 22:52:31 GMT
228
228
  Server:
229
229
  - AmazonS3
230
230
  body:
231
231
  encoding: ASCII-8BIT
232
232
  string: |-
233
233
  <?xml version="1.0" encoding="UTF-8"?>
234
- <Error><Code>RequestTimeTooSkewed</Code><Message>The difference between the request time and the current time is too large.</Message><RequestTime>20180408T215320Z</RequestTime><ServerTime>2018-09-08T13:04:25Z</ServerTime><MaxAllowedSkewMilliseconds>900000</MaxAllowedSkewMilliseconds><RequestId>309A38C5178F7C0B</RequestId><HostId>LW+tqo4WUUSKYifktQ/vjTc558Zln8uM4PecDB89pBwjo+N65MyS4/pHuoWL42tXzLKLpwQwuKQ=</HostId></Error>
234
+ <Error><Code>RequestTimeTooSkewed</Code><Message>The difference between the request time and the current time is too large.</Message><RequestTime>20180408T220000Z</RequestTime><ServerTime>2018-09-08T22:52:32Z</ServerTime><MaxAllowedSkewMilliseconds>900000</MaxAllowedSkewMilliseconds><RequestId>0F7DA6A0FC3A0364</RequestId><HostId>r4shHCltWav9+25vrNj0m3Gi8SWeu9h2w9zhZbqeBXiKzj6lUdXhkb4+XwgbYkT62vMQNmpHm50=</HostId></Error>
235
235
  http_version:
236
236
  recorded_at: Sun, 08 Apr 2018 22:00:00 GMT
237
237
  - request:
238
238
  method: put
239
- uri: https://sitemaps-search-datacite.s3-eu-west-1.amazonaws.com/sitemaps-test/sitemap.xml.gz
239
+ uri: https://sitemaps-search-datacite-test.s3-eu-west-1.amazonaws.com/sitemap.xml.gz
240
240
  body:
241
241
  encoding: US-ASCII
242
242
  string: ''
@@ -248,28 +248,28 @@ http_interactions:
248
248
  X-Amz-Acl:
249
249
  - public-read
250
250
  X-Amz-Date:
251
- - 20180908T130424Z
251
+ - 20180908T225231Z
252
252
  X-Amz-Content-Sha256:
253
253
  - STREAMING-AWS4-HMAC-SHA256-PAYLOAD
254
254
  X-Amz-Decoded-Content-Length:
255
- - '429'
255
+ - '428'
256
256
  Authorization:
257
257
  - AWS4-HMAC-SHA256 Credential=<AWS_ACCESS_KEY_ID>/20180908/eu-west-1/s3/aws4_request,
258
258
  SignedHeaders=content-type;host;x-amz-acl;x-amz-content-sha256;x-amz-date;x-amz-decoded-content-length,
259
- Signature=029e0565db0aa14eee9ce073ab37e7d9c19e90c07830d5dac1fb4539e019523b
259
+ Signature=5a9fb2759d7cfd0752367e1eef3034b864bcdb2dda440c12e51f38a42725d265
260
260
  response:
261
261
  status:
262
262
  code: 200
263
263
  message: OK
264
264
  headers:
265
265
  X-Amz-Id-2:
266
- - NNMy0gc6ZihZhtbyM0jVdlhfVcR5k/6hGhXbgxhnTTU2bzacF8Ft2IsQOLaS0EDoUakhJVbPrs8=
266
+ - S6s7iCh3JtKf/4Ga7yoi64zBHXn3Lt/OFRefLaFnZQkAzhmaKBhaK8qJnz+OIALSZeviSEDFu7M=
267
267
  X-Amz-Request-Id:
268
- - F6125105D2A76224
268
+ - 584767FAE3B7D31A
269
269
  Date:
270
- - Sat, 08 Sep 2018 13:04:25 GMT
270
+ - Sat, 08 Sep 2018 22:52:33 GMT
271
271
  Etag:
272
- - '"8fe15014c702b84675c5bd09a63ad59a"'
272
+ - '"e22944ef168799f896eaafc72d571bb3"'
273
273
  Content-Length:
274
274
  - '0'
275
275
  Server:
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: maltese
3
3
  version: !ruby/object:Gem::Version
4
- version: '0.2'
4
+ version: 0.2.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Martin Fenner