Skip to content

Commit

Permalink
fix issue #12
Browse files Browse the repository at this point in the history
  • Loading branch information
andrew2net committed Jan 16, 2023
1 parent 71a3690 commit c781370
Show file tree
Hide file tree
Showing 72 changed files with 2,185 additions and 2,792 deletions.
8 changes: 4 additions & 4 deletions lib/relaton_doi/parser.rb
Original file line number Diff line number Diff line change
Expand Up @@ -280,8 +280,8 @@ def parse_link # rubocop:disable Metrics/MethodLength, Metrics/AbcSize, Metrics/

type = case l["URL"]
when /\.pdf$/ then "pdf"
when /\/rfc\d+$|iopscience\.iop\.org|ieeexplore\.ieee\.org/
"src"
# when /\/rfc\d+$|iopscience\.iop\.org|ieeexplore\.ieee\.org/
else "src"
end
links << RelatonBib::TypedUri.new(type: type, content: l["URL"]) # if type
end
Expand Down Expand Up @@ -615,10 +615,10 @@ def parse_place # rubocop:disable Metrics/MethodLength, Metrics/CyclomaticComple
if COUNTRIES.include? pls2
country = RelatonBib::Place::RegionType.new(name: pls2)
[RelatonBib::Place.new(city: pls1, country: [country])]
elsif pls2 == pls2&.upcase
elsif pls2 && pls2 == pls2&.upcase
region = RelatonBib::Place::RegionType.new(name: pls2)
[RelatonBib::Place.new(city: pls1, region: [region])]
elsif pls1 == pls2
elsif pls1 == pls2 || pls2.nil? || pls2.empty?
[RelatonBib::Place.new(city: pls1)]
else
[RelatonBib::Place.new(city: pls1), RelatonBib::Place.new(city: pls2)]
Expand Down
4 changes: 2 additions & 2 deletions spec/fixtures/book-chapter.xml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
<bibdata type="inbook" schema-version="v1.2.1">
<fetched>2022-12-31</fetched>
<fetched>2023-01-15</fetched>
<title type="main" format="text/plain" script="Latn">Gender and public space in a bilingual school</title>
<uri type="DOI">http://dx.doi.org/10.1515/9783110889406.257</uri>
<uri>https://www.degruyter.com/document/doi/10.1515/9783110889406.257/html</uri>
<uri type="src">https://www.degruyter.com/document/doi/10.1515/9783110889406.257/html</uri>
<docidentifier type="DOI" primary="true">10.1515/9783110889406.257</docidentifier>
<date type="created">
<on>2011-03-18</on>
Expand Down
4 changes: 2 additions & 2 deletions spec/fixtures/book-part.xml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
<bibdata type="inbook" schema-version="v1.2.1">
<fetched>2022-12-31</fetched>
<fetched>2023-01-15</fetched>
<title type="main" format="text/plain" script="Latn">Occupied Haiti (1915–1934)</title>
<uri type="DOI">http://dx.doi.org/10.1215/9781478007609-047</uri>
<uri>http://read.dukeupress.edu/books/book/2710/chapter/2008410/Occupied-Haiti-19151934</uri>
<uri type="src">http://read.dukeupress.edu/books/book/2710/chapter/2008410/Occupied-Haiti-19151934</uri>
<docidentifier type="DOI" primary="true">10.1215/9781478007609-047</docidentifier>
<date type="issued">
<on>2020</on>
Expand Down
4 changes: 2 additions & 2 deletions spec/fixtures/book-section.xml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
<bibdata type="inbook" schema-version="v1.2.1">
<fetched>2022-12-31</fetched>
<fetched>2023-01-15</fetched>
<title type="main" format="text/plain" script="Latn">High-resolution lidar data for infrastructure corridors, Wiseman Quadrangle, Alaska</title>
<uri type="DOI">http://dx.doi.org/10.14509/23007</uri>
<uri>http://www.dggs.alaska.gov/pubs/id/23007</uri>
<uri type="src">http://www.dggs.alaska.gov/pubs/id/23007</uri>
<docidentifier type="DOI" primary="true">10.14509/23007</docidentifier>
<date type="created">
<on>2014-05-16</on>
Expand Down
4 changes: 2 additions & 2 deletions spec/fixtures/book-series.xml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
<bibdata type="book" schema-version="v1.2.1">
<fetched>2023-01-06</fetched>
<fetched>2023-01-15</fetched>
<title type="main" format="text/plain" script="Latn">Chemical Thermodynamics</title>
<uri type="DOI">http://dx.doi.org/10.1787/20743300</uri>
<uri>https://www.oecd-ilibrary.org/nuclear-energy/chemical-thermodynamics_20743300</uri>
<uri type="src">https://www.oecd-ilibrary.org/nuclear-energy/chemical-thermodynamics_20743300</uri>
<docidentifier type="DOI" primary="true">10.1787/20743300</docidentifier>
<docidentifier type="ISSN.electronic">2074-3300</docidentifier>
<date type="created">
Expand Down
4 changes: 2 additions & 2 deletions spec/fixtures/book-set.xml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
<bibdata type="book" schema-version="v1.2.1">
<fetched>2022-12-31</fetched>
<fetched>2023-01-15</fetched>
<title type="main" format="text/plain" script="Latn">Occupational Therapy Manager, 6th Ed</title>
<uri type="DOI">http://dx.doi.org/10.7139/2017.978-1-56900-592-7</uri>
<uri>https://library.aota.org/Occupational-Therapy-Manager-6</uri>
<uri type="src">https://library.aota.org/Occupational-Therapy-Manager-6</uri>
<docidentifier type="DOI" primary="true">10.7139/2017.978-1-56900-592-7</docidentifier>
<docidentifier type="ISBN">9781569005927</docidentifier>
<date type="created">
Expand Down
4 changes: 2 additions & 2 deletions spec/fixtures/book-track.xml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
<bibdata type="inbook" schema-version="v1.2.1">
<fetched>2022-12-31</fetched>
<fetched>2023-01-15</fetched>
<title type="main" format="text/plain" script="Latn">Wholesale commodity price indexes in Richmond, the eastern Confederacy, New York, and San Francisco: 1861-1865</title>
<uri type="DOI">http://dx.doi.org/10.1017/isbn-9780511132971.eh132-135</uri>
<uri>http://hsus.cambridge.org/HSUSWeb/toc/tableToc.do?id=Eh132-135</uri>
<uri type="src">http://hsus.cambridge.org/HSUSWeb/toc/tableToc.do?id=Eh132-135</uri>
<docidentifier type="DOI" primary="true">10.1017/isbn-9780511132971.eh132-135</docidentifier>
<date type="created">
<on>2007-03-06</on>
Expand Down
4 changes: 2 additions & 2 deletions spec/fixtures/book.xml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
<bibdata type="book" schema-version="v1.2.1">
<fetched>2022-12-31</fetched>
<fetched>2023-01-15</fetched>
<title type="main" format="text/plain" script="Latn">The Nature and Origin of Language</title>
<uri type="DOI">http://dx.doi.org/10.1093/acprof:oso/9780199681624.001.0001</uri>
<uri>https://academic.oup.com/book/8112</uri>
<uri type="src">https://academic.oup.com/book/8112</uri>
<docidentifier type="DOI" primary="true">10.1093/acprof:oso/9780199681624.001.0001</docidentifier>
<docidentifier type="ISBN">9780199681624</docidentifier>
<date type="issued">
Expand Down
5 changes: 2 additions & 3 deletions spec/fixtures/book_chapter_editors.xml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
<bibdata type="inbook" schema-version="v1.2.1">
<fetched>2022-12-31</fetched>
<fetched>2023-01-15</fetched>
<title type="main" format="text/plain" script="Latn">Culinary arts: Talent and their development.</title>
<uri type="DOI">http://dx.doi.org/10.1037/0000120-016</uri>
<uri>http://content.apa.org/books/16096-016</uri>
<uri type="src">http://content.apa.org/books/16096-016</uri>
<docidentifier type="DOI" primary="true">10.1037/0000120-016</docidentifier>
<date type="issued">
<on>2019</on>
Expand Down Expand Up @@ -104,7 +104,6 @@
</relation>
<place>
<city>Washington</city>
<region></region>
</place>
<extent>
<localityStack>
Expand Down
5 changes: 2 additions & 3 deletions spec/fixtures/book_editors.xml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
<bibdata type="book" schema-version="v1.2.1">
<fetched>2023-01-06</fetched>
<fetched>2023-01-15</fetched>
<title type="main" format="text/plain" script="Latn">Wide Area Workflow Management</title>
<uri type="DOI">http://dx.doi.org/10.1007/978-1-4471-1578-6</uri>
<uri>http://link.springer.com/10.1007/978-1-4471-1578-6</uri>
<uri type="src">http://link.springer.com/10.1007/978-1-4471-1578-6</uri>
<docidentifier type="DOI" primary="true">10.1007/978-1-4471-1578-6</docidentifier>
<docidentifier type="ISBN">9783540762430</docidentifier>
<docidentifier type="ISBN">9781447115786</docidentifier>
Expand Down Expand Up @@ -38,7 +38,6 @@
</series>
<place>
<city>London</city>
<region></region>
</place>
<ext>
<doctype>book</doctype>
Expand Down
4 changes: 2 additions & 2 deletions spec/fixtures/component.xml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<bibdata type="misc" schema-version="v1.2.1">
<fetched>2023-01-02</fetched>
<fetched>2023-01-16</fetched>
<uri type="DOI">http://dx.doi.org/10.1371/journal.pone.0020476.s005</uri>
<uri>https://dx.plos.org/10.1371/journal.pone.0020476.s005</uri>
<uri type="src">https://dx.plos.org/10.1371/journal.pone.0020476.s005</uri>
<docidentifier type="DOI" primary="true">10.1371/journal.pone.0020476.s005</docidentifier>
<date type="created">
<on>2013-01-28</on>
Expand Down
4 changes: 2 additions & 2 deletions spec/fixtures/database.xml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
<bibdata type="dataset" schema-version="v1.2.1">
<fetched>2023-01-02</fetched>
<fetched>2023-01-16</fetched>
<title type="main" format="text/plain" script="Latn">ProteomeXchange dataset</title>
<uri type="DOI">http://dx.doi.org/10.6019/pxd038478</uri>
<uri>http://central.proteomexchange.org/PXD038478</uri>
<uri type="src">http://central.proteomexchange.org/PXD038478</uri>
<docidentifier type="DOI" primary="true">10.6019/pxd038478</docidentifier>
<date type="created">
<on>2022-12-01</on>
Expand Down
4 changes: 2 additions & 2 deletions spec/fixtures/dataset.xml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
<bibdata type="dataset" schema-version="v1.2.1">
<fetched>2023-01-02</fetched>
<fetched>2023-01-16</fetched>
<title type="main" format="text/plain" script="Latn">TAʿIZZ</title>
<uri type="DOI">http://dx.doi.org/10.1163/2214-871x_ei1_sim_5628</uri>
<uri>https://referenceworks.brillonline.com/entries/encyclopaedia-of-islam-1/*-SIM_5628</uri>
<uri type="src">https://referenceworks.brillonline.com/entries/encyclopaedia-of-islam-1/*-SIM_5628</uri>
<docidentifier type="DOI" primary="true">10.1163/2214-871x_ei1_sim_5628</docidentifier>
<date type="created">
<on>2014-10-29</on>
Expand Down
4 changes: 2 additions & 2 deletions spec/fixtures/dissertation.xml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
<bibdata type="thesis" schema-version="v1.2.1">
<fetched>2023-01-02</fetched>
<fetched>2023-01-16</fetched>
<title type="main" format="text/plain" script="Latn">Nós temos nosso direito que é o certo: significados das lutas por reconhecimento entre comunidades do Vale do Ribeira, São Paulo</title>
<uri type="DOI">http://dx.doi.org/10.11606/t.8.2017.tde-08052017-100442</uri>
<uri>http://www.teses.usp.br/teses/disponiveis/8/8134/tde-08052017-100442/</uri>
<uri type="src">http://www.teses.usp.br/teses/disponiveis/8/8134/tde-08052017-100442/</uri>
<docidentifier type="DOI" primary="true">10.11606/t.8.2017.tde-08052017-100442</docidentifier>
<date type="approved">
<on>2017-05-08</on>
Expand Down
6 changes: 3 additions & 3 deletions spec/fixtures/edited-book.xml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
<bibdata type="book" schema-version="v1.2.1">
<fetched>2022-12-24</fetched>
<fetched>2023-01-16</fetched>
<title type="main" format="text/plain" script="Latn">The New Natural History of Madagascar</title>
<uri type="DOI">http://dx.doi.org/10.1515/9780691229409</uri>
<uri>https://www.degruyter.com/document/doi/10.1515/9780691229409/html</uri>
<uri type="src">https://www.degruyter.com/document/doi/10.1515/9780691229409/html</uri>
<docidentifier type="DOI" primary="true">10.1515/9780691229409</docidentifier>
<docidentifier type="ISBN">9780691229409</docidentifier>
<date type="issued">
Expand Down Expand Up @@ -36,4 +36,4 @@
<ext>
<doctype>edited-book</doctype>
</ext>
</bibdata>
</bibdata>
4 changes: 2 additions & 2 deletions spec/fixtures/grant.xml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
<bibdata type="misc" schema-version="v1.2.1">
<fetched>2023-01-03</fetched>
<fetched>2023-01-16</fetched>
<title type="main" format="text/plain" script="Latn">Single-particle cryo-EM structural analysis of Q-dependent transcription antitermination</title>
<uri type="DOI">http://dx.doi.org/10.46936/cpcy.proj.2019.50733/60006578</uri>
<uri>https://www.osti.gov/award-doi-service/biblio/10.46936/cpcy.proj.2019.50733/60006578</uri>
<uri type="src">https://www.osti.gov/award-doi-service/biblio/10.46936/cpcy.proj.2019.50733/60006578</uri>
<docidentifier type="DOI" primary="true">10.46936/cpcy.proj.2019.50733/60006578</docidentifier>
<date type="issued">
<on>2019-04-15</on>
Expand Down
4 changes: 2 additions & 2 deletions spec/fixtures/journal-article.xml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
<bibdata type="article" schema-version="v1.2.1">
<fetched>2023-01-06</fetched>
<fetched>2023-01-16</fetched>
<title type="main" format="text/plain" script="Latn">A watermelon without seeds: A case study in rhetorical rationality</title>
<uri type="DOI">http://dx.doi.org/10.1515/text.2001.011</uri>
<uri>https://www.degruyter.com/document/doi/10.1515/text.2001.011/html</uri>
<uri type="src">https://www.degruyter.com/document/doi/10.1515/text.2001.011/html</uri>
<docidentifier type="DOI" primary="true">10.1515/text.2001.011</docidentifier>
<docidentifier type="ISSN.print">0165-4888</docidentifier>
<docidentifier type="ISSN.electronic">1613-4117</docidentifier>
Expand Down
4 changes: 2 additions & 2 deletions spec/fixtures/journal-issue-1.xml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
<bibdata type="article" schema-version="v1.2.1">
<fetched>2023-01-04</fetched>
<fetched>2023-01-16</fetched>
<title type="main" format="text/plain" script="Latn">The semantic categories of cutting and breaking events: A crosslinguistic perspective</title>
<uri type="DOI">http://dx.doi.org/10.1515/cog.2007.005</uri>
<uri>https://www.degruyter.com/document/doi/10.1515/COG.2007.005/html</uri>
<uri type="src">https://www.degruyter.com/document/doi/10.1515/COG.2007.005/html</uri>
<docidentifier type="DOI" primary="true">10.1515/cog.2007.005</docidentifier>
<docidentifier type="ISSN.print">0936-5907</docidentifier>
<docidentifier type="ISSN.electronic">1613-3641</docidentifier>
Expand Down
4 changes: 2 additions & 2 deletions spec/fixtures/journal-issue-2.xml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<bibdata type="article" schema-version="v1.2.1">
<fetched>2023-01-06</fetched>
<fetched>2023-01-16</fetched>
<uri type="DOI">http://dx.doi.org/10.1111/read.1991.25.issue-1</uri>
<uri>http://doi.wiley.com/10.1111/read.1991.25.issue-1</uri>
<uri type="src">http://doi.wiley.com/10.1111/read.1991.25.issue-1</uri>
<docidentifier type="DOI" primary="true">10.1111/read.1991.25.issue-1</docidentifier>
<docidentifier type="ISSN.print">1741-4350</docidentifier>
<docidentifier type="ISSN.electronic">1741-4369</docidentifier>
Expand Down
4 changes: 2 additions & 2 deletions spec/fixtures/journal-volume.xml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
<bibdata type="journal" schema-version="v1.2.1">
<fetched>2023-01-04</fetched>
<fetched>2023-01-16</fetched>
<title type="main" format="text/plain" script="Latn">Fall 2020, Innaugural Issue</title>
<uri type="DOI">http://dx.doi.org/10.46409/001.rlpt5688</uri>
<uri>https://soar.usa.edu/sjot/vol1/</uri>
<uri type="src">https://soar.usa.edu/sjot/vol1/</uri>
<docidentifier type="DOI" primary="true">10.46409/001.rlpt5688</docidentifier>
<docidentifier type="ISSN.electronic">2689-1662</docidentifier>
<date type="created">
Expand Down
4 changes: 2 additions & 2 deletions spec/fixtures/journal.xml
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
<bibdata type="journal" schema-version="v1.2.1">
<fetched>2023-01-04</fetched>
<fetched>2023-01-16</fetched>
<title type="main" format="text/plain" script="Latn">Juni Khyat Journal</title>
<title type="short" format="text/plain" script="Latn">Juni Khyat</title>
<uri type="DOI">http://dx.doi.org/10.46528/jk</uri>
<uri>http://www.junikhyat.com/</uri>
<uri type="src">http://www.junikhyat.com/</uri>
<docidentifier type="DOI" primary="true">10.46528/jk</docidentifier>
<docidentifier type="ISSN.print">2278-4632</docidentifier>
<date type="created">
Expand Down
4 changes: 2 additions & 2 deletions spec/fixtures/monograph-1.xml
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
<bibdata type="book" schema-version="v1.2.1">
<fetched>2023-01-04</fetched>
<fetched>2023-01-16</fetched>
<title type="main" format="text/plain" script="Latn">Multilingualism, Second Language Learning, and Gender</title>
<title type="subtitle" format="text/plain" script="Latn"/>
<uri type="DOI">http://dx.doi.org/10.1515/9783110889406</uri>
<uri>https://www.degruyter.com/document/doi/10.1515/9783110889406/html</uri>
<uri type="src">https://www.degruyter.com/document/doi/10.1515/9783110889406/html</uri>
<docidentifier type="DOI" primary="true">10.1515/9783110889406</docidentifier>
<docidentifier type="ISBN">9783110170269</docidentifier>
<date type="issued">
Expand Down
7 changes: 3 additions & 4 deletions spec/fixtures/monograph-2.xml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
<bibdata type="book" schema-version="v1.2.1">
<fetched>2022-12-18</fetched>
<fetched>2023-01-16</fetched>
<title type="main" format="text/plain" script="Latn">Die Gattungen Pupa, Megaspira, Balea und Tornatellina : in Abbildungen nach der Natur mit Beschreibungen</title>
<uri type="DOI">http://dx.doi.org/10.5962/bhl.title.124254</uri>
<uri>http://www.biodiversitylibrary.org/bibliography/124254</uri>
<uri type="src">http://www.biodiversitylibrary.org/bibliography/124254</uri>
<docidentifier type="DOI" primary="true">10.5962/bhl.title.124254</docidentifier>
<date type="issued">
<on>1852</on>
Expand Down Expand Up @@ -45,9 +45,8 @@
</contributor>
<place>
<city>Nürnberg</city>
<region></region>
</place>
<ext>
<doctype>monograph</doctype>
</ext>
</bibdata>
</bibdata>
4 changes: 2 additions & 2 deletions spec/fixtures/other.xml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
<bibdata type="misc" schema-version="v1.2.1">
<fetched>2023-01-06</fetched>
<fetched>2023-01-16</fetched>
<title type="main" format="text/plain" script="Latn">Extradition would boost image of Honduras’s Castro</title>
<uri type="DOI">http://dx.doi.org/10.1108/oxan-es268033</uri>
<uri>https://www.emerald.com/insight/content/doi/10.1108/OXAN-ES268033/full/html</uri>
<uri type="src">https://www.emerald.com/insight/content/doi/10.1108/OXAN-ES268033/full/html</uri>
<docidentifier type="DOI" primary="true">10.1108/oxan-es268033</docidentifier>
<docidentifier type="ISSN.print">2633-304X</docidentifier>
<date type="issued">
Expand Down
6 changes: 3 additions & 3 deletions spec/fixtures/peer-review.xml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
<bibdata type="article" schema-version="v1.2.1">
<fetched>2022-12-23</fetched>
<fetched>2023-01-16</fetched>
<title type="main" format="text/plain" script="Latn">Decision letter for "Self‐care of patients with multiple chronic conditions and their caregivers during the COVID‐19 pandemic: A qualitative descriptive study"</title>
<uri type="DOI">http://dx.doi.org/10.1111/jan.15115/v3/decision1</uri>
<uri>https://publons.com/publon/50403050</uri>
<uri type="src">https://publons.com/publon/50403050</uri>
<docidentifier type="DOI" primary="true">10.1111/jan.15115/v3/decision1</docidentifier>
<date type="issued">
<on>2021-10-17</on>
Expand Down Expand Up @@ -33,4 +33,4 @@
<ext>
<doctype>peer-review</doctype>
</ext>
</bibdata>
</bibdata>
4 changes: 2 additions & 2 deletions spec/fixtures/posted-content.xml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
<bibdata type="dataset" schema-version="v1.2.1">
<fetched>2023-01-05</fetched>
<fetched>2023-01-16</fetched>
<title type="main" format="text/plain" script="Latn">Deciphering the rules underlying xenogeneic silencing and counter-silencing of Lsr2-like proteins</title>
<uri type="DOI">http://dx.doi.org/10.1101/751156</uri>
<uri>http://biorxiv.org/lookup/doi/10.1101/751156</uri>
<uri type="src">http://biorxiv.org/lookup/doi/10.1101/751156</uri>
<docidentifier type="DOI" primary="true">10.1101/751156</docidentifier>
<date type="issued">
<on>2019-08-30</on>
Expand Down
4 changes: 2 additions & 2 deletions spec/fixtures/proceedings-series.xml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
<bibdata type="proceedings" schema-version="v1.2.1">
<fetched>2023-01-05</fetched>
<fetched>2023-01-16</fetched>
<title type="main" format="text/plain" script="Latn">European Proceedings of Social and Behavioural Sciences</title>
<uri type="DOI">http://dx.doi.org/10.15405/epsbs(2357-1330).2021.6.1</uri>
<uri>https://europeanproceedings.com/book-series/EpSBS/books/vol109-cipe-2020</uri>
<uri type="src">https://europeanproceedings.com/book-series/EpSBS/books/vol109-cipe-2020</uri>
<docidentifier type="DOI" primary="true">10.15405/epsbs(2357-1330).2021.6.1</docidentifier>
<docidentifier type="ISSN.print">2357-1330</docidentifier>
<date type="created">
Expand Down
4 changes: 2 additions & 2 deletions spec/fixtures/proceedings.xml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
<bibdata type="proceedings" schema-version="v1.2.1">
<fetched>2023-01-05</fetched>
<fetched>2023-01-16</fetched>
<title type="main" format="text/plain" script="Latn">Proceedings of the 2011 International Conference on Communication, Computing &amp; Security - ICCCS '11</title>
<uri type="DOI">http://dx.doi.org/10.1145/1947940</uri>
<uri>http://portal.acm.org/citation.cfm?doid=1947940</uri>
<uri type="src">http://portal.acm.org/citation.cfm?doid=1947940</uri>
<docidentifier type="DOI" primary="true">10.1145/1947940</docidentifier>
<docidentifier type="ISBN">9781450304641</docidentifier>
<date type="issued">
Expand Down
4 changes: 2 additions & 2 deletions spec/fixtures/reference-book.xml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
<bibdata type="book" schema-version="v1.2.1">
<fetched>2023-01-05</fetched>
<fetched>2023-01-16</fetched>
<title type="main" format="text/plain" script="Latn">Audio Anecdotes II</title>
<uri type="DOI">http://dx.doi.org/10.1201/9781439864852</uri>
<uri>https://www.taylorfrancis.com/books/9781439864852</uri>
<uri type="src">https://www.taylorfrancis.com/books/9781439864852</uri>
<docidentifier type="DOI" primary="true">10.1201/9781439864852</docidentifier>
<docidentifier type="ISBN">9781439864852</docidentifier>
<date type="issued">
Expand Down
4 changes: 2 additions & 2 deletions spec/fixtures/reference-entry.xml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
<bibdata type="inbook" schema-version="v1.2.1">
<fetched>2023-01-05</fetched>
<fetched>2023-01-16</fetched>
<title type="main" format="text/plain" script="Latn">Boxer, Rear-Adm. Henry Percy, (14 Oct. 1885–30 June 1961)</title>
<uri type="DOI">http://dx.doi.org/10.1093/ww/9780199540884.013.u52741</uri>
<uri>http://www.ukwhoswho.com/view/10.1093/ww/9780199540891.001.0001/ww-9780199540884-e-52741</uri>
<uri type="src">http://www.ukwhoswho.com/view/10.1093/ww/9780199540891.001.0001/ww-9780199540884-e-52741</uri>
<docidentifier type="DOI" primary="true">10.1093/ww/9780199540884.013.u52741</docidentifier>
<date type="issued">
<on>2007-12-01</on>
Expand Down
Loading

0 comments on commit c781370

Please sign in to comment.