citeclaw 2.0.0
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.
- package/LICENSE +202 -0
- package/README.md +152 -0
- package/app.js +318 -0
- package/config.dev.yaml +124 -0
- package/config.prod.yaml +123 -0
- package/config.yaml +0 -0
- package/lib/Citation.js +101 -0
- package/lib/CitoidError.js +61 -0
- package/lib/CitoidRequest.js +150 -0
- package/lib/CitoidResponse.js +44 -0
- package/lib/CitoidService.js +1118 -0
- package/lib/Exporter.js +1052 -0
- package/lib/OutgoingRequestThrottle.js +96 -0
- package/lib/Scraper.js +617 -0
- package/lib/Translator.js +76 -0
- package/lib/ZoteroService.js +220 -0
- package/lib/api-util.js +125 -0
- package/lib/external-apis/CrossRefService.js +122 -0
- package/lib/external-apis/OpenAlexService.js +245 -0
- package/lib/external-apis/PubMedService.js +82 -0
- package/lib/external-apis/SemanticScholarService.js +221 -0
- package/lib/external-apis/WaybackMachine.js +92 -0
- package/lib/hostIsAllowed.js +128 -0
- package/lib/swagger-ui.js +104 -0
- package/lib/translators/README.md +12 -0
- package/lib/translators/bePress.js +319 -0
- package/lib/translators/coins.js +360 -0
- package/lib/translators/crossRef.js +485 -0
- package/lib/translators/dublinCore.js +215 -0
- package/lib/translators/general.js +157 -0
- package/lib/translators/openGraph.js +177 -0
- package/lib/translators/util/index.js +209 -0
- package/lib/unshorten.js +109 -0
- package/lib/util.js +410 -0
- package/lib/zotero/cachedTypes.js +232 -0
- package/lib/zotero/typeSchemaData.js +366 -0
- package/package.json +121 -0
- package/routes/citoid.js +101 -0
- package/routes/info.js +81 -0
- package/routes/root.js +51 -0
- package/scripts/botcite.js +5021 -0
- package/scripts/citeclaw.js +10 -0
- package/server.js +12 -0
- package/spec.yaml +156 -0
- package/targets.yaml +2 -0
- package/vendor/translators-official/ABC News Australia.js +224 -0
- package/vendor/translators-official/ACLS Humanities EBook.js +165 -0
- package/vendor/translators-official/ACLWeb.js +600 -0
- package/vendor/translators-official/ACM Digital Library.js +708 -0
- package/vendor/translators-official/ACM Queue.js +391 -0
- package/vendor/translators-official/ACS Publications.js +633 -0
- package/vendor/translators-official/ADS Bibcode.js +664 -0
- package/vendor/translators-official/AEA Web.js +450 -0
- package/vendor/translators-official/AGRIS.js +311 -0
- package/vendor/translators-official/AIP.js +295 -0
- package/vendor/translators-official/AMS Journals.js +136 -0
- package/vendor/translators-official/AMS MathSciNet (Legacy).js +313 -0
- package/vendor/translators-official/AMS MathSciNet.js +288 -0
- package/vendor/translators-official/APA PsycNET.js +915 -0
- package/vendor/translators-official/APN.ru.js +132 -0
- package/vendor/translators-official/APS-Physics.js +204 -0
- package/vendor/translators-official/APS.js +542 -0
- package/vendor/translators-official/ARTFL Encyclopedie.js +283 -0
- package/vendor/translators-official/ARTnews.js +155 -0
- package/vendor/translators-official/ARTstor.js +619 -0
- package/vendor/translators-official/ASCE.js +199 -0
- package/vendor/translators-official/ASCO Meeting Library.js +153 -0
- package/vendor/translators-official/ASTIS.js +337 -0
- package/vendor/translators-official/ATS International Journal.js +290 -0
- package/vendor/translators-official/Access Engineering.js +384 -0
- package/vendor/translators-official/Access Medicine.js +343 -0
- package/vendor/translators-official/Access Science.js +391 -0
- package/vendor/translators-official/Adam Matthew Digital.js +405 -0
- package/vendor/translators-official/Agencia del ISBN.js +77 -0
- package/vendor/translators-official/Ahval News.js +309 -0
- package/vendor/translators-official/Air University Journals.js +236 -0
- package/vendor/translators-official/Airiti.js +423 -0
- package/vendor/translators-official/Alexander Street Press.js +198 -0
- package/vendor/translators-official/AllAfrica.js +291 -0
- package/vendor/translators-official/Alsharekh.js +242 -0
- package/vendor/translators-official/AlterNet.js +134 -0
- package/vendor/translators-official/Aluka.js +261 -0
- package/vendor/translators-official/Amazon.js +1043 -0
- package/vendor/translators-official/American Archive of Public Broadcasting.js +592 -0
- package/vendor/translators-official/American Institute of Aeronautics and Astronautics.js +210 -0
- package/vendor/translators-official/American Prospect.js +114 -0
- package/vendor/translators-official/Anarchist Library.js +382 -0
- package/vendor/translators-official/Ancestry.com US Federal Census.js +164 -0
- package/vendor/translators-official/Annual Reviews.js +329 -0
- package/vendor/translators-official/Antikvarium.hu.js +280 -0
- package/vendor/translators-official/AquaDocs.js +390 -0
- package/vendor/translators-official/Archeion.js +249 -0
- package/vendor/translators-official/Archiv fuer Sozialgeschichte.js +157 -0
- package/vendor/translators-official/Archive Ouverte en Sciences de l'Information et de la Communication (AOSIC).js +179 -0
- package/vendor/translators-official/Archives Canada.js +142 -0
- package/vendor/translators-official/Ariana News.js +203 -0
- package/vendor/translators-official/Art Institute of Chicago.js +279 -0
- package/vendor/translators-official/Artefacts Canada.js +192 -0
- package/vendor/translators-official/Artforum.js +438 -0
- package/vendor/translators-official/Atlanta Journal-Constitution.js +311 -0
- package/vendor/translators-official/Atypon Journals.js +1204 -0
- package/vendor/translators-official/AustLII and NZLII.js +604 -0
- package/vendor/translators-official/Australian Dictionary of Biography.js +196 -0
- package/vendor/translators-official/BAILII.js +176 -0
- package/vendor/translators-official/BBC Genome.js +254 -0
- package/vendor/translators-official/BBC.js +430 -0
- package/vendor/translators-official/BIBSYS.js +112 -0
- package/vendor/translators-official/BOCC.js +217 -0
- package/vendor/translators-official/BOE.js +229 -0
- package/vendor/translators-official/BOFiP-Impots.js +132 -0
- package/vendor/translators-official/Baidu Scholar.js +276 -0
- package/vendor/translators-official/Bangkok Post.js +216 -0
- package/vendor/translators-official/Baruch Foundation.js +175 -0
- package/vendor/translators-official/Beobachter.js +175 -0
- package/vendor/translators-official/Bezneng Gajit.js +92 -0
- package/vendor/translators-official/BibLaTeX.js +888 -0
- package/vendor/translators-official/BibTeX.js +4236 -0
- package/vendor/translators-official/Biblio.com.js +216 -0
- package/vendor/translators-official/Bibliontology RDF.js +1166 -0
- package/vendor/translators-official/Biblioteca Nacional de Maestros.js +213 -0
- package/vendor/translators-official/Bibliotheque et Archives Nationale du Quebec (Pistard).js +147 -0
- package/vendor/translators-official/Bibliotheque et Archives Nationales du Quebec.js +266 -0
- package/vendor/translators-official/Bibliotheque nationale de France.js +872 -0
- package/vendor/translators-official/BioMed Central.js +585 -0
- package/vendor/translators-official/BioOne.js +233 -0
- package/vendor/translators-official/Bioconductor.js +343 -0
- package/vendor/translators-official/Blaetter.js +192 -0
- package/vendor/translators-official/Blogger.js +244 -0
- package/vendor/translators-official/Bloomberg.js +205 -0
- package/vendor/translators-official/Bloomsbury Food Library.js +296 -0
- package/vendor/translators-official/Bluesky.js +195 -0
- package/vendor/translators-official/BnF ISBN.js +129 -0
- package/vendor/translators-official/Bookmarks.js +282 -0
- package/vendor/translators-official/Bookshop.org.js +223 -0
- package/vendor/translators-official/Boston Review.js +332 -0
- package/vendor/translators-official/Bosworth Toller's Anglo-Saxon Dictionary Online.js +496 -0
- package/vendor/translators-official/Bracero History Archive.js +200 -0
- package/vendor/translators-official/Brill.js +434 -0
- package/vendor/translators-official/Brukerhandboken.js +153 -0
- package/vendor/translators-official/Bryn Mawr Classical Review.js +303 -0
- package/vendor/translators-official/Bundesgesetzblatt.js +231 -0
- package/vendor/translators-official/Business Standard.js +151 -0
- package/vendor/translators-official/CABI - CAB Abstracts.js +317 -0
- package/vendor/translators-official/CAOD.js +260 -0
- package/vendor/translators-official/CBC.js +439 -0
- package/vendor/translators-official/CCfr (BnF).js +162 -0
- package/vendor/translators-official/CERN Document Server.js +277 -0
- package/vendor/translators-official/CEUR Workshop Proceedings.js +145 -0
- package/vendor/translators-official/CFF References.js +170 -0
- package/vendor/translators-official/CFF.js +113 -0
- package/vendor/translators-official/CIA World Factbook.js +128 -0
- package/vendor/translators-official/CLACSO.js +226 -0
- package/vendor/translators-official/CLASE.js +135 -0
- package/vendor/translators-official/CNKI.js +731 -0
- package/vendor/translators-official/COBISS.js +1945 -0
- package/vendor/translators-official/COinS.js +336 -0
- package/vendor/translators-official/CQ Press.js +418 -0
- package/vendor/translators-official/CROSBI.js +227 -0
- package/vendor/translators-official/CSIRO Publishing.js +139 -0
- package/vendor/translators-official/CSL JSON.js +203 -0
- package/vendor/translators-official/CSV.js +294 -0
- package/vendor/translators-official/Cairn.info.js +368 -0
- package/vendor/translators-official/CalMatters.js +228 -0
- package/vendor/translators-official/Calisphere.js +355 -0
- package/vendor/translators-official/Camara Brasileira do Livro ISBN.js +842 -0
- package/vendor/translators-official/Cambridge Core.js +580 -0
- package/vendor/translators-official/Cambridge Engage Preprints.js +276 -0
- package/vendor/translators-official/CanLII.js +284 -0
- package/vendor/translators-official/Canada.com.js +171 -0
- package/vendor/translators-official/Canadian Letters and Images.js +148 -0
- package/vendor/translators-official/Canadiana.ca.js +196 -0
- package/vendor/translators-official/Cascadilla Proceedings Project.js +390 -0
- package/vendor/translators-official/Cell Press.js +516 -0
- package/vendor/translators-official/Central and Eastern European Online Library Journals.js +313 -0
- package/vendor/translators-official/Champlain Society - Collection.js +220 -0
- package/vendor/translators-official/ChatGPT.js +185 -0
- package/vendor/translators-official/Chicago Journal of Theoretical Computer Science.js +203 -0
- package/vendor/translators-official/Christian Science Monitor.js +148 -0
- package/vendor/translators-official/Chronicling America.js +131 -0
- package/vendor/translators-official/CiNii Research.js +168 -0
- package/vendor/translators-official/Citavi 5 XML.js +516 -0
- package/vendor/translators-official/CiteSeer.js +196 -0
- package/vendor/translators-official/Citizen Lab.js +347 -0
- package/vendor/translators-official/Civilization.ca.js +146 -0
- package/vendor/translators-official/Climate Change and Human Health Literature Portal.js +283 -0
- package/vendor/translators-official/Clinical Key.js +367 -0
- package/vendor/translators-official/Code4Lib Journal.js +143 -0
- package/vendor/translators-official/Colorado State Legislature.js +215 -0
- package/vendor/translators-official/Columbia University Press.js +238 -0
- package/vendor/translators-official/Common-Place.js +218 -0
- package/vendor/translators-official/Computer History Museum Archive.js +1319 -0
- package/vendor/translators-official/Copernicus.js +461 -0
- package/vendor/translators-official/Cornell LII.js +252 -0
- package/vendor/translators-official/Cornell University Press.js +235 -0
- package/vendor/translators-official/CourtListener.js +265 -0
- package/vendor/translators-official/Crossref REST.js +1757 -0
- package/vendor/translators-official/Crossref Unixref XML.js +965 -0
- package/vendor/translators-official/Current Affairs.js +160 -0
- package/vendor/translators-official/DABI.js +476 -0
- package/vendor/translators-official/DAI-Zenon.js +392 -0
- package/vendor/translators-official/DART-Europe.js +176 -0
- package/vendor/translators-official/DBLP Computer Science Bibliography.js +462 -0
- package/vendor/translators-official/DBpia.js +233 -0
- package/vendor/translators-official/DEPATISnet.js +373 -0
- package/vendor/translators-official/DOAJ.js +243 -0
- package/vendor/translators-official/DOI Content Negotiation.js +352 -0
- package/vendor/translators-official/DOI.js +322 -0
- package/vendor/translators-official/DPLA.js +425 -0
- package/vendor/translators-official/DSpace Intermediate Metadata.js +208 -0
- package/vendor/translators-official/Dagens Nyheter.js +369 -0
- package/vendor/translators-official/Dagstuhl Research Online Publication Server.js +276 -0
- package/vendor/translators-official/Dar Almandumah.js +253 -0
- package/vendor/translators-official/Data.gov.js +225 -0
- package/vendor/translators-official/Databrary.js +184 -0
- package/vendor/translators-official/Datacite JSON.js +1182 -0
- package/vendor/translators-official/Dataverse.js +418 -0
- package/vendor/translators-official/Daum News.js +139 -0
- package/vendor/translators-official/De Gruyter Brill.js +460 -0
- package/vendor/translators-official/Defense Technical Information Center.js +146 -0
- package/vendor/translators-official/Delpher.js +413 -0
- package/vendor/translators-official/Demographic Research.js +164 -0
- package/vendor/translators-official/Denik CZ.js +273 -0
- package/vendor/translators-official/Der Freitag.js +236 -0
- package/vendor/translators-official/Der Spiegel.js +479 -0
- package/vendor/translators-official/Desiring God.js +216 -0
- package/vendor/translators-official/Deutsche Fotothek.js +364 -0
- package/vendor/translators-official/Deutsche Nationalbibliothek.js +594 -0
- package/vendor/translators-official/Dialnet.js +258 -0
- package/vendor/translators-official/Die Zeit.js +378 -0
- package/vendor/translators-official/DigiZeitschriften.js +269 -0
- package/vendor/translators-official/Digital Humanities Quarterly.js +207 -0
- package/vendor/translators-official/Digital Spy.js +215 -0
- package/vendor/translators-official/Dimensions.js +233 -0
- package/vendor/translators-official/Douban.js +316 -0
- package/vendor/translators-official/Dreier Neuerscheinungsdienst.js +209 -0
- package/vendor/translators-official/DrugBank.ca.js +209 -0
- package/vendor/translators-official/Dryad Digital Repository.js +323 -0
- package/vendor/translators-official/Duke University Press Books.js +250 -0
- package/vendor/translators-official/E-periodica Switzerland.js +347 -0
- package/vendor/translators-official/EBSCO Discovery Layer.js +159 -0
- package/vendor/translators-official/EBSCOhost.js +592 -0
- package/vendor/translators-official/EIDR.js +184 -0
- package/vendor/translators-official/EPA National Library Catalog.js +245 -0
- package/vendor/translators-official/ERIC.js +986 -0
- package/vendor/translators-official/ESpacenet.js +465 -0
- package/vendor/translators-official/EUR-Lex.js +418 -0
- package/vendor/translators-official/Eastview.js +336 -0
- package/vendor/translators-official/Edinburgh University Press Journals.js +178 -0
- package/vendor/translators-official/Education Week.js +197 -0
- package/vendor/translators-official/El Comercio (Peru).js +347 -0
- package/vendor/translators-official/El Pais.js +262 -0
- package/vendor/translators-official/Electronic Colloquium on Computational Complexity.js +230 -0
- package/vendor/translators-official/Elicit.js +120 -0
- package/vendor/translators-official/Elsevier Health Journals.js +531 -0
- package/vendor/translators-official/Elsevier Pure.js +420 -0
- package/vendor/translators-official/Embedded Metadata.js +1978 -0
- package/vendor/translators-official/Emerald Insight.js +626 -0
- package/vendor/translators-official/Encyclopedia of Chicago.js +162 -0
- package/vendor/translators-official/Encyclopedia of Korean Culture.js +221 -0
- package/vendor/translators-official/Endnote XML.js +1407 -0
- package/vendor/translators-official/Engineering Village.js +139 -0
- package/vendor/translators-official/Envidat.js +331 -0
- package/vendor/translators-official/Epicurious.js +144 -0
- package/vendor/translators-official/Erudit.js +272 -0
- package/vendor/translators-official/Euclid.js +220 -0
- package/vendor/translators-official/EurasiaNet.js +109 -0
- package/vendor/translators-official/EurogamerUSgamer.js +380 -0
- package/vendor/translators-official/Europe PMC.js +448 -0
- package/vendor/translators-official/Evernote.js +104 -0
- package/vendor/translators-official/F1000 Research.js +655 -0
- package/vendor/translators-official/FAO Knowledge Repository.js +598 -0
- package/vendor/translators-official/FAOLEX Database.js +811 -0
- package/vendor/translators-official/FAZ.NET.js +231 -0
- package/vendor/translators-official/Fachportal Padagogik.js +839 -0
- package/vendor/translators-official/Factiva.js +302 -0
- package/vendor/translators-official/Failed Architecture.js +114 -0
- package/vendor/translators-official/Fairfax Australia.js +200 -0
- package/vendor/translators-official/Fatcat.js +425 -0
- package/vendor/translators-official/Figshare.js +191 -0
- package/vendor/translators-official/Financial Times.js +187 -0
- package/vendor/translators-official/Finna.js +357 -0
- package/vendor/translators-official/Flickr.js +318 -0
- package/vendor/translators-official/Foreign Affairs.js +485 -0
- package/vendor/translators-official/Foreign Policy.js +146 -0
- package/vendor/translators-official/FreeCite.js +95 -0
- package/vendor/translators-official/FreePatentsOnline.js +265 -0
- package/vendor/translators-official/Frieze.js +243 -0
- package/vendor/translators-official/Frontiers.js +667 -0
- package/vendor/translators-official/GMS German Medical Science.js +319 -0
- package/vendor/translators-official/GPO Access e-CFR.js +134 -0
- package/vendor/translators-official/Gale Databases.js +324 -0
- package/vendor/translators-official/GaleGDC.js +189 -0
- package/vendor/translators-official/Galegroup.js +327 -0
- package/vendor/translators-official/Gallica.js +194 -0
- package/vendor/translators-official/Game Studies.js +155 -0
- package/vendor/translators-official/GameSpot.js +199 -0
- package/vendor/translators-official/GameStar GamePro.js +198 -0
- package/vendor/translators-official/Gasyrlar Awazy.js +156 -0
- package/vendor/translators-official/Gemeinsamer Bibliotheksverbund ISBN.js +23 -0
- package/vendor/translators-official/Gene Ontology.js +128 -0
- package/vendor/translators-official/GitHub.js +501 -0
- package/vendor/translators-official/Globes.js +243 -0
- package/vendor/translators-official/Gmail.js +64 -0
- package/vendor/translators-official/Goodreads.js +219 -0
- package/vendor/translators-official/Google Books.js +552 -0
- package/vendor/translators-official/Google Gemini.js +116 -0
- package/vendor/translators-official/Google Patents.js +959 -0
- package/vendor/translators-official/Google Play.js +186 -0
- package/vendor/translators-official/Google Presentation.js +104 -0
- package/vendor/translators-official/Google Research.js +221 -0
- package/vendor/translators-official/Google Scholar.js +1361 -0
- package/vendor/translators-official/Gulag Many Days, Many Lives.js +179 -0
- package/vendor/translators-official/HAL.js +536 -0
- package/vendor/translators-official/HCSP.js +312 -0
- package/vendor/translators-official/HUDOC.js +650 -0
- package/vendor/translators-official/Haaretz.js +562 -0
- package/vendor/translators-official/Habr.js +232 -0
- package/vendor/translators-official/Handelszeitung.js +273 -0
- package/vendor/translators-official/Hanrei Watch.js +123 -0
- package/vendor/translators-official/Harper's Magazine.js +365 -0
- package/vendor/translators-official/Harvard Business Review.js +326 -0
- package/vendor/translators-official/Harvard Caselaw Access Project.js +244 -0
- package/vendor/translators-official/Harvard University Press Books.js +286 -0
- package/vendor/translators-official/HathiTrust.js +311 -0
- package/vendor/translators-official/HeinOnline.js +280 -0
- package/vendor/translators-official/Heise.js +200 -0
- package/vendor/translators-official/Herder.js +236 -0
- package/vendor/translators-official/HighBeam.js +198 -0
- package/vendor/translators-official/HighWire 2.0.js +1355 -0
- package/vendor/translators-official/HighWire.js +209 -0
- package/vendor/translators-official/Hindawi Publishers.js +177 -0
- package/vendor/translators-official/Hispanic-American Periodical Index.js +236 -0
- package/vendor/translators-official/Homeland Security Digital Library.js +426 -0
- package/vendor/translators-official/Hrvatska enciklopedija.js +118 -0
- package/vendor/translators-official/Huff Post.js +223 -0
- package/vendor/translators-official/Human Rights Watch.js +450 -0
- package/vendor/translators-official/IBISWorld.js +171 -0
- package/vendor/translators-official/IDEA ALM.js +536 -0
- package/vendor/translators-official/IEEE Computer Society.js +429 -0
- package/vendor/translators-official/IEEE Xplore.js +1000 -0
- package/vendor/translators-official/IETF.js +451 -0
- package/vendor/translators-official/IGN.js +136 -0
- package/vendor/translators-official/IMDb.js +566 -0
- package/vendor/translators-official/INSPIRE.js +247 -0
- package/vendor/translators-official/IPCC.js +757 -0
- package/vendor/translators-official/ISTC.js +181 -0
- package/vendor/translators-official/Idref.js +179 -0
- package/vendor/translators-official/In These Times.js +196 -0
- package/vendor/translators-official/Ined.js +558 -0
- package/vendor/translators-official/InfoTrac.js +279 -0
- package/vendor/translators-official/Informationssystem Medienpaedagogik.js +305 -0
- package/vendor/translators-official/IngentaConnect.js +312 -0
- package/vendor/translators-official/Inside Higher Ed.js +167 -0
- package/vendor/translators-official/Insignia OPAC.js +114 -0
- package/vendor/translators-official/Institute of Contemporary Art.js +180 -0
- package/vendor/translators-official/Institute of Physics.js +340 -0
- package/vendor/translators-official/Integrum.js +173 -0
- package/vendor/translators-official/Intellixir.js +264 -0
- package/vendor/translators-official/Inter-Research Science Center.js +185 -0
- package/vendor/translators-official/International Nuclear Information System.js +285 -0
- package/vendor/translators-official/Internet Archive Scholar.js +106 -0
- package/vendor/translators-official/Internet Archive Wayback Machine.js +152 -0
- package/vendor/translators-official/Internet Archive.js +552 -0
- package/vendor/translators-official/InvenioRDM.js +1250 -0
- package/vendor/translators-official/Isidore.js +235 -0
- package/vendor/translators-official/J-Stage.js +272 -0
- package/vendor/translators-official/JETS.js +122 -0
- package/vendor/translators-official/JISC Historical Texts.js +273 -0
- package/vendor/translators-official/JRC Publications Repository.js +569 -0
- package/vendor/translators-official/JSTOR.js +821 -0
- package/vendor/translators-official/Jahrbuch.js +213 -0
- package/vendor/translators-official/Japan Times Online.js +138 -0
- package/vendor/translators-official/Journal of Electronic Publishing.js +147 -0
- package/vendor/translators-official/Journal of Extension.js +288 -0
- package/vendor/translators-official/Journal of Machine Learning Research.js +441 -0
- package/vendor/translators-official/Journal of Religion and Society.js +174 -0
- package/vendor/translators-official/JurPC.js +274 -0
- package/vendor/translators-official/Juricaf.js +141 -0
- package/vendor/translators-official/Juris.js +728 -0
- package/vendor/translators-official/K10plus ISBN.js +386 -0
- package/vendor/translators-official/KStudy.js +632 -0
- package/vendor/translators-official/Kanopy.js +358 -0
- package/vendor/translators-official/Khaama Press.js +249 -0
- package/vendor/translators-official/KiM.js +259 -0
- package/vendor/translators-official/KitapYurdu.com.js +376 -0
- package/vendor/translators-official/Kommersant.js +174 -0
- package/vendor/translators-official/Korean National Library.js +621 -0
- package/vendor/translators-official/L'Annee Philologique.js +267 -0
- package/vendor/translators-official/LA Times.js +239 -0
- package/vendor/translators-official/LIBRIS ISBN.js +103 -0
- package/vendor/translators-official/LIVIVO.js +260 -0
- package/vendor/translators-official/LWN.net.js +350 -0
- package/vendor/translators-official/La Croix.js +237 -0
- package/vendor/translators-official/La Nacion (Argentina).js +231 -0
- package/vendor/translators-official/La Presse.js +218 -0
- package/vendor/translators-official/La Republica (Peru).js +174 -0
- package/vendor/translators-official/Lagen.nu.js +214 -0
- package/vendor/translators-official/Landesbibliographie Baden-Wurttemberg.js +324 -0
- package/vendor/translators-official/Lapham's Quarterly.js +1062 -0
- package/vendor/translators-official/Le Devoir.js +167 -0
- package/vendor/translators-official/Le Figaro.js +225 -0
- package/vendor/translators-official/Le Maitron.js +484 -0
- package/vendor/translators-official/Le Monde.js +245 -0
- package/vendor/translators-official/Le monde diplomatique.js +200 -0
- package/vendor/translators-official/Legifrance.js +641 -0
- package/vendor/translators-official/Legislative Insight.js +406 -0
- package/vendor/translators-official/Lexis+.js +264 -0
- package/vendor/translators-official/LexisNexis.js +505 -0
- package/vendor/translators-official/Libraries Tasmania.js +778 -0
- package/vendor/translators-official/Library Catalog (Aleph).js +385 -0
- package/vendor/translators-official/Library Catalog (Amicus).js +254 -0
- package/vendor/translators-official/Library Catalog (Aquabrowser).js +253 -0
- package/vendor/translators-official/Library Catalog (BiblioCommons).js +249 -0
- package/vendor/translators-official/Library Catalog (Blacklight).js +341 -0
- package/vendor/translators-official/Library Catalog (Capita Prism).js +162 -0
- package/vendor/translators-official/Library Catalog (DRA).js +203 -0
- package/vendor/translators-official/Library Catalog (Dynix).js +315 -0
- package/vendor/translators-official/Library Catalog (EBSCO Locate).js +442 -0
- package/vendor/translators-official/Library Catalog (Encore).js +211 -0
- package/vendor/translators-official/Library Catalog (InnoPAC).js +305 -0
- package/vendor/translators-official/Library Catalog (Koha).js +225 -0
- package/vendor/translators-official/Library Catalog (Mango).js +285 -0
- package/vendor/translators-official/Library Catalog (OPALS).js +200 -0
- package/vendor/translators-official/Library Catalog (PICA).js +2120 -0
- package/vendor/translators-official/Library Catalog (PICA2).js +331 -0
- package/vendor/translators-official/Library Catalog (Pika).js +488 -0
- package/vendor/translators-official/Library Catalog (Polaris).js +183 -0
- package/vendor/translators-official/Library Catalog (Quolto).js +320 -0
- package/vendor/translators-official/Library Catalog (RERO ILS).js +754 -0
- package/vendor/translators-official/Library Catalog (SIRSI eLibrary).js +407 -0
- package/vendor/translators-official/Library Catalog (SIRSI).js +452 -0
- package/vendor/translators-official/Library Catalog (SLIMS).js +146 -0
- package/vendor/translators-official/Library Catalog (TIND ILS).js +773 -0
- package/vendor/translators-official/Library Catalog (TLCYouSeeMore).js +132 -0
- package/vendor/translators-official/Library Catalog (TinREAD).js +277 -0
- package/vendor/translators-official/Library Catalog (VTLS).js +125 -0
- package/vendor/translators-official/Library Catalog (Visual Library 2021).js +765 -0
- package/vendor/translators-official/Library Catalog (Voyager 7).js +199 -0
- package/vendor/translators-official/Library Catalog (Voyager).js +212 -0
- package/vendor/translators-official/Library Genesis.js +337 -0
- package/vendor/translators-official/Library Hub Discover.js +359 -0
- package/vendor/translators-official/Library of Congress Digital Collections.js +869 -0
- package/vendor/translators-official/Library of Congress ISBN.js +86 -0
- package/vendor/translators-official/LingBuzz.js +359 -0
- package/vendor/translators-official/Lippincott Williams and Wilkins.js +341 -0
- package/vendor/translators-official/Literary Hub.js +950 -0
- package/vendor/translators-official/Litres.js +236 -0
- package/vendor/translators-official/LiveJournal.js +219 -0
- package/vendor/translators-official/London Review of Books.js +291 -0
- package/vendor/translators-official/LookUs.js +260 -0
- package/vendor/translators-official/Lulu.js +264 -0
- package/vendor/translators-official/MAB2.js +373 -0
- package/vendor/translators-official/MARC.js +1080 -0
- package/vendor/translators-official/MARCXML.js +489 -0
- package/vendor/translators-official/MCV.js +258 -0
- package/vendor/translators-official/MDPI Journals.js +356 -0
- package/vendor/translators-official/MEDLINEnbib.js +1561 -0
- package/vendor/translators-official/METS.js +384 -0
- package/vendor/translators-official/MIDAS Journals.js +343 -0
- package/vendor/translators-official/MIT Press Books.js +637 -0
- package/vendor/translators-official/MODS.js +2545 -0
- package/vendor/translators-official/MPG PuRe.js +541 -0
- package/vendor/translators-official/Mailman.js +136 -0
- package/vendor/translators-official/Mainichi Daily News.js +189 -0
- package/vendor/translators-official/Mastodon.js +198 -0
- package/vendor/translators-official/Matbugat.ru.js +110 -0
- package/vendor/translators-official/Max Planck Institute for the History of Science Virtual Laboratory Library.js +136 -0
- package/vendor/translators-official/Medium.js +208 -0
- package/vendor/translators-official/MetaLib.js +126 -0
- package/vendor/translators-official/Microbiology Society Journals.js +343 -0
- package/vendor/translators-official/Microsoft Academic.js +424 -0
- package/vendor/translators-official/Mikromarc.js +207 -0
- package/vendor/translators-official/Milli Kutuphane.js +244 -0
- package/vendor/translators-official/Musee du Louvre.js +265 -0
- package/vendor/translators-official/NASA ADS.js +889 -0
- package/vendor/translators-official/NASA NTRS.js +610 -0
- package/vendor/translators-official/NCBI Nucleotide.js +227 -0
- package/vendor/translators-official/NPR.js +341 -0
- package/vendor/translators-official/NRC Research Press.js +181 -0
- package/vendor/translators-official/NRC.nl.js +226 -0
- package/vendor/translators-official/NTSB Accident Reports.js +226 -0
- package/vendor/translators-official/NYPL Menus.js +275 -0
- package/vendor/translators-official/NYPL Research Catalog.js +458 -0
- package/vendor/translators-official/NYTimes.com.js +947 -0
- package/vendor/translators-official/NZZ.ch.js +272 -0
- package/vendor/translators-official/Nagoya University OPAC.js +336 -0
- package/vendor/translators-official/National Academies Press.js +243 -0
- package/vendor/translators-official/National Agriculture Library.js +524 -0
- package/vendor/translators-official/National Archives UK Case Law.js +509 -0
- package/vendor/translators-official/National Archives of Australia.js +522 -0
- package/vendor/translators-official/National Archives of South Africa.js +122 -0
- package/vendor/translators-official/National Bureau of Economic Research.js +363 -0
- package/vendor/translators-official/National Diet Library Catalogue.js +333 -0
- package/vendor/translators-official/National Gallery of Art - USA.js +149 -0
- package/vendor/translators-official/National Gallery of Australia.js +252 -0
- package/vendor/translators-official/National Library of Australia (new catalog).js +223 -0
- package/vendor/translators-official/National Library of Belarus.js +171 -0
- package/vendor/translators-official/National Library of Norway.js +310 -0
- package/vendor/translators-official/National Library of Poland ISBN.js +140 -0
- package/vendor/translators-official/National Post.js +186 -0
- package/vendor/translators-official/National Technical Reports Library.js +276 -0
- package/vendor/translators-official/National Transportation Library ROSA P.js +562 -0
- package/vendor/translators-official/Nature Publishing Group.js +3394 -0
- package/vendor/translators-official/Neural Information Processing Systems.js +385 -0
- package/vendor/translators-official/New Left Review.js +245 -0
- package/vendor/translators-official/New Zealand Herald.js +282 -0
- package/vendor/translators-official/Newlines Magazine.js +190 -0
- package/vendor/translators-official/News Corp Australia.js +251 -0
- package/vendor/translators-official/NewsBank.js +202 -0
- package/vendor/translators-official/NewsnetTamedia.js +509 -0
- package/vendor/translators-official/Noor Digital Library.js +267 -0
- package/vendor/translators-official/Note HTML.js +206 -0
- package/vendor/translators-official/Note Markdown.js +1638 -0
- package/vendor/translators-official/Notre Dame Philosophical Reviews.js +201 -0
- package/vendor/translators-official/OAPEN.js +331 -0
- package/vendor/translators-official/OCLC WorldCat FirstSearch.js +213 -0
- package/vendor/translators-official/OECD.js +216 -0
- package/vendor/translators-official/ORCID.js +104 -0
- package/vendor/translators-official/OSF Preprints.js +1287 -0
- package/vendor/translators-official/OSTI Energy Citations.js +202 -0
- package/vendor/translators-official/OVID Tagged.js +1226 -0
- package/vendor/translators-official/OZON.ru.js +465 -0
- package/vendor/translators-official/OhioLINK.js +43 -0
- package/vendor/translators-official/Old Bailey Online.js +315 -0
- package/vendor/translators-official/Open Conf.js +172 -0
- package/vendor/translators-official/Open Knowledge Repository.js +811 -0
- package/vendor/translators-official/Open WorldCat.js +1394 -0
- package/vendor/translators-official/OpenAlex JSON.js +740 -0
- package/vendor/translators-official/OpenAlex.js +444 -0
- package/vendor/translators-official/OpenEdition Books.js +155 -0
- package/vendor/translators-official/OpenEdition Journals.js +432 -0
- package/vendor/translators-official/Optical Society of America.js +562 -0
- package/vendor/translators-official/Optimization Online.js +418 -0
- package/vendor/translators-official/Ovid OCE.js +353 -0
- package/vendor/translators-official/Ovid.js +302 -0
- package/vendor/translators-official/Oxford Dictionaries Premium.js +194 -0
- package/vendor/translators-official/Oxford English Dictionary.js +122 -0
- package/vendor/translators-official/Oxford Music and Art Online.js +120 -0
- package/vendor/translators-official/Oxford Reference.js +202 -0
- package/vendor/translators-official/Oxford University Press.js +277 -0
- package/vendor/translators-official/PC Gamer.js +302 -0
- package/vendor/translators-official/PC Games.js +128 -0
- package/vendor/translators-official/PEI Archival Information Network.js +242 -0
- package/vendor/translators-official/PEP Web.js +165 -0
- package/vendor/translators-official/PKP Catalog Systems.js +1455 -0
- package/vendor/translators-official/PLoS Journals.js +284 -0
- package/vendor/translators-official/PRC History Review.js +298 -0
- package/vendor/translators-official/Pajhwok Afghan News.js +198 -0
- package/vendor/translators-official/Papers Past.js +509 -0
- package/vendor/translators-official/Paris Review.js +227 -0
- package/vendor/translators-official/Pastebin.js +199 -0
- package/vendor/translators-official/Patents - USPTO.js +210 -0
- package/vendor/translators-official/Peeters.js +587 -0
- package/vendor/translators-official/Perceiving Systems.js +350 -0
- package/vendor/translators-official/Perlego.js +416 -0
- package/vendor/translators-official/PhilPapers.js +233 -0
- package/vendor/translators-official/Philosopher's Imprint.js +169 -0
- package/vendor/translators-official/Pleade.js +329 -0
- package/vendor/translators-official/Polygon.js +270 -0
- package/vendor/translators-official/Potsdamer Neueste Nachrichten.js +188 -0
- package/vendor/translators-official/Premium Times.js +144 -0
- package/vendor/translators-official/Preprints.org.js +305 -0
- package/vendor/translators-official/Prime 9ja Online.js +402 -0
- package/vendor/translators-official/Primo 2018.js +126 -0
- package/vendor/translators-official/Primo Normalized XML.js +1075 -0
- package/vendor/translators-official/Primo.js +322 -0
- package/vendor/translators-official/ProMED.js +66 -0
- package/vendor/translators-official/ProQuest Ebook Central.js +226 -0
- package/vendor/translators-official/ProQuest PolicyFile.js +115 -0
- package/vendor/translators-official/ProQuest.js +2210 -0
- package/vendor/translators-official/Probing the Past.js +151 -0
- package/vendor/translators-official/Project Gutenberg.js +191 -0
- package/vendor/translators-official/Project MUSE.js +451 -0
- package/vendor/translators-official/Protein Data Bank.js +445 -0
- package/vendor/translators-official/PubFactory Journals.js +712 -0
- package/vendor/translators-official/PubMed Central.js +563 -0
- package/vendor/translators-official/PubMed XML.js +1240 -0
- package/vendor/translators-official/PubMed.js +1317 -0
- package/vendor/translators-official/PubPub.js +530 -0
- package/vendor/translators-official/Public Record Office Victoria.js +252 -0
- package/vendor/translators-official/Publications Office of the European Union.js +540 -0
- package/vendor/translators-official/Publications du Quebec.js +225 -0
- package/vendor/translators-official/PyPI.js +288 -0
- package/vendor/translators-official/Qatar Digital Library.js +802 -0
- package/vendor/translators-official/Queensland State Archives.js +303 -0
- package/vendor/translators-official/R-Packages.js +410 -0
- package/vendor/translators-official/RAND.js +283 -0
- package/vendor/translators-official/RDF.js +1782 -0
- package/vendor/translators-official/REDALYC.js +196 -0
- package/vendor/translators-official/RIS.js +7292 -0
- package/vendor/translators-official/RSC Publishing.js +250 -0
- package/vendor/translators-official/Radio Free Europe Radio Liberty.js +706 -0
- package/vendor/translators-official/RePEc - Econpapers.js +725 -0
- package/vendor/translators-official/RePEc - IDEAS.js +337 -0
- package/vendor/translators-official/Rechtspraak.nl.js +295 -0
- package/vendor/translators-official/RefWorks Tagged.js +1185 -0
- package/vendor/translators-official/ReferBibIX.js +463 -0
- package/vendor/translators-official/Regeringskansliet.js +89 -0
- package/vendor/translators-official/Research Square.js +335 -0
- package/vendor/translators-official/ResearchGate.js +394 -0
- package/vendor/translators-official/Retsinformation.js +348 -0
- package/vendor/translators-official/Reuters.js +255 -0
- package/vendor/translators-official/Rock, Paper, Shotgun.js +304 -0
- package/vendor/translators-official/Roll Call.js +173 -0
- package/vendor/translators-official/Russian State Library.js +1517 -0
- package/vendor/translators-official/SAE Papers.js +241 -0
- package/vendor/translators-official/SAGE Journals.js +429 -0
- package/vendor/translators-official/SAGE Knowledge.js +505 -0
- package/vendor/translators-official/SAILDART.js +364 -0
- package/vendor/translators-official/SALT Research Archives.js +196 -0
- package/vendor/translators-official/SFU IPinCH.js +946 -0
- package/vendor/translators-official/SIPRI.js +256 -0
- package/vendor/translators-official/SIRS Knowledge Source.js +546 -0
- package/vendor/translators-official/SLUB Dresden.js +300 -0
- package/vendor/translators-official/SORA.js +340 -0
- package/vendor/translators-official/SSOAR.js +399 -0
- package/vendor/translators-official/SSRN.js +235 -0
- package/vendor/translators-official/SVT Nyheter.js +381 -0
- package/vendor/translators-official/Sacramento Bee.js +274 -0
- package/vendor/translators-official/Safari Books Online.js +391 -0
- package/vendor/translators-official/Scholars Portal Journals.js +220 -0
- package/vendor/translators-official/Scholia.js +189 -0
- package/vendor/translators-official/Schweizer Radio und Fernsehen SRF.js +152 -0
- package/vendor/translators-official/SciELO.js +440 -0
- package/vendor/translators-official/ScienceDirect.js +1306 -0
- package/vendor/translators-official/Scopus.js +418 -0
- package/vendor/translators-official/Semantic Scholar.js +513 -0
- package/vendor/translators-official/Silverchair.js +886 -0
- package/vendor/translators-official/Slate.js +228 -0
- package/vendor/translators-official/SlideShare.js +112 -0
- package/vendor/translators-official/Springer Link.js +696 -0
- package/vendor/translators-official/Stack Exchange.js +134 -0
- package/vendor/translators-official/Standard Ebooks.js +198 -0
- package/vendor/translators-official/Stanford Encyclopedia of Philosophy.js +285 -0
- package/vendor/translators-official/Stanford University Press.js +343 -0
- package/vendor/translators-official/State Records Office of Western Australia.js +439 -0
- package/vendor/translators-official/Stitcher.js +141 -0
- package/vendor/translators-official/Store norske leksikon.js +291 -0
- package/vendor/translators-official/Stuff.co.nz.js +446 -0
- package/vendor/translators-official/Substack.js +237 -0
- package/vendor/translators-official/Sud Ouest.js +181 -0
- package/vendor/translators-official/Sueddeutsche.de.js +205 -0
- package/vendor/translators-official/Summon 2.js +117 -0
- package/vendor/translators-official/Superlib.js +647 -0
- package/vendor/translators-official/Svenska Dagbladet.js +274 -0
- package/vendor/translators-official/Sveriges radio.js +416 -0
- package/vendor/translators-official/TEI.js +648 -0
- package/vendor/translators-official/TV by the Numbers.js +194 -0
- package/vendor/translators-official/TVNZ.js +165 -0
- package/vendor/translators-official/Tagesspiegel.js +249 -0
- package/vendor/translators-official/Talis Aspire.js +316 -0
- package/vendor/translators-official/TalisPrism.js +445 -0
- package/vendor/translators-official/Tatknigafund.js +174 -0
- package/vendor/translators-official/Tatpressa.ru.js +121 -0
- package/vendor/translators-official/Taylor & Francis eBooks.js +334 -0
- package/vendor/translators-official/Taylor and Francis+NEJM.js +813 -0
- package/vendor/translators-official/Tesis Doctorals en Xarxa.js +233 -0
- package/vendor/translators-official/The Art Newspaper.js +268 -0
- package/vendor/translators-official/The Atlantic.js +535 -0
- package/vendor/translators-official/The Boston Globe.js +285 -0
- package/vendor/translators-official/The Chronicle of Higher Education.js +308 -0
- package/vendor/translators-official/The Daily Beast.js +183 -0
- package/vendor/translators-official/The Economic Times - The Times of India.js +305 -0
- package/vendor/translators-official/The Economist.js +207 -0
- package/vendor/translators-official/The Free Dictionary.js +58 -0
- package/vendor/translators-official/The Globe and Mail.js +241 -0
- package/vendor/translators-official/The Guardian.js +717 -0
- package/vendor/translators-official/The Hamilton Spectator.js +129 -0
- package/vendor/translators-official/The Hindu.js +318 -0
- package/vendor/translators-official/The Independent.js +184 -0
- package/vendor/translators-official/The Intercept.js +258 -0
- package/vendor/translators-official/The Met.js +276 -0
- package/vendor/translators-official/The Microfinance Gateway.js +174 -0
- package/vendor/translators-official/The Nation.js +188 -0
- package/vendor/translators-official/The National Archives (UK).js +242 -0
- package/vendor/translators-official/The New Republic.js +160 -0
- package/vendor/translators-official/The New York Review of Books.js +467 -0
- package/vendor/translators-official/The New Yorker.js +360 -0
- package/vendor/translators-official/The Open Library.js +220 -0
- package/vendor/translators-official/The Straits Times.js +528 -0
- package/vendor/translators-official/The Telegraph.js +337 -0
- package/vendor/translators-official/The Times and Sunday Times.js +180 -0
- package/vendor/translators-official/The Times of Israel.js +151 -0
- package/vendor/translators-official/TheMarker.js +108 -0
- package/vendor/translators-official/Theory of Computing.js +488 -0
- package/vendor/translators-official/ThesesFR.js +405 -0
- package/vendor/translators-official/Thieme.js +326 -0
- package/vendor/translators-official/Time.com.js +557 -0
- package/vendor/translators-official/TimesMachine.js +222 -0
- package/vendor/translators-official/Tony Blair Institute for Global Change.js +195 -0
- package/vendor/translators-official/Toronto Star.js +298 -0
- package/vendor/translators-official/Transportation Research Board.js +253 -0
- package/vendor/translators-official/Treesearch.js +535 -0
- package/vendor/translators-official/Trove.js +616 -0
- package/vendor/translators-official/Tumblr.js +179 -0
- package/vendor/translators-official/Twitter.js +413 -0
- package/vendor/translators-official/UChicago VuFind.js +907 -0
- package/vendor/translators-official/UNZ Print Archive.js +276 -0
- package/vendor/translators-official/UPCommons.js +227 -0
- package/vendor/translators-official/US National Archives Research Catalog.js +275 -0
- package/vendor/translators-official/USENIX.js +151 -0
- package/vendor/translators-official/Ubiquity Journals.js +228 -0
- package/vendor/translators-official/University Press Scholarship.js +301 -0
- package/vendor/translators-official/University of California Press Books.js +403 -0
- package/vendor/translators-official/University of Chicago Press Books.js +378 -0
- package/vendor/translators-official/University of Wisconsin-Madison Libraries Catalog.js +298 -0
- package/vendor/translators-official/Unqualified Dublin Core RDF.js +153 -0
- package/vendor/translators-official/UpToDate References.js +203 -0
- package/vendor/translators-official/Vanity Fair.js +242 -0
- package/vendor/translators-official/Verniana-Jules Verne Studies.js +190 -0
- package/vendor/translators-official/Verso Books.js +311 -0
- package/vendor/translators-official/Vice.js +445 -0
- package/vendor/translators-official/Victoria & Albert Museum.js +277 -0
- package/vendor/translators-official/Vimeo.js +188 -0
- package/vendor/translators-official/VoxEU.js +151 -0
- package/vendor/translators-official/WHO.js +458 -0
- package/vendor/translators-official/WIPO.js +189 -0
- package/vendor/translators-official/Wall Street Journal.js +809 -0
- package/vendor/translators-official/Wanfang Data.js +310 -0
- package/vendor/translators-official/Washington Monthly.js +195 -0
- package/vendor/translators-official/Washington Post.js +447 -0
- package/vendor/translators-official/Web of Science Nextgen.js +832 -0
- package/vendor/translators-official/Web of Science Tagged.js +1247 -0
- package/vendor/translators-official/Web of Science.js +228 -0
- package/vendor/translators-official/Welt Online.js +161 -0
- package/vendor/translators-official/WestLaw UK.js +190 -0
- package/vendor/translators-official/WikiLeaks PlusD.js +182 -0
- package/vendor/translators-official/Wikidata QuickStatements.js +324 -0
- package/vendor/translators-official/Wikidata.js +911 -0
- package/vendor/translators-official/Wikimedia Commons.js +285 -0
- package/vendor/translators-official/Wikipedia Citation Templates.js +432 -0
- package/vendor/translators-official/Wikipedia.js +385 -0
- package/vendor/translators-official/Wikisource.js +399 -0
- package/vendor/translators-official/Wikiwand.js +122 -0
- package/vendor/translators-official/Wiktionary.js +141 -0
- package/vendor/translators-official/Wildlife Biology in Practice.js +172 -0
- package/vendor/translators-official/Wiley Online Library.js +1412 -0
- package/vendor/translators-official/Wilson Center Digital Archive.js +321 -0
- package/vendor/translators-official/Winnipeg Free Press.js +204 -0
- package/vendor/translators-official/Wired.js +362 -0
- package/vendor/translators-official/Womennews.js +230 -0
- package/vendor/translators-official/World Digital Library.js +403 -0
- package/vendor/translators-official/World History Connected.js +185 -0
- package/vendor/translators-official/World Shakespeare Bibliography Online.js +595 -0
- package/vendor/translators-official/WorldCat Discovery Service.js +630 -0
- package/vendor/translators-official/XML ContextObject.js +274 -0
- package/vendor/translators-official/YPSF.js +224 -0
- package/vendor/translators-official/Yandex Books.js +265 -0
- package/vendor/translators-official/Ynet.js +171 -0
- package/vendor/translators-official/YouTube.js +209 -0
- package/vendor/translators-official/ZIPonline.js +267 -0
- package/vendor/translators-official/ZOBODAT.js +341 -0
- package/vendor/translators-official/Zotero RDF.js +588 -0
- package/vendor/translators-official/ZoteroBib.js +94 -0
- package/vendor/translators-official/arXiv.org.js +1100 -0
- package/vendor/translators-official/artnet.js +207 -0
- package/vendor/translators-official/beck-online.js +1339 -0
- package/vendor/translators-official/clinicaltrials.gov.js +331 -0
- package/vendor/translators-official/dLibra.js +367 -0
- package/vendor/translators-official/dejure.org.js +242 -0
- package/vendor/translators-official/dhistory.js +103 -0
- package/vendor/translators-official/digibib.net.js +245 -0
- package/vendor/translators-official/eLibrary.ru.js +867 -0
- package/vendor/translators-official/eLife.js +462 -0
- package/vendor/translators-official/eMJA.js +246 -0
- package/vendor/translators-official/eMedicine.js +123 -0
- package/vendor/translators-official/ePrint IACR.js +608 -0
- package/vendor/translators-official/ebrary.js +140 -0
- package/vendor/translators-official/etatar.ru.js +104 -0
- package/vendor/translators-official/feb-web.ru.js +167 -0
- package/vendor/translators-official/fishpond.co.nz.js +224 -0
- package/vendor/translators-official/fr-online.de.js +209 -0
- package/vendor/translators-official/govinfo.js +189 -0
- package/vendor/translators-official/informIT database.js +248 -0
- package/vendor/translators-official/io-port.js +68 -0
- package/vendor/translators-official/jurion.js +377 -0
- package/vendor/translators-official/mEDRA.js +597 -0
- package/vendor/translators-official/magazines.russ.ru.js +120 -0
- package/vendor/translators-official/medes.js +284 -0
- package/vendor/translators-official/newshub.co.nz.js +206 -0
- package/vendor/translators-official/newspapers.com.js +335 -0
- package/vendor/translators-official/openJur.js +161 -0
- package/vendor/translators-official/reddit.js +275 -0
- package/vendor/translators-official/sbn.it.js +186 -0
- package/vendor/translators-official/scinapse.js +273 -0
- package/vendor/translators-official/semantics Visual Library.js +643 -0
- package/vendor/translators-official/taz.de.js +200 -0
- package/vendor/translators-official/unAPI.js +481 -0
- package/vendor/translators-official/wiso.js +314 -0
- package/vendor/translators-official/zbMATH.js +278 -0
- package/vendor/translators-official/zotero.org.js +311 -0
- package/vendor/translators_CN/Angle.js +468 -0
- package/vendor/translators_CN/Baidu Baike.js +152 -0
- package/vendor/translators_CN/Baidu Scholar.js +639 -0
- package/vendor/translators_CN/Belt and Road Database.js +496 -0
- package/vendor/translators_CN/BiliBili.js +776 -0
- package/vendor/translators_CN/CCPINFO.js +416 -0
- package/vendor/translators_CN/CHINESE JOURNAL OF LAW.js +169 -0
- package/vendor/translators_CN/CNBKSY.js +385 -0
- package/vendor/translators_CN/CNKI CHKD.js +692 -0
- package/vendor/translators_CN/CNKI Gongjushu.js +271 -0
- package/vendor/translators_CN/CNKI Industry.js +726 -0
- package/vendor/translators_CN/CNKI Law.js +842 -0
- package/vendor/translators_CN/CNKI RefWorks.js +826 -0
- package/vendor/translators_CN/CNKI Refer.js +811 -0
- package/vendor/translators_CN/CNKI Scholar.js +656 -0
- package/vendor/translators_CN/CNKI TIKS.js +1028 -0
- package/vendor/translators_CN/CNKI e-Books.js +309 -0
- package/vendor/translators_CN/CNKI thinker.js +274 -0
- package/vendor/translators_CN/CNKI.js +2381 -0
- package/vendor/translators_CN/CNSDA.js +382 -0
- package/vendor/translators_CN/CQVIP Knowledge.js +969 -0
- package/vendor/translators_CN/CQVIP Qikan.js +418 -0
- package/vendor/translators_CN/CQVIP.js +686 -0
- package/vendor/translators_CN/CSDN.js +153 -0
- package/vendor/translators_CN/China Judgements Online.js +282 -0
- package/vendor/translators_CN/China Social Science Library.js +533 -0
- package/vendor/translators_CN/ChinaXiv.js +375 -0
- package/vendor/translators_CN/Cubox.js +246 -0
- package/vendor/translators_CN/Dangdang.js +176 -0
- package/vendor/translators_CN/Douban.js +984 -0
- package/vendor/translators_CN/Duxiu.js +746 -0
- package/vendor/translators_CN/E-Tiller.js +555 -0
- package/vendor/translators_CN/Encyclopedia of China 3rd.js +177 -0
- package/vendor/translators_CN/Founder.js +483 -0
- package/vendor/translators_CN/GFSOSO.js +694 -0
- package/vendor/translators_CN/Jd.js +235 -0
- package/vendor/translators_CN/Jikan Full Text Database.js +188 -0
- package/vendor/translators_CN/KouShare.js +139 -0
- package/vendor/translators_CN/LICENSE +661 -0
- package/vendor/translators_CN/Lawbank.js +818 -0
- package/vendor/translators_CN/MagTech.js +473 -0
- package/vendor/translators_CN/Modern History.js +788 -0
- package/vendor/translators_CN/NDLTD.js +404 -0
- package/vendor/translators_CN/NTU Digital Library of Buddhist Studies.js +957 -0
- package/vendor/translators_CN/National Public Service Platform for Standards Information - China.js +348 -0
- package/vendor/translators_CN/National Science and Technology Library - China.js +646 -0
- package/vendor/translators_CN/National Science and Technology Report Service - China.js +271 -0
- package/vendor/translators_CN/National Standards Open System - China.js +296 -0
- package/vendor/translators_CN/Ncpssd.js +555 -0
- package/vendor/translators_CN/PKULaw.js +1123 -0
- package/vendor/translators_CN/PatentStar.js +386 -0
- package/vendor/translators_CN/People's Daily Database.js +186 -0
- package/vendor/translators_CN/People's Daily Epaper.js +279 -0
- package/vendor/translators_CN/People's Daily Online.js +292 -0
- package/vendor/translators_CN/Pishu Database.js +383 -0
- package/vendor/translators_CN/ProQuestCN Thesis.js +329 -0
- package/vendor/translators_CN/Pss-System.js +199 -0
- package/vendor/translators_CN/PubScholar.js +588 -0
- package/vendor/translators_CN/Publications Data Center - China.js +1119 -0
- package/vendor/translators_CN/QStheory.js +251 -0
- package/vendor/translators_CN/RDFYBK.js +396 -0
- package/vendor/translators_CN/README.md +42 -0
- package/vendor/translators_CN/RHHZ.js +383 -0
- package/vendor/translators_CN/Rural Studies Database.js +402 -0
- package/vendor/translators_CN/SKCTK.js +177 -0
- package/vendor/translators_CN/Samson.js +768 -0
- package/vendor/translators_CN/SciEngine.js +450 -0
- package/vendor/translators_CN/Science Reading.js +338 -0
- package/vendor/translators_CN/Sina Weibo.js +254 -0
- package/vendor/translators_CN/Soopat.js +427 -0
- package/vendor/translators_CN/Spc.org.cn.js +275 -0
- package/vendor/translators_CN/Standard Full-text Database - NLC.js +230 -0
- package/vendor/translators_CN/SuperLib.js +757 -0
- package/vendor/translators_CN/TOAJ.js +422 -0
- package/vendor/translators_CN/Wanfang Data.js +3433 -0
- package/vendor/translators_CN/Wanfang Med.js +671 -0
- package/vendor/translators_CN/Web of Science Tagged.js +1341 -0
- package/vendor/translators_CN/Weixin.js +130 -0
- package/vendor/translators_CN/Wenjin.js +492 -0
- package/vendor/translators_CN/Xinhuanet.js +283 -0
- package/vendor/translators_CN/Yiigle.js +394 -0
- package/vendor/translators_CN/Zhihu.js +530 -0
- package/vendor/translators_CN/Zhihuiya.js +246 -0
- package/vendor/translators_CN/Zhizhen.js +869 -0
- package/vendor/translators_CN/chaoxingqikan.js +360 -0
- package/vendor/translators_CN/doc.taixueshu.js +355 -0
- package/vendor/translators_CN/dpaper.js +183 -0
- package/vendor/translators_CN/epaper.gmw.cn.js +286 -0
- package/vendor/translators_CN/flk.npc.gov.cn.js +344 -0
- package/vendor/translators_CN/gov.cn Policy.js +559 -0
- package/vendor/translators_CN/incoPat.js +195 -0
- package/vendor/translators_CN/pm.tsgyun.js +177 -0
- package/vendor/translators_CN/sanmin.com.tw.js +327 -0
- package/vendor/translators_CN/sharing.com.tw.js +333 -0
- package/vendor/translators_CN/stats.gov.cn.js +170 -0
- package/vendor/translators_CN/xiaoyuzhoufm.js +162 -0
- package/vendor/translators_CN/zhangqiaokeyan.js +1130 -0
- package/vendor/zotero/README.md +120 -0
- package/vendor/zotero/config/custom-environment-variables.json +3 -0
- package/vendor/zotero/config/default.json5 +16 -0
- package/vendor/zotero/config/production.json5 +7 -0
- package/vendor/zotero/config/test.json5 +4 -0
- package/vendor/zotero/modules/translate/README.md +43 -0
- package/vendor/zotero/modules/translate/src/debug.js +186 -0
- package/vendor/zotero/modules/translate/src/http.js +158 -0
- package/vendor/zotero/modules/translate/src/promise.js +73 -0
- package/vendor/zotero/modules/translate/src/proxy.js +354 -0
- package/vendor/zotero/modules/translate/src/rdf/identity.js +503 -0
- package/vendor/zotero/modules/translate/src/rdf/init.js +56 -0
- package/vendor/zotero/modules/translate/src/rdf/n3parser.js +1392 -0
- package/vendor/zotero/modules/translate/src/rdf/rdfparser.js +578 -0
- package/vendor/zotero/modules/translate/src/rdf/serialize.js +886 -0
- package/vendor/zotero/modules/translate/src/rdf/term.js +524 -0
- package/vendor/zotero/modules/translate/src/rdf/uri.js +147 -0
- package/vendor/zotero/modules/translate/src/repo.js +80 -0
- package/vendor/zotero/modules/translate/src/tlds.js +274 -0
- package/vendor/zotero/modules/translate/src/translation/sandboxManager.js +112 -0
- package/vendor/zotero/modules/translate/src/translation/translate.js +3283 -0
- package/vendor/zotero/modules/translate/src/translation/translate_item.js +120 -0
- package/vendor/zotero/modules/translate/src/translator.js +186 -0
- package/vendor/zotero/modules/translate/src/translators.js +174 -0
- package/vendor/zotero/modules/translate/src/utilities_translate.js +487 -0
- package/vendor/zotero/modules/translate/src/zotero.js +94 -0
- package/vendor/zotero/modules/translators/A Contra Corriente.js +206 -0
- package/vendor/zotero/modules/translators/ABC News Australia.js +224 -0
- package/vendor/zotero/modules/translators/ACLS Humanities EBook.js +165 -0
- package/vendor/zotero/modules/translators/ACLWeb.js +600 -0
- package/vendor/zotero/modules/translators/ACM Digital Library.js +710 -0
- package/vendor/zotero/modules/translators/ACS Publications.js +633 -0
- package/vendor/zotero/modules/translators/ADS Bibcode.js +664 -0
- package/vendor/zotero/modules/translators/AEA Web.js +450 -0
- package/vendor/zotero/modules/translators/AGRIS.js +311 -0
- package/vendor/zotero/modules/translators/AIP.js +295 -0
- package/vendor/zotero/modules/translators/AMS Journals.js +136 -0
- package/vendor/zotero/modules/translators/AMS MathSciNet (Legacy).js +313 -0
- package/vendor/zotero/modules/translators/AMS MathSciNet.js +288 -0
- package/vendor/zotero/modules/translators/APA PsycNET.js +915 -0
- package/vendor/zotero/modules/translators/APN.ru.js +132 -0
- package/vendor/zotero/modules/translators/APS-Physics.js +204 -0
- package/vendor/zotero/modules/translators/APS.js +542 -0
- package/vendor/zotero/modules/translators/ARTFL Encyclopedie.js +283 -0
- package/vendor/zotero/modules/translators/ARTnews.js +155 -0
- package/vendor/zotero/modules/translators/ARTstor.js +619 -0
- package/vendor/zotero/modules/translators/ASCE.js +199 -0
- package/vendor/zotero/modules/translators/ASCO Meeting Library.js +153 -0
- package/vendor/zotero/modules/translators/ASTIS.js +337 -0
- package/vendor/zotero/modules/translators/ATS International Journal.js +290 -0
- package/vendor/zotero/modules/translators/Access Engineering.js +384 -0
- package/vendor/zotero/modules/translators/Access Medicine.js +343 -0
- package/vendor/zotero/modules/translators/Access Science.js +391 -0
- package/vendor/zotero/modules/translators/Adam Matthew Digital.js +405 -0
- package/vendor/zotero/modules/translators/Agencia del ISBN.js +77 -0
- package/vendor/zotero/modules/translators/Ahval News.js +309 -0
- package/vendor/zotero/modules/translators/Air University Journals.js +236 -0
- package/vendor/zotero/modules/translators/Airiti.js +423 -0
- package/vendor/zotero/modules/translators/Alexander Street Press.js +198 -0
- package/vendor/zotero/modules/translators/AllAfrica.js +291 -0
- package/vendor/zotero/modules/translators/Alsharekh.js +242 -0
- package/vendor/zotero/modules/translators/AlterNet.js +134 -0
- package/vendor/zotero/modules/translators/Aluka.js +261 -0
- package/vendor/zotero/modules/translators/Amazon.js +1043 -0
- package/vendor/zotero/modules/translators/American Archive of Public Broadcasting.js +592 -0
- package/vendor/zotero/modules/translators/American Institute of Aeronautics and Astronautics.js +210 -0
- package/vendor/zotero/modules/translators/American Prospect.js +114 -0
- package/vendor/zotero/modules/translators/Ancestry.com US Federal Census.js +164 -0
- package/vendor/zotero/modules/translators/Annual Reviews.js +329 -0
- package/vendor/zotero/modules/translators/Antikvarium.hu.js +280 -0
- package/vendor/zotero/modules/translators/AquaDocs.js +390 -0
- package/vendor/zotero/modules/translators/Archeion.js +249 -0
- package/vendor/zotero/modules/translators/Archiv fuer Sozialgeschichte.js +157 -0
- package/vendor/zotero/modules/translators/Archive Ouverte en Sciences de l'Information et de la Communication (AOSIC).js +179 -0
- package/vendor/zotero/modules/translators/Archives Canada.js +142 -0
- package/vendor/zotero/modules/translators/Ariana News.js +203 -0
- package/vendor/zotero/modules/translators/Art Institute of Chicago.js +279 -0
- package/vendor/zotero/modules/translators/Artefacts Canada.js +192 -0
- package/vendor/zotero/modules/translators/Artforum.js +438 -0
- package/vendor/zotero/modules/translators/Atlanta Journal Constitution.js +155 -0
- package/vendor/zotero/modules/translators/Atlanta Journal-Constitution.js +311 -0
- package/vendor/zotero/modules/translators/Atypon Journals.js +1204 -0
- package/vendor/zotero/modules/translators/AustLII and NZLII.js +604 -0
- package/vendor/zotero/modules/translators/Australian Dictionary of Biography.js +196 -0
- package/vendor/zotero/modules/translators/BAILII.js +176 -0
- package/vendor/zotero/modules/translators/BBC Genome.js +254 -0
- package/vendor/zotero/modules/translators/BBC.js +430 -0
- package/vendor/zotero/modules/translators/BIBSYS.js +112 -0
- package/vendor/zotero/modules/translators/BOCC.js +217 -0
- package/vendor/zotero/modules/translators/BOE.js +229 -0
- package/vendor/zotero/modules/translators/BOFiP-Impots.js +132 -0
- package/vendor/zotero/modules/translators/Baidu Scholar.js +276 -0
- package/vendor/zotero/modules/translators/Bangkok Post.js +216 -0
- package/vendor/zotero/modules/translators/Baruch Foundation.js +175 -0
- package/vendor/zotero/modules/translators/Beobachter.js +175 -0
- package/vendor/zotero/modules/translators/Bezneng Gajit.js +92 -0
- package/vendor/zotero/modules/translators/BibLaTeX.js +888 -0
- package/vendor/zotero/modules/translators/BibTeX.js +4236 -0
- package/vendor/zotero/modules/translators/Biblio.com.js +216 -0
- package/vendor/zotero/modules/translators/Bibliontology RDF.js +1166 -0
- package/vendor/zotero/modules/translators/Biblioteca Nacional de Maestros.js +213 -0
- package/vendor/zotero/modules/translators/Bibliotheque et Archives Nationale du Quebec (Pistard).js +147 -0
- package/vendor/zotero/modules/translators/Bibliotheque et Archives Nationales du Quebec.js +266 -0
- package/vendor/zotero/modules/translators/Bibliotheque nationale de France.js +872 -0
- package/vendor/zotero/modules/translators/BioMed Central.js +585 -0
- package/vendor/zotero/modules/translators/BioOne.js +233 -0
- package/vendor/zotero/modules/translators/Bioconductor.js +343 -0
- package/vendor/zotero/modules/translators/Blaetter.js +192 -0
- package/vendor/zotero/modules/translators/Blogger.js +244 -0
- package/vendor/zotero/modules/translators/Bloomberg.js +205 -0
- package/vendor/zotero/modules/translators/Bloomsbury Food Library.js +296 -0
- package/vendor/zotero/modules/translators/Bluesky.js +195 -0
- package/vendor/zotero/modules/translators/BnF ISBN.js +129 -0
- package/vendor/zotero/modules/translators/Bookmarks.js +282 -0
- package/vendor/zotero/modules/translators/Bookshop.org.js +223 -0
- package/vendor/zotero/modules/translators/Boston Review.js +332 -0
- package/vendor/zotero/modules/translators/Bosworth Toller's Anglo-Saxon Dictionary Online.js +496 -0
- package/vendor/zotero/modules/translators/Bracero History Archive.js +200 -0
- package/vendor/zotero/modules/translators/Brill Journals.js +168 -0
- package/vendor/zotero/modules/translators/Brill.js +434 -0
- package/vendor/zotero/modules/translators/Brukerhandboken.js +153 -0
- package/vendor/zotero/modules/translators/Bryn Mawr Classical Review.js +303 -0
- package/vendor/zotero/modules/translators/Bundesgesetzblatt.js +231 -0
- package/vendor/zotero/modules/translators/Business Standard.js +151 -0
- package/vendor/zotero/modules/translators/CABI - CAB Abstracts.js +317 -0
- package/vendor/zotero/modules/translators/CAOD.js +260 -0
- package/vendor/zotero/modules/translators/CBC.js +439 -0
- package/vendor/zotero/modules/translators/CCfr (BnF).js +162 -0
- package/vendor/zotero/modules/translators/CERN Document Server.js +277 -0
- package/vendor/zotero/modules/translators/CEUR Workshop Proceedings.js +145 -0
- package/vendor/zotero/modules/translators/CFF References.js +170 -0
- package/vendor/zotero/modules/translators/CFF.js +113 -0
- package/vendor/zotero/modules/translators/CIA World Factbook.js +128 -0
- package/vendor/zotero/modules/translators/CLACSO.js +226 -0
- package/vendor/zotero/modules/translators/CLASE.js +135 -0
- package/vendor/zotero/modules/translators/CNKI.js +731 -0
- package/vendor/zotero/modules/translators/COBISS.js +1945 -0
- package/vendor/zotero/modules/translators/COinS.js +336 -0
- package/vendor/zotero/modules/translators/CQ Press.js +418 -0
- package/vendor/zotero/modules/translators/CROSBI.js +227 -0
- package/vendor/zotero/modules/translators/CSIRO Publishing.js +139 -0
- package/vendor/zotero/modules/translators/CSL JSON.js +203 -0
- package/vendor/zotero/modules/translators/CSV.js +294 -0
- package/vendor/zotero/modules/translators/Cairn.info.js +368 -0
- package/vendor/zotero/modules/translators/CalMatters.js +228 -0
- package/vendor/zotero/modules/translators/Calisphere.js +355 -0
- package/vendor/zotero/modules/translators/Camara Brasileira do Livro ISBN.js +842 -0
- package/vendor/zotero/modules/translators/Cambridge Core.js +580 -0
- package/vendor/zotero/modules/translators/Cambridge Engage Preprints.js +276 -0
- package/vendor/zotero/modules/translators/CanLII.js +284 -0
- package/vendor/zotero/modules/translators/Canada.com.js +171 -0
- package/vendor/zotero/modules/translators/Canadian Letters and Images.js +148 -0
- package/vendor/zotero/modules/translators/Canadiana.ca.js +196 -0
- package/vendor/zotero/modules/translators/Cascadilla Proceedings Project.js +390 -0
- package/vendor/zotero/modules/translators/Cell Press.js +516 -0
- package/vendor/zotero/modules/translators/Central and Eastern European Online Library Journals.js +313 -0
- package/vendor/zotero/modules/translators/Champlain Society - Collection.js +220 -0
- package/vendor/zotero/modules/translators/Chicago Journal of Theoretical Computer Science.js +203 -0
- package/vendor/zotero/modules/translators/Christian Science Monitor.js +148 -0
- package/vendor/zotero/modules/translators/Chronicling America.js +131 -0
- package/vendor/zotero/modules/translators/CiNii Research.js +168 -0
- package/vendor/zotero/modules/translators/Citavi 5 XML.js +516 -0
- package/vendor/zotero/modules/translators/CiteSeer.js +196 -0
- package/vendor/zotero/modules/translators/CiteULike.js +170 -0
- package/vendor/zotero/modules/translators/Citizen Lab.js +347 -0
- package/vendor/zotero/modules/translators/Civilization.ca.js +146 -0
- package/vendor/zotero/modules/translators/Climate Change and Human Health Literature Portal.js +283 -0
- package/vendor/zotero/modules/translators/Clinical Key.js +367 -0
- package/vendor/zotero/modules/translators/Code4Lib Journal.js +143 -0
- package/vendor/zotero/modules/translators/Colorado State Legislature.js +215 -0
- package/vendor/zotero/modules/translators/Columbia University Press.js +238 -0
- package/vendor/zotero/modules/translators/Common-Place.js +218 -0
- package/vendor/zotero/modules/translators/Computer History Museum Archive.js +1319 -0
- package/vendor/zotero/modules/translators/Copernicus.js +461 -0
- package/vendor/zotero/modules/translators/Cornell LII.js +252 -0
- package/vendor/zotero/modules/translators/Cornell University Press.js +235 -0
- package/vendor/zotero/modules/translators/CourtListener.js +265 -0
- package/vendor/zotero/modules/translators/CrossRef.js +486 -0
- package/vendor/zotero/modules/translators/Crossref REST.js +1757 -0
- package/vendor/zotero/modules/translators/Crossref Unixref XML.js +965 -0
- package/vendor/zotero/modules/translators/Current Affairs.js +160 -0
- package/vendor/zotero/modules/translators/Cyberpresse.js +131 -0
- package/vendor/zotero/modules/translators/DABI.js +476 -0
- package/vendor/zotero/modules/translators/DAI-Zenon.js +392 -0
- package/vendor/zotero/modules/translators/DART-Europe.js +176 -0
- package/vendor/zotero/modules/translators/DBLP Computer Science Bibliography.js +462 -0
- package/vendor/zotero/modules/translators/DBpia.js +233 -0
- package/vendor/zotero/modules/translators/DEPATISnet.js +373 -0
- package/vendor/zotero/modules/translators/DOAJ.js +243 -0
- package/vendor/zotero/modules/translators/DOI Content Negotiation.js +352 -0
- package/vendor/zotero/modules/translators/DOI.js +322 -0
- package/vendor/zotero/modules/translators/DPLA.js +425 -0
- package/vendor/zotero/modules/translators/DSpace Intermediate Metadata.js +208 -0
- package/vendor/zotero/modules/translators/DTU Orbit.js +155 -0
- package/vendor/zotero/modules/translators/Dagens Nyheter.js +369 -0
- package/vendor/zotero/modules/translators/Dagstuhl Research Online Publication Server.js +276 -0
- package/vendor/zotero/modules/translators/Dar Almandumah.js +253 -0
- package/vendor/zotero/modules/translators/Data.gov.js +225 -0
- package/vendor/zotero/modules/translators/DataCite.js +125 -0
- package/vendor/zotero/modules/translators/Databrary.js +184 -0
- package/vendor/zotero/modules/translators/Datacite JSON.js +1182 -0
- package/vendor/zotero/modules/translators/Dataverse.js +418 -0
- package/vendor/zotero/modules/translators/Daum News.js +139 -0
- package/vendor/zotero/modules/translators/De Gruyter Brill.js +674 -0
- package/vendor/zotero/modules/translators/DeGruyter.js +457 -0
- package/vendor/zotero/modules/translators/Defense Technical Information Center.js +146 -0
- package/vendor/zotero/modules/translators/Delpher.js +413 -0
- package/vendor/zotero/modules/translators/Demographic Research.js +164 -0
- package/vendor/zotero/modules/translators/Denik CZ.js +273 -0
- package/vendor/zotero/modules/translators/Der Freitag.js +236 -0
- package/vendor/zotero/modules/translators/Der Spiegel.js +479 -0
- package/vendor/zotero/modules/translators/Desiring God.js +216 -0
- package/vendor/zotero/modules/translators/Deutsche Fotothek.js +364 -0
- package/vendor/zotero/modules/translators/Deutsche Nationalbibliothek.js +594 -0
- package/vendor/zotero/modules/translators/Dialnet.js +258 -0
- package/vendor/zotero/modules/translators/Die Zeit.js +378 -0
- package/vendor/zotero/modules/translators/DigiZeitschriften.js +269 -0
- package/vendor/zotero/modules/translators/Digital Humanities Quarterly.js +207 -0
- package/vendor/zotero/modules/translators/Digital Medievalist.js +149 -0
- package/vendor/zotero/modules/translators/Digital Spy.js +215 -0
- package/vendor/zotero/modules/translators/Dimensions.js +233 -0
- package/vendor/zotero/modules/translators/Douban.js +316 -0
- package/vendor/zotero/modules/translators/Dreier Neuerscheinungsdienst.js +209 -0
- package/vendor/zotero/modules/translators/DrugBank.ca.js +209 -0
- package/vendor/zotero/modules/translators/Dryad Digital Repository.js +323 -0
- package/vendor/zotero/modules/translators/Duke University Press Books.js +250 -0
- package/vendor/zotero/modules/translators/E-periodica Switzerland.js +347 -0
- package/vendor/zotero/modules/translators/EBSCO Discovery Layer.js +147 -0
- package/vendor/zotero/modules/translators/EBSCOhost.js +592 -0
- package/vendor/zotero/modules/translators/EIDR.js +184 -0
- package/vendor/zotero/modules/translators/EPA National Library Catalog.js +245 -0
- package/vendor/zotero/modules/translators/ERIC.js +986 -0
- package/vendor/zotero/modules/translators/ESpacenet.js +465 -0
- package/vendor/zotero/modules/translators/EUR-Lex.js +423 -0
- package/vendor/zotero/modules/translators/Eastview.js +336 -0
- package/vendor/zotero/modules/translators/Edinburgh University Press Journals.js +178 -0
- package/vendor/zotero/modules/translators/Education Week.js +197 -0
- package/vendor/zotero/modules/translators/El Comercio (Peru).js +347 -0
- package/vendor/zotero/modules/translators/El Pais.js +262 -0
- package/vendor/zotero/modules/translators/Electronic Colloquium on Computational Complexity.js +230 -0
- package/vendor/zotero/modules/translators/Elicit.js +120 -0
- package/vendor/zotero/modules/translators/Elsevier Health Journals.js +531 -0
- package/vendor/zotero/modules/translators/Elsevier Pure.js +420 -0
- package/vendor/zotero/modules/translators/Embedded Metadata.js +1951 -0
- package/vendor/zotero/modules/translators/Emerald Insight.js +626 -0
- package/vendor/zotero/modules/translators/Encyclopedia of Chicago.js +162 -0
- package/vendor/zotero/modules/translators/Encyclopedia of Korean Culture.js +221 -0
- package/vendor/zotero/modules/translators/Endnote XML.js +1407 -0
- package/vendor/zotero/modules/translators/Engineering Village.js +139 -0
- package/vendor/zotero/modules/translators/Envidat.js +331 -0
- package/vendor/zotero/modules/translators/Epicurious.js +144 -0
- package/vendor/zotero/modules/translators/Erudit.js +272 -0
- package/vendor/zotero/modules/translators/Euclid.js +220 -0
- package/vendor/zotero/modules/translators/EurasiaNet.js +109 -0
- package/vendor/zotero/modules/translators/Eurogamer.js +112 -0
- package/vendor/zotero/modules/translators/EurogamerUSgamer.js +380 -0
- package/vendor/zotero/modules/translators/Europe PMC.js +448 -0
- package/vendor/zotero/modules/translators/Evernote.js +104 -0
- package/vendor/zotero/modules/translators/F1000 Research.js +655 -0
- package/vendor/zotero/modules/translators/FAO Publications.js +1139 -0
- package/vendor/zotero/modules/translators/FAZ.NET.js +231 -0
- package/vendor/zotero/modules/translators/Fachportal Padagogik.js +839 -0
- package/vendor/zotero/modules/translators/Factiva.js +302 -0
- package/vendor/zotero/modules/translators/Failed Architecture.js +114 -0
- package/vendor/zotero/modules/translators/Fairfax Australia.js +200 -0
- package/vendor/zotero/modules/translators/Fatcat.js +425 -0
- package/vendor/zotero/modules/translators/Figshare.js +191 -0
- package/vendor/zotero/modules/translators/Financial Times.js +187 -0
- package/vendor/zotero/modules/translators/Finna.js +357 -0
- package/vendor/zotero/modules/translators/Flickr.js +318 -0
- package/vendor/zotero/modules/translators/Foreign Affairs.js +485 -0
- package/vendor/zotero/modules/translators/Foreign Policy.js +146 -0
- package/vendor/zotero/modules/translators/FreeCite.js +95 -0
- package/vendor/zotero/modules/translators/FreePatentsOnline.js +265 -0
- package/vendor/zotero/modules/translators/Frieze.js +243 -0
- package/vendor/zotero/modules/translators/Frontiers.js +667 -0
- package/vendor/zotero/modules/translators/GMS German Medical Science.js +319 -0
- package/vendor/zotero/modules/translators/GPO Access e-CFR.js +134 -0
- package/vendor/zotero/modules/translators/Gale Databases.js +324 -0
- package/vendor/zotero/modules/translators/GaleGDC.js +189 -0
- package/vendor/zotero/modules/translators/Galegroup.js +327 -0
- package/vendor/zotero/modules/translators/Gallica.js +194 -0
- package/vendor/zotero/modules/translators/Game Studies.js +155 -0
- package/vendor/zotero/modules/translators/GameSpot.js +199 -0
- package/vendor/zotero/modules/translators/GameStar GamePro.js +198 -0
- package/vendor/zotero/modules/translators/Gasyrlar Awazy.js +156 -0
- package/vendor/zotero/modules/translators/Gemeinsamer Bibliotheksverbund ISBN.js +23 -0
- package/vendor/zotero/modules/translators/Gene Ontology.js +128 -0
- package/vendor/zotero/modules/translators/Github.js +268 -0
- package/vendor/zotero/modules/translators/Globes.js +243 -0
- package/vendor/zotero/modules/translators/Gmail.js +64 -0
- package/vendor/zotero/modules/translators/Goodreads.js +219 -0
- package/vendor/zotero/modules/translators/Google Books.js +552 -0
- package/vendor/zotero/modules/translators/Google Patents.js +959 -0
- package/vendor/zotero/modules/translators/Google Play.js +186 -0
- package/vendor/zotero/modules/translators/Google Presentation.js +104 -0
- package/vendor/zotero/modules/translators/Google Research.js +221 -0
- package/vendor/zotero/modules/translators/Google Scholar.js +1361 -0
- package/vendor/zotero/modules/translators/Gulag Many Days, Many Lives.js +179 -0
- package/vendor/zotero/modules/translators/HAL Archives Ouvertes.js +429 -0
- package/vendor/zotero/modules/translators/HCSP.js +312 -0
- package/vendor/zotero/modules/translators/HUDOC.js +650 -0
- package/vendor/zotero/modules/translators/Haaretz.js +562 -0
- package/vendor/zotero/modules/translators/Habr.js +232 -0
- package/vendor/zotero/modules/translators/Handelszeitung.js +273 -0
- package/vendor/zotero/modules/translators/Hanrei Watch.js +123 -0
- package/vendor/zotero/modules/translators/Harper's Magazine.js +365 -0
- package/vendor/zotero/modules/translators/Harpers.js +209 -0
- package/vendor/zotero/modules/translators/Harvard Business Review.js +326 -0
- package/vendor/zotero/modules/translators/Harvard Caselaw Access Project.js +244 -0
- package/vendor/zotero/modules/translators/Harvard University Press Books.js +286 -0
- package/vendor/zotero/modules/translators/Hathi Trust.js +164 -0
- package/vendor/zotero/modules/translators/HathiTrust.js +311 -0
- package/vendor/zotero/modules/translators/HeinOnline.js +266 -0
- package/vendor/zotero/modules/translators/Heise.js +200 -0
- package/vendor/zotero/modules/translators/Herder.js +236 -0
- package/vendor/zotero/modules/translators/HighBeam.js +198 -0
- package/vendor/zotero/modules/translators/HighWire 2.0.js +1355 -0
- package/vendor/zotero/modules/translators/HighWire.js +209 -0
- package/vendor/zotero/modules/translators/Hindawi Publishers.js +177 -0
- package/vendor/zotero/modules/translators/Hispanic-American Periodical Index.js +236 -0
- package/vendor/zotero/modules/translators/Homeland Security Digital Library.js +426 -0
- package/vendor/zotero/modules/translators/Hoovers.js +89 -0
- package/vendor/zotero/modules/translators/Huff Post.js +223 -0
- package/vendor/zotero/modules/translators/Human Rights Watch.js +450 -0
- package/vendor/zotero/modules/translators/IBISWorld.js +171 -0
- package/vendor/zotero/modules/translators/IDEA ALM.js +536 -0
- package/vendor/zotero/modules/translators/IEEE Computer Society.js +429 -0
- package/vendor/zotero/modules/translators/IEEE Xplore.js +1000 -0
- package/vendor/zotero/modules/translators/IETF.js +451 -0
- package/vendor/zotero/modules/translators/IGN.js +136 -0
- package/vendor/zotero/modules/translators/IMDb.js +566 -0
- package/vendor/zotero/modules/translators/INSPIRE.js +247 -0
- package/vendor/zotero/modules/translators/IPCC.js +757 -0
- package/vendor/zotero/modules/translators/ISTC.js +181 -0
- package/vendor/zotero/modules/translators/Idref.js +179 -0
- package/vendor/zotero/modules/translators/In These Times.js +196 -0
- package/vendor/zotero/modules/translators/InfoTrac.js +279 -0
- package/vendor/zotero/modules/translators/Informationssystem Medienpaedagogik.js +305 -0
- package/vendor/zotero/modules/translators/IngentaConnect.js +312 -0
- package/vendor/zotero/modules/translators/Inside Higher Ed.js +167 -0
- package/vendor/zotero/modules/translators/Insignia OPAC.js +114 -0
- package/vendor/zotero/modules/translators/Institute of Contemporary Art.js +180 -0
- package/vendor/zotero/modules/translators/Institute of Physics.js +340 -0
- package/vendor/zotero/modules/translators/Integrum.js +173 -0
- package/vendor/zotero/modules/translators/Intellixir.js +264 -0
- package/vendor/zotero/modules/translators/Inter-Research Science Center.js +185 -0
- package/vendor/zotero/modules/translators/International Nuclear Information System.js +285 -0
- package/vendor/zotero/modules/translators/Internet Archive Scholar.js +106 -0
- package/vendor/zotero/modules/translators/Internet Archive Wayback Machine.js +152 -0
- package/vendor/zotero/modules/translators/Internet Archive.js +552 -0
- package/vendor/zotero/modules/translators/InvenioRDM.js +1260 -0
- package/vendor/zotero/modules/translators/Isidore.js +235 -0
- package/vendor/zotero/modules/translators/J-Stage.js +272 -0
- package/vendor/zotero/modules/translators/JETS.js +122 -0
- package/vendor/zotero/modules/translators/JISC Historical Texts.js +273 -0
- package/vendor/zotero/modules/translators/JRC Publications Repository.js +569 -0
- package/vendor/zotero/modules/translators/JSTOR.js +821 -0
- package/vendor/zotero/modules/translators/Jahrbuch.js +213 -0
- package/vendor/zotero/modules/translators/Japan Times Online.js +138 -0
- package/vendor/zotero/modules/translators/Journal of Electronic Publishing.js +147 -0
- package/vendor/zotero/modules/translators/Journal of Extension.js +288 -0
- package/vendor/zotero/modules/translators/Journal of Machine Learning Research.js +441 -0
- package/vendor/zotero/modules/translators/Journal of Religion and Society.js +174 -0
- package/vendor/zotero/modules/translators/JurPC.js +274 -0
- package/vendor/zotero/modules/translators/Juricaf.js +141 -0
- package/vendor/zotero/modules/translators/Juris.js +728 -0
- package/vendor/zotero/modules/translators/K10plus ISBN.js +386 -0
- package/vendor/zotero/modules/translators/KStudy.js +632 -0
- package/vendor/zotero/modules/translators/Kanopy.js +358 -0
- package/vendor/zotero/modules/translators/Khaama Press.js +249 -0
- package/vendor/zotero/modules/translators/KitapYurdu.com.js +376 -0
- package/vendor/zotero/modules/translators/Kommersant.js +174 -0
- package/vendor/zotero/modules/translators/Korean National Library.js +621 -0
- package/vendor/zotero/modules/translators/L'Annee Philologique.js +267 -0
- package/vendor/zotero/modules/translators/LA Times.js +239 -0
- package/vendor/zotero/modules/translators/LIBRIS ISBN.js +103 -0
- package/vendor/zotero/modules/translators/LIVIVO.js +260 -0
- package/vendor/zotero/modules/translators/LWN.net.js +350 -0
- package/vendor/zotero/modules/translators/La Croix.js +237 -0
- package/vendor/zotero/modules/translators/La Nacion (Argentina).js +231 -0
- package/vendor/zotero/modules/translators/La Presse.js +218 -0
- package/vendor/zotero/modules/translators/La Republica (Peru).js +174 -0
- package/vendor/zotero/modules/translators/Lagen.nu.js +214 -0
- package/vendor/zotero/modules/translators/Landesbibliographie Baden-Wurttemberg.js +324 -0
- package/vendor/zotero/modules/translators/Lapham's Quarterly.js +1062 -0
- package/vendor/zotero/modules/translators/Le Devoir.js +167 -0
- package/vendor/zotero/modules/translators/Le Figaro.js +225 -0
- package/vendor/zotero/modules/translators/Le Maitron.js +484 -0
- package/vendor/zotero/modules/translators/Le Monde.js +258 -0
- package/vendor/zotero/modules/translators/Le monde diplomatique.js +200 -0
- package/vendor/zotero/modules/translators/Legifrance.js +641 -0
- package/vendor/zotero/modules/translators/Legislative Insight.js +406 -0
- package/vendor/zotero/modules/translators/Lexis+.js +264 -0
- package/vendor/zotero/modules/translators/LexisNexis.js +505 -0
- package/vendor/zotero/modules/translators/Libraries Tasmania.js +778 -0
- package/vendor/zotero/modules/translators/Library Catalog (Aleph).js +385 -0
- package/vendor/zotero/modules/translators/Library Catalog (Amicus).js +254 -0
- package/vendor/zotero/modules/translators/Library Catalog (Aquabrowser).js +253 -0
- package/vendor/zotero/modules/translators/Library Catalog (BiblioCommons).js +249 -0
- package/vendor/zotero/modules/translators/Library Catalog (Blacklight).js +341 -0
- package/vendor/zotero/modules/translators/Library Catalog (Capita Prism).js +162 -0
- package/vendor/zotero/modules/translators/Library Catalog (DRA).js +203 -0
- package/vendor/zotero/modules/translators/Library Catalog (Dynix).js +315 -0
- package/vendor/zotero/modules/translators/Library Catalog (EBSCO Locate).js +349 -0
- package/vendor/zotero/modules/translators/Library Catalog (Encore).js +211 -0
- package/vendor/zotero/modules/translators/Library Catalog (GEAC).js +104 -0
- package/vendor/zotero/modules/translators/Library Catalog (InnoPAC).js +305 -0
- package/vendor/zotero/modules/translators/Library Catalog (Koha).js +225 -0
- package/vendor/zotero/modules/translators/Library Catalog (Mango).js +285 -0
- package/vendor/zotero/modules/translators/Library Catalog (OPALS).js +200 -0
- package/vendor/zotero/modules/translators/Library Catalog (PICA).js +2120 -0
- package/vendor/zotero/modules/translators/Library Catalog (PICA2).js +331 -0
- package/vendor/zotero/modules/translators/Library Catalog (Pika).js +488 -0
- package/vendor/zotero/modules/translators/Library Catalog (Polaris).js +183 -0
- package/vendor/zotero/modules/translators/Library Catalog (Quolto).js +320 -0
- package/vendor/zotero/modules/translators/Library Catalog (RERO ILS).js +754 -0
- package/vendor/zotero/modules/translators/Library Catalog (SIRSI eLibrary).js +407 -0
- package/vendor/zotero/modules/translators/Library Catalog (SIRSI).js +452 -0
- package/vendor/zotero/modules/translators/Library Catalog (SLIMS).js +146 -0
- package/vendor/zotero/modules/translators/Library Catalog (TIND ILS).js +773 -0
- package/vendor/zotero/modules/translators/Library Catalog (TLCYouSeeMore).js +132 -0
- package/vendor/zotero/modules/translators/Library Catalog (TinREAD).js +277 -0
- package/vendor/zotero/modules/translators/Library Catalog (VTLS).js +125 -0
- package/vendor/zotero/modules/translators/Library Catalog (Visual Library 2021).js +765 -0
- package/vendor/zotero/modules/translators/Library Catalog (Voyager 7).js +199 -0
- package/vendor/zotero/modules/translators/Library Catalog (Voyager).js +212 -0
- package/vendor/zotero/modules/translators/Library Genesis.js +337 -0
- package/vendor/zotero/modules/translators/Library Hub Discover.js +359 -0
- package/vendor/zotero/modules/translators/Library of Congress Digital Collections.js +869 -0
- package/vendor/zotero/modules/translators/Library of Congress ISBN.js +86 -0
- package/vendor/zotero/modules/translators/LingBuzz.js +359 -0
- package/vendor/zotero/modules/translators/Lippincott Williams and Wilkins.js +341 -0
- package/vendor/zotero/modules/translators/Literary Hub.js +950 -0
- package/vendor/zotero/modules/translators/Litres.js +236 -0
- package/vendor/zotero/modules/translators/LiveJournal.js +219 -0
- package/vendor/zotero/modules/translators/London Review of Books.js +291 -0
- package/vendor/zotero/modules/translators/LookUs.js +260 -0
- package/vendor/zotero/modules/translators/Lulu.js +264 -0
- package/vendor/zotero/modules/translators/MAB2.js +373 -0
- package/vendor/zotero/modules/translators/MARC.js +1080 -0
- package/vendor/zotero/modules/translators/MARCXML.js +489 -0
- package/vendor/zotero/modules/translators/MCV.js +258 -0
- package/vendor/zotero/modules/translators/MDPI Journals.js +356 -0
- package/vendor/zotero/modules/translators/MEDLINEnbib.js +1561 -0
- package/vendor/zotero/modules/translators/METS.js +384 -0
- package/vendor/zotero/modules/translators/MIDAS Journals.js +343 -0
- package/vendor/zotero/modules/translators/MIT Press Books.js +637 -0
- package/vendor/zotero/modules/translators/MIT Press Journals.js +176 -0
- package/vendor/zotero/modules/translators/MODS.js +2545 -0
- package/vendor/zotero/modules/translators/MPG PuRe.js +541 -0
- package/vendor/zotero/modules/translators/Mailman.js +136 -0
- package/vendor/zotero/modules/translators/Mainichi Daily News.js +189 -0
- package/vendor/zotero/modules/translators/Mastodon.js +198 -0
- package/vendor/zotero/modules/translators/Matbugat.ru.js +110 -0
- package/vendor/zotero/modules/translators/Max Planck Institute for the History of Science Virtual Laboratory Library.js +136 -0
- package/vendor/zotero/modules/translators/Medium.js +208 -0
- package/vendor/zotero/modules/translators/MetaLib.js +126 -0
- package/vendor/zotero/modules/translators/Microbiology Society Journals.js +343 -0
- package/vendor/zotero/modules/translators/Microsoft Academic.js +424 -0
- package/vendor/zotero/modules/translators/Mikromarc.js +207 -0
- package/vendor/zotero/modules/translators/Milli Kutuphane.js +244 -0
- package/vendor/zotero/modules/translators/Musee du Louvre.js +265 -0
- package/vendor/zotero/modules/translators/NASA ADS.js +889 -0
- package/vendor/zotero/modules/translators/NASA NTRS.js +610 -0
- package/vendor/zotero/modules/translators/NCBI Nucleotide.js +227 -0
- package/vendor/zotero/modules/translators/NPR.js +341 -0
- package/vendor/zotero/modules/translators/NRC Research Press.js +181 -0
- package/vendor/zotero/modules/translators/NRC.nl.js +226 -0
- package/vendor/zotero/modules/translators/NTSB Accident Reports.js +226 -0
- package/vendor/zotero/modules/translators/NYPL Menus.js +275 -0
- package/vendor/zotero/modules/translators/NYPL Research Catalog.js +458 -0
- package/vendor/zotero/modules/translators/NYTimes.com.js +858 -0
- package/vendor/zotero/modules/translators/NZZ.ch.js +272 -0
- package/vendor/zotero/modules/translators/Nagoya University OPAC.js +336 -0
- package/vendor/zotero/modules/translators/National Academies Press.js +243 -0
- package/vendor/zotero/modules/translators/National Agriculture Library.js +524 -0
- package/vendor/zotero/modules/translators/National Archive of the UK.js +237 -0
- package/vendor/zotero/modules/translators/National Archives of Australia.js +522 -0
- package/vendor/zotero/modules/translators/National Archives of South Africa.js +122 -0
- package/vendor/zotero/modules/translators/National Archives of the United States.js +278 -0
- package/vendor/zotero/modules/translators/National Bureau of Economic Research.js +363 -0
- package/vendor/zotero/modules/translators/National Diet Library Catalogue.js +333 -0
- package/vendor/zotero/modules/translators/National Gallery of Art - USA.js +149 -0
- package/vendor/zotero/modules/translators/National Gallery of Australia.js +252 -0
- package/vendor/zotero/modules/translators/National Library of Australia (new catalog).js +223 -0
- package/vendor/zotero/modules/translators/National Library of Belarus.js +171 -0
- package/vendor/zotero/modules/translators/National Library of Norway.js +310 -0
- package/vendor/zotero/modules/translators/National Library of Poland ISBN.js +140 -0
- package/vendor/zotero/modules/translators/National Post.js +186 -0
- package/vendor/zotero/modules/translators/National Technical Reports Library.js +276 -0
- package/vendor/zotero/modules/translators/National Transportation Library ROSA P.js +562 -0
- package/vendor/zotero/modules/translators/Nature Publishing Group.js +3394 -0
- package/vendor/zotero/modules/translators/Neural Information Processing Systems.js +385 -0
- package/vendor/zotero/modules/translators/New Left Review.js +245 -0
- package/vendor/zotero/modules/translators/New Zealand Herald.js +282 -0
- package/vendor/zotero/modules/translators/Newlines Magazine.js +190 -0
- package/vendor/zotero/modules/translators/News Corp Australia.js +251 -0
- package/vendor/zotero/modules/translators/NewsBank.js +202 -0
- package/vendor/zotero/modules/translators/NewsnetTamedia.js +509 -0
- package/vendor/zotero/modules/translators/Noor Digital Library.js +267 -0
- package/vendor/zotero/modules/translators/Note HTML.js +206 -0
- package/vendor/zotero/modules/translators/Note Markdown.js +1638 -0
- package/vendor/zotero/modules/translators/Notre Dame Philosophical Reviews.js +201 -0
- package/vendor/zotero/modules/translators/Nuclear Receptor Signaling.js +241 -0
- package/vendor/zotero/modules/translators/OAPEN.js +331 -0
- package/vendor/zotero/modules/translators/OECD.js +216 -0
- package/vendor/zotero/modules/translators/ORCID.js +104 -0
- package/vendor/zotero/modules/translators/OSF Preprints.js +417 -0
- package/vendor/zotero/modules/translators/OSTI Energy Citations.js +202 -0
- package/vendor/zotero/modules/translators/OVID Tagged.js +1226 -0
- package/vendor/zotero/modules/translators/OZON.ru.js +465 -0
- package/vendor/zotero/modules/translators/OhioLINK.js +43 -0
- package/vendor/zotero/modules/translators/Old Bailey Online.js +315 -0
- package/vendor/zotero/modules/translators/Open Conf.js +172 -0
- package/vendor/zotero/modules/translators/Open Journal Systems.js +729 -0
- package/vendor/zotero/modules/translators/Open Knowledge Repository.js +811 -0
- package/vendor/zotero/modules/translators/OpenAlex JSON.js +740 -0
- package/vendor/zotero/modules/translators/OpenAlex.js +444 -0
- package/vendor/zotero/modules/translators/OpenEdition Books.js +155 -0
- package/vendor/zotero/modules/translators/OpenEdition Journals.js +432 -0
- package/vendor/zotero/modules/translators/Optical Society of America.js +562 -0
- package/vendor/zotero/modules/translators/Optimization Online.js +418 -0
- package/vendor/zotero/modules/translators/Ovid OCE.js +353 -0
- package/vendor/zotero/modules/translators/Ovid.js +302 -0
- package/vendor/zotero/modules/translators/Oxford Dictionaries Premium.js +194 -0
- package/vendor/zotero/modules/translators/Oxford English Dictionary.js +122 -0
- package/vendor/zotero/modules/translators/Oxford Music and Art Online.js +120 -0
- package/vendor/zotero/modules/translators/Oxford Reference.js +202 -0
- package/vendor/zotero/modules/translators/Oxford University Press.js +277 -0
- package/vendor/zotero/modules/translators/PC Gamer.js +302 -0
- package/vendor/zotero/modules/translators/PC Games.js +128 -0
- package/vendor/zotero/modules/translators/PEI Archival Information Network.js +242 -0
- package/vendor/zotero/modules/translators/PEP Web.js +165 -0
- package/vendor/zotero/modules/translators/PKP Catalog Systems.js +1455 -0
- package/vendor/zotero/modules/translators/PLoS Journals.js +284 -0
- package/vendor/zotero/modules/translators/PRC History Review.js +298 -0
- package/vendor/zotero/modules/translators/Pajhwok Afghan News.js +198 -0
- package/vendor/zotero/modules/translators/Papers Past.js +297 -0
- package/vendor/zotero/modules/translators/Paris Review.js +227 -0
- package/vendor/zotero/modules/translators/Pastebin.js +199 -0
- package/vendor/zotero/modules/translators/Patents - USPTO.js +210 -0
- package/vendor/zotero/modules/translators/Peeters.js +587 -0
- package/vendor/zotero/modules/translators/Perceiving Systems.js +350 -0
- package/vendor/zotero/modules/translators/Perlego.js +416 -0
- package/vendor/zotero/modules/translators/PhilPapers.js +233 -0
- package/vendor/zotero/modules/translators/Philosopher's Imprint.js +169 -0
- package/vendor/zotero/modules/translators/Pleade.js +329 -0
- package/vendor/zotero/modules/translators/Polygon.js +270 -0
- package/vendor/zotero/modules/translators/Potsdamer Neueste Nachrichten.js +188 -0
- package/vendor/zotero/modules/translators/Premium Times.js +144 -0
- package/vendor/zotero/modules/translators/Preprints.org.js +305 -0
- package/vendor/zotero/modules/translators/Prime 9ja Online.js +289 -0
- package/vendor/zotero/modules/translators/Primo 2018.js +126 -0
- package/vendor/zotero/modules/translators/Primo Normalized XML.js +987 -0
- package/vendor/zotero/modules/translators/Primo.js +322 -0
- package/vendor/zotero/modules/translators/ProMED.js +66 -0
- package/vendor/zotero/modules/translators/ProQuest Ebook Central.js +226 -0
- package/vendor/zotero/modules/translators/ProQuest PolicyFile.js +115 -0
- package/vendor/zotero/modules/translators/ProQuest.js +2210 -0
- package/vendor/zotero/modules/translators/Probing the Past.js +151 -0
- package/vendor/zotero/modules/translators/Project Gutenberg.js +191 -0
- package/vendor/zotero/modules/translators/Project MUSE.js +451 -0
- package/vendor/zotero/modules/translators/Protein Data Bank.js +445 -0
- package/vendor/zotero/modules/translators/PubFactory Journals.js +712 -0
- package/vendor/zotero/modules/translators/PubMed Central.js +577 -0
- package/vendor/zotero/modules/translators/PubMed XML.js +1139 -0
- package/vendor/zotero/modules/translators/PubMed.js +1317 -0
- package/vendor/zotero/modules/translators/PubPub.js +530 -0
- package/vendor/zotero/modules/translators/Pubget.js +164 -0
- package/vendor/zotero/modules/translators/Public Record Office Victoria.js +252 -0
- package/vendor/zotero/modules/translators/Publications Office of the European Union.js +540 -0
- package/vendor/zotero/modules/translators/Publications du Quebec.js +225 -0
- package/vendor/zotero/modules/translators/PyPI.js +288 -0
- package/vendor/zotero/modules/translators/Qatar Digital Library.js +802 -0
- package/vendor/zotero/modules/translators/Queensland State Archives.js +303 -0
- package/vendor/zotero/modules/translators/R-Packages.js +410 -0
- package/vendor/zotero/modules/translators/RAND.js +283 -0
- package/vendor/zotero/modules/translators/RDF.js +1780 -0
- package/vendor/zotero/modules/translators/REDALYC.js +196 -0
- package/vendor/zotero/modules/translators/RIS.js +7265 -0
- package/vendor/zotero/modules/translators/RSC Publishing.js +250 -0
- package/vendor/zotero/modules/translators/Radio Free Europe Radio Liberty.js +706 -0
- package/vendor/zotero/modules/translators/RePEc - Econpapers.js +725 -0
- package/vendor/zotero/modules/translators/RePEc - IDEAS.js +337 -0
- package/vendor/zotero/modules/translators/Rechtspraak.nl.js +295 -0
- package/vendor/zotero/modules/translators/RefWorks Tagged.js +1185 -0
- package/vendor/zotero/modules/translators/ReferBibIX.js +463 -0
- package/vendor/zotero/modules/translators/Regeringskansliet.js +89 -0
- package/vendor/zotero/modules/translators/Research Square.js +335 -0
- package/vendor/zotero/modules/translators/ResearchGate.js +394 -0
- package/vendor/zotero/modules/translators/Retsinformation.js +348 -0
- package/vendor/zotero/modules/translators/Reuters.js +255 -0
- package/vendor/zotero/modules/translators/Revues.org.js +378 -0
- package/vendor/zotero/modules/translators/Rock, Paper, Shotgun.js +304 -0
- package/vendor/zotero/modules/translators/Roll Call.js +173 -0
- package/vendor/zotero/modules/translators/Russian State Library.js +1517 -0
- package/vendor/zotero/modules/translators/SAE Papers.js +241 -0
- package/vendor/zotero/modules/translators/SAGE Journals.js +427 -0
- package/vendor/zotero/modules/translators/SAGE Knowledge.js +505 -0
- package/vendor/zotero/modules/translators/SAILDART.js +364 -0
- package/vendor/zotero/modules/translators/SALT Research Archives.js +196 -0
- package/vendor/zotero/modules/translators/SFU IPinCH.js +946 -0
- package/vendor/zotero/modules/translators/SIPRI.js +256 -0
- package/vendor/zotero/modules/translators/SIRS Knowledge Source.js +546 -0
- package/vendor/zotero/modules/translators/SLUB Dresden.js +300 -0
- package/vendor/zotero/modules/translators/SORA.js +340 -0
- package/vendor/zotero/modules/translators/SSOAR.js +399 -0
- package/vendor/zotero/modules/translators/SSRN.js +235 -0
- package/vendor/zotero/modules/translators/SVT Nyheter.js +381 -0
- package/vendor/zotero/modules/translators/Sacramento Bee.js +274 -0
- package/vendor/zotero/modules/translators/Safari Books Online.js +391 -0
- package/vendor/zotero/modules/translators/Scholars Portal Journals.js +220 -0
- package/vendor/zotero/modules/translators/Scholia.js +189 -0
- package/vendor/zotero/modules/translators/Schweizer Radio und Fernsehen SRF.js +152 -0
- package/vendor/zotero/modules/translators/SciELO.js +440 -0
- package/vendor/zotero/modules/translators/ScienceDirect.js +1304 -0
- package/vendor/zotero/modules/translators/Scopus.js +418 -0
- package/vendor/zotero/modules/translators/Semantic Scholar.js +513 -0
- package/vendor/zotero/modules/translators/Silverchair.js +886 -0
- package/vendor/zotero/modules/translators/Slate.js +228 -0
- package/vendor/zotero/modules/translators/SlideShare.js +112 -0
- package/vendor/zotero/modules/translators/Spiegel Online.js +343 -0
- package/vendor/zotero/modules/translators/Springer Link.js +696 -0
- package/vendor/zotero/modules/translators/Stack Exchange.js +134 -0
- package/vendor/zotero/modules/translators/Standard Ebooks.js +198 -0
- package/vendor/zotero/modules/translators/Stanford Encyclopedia of Philosophy.js +285 -0
- package/vendor/zotero/modules/translators/Stanford University Press.js +343 -0
- package/vendor/zotero/modules/translators/State Records Office of Western Australia.js +439 -0
- package/vendor/zotero/modules/translators/Stitcher.js +141 -0
- package/vendor/zotero/modules/translators/Store norske leksikon.js +291 -0
- package/vendor/zotero/modules/translators/Stuff.co.nz.js +446 -0
- package/vendor/zotero/modules/translators/Substack.js +237 -0
- package/vendor/zotero/modules/translators/Sud Ouest.js +181 -0
- package/vendor/zotero/modules/translators/Sueddeutsche.de.js +205 -0
- package/vendor/zotero/modules/translators/Summon 2.js +117 -0
- package/vendor/zotero/modules/translators/Superlib.js +647 -0
- package/vendor/zotero/modules/translators/Svenska Dagbladet.js +274 -0
- package/vendor/zotero/modules/translators/Sveriges radio.js +416 -0
- package/vendor/zotero/modules/translators/TEI.js +648 -0
- package/vendor/zotero/modules/translators/TV by the Numbers.js +194 -0
- package/vendor/zotero/modules/translators/TVNZ.js +165 -0
- package/vendor/zotero/modules/translators/Tagesspiegel.js +249 -0
- package/vendor/zotero/modules/translators/Talis Aspire.js +316 -0
- package/vendor/zotero/modules/translators/TalisPrism.js +445 -0
- package/vendor/zotero/modules/translators/Tatknigafund.js +174 -0
- package/vendor/zotero/modules/translators/Tatpressa.ru.js +121 -0
- package/vendor/zotero/modules/translators/Taylor & Francis eBooks.js +334 -0
- package/vendor/zotero/modules/translators/Taylor and Francis+NEJM.js +813 -0
- package/vendor/zotero/modules/translators/Tesis Doctorals en Xarxa.js +233 -0
- package/vendor/zotero/modules/translators/The Art Newspaper.js +268 -0
- package/vendor/zotero/modules/translators/The Atlantic.js +535 -0
- package/vendor/zotero/modules/translators/The Australian.js +105 -0
- package/vendor/zotero/modules/translators/The Boston Globe.js +285 -0
- package/vendor/zotero/modules/translators/The Chronicle of Higher Education.js +308 -0
- package/vendor/zotero/modules/translators/The Daily Beast.js +183 -0
- package/vendor/zotero/modules/translators/The Economic Times - The Times of India.js +305 -0
- package/vendor/zotero/modules/translators/The Economic Times.js +191 -0
- package/vendor/zotero/modules/translators/The Economist.js +207 -0
- package/vendor/zotero/modules/translators/The Free Dictionary.js +58 -0
- package/vendor/zotero/modules/translators/The Globe and Mail.js +241 -0
- package/vendor/zotero/modules/translators/The Guardian.js +717 -0
- package/vendor/zotero/modules/translators/The Hamilton Spectator.js +129 -0
- package/vendor/zotero/modules/translators/The Hindu (old).js +128 -0
- package/vendor/zotero/modules/translators/The Hindu.js +318 -0
- package/vendor/zotero/modules/translators/The Independent.js +184 -0
- package/vendor/zotero/modules/translators/The Intercept.js +258 -0
- package/vendor/zotero/modules/translators/The Met.js +300 -0
- package/vendor/zotero/modules/translators/The Microfinance Gateway.js +174 -0
- package/vendor/zotero/modules/translators/The Nation.js +188 -0
- package/vendor/zotero/modules/translators/The National Archives (UK).js +242 -0
- package/vendor/zotero/modules/translators/The New Republic.js +160 -0
- package/vendor/zotero/modules/translators/The New York Review of Books.js +467 -0
- package/vendor/zotero/modules/translators/The New Yorker.js +360 -0
- package/vendor/zotero/modules/translators/The Open Library.js +220 -0
- package/vendor/zotero/modules/translators/The Straits Times.js +528 -0
- package/vendor/zotero/modules/translators/The Telegraph.js +337 -0
- package/vendor/zotero/modules/translators/The Times and Sunday Times.js +180 -0
- package/vendor/zotero/modules/translators/The Times of Israel.js +151 -0
- package/vendor/zotero/modules/translators/TheMarker.js +108 -0
- package/vendor/zotero/modules/translators/Theory of Computing.js +488 -0
- package/vendor/zotero/modules/translators/ThesesFR.js +350 -0
- package/vendor/zotero/modules/translators/Thieme.js +326 -0
- package/vendor/zotero/modules/translators/Time.com.js +557 -0
- package/vendor/zotero/modules/translators/TimesMachine.js +222 -0
- package/vendor/zotero/modules/translators/Tony Blair Institute for Global Change.js +195 -0
- package/vendor/zotero/modules/translators/Toronto Star.js +331 -0
- package/vendor/zotero/modules/translators/Transportation Research Board.js +253 -0
- package/vendor/zotero/modules/translators/Treesearch.js +535 -0
- package/vendor/zotero/modules/translators/Trove.js +616 -0
- package/vendor/zotero/modules/translators/Tumblr.js +179 -0
- package/vendor/zotero/modules/translators/Twitter.js +413 -0
- package/vendor/zotero/modules/translators/UChicago VuFind.js +907 -0
- package/vendor/zotero/modules/translators/UNZ Print Archive.js +276 -0
- package/vendor/zotero/modules/translators/UPCommons.js +227 -0
- package/vendor/zotero/modules/translators/US National Archives Research Catalog.js +275 -0
- package/vendor/zotero/modules/translators/USENIX.js +151 -0
- package/vendor/zotero/modules/translators/USgamer.js +120 -0
- package/vendor/zotero/modules/translators/Ubiquity Journals.js +228 -0
- package/vendor/zotero/modules/translators/University Press Scholarship.js +301 -0
- package/vendor/zotero/modules/translators/University of California Press Books.js +403 -0
- package/vendor/zotero/modules/translators/University of Chicago Press Books.js +378 -0
- package/vendor/zotero/modules/translators/University of Wisconsin-Madison Libraries Catalog.js +298 -0
- package/vendor/zotero/modules/translators/Unqualified Dublin Core RDF.js +153 -0
- package/vendor/zotero/modules/translators/UpToDate References.js +203 -0
- package/vendor/zotero/modules/translators/Vanity Fair.js +242 -0
- package/vendor/zotero/modules/translators/Verniana-Jules Verne Studies.js +190 -0
- package/vendor/zotero/modules/translators/Verso Books.js +311 -0
- package/vendor/zotero/modules/translators/Vice.js +445 -0
- package/vendor/zotero/modules/translators/Victoria & Albert Museum.js +277 -0
- package/vendor/zotero/modules/translators/Vimeo.js +188 -0
- package/vendor/zotero/modules/translators/VoxEU.js +151 -0
- package/vendor/zotero/modules/translators/WHO.js +458 -0
- package/vendor/zotero/modules/translators/WIPO.js +189 -0
- package/vendor/zotero/modules/translators/Wall Street Journal.js +525 -0
- package/vendor/zotero/modules/translators/Wanfang Data.js +310 -0
- package/vendor/zotero/modules/translators/Washington Monthly.js +195 -0
- package/vendor/zotero/modules/translators/Washington Post.js +447 -0
- package/vendor/zotero/modules/translators/Web of Science Nextgen.js +832 -0
- package/vendor/zotero/modules/translators/Web of Science Tagged.js +1247 -0
- package/vendor/zotero/modules/translators/Web of Science.js +228 -0
- package/vendor/zotero/modules/translators/Welt Online.js +161 -0
- package/vendor/zotero/modules/translators/WestLaw UK.js +190 -0
- package/vendor/zotero/modules/translators/WikiLeaks PlusD.js +182 -0
- package/vendor/zotero/modules/translators/Wikidata QuickStatements.js +324 -0
- package/vendor/zotero/modules/translators/Wikidata.js +911 -0
- package/vendor/zotero/modules/translators/Wikimedia Commons.js +285 -0
- package/vendor/zotero/modules/translators/Wikipedia Citation Templates.js +432 -0
- package/vendor/zotero/modules/translators/Wikipedia.js +385 -0
- package/vendor/zotero/modules/translators/Wikisource.js +399 -0
- package/vendor/zotero/modules/translators/Wikiwand.js +122 -0
- package/vendor/zotero/modules/translators/Wiktionary.js +141 -0
- package/vendor/zotero/modules/translators/Wildlife Biology in Practice.js +172 -0
- package/vendor/zotero/modules/translators/Wiley Online Library.js +1412 -0
- package/vendor/zotero/modules/translators/Wilson Center Digital Archive.js +321 -0
- package/vendor/zotero/modules/translators/Winnipeg Free Press.js +204 -0
- package/vendor/zotero/modules/translators/Wired.js +249 -0
- package/vendor/zotero/modules/translators/Womennews.js +230 -0
- package/vendor/zotero/modules/translators/World Digital Library.js +403 -0
- package/vendor/zotero/modules/translators/World History Connected.js +185 -0
- package/vendor/zotero/modules/translators/World Shakespeare Bibliography Online.js +595 -0
- package/vendor/zotero/modules/translators/XML ContextObject.js +274 -0
- package/vendor/zotero/modules/translators/YPSF.js +224 -0
- package/vendor/zotero/modules/translators/Yandex Books.js +265 -0
- package/vendor/zotero/modules/translators/Ynet.js +171 -0
- package/vendor/zotero/modules/translators/YouTube.js +209 -0
- package/vendor/zotero/modules/translators/ZIPonline.js +267 -0
- package/vendor/zotero/modules/translators/ZOBODAT.js +341 -0
- package/vendor/zotero/modules/translators/Zotero RDF.js +583 -0
- package/vendor/zotero/modules/translators/ZoteroBib.js +94 -0
- package/vendor/zotero/modules/translators/arXiv.org.js +1099 -0
- package/vendor/zotero/modules/translators/artnet.js +207 -0
- package/vendor/zotero/modules/translators/beck-online.js +1339 -0
- package/vendor/zotero/modules/translators/clinicaltrials.gov.js +331 -0
- package/vendor/zotero/modules/translators/dLibra.js +367 -0
- package/vendor/zotero/modules/translators/dejure.org.js +242 -0
- package/vendor/zotero/modules/translators/dhistory.js +103 -0
- package/vendor/zotero/modules/translators/digibib.net.js +245 -0
- package/vendor/zotero/modules/translators/eLibrary.ru.js +867 -0
- package/vendor/zotero/modules/translators/eLife.js +462 -0
- package/vendor/zotero/modules/translators/eMJA.js +246 -0
- package/vendor/zotero/modules/translators/eMedicine.js +123 -0
- package/vendor/zotero/modules/translators/ePrint IACR.js +608 -0
- package/vendor/zotero/modules/translators/ebrary.js +140 -0
- package/vendor/zotero/modules/translators/etatar.ru.js +104 -0
- package/vendor/zotero/modules/translators/feb-web.ru.js +167 -0
- package/vendor/zotero/modules/translators/fishpond.co.nz.js +224 -0
- package/vendor/zotero/modules/translators/fr-online.de.js +209 -0
- package/vendor/zotero/modules/translators/govinfo.js +189 -0
- package/vendor/zotero/modules/translators/informIT database.js +248 -0
- package/vendor/zotero/modules/translators/io-port.js +68 -0
- package/vendor/zotero/modules/translators/jmlr.js +299 -0
- package/vendor/zotero/modules/translators/jurion.js +377 -0
- package/vendor/zotero/modules/translators/mEDRA.js +597 -0
- package/vendor/zotero/modules/translators/magazines.russ.ru.js +120 -0
- package/vendor/zotero/modules/translators/medes.js +284 -0
- package/vendor/zotero/modules/translators/newshub.co.nz.js +206 -0
- package/vendor/zotero/modules/translators/newspapers.com.js +335 -0
- package/vendor/zotero/modules/translators/openJur.js +161 -0
- package/vendor/zotero/modules/translators/reddit.js +275 -0
- package/vendor/zotero/modules/translators/sbn.it.js +186 -0
- package/vendor/zotero/modules/translators/scinapse.js +273 -0
- package/vendor/zotero/modules/translators/semantics Visual Library.js +643 -0
- package/vendor/zotero/modules/translators/taz.de.js +200 -0
- package/vendor/zotero/modules/translators/unAPI.js +481 -0
- package/vendor/zotero/modules/translators/washingtonpost.com.js +257 -0
- package/vendor/zotero/modules/translators/wiso.js +314 -0
- package/vendor/zotero/modules/translators/zbMATH.js +278 -0
- package/vendor/zotero/modules/translators/zotero.org.js +311 -0
- package/vendor/zotero/modules/utilities/README.md +25 -0
- package/vendor/zotero/modules/utilities/cachedTypes.js +193 -0
- package/vendor/zotero/modules/utilities/date.js +958 -0
- package/vendor/zotero/modules/utilities/openurl.js +458 -0
- package/vendor/zotero/modules/utilities/resource/README.md +4 -0
- package/vendor/zotero/modules/utilities/resource/dateFormats.json +1322 -0
- package/vendor/zotero/modules/utilities/resource/schema/global/README.md +15 -0
- package/vendor/zotero/modules/utilities/resource/schema/global/schema.json +12072 -0
- package/vendor/zotero/modules/utilities/resource/zoteroTypeSchemaData.js +5 -0
- package/vendor/zotero/modules/utilities/schema.js +65 -0
- package/vendor/zotero/modules/utilities/utilities.js +1841 -0
- package/vendor/zotero/modules/utilities/utilities_item.js +1082 -0
- package/vendor/zotero/modules/utilities/xregexp-all.js +4652 -0
- package/vendor/zotero/modules/utilities/xregexp-unicode-zotero.js +58 -0
- package/vendor/zotero/modules/zotero-schema/README.md +15 -0
- package/vendor/zotero/modules/zotero-schema/schema.json +12072 -0
- package/vendor/zotero/package-lock.json +4332 -0
- package/vendor/zotero/package.json +44 -0
- package/vendor/zotero/spec.yaml +142 -0
- package/vendor/zotero/src/args.js +43 -0
- package/vendor/zotero/src/cors.js +28 -0
- package/vendor/zotero/src/debug.js +189 -0
- package/vendor/zotero/src/exportEndpoint.js +97 -0
- package/vendor/zotero/src/formats.js +43 -0
- package/vendor/zotero/src/http.js +478 -0
- package/vendor/zotero/src/importEndpoint.js +54 -0
- package/vendor/zotero/src/lambda.js +75 -0
- package/vendor/zotero/src/proxy.js +356 -0
- package/vendor/zotero/src/searchEndpoint.js +97 -0
- package/vendor/zotero/src/server.js +85 -0
- package/vendor/zotero/src/specEndpoint.js +135 -0
- package/vendor/zotero/src/testEndpoint.js +50 -0
- package/vendor/zotero/src/textSearch.js +527 -0
- package/vendor/zotero/src/translation/sandboxManager.js +109 -0
- package/vendor/zotero/src/translation/translate.js +101 -0
- package/vendor/zotero/src/translation/translate_item.js +88 -0
- package/vendor/zotero/src/translators.js +264 -0
- package/vendor/zotero/src/utilities.js +49 -0
- package/vendor/zotero/src/webEndpoint.js +113 -0
- package/vendor/zotero/src/webSession.js +476 -0
- package/vendor/zotero/src/zotero.js +117 -0
- package/vendor/zotero/translate_export +10 -0
- package/vendor/zotero/translate_search +9 -0
- package/vendor/zotero/translate_url +9 -0
- package/vendor/zotero/translate_url_multiple +9 -0
- package/vendor/zotero/translate_url_single +9 -0
|
@@ -0,0 +1,1782 @@
|
|
|
1
|
+
{
|
|
2
|
+
"translatorID": "5e3ad958-ac79-463d-812b-a86a9235c28f",
|
|
3
|
+
"label": "RDF",
|
|
4
|
+
"creator": "Simon Kornblith",
|
|
5
|
+
"target": "rdf",
|
|
6
|
+
"minVersion": "2.1.9",
|
|
7
|
+
"maxVersion": "",
|
|
8
|
+
"priority": 100,
|
|
9
|
+
"configOptions": {
|
|
10
|
+
"async": true,
|
|
11
|
+
"dataMode": "rdf/xml"
|
|
12
|
+
},
|
|
13
|
+
"inRepository": true,
|
|
14
|
+
"translatorType": 1,
|
|
15
|
+
"lastUpdated": "2026-03-06 21:44:09"
|
|
16
|
+
}
|
|
17
|
+
|
|
18
|
+
/*
|
|
19
|
+
***** BEGIN LICENSE BLOCK *****
|
|
20
|
+
|
|
21
|
+
Copyright © 2011 Center for History and New Media
|
|
22
|
+
George Mason University, Fairfax, Virginia, USA
|
|
23
|
+
http://zotero.org
|
|
24
|
+
|
|
25
|
+
This file is part of Zotero.
|
|
26
|
+
|
|
27
|
+
Zotero is free software: you can redistribute it and/or modify
|
|
28
|
+
it under the terms of the GNU Affero General Public License as published by
|
|
29
|
+
the Free Software Foundation, either version 3 of the License, or
|
|
30
|
+
(at your option) any later version.
|
|
31
|
+
|
|
32
|
+
Zotero is distributed in the hope that it will be useful,
|
|
33
|
+
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
34
|
+
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
35
|
+
GNU Affero General Public License for more details.
|
|
36
|
+
|
|
37
|
+
You should have received a copy of the GNU Affero General Public License
|
|
38
|
+
along with Zotero. If not, see <http://www.gnu.org/licenses/>.
|
|
39
|
+
|
|
40
|
+
***** END LICENSE BLOCK *****
|
|
41
|
+
*/
|
|
42
|
+
const datasetType = ZU.fieldIsValidForType('title', 'dataset')
|
|
43
|
+
? 'dataset'
|
|
44
|
+
: 'document';
|
|
45
|
+
|
|
46
|
+
function detectImport() {
|
|
47
|
+
// Make sure there are actually nodes
|
|
48
|
+
|
|
49
|
+
var nodes = Zotero.RDF.getAllResources();
|
|
50
|
+
if (nodes) {
|
|
51
|
+
return true;
|
|
52
|
+
}
|
|
53
|
+
return false;
|
|
54
|
+
}
|
|
55
|
+
|
|
56
|
+
var rdf = "http://www.w3.org/1999/02/22-rdf-syntax-ns#";
|
|
57
|
+
|
|
58
|
+
var n = {
|
|
59
|
+
bib: "http://purl.org/net/biblio#",
|
|
60
|
+
bibo: "http://purl.org/ontology/bibo/",
|
|
61
|
+
dc1_0: "http://purl.org/dc/elements/1.0/", // eslint-disable-line camelcase
|
|
62
|
+
dc: "http://purl.org/dc/elements/1.1/",
|
|
63
|
+
dcterms: "http://purl.org/dc/terms/",
|
|
64
|
+
prism: "http://prismstandard.org/namespaces/1.2/basic/",
|
|
65
|
+
prism2_0: "http://prismstandard.org/namespaces/basic/2.0/", // eslint-disable-line camelcase
|
|
66
|
+
prism2_1: "http://prismstandard.org/namespaces/basic/2.1/", // eslint-disable-line camelcase
|
|
67
|
+
foaf: "http://xmlns.com/foaf/0.1/",
|
|
68
|
+
vcard: "http://nwalsh.com/rdf/vCard#",
|
|
69
|
+
vcard2: "http://www.w3.org/2006/vcard/ns#", // currently used only for NSF, but is probably
|
|
70
|
+
// very similar to the nwalsh vcard ontology in a
|
|
71
|
+
// different namespace
|
|
72
|
+
link: "http://purl.org/rss/1.0/modules/link/",
|
|
73
|
+
z: "http://www.zotero.org/namespaces/export#",
|
|
74
|
+
eprints: "http://purl.org/eprint/terms/",
|
|
75
|
+
og: "http://ogp.me/ns#", // Used for Facebook's OpenGraph Protocol
|
|
76
|
+
article: "http://ogp.me/ns/article#",
|
|
77
|
+
book: "http://ogp.me/ns/book#",
|
|
78
|
+
music: "http://ogp.me/ns/music#",
|
|
79
|
+
video: "http://ogp.me/ns/video#",
|
|
80
|
+
so: "http://schema.org/",
|
|
81
|
+
codemeta: "https://codemeta.github.io/terms/"
|
|
82
|
+
};
|
|
83
|
+
|
|
84
|
+
var callNumberTypes = [n.dcterms + "LCC", n.dcterms + "DDC", n.dcterms + "UDC"];
|
|
85
|
+
|
|
86
|
+
// gets the first result set for a property that can be encoded in multiple
|
|
87
|
+
// ontologies
|
|
88
|
+
function getFirstResults(nodes, properties, onlyOneString) {
|
|
89
|
+
if (!nodes.length) nodes = [nodes];
|
|
90
|
+
for (let node of nodes) {
|
|
91
|
+
for (let i = 0; i < properties.length; i++) {
|
|
92
|
+
var result = Zotero.RDF.getTargets(node, properties[i]);
|
|
93
|
+
if (result) {
|
|
94
|
+
if (onlyOneString) {
|
|
95
|
+
// onlyOneString means we won't return nsIRDFResources, only
|
|
96
|
+
// actual literals
|
|
97
|
+
if (typeof (result[0]) != "object") {
|
|
98
|
+
return result[0];
|
|
99
|
+
}
|
|
100
|
+
else {
|
|
101
|
+
return Zotero.RDF.getResourceURI(result[0]);
|
|
102
|
+
}
|
|
103
|
+
}
|
|
104
|
+
else {
|
|
105
|
+
return result;
|
|
106
|
+
}
|
|
107
|
+
}
|
|
108
|
+
}
|
|
109
|
+
}
|
|
110
|
+
return undefined; // return undefined on failure
|
|
111
|
+
}
|
|
112
|
+
|
|
113
|
+
// adds creators to an item given a list of creator nodes
|
|
114
|
+
/** TODO: PRISM 2.0 roles for DC creator/contributor*/
|
|
115
|
+
function handleCreators(newItem, creators, creatorType) {
|
|
116
|
+
if (!creators) {
|
|
117
|
+
return;
|
|
118
|
+
}
|
|
119
|
+
|
|
120
|
+
if (typeof (creators[0]) != "string") { // see if creators are in a container
|
|
121
|
+
let c;
|
|
122
|
+
try {
|
|
123
|
+
c = Zotero.RDF.getContainerElements(creators[0]);
|
|
124
|
+
}
|
|
125
|
+
catch (e) {}
|
|
126
|
+
if (c && c.length) {
|
|
127
|
+
creators = c;
|
|
128
|
+
}
|
|
129
|
+
}
|
|
130
|
+
|
|
131
|
+
for (let c of creators) {
|
|
132
|
+
let info = extractCreatorInfo(c);
|
|
133
|
+
if (info) newItem.creators.push(info);
|
|
134
|
+
}
|
|
135
|
+
|
|
136
|
+
function extractCreatorInfo(obj) {
|
|
137
|
+
if (typeof obj == "string") {
|
|
138
|
+
// Use comma to split if present
|
|
139
|
+
return ZU.cleanAuthor(obj, creatorType, obj.includes(','));
|
|
140
|
+
}
|
|
141
|
+
else {
|
|
142
|
+
let c = { creatorType: creatorType };
|
|
143
|
+
c.lastName = getFirstResults(obj,
|
|
144
|
+
[n.foaf + "familyName",
|
|
145
|
+
n.foaf + "lastName",
|
|
146
|
+
n.foaf + "surname",
|
|
147
|
+
n.foaf + "family_name",
|
|
148
|
+
n.so + "familyName"], true);
|
|
149
|
+
c.firstName = getFirstResults(obj,
|
|
150
|
+
[n.foaf + "givenName",
|
|
151
|
+
n.foaf + "firstName",
|
|
152
|
+
n.foaf + "givenname",
|
|
153
|
+
n.so + "givenName"], true);
|
|
154
|
+
if (!c.firstName) c.fieldMode = 1;
|
|
155
|
+
if (c.firstName || c.lastName) return c;
|
|
156
|
+
|
|
157
|
+
c = getFirstResults(obj, [n.so + "name"], true);
|
|
158
|
+
if (c) return ZU.cleanAuthor(c, creatorType, c.includes(','));
|
|
159
|
+
}
|
|
160
|
+
return false;
|
|
161
|
+
}
|
|
162
|
+
}
|
|
163
|
+
|
|
164
|
+
// processes collections recursively
|
|
165
|
+
function processCollection(node, collection) {
|
|
166
|
+
if (!collection) {
|
|
167
|
+
collection = [];
|
|
168
|
+
}
|
|
169
|
+
collection.type = "collection";
|
|
170
|
+
collection.name = getFirstResults(node, [n.dc + "title", n.dc1_0 + "title", n.dcterms + "title"], true);
|
|
171
|
+
collection.children = [];
|
|
172
|
+
|
|
173
|
+
// check for children
|
|
174
|
+
var children = getFirstResults(node, [n.dcterms + "hasPart"]);
|
|
175
|
+
if (children) {
|
|
176
|
+
for (let i = 0; i < children.length; i++) {
|
|
177
|
+
var child = children[i];
|
|
178
|
+
let type = Zotero.RDF.getTargets(child, rdf + "type");
|
|
179
|
+
if (type) {
|
|
180
|
+
type = Zotero.RDF.getResourceURI(type[0]);
|
|
181
|
+
}
|
|
182
|
+
|
|
183
|
+
if (type == n.bib + "Collection" || type == n.z + "Collection") {
|
|
184
|
+
// for collections, process recursively
|
|
185
|
+
collection.children.push(processCollection(child));
|
|
186
|
+
}
|
|
187
|
+
else {
|
|
188
|
+
if (isPart(child)) {
|
|
189
|
+
Zotero.debug("Not adding child item <" + Zotero.RDF.getResourceURI(child) + "> to collection", 2);
|
|
190
|
+
continue;
|
|
191
|
+
}
|
|
192
|
+
|
|
193
|
+
// all other items are added by ID
|
|
194
|
+
collection.children.push({ id: Zotero.RDF.getResourceURI(child), type: "item" });
|
|
195
|
+
}
|
|
196
|
+
}
|
|
197
|
+
}
|
|
198
|
+
return collection;
|
|
199
|
+
}
|
|
200
|
+
|
|
201
|
+
function processSeeAlso(node, newItem) {
|
|
202
|
+
var relations = getFirstResults(node, [n.dc + "relation", n.dc1_0 + "relation", n.dcterms + "relation"]);
|
|
203
|
+
newItem.itemID = Zotero.RDF.getResourceURI(node);
|
|
204
|
+
newItem.seeAlso = [];
|
|
205
|
+
if (relations) {
|
|
206
|
+
for (let i = 0; i < relations.length; i++) {
|
|
207
|
+
newItem.seeAlso.push(Zotero.RDF.getResourceURI(relations[i]));
|
|
208
|
+
}
|
|
209
|
+
}
|
|
210
|
+
}
|
|
211
|
+
|
|
212
|
+
function processTags(node, newItem) {
|
|
213
|
+
var subjects = getFirstResults(node, [n.dc + "subject", n.dc1_0 + "subject", n.dcterms + "subject"]);
|
|
214
|
+
newItem.tags = [];
|
|
215
|
+
if (subjects) {
|
|
216
|
+
for (let i = 0; i < subjects.length; i++) {
|
|
217
|
+
var subject = subjects[i];
|
|
218
|
+
if (typeof (subject) == "string") { // a regular tag
|
|
219
|
+
newItem.tags.push(subject);
|
|
220
|
+
}
|
|
221
|
+
else {
|
|
222
|
+
// a call number
|
|
223
|
+
let type = Zotero.RDF.getTargets(subject, rdf + "type");
|
|
224
|
+
if (type) {
|
|
225
|
+
type = Zotero.RDF.getResourceURI(type[0]);
|
|
226
|
+
if (type == n.z + "AutomaticTag") {
|
|
227
|
+
newItem.tags.push({ tag: getFirstResults(subject, [rdf + "value"], true), type: 1 });
|
|
228
|
+
}
|
|
229
|
+
}
|
|
230
|
+
}
|
|
231
|
+
}
|
|
232
|
+
}
|
|
233
|
+
}
|
|
234
|
+
|
|
235
|
+
// gets the node with a given type from an array
|
|
236
|
+
function getNodeByType(nodes, type) {
|
|
237
|
+
if (!nodes) {
|
|
238
|
+
return false;
|
|
239
|
+
}
|
|
240
|
+
|
|
241
|
+
if (typeof (type) == "string") {
|
|
242
|
+
type = [type];
|
|
243
|
+
}
|
|
244
|
+
|
|
245
|
+
for (let i = 0; i < nodes.length; i++) {
|
|
246
|
+
var node = nodes[i];
|
|
247
|
+
var nodeType = Zotero.RDF.getTargets(node, rdf + "type");
|
|
248
|
+
if (nodeType) {
|
|
249
|
+
nodeType = Zotero.RDF.getResourceURI(nodeType[0]);
|
|
250
|
+
if (type.includes(nodeType)) { // we have a node of the correct type
|
|
251
|
+
return node;
|
|
252
|
+
}
|
|
253
|
+
}
|
|
254
|
+
}
|
|
255
|
+
return false;
|
|
256
|
+
}
|
|
257
|
+
|
|
258
|
+
// returns true if this resource is part of another (related by any arc besides
|
|
259
|
+
// dc:relation or dcterms:hasPart)
|
|
260
|
+
//
|
|
261
|
+
// used to differentiate independent notes and files
|
|
262
|
+
function isPart(node) {
|
|
263
|
+
var arcs = Zotero.RDF.getArcsIn(node);
|
|
264
|
+
var skip = false;
|
|
265
|
+
for (let i = 0; i < arcs.length; i++) {
|
|
266
|
+
var arc = arcs[i];
|
|
267
|
+
arc = Zotero.RDF.getResourceURI(arc);
|
|
268
|
+
if (arc != n.dc + "relation" && arc != n.dc1_0 + "relation"
|
|
269
|
+
&& arc != n.dcterms + "relation" && arc != n.dcterms + "hasPart") {
|
|
270
|
+
// related to another item by some arc besides see also
|
|
271
|
+
skip = true;
|
|
272
|
+
}
|
|
273
|
+
}
|
|
274
|
+
return skip;
|
|
275
|
+
}
|
|
276
|
+
|
|
277
|
+
function detectType(newItem, node, ret) {
|
|
278
|
+
if (!node) return false;
|
|
279
|
+
|
|
280
|
+
// also deal with type detection based on parts, so we can differentiate
|
|
281
|
+
// magazine and journal articles, and find container elements
|
|
282
|
+
var isPartOf = getFirstResults(node, [n.dcterms + "isPartOf", n.so + "isPartOf"]);
|
|
283
|
+
|
|
284
|
+
// get parts of parts, because parts are sections of wholes.
|
|
285
|
+
if (isPartOf) {
|
|
286
|
+
// keep track of processed parts, so we don't end up in an infinite loop
|
|
287
|
+
var processedParts = [];
|
|
288
|
+
for (let i = 0; i < isPartOf.length; i++) {
|
|
289
|
+
if (processedParts.includes(isPartOf[i])) continue;
|
|
290
|
+
var subParts = getFirstResults(isPartOf[i], [n.dcterms + "isPartOf", n.so + "isPartOf"]);
|
|
291
|
+
if (subParts) {
|
|
292
|
+
isPartOf = isPartOf.concat(subParts);
|
|
293
|
+
}
|
|
294
|
+
processedParts.push(isPartOf[i]);
|
|
295
|
+
}
|
|
296
|
+
|
|
297
|
+
// remove self from parts
|
|
298
|
+
for (let i = 0; i < isPartOf.length; i++) {
|
|
299
|
+
if (Zotero.RDF.getResourceURI(isPartOf[i]) == Zotero.RDF.getResourceURI(node)) {
|
|
300
|
+
isPartOf.splice(i, 1);
|
|
301
|
+
i--;
|
|
302
|
+
}
|
|
303
|
+
}
|
|
304
|
+
}
|
|
305
|
+
|
|
306
|
+
var container;
|
|
307
|
+
// for schema.org we need several containers
|
|
308
|
+
var containerPeriodical;
|
|
309
|
+
var containerPublicationVolume;
|
|
310
|
+
var containerPublicationIssue;
|
|
311
|
+
var t = {};
|
|
312
|
+
// rdf:type
|
|
313
|
+
let type = getFirstResults(node, [rdf + "type"], true);
|
|
314
|
+
if (type) {
|
|
315
|
+
var pref = '';
|
|
316
|
+
if (type.substr(0, n.bib.length) == n.bib) {
|
|
317
|
+
pref = n.bib;
|
|
318
|
+
}
|
|
319
|
+
else if (type.substr(0, n.bibo.length) == n.bibo) {
|
|
320
|
+
pref = n.bibo;
|
|
321
|
+
}
|
|
322
|
+
else if (type.substr(0, n.so.length) == n.so) {
|
|
323
|
+
pref = n.so;
|
|
324
|
+
}
|
|
325
|
+
else if (type == n.z + "Attachment") {
|
|
326
|
+
pref = n.z;
|
|
327
|
+
}
|
|
328
|
+
type = type.substr(pref.length).toLowerCase();
|
|
329
|
+
switch (type) {
|
|
330
|
+
case "book":
|
|
331
|
+
case "thesis":
|
|
332
|
+
case "letter":
|
|
333
|
+
case "manuscript":
|
|
334
|
+
case "interview":
|
|
335
|
+
case "report":
|
|
336
|
+
case "patent":
|
|
337
|
+
case "map":
|
|
338
|
+
// these are the same as zotero types,
|
|
339
|
+
// just start with lower case
|
|
340
|
+
if (pref == n.bib || pref == n.bibo) t.bib = type;
|
|
341
|
+
if (pref == n.z) t.z = type;
|
|
342
|
+
if (pref == n.so) t.so = type;
|
|
343
|
+
break;
|
|
344
|
+
|
|
345
|
+
// bib, bibo types
|
|
346
|
+
case "booksection":
|
|
347
|
+
t.bib = 'bookSection';
|
|
348
|
+
container = getNodeByType(isPartOf, n.bib + "Book");
|
|
349
|
+
break;
|
|
350
|
+
case "motionpicture":
|
|
351
|
+
t.bib = "film";
|
|
352
|
+
break;
|
|
353
|
+
case "image":
|
|
354
|
+
case "illustration":
|
|
355
|
+
t.bib = "artwork";
|
|
356
|
+
break;
|
|
357
|
+
case "legislation":
|
|
358
|
+
t.bib = "statute";
|
|
359
|
+
break;
|
|
360
|
+
case "recording":
|
|
361
|
+
t.bib = "audioRecording";
|
|
362
|
+
break;
|
|
363
|
+
case "memo":
|
|
364
|
+
t.bib = "note";
|
|
365
|
+
break;
|
|
366
|
+
case "document":
|
|
367
|
+
container = getNodeByType(isPartOf, [n.bib + "CourtReporter", n.bibo + "CourtReporter"]);
|
|
368
|
+
if (container) {
|
|
369
|
+
t.bib = "case";
|
|
370
|
+
}
|
|
371
|
+
else if (getFirstResults(node, [n.bibo + "isbn10", n.bibo + "isbn13"], true)) {
|
|
372
|
+
t.bib = "book";
|
|
373
|
+
}
|
|
374
|
+
else {
|
|
375
|
+
t.bib = "webpage";
|
|
376
|
+
}
|
|
377
|
+
break;
|
|
378
|
+
|
|
379
|
+
// schema.org types
|
|
380
|
+
// subtypes of http://schema.org/CreativeWork and https://bib.schema.org/
|
|
381
|
+
case 'newsarticle':
|
|
382
|
+
case 'analysisnewsarticle':
|
|
383
|
+
case 'backgroundnewsarticle':
|
|
384
|
+
case 'opinionNewsarticle':
|
|
385
|
+
case 'reportagenewsarticle':
|
|
386
|
+
case 'reviewnewsarticle':
|
|
387
|
+
t.so = 'newspaperArticle'; break;
|
|
388
|
+
case 'scholarlyarticle':
|
|
389
|
+
case 'medicalscholarlyarticle':
|
|
390
|
+
t.so = 'journalArticle';
|
|
391
|
+
containerPublicationIssue = getNodeByType(isPartOf, [n.so + "PublicationIssue"]);
|
|
392
|
+
containerPublicationVolume = getNodeByType(isPartOf, [n.so + "PublicationVolume"]);
|
|
393
|
+
containerPeriodical = getNodeByType(isPartOf, [n.so + "Periodical"]);
|
|
394
|
+
container = getNodeByType(isPartOf, [n.so + "PublicationIssue", n.so + "PublicationVolume", n.so + "Periodical"]);
|
|
395
|
+
break;
|
|
396
|
+
case 'chapter':
|
|
397
|
+
t.so = 'bookSection';
|
|
398
|
+
container = getNodeByType(isPartOf, [n.so + "Book"]);
|
|
399
|
+
break;
|
|
400
|
+
case 'socialmediaposting':
|
|
401
|
+
case 'blogposting':
|
|
402
|
+
case 'liveblogposting':
|
|
403
|
+
t.so = 'blogPost';
|
|
404
|
+
break;
|
|
405
|
+
case 'discussionforumposting':
|
|
406
|
+
t.so = 'forumPost'; break;
|
|
407
|
+
case 'techarticle':
|
|
408
|
+
case 'apireference':
|
|
409
|
+
t.soGuess = 'report'; break;
|
|
410
|
+
case 'clip':
|
|
411
|
+
case 'movieclip':
|
|
412
|
+
case 'videogameclip':
|
|
413
|
+
t.soGuess = 'videoRecording'; break;
|
|
414
|
+
case 'tvclip':
|
|
415
|
+
case 'tvepisode':
|
|
416
|
+
t.so = 'tvBroadcast'; break;
|
|
417
|
+
case 'tvseries':
|
|
418
|
+
case 'episode':
|
|
419
|
+
t.soGuess = 'tvBroadcast'; break;
|
|
420
|
+
case 'radioclip':
|
|
421
|
+
case 'radioepisode':
|
|
422
|
+
t.so = 'radioBroadcast'; break;
|
|
423
|
+
case 'radioseries':
|
|
424
|
+
t.soGuess = 'radioBroadcast'; break;
|
|
425
|
+
case 'presentationdigitaldocument':
|
|
426
|
+
t.soGuess = 'presentation'; break;
|
|
427
|
+
case 'message':
|
|
428
|
+
case 'emailmessage':
|
|
429
|
+
t.so = 'email'; break;
|
|
430
|
+
case 'movie':
|
|
431
|
+
t.so = 'film'; break;
|
|
432
|
+
case 'musicrecording':
|
|
433
|
+
case 'musicalbum':
|
|
434
|
+
case 'audiobook':
|
|
435
|
+
case 'audioobject':
|
|
436
|
+
t.so = 'audioRecording'; break;
|
|
437
|
+
case 'softwareapplication':
|
|
438
|
+
case 'mobileapplication':
|
|
439
|
+
case 'videogame':
|
|
440
|
+
case 'webapplication':
|
|
441
|
+
case 'softwaresourcecode':
|
|
442
|
+
t.so = 'computerProgram'; break;
|
|
443
|
+
case 'painting':
|
|
444
|
+
case 'photograph':
|
|
445
|
+
case 'visualartwork':
|
|
446
|
+
case 'sculpture':
|
|
447
|
+
t.so = 'artwork'; break;
|
|
448
|
+
case 'datacatalog':
|
|
449
|
+
case 'dataset':
|
|
450
|
+
t.so = datasetType; break;
|
|
451
|
+
// specials cases
|
|
452
|
+
case "article":
|
|
453
|
+
// choose between journal, newspaper, and magazine articles
|
|
454
|
+
container = getNodeByType(isPartOf, [n.bib + "Journal", n.bibo + "Journal"]);
|
|
455
|
+
if (container) {
|
|
456
|
+
t.bib = "journalArticle";
|
|
457
|
+
break;
|
|
458
|
+
}
|
|
459
|
+
container = getNodeByType(isPartOf, [n.bib + "Periodical", n.bibo + "Periodical"]);
|
|
460
|
+
if (container) {
|
|
461
|
+
t.bib = "magazineArticle";
|
|
462
|
+
break;
|
|
463
|
+
}
|
|
464
|
+
container = getNodeByType(isPartOf, [n.bib + "Newspaper", n.bibo + "Newspaper"]);
|
|
465
|
+
if (container) {
|
|
466
|
+
t.bib = "newspaperArticle";
|
|
467
|
+
break;
|
|
468
|
+
}
|
|
469
|
+
if (pref == n.so) {
|
|
470
|
+
container = getNodeByType(isPartOf, [n.so + "PublicationIssue", n.so + "PublicationVolume"]);
|
|
471
|
+
if (container) {
|
|
472
|
+
t.so = "journalArticle";
|
|
473
|
+
}
|
|
474
|
+
else {
|
|
475
|
+
t.soGuess = 'magazineArticle';
|
|
476
|
+
}
|
|
477
|
+
}
|
|
478
|
+
break;
|
|
479
|
+
// zotero
|
|
480
|
+
case "attachment":
|
|
481
|
+
// unless processing of independent attachment is intended, don't
|
|
482
|
+
// process
|
|
483
|
+
|
|
484
|
+
// process as file
|
|
485
|
+
t.zotero = "attachment";
|
|
486
|
+
|
|
487
|
+
var path = getFirstResults(node, [n.z + "path", rdf + "resource"]);
|
|
488
|
+
if (path) {
|
|
489
|
+
newItem.path = Zotero.RDF.getResourceURI(path[0]);
|
|
490
|
+
}
|
|
491
|
+
newItem.charset = getFirstResults(node, [n.link + "charset"], true);
|
|
492
|
+
newItem.mimeType = getFirstResults(node, [n.link + "type"], true);
|
|
493
|
+
}
|
|
494
|
+
}
|
|
495
|
+
|
|
496
|
+
// zotero:itemType, zotero:type
|
|
497
|
+
type = getFirstResults(node, [n.z + "itemType", n.z + "type"], true);
|
|
498
|
+
if (type && isNaN(parseInt(type)) // itemTypeExists also takes item type IDs. We don't want to consider those
|
|
499
|
+
&& ZU.itemTypeExists(type)
|
|
500
|
+
) {
|
|
501
|
+
t.zotero = type;
|
|
502
|
+
if (type == "encyclopediaArticle" || type == "dictionaryEntry") {
|
|
503
|
+
container = getNodeByType(isPartOf, n.bib + "Book");
|
|
504
|
+
}
|
|
505
|
+
else if (type == "conferencePaper") {
|
|
506
|
+
container = getNodeByType(isPartOf, n.bib + "Journal");
|
|
507
|
+
}
|
|
508
|
+
}
|
|
509
|
+
|
|
510
|
+
// dc:type, dcterms:type
|
|
511
|
+
type = getFirstResults(node, [n.dc + "type", n.dc1_0 + "type", n.dcterms + "type"], true);
|
|
512
|
+
if (type) {
|
|
513
|
+
if (isNaN(parseInt(type)) && ZU.itemTypeExists(type)) {
|
|
514
|
+
t.dc = type;
|
|
515
|
+
}
|
|
516
|
+
else {
|
|
517
|
+
// on eprints the type fields are often in the form "Journal Article", "Conference Item" etc.
|
|
518
|
+
type = type.toLowerCase().replace(/\s/g, "");
|
|
519
|
+
switch (type) {
|
|
520
|
+
// eprints
|
|
521
|
+
// from http://www.ukoln.ac.uk/repositories/digirep/index/Eprints_Type_Vocabulary_Encoding_Scheme
|
|
522
|
+
case 'book':
|
|
523
|
+
case 'patent':
|
|
524
|
+
case 'report':
|
|
525
|
+
case 'thesis':
|
|
526
|
+
t.dc = type;
|
|
527
|
+
break;
|
|
528
|
+
case 'bookitem':
|
|
529
|
+
t.dc = 'bookSection';
|
|
530
|
+
break;
|
|
531
|
+
// case 'bookreview':
|
|
532
|
+
case 'conferenceitem':
|
|
533
|
+
case 'conferencepaper':
|
|
534
|
+
case 'conferenceposter':
|
|
535
|
+
t.dc = 'conferencePaper';
|
|
536
|
+
break;
|
|
537
|
+
case 'dataset':
|
|
538
|
+
t.dc = datasetType;
|
|
539
|
+
break;
|
|
540
|
+
case 'article': // from http://www.idealliance.org/specifications/prism/specifications/prism-controlled-vocabularies/prism-12-controlled-vocabularies
|
|
541
|
+
case 'journalitem':
|
|
542
|
+
case 'journalarticle':
|
|
543
|
+
case 'submittedjournalarticle':
|
|
544
|
+
case 'text.serial.journal':
|
|
545
|
+
t.dc = 'journalArticle';
|
|
546
|
+
break;
|
|
547
|
+
case 'newsitem':
|
|
548
|
+
t.dc = 'newspaperArticle';
|
|
549
|
+
break;
|
|
550
|
+
case 'scholarlytext':
|
|
551
|
+
t.dc = 'journalArticle';
|
|
552
|
+
break;
|
|
553
|
+
case 'workingpaper':
|
|
554
|
+
t.dc = 'report';
|
|
555
|
+
break;
|
|
556
|
+
|
|
557
|
+
// via examples from oro.open.ac.uk, http://eprints.soton.ac.uk/
|
|
558
|
+
case 'musicitem':
|
|
559
|
+
t.dcGuess = 'audioRecording';
|
|
560
|
+
break;
|
|
561
|
+
case 'artdesignitem':
|
|
562
|
+
t.dcGuess = 'artwork`';
|
|
563
|
+
break;
|
|
564
|
+
case 'authoredbook':
|
|
565
|
+
t.dc = 'book';
|
|
566
|
+
break;
|
|
567
|
+
case 'bookchapter':
|
|
568
|
+
t.dc = 'bookSection';
|
|
569
|
+
break;
|
|
570
|
+
|
|
571
|
+
// via examples from https://edoc.hu-berlin.de/
|
|
572
|
+
case 'bachelorthesis':
|
|
573
|
+
case 'masterthesis':
|
|
574
|
+
case 'doctoralthesis':
|
|
575
|
+
t.dc = 'thesis';
|
|
576
|
+
break;
|
|
577
|
+
|
|
578
|
+
// from http://www.idealliance.org/specifications/prism/specifications/prism-controlled-vocabularies/prism-12-controlled-vocabularies
|
|
579
|
+
// some are the same as eprints and are handled above
|
|
580
|
+
case 'electronicbook':
|
|
581
|
+
t.dc = 'book';
|
|
582
|
+
break;
|
|
583
|
+
case 'homepage':
|
|
584
|
+
case 'webpage':
|
|
585
|
+
t.dc = 'webpage';
|
|
586
|
+
break;
|
|
587
|
+
case 'illustration':
|
|
588
|
+
t.dc = 'artwork';
|
|
589
|
+
break;
|
|
590
|
+
case 'map':
|
|
591
|
+
t.dc = 'map';
|
|
592
|
+
break;
|
|
593
|
+
|
|
594
|
+
// from http://dublincore.org/documents/dcmi-type-vocabulary/
|
|
595
|
+
// this vocabulary is much broader
|
|
596
|
+
case 'event':
|
|
597
|
+
// very broad, but has an associated location
|
|
598
|
+
t.dcGuess = 'presentation';
|
|
599
|
+
break;
|
|
600
|
+
case 'image':
|
|
601
|
+
// this includes almost any graphic, moving or not
|
|
602
|
+
t.dcGuess = 'artwork';
|
|
603
|
+
break;
|
|
604
|
+
case 'movingimage':
|
|
605
|
+
// could be either film, tvBroadcast, or videoRecording
|
|
606
|
+
t.dcGuess = 'videoRecording';
|
|
607
|
+
break;
|
|
608
|
+
case 'software':
|
|
609
|
+
t.dcGuess = 'computerProgram';
|
|
610
|
+
break;
|
|
611
|
+
case 'sound':
|
|
612
|
+
// could be podcast, radioBroadcast, or audioRecording
|
|
613
|
+
t.dcGuess = 'audioRecording';
|
|
614
|
+
break;
|
|
615
|
+
case 'stillimage':
|
|
616
|
+
// could be map or artwork
|
|
617
|
+
t.dcGuess = 'artwork';
|
|
618
|
+
break;
|
|
619
|
+
case 'text':
|
|
620
|
+
// very broad
|
|
621
|
+
t.dcGuess = 'journalArticle';
|
|
622
|
+
break;
|
|
623
|
+
// collection, interactiveresource, physicalobject,
|
|
624
|
+
// service
|
|
625
|
+
}
|
|
626
|
+
}
|
|
627
|
+
}
|
|
628
|
+
|
|
629
|
+
|
|
630
|
+
type = getFirstResults(node, [n.eprints + "type"], true);
|
|
631
|
+
if (type) {
|
|
632
|
+
switch (type) {
|
|
633
|
+
// eprints
|
|
634
|
+
// from http://www.ukoln.ac.uk/repositories/digirep/index/Eprints_Type_Vocabulary_Encoding_Scheme
|
|
635
|
+
case 'book':
|
|
636
|
+
case 'patent':
|
|
637
|
+
case 'report':
|
|
638
|
+
case 'thesis':
|
|
639
|
+
t.eprints = type;
|
|
640
|
+
break;
|
|
641
|
+
case 'bookitem':
|
|
642
|
+
t.eprints = 'bookSection';
|
|
643
|
+
break;
|
|
644
|
+
// case 'bookreview':
|
|
645
|
+
|
|
646
|
+
case 'conferenceitem':
|
|
647
|
+
case 'conferencepaper':
|
|
648
|
+
case 'conferenceposter':
|
|
649
|
+
t.eprints = 'conferencePaper';
|
|
650
|
+
break;
|
|
651
|
+
case 'dataset':
|
|
652
|
+
t.eprints = datasetType;
|
|
653
|
+
break;
|
|
654
|
+
case 'journalitem':
|
|
655
|
+
case 'journalarticle':
|
|
656
|
+
case 'submittedjournalarticle':
|
|
657
|
+
case 'article':
|
|
658
|
+
t.eprints = 'journalArticle';
|
|
659
|
+
break;
|
|
660
|
+
case 'newsitem':
|
|
661
|
+
t.eprints = 'newspaperArticle';
|
|
662
|
+
break;
|
|
663
|
+
case 'scholarlytext':
|
|
664
|
+
t.eprints = 'journalArticle';
|
|
665
|
+
break;
|
|
666
|
+
case 'workingpaper':
|
|
667
|
+
t.eprints = 'report';
|
|
668
|
+
break;
|
|
669
|
+
// from samples at http://oro.open.ac.uk, http://eprints.soton.ac.uk/, http://eprints.biblio.unitn.it
|
|
670
|
+
case 'techreport':
|
|
671
|
+
t.eprints = 'report';
|
|
672
|
+
break;
|
|
673
|
+
case 'bookedit':
|
|
674
|
+
case 'proceedings':
|
|
675
|
+
t.eprints = 'book';
|
|
676
|
+
break;
|
|
677
|
+
case 'book_section':
|
|
678
|
+
t.eprints = 'bookSection';
|
|
679
|
+
break;
|
|
680
|
+
case 'ad_item':
|
|
681
|
+
t.eprints = 'artwork';
|
|
682
|
+
break;
|
|
683
|
+
case 'mu_item':
|
|
684
|
+
t.eprints = 'audioRecording';
|
|
685
|
+
break;
|
|
686
|
+
case 'confpaper':
|
|
687
|
+
case 'conference_item':
|
|
688
|
+
if (getFirstResults(node, [n.eprints + "ispublished"], true) == "unpub") {
|
|
689
|
+
t.eprints = 'presentation';
|
|
690
|
+
}
|
|
691
|
+
else t.eprints = 'conferencePaper';
|
|
692
|
+
break;
|
|
693
|
+
}
|
|
694
|
+
}
|
|
695
|
+
|
|
696
|
+
|
|
697
|
+
// og:type
|
|
698
|
+
type = getFirstResults(node, [n.og + "type"], true);
|
|
699
|
+
switch (type) {
|
|
700
|
+
case "video.movie":
|
|
701
|
+
case "video.episode":
|
|
702
|
+
case "video.tv_show":
|
|
703
|
+
case "video.other":
|
|
704
|
+
t.og = "videoRecording";
|
|
705
|
+
break;
|
|
706
|
+
case "article":
|
|
707
|
+
t.ogGuess = "journalArticle";
|
|
708
|
+
break;
|
|
709
|
+
case "book":
|
|
710
|
+
t.og = "book";
|
|
711
|
+
break;
|
|
712
|
+
case "music.song":
|
|
713
|
+
case "music.album":
|
|
714
|
+
t.og = "audioRecording";
|
|
715
|
+
break;
|
|
716
|
+
case "website":
|
|
717
|
+
t.og = "webpage";
|
|
718
|
+
break;
|
|
719
|
+
}
|
|
720
|
+
|
|
721
|
+
// PRISM:aggregationtype
|
|
722
|
+
/** is this actually inside container?*/
|
|
723
|
+
type = getFirstResults(node, [n.prism + "aggregationtype",
|
|
724
|
+
n.prism2_0 + "aggregationtype",
|
|
725
|
+
n.prism2_1 + "aggregationtype"]);
|
|
726
|
+
switch (type) {
|
|
727
|
+
case 'book':
|
|
728
|
+
t.prism = 'bookSection';
|
|
729
|
+
break;
|
|
730
|
+
case 'feed':
|
|
731
|
+
// could also be email
|
|
732
|
+
t.prismGuess = 'blogPost';
|
|
733
|
+
break;
|
|
734
|
+
case 'journal':
|
|
735
|
+
t.prism = 'journalArticle';
|
|
736
|
+
break;
|
|
737
|
+
case 'magazine':
|
|
738
|
+
t.prism = 'magazineArticle';
|
|
739
|
+
break;
|
|
740
|
+
case 'newsletter':
|
|
741
|
+
t.prism = 'newspaperArticle';
|
|
742
|
+
break;
|
|
743
|
+
// pamphlet, other, manual, catalog
|
|
744
|
+
}
|
|
745
|
+
|
|
746
|
+
// PRISM:genre
|
|
747
|
+
type = getFirstResults(node, [n.prism + "genre",
|
|
748
|
+
n.prism2_0 + "genre",
|
|
749
|
+
n.prism2_1 + "genre"]);
|
|
750
|
+
switch (type) {
|
|
751
|
+
case 'abstract':
|
|
752
|
+
case 'acknowledgements':
|
|
753
|
+
case 'authorbio':
|
|
754
|
+
case 'bibliography':
|
|
755
|
+
case 'index':
|
|
756
|
+
case 'tableofcontents':
|
|
757
|
+
t.prism = 'bookSection';
|
|
758
|
+
break;
|
|
759
|
+
case 'autobiography':
|
|
760
|
+
case 'biography':
|
|
761
|
+
t.prism = 'book';
|
|
762
|
+
break;
|
|
763
|
+
case 'blogentry':
|
|
764
|
+
t.prism = 'blogPost';
|
|
765
|
+
break;
|
|
766
|
+
case 'homepage':
|
|
767
|
+
case 'webliography':
|
|
768
|
+
t.prism = 'webpage';
|
|
769
|
+
break;
|
|
770
|
+
case 'interview':
|
|
771
|
+
t.prism = 'interview';
|
|
772
|
+
break;
|
|
773
|
+
case 'letters':
|
|
774
|
+
t.prism = 'letter';
|
|
775
|
+
break;
|
|
776
|
+
case 'adaptation':
|
|
777
|
+
case 'analysis':
|
|
778
|
+
t.prismGuess = 'journalArticle';
|
|
779
|
+
break;
|
|
780
|
+
case 'column':
|
|
781
|
+
case 'newsbulletin':
|
|
782
|
+
case 'opinion':
|
|
783
|
+
// magazine or newspaper
|
|
784
|
+
t.prismGuess = 'newspaperArticle';
|
|
785
|
+
break;
|
|
786
|
+
case 'coverstory':
|
|
787
|
+
case 'essay':
|
|
788
|
+
case 'feature':
|
|
789
|
+
case 'insidecover':
|
|
790
|
+
// journal or magazine
|
|
791
|
+
t.prismGuess = 'magazineArticle';
|
|
792
|
+
break;
|
|
793
|
+
// advertorial; advertisement; brief; chronology; classifiedad;
|
|
794
|
+
// correction; cover; coverpackage; electionresults; eventscalendar;
|
|
795
|
+
// excerpt; photoshoot; featurepackage; financialstatement;
|
|
796
|
+
// interactivecontent; legaldocument; masthead; notice; obituary;
|
|
797
|
+
// photoessay; poem; poll; pressrelease; productdescription; profile;
|
|
798
|
+
// quotation; ranking; recipe; reprint; response; review; schedule;
|
|
799
|
+
// sidebar; stockquote; sectiontableofcontents; transcript; wirestory
|
|
800
|
+
}
|
|
801
|
+
|
|
802
|
+
// PRISM:platform
|
|
803
|
+
type = getFirstResults(node, [n.prism + "platform",
|
|
804
|
+
n.prism2_0 + "platform",
|
|
805
|
+
n.prism2_1 + "platform"]);
|
|
806
|
+
switch (type) {
|
|
807
|
+
case 'broadcast':
|
|
808
|
+
t.prismGuess = 'tvBroadcast';
|
|
809
|
+
break;
|
|
810
|
+
case 'web':
|
|
811
|
+
t.prismGuess = 'webpage';
|
|
812
|
+
break;
|
|
813
|
+
}
|
|
814
|
+
|
|
815
|
+
var itemType = t.zotero || t.bib || t.prism || t.eprints || t.og || t.dc
|
|
816
|
+
|| t.so
|
|
817
|
+
|| exports.defaultUnknownType || t.zoteroGuess || t.bibGuess
|
|
818
|
+
|| t.prismGuess || t.ogGuess || t.dcGuess || t.soGuess;
|
|
819
|
+
|
|
820
|
+
// Z.debug(t);
|
|
821
|
+
// in case we still don't have a container, double-check
|
|
822
|
+
// some are copied from above
|
|
823
|
+
if (!container) {
|
|
824
|
+
switch (itemType) {
|
|
825
|
+
case "blogPost":
|
|
826
|
+
container = getNodeByType(isPartOf, n.z + "Blog");
|
|
827
|
+
break;
|
|
828
|
+
case "forumPost":
|
|
829
|
+
container = getNodeByType(isPartOf, n.z + "Forum");
|
|
830
|
+
break;
|
|
831
|
+
case "webpage":
|
|
832
|
+
container = getNodeByType(isPartOf, n.z + "Website");
|
|
833
|
+
break;
|
|
834
|
+
case "bookSection":
|
|
835
|
+
container = getNodeByType(isPartOf, n.bib + "Book");
|
|
836
|
+
break;
|
|
837
|
+
case "case":
|
|
838
|
+
container = getNodeByType(isPartOf, [n.bib + "CourtReporter", n.bibo + "CourtReporter"]);
|
|
839
|
+
break;
|
|
840
|
+
case "journalArticle":
|
|
841
|
+
container = getNodeByType(isPartOf, [n.bib + "Journal", n.bibo + "Journal"]);
|
|
842
|
+
break;
|
|
843
|
+
case "magazineArticle":
|
|
844
|
+
container = getNodeByType(isPartOf, [n.bib + "Periodical", n.bibo + "Periodical", n.so + "Periodical"]);
|
|
845
|
+
break;
|
|
846
|
+
case "newspaperArticle":
|
|
847
|
+
container = getNodeByType(isPartOf, [n.bib + "Newspaper", n.bibo + "Newspaper"]);
|
|
848
|
+
break;
|
|
849
|
+
}
|
|
850
|
+
}
|
|
851
|
+
|
|
852
|
+
// fill return object which is passed as an argument
|
|
853
|
+
ret.container = container;
|
|
854
|
+
ret.containerPeriodical = containerPeriodical;
|
|
855
|
+
ret.containerPublicationVolume = containerPublicationVolume;
|
|
856
|
+
ret.containerPublicationIssue = containerPublicationIssue;
|
|
857
|
+
ret.isPartOf = isPartOf;
|
|
858
|
+
|
|
859
|
+
return itemType;
|
|
860
|
+
}
|
|
861
|
+
|
|
862
|
+
|
|
863
|
+
function importItem(newItem, node) {
|
|
864
|
+
var ret = {};
|
|
865
|
+
var itemType = detectType(newItem, node, ret);
|
|
866
|
+
var isZoteroRDF = false;
|
|
867
|
+
if (getFirstResults(node, [n.z + "itemType", n.z + "type"], true)) {
|
|
868
|
+
isZoteroRDF = true;
|
|
869
|
+
}
|
|
870
|
+
newItem.itemType = exports.itemType || itemType;
|
|
871
|
+
var container = ret.container;
|
|
872
|
+
var containerPeriodical = ret.containerPeriodical;
|
|
873
|
+
var containerPublicationVolume = ret.containerPublicationVolume;
|
|
874
|
+
// var containerPublicationIssue = ret.containerPublicationIssue;
|
|
875
|
+
var isPartOf = ret.isPartOf;
|
|
876
|
+
|
|
877
|
+
// title
|
|
878
|
+
newItem.title = getFirstResults(node, [n.dc + "title",
|
|
879
|
+
n.dc1_0 + "title",
|
|
880
|
+
n.dcterms + "title",
|
|
881
|
+
n.eprints + "title",
|
|
882
|
+
n.vcard2 + "fn",
|
|
883
|
+
n.og + "title",
|
|
884
|
+
n.so + "headline"], true);
|
|
885
|
+
if (!newItem.itemType) {
|
|
886
|
+
if (!newItem.title) { // require the title
|
|
887
|
+
// (if not a known type)
|
|
888
|
+
return false;
|
|
889
|
+
}
|
|
890
|
+
else {
|
|
891
|
+
// default to journalArticle
|
|
892
|
+
newItem.itemType = "journalArticle";
|
|
893
|
+
}
|
|
894
|
+
}
|
|
895
|
+
else if (!newItem.title) {
|
|
896
|
+
// name is a generic property and not only for titles
|
|
897
|
+
newItem.title = getFirstResults(node, [n.so + "name"], true);
|
|
898
|
+
}
|
|
899
|
+
|
|
900
|
+
// regular author-type creators
|
|
901
|
+
var possibleCreatorTypes = Zotero.Utilities.getCreatorsForType(newItem.itemType);
|
|
902
|
+
var creators;
|
|
903
|
+
for (let i = 0; i < possibleCreatorTypes.length; i++) {
|
|
904
|
+
var creatorType = possibleCreatorTypes[i];
|
|
905
|
+
if (creatorType == "author") {
|
|
906
|
+
creators = getFirstResults(node, [n.bib + "authors",
|
|
907
|
+
n.so + "author",
|
|
908
|
+
n.so + "creator",
|
|
909
|
+
n.dc + "creator",
|
|
910
|
+
n.dc + "creator.PersonalName",
|
|
911
|
+
n.dc1_0 + "creator",
|
|
912
|
+
n.dcterms + "creator",
|
|
913
|
+
n.eprints + "creators_name",
|
|
914
|
+
n.dc + "contributor",
|
|
915
|
+
n.dc1_0 + "contributor",
|
|
916
|
+
n.dcterms + "contributor"]);
|
|
917
|
+
}
|
|
918
|
+
else if (creatorType == "editor" || creatorType == "contributor") {
|
|
919
|
+
creators = getFirstResults(node, [n.bib + creatorType + "s",
|
|
920
|
+
n.eprints + creatorType + "s_name",
|
|
921
|
+
n.so + creatorType]);
|
|
922
|
+
// get presenters in unpublished conference papers on eprints
|
|
923
|
+
}
|
|
924
|
+
else if (creatorType == "presenter") {
|
|
925
|
+
creators = getFirstResults(node, [n.z + creatorType + "s", n.eprints + "creators_name"]);
|
|
926
|
+
}
|
|
927
|
+
else if (creatorType == "castMember") {
|
|
928
|
+
creators = getFirstResults(node, [n.video + "actor"]);
|
|
929
|
+
}
|
|
930
|
+
else if (creatorType == "scriptwriter") {
|
|
931
|
+
creators = getFirstResults(node, [n.video + "writer"]);
|
|
932
|
+
}
|
|
933
|
+
else if (creatorType == "producer") {
|
|
934
|
+
creators = getFirstResults(node, [n.so + "producer"]);
|
|
935
|
+
}
|
|
936
|
+
else if (creatorType == "programmer") {
|
|
937
|
+
creators = getFirstResults(node, [n.z + "programmers", n.so + "author", n.codemeta + "maintainer"]);
|
|
938
|
+
}
|
|
939
|
+
else {
|
|
940
|
+
creators = getFirstResults(node, [n.z + creatorType + "s"]);
|
|
941
|
+
}
|
|
942
|
+
|
|
943
|
+
if (creators) handleCreators(newItem, creators, creatorType);
|
|
944
|
+
}
|
|
945
|
+
|
|
946
|
+
|
|
947
|
+
// publicationTitle -- first try PRISM, then DC
|
|
948
|
+
newItem.publicationTitle = getFirstResults(node, [n.prism + "publicationName",
|
|
949
|
+
n.prism2_0 + "publicationName",
|
|
950
|
+
n.prism2_1 + "publicationName",
|
|
951
|
+
n.eprints + "publication",
|
|
952
|
+
n.eprints + "book_title",
|
|
953
|
+
n.dc + "source",
|
|
954
|
+
n.dc1_0 + "source",
|
|
955
|
+
n.dcterms + "source"], true);
|
|
956
|
+
if (container) {
|
|
957
|
+
newItem.publicationTitle = getFirstResults(container, [n.dc + "title", n.dc1_0 + "title", n.dcterms + "title", n.so + "name"], true);
|
|
958
|
+
// these fields mean the same thing
|
|
959
|
+
newItem.reporter = newItem.publicationTitle;
|
|
960
|
+
}
|
|
961
|
+
if (containerPeriodical) {
|
|
962
|
+
newItem.publicationTitle = getFirstResults([containerPeriodical, containerPublicationVolume], [n.so + "name"], true);
|
|
963
|
+
}
|
|
964
|
+
|
|
965
|
+
var siteName = getFirstResults(node, [n.og + "site_name"], true);
|
|
966
|
+
if (siteName && !newItem.publicationTitle && (newItem.itemType == "blogPost" || newItem.itemType == "webpage" || newItem.itemType == "newspaperArticle")) {
|
|
967
|
+
newItem.publicationTitle = siteName;
|
|
968
|
+
}
|
|
969
|
+
// rights
|
|
970
|
+
newItem.rights = getFirstResults(node, [n.prism + "copyright", n.prism2_0 + "copyright", n.prism2_1 + "copyright", n.dc + "rights", n.dc1_0 + "rights", n.dcterms + "rights", n.so + "license"], true);
|
|
971
|
+
|
|
972
|
+
// section
|
|
973
|
+
var section = getNodeByType(isPartOf, n.bib + "Part");
|
|
974
|
+
if (section) {
|
|
975
|
+
newItem.section = getFirstResults(section, [n.dc + "title", n.dc1_0 + "title", n.dcterms + "title"], true);
|
|
976
|
+
}
|
|
977
|
+
if (!section) {
|
|
978
|
+
newItem.section = getFirstResults(node, [n.article + "section", n.so + "genre"], true);
|
|
979
|
+
}
|
|
980
|
+
|
|
981
|
+
// series
|
|
982
|
+
var series = getNodeByType(isPartOf, n.bib + "Series");
|
|
983
|
+
if (series) {
|
|
984
|
+
newItem.series = getFirstResults(series, [n.dc + "title", n.dc1_0 + "title", n.dcterms + "title"], true);
|
|
985
|
+
newItem.seriesTitle = getFirstResults(series, [n.dcterms + "alternative"], true);
|
|
986
|
+
newItem.seriesText = getFirstResults(series, [n.dc + "description", n.dc1_0 + "description", n.dcterms + "description"], true);
|
|
987
|
+
newItem.seriesNumber = getFirstResults(series, [n.dc + "identifier", n.dc1_0 + "identifier", n.dcterms + "description"], true);
|
|
988
|
+
}
|
|
989
|
+
|
|
990
|
+
// volume
|
|
991
|
+
newItem.volume = getFirstResults([container, node, containerPublicationVolume, containerPeriodical], [n.prism + "volume",
|
|
992
|
+
n.prism2_0 + "volume",
|
|
993
|
+
n.prism2_1 + "volume",
|
|
994
|
+
n.eprints + "volume",
|
|
995
|
+
n.bibo + "volume",
|
|
996
|
+
n.dc + "source.Volume",
|
|
997
|
+
n.dcterms + "citation.volume",
|
|
998
|
+
n.so + "volumeNumber"], true);
|
|
999
|
+
|
|
1000
|
+
// issue
|
|
1001
|
+
var issueNodes = [node];
|
|
1002
|
+
if (container) {
|
|
1003
|
+
issueNodes.unshift(container);
|
|
1004
|
+
}
|
|
1005
|
+
newItem.issue = getFirstResults(issueNodes, [n.prism + "number",
|
|
1006
|
+
n.prism2_0 + "number",
|
|
1007
|
+
n.prism2_1 + "number",
|
|
1008
|
+
n.eprints + "number",
|
|
1009
|
+
n.bibo + "issue",
|
|
1010
|
+
n.dc + "source.Issue",
|
|
1011
|
+
n.dcterms + "citation.issue",
|
|
1012
|
+
n.so + "issueNumber"], true);
|
|
1013
|
+
|
|
1014
|
+
|
|
1015
|
+
// Move issue to number if issue isn't valid for this type,
|
|
1016
|
+
// because number will automatically then also map to
|
|
1017
|
+
// patentNumber or reportNumber
|
|
1018
|
+
if (!ZU.fieldIsValidForType("issue", newItem.itemType)) {
|
|
1019
|
+
newItem.number = newItem.issue;
|
|
1020
|
+
delete newItem.issue;
|
|
1021
|
+
}
|
|
1022
|
+
|
|
1023
|
+
// edition
|
|
1024
|
+
newItem.edition = getFirstResults(node, [n.prism + "edition", n.prism2_0 + "edition", n.prism2_1 + "edition", n.bibo + "edition", n.so + "bookEdition", n.so + "version"], true);
|
|
1025
|
+
// these fields mean the same thing
|
|
1026
|
+
newItem.versionNumber = newItem.edition;
|
|
1027
|
+
|
|
1028
|
+
// pages
|
|
1029
|
+
newItem.pages = getFirstResults(node, [n.bib + "pages", n.eprints + "pagerange", n.prism2_0 + "pageRange", n.prism2_1 + "pageRange", n.bibo + "pages", n.dc + "identifier.pageNumber", n.so + "pagination"], true);
|
|
1030
|
+
if (!newItem.pages) {
|
|
1031
|
+
var pages = [];
|
|
1032
|
+
var spage = getFirstResults(node, [n.prism + "startingPage", n.prism2_0 + "startingPage", n.prism2_1 + "startingPage", n.bibo + "pageStart", n.dcterms + "relation.spage", n.so + "pageStart"], true),
|
|
1033
|
+
epage = getFirstResults(node, [n.prism + "endingPage", n.prism2_0 + "endingPage", n.prism2_1 + "endingPage", n.bibo + "pageEnd", n.dcterms + "relation.epage", n.so + "pageEnd"], true);
|
|
1034
|
+
if (spage) pages.push(spage);
|
|
1035
|
+
if (epage) pages.push(epage);
|
|
1036
|
+
if (pages.length) newItem.pages = pages.join("-");
|
|
1037
|
+
}
|
|
1038
|
+
|
|
1039
|
+
// numPages
|
|
1040
|
+
newItem.numPages = getFirstResults(node, [n.bibo + "numPages", n.eprints + "pages", n.so + "numberOfPages"], true);
|
|
1041
|
+
|
|
1042
|
+
// numberOfVolumes
|
|
1043
|
+
newItem.numberOfVolumes = getFirstResults(node, [n.bibo + "numVolumes"], true);
|
|
1044
|
+
|
|
1045
|
+
// short title
|
|
1046
|
+
newItem.shortTitle = getFirstResults(node, [n.bibo + "shortTitle"], true);
|
|
1047
|
+
|
|
1048
|
+
// mediums
|
|
1049
|
+
newItem.artworkMedium = newItem.interviewMedium = getFirstResults(node, [n.dcterms + "medium"], true);
|
|
1050
|
+
|
|
1051
|
+
// programmingLanguage
|
|
1052
|
+
newItem.programmingLanguage = getFirstResults(node, [n.so + "programmingLanguage"], true);
|
|
1053
|
+
|
|
1054
|
+
// system
|
|
1055
|
+
newItem.system = getFirstResults(node, [n.so + "operatingSystem"], true);
|
|
1056
|
+
|
|
1057
|
+
// publisher
|
|
1058
|
+
var publisher = getFirstResults([node, containerPeriodical, containerPublicationVolume], [n.dc + "publisher",
|
|
1059
|
+
n.dc1_0 + "publisher",
|
|
1060
|
+
n.dcterms + "publisher",
|
|
1061
|
+
n.vcard2 + "org",
|
|
1062
|
+
n.eprints + "institution",
|
|
1063
|
+
n.so + "publisher",
|
|
1064
|
+
n.so + "publishedBy"]);
|
|
1065
|
+
if (publisher) {
|
|
1066
|
+
if (typeof (publisher[0]) == "string") {
|
|
1067
|
+
newItem.publisher = publisher[0];
|
|
1068
|
+
}
|
|
1069
|
+
else {
|
|
1070
|
+
let type = Zotero.RDF.getTargets(publisher[0], rdf + "type");
|
|
1071
|
+
if (type) {
|
|
1072
|
+
type = Zotero.RDF.getResourceURI(type[0]);
|
|
1073
|
+
switch (type) {
|
|
1074
|
+
case n.foaf + "Organization":
|
|
1075
|
+
case n.foaf + "Agent":
|
|
1076
|
+
newItem.publisher = getFirstResults(publisher[0], [n.foaf + "name"], true);
|
|
1077
|
+
var place = getFirstResults(publisher[0], [n.vcard + "adr"]);
|
|
1078
|
+
if (place) {
|
|
1079
|
+
newItem.place = getFirstResults(place[0], [n.vcard + "locality"]);
|
|
1080
|
+
}
|
|
1081
|
+
break;
|
|
1082
|
+
case n.vcard2 + "Organization":
|
|
1083
|
+
newItem.publisher = getFirstResults(publisher[0], [n.vcard2 + "organization-name"], true);
|
|
1084
|
+
break;
|
|
1085
|
+
default:
|
|
1086
|
+
newItem.publisher = getFirstResults(publisher[0], [n.so + "name"], true);
|
|
1087
|
+
newItem.place = getFirstResults(publisher[0], [n.so + "location"], true);
|
|
1088
|
+
break;
|
|
1089
|
+
}
|
|
1090
|
+
}
|
|
1091
|
+
}
|
|
1092
|
+
}
|
|
1093
|
+
|
|
1094
|
+
// place
|
|
1095
|
+
if (!newItem.place) {
|
|
1096
|
+
// Prefer place of publication to conference location
|
|
1097
|
+
newItem.place = getFirstResults(node, [n.eprints + "place_of_pub", n.eprints + "event_location"], true);
|
|
1098
|
+
}
|
|
1099
|
+
|
|
1100
|
+
// these fields mean the same thing
|
|
1101
|
+
newItem.distributor = newItem.label = newItem.company = newItem.institution = newItem.publisher;
|
|
1102
|
+
|
|
1103
|
+
// date
|
|
1104
|
+
newItem.date = getFirstResults(node, [n.eprints + "date",
|
|
1105
|
+
n.prism + "publicationDate",
|
|
1106
|
+
n.prism2_0 + "publicationDate",
|
|
1107
|
+
n.prism2_1 + "publicationDate",
|
|
1108
|
+
n.og + "published_time",
|
|
1109
|
+
n.article + "published_time",
|
|
1110
|
+
n.book + "release_date",
|
|
1111
|
+
n.music + "release_date",
|
|
1112
|
+
n.video + "release_date",
|
|
1113
|
+
n.dc + "date.issued",
|
|
1114
|
+
n.dcterms + "date.issued",
|
|
1115
|
+
n.dcterms + "issued",
|
|
1116
|
+
n.dc + "date",
|
|
1117
|
+
n.dc1_0 + "date",
|
|
1118
|
+
n.dcterms + "date",
|
|
1119
|
+
n.dcterms + "dateSubmitted",
|
|
1120
|
+
n.eprints + "datestamp",
|
|
1121
|
+
n.so + "datePublished"], true);
|
|
1122
|
+
// accessDate
|
|
1123
|
+
newItem.accessDate = getFirstResults(node, [n.dcterms + "dateSubmitted"], true);
|
|
1124
|
+
// lastModified
|
|
1125
|
+
newItem.lastModified = getFirstResults(node, [n.dcterms + "modified",
|
|
1126
|
+
n.so + "dateModified"], true);
|
|
1127
|
+
|
|
1128
|
+
// identifier
|
|
1129
|
+
var identifiers = getFirstResults(node, [n.dc + "identifier", n.dc1_0 + "identifier", n.dcterms + "identifier"]);
|
|
1130
|
+
if (container) {
|
|
1131
|
+
var containerIdentifiers = getFirstResults(container, [n.dc + "identifier", n.dc1_0 + "identifier", n.dcterms + "identifier"]);
|
|
1132
|
+
// concatenate sets of identifiers
|
|
1133
|
+
if (containerIdentifiers) {
|
|
1134
|
+
if (identifiers) {
|
|
1135
|
+
identifiers = identifiers.concat(containerIdentifiers);
|
|
1136
|
+
}
|
|
1137
|
+
else {
|
|
1138
|
+
identifiers = containerIdentifiers;
|
|
1139
|
+
}
|
|
1140
|
+
}
|
|
1141
|
+
}
|
|
1142
|
+
|
|
1143
|
+
if (identifiers) {
|
|
1144
|
+
for (var i in identifiers) {
|
|
1145
|
+
if (typeof (identifiers[i]) == "string") {
|
|
1146
|
+
// grab other things
|
|
1147
|
+
var beforeSpace = identifiers[i].substr(0, identifiers[i].indexOf(" ")).toUpperCase();
|
|
1148
|
+
|
|
1149
|
+
// Attempt to determine type of identifier by prefix label
|
|
1150
|
+
if (beforeSpace == "ISBN") {
|
|
1151
|
+
newItem.ISBN = identifiers[i].substr(5).toUpperCase();
|
|
1152
|
+
}
|
|
1153
|
+
else if (beforeSpace == "ISSN") {
|
|
1154
|
+
newItem.ISSN = identifiers[i].substr(5).toUpperCase();
|
|
1155
|
+
}
|
|
1156
|
+
else if (beforeSpace == "DOI") {
|
|
1157
|
+
newItem.DOI = identifiers[i].substr(4);
|
|
1158
|
+
}
|
|
1159
|
+
// Or just try parsing values
|
|
1160
|
+
else if (ZU.cleanISBN(identifiers[i])) {
|
|
1161
|
+
newItem.ISBN = ZU.cleanISBN(identifiers[i]);
|
|
1162
|
+
}
|
|
1163
|
+
else if (ZU.cleanISSN(identifiers[i])) {
|
|
1164
|
+
newItem.ISSN = ZU.cleanISSN(identifiers[i]);
|
|
1165
|
+
}
|
|
1166
|
+
else if (ZU.cleanDOI(identifiers[i])) {
|
|
1167
|
+
newItem.DOI = ZU.cleanDOI(identifiers[i]);
|
|
1168
|
+
}
|
|
1169
|
+
}
|
|
1170
|
+
else {
|
|
1171
|
+
// grab URLs
|
|
1172
|
+
let type = Zotero.RDF.getTargets(identifiers[i], rdf + "type");
|
|
1173
|
+
if (type && (type = Zotero.RDF.getResourceURI(type[0])) && type == n.dcterms + "URI") {
|
|
1174
|
+
newItem.url = getFirstResults(identifiers[i], [rdf + "value"], true);
|
|
1175
|
+
}
|
|
1176
|
+
}
|
|
1177
|
+
}
|
|
1178
|
+
}
|
|
1179
|
+
|
|
1180
|
+
// ISSN, if encoded per PRISM
|
|
1181
|
+
newItem.ISSN = getFirstResults([container, node, containerPeriodical, containerPublicationVolume], [n.prism + "issn",
|
|
1182
|
+
n.prism2_0 + "issn",
|
|
1183
|
+
n.prism2_1 + "issn",
|
|
1184
|
+
n.eprints + "issn",
|
|
1185
|
+
n.bibo + "issn",
|
|
1186
|
+
n.dc + "source.ISSN",
|
|
1187
|
+
n.prism + "eIssn",
|
|
1188
|
+
n.prism2_0 + "eIssn",
|
|
1189
|
+
n.prism2_1 + "eIssn",
|
|
1190
|
+
n.bibo + "eissn",
|
|
1191
|
+
n.so + "issn"], true) || newItem.ISSN;
|
|
1192
|
+
// ISBN from PRISM or OG
|
|
1193
|
+
newItem.ISBN = getFirstResults((container ? container : node), [n.prism2_1 + "isbn", n.bibo + "isbn", n.bibo + "isbn13", n.bibo + "isbn10", n.book + "isbn", n.so + "isbn"], true) || newItem.ISBN;
|
|
1194
|
+
// ISBN from eprints
|
|
1195
|
+
newItem.ISBN = getFirstResults(node, [n.eprints + "isbn"], true) || newItem.ISBN;
|
|
1196
|
+
// DOI from nonstandard DC, PRISM, or BIBO
|
|
1197
|
+
newItem.DOI = getFirstResults(node, [n.dc + "identifier.DOI", n.prism2_0 + "doi", n.prism2_1 + "doi", n.bibo + "doi"], true) || newItem.DOI;
|
|
1198
|
+
|
|
1199
|
+
if (!newItem.url) {
|
|
1200
|
+
var url = getFirstResults(node, [n.eprints + "official_url",
|
|
1201
|
+
n.vcard2 + "url",
|
|
1202
|
+
n.og + "url",
|
|
1203
|
+
n.prism2_0 + "url",
|
|
1204
|
+
n.prism2_1 + "url",
|
|
1205
|
+
n.bibo + "uri",
|
|
1206
|
+
n.so + "url",
|
|
1207
|
+
n.so + "sameAs"]);
|
|
1208
|
+
if (url) {
|
|
1209
|
+
newItem.url = Zotero.RDF.getResourceURI(url[0]);
|
|
1210
|
+
}
|
|
1211
|
+
}
|
|
1212
|
+
|
|
1213
|
+
// archiveLocation
|
|
1214
|
+
newItem.archiveLocation = getFirstResults(node, [n.dc + "coverage", n.dc1_0 + "coverage", n.dcterms + "coverage"], true);
|
|
1215
|
+
|
|
1216
|
+
// abstract
|
|
1217
|
+
newItem.abstractNote = getFirstResults(node, [n.eprints + "abstract",
|
|
1218
|
+
n.prism + "teaser",
|
|
1219
|
+
n.prism2_0 + "teaser",
|
|
1220
|
+
n.prism2_1 + "teaser",
|
|
1221
|
+
n.og + "description",
|
|
1222
|
+
n.bibo + "abstract",
|
|
1223
|
+
n.dcterms + "abstract",
|
|
1224
|
+
n.dc + "description.abstract",
|
|
1225
|
+
n.dcterms + "description.abstract",
|
|
1226
|
+
n.dc1_0 + "description",
|
|
1227
|
+
n.so + "description"], true);
|
|
1228
|
+
|
|
1229
|
+
// type
|
|
1230
|
+
let type = getFirstResults(node, [n.dc + "type", n.dc1_0 + "type", n.dcterms + "type"], true);
|
|
1231
|
+
|
|
1232
|
+
/** CUSTOM ITEM TYPE -- Keeping for <6.0.24 clients w/o dataset support **/
|
|
1233
|
+
if (datasetType != "dataset" && type && (type.toLowerCase() == "dataset" || type.toLowerCase() == "datacatalog")) {
|
|
1234
|
+
if (newItem.extra) {
|
|
1235
|
+
newItem.extra += "\nType: dataset";
|
|
1236
|
+
}
|
|
1237
|
+
else newItem.extra = "Type: dataset";
|
|
1238
|
+
}
|
|
1239
|
+
|
|
1240
|
+
|
|
1241
|
+
// these all mean the same thing
|
|
1242
|
+
var typeProperties = ["reportType",
|
|
1243
|
+
"letterType",
|
|
1244
|
+
"manuscriptType",
|
|
1245
|
+
"mapType",
|
|
1246
|
+
"thesisType",
|
|
1247
|
+
"websiteType",
|
|
1248
|
+
"presentationType",
|
|
1249
|
+
"postType",
|
|
1250
|
+
"audioFileType"];
|
|
1251
|
+
for (let i = 0; i < typeProperties.length; i++) {
|
|
1252
|
+
newItem[typeProperties[i]] = type;
|
|
1253
|
+
}
|
|
1254
|
+
|
|
1255
|
+
|
|
1256
|
+
// thesis type from eprints
|
|
1257
|
+
if (newItem.itemType == "thesis") {
|
|
1258
|
+
newItem.thesisType = getFirstResults(node, [n.eprints + "thesis_type"], true) || newItem.thesisType;
|
|
1259
|
+
}
|
|
1260
|
+
// presentation type from eprints
|
|
1261
|
+
if (newItem.itemType == "presentation") {
|
|
1262
|
+
newItem.presentationType = getFirstResults(node, [n.eprints + "event_type"], true) || newItem.presentationType;
|
|
1263
|
+
}
|
|
1264
|
+
|
|
1265
|
+
// conferenceName
|
|
1266
|
+
var conference = getFirstResults(node, [n.bib + "presentedAt"]);
|
|
1267
|
+
if (conference) {
|
|
1268
|
+
conference = conference[0];
|
|
1269
|
+
if (typeof (conference) == "string") {
|
|
1270
|
+
newItem.conferenceName = conference;
|
|
1271
|
+
}
|
|
1272
|
+
else {
|
|
1273
|
+
newItem.conferenceName = getFirstResults(conference, [n.dc + "title", n.dc1_0 + "title", n.dcterms + "title"], true);
|
|
1274
|
+
}
|
|
1275
|
+
}
|
|
1276
|
+
// from eprints
|
|
1277
|
+
if (!newItem.conferenceName) {
|
|
1278
|
+
newItem.conferenceName = getFirstResults(node, [n.eprints + "event_title"]);
|
|
1279
|
+
}
|
|
1280
|
+
// conference and meeting name are the same
|
|
1281
|
+
newItem.meetingName = newItem.conferenceName;
|
|
1282
|
+
|
|
1283
|
+
// journalAbbreviation
|
|
1284
|
+
newItem.journalAbbreviation = getFirstResults((container ? container : node), [n.dcterms + "alternative"], true);
|
|
1285
|
+
|
|
1286
|
+
// running Time
|
|
1287
|
+
newItem.runningTime = getFirstResults(node, [n.video + "duration", n.song + "duration", n.so + "duration"], true);
|
|
1288
|
+
|
|
1289
|
+
// address
|
|
1290
|
+
var adr = getFirstResults(node, [n.vcard2 + "adr"]);
|
|
1291
|
+
if (adr) {
|
|
1292
|
+
newItem.address = getFirstResults(adr[0], [n.vcard2 + "label"], true);
|
|
1293
|
+
}
|
|
1294
|
+
|
|
1295
|
+
// telephone
|
|
1296
|
+
newItem.telephone = getFirstResults(node, [n.vcard2 + "tel"], true);
|
|
1297
|
+
|
|
1298
|
+
// email
|
|
1299
|
+
newItem.email = getFirstResults(node, [n.vcard2 + "email"], true);
|
|
1300
|
+
|
|
1301
|
+
// accepted
|
|
1302
|
+
newItem.accepted = getFirstResults(node, [n.dcterms + "dateAccepted"], true);
|
|
1303
|
+
|
|
1304
|
+
// language
|
|
1305
|
+
newItem.language = getFirstResults(node, [n.dc + "language", n.dc1_0 + "language", n.dcterms + "language", n.so + "inLanguage"], true);
|
|
1306
|
+
|
|
1307
|
+
// see also
|
|
1308
|
+
processSeeAlso(node, newItem);
|
|
1309
|
+
|
|
1310
|
+
// description/attachment note
|
|
1311
|
+
if (newItem.itemType == "attachment") {
|
|
1312
|
+
newItem.note = getFirstResults(node, [n.dc + "description", n.dc1_0 + "description", n.dcterms + "description"], true);
|
|
1313
|
+
}
|
|
1314
|
+
// extra for Zotero RDF
|
|
1315
|
+
else if (isZoteroRDF) {
|
|
1316
|
+
newItem.extra = getFirstResults(node, [n.dc + "description"], true);
|
|
1317
|
+
}
|
|
1318
|
+
else if (!newItem.abstractNote) {
|
|
1319
|
+
newItem.abstractNote = getFirstResults(node, [n.dc + "description", n.dcterms + "description"], true);
|
|
1320
|
+
}
|
|
1321
|
+
|
|
1322
|
+
/** NOTES **/
|
|
1323
|
+
|
|
1324
|
+
var referencedBy = Zotero.RDF.getTargets(node, n.dcterms + "isReferencedBy");
|
|
1325
|
+
for (let i = 0; i < referencedBy.length; i++) {
|
|
1326
|
+
var referentNode = referencedBy[i];
|
|
1327
|
+
let type = Zotero.RDF.getTargets(referentNode, rdf + "type");
|
|
1328
|
+
if (type && Zotero.RDF.getResourceURI(type[0]) == n.bib + "Memo") {
|
|
1329
|
+
// if this is a memo
|
|
1330
|
+
let note = {};
|
|
1331
|
+
note.note = getFirstResults(referentNode, [rdf + "value", n.dc + "description", n.dc1_0 + "description", n.dcterms + "description"], true);
|
|
1332
|
+
if (note.note != undefined) {
|
|
1333
|
+
// handle see also
|
|
1334
|
+
processSeeAlso(referentNode, note);
|
|
1335
|
+
processTags(referentNode, note);
|
|
1336
|
+
|
|
1337
|
+
// add note
|
|
1338
|
+
newItem.notes.push(note);
|
|
1339
|
+
}
|
|
1340
|
+
}
|
|
1341
|
+
}
|
|
1342
|
+
|
|
1343
|
+
|
|
1344
|
+
if (newItem.itemType == "note") {
|
|
1345
|
+
// add note for standalone
|
|
1346
|
+
let note = getFirstResults(node, [rdf + "value", n.dc + "description", n.dc1_0 + "description", n.dcterms + "description"], true);
|
|
1347
|
+
// temporary fix for Zotero 3.0.7: set note to " " if it would otherwise be
|
|
1348
|
+
// empty to avoid an error
|
|
1349
|
+
newItem.note = note ? note : " ";
|
|
1350
|
+
}
|
|
1351
|
+
|
|
1352
|
+
/** TAGS **/
|
|
1353
|
+
|
|
1354
|
+
var subjects = getFirstResults(node, [n.dc + "subject",
|
|
1355
|
+
n.dc1_0 + "subject",
|
|
1356
|
+
n.dcterms + "subject",
|
|
1357
|
+
n.article + "tag",
|
|
1358
|
+
n.prism2_0 + "keyword",
|
|
1359
|
+
n.prism2_1 + "keyword",
|
|
1360
|
+
n.prism2_0 + "object",
|
|
1361
|
+
n.prism2_1 + "object",
|
|
1362
|
+
n.prism2_0 + "organization",
|
|
1363
|
+
n.prism2_1 + "organization",
|
|
1364
|
+
n.prism2_0 + "person",
|
|
1365
|
+
n.prism2_1 + "person",
|
|
1366
|
+
n.so + "keywords",
|
|
1367
|
+
n.so + "about"]);
|
|
1368
|
+
if (subjects) {
|
|
1369
|
+
for (let i = 0; i < subjects.length; i++) {
|
|
1370
|
+
var subject = subjects[i];
|
|
1371
|
+
if (typeof (subject) == "string") { // a regular tag
|
|
1372
|
+
newItem.tags.push(subject);
|
|
1373
|
+
}
|
|
1374
|
+
else { // a call number or automatic tag
|
|
1375
|
+
let type = Zotero.RDF.getTargets(subject, rdf + "type");
|
|
1376
|
+
if (type) {
|
|
1377
|
+
type = Zotero.RDF.getResourceURI(type[0]);
|
|
1378
|
+
if (callNumberTypes.includes(type)) {
|
|
1379
|
+
newItem.callNumber = getFirstResults(subject, [rdf + "value"], true);
|
|
1380
|
+
}
|
|
1381
|
+
else if (type == n.z + "AutomaticTag") {
|
|
1382
|
+
newItem.tags.push({ tag: getFirstResults(subject, [rdf + "value"], true), type: 1 });
|
|
1383
|
+
}
|
|
1384
|
+
}
|
|
1385
|
+
}
|
|
1386
|
+
}
|
|
1387
|
+
}
|
|
1388
|
+
|
|
1389
|
+
/** ATTACHMENTS **/
|
|
1390
|
+
var relations = getFirstResults(node, [n.link + "link"]);
|
|
1391
|
+
if (relations) {
|
|
1392
|
+
for (let i = 0; i < relations.length; i++) {
|
|
1393
|
+
var relation = relations[i];
|
|
1394
|
+
let type = Zotero.RDF.getTargets(relation, rdf + "type");
|
|
1395
|
+
if (Zotero.RDF.getResourceURI(type[0]) == n.z + "Attachment") {
|
|
1396
|
+
var attachment = new Zotero.Item();
|
|
1397
|
+
newItem.attachments.push(attachment);
|
|
1398
|
+
importItem(attachment, relation, n.z + "Attachment");
|
|
1399
|
+
}
|
|
1400
|
+
}
|
|
1401
|
+
}
|
|
1402
|
+
|
|
1403
|
+
var pdfURL = getFirstResults(node, [n.eprints + "document_url"]);
|
|
1404
|
+
if (pdfURL) {
|
|
1405
|
+
newItem.attachments.push({
|
|
1406
|
+
title: "Full Text PDF",
|
|
1407
|
+
mimeType: "application/pdf",
|
|
1408
|
+
path: pdfURL[0]
|
|
1409
|
+
});
|
|
1410
|
+
}
|
|
1411
|
+
|
|
1412
|
+
/** OTHER FIELDS **/
|
|
1413
|
+
var arcs = Zotero.RDF.getArcsOut(node);
|
|
1414
|
+
for (let i = 0; i < arcs.length; i++) {
|
|
1415
|
+
var uri = Zotero.RDF.getResourceURI(arcs[i]);
|
|
1416
|
+
if (uri.substr(0, n.z.length) == n.z
|
|
1417
|
+
// Skip z:path, handled for attachments above
|
|
1418
|
+
&& uri.substring(n.z.length) !== 'path') {
|
|
1419
|
+
var property = uri.substr(n.z.length);
|
|
1420
|
+
newItem[property] = Zotero.RDF.getTargets(node, n.z + property)[0];
|
|
1421
|
+
}
|
|
1422
|
+
}
|
|
1423
|
+
|
|
1424
|
+
return true;
|
|
1425
|
+
}
|
|
1426
|
+
|
|
1427
|
+
function getNodes(skipCollections) {
|
|
1428
|
+
var nodes = Zotero.RDF.getAllResources();
|
|
1429
|
+
|
|
1430
|
+
var goodNodes = [];
|
|
1431
|
+
for (let i = 0; i < nodes.length; i++) {
|
|
1432
|
+
var node = nodes[i];
|
|
1433
|
+
// figure out if this is a part of another resource, or a linked
|
|
1434
|
+
// attachment, or a creator
|
|
1435
|
+
if (Zotero.RDF.getSources(node, n.dcterms + "isPartOf")
|
|
1436
|
+
|| Zotero.RDF.getSources(node, n.bib + "presentedAt")
|
|
1437
|
+
|| Zotero.RDF.getSources(node, n.link + "link")
|
|
1438
|
+
|| Zotero.RDF.getSources(node, n.dcterms + "creator")) {
|
|
1439
|
+
continue;
|
|
1440
|
+
}
|
|
1441
|
+
|
|
1442
|
+
// type
|
|
1443
|
+
let type = Zotero.RDF.getTargets(node, rdf + "type");
|
|
1444
|
+
if (type) {
|
|
1445
|
+
type = Zotero.RDF.getResourceURI(type[0]);
|
|
1446
|
+
|
|
1447
|
+
// skip if this is not an independent attachment,
|
|
1448
|
+
if ((type == n.z + "Attachment" || type == n.bib + "Memo") && isPart(node)) {
|
|
1449
|
+
continue;
|
|
1450
|
+
}
|
|
1451
|
+
else if (skipCollections
|
|
1452
|
+
&& (type == n.bib + "Collection" || type == n.z + "Collection")) {
|
|
1453
|
+
continue;
|
|
1454
|
+
}
|
|
1455
|
+
}
|
|
1456
|
+
goodNodes.push(node);
|
|
1457
|
+
}
|
|
1458
|
+
return goodNodes;
|
|
1459
|
+
}
|
|
1460
|
+
|
|
1461
|
+
function doImport() {
|
|
1462
|
+
if (typeof Promise == 'undefined') {
|
|
1463
|
+
startImport(
|
|
1464
|
+
function () {},
|
|
1465
|
+
function (e) {
|
|
1466
|
+
throw e;
|
|
1467
|
+
}
|
|
1468
|
+
);
|
|
1469
|
+
return false;
|
|
1470
|
+
}
|
|
1471
|
+
return new Promise(function (resolve, reject) {
|
|
1472
|
+
startImport(resolve, reject);
|
|
1473
|
+
});
|
|
1474
|
+
}
|
|
1475
|
+
|
|
1476
|
+
function startImport(resolve, reject) {
|
|
1477
|
+
try {
|
|
1478
|
+
Zotero.setProgress(null);
|
|
1479
|
+
var nodes = getNodes();
|
|
1480
|
+
if (!nodes.length) {
|
|
1481
|
+
resolve();
|
|
1482
|
+
return;
|
|
1483
|
+
}
|
|
1484
|
+
|
|
1485
|
+
// keep track of collections while we're looping through
|
|
1486
|
+
var collections = [];
|
|
1487
|
+
importNext(nodes, 0, collections, resolve, reject);
|
|
1488
|
+
}
|
|
1489
|
+
catch (e) {
|
|
1490
|
+
reject(e);
|
|
1491
|
+
}
|
|
1492
|
+
}
|
|
1493
|
+
|
|
1494
|
+
function importNext(nodes, index, collections, resolve, reject) {
|
|
1495
|
+
try {
|
|
1496
|
+
for (let i = index; i < nodes.length; i++) {
|
|
1497
|
+
var node = nodes[i];
|
|
1498
|
+
|
|
1499
|
+
// type
|
|
1500
|
+
let type = Zotero.RDF.getTargets(node, rdf + "type");
|
|
1501
|
+
if (type) {
|
|
1502
|
+
type = Zotero.RDF.getResourceURI(type[0]);
|
|
1503
|
+
|
|
1504
|
+
// skip if this is not an independent attachment,
|
|
1505
|
+
if ((type == n.z + "Attachment" || type == n.bib + "Memo") && isPart(node)) {
|
|
1506
|
+
continue;
|
|
1507
|
+
}
|
|
1508
|
+
|
|
1509
|
+
// skip collections until all the items are done
|
|
1510
|
+
if (type == n.bib + "Collection" || type == n.z + "Collection") {
|
|
1511
|
+
collections.push(node);
|
|
1512
|
+
continue;
|
|
1513
|
+
}
|
|
1514
|
+
}
|
|
1515
|
+
|
|
1516
|
+
var newItem = new Zotero.Item();
|
|
1517
|
+
newItem.itemID = Zotero.RDF.getResourceURI(node);
|
|
1518
|
+
|
|
1519
|
+
if (importItem(newItem, node)) {
|
|
1520
|
+
var maybePromise = newItem.complete();
|
|
1521
|
+
if (maybePromise) {
|
|
1522
|
+
maybePromise.then(function () {
|
|
1523
|
+
importNext(nodes, i + 1, collections, resolve, reject);
|
|
1524
|
+
});
|
|
1525
|
+
return;
|
|
1526
|
+
}
|
|
1527
|
+
}
|
|
1528
|
+
|
|
1529
|
+
Zotero.setProgress((i + 1) / nodes.length * 100);
|
|
1530
|
+
}
|
|
1531
|
+
|
|
1532
|
+
// Collections
|
|
1533
|
+
for (let i = 0; i < collections.length; i++) {
|
|
1534
|
+
var collection = collections[i];
|
|
1535
|
+
if (!Zotero.RDF.getArcsIn(collection)) {
|
|
1536
|
+
var newCollection = new Zotero.Collection();
|
|
1537
|
+
processCollection(collection, newCollection);
|
|
1538
|
+
newCollection.complete();
|
|
1539
|
+
}
|
|
1540
|
+
}
|
|
1541
|
+
}
|
|
1542
|
+
catch (e) {
|
|
1543
|
+
reject(e);
|
|
1544
|
+
}
|
|
1545
|
+
|
|
1546
|
+
resolve();
|
|
1547
|
+
}
|
|
1548
|
+
|
|
1549
|
+
/**
|
|
1550
|
+
* Export doImport and defaultUnknownType to other translators
|
|
1551
|
+
*/
|
|
1552
|
+
var exports = {
|
|
1553
|
+
doImport: doImport,
|
|
1554
|
+
detectType: detectType,
|
|
1555
|
+
getNodes: getNodes,
|
|
1556
|
+
defaultUnknownType: false,
|
|
1557
|
+
itemType: false
|
|
1558
|
+
};
|
|
1559
|
+
|
|
1560
|
+
/** BEGIN TEST CASES **/
|
|
1561
|
+
var testCases = [
|
|
1562
|
+
{
|
|
1563
|
+
"type": "import",
|
|
1564
|
+
"input": "<?xml version=\"1.0\" encoding=\"utf-8\" ?>\n<rdf:RDF xmlns:rdf=\"http://www.w3.org/1999/02/22-rdf-syntax-ns#\"\n xmlns:rdfs=\"http://www.w3.org/2000/01/rdf-schema#\"\n xmlns:bibo=\"http://purl.org/ontology/bibo/\"\n xmlns:dc=\"http://purl.org/dc/terms/\"\n xmlns:owl=\"http://www.w3.org/2002/07/owl#\"\n xmlns:dc11=\"http://purl.org/dc/elements/1.1/\"\n xmlns:ns0=\"http://rdaregistry.info/Elements/u/\"\n xmlns:ns1=\"http://iflastandards.info/ns/isbd/elements/\"\n xmlns:foaf=\"http://xmlns.com/foaf/0.1/\">\n\n <bibo:Book rdf:about=\"http://d-nb.info/1054873992\">\n <dc:medium rdf:resource=\"http://rdaregistry.info/termList/RDACarrierType/1044\"/>\n <owl:sameAs rdf:resource=\"http://hub.culturegraph.org/resource/DNB-1054873992\"/>\n <dc11:identifier>(DE-101)1054873992</dc11:identifier>\n <dc11:identifier>(OCoLC)888461076</dc11:identifier>\n <bibo:isbn13>9783658060268</bibo:isbn13>\n <ns0:P60521>kart. : ca. EUR 39.99 (DE), ca. EUR 41.11 (AT), ca. sfr 50.00 (freier Pr.)</ns0:P60521>\n <bibo:isbn10>3658060263</bibo:isbn10>\n <bibo:gtin14>9783658060268</bibo:gtin14>\n <dc:language rdf:resource=\"http://id.loc.gov/vocabulary/iso639-2/ger\"/>\n <dc11:title>Das Adam-Smith-Projekt</dc11:title>\n <dc:creator rdf:resource=\"http://d-nb.info/gnd/136486045\"/>\n <dc11:publisher>Springer VS</dc11:publisher>\n <ns0:P60163>Wiesbaden</ns0:P60163>\n <ns0:P60333>Wiesbaden : Springer VS</ns0:P60333>\n <ns1:P1053>447 S.</ns1:P1053>\n <dc:isPartOf>Edition Theorie und Kritik</dc:isPartOf>\n <ns0:P60489>Zugl. leicht überarb. Fassung von: Berlin, Freie Univ., Diss., 2012</ns0:P60489>\n <dc:relation rdf:resource=\"http://d-nb.info/1064805604\"/>\n <dc:subject>Smith, Adam</dc:subject>\n <dc:subject>Liberalismus</dc:subject>\n <dc:subject>Rechtsordnung</dc:subject>\n <dc:subject>Foucault, Michel</dc:subject>\n <dc:subject>Macht</dc:subject>\n <dc:subject>Politische Philosophie</dc:subject>\n <dc:subject rdf:resource=\"http://dewey.info/class/320.512092/e22/\"/>\n <dc:tableOfContents rdf:resource=\"http://d-nb.info/1054873992/04\"/>\n <dc:issued>2015</dc:issued>\n <ns0:P60493>zur Genealogie der liberalen Gouvernementalität</ns0:P60493>\n </bibo:Book>\n \n <foaf:Person rdf:about=\"http://d-nb.info/gnd/136486045\">\n <foaf:familyName>Ronge</foaf:familyName>\n <foaf:givenName>Bastian</foaf:givenName>\n </foaf:Person>\n \n\n</rdf:RDF>",
|
|
1565
|
+
"items": [
|
|
1566
|
+
{
|
|
1567
|
+
"itemType": "book",
|
|
1568
|
+
"title": "Das Adam-Smith-Projekt",
|
|
1569
|
+
"creators": [
|
|
1570
|
+
{
|
|
1571
|
+
"creatorType": "author",
|
|
1572
|
+
"lastName": "Ronge",
|
|
1573
|
+
"firstName": "Bastian"
|
|
1574
|
+
}
|
|
1575
|
+
],
|
|
1576
|
+
"date": "2015",
|
|
1577
|
+
"ISBN": "9783658060268",
|
|
1578
|
+
"itemID": "http://d-nb.info/1054873992",
|
|
1579
|
+
"language": "http://id.loc.gov/vocabulary/iso639-2/ger",
|
|
1580
|
+
"publisher": "Springer VS",
|
|
1581
|
+
"attachments": [],
|
|
1582
|
+
"tags": [
|
|
1583
|
+
{
|
|
1584
|
+
"tag": "Foucault, Michel"
|
|
1585
|
+
},
|
|
1586
|
+
{
|
|
1587
|
+
"tag": "Liberalismus"
|
|
1588
|
+
},
|
|
1589
|
+
{
|
|
1590
|
+
"tag": "Macht"
|
|
1591
|
+
},
|
|
1592
|
+
{
|
|
1593
|
+
"tag": "Politische Philosophie"
|
|
1594
|
+
},
|
|
1595
|
+
{
|
|
1596
|
+
"tag": "Rechtsordnung"
|
|
1597
|
+
},
|
|
1598
|
+
{
|
|
1599
|
+
"tag": "Smith, Adam"
|
|
1600
|
+
}
|
|
1601
|
+
],
|
|
1602
|
+
"notes": [],
|
|
1603
|
+
"seeAlso": [
|
|
1604
|
+
"http://d-nb.info/1064805604"
|
|
1605
|
+
]
|
|
1606
|
+
}
|
|
1607
|
+
]
|
|
1608
|
+
},
|
|
1609
|
+
{
|
|
1610
|
+
"type": "import",
|
|
1611
|
+
"input": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<rdf:RDF\n xmlns:rdf=\"http://www.w3.org/1999/02/22-rdf-syntax-ns#\"\n xmlns:schema=\"http://schema.org/\"\n>\n <schema:ScholarlyArticle rdf:nodeID=\"N523cd27ac2f84bbca7fe726b027db6d2\">\n <schema:pageStart>360</schema:pageStart>\n <schema:isPartOf rdf:resource=\"http://schema.org/Article#bib-2/issue\"/>\n <schema:about>Catalog</schema:about>\n <schema:about>Works</schema:about>\n <schema:pageEnd>368</schema:pageEnd>\n <schema:author>Smiraglia, Richard P.</schema:author>\n <schema:name>Be Careful What You Wish For: FRBR, Some Lacunae, A Review</schema:name>\n <schema:sameAs rdf:resource=\"http://dx.doi.org/10.1080/01639374.2012.682254\"/>\n <schema:description>The library catalog as a catalog of works was an infectious idea, which together with research led to reconceptualization in the form of the FRBR conceptual model. Two categories of lacunae emerge--the expression entity, and gaps in the model such as aggregates and dynamic documents. Evidence needed to extend the FRBR model is available in contemporary research on instantiation. The challenge for the bibliographic community is to begin to think of FRBR as a form of knowledge organization system, adding a final dimension to classification. The articles in the present special issue offer a compendium of the promise of the FRBR model.</schema:description>\n </schema:ScholarlyArticle>\n <schema:PublicationIssue rdf:about=\"http://schema.org/Article#bib-2/issue\">\n <schema:isPartOf>\n <schema:Periodical rdf:about=\"http://schema.org/Article#bib-2/periodical\">\n <schema:volumeNumber>50</schema:volumeNumber>\n <schema:publisher>Taylor & Francis Group</schema:publisher>\n <schema:issn>1544-4554</schema:issn>\n <schema:issn>0163-9374</schema:issn>\n <schema:name>Cataloging & Classification Quarterly</schema:name>\n <rdf:type rdf:resource=\"http://schema.org/PublicationVolume\"/>\n </schema:Periodical>\n </schema:isPartOf>\n <schema:issueNumber>5</schema:issueNumber>\n <schema:datePublished rdf:datatype=\"http://schema.org/Date\">2012</schema:datePublished>\n </schema:PublicationIssue>\n</rdf:RDF>",
|
|
1612
|
+
"items": [
|
|
1613
|
+
{
|
|
1614
|
+
"itemType": "journalArticle",
|
|
1615
|
+
"title": "Be Careful What You Wish For: FRBR, Some Lacunae, A Review",
|
|
1616
|
+
"creators": [
|
|
1617
|
+
{
|
|
1618
|
+
"firstName": "Richard P.",
|
|
1619
|
+
"lastName": "Smiraglia",
|
|
1620
|
+
"creatorType": "author"
|
|
1621
|
+
}
|
|
1622
|
+
],
|
|
1623
|
+
"ISSN": "1544-4554",
|
|
1624
|
+
"abstractNote": "The library catalog as a catalog of works was an infectious idea, which together with research led to reconceptualization in the form of the FRBR conceptual model. Two categories of lacunae emerge--the expression entity, and gaps in the model such as aggregates and dynamic documents. Evidence needed to extend the FRBR model is available in contemporary research on instantiation. The challenge for the bibliographic community is to begin to think of FRBR as a form of knowledge organization system, adding a final dimension to classification. The articles in the present special issue offer a compendium of the promise of the FRBR model.",
|
|
1625
|
+
"issue": "5",
|
|
1626
|
+
"itemID": "_:n82",
|
|
1627
|
+
"pages": "360-368",
|
|
1628
|
+
"publicationTitle": "Cataloging & Classification Quarterly",
|
|
1629
|
+
"url": "http://dx.doi.org/10.1080/01639374.2012.682254",
|
|
1630
|
+
"volume": "50",
|
|
1631
|
+
"attachments": [],
|
|
1632
|
+
"tags": [
|
|
1633
|
+
{
|
|
1634
|
+
"tag": "Catalog"
|
|
1635
|
+
},
|
|
1636
|
+
{
|
|
1637
|
+
"tag": "Works"
|
|
1638
|
+
}
|
|
1639
|
+
],
|
|
1640
|
+
"notes": [],
|
|
1641
|
+
"seeAlso": []
|
|
1642
|
+
}
|
|
1643
|
+
]
|
|
1644
|
+
},
|
|
1645
|
+
{
|
|
1646
|
+
"type": "import",
|
|
1647
|
+
"input": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<rdf:RDF\n xmlns:codemeta=\"https://codemeta.github.io/terms/\"\n xmlns:rdf=\"http://www.w3.org/1999/02/22-rdf-syntax-ns#\"\n xmlns:schema=\"http://schema.org/\"\n>\n <schema:SoftwareSourceCode rdf:nodeID=\"N7272101842f544e2a9a7508327eb329b\">\n <schema:name>CodeMeta: Minimal metadata schemas for science software and code, in JSON-LD</schema:name>\n <schema:description>CodeMeta is a concept vocabulary that can be used to standardize the exchange of software metadata across repositories and organizations.</schema:description>\n <schema:dateCreated rdf:datatype=\"http://schema.org/Date\">2017-06-05</schema:dateCreated>\n <schema:datePublished rdf:datatype=\"http://schema.org/Date\">2017-06-05</schema:datePublished>\n <schema:version>2.0</schema:version>\n <schema:softwareVersion>2.0</schema:softwareVersion>\n <schema:programmingLanguage>JSON-LD</schema:programmingLanguage>\n <schema:license rdf:resource=\"https://spdx.org/licenses/Apache-2.0\"/>\n <codemeta:developmentStatus rdf:resource=\"file:///base/data/home/apps/s%7Erdf-translator/2.408516547054015808/active\"/>\n <codemeta:funding>National Science Foundation Award #1549758; Codemeta: A Rosetta Stone for Metadata in Scientific Software</codemeta:funding>\n <schema:codeRepository rdf:resource=\"https://github.com/codemeta/codemeta\"/>\n <schema:downloadUrl rdf:resource=\"https://github.com/codemeta/codemeta/archive/2.0.zip\"/>\n <codemeta:contIntegration rdf:resource=\"https://travis-ci.org/codemeta/codemeta\"/>\n <schema:identifier rdf:resource=\"file:///base/data/home/apps/s%7Erdf-translator/2.408516547054015808/CodeMeta\"/>\n <codemeta:issueTracker rdf:resource=\"https://github.com/codemeta/codemeta/issues\"/>\n <schema:keywords>software</schema:keywords>\n <schema:keywords>metadata</schema:keywords>\n <codemeta:maintainer rdf:resource=\"http://orcid.org/0000-0002-1642-628X\"/>\n <schema:author rdf:resource=\"http://orcid.org/0000-0002-1642-628X\"/>\n <schema:author rdf:resource=\"http://orcid.org/0000-0003-0077-4738\"/>\n <schema:contributor rdf:resource=\"http://orcid.org/0000-0003-4925-7248\"/>\n <schema:contributor rdf:resource=\"http://orcid.org/0000-0001-5636-0433\"/>\n <schema:contributor rdf:resource=\"http://orcid.org/0000-0002-9300-5278\"/>\n <schema:contributor rdf:resource=\"http://orcid.org/0000-0003-1419-2405\"/>\n <schema:contributor rdf:resource=\"http://orcid.org/0000-0002-8876-7606\"/>\n <schema:contributor rdf:resource=\"N99ac8e31c13d4ae5994cbc8669e01866\"/>\n <schema:contributor rdf:resource=\"http://orcid.org/0000-0001-8465-8341\"/>\n <schema:contributor rdf:resource=\"http://orcid.org/0000-0003-4741-0309\"/>\n <schema:contributor rdf:resource=\"http://orcid.org/0000-0003-2720-0339\"/>\n <schema:contributor rdf:resource=\"http://orcid.org/0000-0002-1642-628X\"/>\n <schema:contributor rdf:resource=\"http://orcid.org/0000-0003-1219-2137\"/>\n <schema:contributor rdf:resource=\"http://orcid.org/0000-0002-3957-2474\"/>\n <schema:contributor rdf:resource=\"http://orcid.org/0000-0003-3477-2845\"/>\n <schema:contributor rdf:resource=\"Nefd7fe71736c433db9ada28e54018b34\"/>\n <schema:contributor rdf:resource=\"http://orcid.org/0000-0003-1304-1939\"/>\n <schema:contributor rdf:resource=\"Nc65fe076896346a9a8859f25f5e3bca9\"/>\n <schema:contributor rdf:resource=\"http://orcid.org/0000-0003-4425-7097\"/>\n <schema:contributor rdf:resource=\"http://orcid.org/0000-0002-2192-403X\"/>\n </schema:SoftwareSourceCode>\n \n <schema:Person rdf:about=\"http://orcid.org/0000-0003-4925-7248\">\n <schema:familyName>Druskat</schema:familyName>\n <schema:email>mail@sdruskat.net</schema:email>\n <schema:givenName>Stephan</schema:givenName>\n </schema:Person>\n <schema:Person rdf:about=\"http://orcid.org/0000-0001-5636-0433\">\n <schema:givenName>Ashley</schema:givenName>\n <schema:familyName>Sands</schema:familyName>\n </schema:Person>\n <schema:Person rdf:about=\"http://orcid.org/0000-0002-9300-5278\">\n <schema:givenName>Patricia</schema:givenName>\n <schema:familyName>Cruse</schema:familyName>\n </schema:Person>\n <schema:Person rdf:about=\"http://orcid.org/0000-0003-1419-2405\">\n <schema:givenName>Martin</schema:givenName>\n <schema:familyName>Fenner</schema:familyName>\n </schema:Person>\n <schema:Person rdf:about=\"http://orcid.org/0000-0002-8876-7606\">\n <schema:givenName>Neil</schema:givenName>\n <schema:familyName>Chue Hong</schema:familyName>\n <schema:email>n.chuehong@epcc.ed.ac.uk</schema:email>\n </schema:Person>\n <schema:Person rdf:nodeID=\"N99ac8e31c13d4ae5994cbc8669e01866\">\n <schema:familyName>Nowak</schema:familyName>\n <schema:givenName>Krzysztof</schema:givenName>\n </schema:Person>\n <schema:Person rdf:about=\"http://orcid.org/0000-0001-8465-8341\">\n <schema:familyName>Gil</schema:familyName>\n <schema:email>GIL@ISI.EDU</schema:email>\n <schema:givenName>Yolanda</schema:givenName>\n </schema:Person>\n <schema:Person rdf:about=\"http://orcid.org/0000-0003-4741-0309\">\n <schema:familyName>Hahnel</schema:familyName>\n <schema:givenName>Mark</schema:givenName>\n </schema:Person>\n <schema:Person rdf:about=\"http://orcid.org/0000-0003-2720-0339\">\n <schema:email>dskatz@illinois.edu</schema:email>\n <schema:givenName>Dan</schema:givenName>\n <schema:familyName>Katz</schema:familyName>\n </schema:Person>\n <schema:Person rdf:about=\"http://orcid.org/0000-0002-1642-628X\">\n <schema:givenName>Carl</schema:givenName>\n <schema:familyName>Boettiger</schema:familyName>\n <schema:email>cboettig@gmail.com</schema:email>\n </schema:Person>\n <schema:Person rdf:about=\"http://orcid.org/0000-0003-1219-2137\">\n <schema:email>carole.goble@manchester.ac.uk</schema:email>\n <schema:familyName>Goble</schema:familyName>\n <schema:givenName>Carole</schema:givenName>\n </schema:Person>\n <schema:Person rdf:about=\"http://orcid.org/0000-0002-3957-2474\">\n <schema:familyName>Smith</schema:familyName>\n <schema:givenName>Arfon</schema:givenName>\n <schema:email>arfon.smith@gmail.com</schema:email>\n </schema:Person>\n <schema:Person rdf:about=\"http://orcid.org/0000-0003-3477-2845\">\n <schema:givenName>Alice</schema:givenName>\n <schema:email>aallen@ascl.net</schema:email>\n <schema:familyName>Allen</schema:familyName>\n </schema:Person>\n <schema:Person rdf:nodeID=\"Nefd7fe71736c433db9ada28e54018b34\">\n <schema:email>abbycabs@gmail.com</schema:email>\n <schema:givenName>Abby Cabunoc</schema:givenName>\n <schema:familyName>Mayes</schema:familyName>\n </schema:Person>\n <schema:Person rdf:about=\"http://orcid.org/0000-0003-1304-1939\">\n <schema:givenName>Mercè</schema:givenName>\n <schema:familyName>Crosas</schema:familyName>\n </schema:Person>\n <schema:Person rdf:about=\"Nc65fe076896346a9a8859f25f5e3bca9\">\n <schema:email>luke.coy@rit.edu</schema:email>\n <schema:familyName>Coy</schema:familyName>\n <schema:givenName>Luke</schema:givenName>\n </schema:Person>\n <schema:Person rdf:about=\"http://orcid.org/0000-0003-4425-7097\">\n <schema:givenName>Kyle</schema:givenName>\n <schema:email>Kyle.Niemeyer@oregonstate.edu</schema:email>\n <schema:familyName>Niemeyer</schema:familyName>\n </schema:Person>\n <schema:Person rdf:about=\"http://orcid.org/0000-0002-2192-403X\">\n <schema:givenName>Peter</schema:givenName>\n <schema:email>slaughter@nceas.ucsb.edu</schema:email>\n <schema:familyName>Slaughter</schema:familyName>\n </schema:Person>\n <schema:Person rdf:about=\"http://orcid.org/0000-0003-0077-4738\">\n <schema:givenName>Matthew B.</schema:givenName>\n <schema:familyName>Jones</schema:familyName>\n <schema:email>jones@nceas.ucsb.edu</schema:email>\n </schema:Person>\n</rdf:RDF>",
|
|
1648
|
+
"items": [
|
|
1649
|
+
{
|
|
1650
|
+
"itemType": "computerProgram",
|
|
1651
|
+
"title": "CodeMeta: Minimal metadata schemas for science software and code, in JSON-LD",
|
|
1652
|
+
"creators": [
|
|
1653
|
+
{
|
|
1654
|
+
"creatorType": "programmer",
|
|
1655
|
+
"lastName": "Boettiger",
|
|
1656
|
+
"firstName": "Carl"
|
|
1657
|
+
},
|
|
1658
|
+
{
|
|
1659
|
+
"creatorType": "programmer",
|
|
1660
|
+
"lastName": "Jones",
|
|
1661
|
+
"firstName": "Matthew B."
|
|
1662
|
+
},
|
|
1663
|
+
{
|
|
1664
|
+
"creatorType": "contributor",
|
|
1665
|
+
"lastName": "Druskat",
|
|
1666
|
+
"firstName": "Stephan"
|
|
1667
|
+
},
|
|
1668
|
+
{
|
|
1669
|
+
"creatorType": "contributor",
|
|
1670
|
+
"lastName": "Sands",
|
|
1671
|
+
"firstName": "Ashley"
|
|
1672
|
+
},
|
|
1673
|
+
{
|
|
1674
|
+
"creatorType": "contributor",
|
|
1675
|
+
"lastName": "Cruse",
|
|
1676
|
+
"firstName": "Patricia"
|
|
1677
|
+
},
|
|
1678
|
+
{
|
|
1679
|
+
"creatorType": "contributor",
|
|
1680
|
+
"lastName": "Fenner",
|
|
1681
|
+
"firstName": "Martin"
|
|
1682
|
+
},
|
|
1683
|
+
{
|
|
1684
|
+
"creatorType": "contributor",
|
|
1685
|
+
"lastName": "Chue Hong",
|
|
1686
|
+
"firstName": "Neil"
|
|
1687
|
+
},
|
|
1688
|
+
{
|
|
1689
|
+
"creatorType": "contributor",
|
|
1690
|
+
"lastName": "Gil",
|
|
1691
|
+
"firstName": "Yolanda"
|
|
1692
|
+
},
|
|
1693
|
+
{
|
|
1694
|
+
"creatorType": "contributor",
|
|
1695
|
+
"lastName": "Hahnel",
|
|
1696
|
+
"firstName": "Mark"
|
|
1697
|
+
},
|
|
1698
|
+
{
|
|
1699
|
+
"creatorType": "contributor",
|
|
1700
|
+
"lastName": "Katz",
|
|
1701
|
+
"firstName": "Dan"
|
|
1702
|
+
},
|
|
1703
|
+
{
|
|
1704
|
+
"creatorType": "contributor",
|
|
1705
|
+
"lastName": "Boettiger",
|
|
1706
|
+
"firstName": "Carl"
|
|
1707
|
+
},
|
|
1708
|
+
{
|
|
1709
|
+
"creatorType": "contributor",
|
|
1710
|
+
"lastName": "Goble",
|
|
1711
|
+
"firstName": "Carole"
|
|
1712
|
+
},
|
|
1713
|
+
{
|
|
1714
|
+
"creatorType": "contributor",
|
|
1715
|
+
"lastName": "Smith",
|
|
1716
|
+
"firstName": "Arfon"
|
|
1717
|
+
},
|
|
1718
|
+
{
|
|
1719
|
+
"creatorType": "contributor",
|
|
1720
|
+
"lastName": "Allen",
|
|
1721
|
+
"firstName": "Alice"
|
|
1722
|
+
},
|
|
1723
|
+
{
|
|
1724
|
+
"creatorType": "contributor",
|
|
1725
|
+
"lastName": "Crosas",
|
|
1726
|
+
"firstName": "Mercè"
|
|
1727
|
+
},
|
|
1728
|
+
{
|
|
1729
|
+
"creatorType": "contributor",
|
|
1730
|
+
"lastName": "Coy",
|
|
1731
|
+
"firstName": "Luke"
|
|
1732
|
+
},
|
|
1733
|
+
{
|
|
1734
|
+
"creatorType": "contributor",
|
|
1735
|
+
"lastName": "Niemeyer",
|
|
1736
|
+
"firstName": "Kyle"
|
|
1737
|
+
},
|
|
1738
|
+
{
|
|
1739
|
+
"creatorType": "contributor",
|
|
1740
|
+
"lastName": "Slaughter",
|
|
1741
|
+
"firstName": "Peter"
|
|
1742
|
+
}
|
|
1743
|
+
],
|
|
1744
|
+
"date": "2017-06-05",
|
|
1745
|
+
"abstractNote": "CodeMeta is a concept vocabulary that can be used to standardize the exchange of software metadata across repositories and organizations.",
|
|
1746
|
+
"itemID": "_:n79",
|
|
1747
|
+
"programmingLanguage": "JSON-LD",
|
|
1748
|
+
"rights": "https://spdx.org/licenses/Apache-2.0",
|
|
1749
|
+
"versionNumber": "2.0",
|
|
1750
|
+
"attachments": [],
|
|
1751
|
+
"tags": [
|
|
1752
|
+
{
|
|
1753
|
+
"tag": "metadata"
|
|
1754
|
+
},
|
|
1755
|
+
{
|
|
1756
|
+
"tag": "software"
|
|
1757
|
+
}
|
|
1758
|
+
],
|
|
1759
|
+
"notes": [],
|
|
1760
|
+
"seeAlso": []
|
|
1761
|
+
}
|
|
1762
|
+
]
|
|
1763
|
+
},
|
|
1764
|
+
{
|
|
1765
|
+
"type": "import",
|
|
1766
|
+
"input": "<rdf:RDF\n xmlns:rdf=\"http://www.w3.org/1999/02/22-rdf-syntax-ns#\"\n xmlns:z=\"http://www.zotero.org/namespaces/export#\"\n xmlns:link=\"http://purl.org/rss/1.0/modules/link/\"\n xmlns:dc=\"http://purl.org/dc/elements/1.1/\"\n xmlns:dcterms=\"http://purl.org/dc/terms/\"\n xmlns:prism=\"http://prismstandard.org/namespaces/1.2/basic/\"\n xmlns:bib=\"http://purl.org/net/biblio#\">\n <bib:Report rdf:about=\"#test-report\">\n <z:itemType>report</z:itemType>\n <prism:number>NLR-TP-96-464</prism:number>\n <dc:title>Test</dc:title>\n </bib:Report>\n</rdf:RDF>\n",
|
|
1767
|
+
"items": [
|
|
1768
|
+
{
|
|
1769
|
+
"itemType": "report",
|
|
1770
|
+
"title": "Test",
|
|
1771
|
+
"creators": [],
|
|
1772
|
+
"itemID": "#test-report",
|
|
1773
|
+
"reportNumber": "NLR-TP-96-464",
|
|
1774
|
+
"attachments": [],
|
|
1775
|
+
"tags": [],
|
|
1776
|
+
"notes": [],
|
|
1777
|
+
"seeAlso": []
|
|
1778
|
+
}
|
|
1779
|
+
]
|
|
1780
|
+
}
|
|
1781
|
+
]
|
|
1782
|
+
/** END TEST CASES **/
|