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,969 @@
|
|
|
1
|
+
{
|
|
2
|
+
"translatorID": "7fdba422-8405-4fb4-8e06-a6cc2297d9d9",
|
|
3
|
+
"label": "CQVIP Knowledge",
|
|
4
|
+
"creator": "jiaojiaodubai",
|
|
5
|
+
"target": "^https?://k\\.vipslib\\.com",
|
|
6
|
+
"minVersion": "5.0",
|
|
7
|
+
"maxVersion": "",
|
|
8
|
+
"priority": 100,
|
|
9
|
+
"inRepository": true,
|
|
10
|
+
"translatorType": 4,
|
|
11
|
+
"browserSupport": "gcsibv",
|
|
12
|
+
"lastUpdated": "2024-08-17 07:39:28"
|
|
13
|
+
}
|
|
14
|
+
|
|
15
|
+
/*
|
|
16
|
+
***** BEGIN LICENSE BLOCK *****
|
|
17
|
+
|
|
18
|
+
Copyright © 2024 jiaojiaodubai<jiaojiaodubai23@gmail.com>
|
|
19
|
+
|
|
20
|
+
This file is part of Zotero.
|
|
21
|
+
|
|
22
|
+
Zotero is free software: you can redistribute it and/or modify
|
|
23
|
+
it under the terms of the GNU Affero General Public License as published by
|
|
24
|
+
the Free Software Foundation, either version 3 of the License, or
|
|
25
|
+
(at your option) any later version.
|
|
26
|
+
|
|
27
|
+
Zotero is distributed in the hope that it will be useful,
|
|
28
|
+
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
29
|
+
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
30
|
+
GNU Affero General Public License for more details.
|
|
31
|
+
|
|
32
|
+
You should have received a copy of the GNU Affero General Public License
|
|
33
|
+
along with Zotero. If not, see <http://www.gnu.org/licenses/>.
|
|
34
|
+
|
|
35
|
+
***** END LICENSE BLOCK *****
|
|
36
|
+
*/
|
|
37
|
+
|
|
38
|
+
|
|
39
|
+
function detectWeb(doc, _) {
|
|
40
|
+
const panel = doc.querySelector('#articlelist, .j-d-articles');
|
|
41
|
+
if (panel) {
|
|
42
|
+
Z.monitorDOMChanges(panel, { subtree: true, childList: true });
|
|
43
|
+
}
|
|
44
|
+
let typeKey = attr(doc, 'h1 > i', 'class');
|
|
45
|
+
if (typeKey && typeKey != 'text-journal') {
|
|
46
|
+
typeKey = typeKey.substring(5);
|
|
47
|
+
return {
|
|
48
|
+
article: 'journalArticle',
|
|
49
|
+
book: 'book',
|
|
50
|
+
paper: 'thesis',
|
|
51
|
+
meeting: 'conferencePaper',
|
|
52
|
+
standard: 'standard',
|
|
53
|
+
patent: 'patent',
|
|
54
|
+
laws: 'statute',
|
|
55
|
+
// 案例库的标题不完整,且只有案号和发布日期,信息过于粗糙,暂不适配
|
|
56
|
+
// judicialcase: 'case',
|
|
57
|
+
achievements: 'report',
|
|
58
|
+
newspaper: 'newspaperArticle'
|
|
59
|
+
}[typeKey];
|
|
60
|
+
}
|
|
61
|
+
else if (getSearchResults(doc, true)) {
|
|
62
|
+
return 'multiple';
|
|
63
|
+
}
|
|
64
|
+
return false;
|
|
65
|
+
}
|
|
66
|
+
|
|
67
|
+
function getSearchResults(doc, checkOnly) {
|
|
68
|
+
const items = {};
|
|
69
|
+
let found = false;
|
|
70
|
+
// http://k.cqvip.com/asset/search?key=VSUzRCVFOSU5QiU5NSVFNSVBMSU5MQ==&cf=&skey=MF9VXyUyNUU5JTI1OUIlMjU5NSUyNUU1JTI1QTElMjU5MQ==
|
|
71
|
+
// http://k.cqvip.com/asset/journal/20210001787
|
|
72
|
+
// http://k.cqvip.com/asset/guidelist
|
|
73
|
+
const rows = Array.from(doc.querySelectorAll('#articlelist dl, .j-d-articles li')).filter(row => row.querySelector('dt:first-child > a, a'));
|
|
74
|
+
for (const row of rows) {
|
|
75
|
+
const doi = row.querySelector('.doi > i > a');
|
|
76
|
+
const href = row.querySelector('dt:first-child > a, a').href;
|
|
77
|
+
const title = attr(row, 'dt:first-child > a, a', 'title') || ZU.trimInternal(row.querySelector('dt:first-child > a, a', 'title').textContent);
|
|
78
|
+
if (!href || !title) continue;
|
|
79
|
+
if (checkOnly) return true;
|
|
80
|
+
found = true;
|
|
81
|
+
items[JSON.stringify({
|
|
82
|
+
url: href,
|
|
83
|
+
doi: doi ? doi.href : ''
|
|
84
|
+
})] = title;
|
|
85
|
+
}
|
|
86
|
+
return found ? items : false;
|
|
87
|
+
}
|
|
88
|
+
|
|
89
|
+
async function doWeb(doc, url) {
|
|
90
|
+
if (detectWeb(doc, url) == 'multiple') {
|
|
91
|
+
const items = await Zotero.selectItems(getSearchResults(doc, false));
|
|
92
|
+
if (!items) return;
|
|
93
|
+
for (const key of Object.keys(items).map(aKey => JSON.parse(aKey))) {
|
|
94
|
+
// 需要浏览器环境
|
|
95
|
+
const newItem = await scrape(await requestDocument(key.url));
|
|
96
|
+
if (ZU.fieldIsValidForType('DOI', newItem.itemType)) {
|
|
97
|
+
newItem.DOI = ZU.cleanDOI(key.doi);
|
|
98
|
+
}
|
|
99
|
+
else {
|
|
100
|
+
const extra = new Extra();
|
|
101
|
+
extra.set('DOI', ZU.cleanDOI(key.doi), true);
|
|
102
|
+
newItem.extra = extra.toString(newItem.extra);
|
|
103
|
+
}
|
|
104
|
+
newItem.complete();
|
|
105
|
+
}
|
|
106
|
+
}
|
|
107
|
+
else {
|
|
108
|
+
const newItem = await scrape(doc, url);
|
|
109
|
+
newItem.complete();
|
|
110
|
+
}
|
|
111
|
+
}
|
|
112
|
+
|
|
113
|
+
async function scrape(doc, url = doc.location.href) {
|
|
114
|
+
Z.debug(doc.body.innerText);
|
|
115
|
+
let creators = [];
|
|
116
|
+
let creatorsEn = [];
|
|
117
|
+
const labels = new Labels(doc, '.article-detail > p');
|
|
118
|
+
const extra = new Extra();
|
|
119
|
+
Z.debug(labels.innerData.map(arr => [arr[0], ZU.trimInternal(arr[1].textContent)]));
|
|
120
|
+
const newItem = new Z.Item(detectWeb(doc, url));
|
|
121
|
+
newItem.title = attr(doc, '.article-summary > h1', 'title').replace(/_\((.+?)\)/g, '<sub>$1</sub>').replace(/_(\d)/g, '<sub>$1</sub>');
|
|
122
|
+
extra.set('original-title', text(doc, '.article-summary > em').replace(/_\((.+?)\)/g, '<sub>$1</sub>').replace(/_(\d)/g, '<sub>$1</sub>'), true);
|
|
123
|
+
newItem.abstractNote = labels.get('摘要');
|
|
124
|
+
switch (newItem.itemType) {
|
|
125
|
+
case 'journalArticle': {
|
|
126
|
+
newItem.publicationTitle = attr(doc, 'a[href*="/asset/journal/"]', 'title');
|
|
127
|
+
extra.set('original-container-title', tryMatch(labels.get('出版物'), /\((\w+)\)$/, 1), true);
|
|
128
|
+
const pubInfo = labels.get('年卷期');
|
|
129
|
+
newItem.volume = tryMatch(pubInfo, /第0*(\d+)卷/, 1);
|
|
130
|
+
newItem.issue = tryMatch(pubInfo, /第([A-Z\d]+)期/, 1).replace(/0*(\d)/, '$1');
|
|
131
|
+
newItem.pages = labels.get('页码').replace(/\+/g, ', ').replace(/~/g, '-');
|
|
132
|
+
newItem.date = tryMatch(pubInfo, /^(\d{4})年/, 1);
|
|
133
|
+
creators = Array.from(doc.querySelectorAll('.author > a')).map(element => cleanAuthor(ZU.trimInternal(element.textContent)));
|
|
134
|
+
creatorsEn = text(doc, '.author > em').split(/[;,;]\s*/).map(enName => ZU.capitalizeName(enName));
|
|
135
|
+
extra.set('foundation', labels.get('基金'));
|
|
136
|
+
break;
|
|
137
|
+
}
|
|
138
|
+
case 'book':
|
|
139
|
+
newItem.series = labels.get('丛书名');
|
|
140
|
+
// http://k.cqvip.com/asset/detail/101996618144
|
|
141
|
+
newItem.edition = labels.get('版本说明');
|
|
142
|
+
newItem.publisher = labels.get('出版社');
|
|
143
|
+
newItem.date = ZU.strToISO(labels.get('出版年'));
|
|
144
|
+
newItem.numPages = tryMatch(labels.get('页数'), /\d+/);
|
|
145
|
+
newItem.ISBN = ZU.cleanISBN(labels.get('ISBN'));
|
|
146
|
+
creators = Array.from(doc.querySelectorAll('.author > a')).map(element => cleanAuthor(ZU.trimInternal(element.textContent)));
|
|
147
|
+
break;
|
|
148
|
+
case 'thesis':
|
|
149
|
+
newItem.thesisType = labels.get('学位级别') + '学位论文';
|
|
150
|
+
newItem.university = labels.get('作者单位');
|
|
151
|
+
newItem.date = ZU.strToISO(labels.get('授予年度'));
|
|
152
|
+
creators = Array.from(doc.querySelectorAll('.author > a')).map(element => cleanAuthor(ZU.trimInternal(element.textContent)));
|
|
153
|
+
labels.get('导师姓名').split(/[;,;]/).forEach(creator => creators.push(cleanAuthor(creator, 'contributor')));
|
|
154
|
+
break;
|
|
155
|
+
case 'conferencePaper':
|
|
156
|
+
newItem.date = ZU.strToISO(labels.get('会议日期'));
|
|
157
|
+
newItem.conferenceName = labels.get('会议名称').replace(/^《|》$/g, '');
|
|
158
|
+
creators = Array.from(doc.querySelectorAll('.author > a')).map(element => cleanAuthor(ZU.trimInternal(element.textContent)));
|
|
159
|
+
break;
|
|
160
|
+
case 'standard':
|
|
161
|
+
newItem.title = attr(doc, '.article-summary > h1', 'title').replace(/([\u4e00-\u9fff]) ([\u4e00-\u9fff])/, '$1 $2');
|
|
162
|
+
newItem.number = labels.get('标准编号');
|
|
163
|
+
newItem.date = ZU.strToISO(labels.get('发布日期'));
|
|
164
|
+
extra.set('applyDate', labels.get('实施日期'));
|
|
165
|
+
newItem.numPages = tryMatch(labels.get('页码'), /\d+/);
|
|
166
|
+
extra.set('CCS', labels.get('中国标准分类号'));
|
|
167
|
+
extra.set('ICS', labels.get('国际标准分类号'));
|
|
168
|
+
break;
|
|
169
|
+
case 'patent':
|
|
170
|
+
newItem.patentNumber = labels.get('公开号').split(';')[0];
|
|
171
|
+
newItem.applicationNumber = labels.get('专利申请号').split(';')[0];
|
|
172
|
+
newItem.place = newItem.country = patentCountry(newItem.patentNumber || newItem.applicationNumber);
|
|
173
|
+
newItem.filingDate = labels.get('申请日');
|
|
174
|
+
newItem.issueDate = labels.get('公开日');
|
|
175
|
+
extra.set('Genre', labels.get('专利类型'), true);
|
|
176
|
+
creators = Array.from(labels.get('发明人', true).querySelectorAll('a')).map(element => cleanAuthor(ZU.trimInternal(element.textContent)));
|
|
177
|
+
break;
|
|
178
|
+
|
|
179
|
+
/*
|
|
180
|
+
已知问题:
|
|
181
|
+
1. 缺少修订日期(Edition)
|
|
182
|
+
2. 党内法规无法获取作者
|
|
183
|
+
*/
|
|
184
|
+
case 'statute': {
|
|
185
|
+
newItem.title = newItem.title.replace(/\((.+?)\)/, '($1)');
|
|
186
|
+
const rank = labels.get('效力级别');
|
|
187
|
+
if (rank == '党内法规制度' || newItem.title.includes('草案')) {
|
|
188
|
+
newItem.itemType = 'report';
|
|
189
|
+
newItem.shortTitle = tryMatch(newItem.title, /^(.+)——.+/, 1);
|
|
190
|
+
newItem.date = labels.get('颁布日期');
|
|
191
|
+
}
|
|
192
|
+
else {
|
|
193
|
+
if (!labels.get('效力级别').includes('法律')) {
|
|
194
|
+
extra.set('Type', 'regulation', true);
|
|
195
|
+
}
|
|
196
|
+
if (newItem.title.startsWith('中华人民共和国')) {
|
|
197
|
+
newItem.shortTitle = newItem.title.substring(7);
|
|
198
|
+
}
|
|
199
|
+
newItem.publicLawNumber = labels.get('发文文号');
|
|
200
|
+
newItem.dateEnacted = labels.get('颁布日期');
|
|
201
|
+
if (labels.get('时效性') == '已失效') {
|
|
202
|
+
extra.set('Status', '已废止', true);
|
|
203
|
+
}
|
|
204
|
+
}
|
|
205
|
+
|
|
206
|
+
extra.set('applyDate', labels.get('实施日期'));
|
|
207
|
+
creators = Array.from(labels.get('颁布部门', true).querySelectorAll('a')).map(element => cleanAuthor(ZU.trimInternal(element.textContent)));
|
|
208
|
+
break;
|
|
209
|
+
}
|
|
210
|
+
case 'report':
|
|
211
|
+
newItem.reportType = '科技成果报告';
|
|
212
|
+
newItem.institution = labels.get('完成单位');
|
|
213
|
+
newItem.date = labels.get('公布年份');
|
|
214
|
+
extra.set('achievementType', labels.get('成果类别'));
|
|
215
|
+
creators = Array.from(doc.querySelectorAll('.author > a')).map(element => cleanAuthor(ZU.trimInternal(element.textContent)));
|
|
216
|
+
break;
|
|
217
|
+
case 'newspaperArticle':
|
|
218
|
+
newItem.publicationTitle = attr(labels.get('报纸名称', true), 'a', 'title');
|
|
219
|
+
newItem.date = labels.get('发表日期');
|
|
220
|
+
newItem.pages = labels.get('版名版号').replace(/0*(\d)/, '$1');
|
|
221
|
+
creators = Array.from(doc.querySelectorAll('.author > a')).map(element => cleanAuthor(ZU.trimInternal(element.textContent)));
|
|
222
|
+
break;
|
|
223
|
+
}
|
|
224
|
+
newItem.language = /[\u4e00-\u9fff]/.test(newItem.title) ? 'zh-CN' : 'en-US';
|
|
225
|
+
newItem.url = url;
|
|
226
|
+
newItem.libraryCatalog = '维普经纶知识服务平台';
|
|
227
|
+
newItem.creators = creators;
|
|
228
|
+
creatorsEn.forEach(enName => extra.push('original-author', enName, true));
|
|
229
|
+
creators = ZU.deepCopy(creators);
|
|
230
|
+
if (creatorsEn.length) {
|
|
231
|
+
for (let i = 1; i < creators.length; i++) {
|
|
232
|
+
creators[i].original = creatorsEn[i] || '';
|
|
233
|
+
}
|
|
234
|
+
extra.set('creatorsExt', JSON.stringify(creators));
|
|
235
|
+
}
|
|
236
|
+
labels.get(['主题', '关键词'], true).querySelectorAll('a').forEach(element => newItem.tags.push(ZU.trimInternal(element.textContent)));
|
|
237
|
+
extra.set('CLC', labels.get('中图分类'));
|
|
238
|
+
newItem.extra = extra.toString();
|
|
239
|
+
return newItem;
|
|
240
|
+
}
|
|
241
|
+
|
|
242
|
+
class Labels {
|
|
243
|
+
constructor(doc, selector) {
|
|
244
|
+
this.data = [];
|
|
245
|
+
this.emptyElm = doc.createElement('div');
|
|
246
|
+
Array.from(doc.querySelectorAll(selector))
|
|
247
|
+
// avoid nesting
|
|
248
|
+
.filter(element => !element.querySelector(selector))
|
|
249
|
+
// avoid empty
|
|
250
|
+
.filter(element => !/^\s*$/.test(element.textContent))
|
|
251
|
+
.forEach((element) => {
|
|
252
|
+
const elmCopy = element.cloneNode(true);
|
|
253
|
+
// avoid empty text
|
|
254
|
+
while (/^\s*$/.test(elmCopy.firstChild.textContent)) {
|
|
255
|
+
// Z.debug(elementCopy.firstChild.textContent);
|
|
256
|
+
elmCopy.removeChild(elmCopy.firstChild);
|
|
257
|
+
// Z.debug(elementCopy.firstChild.textContent);
|
|
258
|
+
}
|
|
259
|
+
if (elmCopy.childNodes.length > 1) {
|
|
260
|
+
const key = elmCopy.removeChild(elmCopy.firstChild).textContent.replace(/\s/g, '');
|
|
261
|
+
this.data.push([key, elmCopy]);
|
|
262
|
+
}
|
|
263
|
+
else {
|
|
264
|
+
const text = ZU.trimInternal(elmCopy.textContent);
|
|
265
|
+
const key = tryMatch(text, /^[[【]?.+?[】\]::]/).replace(/\s/g, '');
|
|
266
|
+
elmCopy.textContent = tryMatch(text, /^[[【]?.+?[】\]::]\s*(.+)/, 1);
|
|
267
|
+
this.data.push([key, elmCopy]);
|
|
268
|
+
}
|
|
269
|
+
});
|
|
270
|
+
}
|
|
271
|
+
|
|
272
|
+
get(label, element = false) {
|
|
273
|
+
if (Array.isArray(label)) {
|
|
274
|
+
const results = label
|
|
275
|
+
.map(aLabel => this.get(aLabel, element));
|
|
276
|
+
const keyVal = element
|
|
277
|
+
? results.find(element => !/^\s*$/.test(element.textContent))
|
|
278
|
+
: results.find(string => string);
|
|
279
|
+
return keyVal
|
|
280
|
+
? keyVal
|
|
281
|
+
: element
|
|
282
|
+
? this.emptyElm
|
|
283
|
+
: '';
|
|
284
|
+
}
|
|
285
|
+
const pattern = new RegExp(label, 'i');
|
|
286
|
+
const keyVal = this.data.find(arr => pattern.test(arr[0]));
|
|
287
|
+
return keyVal
|
|
288
|
+
? element
|
|
289
|
+
? keyVal[1]
|
|
290
|
+
: ZU.trimInternal(keyVal[1].textContent)
|
|
291
|
+
: element
|
|
292
|
+
? this.emptyElm
|
|
293
|
+
: '';
|
|
294
|
+
}
|
|
295
|
+
}
|
|
296
|
+
|
|
297
|
+
class Extra {
|
|
298
|
+
constructor() {
|
|
299
|
+
this.fields = [];
|
|
300
|
+
}
|
|
301
|
+
|
|
302
|
+
push(key, val, csl = false) {
|
|
303
|
+
this.fields.push({ key: key, val: val, csl: csl });
|
|
304
|
+
}
|
|
305
|
+
|
|
306
|
+
set(key, val, csl = false) {
|
|
307
|
+
let target = this.fields.find(obj => new RegExp(`^${key}$`, 'i').test(obj.key));
|
|
308
|
+
if (target) {
|
|
309
|
+
target.val = val;
|
|
310
|
+
}
|
|
311
|
+
else {
|
|
312
|
+
this.push(key, val, csl);
|
|
313
|
+
}
|
|
314
|
+
}
|
|
315
|
+
|
|
316
|
+
get(key) {
|
|
317
|
+
let result = this.fields.find(obj => new RegExp(`^${key}$`, 'i').test(obj.key));
|
|
318
|
+
return result
|
|
319
|
+
? result.val
|
|
320
|
+
: undefined;
|
|
321
|
+
}
|
|
322
|
+
|
|
323
|
+
toString(history = '') {
|
|
324
|
+
this.fields = this.fields.filter(obj => obj.val);
|
|
325
|
+
return [
|
|
326
|
+
this.fields.filter(obj => obj.csl).map(obj => `${obj.key}: ${obj.val}`).join('\n'),
|
|
327
|
+
history,
|
|
328
|
+
this.fields.filter(obj => !obj.csl).map(obj => `${obj.key}: ${obj.val}`).join('\n')
|
|
329
|
+
].filter(obj => obj).join('\n');
|
|
330
|
+
}
|
|
331
|
+
}
|
|
332
|
+
|
|
333
|
+
function tryMatch(string, pattern, index = 0) {
|
|
334
|
+
if (!string) return '';
|
|
335
|
+
const match = string.match(pattern);
|
|
336
|
+
return (match && match[index])
|
|
337
|
+
? match[index]
|
|
338
|
+
: '';
|
|
339
|
+
}
|
|
340
|
+
|
|
341
|
+
function cleanAuthor(creator, creatorType = 'author') {
|
|
342
|
+
creator = ZU.cleanAuthor(creator, creatorType);
|
|
343
|
+
if (/[\u4e00-\u9fff]/.test(creator.lastName)) {
|
|
344
|
+
creator.lastName = creator.firstName + creator.lastName;
|
|
345
|
+
creator.firstName = '';
|
|
346
|
+
creator.fieldMode = 1;
|
|
347
|
+
}
|
|
348
|
+
return creator;
|
|
349
|
+
}
|
|
350
|
+
|
|
351
|
+
/**
|
|
352
|
+
* Return the country name according to the patent number or patent application number.
|
|
353
|
+
*/
|
|
354
|
+
function patentCountry(idNumber) {
|
|
355
|
+
return {
|
|
356
|
+
AD: '安道尔', AE: '阿拉伯联合酋长国', AF: '阿富汗', AG: '安提瓜和巴布达', AI: '安圭拉', AL: '阿尔巴尼亚', AM: '亚美尼亚', AN: '菏属安的列斯群岛', AO: '安哥拉', AR: '阿根廷', AT: '奥地利', AU: '澳大利亚', AW: '阿鲁巴', AZ: '阿塞拜疆', BB: '巴巴多斯', BD: '孟加拉国', BE: '比利时', BF: '布莱基纳法索', BG: '保加利亚', BH: '巴林', BI: '布隆迪', BJ: '贝宁', BM: '百慕大', BN: '文莱', BO: '玻利维亚', BR: '巴西', BS: '巴哈马', BT: '不丹', BU: '缅甸', BW: '博茨瓦纳', BY: '白俄罗斯', BZ: '伯利兹', CA: '加拿大', CF: '中非共和国', CG: '刚果', CH: '瑞士', CI: '科特迪瓦', CL: '智利', CM: '喀麦隆', CN: '中国', CO: '哥伦比亚', CR: '哥斯达黎加', CS: '捷克斯洛伐克', CU: '古巴', CV: '怫得角', CY: '塞浦路斯',
|
|
357
|
+
DE: '联邦德国', DJ: '吉布提', DK: '丹麦', DM: '多米尼加岛', DO: '多米尼加共和国', DZ: '阿尔及利亚', EC: '厄瓜多尔', EE: '爱沙尼亚', EG: '埃及', EP: '欧洲专利局', ES: '西班牙', ET: '埃塞俄比亚', FI: '芬兰', FJ: '斐济', FK: '马尔维纳斯群岛', FR: '法国',
|
|
358
|
+
GA: '加蓬', GB: '英国', GD: '格林那达', GE: '格鲁吉亚', GH: '加纳', GI: '直布罗陀', GM: '冈比亚', GN: '几内亚', GQ: '赤道几内亚', GR: '希腊', GT: '危地马拉', GW: '几内亚比绍', GY: '圭亚那', HK: '香港', HN: '洪都拉斯', HR: '克罗地亚', HT: '海地', HU: '匈牙利', HV: '上沃尔特', ID: '印度尼西亚', IE: '爱尔兰', IL: '以色列', IN: '印度', IQ: '伊拉克', IR: '伊朗', IS: '冰岛', IT: '意大利',
|
|
359
|
+
JE: '泽西岛', JM: '牙买加', JO: '约旦', JP: '日本', KE: '肯尼亚', KG: '吉尔吉斯', KH: '柬埔寨', KI: '吉尔伯特群岛', KM: '科摩罗', KN: '圣克里斯托夫岛', KP: '朝鲜', KR: '韩国', KW: '科威特', KY: '开曼群岛', KZ: '哈萨克', LA: '老挝', LB: '黎巴嫩', LC: '圣卢西亚岛', LI: '列支敦士登', LK: '斯里兰卡', LR: '利比里亚', LS: '莱索托', LT: '立陶宛', LU: '卢森堡', LV: '拉脱维亚', LY: '利比亚',
|
|
360
|
+
MA: '摩洛哥', MC: '摩纳哥', MD: '莫尔多瓦', MG: '马达加斯加', ML: '马里', MN: '蒙古', MO: '澳门', MR: '毛里塔尼亚', MS: '蒙特塞拉特岛', MT: '马耳他', MU: '毛里求斯', MV: '马尔代夫', MW: '马拉维', MX: '墨西哥', MY: '马来西亚', MZ: '莫桑比克', NA: '纳米比亚', NE: '尼日尔', NG: '尼日利亚', NH: '新赫布里底', NI: '尼加拉瓜', NL: '荷兰', NO: '挪威', NP: '尼泊尔', NR: '瑙鲁', NZ: '新西兰', OA: '非洲知识产权组织', OM: '阿曼',
|
|
361
|
+
PA: '巴拿马', PC: 'PCT', PE: '秘鲁', PG: '巴布亚新几内亚', PH: '菲律宾', PK: '巴基斯坦', PL: '波兰', PT: '葡萄牙', PY: '巴拉圭', QA: '卡塔尔', RO: '罗马尼亚', RU: '俄罗斯联邦', RW: '卢旺达',
|
|
362
|
+
SA: '沙特阿拉伯', SB: '所罗门群岛', SC: '塞舌尔', SD: '苏丹', SE: '瑞典', SG: '新加坡', SH: '圣赫勒拿岛', SI: '斯洛文尼亚', SL: '塞拉利昂', SM: '圣马利诺', SN: '塞内加尔', SO: '索马里', SR: '苏里南', ST: '圣多美和普林西比岛', SU: '苏联', SV: '萨尔瓦多', SY: '叙利亚', SZ: '斯威士兰', TD: '乍得', TG: '多哥', TH: '泰国', TJ: '塔吉克', TM: '土库曼', TN: '突尼斯', TO: '汤加', TR: '土耳其', TT: '特立尼达和多巴哥', TV: '图瓦卢', TZ: '坦桑尼亚', UA: '乌克兰', UG: '乌干达', US: '美国', UY: '乌拉圭', UZ: '乌兹别克',
|
|
363
|
+
VA: '梵蒂冈', VC: '圣文森特岛和格林纳达', VE: '委内瑞拉', VG: '维尔京群岛', VN: '越南', VU: '瓦努阿图', WO: '世界知识产权组织', WS: '萨摩亚', YD: '民主也门', YE: '也门', YU: '南斯拉夫', ZA: '南非', ZM: '赞比亚', ZR: '扎伊尔', ZW: '津巴布韦'
|
|
364
|
+
}[idNumber.substring(0, 2).toUpperCase()] || '';
|
|
365
|
+
}
|
|
366
|
+
|
|
367
|
+
/** BEGIN TEST CASES **/
|
|
368
|
+
var testCases = [
|
|
369
|
+
{
|
|
370
|
+
"type": "web",
|
|
371
|
+
"url": "http://k.vipslib.com/asset/detail/2031156636722",
|
|
372
|
+
"items": [
|
|
373
|
+
{
|
|
374
|
+
"itemType": "journalArticle",
|
|
375
|
+
"title": "溶剂热法可控合成NiCo<sub>2</sub>O<sub>4</sub>锂电池负极材料及储锂机制研究",
|
|
376
|
+
"creators": [
|
|
377
|
+
{
|
|
378
|
+
"firstName": "",
|
|
379
|
+
"lastName": "华丽",
|
|
380
|
+
"creatorType": "author",
|
|
381
|
+
"fieldMode": 1
|
|
382
|
+
},
|
|
383
|
+
{
|
|
384
|
+
"firstName": "",
|
|
385
|
+
"lastName": "曾建华",
|
|
386
|
+
"creatorType": "author",
|
|
387
|
+
"fieldMode": 1
|
|
388
|
+
},
|
|
389
|
+
{
|
|
390
|
+
"firstName": "",
|
|
391
|
+
"lastName": "樊锋凯",
|
|
392
|
+
"creatorType": "author",
|
|
393
|
+
"fieldMode": 1
|
|
394
|
+
},
|
|
395
|
+
{
|
|
396
|
+
"firstName": "",
|
|
397
|
+
"lastName": "朱玉涵",
|
|
398
|
+
"creatorType": "author",
|
|
399
|
+
"fieldMode": 1
|
|
400
|
+
},
|
|
401
|
+
{
|
|
402
|
+
"firstName": "",
|
|
403
|
+
"lastName": "翁方青",
|
|
404
|
+
"creatorType": "author",
|
|
405
|
+
"fieldMode": 1
|
|
406
|
+
},
|
|
407
|
+
{
|
|
408
|
+
"firstName": "",
|
|
409
|
+
"lastName": "胡庆兰",
|
|
410
|
+
"creatorType": "author",
|
|
411
|
+
"fieldMode": 1
|
|
412
|
+
},
|
|
413
|
+
{
|
|
414
|
+
"firstName": "",
|
|
415
|
+
"lastName": "李景蕻",
|
|
416
|
+
"creatorType": "author",
|
|
417
|
+
"fieldMode": 1
|
|
418
|
+
}
|
|
419
|
+
],
|
|
420
|
+
"date": "2022",
|
|
421
|
+
"abstractNote": "溶剂热法可控合成NiCo_(2)O_(4)锂电池负极材料,进行XRD、ESEM、电化学性能分析并获得分散性好、晶型完整的尖晶石型NiCo_(2)O_(4)纳米片。充放电测试显示:首次比容量分别为1376mAh/g和1544mAh/g;经150次循环后,容量保持率约70%。低倍率下(0.05~2C)稳定性明显高于高倍率(10C)下,与Li+在电解液中的扩散电阻增大有关,这在交流阻抗(EIS)中得到证实。循环伏安(CV)为进一步弄清脱嵌锂机理提供了依据。EIS等效电路拟合结果显示:60次循环后,电极电阻(R1)由357Ω·cm^(2)下降到154Ω·cm^(2),与电极材料活化有关。但电解液扩散电阻(WS)从345Ω·cm^(2)增大到467Ω·cm^(2),与电极材料被破坏粉化有关。为了更好平衡这两个相互矛盾的变量,有效控制合成NiCo_(2)O_(4)电极材料十分关键,本法获得的NiCo_(2)O_(4)负极材料其电化学性能较优异。",
|
|
422
|
+
"extra": "original-title: Controllable Synthesis of NiCo<sub>2</sub>O<sub>4</sub>Anode Materials by Solvothermal Method for Lithium Battery Together with Its Lithium Storage Mechanism\noriginal-author: Hua Li\noriginal-author: Zeng Jian-hua\noriginal-author: Fan Feng-kai\noriginal-author: Zhu Yu-han\noriginal-author: Weng Fang-qing\noriginal-author: Hu Qing-lan\noriginal-author: Li Jing-hong\nfoundation: 湖北省自然科学基金(2021CFB251) 国家自然科学基金青年项目(22004029) 湖北第二师范学院校级教学研究和科学研究项目(X2019013,X2020001和20XGZX10).\ncreatorsExt: [{\"firstName\":\"\",\"lastName\":\"华丽\",\"creatorType\":\"author\",\"fieldMode\":1},{\"firstName\":\"\",\"lastName\":\"曾建华\",\"creatorType\":\"author\",\"fieldMode\":1,\"original\":\"Zeng Jian-hua\"},{\"firstName\":\"\",\"lastName\":\"樊锋凯\",\"creatorType\":\"author\",\"fieldMode\":1,\"original\":\"Fan Feng-kai\"},{\"firstName\":\"\",\"lastName\":\"朱玉涵\",\"creatorType\":\"author\",\"fieldMode\":1,\"original\":\"Zhu Yu-han\"},{\"firstName\":\"\",\"lastName\":\"翁方青\",\"creatorType\":\"author\",\"fieldMode\":1,\"original\":\"Weng Fang-qing\"},{\"firstName\":\"\",\"lastName\":\"胡庆兰\",\"creatorType\":\"author\",\"fieldMode\":1,\"original\":\"Hu Qing-lan\"},{\"firstName\":\"\",\"lastName\":\"李景蕻\",\"creatorType\":\"author\",\"fieldMode\":1,\"original\":\"Li Jing-hong\"}]\nCLC: O614[数理科学和化学-化学]",
|
|
423
|
+
"issue": "11",
|
|
424
|
+
"language": "zh-CN",
|
|
425
|
+
"libraryCatalog": "维普经纶知识服务平台",
|
|
426
|
+
"pages": "19-25",
|
|
427
|
+
"publicationTitle": "武汉理工大学学报",
|
|
428
|
+
"url": "http://k.vipslib.com/asset/detail/2031156636722",
|
|
429
|
+
"volume": "44",
|
|
430
|
+
"attachments": [],
|
|
431
|
+
"tags": [
|
|
432
|
+
{
|
|
433
|
+
"tag": "NiCo_(2)O_(4)负极材料"
|
|
434
|
+
},
|
|
435
|
+
{
|
|
436
|
+
"tag": "储锂机制研究"
|
|
437
|
+
},
|
|
438
|
+
{
|
|
439
|
+
"tag": "可控合成"
|
|
440
|
+
},
|
|
441
|
+
{
|
|
442
|
+
"tag": "锂电池"
|
|
443
|
+
}
|
|
444
|
+
],
|
|
445
|
+
"notes": [],
|
|
446
|
+
"seeAlso": []
|
|
447
|
+
}
|
|
448
|
+
]
|
|
449
|
+
},
|
|
450
|
+
{
|
|
451
|
+
"type": "web",
|
|
452
|
+
"url": "http://k.vipslib.com/asset/detail/20157997658",
|
|
453
|
+
"items": [
|
|
454
|
+
{
|
|
455
|
+
"itemType": "book",
|
|
456
|
+
"title": "电视色彩学",
|
|
457
|
+
"creators": [
|
|
458
|
+
{
|
|
459
|
+
"firstName": "",
|
|
460
|
+
"lastName": "刘恩御",
|
|
461
|
+
"creatorType": "author",
|
|
462
|
+
"fieldMode": 1
|
|
463
|
+
},
|
|
464
|
+
{
|
|
465
|
+
"firstName": "",
|
|
466
|
+
"lastName": "李振",
|
|
467
|
+
"creatorType": "author",
|
|
468
|
+
"fieldMode": 1
|
|
469
|
+
}
|
|
470
|
+
],
|
|
471
|
+
"date": "2019",
|
|
472
|
+
"ISBN": "9787565724480",
|
|
473
|
+
"abstractNote": "本书是在《电视色彩学》原本的基础上修订而成。作者为中国传媒大学教授刘恩御,他多年从事“电视色彩学教学工作,结合教学实践,用17年的时间研究、设计了“染料三基色系统。本书正是他多年研究成果的结晶。本书从物理、生理及心理的角度阐述色彩形成的原理、特征、不同的色彩组合所表达的意境或感情以及这些自然规律在电视节目制作中的美术、灯光、摄影、摄像、编辑等制作环节上的应用。由于各类视觉艺术且有对色彩应用的共性,因此,电视色彩学的应用范围不仅仅限于电视节目制作,它对电影、戏剧、摄影、美术、染织及广泛的生活领域都有一定的实用、参考价值。",
|
|
474
|
+
"edition": "第2版",
|
|
475
|
+
"extra": "original-title: Television chromatology\nCLC: G222.3[文化、科学、教育、体育-信息与知识传播] J91[艺术-电影、电视艺术] G222[文化、科学、教育、体育-信息与知识传播] TN949.12[工业技术-无线电电子学、电信技术]",
|
|
476
|
+
"language": "zh-CN",
|
|
477
|
+
"libraryCatalog": "维普经纶知识服务平台",
|
|
478
|
+
"numPages": "205",
|
|
479
|
+
"publisher": "北京:中国传媒大学出版社",
|
|
480
|
+
"series": "电视艺术学丛书",
|
|
481
|
+
"url": "http://k.vipslib.com/asset/detail/20157997658",
|
|
482
|
+
"attachments": [],
|
|
483
|
+
"tags": [
|
|
484
|
+
{
|
|
485
|
+
"tag": "信息与知识传播"
|
|
486
|
+
},
|
|
487
|
+
{
|
|
488
|
+
"tag": "广播、电视事业"
|
|
489
|
+
},
|
|
490
|
+
{
|
|
491
|
+
"tag": "文化、科学、教育、体育"
|
|
492
|
+
}
|
|
493
|
+
],
|
|
494
|
+
"notes": [],
|
|
495
|
+
"seeAlso": []
|
|
496
|
+
}
|
|
497
|
+
]
|
|
498
|
+
},
|
|
499
|
+
{
|
|
500
|
+
"type": "web",
|
|
501
|
+
"url": "http://k.vipslib.com/asset/detail/20471967745",
|
|
502
|
+
"items": [
|
|
503
|
+
{
|
|
504
|
+
"itemType": "thesis",
|
|
505
|
+
"title": "基于压褶形态的服装设计创新研究",
|
|
506
|
+
"creators": [
|
|
507
|
+
{
|
|
508
|
+
"firstName": "",
|
|
509
|
+
"lastName": "张玲",
|
|
510
|
+
"creatorType": "author",
|
|
511
|
+
"fieldMode": 1
|
|
512
|
+
},
|
|
513
|
+
{
|
|
514
|
+
"firstName": "",
|
|
515
|
+
"lastName": "许旭兵",
|
|
516
|
+
"creatorType": "contributor",
|
|
517
|
+
"fieldMode": 1
|
|
518
|
+
},
|
|
519
|
+
{
|
|
520
|
+
"firstName": "",
|
|
521
|
+
"lastName": "田玲",
|
|
522
|
+
"creatorType": "contributor",
|
|
523
|
+
"fieldMode": 1
|
|
524
|
+
}
|
|
525
|
+
],
|
|
526
|
+
"date": "2023",
|
|
527
|
+
"abstractNote": "人们对服装精神层面追求的不断提高以及服装市场竞争程度的不断激烈,推动了压褶服装的流行,凸显了压褶服装创新设计研究的重要性和必要性。文章通过六个章节对本课题的研究进行阐述,在整篇文章中,笔者首先阐述了关于本课题的研究背景、研究意义、研究现状、研究内容与思路框架以及研究的方法与创新点,继而对本课题研究对象的概念、研究对象的历史渊源及其发展历程进行了较为全面的整理归纳。由相关内容整理归纳的基础上切入主题,通过设计师的设计作品解析了几个常见的具有代表性的压褶形态在服装设计中的工艺方法及其形态造型,并以设计师的设计作品案例为基础,从工艺手法、服装款式、服装色彩三个方面分析总结了压褶形态在服装设计中的创新应用方法,为后续压褶形态服装的创新性设计实践提供理论参照。最后笔者详细的阐述了关于本课题的设计实践,呈现了笔者设计实践的作品,并且对本课题的相关研究进行了总结和展望。 压褶服装设计的创新性研究不仅势在必行而且意义深远,立足压褶元素、创新服装设计是适应潮流,满足人们对于服装的精神层面需求的重要途径,也是增强压褶服装市场竞争力的重要因素。文章通过文献研究法、图形分析法、比较分析法、设计实践法等研究方法对压褶形态的相关内容进行分析阐述,创造性地归纳总结了其成型原理,结合案例,对压褶形态与服装之间的创新融合设计进行研究分析,挖掘其设计创新的方法以及设计创新的关键,并最终通过实践操作对研究结果进行验证和呈现,为解读压褶符号的神秘、拓展服装设计的思路、丰富服装时尚的语言提供理论上以及实践上的支持。",
|
|
528
|
+
"extra": "CLC: TS941.2[工业技术-轻工业、手工业]",
|
|
529
|
+
"language": "zh-CN",
|
|
530
|
+
"libraryCatalog": "维普经纶知识服务平台",
|
|
531
|
+
"thesisType": "硕士学位论文",
|
|
532
|
+
"university": "东华大学",
|
|
533
|
+
"url": "http://k.vipslib.com/asset/detail/20471967745",
|
|
534
|
+
"attachments": [],
|
|
535
|
+
"tags": [
|
|
536
|
+
{
|
|
537
|
+
"tag": "创新设计"
|
|
538
|
+
},
|
|
539
|
+
{
|
|
540
|
+
"tag": "压褶形态"
|
|
541
|
+
},
|
|
542
|
+
{
|
|
543
|
+
"tag": "压褶服装"
|
|
544
|
+
},
|
|
545
|
+
{
|
|
546
|
+
"tag": "服装设计"
|
|
547
|
+
}
|
|
548
|
+
],
|
|
549
|
+
"notes": [],
|
|
550
|
+
"seeAlso": []
|
|
551
|
+
}
|
|
552
|
+
]
|
|
553
|
+
},
|
|
554
|
+
{
|
|
555
|
+
"type": "web",
|
|
556
|
+
"url": "http://k.vipslib.com/asset/detail/20668882544",
|
|
557
|
+
"items": [
|
|
558
|
+
{
|
|
559
|
+
"itemType": "conferencePaper",
|
|
560
|
+
"title": "字体设计的方法与实践探索",
|
|
561
|
+
"creators": [
|
|
562
|
+
{
|
|
563
|
+
"firstName": "",
|
|
564
|
+
"lastName": "吴莹",
|
|
565
|
+
"creatorType": "author",
|
|
566
|
+
"fieldMode": 1
|
|
567
|
+
}
|
|
568
|
+
],
|
|
569
|
+
"date": "2019",
|
|
570
|
+
"abstractNote": "在今天的生活中,我们面临着如何利用视觉语言形式的创新去构造具有吸引力和传达力的字体作品。《字体设计的方法与实践》课程通过形态分析、效果运用与视觉表现三个方面使学生基本掌握现代字体设计的创新思维与方法技能。第一阶段,引导学生在平时的生活中学会观察、发现各种与字体相关的视觉因素,及其在不同环境中所呈现的视觉状态与视觉效果;第二阶段,通过古老形制方式现代材质应用和多维形态呈现等方法,尝试字体设计中不同视觉效果的创作过程与构建方式;第三阶段,通过图形借代和文字的图案化等表现形式的展开,探索并形成字体独特的风格与表现力。在课程中,教师指导学生不断尝试字体设计的新观念、新手法,通过对不同类型应用设计作品的分析,使学生对现实生活中字体应用的客观规律有较为详尽的认识与理解,形成解决字体方面不同问题的能力。",
|
|
571
|
+
"conferenceName": "2019第九届全国视觉传达设计教育论坛",
|
|
572
|
+
"language": "zh-CN",
|
|
573
|
+
"libraryCatalog": "维普经纶知识服务平台",
|
|
574
|
+
"url": "http://k.vipslib.com/asset/detail/20668882544",
|
|
575
|
+
"attachments": [],
|
|
576
|
+
"tags": [
|
|
577
|
+
{
|
|
578
|
+
"tag": "古老形制"
|
|
579
|
+
},
|
|
580
|
+
{
|
|
581
|
+
"tag": "图形借代"
|
|
582
|
+
},
|
|
583
|
+
{
|
|
584
|
+
"tag": "图案化"
|
|
585
|
+
},
|
|
586
|
+
{
|
|
587
|
+
"tag": "字体设计"
|
|
588
|
+
},
|
|
589
|
+
{
|
|
590
|
+
"tag": "现代材质"
|
|
591
|
+
}
|
|
592
|
+
],
|
|
593
|
+
"notes": [],
|
|
594
|
+
"seeAlso": []
|
|
595
|
+
}
|
|
596
|
+
]
|
|
597
|
+
},
|
|
598
|
+
{
|
|
599
|
+
"type": "web",
|
|
600
|
+
"url": "http://k.vipslib.com/asset/detail/20512556185",
|
|
601
|
+
"items": [
|
|
602
|
+
{
|
|
603
|
+
"itemType": "standard",
|
|
604
|
+
"title": "信息与文献 参考文献著录规则",
|
|
605
|
+
"creators": [],
|
|
606
|
+
"date": "2015",
|
|
607
|
+
"abstractNote": "本标准规定了各个学科、各种类型信息资源的参考文献的著录项目、著录顺序、著录用符号、著录用文字、各个著录项目的著录方法以及参考文献在正文中的标注法。 本标准适用于著者和编辑著录参考文献,而不是供图书馆员、文献目录编制者以及索引编辑者使用的文献著录规则。",
|
|
608
|
+
"extra": "original-title: Information and documentation—Rules for bibliographic references and citations to information resources\napplyDate: 2015-12-01\nCCS: A14\nICS: 01_140_20",
|
|
609
|
+
"language": "zh-CN",
|
|
610
|
+
"libraryCatalog": "维普经纶知识服务平台",
|
|
611
|
+
"numPages": "27",
|
|
612
|
+
"number": "GB/T 7714-2015",
|
|
613
|
+
"url": "http://k.vipslib.com/asset/detail/20512556185",
|
|
614
|
+
"attachments": [],
|
|
615
|
+
"tags": [
|
|
616
|
+
{
|
|
617
|
+
"tag": "书目标准"
|
|
618
|
+
},
|
|
619
|
+
{
|
|
620
|
+
"tag": "参考文献"
|
|
621
|
+
},
|
|
622
|
+
{
|
|
623
|
+
"tag": "规则"
|
|
624
|
+
}
|
|
625
|
+
],
|
|
626
|
+
"notes": [],
|
|
627
|
+
"seeAlso": []
|
|
628
|
+
}
|
|
629
|
+
]
|
|
630
|
+
},
|
|
631
|
+
{
|
|
632
|
+
"type": "web",
|
|
633
|
+
"url": "http://k.vipslib.com/asset/detail/207336700438",
|
|
634
|
+
"items": [
|
|
635
|
+
{
|
|
636
|
+
"itemType": "patent",
|
|
637
|
+
"title": "一种面料的后整理加工方法及面料",
|
|
638
|
+
"creators": [
|
|
639
|
+
{
|
|
640
|
+
"firstName": "",
|
|
641
|
+
"lastName": "张瑞喜",
|
|
642
|
+
"creatorType": "author",
|
|
643
|
+
"fieldMode": 1
|
|
644
|
+
},
|
|
645
|
+
{
|
|
646
|
+
"firstName": "",
|
|
647
|
+
"lastName": "梁竹青",
|
|
648
|
+
"creatorType": "author",
|
|
649
|
+
"fieldMode": 1
|
|
650
|
+
},
|
|
651
|
+
{
|
|
652
|
+
"firstName": "",
|
|
653
|
+
"lastName": "段雪梅",
|
|
654
|
+
"creatorType": "author",
|
|
655
|
+
"fieldMode": 1
|
|
656
|
+
},
|
|
657
|
+
{
|
|
658
|
+
"firstName": "",
|
|
659
|
+
"lastName": "高丽忠",
|
|
660
|
+
"creatorType": "author",
|
|
661
|
+
"fieldMode": 1
|
|
662
|
+
},
|
|
663
|
+
{
|
|
664
|
+
"firstName": "",
|
|
665
|
+
"lastName": "金永乐",
|
|
666
|
+
"creatorType": "author",
|
|
667
|
+
"fieldMode": 1
|
|
668
|
+
}
|
|
669
|
+
],
|
|
670
|
+
"issueDate": "2023-10-24",
|
|
671
|
+
"abstractNote": "本发明公开了一种面料的后整理加工方法及面料,包括如下步骤:步骤a:将面料进行缩绒处理;步骤b:将所述步骤a中进行缩绒处理后的面料进行拉幅烘干处理;步骤c:将所述步骤b中经拉幅烘干处理后的面料进行钢丝起毛处理;步骤d:将所述步骤c中经钢丝起毛处理后的面料进行刺果起毛处理;步骤e:将所述步骤d中经刺果起毛处理后的面料进行逆毛冲水处理;步骤f:将所述步骤e中经逆毛冲水后的面料进行烘干处理;步骤g:将所述步骤f中经烘干之后的面料进行干刷毛处理;步骤h:将所述步骤g中经干刷毛之后的面料进行烫光处理。本发明所提供的面料的后整理加工方法,使得面料表面覆盖一层长而自然卷曲的纤维,蓬松丰厚,光泽柔和。",
|
|
672
|
+
"applicationNumber": "CN202310901127.X",
|
|
673
|
+
"country": "中国",
|
|
674
|
+
"extra": "Genre: 发明专利",
|
|
675
|
+
"filingDate": "2023-07-20",
|
|
676
|
+
"language": "zh-CN",
|
|
677
|
+
"patentNumber": "CN116926835A",
|
|
678
|
+
"place": "中国",
|
|
679
|
+
"url": "http://k.vipslib.com/asset/detail/207336700438",
|
|
680
|
+
"attachments": [],
|
|
681
|
+
"tags": [
|
|
682
|
+
{
|
|
683
|
+
"tag": "冲水"
|
|
684
|
+
},
|
|
685
|
+
{
|
|
686
|
+
"tag": "刺果"
|
|
687
|
+
},
|
|
688
|
+
{
|
|
689
|
+
"tag": "加工"
|
|
690
|
+
},
|
|
691
|
+
{
|
|
692
|
+
"tag": "后整理"
|
|
693
|
+
},
|
|
694
|
+
{
|
|
695
|
+
"tag": "干刷"
|
|
696
|
+
},
|
|
697
|
+
{
|
|
698
|
+
"tag": "拉幅"
|
|
699
|
+
},
|
|
700
|
+
{
|
|
701
|
+
"tag": "柔和"
|
|
702
|
+
},
|
|
703
|
+
{
|
|
704
|
+
"tag": "烘干"
|
|
705
|
+
},
|
|
706
|
+
{
|
|
707
|
+
"tag": "烘干处理"
|
|
708
|
+
},
|
|
709
|
+
{
|
|
710
|
+
"tag": "烫光"
|
|
711
|
+
},
|
|
712
|
+
{
|
|
713
|
+
"tag": "纤维"
|
|
714
|
+
},
|
|
715
|
+
{
|
|
716
|
+
"tag": "缩绒"
|
|
717
|
+
},
|
|
718
|
+
{
|
|
719
|
+
"tag": "自然卷曲"
|
|
720
|
+
},
|
|
721
|
+
{
|
|
722
|
+
"tag": "蓬松"
|
|
723
|
+
},
|
|
724
|
+
{
|
|
725
|
+
"tag": "覆盖"
|
|
726
|
+
},
|
|
727
|
+
{
|
|
728
|
+
"tag": "起毛处理"
|
|
729
|
+
},
|
|
730
|
+
{
|
|
731
|
+
"tag": "钢丝"
|
|
732
|
+
},
|
|
733
|
+
{
|
|
734
|
+
"tag": "面料"
|
|
735
|
+
},
|
|
736
|
+
{
|
|
737
|
+
"tag": "面料表面"
|
|
738
|
+
}
|
|
739
|
+
],
|
|
740
|
+
"notes": [],
|
|
741
|
+
"seeAlso": []
|
|
742
|
+
}
|
|
743
|
+
]
|
|
744
|
+
},
|
|
745
|
+
{
|
|
746
|
+
"type": "web",
|
|
747
|
+
"url": "http://k.vipslib.com/asset/detail/20843700223",
|
|
748
|
+
"items": [
|
|
749
|
+
{
|
|
750
|
+
"itemType": "statute",
|
|
751
|
+
"nameOfAct": "最高人民法院、最高人民检查院关于依法严惩破坏计划生育犯罪活动的通知",
|
|
752
|
+
"creators": [
|
|
753
|
+
{
|
|
754
|
+
"firstName": "",
|
|
755
|
+
"lastName": "最高人民法院",
|
|
756
|
+
"creatorType": "author",
|
|
757
|
+
"fieldMode": 1
|
|
758
|
+
},
|
|
759
|
+
{
|
|
760
|
+
"firstName": "",
|
|
761
|
+
"lastName": "最高人民检察院",
|
|
762
|
+
"creatorType": "author",
|
|
763
|
+
"fieldMode": 1
|
|
764
|
+
}
|
|
765
|
+
],
|
|
766
|
+
"dateEnacted": "1993-11-12",
|
|
767
|
+
"abstractNote": "各省、自治区、直辖市高级人民法院、人民检察院,解放军军事法院、军事检察院:实行计划生育是我国的一项基本国策。它关系到民族的昌盛、子孙后代的幸福。对少数人以各种手段破坏计划生育工作的行为,除进行必要的教育外,对那些伪造计划生育证明出售牟利,多次为他人做",
|
|
768
|
+
"extra": "Type: regulation\nStatus: 已废止\napplyDate: 1993-11-12",
|
|
769
|
+
"language": "zh-CN",
|
|
770
|
+
"publicLawNumber": "法发36号",
|
|
771
|
+
"url": "http://k.vipslib.com/asset/detail/20843700223",
|
|
772
|
+
"attachments": [],
|
|
773
|
+
"tags": [
|
|
774
|
+
{
|
|
775
|
+
"tag": "犯罪活动"
|
|
776
|
+
},
|
|
777
|
+
{
|
|
778
|
+
"tag": "计划生育"
|
|
779
|
+
}
|
|
780
|
+
],
|
|
781
|
+
"notes": [],
|
|
782
|
+
"seeAlso": []
|
|
783
|
+
}
|
|
784
|
+
]
|
|
785
|
+
},
|
|
786
|
+
{
|
|
787
|
+
"type": "web",
|
|
788
|
+
"url": "http://k.vipslib.com/asset/detail/20865128867",
|
|
789
|
+
"detectedItemType": "statute",
|
|
790
|
+
"items": [
|
|
791
|
+
{
|
|
792
|
+
"itemType": "report",
|
|
793
|
+
"title": "高举中国特色社会主义伟大旗帜 为全面建设社会主义现代化国家而团结奋斗——在中国共产党第二十次全国代表大会上的报告",
|
|
794
|
+
"creators": [
|
|
795
|
+
{
|
|
796
|
+
"firstName": "",
|
|
797
|
+
"lastName": "中国共产党中央委员会",
|
|
798
|
+
"creatorType": "author",
|
|
799
|
+
"fieldMode": 1
|
|
800
|
+
}
|
|
801
|
+
],
|
|
802
|
+
"date": "2022-10-16",
|
|
803
|
+
"abstractNote": "高举中国特色社会主义伟大旗帜 为全面建设社会主义现代化国家而团结奋斗 --在中国共产党第二十次全国代表大会上的报告 (2022年10月16日) 习近平 同志们: 现在,我代表第十九届中央委员会向大会作报告。 中国共产党第二十次全国代表大会,是在全党全国各族人民迈上全面建设社会主义现代化国家新征程、向第二个百年奋斗目标进军的关键时刻召开的一次十分重要的大会。 大会的主题是:高举中国特色社会主义伟大旗帜,全面贯彻新时代中国特色社会主义思想,弘扬伟大建党精神,自信自强、守正创新,踔厉奋发、勇毅前行,为全面建设社会主义现代化国家、全面推进中华民族伟大复兴而团结奋斗。 中国共产党已走过百年奋斗历程。我们党立志于中华民族千秋伟业,致力于人类和平与发展崇高事业,责任无比重大,使命无上光荣。全党同志务必不忘初心、牢记使命,务必谦虚谨慎、艰苦奋斗,务必敢于斗争、善于斗争,坚定历史自信,增强历史主动,谱写新时代中国特色社会主义更加绚丽的华章。 一、过去五年的工作和新时代十年的伟大变革 十九大以来的五年,是极不寻常、极不平凡的五年。党中央统筹中华民族伟大复兴战略全局和世界百年未有之大变局,召开七次全会,分别就宪法修改,深化党和国家机构改革,坚持和完善中国特色社会主义制度、推进国家治理体系和治理能力现代化,制定“十四五规划和二〇三五年远景目标,全面总结党的百年奋斗重大成就和历史经验等重大问题作出决定和决议,就党和国家事业发展作出重大战略部署,团结带领全党全军全国各族人民有效应对严峻复杂的国际形势和接踵而至的巨大风险挑战,以奋发有为的精神把新时代中国特色社会主义不断推向前进。 五年来,我们坚持加强党的全面领导和党中央集中统一领导,全力推进全面建成小康社会进程,完整、准确、全面贯彻新发展理念,着力推动高质量发展,主动构建新发展格局,蹄疾步稳推进改革,扎实推进全过程人民民主,全面推进依法治国,积极发展社会主义先进文化,突出保障和改善民生,集中力量实施脱贫攻坚战,大力推进生态文明建设,坚决维护国家安全,防范化解重大风险,保持社会大局稳定,大力度推进国防和军队现代化建设,全方位开展中国特色大国外交,全面推进党的建设新的伟大工程。我们隆重庆祝中国共产党成立一百周年、中华人民共和国成立七十周年,制定第三个历史决议,在全党开展党史学习教育,建成中国共产党历史展览馆,号召全党学习和践行伟大建党精神,在新的征程上更加坚定、更加自觉地牢记初心使命、开创美好未来。特别是面对突如其来的新冠肺炎疫情,我们坚持人民至上、生命至上,坚持外防输入、内防反弹,坚持动态清零不动摇,开展抗击疫情人民战争、总体战、阻击战,最大限度保护了人民生命安全和身体健康,统筹疫情防控和经济社会发展取得重大积极成果。面对香港局势动荡变化,我们依照宪法和基本法有效实施对特别行政区的全面管治权,制定实施香港特别行政区维护国家安全法,落实“爱国者治港原则,香港局势实现由乱到治的重大转折,深入推进粤港澳大湾区建设,支持香港、澳门发展经济、改善民生、保持稳定。面对“台独势力分裂活动和外部势力干涉台湾事务的严重挑衅,我们坚决开展反分裂、反干涉重大斗争,展示了我们维护国家主权和领土完整、反对“台独的坚强决心和强大能力,进一步掌握了实现祖国完全统一的战略主动,进一步巩固了国际社会坚持一个中国的格局。面对国际局势急剧变化,特别是面对外部讹诈、遏制、封锁、极限施压,我们坚持国家利益为重、国内政治优先,保持战略定力,发扬斗争精神,展示不畏",
|
|
804
|
+
"extra": "applyDate: 2022-10-16",
|
|
805
|
+
"language": "zh-CN",
|
|
806
|
+
"libraryCatalog": "维普经纶知识服务平台",
|
|
807
|
+
"shortTitle": "高举中国特色社会主义伟大旗帜 为全面建设社会主义现代化国家而团结奋斗",
|
|
808
|
+
"url": "http://k.vipslib.com/asset/detail/20865128867",
|
|
809
|
+
"attachments": [],
|
|
810
|
+
"tags": [],
|
|
811
|
+
"notes": [],
|
|
812
|
+
"seeAlso": []
|
|
813
|
+
}
|
|
814
|
+
]
|
|
815
|
+
},
|
|
816
|
+
{
|
|
817
|
+
"type": "web",
|
|
818
|
+
"url": "http://k.vipslib.com/asset/detail/20858657837",
|
|
819
|
+
"detectedItemType": "statute",
|
|
820
|
+
"items": [
|
|
821
|
+
{
|
|
822
|
+
"itemType": "report",
|
|
823
|
+
"title": "关于《中华人民共和国行政诉讼法修正案(草案)》的说明",
|
|
824
|
+
"creators": [
|
|
825
|
+
{
|
|
826
|
+
"firstName": "",
|
|
827
|
+
"lastName": "全国人大常委会",
|
|
828
|
+
"creatorType": "author",
|
|
829
|
+
"fieldMode": 1
|
|
830
|
+
}
|
|
831
|
+
],
|
|
832
|
+
"date": "2013-12-23",
|
|
833
|
+
"abstractNote": "关于《中华人民共和国行政诉讼法修正案(草案)》的说明 (2013年12月23日在第十二届全国人民代表大会常务委员会第六次会议上 全国人大常委会法制工作委员会副主任 信春鹰) 委员长、各位副委员长、秘书长、各委员: 我受委员长会议的委托,作关于《中华人民共和国行政诉讼法修正案(草案)》的说明。 行政诉讼法于1989年由第七届全国人大第二次会议通过,1990年10月1日起实施。这部被称为“民告官的法律规定了行政诉讼程序的基本规则,实施以来,在解决行政争议,推进依法行政,保护公民、法人和其他组织的合法权益等方面,发挥了重要作用。同时,随着社会主义民主法制建设的深入推进,行政诉讼制度与社会经济发展不协调、不适应的问题也日渐突出。人民群众对行政诉讼中存在的“立案难、审理难、执行难等突出问题反映强烈。为解决这些突出问题,适应依法治国、依法执政、依法行政共同推进,法治国家、法治政府、法治社会一体建设的新要求,有必要对行政诉讼法予以修改完善。 近年来,许多全国人大代表和有关方面陆续提出修改行政诉讼法的意见和建议。法制工作委员会从2009年开始着手行政诉讼法的修改调研工作,先后到山东、湖南等多地进行调研,听取基层人民法院、地方政府部门的意见和建议。采取旁听案件审理、阅卷、派人到行政审判一线蹲点等多种方式了解行政诉讼实践的情况。多次召开国务院部门、学者和律师座谈会,听取意见。今年11月又分两次召开17个省、自治区、直辖市人大法制机构、政府法制部门、人民法院和人民检察院参加的座谈会。按照党的十八届三中全会精神和各方面的意见,修改工作把握以下几点:一是维护行政诉讼制度的权威性,针对现实中的突出问题,强调依法保障公民、法人和其他组织的诉讼权利;二是坚持我国行政诉讼制度的基本原则,维护行政权依法行使和公民、法人和其他组织寻求司法救济渠道畅通的平衡,保障人民法院依法独立行使审判权;三是坚持从实际出发,循序渐进,逐步完善;四是总结行政审判实践的经验,把经实践证明的有益经验上升为法律。经与最高人民法院、国务院法制办公室等方面沟通协商、反复研究,在充分论证并取得基本共识的基础上,形成了行政诉讼法修正案(草案)。现就主要问题说明如下: 一、关于保障当事人的诉讼权利 行政诉讼面临的“三难,最突出的是立案难。公民、法人或者其他组织与政府机关及其工作人员产生纠纷,行政机关不愿当被告,法院不愿受理,导致许多应当通过诉讼解决的纠纷进入信访渠道,在有些地方形成了“信访不信法的局面。为通畅行政诉讼的入口,建议从五个方面完善对当事人的诉权保护: 1.明确人民法院和行政机关应当保障当事人的起诉权利。增加规定:人民法院应当保障公民、法人或者其他组织的起诉权利,对应当受理的行政案件依法受理。行政机关不得干预、阻碍人民法院受理行政案件。被诉行政机关应当依法应诉。(修正案草案第三条) 2.扩大受案范围。将行政机关侵犯公民、法人或者其他组织依法享有的土地、矿藏、水流、森林、山岭、草原、荒地、滩涂、海域等自然资源的所有权或者使用权,行政机关侵犯农村土地承包经营权,行政机关违法集资、征收征用财产、摊派费用,行政机关没有依法支付最低生活保障待遇或者社会保险待遇等纳入受案范围。(修正案草案第四条) 3.明确可以口头起诉,方便当事人行使诉权。增加规定:起诉应当向人民法院递交起诉状,并按照被告人数提出副本。书写起诉状确有困难的,可以口头起诉,由人民法院记入笔录,出具注明日期的书面凭证,并告知对方当事人。(修正案草案第二十五条) 4.强化受理程序约束。增加规定:一是人民法院应当在接到起诉状时当场予以登记,并出具注明日期的书面凭证。起诉状内容欠缺或者有其他错误的,应当给予指导和释明,并一次性告知当事人补正。不得未经指导和释明即以起诉不符合条件为由不受理。二是起诉符合条件的,人民法院应当在接到起诉状或者口头起诉之日起七日内立案,并通知当事人;不符合起诉条件的,应当在七日内作出裁定书,不予受理。裁定书应当载明不予受理的理由。原告对裁定不服的,可以提起上诉。三是人民法院在七日内既不立案,又不作出裁定书的,当事人可以向上一级人民法院起诉。上一级人民法院认为符合起诉条件的,应当立案、审理,也可以指定其他下级人民法院立案、审理。(修正案草案第二十五条、第二十七条) 5.明确人民法院的相应责任。增加规定:对于不接收起诉状、接收起诉状后不出具书面凭证,以及不一次性告知当事人补正起诉状内容的,当事人可以向上级人民法院投诉,上级人民法院应当责令改正,并对直接负责的主管人员和其他直接责任人员依法给予处分。(修正案草案第二十五条) 二、关于对规范性文件的附带审查 实践中,有些具体行政行为侵犯公民、法人或者其他组织的合法权益,是地方政府及其部门制定的规范性文件中越权错位等规定造成的。为从根本上减少违法具体行政行为,可以由法院在审 ······",
|
|
834
|
+
"language": "zh-CN",
|
|
835
|
+
"libraryCatalog": "维普经纶知识服务平台",
|
|
836
|
+
"url": "http://k.vipslib.com/asset/detail/20858657837",
|
|
837
|
+
"attachments": [],
|
|
838
|
+
"tags": [],
|
|
839
|
+
"notes": [],
|
|
840
|
+
"seeAlso": []
|
|
841
|
+
}
|
|
842
|
+
]
|
|
843
|
+
},
|
|
844
|
+
{
|
|
845
|
+
"type": "web",
|
|
846
|
+
"url": "http://k.vipslib.com/asset/detail/20913559137",
|
|
847
|
+
"items": [
|
|
848
|
+
{
|
|
849
|
+
"itemType": "report",
|
|
850
|
+
"title": "光伏储能一体机系统",
|
|
851
|
+
"creators": [
|
|
852
|
+
{
|
|
853
|
+
"firstName": "",
|
|
854
|
+
"lastName": "李新富",
|
|
855
|
+
"creatorType": "author",
|
|
856
|
+
"fieldMode": 1
|
|
857
|
+
},
|
|
858
|
+
{
|
|
859
|
+
"firstName": "",
|
|
860
|
+
"lastName": "郭华为",
|
|
861
|
+
"creatorType": "author",
|
|
862
|
+
"fieldMode": 1
|
|
863
|
+
},
|
|
864
|
+
{
|
|
865
|
+
"firstName": "",
|
|
866
|
+
"lastName": "王建星",
|
|
867
|
+
"creatorType": "author",
|
|
868
|
+
"fieldMode": 1
|
|
869
|
+
},
|
|
870
|
+
{
|
|
871
|
+
"firstName": "",
|
|
872
|
+
"lastName": "周勇",
|
|
873
|
+
"creatorType": "author",
|
|
874
|
+
"fieldMode": 1
|
|
875
|
+
},
|
|
876
|
+
{
|
|
877
|
+
"firstName": "",
|
|
878
|
+
"lastName": "施鑫淼",
|
|
879
|
+
"creatorType": "author",
|
|
880
|
+
"fieldMode": 1
|
|
881
|
+
},
|
|
882
|
+
{
|
|
883
|
+
"firstName": "",
|
|
884
|
+
"lastName": "张祥平",
|
|
885
|
+
"creatorType": "author",
|
|
886
|
+
"fieldMode": 1
|
|
887
|
+
},
|
|
888
|
+
{
|
|
889
|
+
"firstName": "",
|
|
890
|
+
"lastName": "陈青青",
|
|
891
|
+
"creatorType": "author",
|
|
892
|
+
"fieldMode": 1
|
|
893
|
+
}
|
|
894
|
+
],
|
|
895
|
+
"date": "2019年",
|
|
896
|
+
"abstractNote": "项目采用模块化设计,并分层设置在多层柜仓中,多层柜仓内分别设置有储能电池、电池充放电模块、逆变器、配电模块,电池充放电模块对储能电池的充放电进行管理,对光伏储能智能一体机的运行过程进行控制并显示各种状态参数,实现人机交互功能,通信模块与云端服务器及用户手机通信连接,互联网监控实时上传汇总,生成数据报告;通过有线和无线实现于云端的无缝对接,可以让客户无论在何时何地都能监控到家里的发电用电情况,实现了智能化。",
|
|
897
|
+
"extra": "achievementType: 应用技术",
|
|
898
|
+
"institution": "浙江艾罗网络能源技术有限公司",
|
|
899
|
+
"language": "zh-CN",
|
|
900
|
+
"libraryCatalog": "维普经纶知识服务平台",
|
|
901
|
+
"reportType": "科技成果报告",
|
|
902
|
+
"url": "http://k.vipslib.com/asset/detail/20913559137",
|
|
903
|
+
"attachments": [],
|
|
904
|
+
"tags": [
|
|
905
|
+
{
|
|
906
|
+
"tag": "一体机"
|
|
907
|
+
},
|
|
908
|
+
{
|
|
909
|
+
"tag": "储能"
|
|
910
|
+
},
|
|
911
|
+
{
|
|
912
|
+
"tag": "光伏"
|
|
913
|
+
},
|
|
914
|
+
{
|
|
915
|
+
"tag": "系统"
|
|
916
|
+
}
|
|
917
|
+
],
|
|
918
|
+
"notes": [],
|
|
919
|
+
"seeAlso": []
|
|
920
|
+
}
|
|
921
|
+
]
|
|
922
|
+
},
|
|
923
|
+
{
|
|
924
|
+
"type": "web",
|
|
925
|
+
"url": "http://k.vipslib.com/asset/detail/21142496714",
|
|
926
|
+
"items": [
|
|
927
|
+
{
|
|
928
|
+
"itemType": "newspaperArticle",
|
|
929
|
+
"title": "日本登月探测器怎么了?",
|
|
930
|
+
"creators": [
|
|
931
|
+
{
|
|
932
|
+
"firstName": "",
|
|
933
|
+
"lastName": "钱铮",
|
|
934
|
+
"creatorType": "author",
|
|
935
|
+
"fieldMode": 1
|
|
936
|
+
},
|
|
937
|
+
{
|
|
938
|
+
"firstName": "",
|
|
939
|
+
"lastName": "张伊伊",
|
|
940
|
+
"creatorType": "author",
|
|
941
|
+
"fieldMode": 1
|
|
942
|
+
}
|
|
943
|
+
],
|
|
944
|
+
"date": "2024-01-22",
|
|
945
|
+
"abstractNote": "新华社东京1月20日电(记者钱铮 张伊伊)日本小型登月探测器SLIM东京时间20日凌晨在月球表面着陆,但随后被发现其搭载的太阳能电池无法发电。无法发电意味着什么?此次登月任务有何特点?到底算不算成功?探测器还能否恢复活力? SLIM能否运行? 东京时间20日零时(北京时?",
|
|
946
|
+
"language": "zh-CN",
|
|
947
|
+
"libraryCatalog": "维普经纶知识服务平台",
|
|
948
|
+
"pages": "8",
|
|
949
|
+
"publicationTitle": "新华每日电讯",
|
|
950
|
+
"url": "http://k.vipslib.com/asset/detail/21142496714",
|
|
951
|
+
"attachments": [],
|
|
952
|
+
"tags": [
|
|
953
|
+
{
|
|
954
|
+
"tag": "探测器"
|
|
955
|
+
},
|
|
956
|
+
{
|
|
957
|
+
"tag": "月球着陆"
|
|
958
|
+
},
|
|
959
|
+
{
|
|
960
|
+
"tag": "月球表面"
|
|
961
|
+
}
|
|
962
|
+
],
|
|
963
|
+
"notes": [],
|
|
964
|
+
"seeAlso": []
|
|
965
|
+
}
|
|
966
|
+
]
|
|
967
|
+
}
|
|
968
|
+
]
|
|
969
|
+
/** END TEST CASES **/
|