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,2381 @@
|
|
|
1
|
+
{
|
|
2
|
+
"translatorID": "5c95b67b-41c5-4f55-b71a-48d5d7183063",
|
|
3
|
+
"label": "CNKI",
|
|
4
|
+
"creator": "Aurimas Vinckevicius, Xingzhong Lin, jiaojiaodubai",
|
|
5
|
+
"target": "https?://.*?(cnki\\.net)?/(kns8?s?|kcms2?|KNavi|xmlRead)/",
|
|
6
|
+
"minVersion": "3.0",
|
|
7
|
+
"maxVersion": "",
|
|
8
|
+
"priority": 150,
|
|
9
|
+
"inRepository": true,
|
|
10
|
+
"translatorType": 4,
|
|
11
|
+
"browserSupport": "gcsibv",
|
|
12
|
+
"lastUpdated": "2025-04-14 17:16:06"
|
|
13
|
+
}
|
|
14
|
+
|
|
15
|
+
/*
|
|
16
|
+
***** BEGIN LICENSE BLOCK *****
|
|
17
|
+
CNKI(China National Knowledge Infrastructure) Translator
|
|
18
|
+
Copyright © 2013 Aurimas Vinckevicius
|
|
19
|
+
This file is part of Zotero.
|
|
20
|
+
Zotero is free software: you can redistribute it and/or modify
|
|
21
|
+
it under the terms of the GNU Affero General Public License as published by
|
|
22
|
+
the Free Software Foundation, either version 3 of the License, or
|
|
23
|
+
(at your option) any later version.
|
|
24
|
+
Zotero is distributed in the hope that it will be useful,
|
|
25
|
+
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
26
|
+
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
27
|
+
GNU Affero General Public License for more details.
|
|
28
|
+
You should have received a copy of the GNU Affero General Public License
|
|
29
|
+
along with Zotero. If not, see <http://www.gnu.org/licenses/>.
|
|
30
|
+
***** END LICENSE BLOCK *****
|
|
31
|
+
*/
|
|
32
|
+
|
|
33
|
+
// Whether user ip is in Chinese Mainland, default is true.
|
|
34
|
+
let inMainland = true;
|
|
35
|
+
|
|
36
|
+
// Platform of CNKI, default to the National Zong Ku Ping Tai(pinyin of "Total Database Platform").
|
|
37
|
+
// It may be modified when this Translator called by other translators.
|
|
38
|
+
const platform = 'NZKPT';
|
|
39
|
+
|
|
40
|
+
/**
|
|
41
|
+
* A mapping table of database code to item type.
|
|
42
|
+
* It may be modified when this Translator called by other translators.
|
|
43
|
+
*/
|
|
44
|
+
const typeMap = {
|
|
45
|
+
|
|
46
|
+
/*
|
|
47
|
+
In the following comments,
|
|
48
|
+
"wai wen" indicates the pinyin of Chinese word "外文", meaning "foreign language",
|
|
49
|
+
"zong ku" indicates the pinyin of Chinese word "总库", meaning "total database".
|
|
50
|
+
*/
|
|
51
|
+
// 中国学术期刊全文数据库(China Academic Journal Full-text Database, AKA CAJD, CJZK)
|
|
52
|
+
CJFD: 'journalArticle',
|
|
53
|
+
CJFQ: 'journalArticle',
|
|
54
|
+
// 中国预出版期刊全文数据库(China Advance Publish Journal Full-text Database)
|
|
55
|
+
CAPJ: 'journalArticle',
|
|
56
|
+
// 外文学术期刊数据库(Wai Wen Journal Database)
|
|
57
|
+
WWJD: 'journalArticle',
|
|
58
|
+
// 特色期刊 journal
|
|
59
|
+
CJFN: 'journalArticle',
|
|
60
|
+
// 中国学术辑刊全文数据库(China Collected Journal Database)
|
|
61
|
+
CCJD: 'journalArticle',
|
|
62
|
+
|
|
63
|
+
/* thesis */
|
|
64
|
+
// 中国博硕士学位论文全文数据库(China Doctoral Dissertations and Master’s Theses Full-text Database)
|
|
65
|
+
CDMD: 'thesis',
|
|
66
|
+
// 中国博士学位论文全文数据库(China Doctoral Dissertations Full-text Database)
|
|
67
|
+
CDFD: 'thesis',
|
|
68
|
+
// 中国优秀硕士学位论文全文数据库(China Master’s Theses Full-text Database)
|
|
69
|
+
CMFD: 'thesis',
|
|
70
|
+
// 中国重要报纸全文数据库(China Core Newspapers Full-text Database)
|
|
71
|
+
CCND: 'newspaperArticle',
|
|
72
|
+
|
|
73
|
+
/* patent */
|
|
74
|
+
// 境内外专利全文数据库(China & Outbound Patent Full-text Database)
|
|
75
|
+
SCOD: 'patent',
|
|
76
|
+
// 中国专利全文数据库(China Patent Full-text Database)
|
|
77
|
+
SCPD: 'patent',
|
|
78
|
+
// 境外专利全文数据库(Outbound Patent Full-text Database)
|
|
79
|
+
SOPD: 'patent',
|
|
80
|
+
// 中国年鉴全文数据库(China Yearbook Full-text Database)
|
|
81
|
+
CYFD: 'bookSection',
|
|
82
|
+
|
|
83
|
+
/* conference paper */
|
|
84
|
+
// 国际及国内会议论文全文数据库(Cina & International Important Proceeding Full-text Database)
|
|
85
|
+
CIPD: 'conferencePaper',
|
|
86
|
+
// 中国会议论文全文数据库(Cina Proceeding Full-text Database)
|
|
87
|
+
CPFD: 'conferencePaper',
|
|
88
|
+
// 国际会议论文全文数据库(International Proceeding Full-text Database)
|
|
89
|
+
IPFD: 'conferencePaper',
|
|
90
|
+
// 国外会议全文数据库(Wai Wen Proceeding Full-text Database)
|
|
91
|
+
WWPD: 'conferencePaper',
|
|
92
|
+
// 会议视频(China Proceeding Video Database)
|
|
93
|
+
CPVD: 'conferencePaper',
|
|
94
|
+
// 视频(China Conference Video Database)
|
|
95
|
+
CCVD: 'videoRecording',
|
|
96
|
+
|
|
97
|
+
/* book */
|
|
98
|
+
// Book Datab 总库
|
|
99
|
+
BDZK: 'book',
|
|
100
|
+
// 中文图书 book, zh
|
|
101
|
+
WBFD: 'book',
|
|
102
|
+
// 外文图书数据库(wai wen Book Database)
|
|
103
|
+
WWBD: 'book',
|
|
104
|
+
|
|
105
|
+
/* Standard */
|
|
106
|
+
// 标准数据总库(Cina & International Stand Database)
|
|
107
|
+
CISD: 'standard',
|
|
108
|
+
// 中国标准全文数据库(China Standard Full-text Database)
|
|
109
|
+
SCSF: 'standard',
|
|
110
|
+
// 中国行业标准全文数据库(China Hang Ye Standard Full-text Database)
|
|
111
|
+
SCHF: 'standard',
|
|
112
|
+
// 中国标准题录数据库(China Standard Full-text Database)
|
|
113
|
+
SCSD: 'standard',
|
|
114
|
+
// 国外标准全文数据库(Outbound Standard Full-text Database)
|
|
115
|
+
SOSD: 'standard',
|
|
116
|
+
|
|
117
|
+
/* report */
|
|
118
|
+
// 中国科技项目创新成果鉴定意见数据库(National Science and Technology Project Innovation Achievement Appraisal Opinion Database)
|
|
119
|
+
SNAD: 'report',
|
|
120
|
+
// 科技报告(Chinese pinyin "Ke Ji Bao Gao", means "Science & Technology Report")
|
|
121
|
+
KJBG: 'report',
|
|
122
|
+
|
|
123
|
+
/* statute */
|
|
124
|
+
// 中国政报公报期刊文献总库
|
|
125
|
+
// GWKT: 'statute',
|
|
126
|
+
// 中国法律知识总库(Cina Law Knowledge Database)
|
|
127
|
+
// CLKD: 'statute',
|
|
128
|
+
|
|
129
|
+
/* Rare dbcode migrations from previous code or from user-reported cases. */
|
|
130
|
+
CJZK: 'journalArticle',
|
|
131
|
+
// legacy, see sample on https://www.52pojie.cn/thread-1231722-1-1.html
|
|
132
|
+
SJES: 'journalArticle',
|
|
133
|
+
SJPD: 'journalArticle',
|
|
134
|
+
SSJD: 'journalArticle'
|
|
135
|
+
};
|
|
136
|
+
|
|
137
|
+
// A list of databases containing only English literature for language determination.
|
|
138
|
+
// It may be modified when this Translator called by other translators.
|
|
139
|
+
const enDatabase = ['WWJD', 'IPFD', 'WWPD', 'WWBD', 'SOSD'];
|
|
140
|
+
|
|
141
|
+
// A list of databases that look like CNKI Scholar.
|
|
142
|
+
// It may be modified when this Translator called by other translators.
|
|
143
|
+
const scholarLike = ['WWJD', 'WWBD'];
|
|
144
|
+
|
|
145
|
+
/**
|
|
146
|
+
* A series of identifiers for item, used to request data from APIs.
|
|
147
|
+
*/
|
|
148
|
+
class ID {
|
|
149
|
+
constructor(doc, url) {
|
|
150
|
+
const frame = {
|
|
151
|
+
dbname: {
|
|
152
|
+
selector: 'input#paramdbname',
|
|
153
|
+
pattern: /[?&](?:db|table)name=([^&#/]*)/i
|
|
154
|
+
},
|
|
155
|
+
filename: {
|
|
156
|
+
selector: 'input#paramfilename',
|
|
157
|
+
pattern: /[?&]filename=([^&#/]*)/i
|
|
158
|
+
},
|
|
159
|
+
dbcode: {
|
|
160
|
+
selector: 'input#paramdbcode',
|
|
161
|
+
pattern: /[?&]dbcode=([^&#/]*)/i
|
|
162
|
+
}
|
|
163
|
+
};
|
|
164
|
+
for (const key in frame) {
|
|
165
|
+
this[key] = attr(doc, frame[key].selector, 'value')
|
|
166
|
+
|| tryMatch(url, frame[key].pattern, 1);
|
|
167
|
+
}
|
|
168
|
+
this.dbcode = this.dbcode || this.dbname.substring(0, 4).toUpperCase();
|
|
169
|
+
this.url = url;
|
|
170
|
+
}
|
|
171
|
+
|
|
172
|
+
/**
|
|
173
|
+
* @returns true when both necessary dbcode and filename are available.
|
|
174
|
+
*/
|
|
175
|
+
toBoolean() {
|
|
176
|
+
return Boolean(this.dbname && this.filename);
|
|
177
|
+
}
|
|
178
|
+
|
|
179
|
+
toItemtype() {
|
|
180
|
+
return exports.typeMap[this.dbcode];
|
|
181
|
+
}
|
|
182
|
+
|
|
183
|
+
toLanguage() {
|
|
184
|
+
// zh database code: CJFQ,CDFD,CMFD,CPFD,IPFD,CPVD,CCND,WBFD,SCSF,SCHF,SCSD,SNAD,CCJD,CJFN,CCVD
|
|
185
|
+
// en database code: WWJD,IPFD,WWPD,WWBD,SOSD
|
|
186
|
+
return exports.enDatabase.includes(this.dbcode)
|
|
187
|
+
? 'en-US'
|
|
188
|
+
: 'zh-CN';
|
|
189
|
+
}
|
|
190
|
+
}
|
|
191
|
+
|
|
192
|
+
function detectWeb(doc, url) {
|
|
193
|
+
const ids = new ID(doc, url);
|
|
194
|
+
Z.debug('detect ids:');
|
|
195
|
+
Z.debug(ids);
|
|
196
|
+
const multiplePattern = [
|
|
197
|
+
|
|
198
|
+
/*
|
|
199
|
+
search
|
|
200
|
+
https://kns.cnki.net/kns/search?dbcode=SCDB
|
|
201
|
+
https://kns.cnki.net/kns8s/
|
|
202
|
+
*/
|
|
203
|
+
/kns8?s?\/search\??/i,
|
|
204
|
+
|
|
205
|
+
/* https://kns.cnki.net/kns8s/defaultresult/index?korder=&kw= */
|
|
206
|
+
/kns8?s?\/defaultresult\/index/i,
|
|
207
|
+
|
|
208
|
+
/*
|
|
209
|
+
advanced search
|
|
210
|
+
old version: https://kns.cnki.net/kns/advsearch?dbcode=SCDB
|
|
211
|
+
new version: https://kns.cnki.net/kns8s/AdvSearch?classid=WD0FTY92
|
|
212
|
+
*/
|
|
213
|
+
/KNS8?s?\/AdvSearch\?/i,
|
|
214
|
+
|
|
215
|
+
/*
|
|
216
|
+
navigation page
|
|
217
|
+
https://navi.cnki.net/knavi/journals/ZGSK/detail?uniplatform=NZKPT
|
|
218
|
+
*/
|
|
219
|
+
/\/KNavi\//i
|
|
220
|
+
];
|
|
221
|
+
// #ModuleSearchResult for commom search and advanced search (mainland China),
|
|
222
|
+
// #briefBox for commom search and advanced search (Oversea),
|
|
223
|
+
// #contentPanel for journal/yearbook navigation,
|
|
224
|
+
// .main_sh for old version
|
|
225
|
+
const searchResult = doc.querySelector('#ModuleSearchResult, #briefBox, #contentPanel, .main_sh');
|
|
226
|
+
if (searchResult) {
|
|
227
|
+
Z.monitorDOMChanges(searchResult, { childList: true, subtree: true });
|
|
228
|
+
}
|
|
229
|
+
if (ids.toBoolean()) {
|
|
230
|
+
// Sometimes dbcode is not a known type, and the itmType cannot be determined by dbcode.
|
|
231
|
+
// But the itemType does not affect the api request, and we can get its real item type later,
|
|
232
|
+
// so it appears temporarily as a journal article.
|
|
233
|
+
return ids.toItemtype() || 'journalArticle';
|
|
234
|
+
}
|
|
235
|
+
else if (multiplePattern.some(element => element.test(url)) && getSearchResults(doc, url, true)) {
|
|
236
|
+
return 'multiple';
|
|
237
|
+
}
|
|
238
|
+
return false;
|
|
239
|
+
}
|
|
240
|
+
|
|
241
|
+
function getSearchResults(doc, url, checkOnly) {
|
|
242
|
+
const items = {};
|
|
243
|
+
let found = false;
|
|
244
|
+
const multiplePage = [
|
|
245
|
+
|
|
246
|
+
/*
|
|
247
|
+
journal navigation
|
|
248
|
+
https://navi.cnki.net/knavi/journals/ZGSK/detail?uniplatform=NZKPT
|
|
249
|
+
*/
|
|
250
|
+
{
|
|
251
|
+
isMatch: /\/journals\/.+\/detail/i.test(url),
|
|
252
|
+
// 过刊浏览,栏目浏览
|
|
253
|
+
row: '#rightCatalog dd, .searchresult-list tbody > tr',
|
|
254
|
+
a: '.name > a',
|
|
255
|
+
cite: 'td[align="center"]:nth-last-child(2)',
|
|
256
|
+
download: 'td[align="center"]:last-child'
|
|
257
|
+
},
|
|
258
|
+
|
|
259
|
+
/*
|
|
260
|
+
thesis navigation
|
|
261
|
+
https://navi.cnki.net/knavi/degreeunits/GBEJU/detail?uniplatform=NZKPT
|
|
262
|
+
*/
|
|
263
|
+
{
|
|
264
|
+
isMatch: /\/degreeunits\/.+\/detail/i.test(url),
|
|
265
|
+
row: '#rightCatalog tbody > tr',
|
|
266
|
+
a: '.name > a',
|
|
267
|
+
cite: 'td[align="center"]:nth-last-child(2)',
|
|
268
|
+
download: 'td[align="center"]:last-child'
|
|
269
|
+
},
|
|
270
|
+
|
|
271
|
+
/*
|
|
272
|
+
conference navigation
|
|
273
|
+
https://navi.cnki.net/knavi/conferences/030681/proceedings/IKJS202311001/detail?uniplatform=NZKPT
|
|
274
|
+
*/
|
|
275
|
+
{
|
|
276
|
+
isMatch: /\/proceedings\/.+\/detail/i.test(url),
|
|
277
|
+
row: '#rightCatalog tbody > tr',
|
|
278
|
+
a: '.name > a',
|
|
279
|
+
cite: 'td[align="center"]:nth-last-child(2)',
|
|
280
|
+
download: 'td[align="center"]:last-child'
|
|
281
|
+
},
|
|
282
|
+
|
|
283
|
+
/*
|
|
284
|
+
newspaper navigation
|
|
285
|
+
https://navi.cnki.net/knavi/newspapers/RMRB/detail?uniplatform=NZKPT
|
|
286
|
+
*/
|
|
287
|
+
{
|
|
288
|
+
isMatch: /\/newspapers\/.+\/detail/i.test(url),
|
|
289
|
+
row: '#rightCatalog tbody > tr',
|
|
290
|
+
a: '.name > a'
|
|
291
|
+
},
|
|
292
|
+
|
|
293
|
+
/*
|
|
294
|
+
yearbook navigation
|
|
295
|
+
https://kns.cnki.net/knavi/yearbooks/YHYNJ/detail?uniplatform=NZKPT
|
|
296
|
+
*/
|
|
297
|
+
{
|
|
298
|
+
isMatch: /\/yearbooks\/.+\/detail/i.test(url),
|
|
299
|
+
row: '#rightCatalog .itemNav',
|
|
300
|
+
a: 'a'
|
|
301
|
+
},
|
|
302
|
+
|
|
303
|
+
/*
|
|
304
|
+
yearbook search result
|
|
305
|
+
https://kns.cnki.net/kns8s/defaultresult/index?classid=HHCPM1F8&korder=SU&kw=%E7%85%A4%E7%82%AD
|
|
306
|
+
*/
|
|
307
|
+
{
|
|
308
|
+
isMatch: doc.querySelector('.yearbook-title > a'),
|
|
309
|
+
row: 'table.result-table-list tbody tr',
|
|
310
|
+
a: '.yearbook-title > a',
|
|
311
|
+
download: 'td.download'
|
|
312
|
+
},
|
|
313
|
+
|
|
314
|
+
/* Search page */
|
|
315
|
+
{
|
|
316
|
+
isMatch: true,
|
|
317
|
+
row: 'table.result-table-list tbody tr',
|
|
318
|
+
a: 'td.name a',
|
|
319
|
+
cite: 'td.quote',
|
|
320
|
+
download: 'td.download'
|
|
321
|
+
}
|
|
322
|
+
].find(page => page.isMatch);
|
|
323
|
+
const rows = doc.querySelectorAll(multiplePage.row);
|
|
324
|
+
if (!rows.length) return false;
|
|
325
|
+
for (let i = 0; i < rows.length; i++) {
|
|
326
|
+
const itemKey = {};
|
|
327
|
+
const header = rows[i].querySelector(multiplePage.a);
|
|
328
|
+
if (!header) continue;
|
|
329
|
+
itemKey.url = header.href;
|
|
330
|
+
const title = header.getAttribute('title') || ZU.trimInternal(header.textContent);
|
|
331
|
+
if (!itemKey.url || !title) continue;
|
|
332
|
+
if (checkOnly) return true;
|
|
333
|
+
found = true;
|
|
334
|
+
// Identifier used for batch export, the format is different for homeland and oversea versions.
|
|
335
|
+
itemKey.cookieName = attr(rows[i], '[name="CookieName"]', 'value');
|
|
336
|
+
// attachment download link.
|
|
337
|
+
itemKey.downloadlink = attr(rows[i], 'td.operat > a.downloadlink', 'href');
|
|
338
|
+
try {
|
|
339
|
+
// citation counts.
|
|
340
|
+
itemKey.cite = text(rows[i], multiplePage.cite);
|
|
341
|
+
// download counts.
|
|
342
|
+
itemKey.download = text(rows[i], multiplePage.download);
|
|
343
|
+
}
|
|
344
|
+
catch (error) {
|
|
345
|
+
Z.debug('Failed to get CNKIcite or download');
|
|
346
|
+
}
|
|
347
|
+
|
|
348
|
+
/* Use the item key to store some useful information */
|
|
349
|
+
items[JSON.stringify(itemKey)] = `【${i + 1}】${title}`;
|
|
350
|
+
}
|
|
351
|
+
return found ? items : false;
|
|
352
|
+
}
|
|
353
|
+
|
|
354
|
+
// Css selectors for CNKI Scholar like page, to change the default behavior of CNKI Scholar translator.
|
|
355
|
+
// It may be modified when this Translator called by other translators.
|
|
356
|
+
const csSelectors = {
|
|
357
|
+
labels: '.brief h3, .row-scholar',
|
|
358
|
+
title: '.h1-scholar',
|
|
359
|
+
abstractNote: '#ChDivSummary',
|
|
360
|
+
publicationTitle: '.top-tip-scholar > span >a',
|
|
361
|
+
pubInfo: '.top-tip-scholar',
|
|
362
|
+
publisher: '.all-source a',
|
|
363
|
+
DOI: 'no-selector-available',
|
|
364
|
+
creators: '.author-scholar > a',
|
|
365
|
+
tags: '[id*="doc-keyword"] a',
|
|
366
|
+
hightlights: 'no-selector-available',
|
|
367
|
+
bookUrl: 'no-selector-available'
|
|
368
|
+
};
|
|
369
|
+
|
|
370
|
+
async function doWeb(doc, url) {
|
|
371
|
+
// for inside and outside Chinese Mainland IP, CNKI uses different APIs.
|
|
372
|
+
inMainland = !/oversea/i.test(url);
|
|
373
|
+
Z.debug(`inMainland: ${inMainland}`);
|
|
374
|
+
|
|
375
|
+
if (detectWeb(doc, url) == 'multiple') {
|
|
376
|
+
let items = await Z.selectItems(getSearchResults(doc, url, false));
|
|
377
|
+
if (!items) return;
|
|
378
|
+
await scrapeMulti(items, doc);
|
|
379
|
+
}
|
|
380
|
+
else {
|
|
381
|
+
await scrape(doc);
|
|
382
|
+
}
|
|
383
|
+
}
|
|
384
|
+
|
|
385
|
+
/**
|
|
386
|
+
* For multiple items, prioritize trying to scrape them one by one, as documents always provide more information;
|
|
387
|
+
* if it is not possible to obtain item's document, consider using batch export API.
|
|
388
|
+
* @param {Object} items, items from Zotero.selectedItems().
|
|
389
|
+
*/
|
|
390
|
+
async function scrapeMulti(items, doc) {
|
|
391
|
+
for (const key in items) {
|
|
392
|
+
const itemKey = JSON.parse(key);
|
|
393
|
+
Z.debug(itemKey);
|
|
394
|
+
try {
|
|
395
|
+
// During debugging, may manually throw an error to guide the program to run inward
|
|
396
|
+
// throw new Error('debug');
|
|
397
|
+
let doc = await requestDocument(itemKey.url);
|
|
398
|
+
// CAPTCHA
|
|
399
|
+
if (doc.querySelector('#verify_pic')) {
|
|
400
|
+
doc = await requestDocument(`https://kns.cnki.net/kcms2/newLink?${tryMatch(itemKey.url, /v=[^&/]+/)}`);
|
|
401
|
+
}
|
|
402
|
+
await scrape(doc, itemKey);
|
|
403
|
+
}
|
|
404
|
+
catch (error) {
|
|
405
|
+
Z.debug('Error encountered while scraping one by one:');
|
|
406
|
+
Z.debug(error);
|
|
407
|
+
if (!Object.keys(items).some(itemKey => JSON.parse(itemKey).cookieName)) {
|
|
408
|
+
throw new Error('This page is not suitable for using batch export API');
|
|
409
|
+
}
|
|
410
|
+
const itemKeys = Object.keys(items)
|
|
411
|
+
.map(element => JSON.parse(element))
|
|
412
|
+
.filter(element => element.cookieName);
|
|
413
|
+
await scrapeWithShowExport(itemKeys, doc);
|
|
414
|
+
// batch export API can request all data at once.
|
|
415
|
+
break;
|
|
416
|
+
}
|
|
417
|
+
}
|
|
418
|
+
}
|
|
419
|
+
|
|
420
|
+
async function scrape(doc, itemKey = { url: '', cite: '', cookieName: '', downloadlink: '' }) {
|
|
421
|
+
const url = doc.location.href;
|
|
422
|
+
const ids = new ID(doc, url);
|
|
423
|
+
if (exports.scholarLike.includes(ids.dbcode)) {
|
|
424
|
+
let translator = Zotero.loadTranslator('web');
|
|
425
|
+
// CNKI Scholar
|
|
426
|
+
translator.setTranslator('b9b97a32-a8aa-4688-bd81-491bec21b1de');
|
|
427
|
+
translator.setDocument(doc);
|
|
428
|
+
translator.setHandler('itemDone', (_obj, item) => {
|
|
429
|
+
item.attachments.push({
|
|
430
|
+
title: 'Snapshot',
|
|
431
|
+
document: doc
|
|
432
|
+
});
|
|
433
|
+
item.complete();
|
|
434
|
+
});
|
|
435
|
+
const cs = await translator.getTranslatorObject();
|
|
436
|
+
cs.selectors = exports.csSelectors;
|
|
437
|
+
cs.typeKey = text(doc, '.top-tip-scholar > span:first-child');
|
|
438
|
+
await cs.scrape(doc, url);
|
|
439
|
+
}
|
|
440
|
+
else if (ids.toItemtype() == 'videoRecording') {
|
|
441
|
+
await scrapeDoc(doc, itemKey);
|
|
442
|
+
}
|
|
443
|
+
else if (url.includes('thinker.cnki')) {
|
|
444
|
+
let translator = Zotero.loadTranslator('web');
|
|
445
|
+
// CNKI thinker
|
|
446
|
+
translator.setTranslator('5393921c-d543-4b3a-a874-070b5d73b03a');
|
|
447
|
+
translator.setDocument(doc);
|
|
448
|
+
translator.setHandler('itemDone', (_obj, item) => {
|
|
449
|
+
item.complete();
|
|
450
|
+
});
|
|
451
|
+
await translator.translate();
|
|
452
|
+
}
|
|
453
|
+
else {
|
|
454
|
+
if (/\/xmlRead\//i.test(url)) {
|
|
455
|
+
doc = await requestDocument(strChild(doc, 'a.details', 'href'));
|
|
456
|
+
}
|
|
457
|
+
try {
|
|
458
|
+
// During debugging, may manually throw an error to guide the program to run inward
|
|
459
|
+
// throw new Error('debug');
|
|
460
|
+
await scrapeWithGetExport(doc, ids, itemKey);
|
|
461
|
+
}
|
|
462
|
+
catch (error1) {
|
|
463
|
+
Z.debug('An error was encountered while using GetExport API:');
|
|
464
|
+
Z.debug(error1);
|
|
465
|
+
try {
|
|
466
|
+
// During debugging, may manually throw an error to guide the program to run inward
|
|
467
|
+
// throw new Error('debug');
|
|
468
|
+
itemKey.cookieName = `${ids.dbname}!${ids.filename}!1!0`;
|
|
469
|
+
await scrapeWithShowExport([itemKey], doc);
|
|
470
|
+
}
|
|
471
|
+
catch (error2) {
|
|
472
|
+
Z.debug('An error was encountered while using ShowExport API:');
|
|
473
|
+
Z.debug(error2);
|
|
474
|
+
await scrapeDoc(doc, itemKey);
|
|
475
|
+
}
|
|
476
|
+
}
|
|
477
|
+
}
|
|
478
|
+
}
|
|
479
|
+
|
|
480
|
+
/**
|
|
481
|
+
* API from the "cite" button of the page.
|
|
482
|
+
* @param {Element} doc
|
|
483
|
+
* @param {ID} ids
|
|
484
|
+
* @param {*} itemKey some extra information from "multiple" page.
|
|
485
|
+
*/
|
|
486
|
+
async function scrapeWithGetExport(doc, ids, itemKey) {
|
|
487
|
+
Z.debug('use API: GetExport');
|
|
488
|
+
// During debugging, may manually throw an error to guide the program to run inward.
|
|
489
|
+
// throw new Error('debug');
|
|
490
|
+
|
|
491
|
+
const postUrl = inMainland
|
|
492
|
+
? '/dm8/API/GetExport'
|
|
493
|
+
: '/kns8/manage/APIGetExport';
|
|
494
|
+
// "1": row's sequence in search result page, defualt 1; "0": index of page in search result pages, defualt 0.
|
|
495
|
+
let postData = inMainland
|
|
496
|
+
? `filename=${attr(doc, '#export-id', 'value')}&uniplatform=${exports.platform}`
|
|
497
|
+
: `filename=${ids.dbname}!${ids.filename}!1!0`;
|
|
498
|
+
// Although there are two data formats that are redundant,
|
|
499
|
+
// it can make the request more "ordinary" to server.
|
|
500
|
+
postData += '&displaymode=GBTREFER%2Celearning%2CEndNote';
|
|
501
|
+
let referText = await requestJSON(
|
|
502
|
+
postUrl,
|
|
503
|
+
{
|
|
504
|
+
method: 'POST',
|
|
505
|
+
body: postData,
|
|
506
|
+
headers: {
|
|
507
|
+
Referer: ids.url
|
|
508
|
+
}
|
|
509
|
+
}
|
|
510
|
+
);
|
|
511
|
+
|
|
512
|
+
if (!referText.data || !referText.data.length) {
|
|
513
|
+
throw new ReferenceError(`Failed to retrieve data from API: GetExport\n${JSON.stringify(ids)}\n${JSON.stringify(referText)}`);
|
|
514
|
+
}
|
|
515
|
+
referText = referText.data[2].value[0].replace(/<br>/g, '\n');
|
|
516
|
+
await parseRefer(referText, doc, ids.url, itemKey);
|
|
517
|
+
}
|
|
518
|
+
|
|
519
|
+
/**
|
|
520
|
+
* API from buulk-export button.
|
|
521
|
+
* @param {*} itemKey some extra information from "multiple" page.
|
|
522
|
+
*/
|
|
523
|
+
async function scrapeWithShowExport(itemKeys, doc) {
|
|
524
|
+
Z.debug('use API: showExport');
|
|
525
|
+
// During debugging, may manually throw an error to guide the program to run inward
|
|
526
|
+
// throw new Error('debug');
|
|
527
|
+
|
|
528
|
+
const postUrl = inMainland
|
|
529
|
+
? 'https://kns.cnki.net/dm8/api/ShowExport'
|
|
530
|
+
: `${doc.location.protocol}//${doc.location.host}/kns/manage/ShowExport`;
|
|
531
|
+
const postData = `FileName=${itemKeys.map(key => key.cookieName).join(',')}`
|
|
532
|
+
+ '&DisplayMode=EndNote'
|
|
533
|
+
+ '&OrderParam=0'
|
|
534
|
+
+ '&OrderType=desc'
|
|
535
|
+
+ '&SelectField='
|
|
536
|
+
+ `${inMainland ? `&PageIndex=1&PageSize=20&language=CHS&uniplatform=${exports.platform}` : ''}`
|
|
537
|
+
+ `&random=${Math.random()}`;
|
|
538
|
+
const refer = inMainland
|
|
539
|
+
? 'https://kns.cnki.net/dm8/manage/export.html?'
|
|
540
|
+
: `${doc.location.protocol}//${doc.location.host}/manage/export.html?displaymode=EndNote`;
|
|
541
|
+
let referText = await request(
|
|
542
|
+
postUrl,
|
|
543
|
+
{
|
|
544
|
+
method: 'POST',
|
|
545
|
+
body: postData,
|
|
546
|
+
headers: {
|
|
547
|
+
Referer: refer
|
|
548
|
+
}
|
|
549
|
+
}
|
|
550
|
+
);
|
|
551
|
+
if (!referText.body || !referText.body.length) {
|
|
552
|
+
throw new ReferenceError('Failed to retrieve data from API: ShowExport');
|
|
553
|
+
}
|
|
554
|
+
referText = referText.body
|
|
555
|
+
// prefix
|
|
556
|
+
.replace(/^<ul class='literature-list'>/, '')
|
|
557
|
+
// suffix
|
|
558
|
+
.replace(/<\/ul><input.*>$/, '')
|
|
559
|
+
.match(/<li>.*?<\/li>/g);
|
|
560
|
+
|
|
561
|
+
for (let i = 0; i < referText.length; i++) {
|
|
562
|
+
let text = referText[i];
|
|
563
|
+
text = text.replace(/(^<li>\s*|\s*<\/li>$)/g, '').replace(/<br>/g, '\n');
|
|
564
|
+
await parseRefer(
|
|
565
|
+
text,
|
|
566
|
+
doc,
|
|
567
|
+
itemKeys[i].url,
|
|
568
|
+
itemKeys[i]);
|
|
569
|
+
}
|
|
570
|
+
}
|
|
571
|
+
|
|
572
|
+
/**
|
|
573
|
+
* Alternative offline scrapping scheme.
|
|
574
|
+
* @param {Element} doc
|
|
575
|
+
* @param {*} itemKey some extra information from "multiple" page.
|
|
576
|
+
*/
|
|
577
|
+
async function scrapeDoc(doc, itemKey) {
|
|
578
|
+
Z.debug('scraping from document...');
|
|
579
|
+
|
|
580
|
+
const url = doc.location.href;
|
|
581
|
+
const ids = new ID(doc, url);
|
|
582
|
+
const newItem = new Zotero.Item(ids.toItemtype());
|
|
583
|
+
const labels = new Labels(doc, 'div.doc div[class^="row"], li.top-space, .total-inform > span');
|
|
584
|
+
const extra = new Extra();
|
|
585
|
+
Z.debug(labels.data.map(element => [element[0], ZU.trimInternal(element[1].textContent)]));
|
|
586
|
+
|
|
587
|
+
richTextTitle(newItem, doc);
|
|
588
|
+
newItem.abstractNote = attr(doc, '#abstract_text', 'value');
|
|
589
|
+
|
|
590
|
+
const doi = labels.get('DOI');
|
|
591
|
+
if (ZU.fieldIsValidForType('DOI', newItem.itemType)) {
|
|
592
|
+
newItem.DOI = doi;
|
|
593
|
+
}
|
|
594
|
+
else {
|
|
595
|
+
extra.set('DOI', doi, true);
|
|
596
|
+
}
|
|
597
|
+
|
|
598
|
+
/* URL */
|
|
599
|
+
if (!newItem.url || !/filename=/i.test(url)) {
|
|
600
|
+
if (doi) {
|
|
601
|
+
newItem.url = 'https://doi.org/' + doi;
|
|
602
|
+
}
|
|
603
|
+
else {
|
|
604
|
+
newItem.url = 'https://kns.cnki.net/KCMS/detail/detail.aspx?'
|
|
605
|
+
+ `dbcode=${ids.dbcode}`
|
|
606
|
+
+ `&dbname=${ids.dbname}`
|
|
607
|
+
+ `&filename=${ids.filename}`;
|
|
608
|
+
}
|
|
609
|
+
}
|
|
610
|
+
newItem.language = ids.toLanguage();
|
|
611
|
+
|
|
612
|
+
/* creators */
|
|
613
|
+
let creators = Array.from(doc.querySelectorAll('#authorpart > span > a[href*="/author/"]')).map(element => ZU.trimInternal(element.textContent).replace(/[\d,\s-]+$/, ''));
|
|
614
|
+
if (!creators.length && doc.querySelectorAll('#authorpart > span').length) {
|
|
615
|
+
creators = Array.from(doc.querySelectorAll('#authorpart > span')).map(element => ZU.trimInternal(element.textContent).replace(/[\d\s,;,;~-]*$/, ''));
|
|
616
|
+
}
|
|
617
|
+
if (!creators.length && doc.querySelector('h3 > span:only-child')) {
|
|
618
|
+
creators = ZU.trimInternal(doc.querySelector('h3 > span:only-child').textContent)
|
|
619
|
+
.replace(/\(.+?\)$/, '')
|
|
620
|
+
// pure Chinese name or English name
|
|
621
|
+
.match(/[\p{Unified_Ideograph}+|[a-z .-]+/igu)
|
|
622
|
+
.filter(string => ![
|
|
623
|
+
'institute',
|
|
624
|
+
'institution',
|
|
625
|
+
'organization',
|
|
626
|
+
'company',
|
|
627
|
+
'corporation',
|
|
628
|
+
'firm',
|
|
629
|
+
'laboratory',
|
|
630
|
+
'lab',
|
|
631
|
+
'co.ltd',
|
|
632
|
+
'school',
|
|
633
|
+
'university',
|
|
634
|
+
'college'
|
|
635
|
+
].some(institution => string.toLowerCase().includes(institution)));
|
|
636
|
+
}
|
|
637
|
+
creators.forEach((string) => {
|
|
638
|
+
newItem.creators.push(cleanName(string, 'author'));
|
|
639
|
+
});
|
|
640
|
+
|
|
641
|
+
/* tags */
|
|
642
|
+
const tags = [
|
|
643
|
+
Array.from(doc.querySelectorAll('.keywords > a')).map(element => ZU.trimInternal(element.textContent).replace(/[,;,;]$/, '')),
|
|
644
|
+
labels.get(['关键词', '關鍵詞', 'keywords']).split(/[;,;]\s*/)
|
|
645
|
+
].find(arr => arr.length);
|
|
646
|
+
if (tags) newItem.tags = tags;
|
|
647
|
+
|
|
648
|
+
/* specific Fields */
|
|
649
|
+
switch (newItem.itemType) {
|
|
650
|
+
case 'journalArticle': {
|
|
651
|
+
const pubInfo = ZU.trimInternal(innerText(doc, '.top-tip'));
|
|
652
|
+
newItem.publicationTitle = tryMatch(pubInfo, /^(.+?)\./, 1).trim().replace(/\(([\u4e00-\u9fff]*)\)$/, '($1)');
|
|
653
|
+
newItem.volume = tryMatch(pubInfo, /,\s?0*([1-9]\d*)\s*\(/, 1);
|
|
654
|
+
newItem.issue = tryMatch(pubInfo, /\(([A-Z]?\d*)\)/i, 1).replace(/0*(\d+)/, '$1');
|
|
655
|
+
newItem.pages = labels.get(['页码', '頁碼', 'Page$']);
|
|
656
|
+
newItem.date = tryMatch(pubInfo, /\.\s?(\d{4})/, 1);
|
|
657
|
+
break;
|
|
658
|
+
}
|
|
659
|
+
case 'thesis': {
|
|
660
|
+
newItem.university = text(doc, 'h3 >span > a[href*="/organ/"]').replace(/\(([\u4e00-\u9fff]*)\)$/, '($1)');
|
|
661
|
+
newItem.thesisType = inMainland
|
|
662
|
+
? {
|
|
663
|
+
CMFD: '硕士学位论文',
|
|
664
|
+
CDFD: '博士学位论文',
|
|
665
|
+
CDMH: '硕士学位论文'
|
|
666
|
+
}[ids.dbcode]
|
|
667
|
+
: {
|
|
668
|
+
CMFD: 'Master thesis',
|
|
669
|
+
CDFD: 'Doctoral dissertation',
|
|
670
|
+
CDMH: 'Master thesis'
|
|
671
|
+
}[ids.dbcode];
|
|
672
|
+
const pubInfo = labels.get('出版信息');
|
|
673
|
+
newItem.date = ZU.strToISO(pubInfo);
|
|
674
|
+
newItem.numPages = labels.get(['页数', '頁數', 'Page']);
|
|
675
|
+
labels.get(['导师', '導師', 'Tutor']).split(/[;,;]\s*/).forEach((supervisor) => {
|
|
676
|
+
newItem.creators.push(cleanName(ZU.trimInternal(supervisor), 'contributor'));
|
|
677
|
+
});
|
|
678
|
+
extra.set('major', labels.get(['学科专业', '學科專業', 'Retraction']));
|
|
679
|
+
break;
|
|
680
|
+
}
|
|
681
|
+
case 'conferencePaper': {
|
|
682
|
+
newItem.abstractNote = labels.get(['摘要', 'Abstract']).replace(/^[〈⟨<<]正[>>⟩〉]/, '');
|
|
683
|
+
newItem.date = ZU.strToISO(labels.get(['会议时间', '會議時間', 'ConferenceTime']));
|
|
684
|
+
newItem.proceedingsTitle = attr(doc, '.top-tip > :first-child', 'title');
|
|
685
|
+
newItem.conferenceName = labels.get(['会议名称', '會議名稱', 'ConferenceName']);
|
|
686
|
+
newItem.place = labels.get(['会议地点', '會議地點', 'ConferencePlace']);
|
|
687
|
+
newItem.pages = labels.get(['页码', '頁碼', 'Page$']);
|
|
688
|
+
break;
|
|
689
|
+
}
|
|
690
|
+
case 'newspaperArticle': {
|
|
691
|
+
const subTitle = labels.get(['副标题', '副標題', 'Subtitle']);
|
|
692
|
+
if (subTitle) {
|
|
693
|
+
newItem.shortTitle = newItem.title;
|
|
694
|
+
newItem.title = `${newItem.title}:${subTitle}`;
|
|
695
|
+
}
|
|
696
|
+
newItem.abstractNote = text(doc, '.abstract-text');
|
|
697
|
+
newItem.publicationTitle = text(doc, '.top-tip > a');
|
|
698
|
+
newItem.date = ZU.strToISO(labels.get(['报纸日期', '報紙日期', 'NewspaperDate']));
|
|
699
|
+
newItem.pages = labels.get(['版号', '版號', 'EditionCode']);
|
|
700
|
+
break;
|
|
701
|
+
}
|
|
702
|
+
case 'bookSection':
|
|
703
|
+
newItem.bookTitle = text(doc, '.book-info .book-tit');
|
|
704
|
+
newItem.date = tryMatch(labels.get(['来源年鉴', 'SourceYearbook']), /\d{4}/);
|
|
705
|
+
newItem.pages = labels.get(['页码', '頁碼', 'Page$']);
|
|
706
|
+
newItem.creators = labels.get(['责任说明', '責任說明', 'Statementofresponsibility'])
|
|
707
|
+
.replace(/\s*([主]?编|Editor)$/, '')
|
|
708
|
+
.split(/[,;,;]/)
|
|
709
|
+
.map(creator => cleanName(creator, 'author'));
|
|
710
|
+
break;
|
|
711
|
+
case 'report':
|
|
712
|
+
newItem.abstractNote = labels.get(['成果简介', '成果簡介']);
|
|
713
|
+
newItem.creators = labels.get('成果完成人').split(/[,;,;]/).map(creator => cleanName(creator, 'author'));
|
|
714
|
+
newItem.date = labels.get(['入库时间', '入庫時間']);
|
|
715
|
+
newItem.institution = labels.get(['第一完成单位', '第一完成單位']);
|
|
716
|
+
extra.set('achievementType', labels.get(['成果类别', '成果類別']));
|
|
717
|
+
extra.set('level', labels.get('成果水平'));
|
|
718
|
+
extra.set('evaluation', labels.get(['评价形式', '評價形式']));
|
|
719
|
+
break;
|
|
720
|
+
case 'standard':
|
|
721
|
+
newItem.number = labels.get(['标准号', '標準號', 'StandardNo']);
|
|
722
|
+
if (newItem.number.startsWith('GB')) {
|
|
723
|
+
newItem.number = newItem.number.replace('-', '——');
|
|
724
|
+
newItem.title = newItem.title.replace(/([\u4e00-\u9fff]) ([\u4e00-\u9fff])/, '$1 $2');
|
|
725
|
+
}
|
|
726
|
+
newItem.status = text(doc, 'h1 > .type');
|
|
727
|
+
newItem.date = labels.get(['发布日期', '發佈日期', 'IssuanceDate']);
|
|
728
|
+
newItem.numPages = labels.get(['总页数', '總頁數', 'TotalPages']);
|
|
729
|
+
extra.set('original-title', text(doc, 'h1 > span'));
|
|
730
|
+
newItem.creators = labels.get(['标准技术委员会', '归口单位', '技術標準委員會', '歸口單位', 'StandardTechnicalCommittee'])
|
|
731
|
+
.split(/[;,;、]/)
|
|
732
|
+
.map(creator => ({
|
|
733
|
+
firstName: '',
|
|
734
|
+
lastName: creator.replace(/\(.+?\)$/, ''),
|
|
735
|
+
creatorType: 'author',
|
|
736
|
+
fieldMode: 1
|
|
737
|
+
}));
|
|
738
|
+
extra.set('applyDate', labels.get(['实施日期', '實施日期']), true);
|
|
739
|
+
break;
|
|
740
|
+
case 'patent': {
|
|
741
|
+
newItem.patentNumber = labels.get(['授權公布号', '授權公佈號', '申请公布号', '申請公佈號', 'PublicationNo']);
|
|
742
|
+
newItem.applicationNumber = labels.get(['申请\\(专利\\)号', '申請\\(專利\\)號', 'ApplicationNumber']);
|
|
743
|
+
const translate = Z.loadTranslator('import');
|
|
744
|
+
// CNKI Refer
|
|
745
|
+
translate.setTranslator('7b6b135a-ed39-4d90-8e38-65516671c5bc');
|
|
746
|
+
const { patentCountry } = await translate.getTranslatorObject();
|
|
747
|
+
newItem.place = newItem.country = patentCountry(newItem.patentNumber || newItem.applicationNumber, newItem.language);
|
|
748
|
+
newItem.filingDate = labels.get(['申请日', '申請日', 'ApplicationDate']);
|
|
749
|
+
newItem.issueDate = labels.get(['授权公告日', '授權公告日', 'IssuanceDate']);
|
|
750
|
+
newItem.rights = text(doc, '.claim > h5 + div');
|
|
751
|
+
extra.set('Genre', labels.get(['专利类型', '專利類型']), true);
|
|
752
|
+
labels.get(['发明人', '發明人', 'Inventor'])
|
|
753
|
+
.split(/[;,;]\s*/)
|
|
754
|
+
.forEach((inventor) => {
|
|
755
|
+
newItem.creators.push(cleanName(ZU.trimInternal(inventor), 'inventor'));
|
|
756
|
+
});
|
|
757
|
+
break;
|
|
758
|
+
}
|
|
759
|
+
case 'videoRecording':
|
|
760
|
+
newItem.abstractNote = labels.get(['视频简介', '視頻簡介']).replace(/\s*更多还原$/, '');
|
|
761
|
+
newItem.runningTime = labels.get(['时长', '時長']);
|
|
762
|
+
newItem.date = ZU.strToISO(labels.get(['发布时间', '發佈時間']));
|
|
763
|
+
extra.set('organizer', labels.get(['主办单位', '主辦單位']), true);
|
|
764
|
+
doc.querySelectorAll('h3:first-of-type > span').forEach((element) => {
|
|
765
|
+
newItem.creators.push(cleanName(ZU.trimInternal(element.textContent), 'author'));
|
|
766
|
+
});
|
|
767
|
+
break;
|
|
768
|
+
}
|
|
769
|
+
|
|
770
|
+
/* pages */
|
|
771
|
+
if (ZU.fieldIsValidForType('pages', newItem.itemType) && newItem.pages) {
|
|
772
|
+
newItem.pages = newItem.pages
|
|
773
|
+
.replace(/\d+/g, match => match.replace(/0*([1-9]\d*)/, '$1'))
|
|
774
|
+
.replace(/~/g, '-').replace(/\+/g, ', ');
|
|
775
|
+
}
|
|
776
|
+
|
|
777
|
+
/* date, advance online */
|
|
778
|
+
if (doc.querySelector('.icon-shoufa')) {
|
|
779
|
+
extra.set('Status', 'advance online publication');
|
|
780
|
+
newItem.date = ZU.strToISO(text(doc, '.head-time'));
|
|
781
|
+
}
|
|
782
|
+
|
|
783
|
+
/* extra */
|
|
784
|
+
extra.set('foundation', labels.get('基金'));
|
|
785
|
+
extra.set('download', labels.get(['下载', '下載', 'Download']) || itemKey.download);
|
|
786
|
+
extra.set('album', labels.get(['专辑', '專輯', 'Series']));
|
|
787
|
+
extra.set('CLC', labels.get(['分类号', '分類號', 'ClassificationCode']));
|
|
788
|
+
extra.set('CNKICite', itemKey.cite || attr(doc, '#paramcitingtimes', 'value') || text(doc, '#citations+span').substring(1, -1));
|
|
789
|
+
extra.set('dbcode', ids.dbcode);
|
|
790
|
+
extra.set('dbname', ids.dbname);
|
|
791
|
+
extra.set('filename', ids.filename);
|
|
792
|
+
await addPubDetail(newItem, extra, ids, doc);
|
|
793
|
+
newItem.extra = extra.toString();
|
|
794
|
+
addAttachments(newItem, doc, url, itemKey);
|
|
795
|
+
newItem.complete();
|
|
796
|
+
}
|
|
797
|
+
|
|
798
|
+
/**
|
|
799
|
+
* Call CNKI Refer.js to parse the text returned by API and supplement some fields from doc elements and itemKey.
|
|
800
|
+
* @param {String} referText Refer/BibIX format text from API.
|
|
801
|
+
* @param {Element} doc
|
|
802
|
+
* @param {String} url
|
|
803
|
+
* @param {*} itemKey
|
|
804
|
+
*/
|
|
805
|
+
async function parseRefer(referText, doc, url, itemKey) {
|
|
806
|
+
let item = {};
|
|
807
|
+
|
|
808
|
+
const labels = new Labels(doc, 'div.doc div[class^="row"], li.top-space, .total-inform > span');
|
|
809
|
+
Z.debug('get labels:');
|
|
810
|
+
Z.debug(labels.data.map(element => [element[0], ZU.trimInternal(element[1].textContent)]));
|
|
811
|
+
const extra = new Extra();
|
|
812
|
+
const ids = new ID(doc, url);
|
|
813
|
+
const translator = Zotero.loadTranslator('import');
|
|
814
|
+
// CNKI Refer
|
|
815
|
+
translator.setTranslator('7b6b135a-ed39-4d90-8e38-65516671c5bc');
|
|
816
|
+
translator.setString(referText.replace(/<br>/g, '\n'));
|
|
817
|
+
translator.setHandler('itemDone', (_obj, patchItem) => {
|
|
818
|
+
item = patchItem;
|
|
819
|
+
});
|
|
820
|
+
await translator.translate();
|
|
821
|
+
|
|
822
|
+
/* title */
|
|
823
|
+
richTextTitle(item, doc);
|
|
824
|
+
|
|
825
|
+
/* url */
|
|
826
|
+
if (!item.url || /\/kcms2\//i.test(item.url)) {
|
|
827
|
+
item.url = 'https://kns.cnki.net/KCMS/detail/detail.aspx?'
|
|
828
|
+
+ `dbcode=${ids.dbcode}`
|
|
829
|
+
+ `&dbname=${ids.dbname}`
|
|
830
|
+
+ `&filename=${ids.filename}`;
|
|
831
|
+
}
|
|
832
|
+
|
|
833
|
+
/* specific fields */
|
|
834
|
+
switch (item.itemType) {
|
|
835
|
+
case 'journalArticle':
|
|
836
|
+
if (doc.querySelector('.icon-shoufa')) {
|
|
837
|
+
extra.set('Status', 'advance online publication');
|
|
838
|
+
item.date = ZU.strToISO(text(doc, '.head-time'));
|
|
839
|
+
}
|
|
840
|
+
break;
|
|
841
|
+
case 'thesis':
|
|
842
|
+
item.numPages = labels.get(['页数', '頁數', 'Page']);
|
|
843
|
+
extra.set('major', labels.get(['学科专业', '學科專業', 'Retraction']));
|
|
844
|
+
break;
|
|
845
|
+
case 'conferencePaper': {
|
|
846
|
+
item.proceedingsTitle = attr(doc, '.top-tip > :first-child', 'title');
|
|
847
|
+
item.conferenceName = labels.get(['会议名称', '會議名稱', 'ConferenceName']);
|
|
848
|
+
break;
|
|
849
|
+
}
|
|
850
|
+
case 'newspaperArticle': {
|
|
851
|
+
const subTitle = labels.get(['副标题', '副標題', 'Subtitle']);
|
|
852
|
+
if (subTitle) {
|
|
853
|
+
item.shortTitle = item.title;
|
|
854
|
+
item.title = `${item.title}:${subTitle}`;
|
|
855
|
+
}
|
|
856
|
+
item.abstractNote = text(doc, '.abstract-text');
|
|
857
|
+
item.tags = labels.get(['关键词', '關鍵詞', 'keywords']).split(/[;,;]\s*/);
|
|
858
|
+
break;
|
|
859
|
+
}
|
|
860
|
+
|
|
861
|
+
/* yearbook */
|
|
862
|
+
case 'bookSection': {
|
|
863
|
+
item.bookTitle = text(doc, '.book-tit');
|
|
864
|
+
item.creators = labels.get(['责任说明', '責任說明', 'Statementofresponsibility'])
|
|
865
|
+
.replace(/\s*([主]?编|Editor)$/, '')
|
|
866
|
+
.split(/[,;,;]/)
|
|
867
|
+
.map(creator => cleanName(creator, 'author'));
|
|
868
|
+
break;
|
|
869
|
+
}
|
|
870
|
+
case 'report':
|
|
871
|
+
item.creators = labels.get('成果完成人').split(/[,;,;]/).map(creator => cleanName(creator, 'author'));
|
|
872
|
+
item.date = labels.get(['入库时间', '入庫時間']);
|
|
873
|
+
item.institution = labels.get(['第一完成单位', '第一完成單位']);
|
|
874
|
+
extra.set('achievementType', labels.get(['成果类别', '成果類別']));
|
|
875
|
+
extra.set('level', labels.get('成果水平'));
|
|
876
|
+
extra.set('evaluation', labels.get(['评价形式', '評價形式']));
|
|
877
|
+
break;
|
|
878
|
+
case 'standard':
|
|
879
|
+
extra.set('original-title', text(doc, 'h1 > span'));
|
|
880
|
+
item.status = text(doc, '.type');
|
|
881
|
+
item.creators = labels.get(['标准技术委员会', '归口单位', '技術標準委員會', '歸口單位', 'StandardTechnicalCommittee'])
|
|
882
|
+
.split(/[;,;、]/)
|
|
883
|
+
.map(creator => ({
|
|
884
|
+
firstName: '',
|
|
885
|
+
lastName: creator.replace(/\(.+?\)$/, ''),
|
|
886
|
+
creatorType: 'author',
|
|
887
|
+
fieldMode: 1
|
|
888
|
+
}));
|
|
889
|
+
extra.set('applyDate', labels.get(['实施日期', '實施日期']), true);
|
|
890
|
+
break;
|
|
891
|
+
case 'patent':
|
|
892
|
+
// item.place = labels.get('地址');
|
|
893
|
+
item.filingDate = labels.get(['申请日', '申請日', 'ApplicationDate']);
|
|
894
|
+
item.applicationNumber = labels.get(['申请\\(专利\\)号', '申請\\(專利\\)號', 'ApplicationNumber']);
|
|
895
|
+
item.issueDate = labels.get(['授权公告日', '授權公告日', 'IssuanceDate']);
|
|
896
|
+
item.rights = text(doc, '.claim > h5+div');
|
|
897
|
+
break;
|
|
898
|
+
}
|
|
899
|
+
item.language = ids.toLanguage();
|
|
900
|
+
extra.set('foundation', labels.get('基金'));
|
|
901
|
+
extra.set('download', labels.get(['下载', '下載', 'Download']) || itemKey.download);
|
|
902
|
+
extra.set('album', labels.get(['专辑', '專輯', 'Series']));
|
|
903
|
+
extra.set('CLC', labels.get(['分类号', '分類號', 'ClassificationCode']));
|
|
904
|
+
extra.set('CNKICite', itemKey.cite || attr(doc, '#paramcitingtimes', 'value') || text(doc, '#citations+span').substring(1, -1));
|
|
905
|
+
extra.set('dbcode', ids.dbcode);
|
|
906
|
+
extra.set('dbname', ids.dbname);
|
|
907
|
+
extra.set('filename', ids.filename);
|
|
908
|
+
await addPubDetail(item, extra, ids, doc);
|
|
909
|
+
item.extra = extra.toString(item.extra);
|
|
910
|
+
addAttachments(item, doc, url, itemKey);
|
|
911
|
+
item.complete();
|
|
912
|
+
}
|
|
913
|
+
|
|
914
|
+
/*********
|
|
915
|
+
* utils *
|
|
916
|
+
*********/
|
|
917
|
+
|
|
918
|
+
class Labels {
|
|
919
|
+
constructor(doc, selector) {
|
|
920
|
+
this.data = [];
|
|
921
|
+
this.emptyElm = doc.createElement('div');
|
|
922
|
+
const nodes = doc.querySelectorAll(selector);
|
|
923
|
+
for (const node of nodes) {
|
|
924
|
+
// avoid nesting
|
|
925
|
+
// avoid empty
|
|
926
|
+
if (node.querySelector(selector) || !/\S/.test(node.textContent)) continue;
|
|
927
|
+
const elmCopy = node.cloneNode(true);
|
|
928
|
+
// avoid empty text
|
|
929
|
+
while (![1, 3, 4].includes(elmCopy.firstChild.nodeType) || !/\S/.test(elmCopy.firstChild.textContent)) {
|
|
930
|
+
elmCopy.removeChild(elmCopy.firstChild);
|
|
931
|
+
if (!elmCopy.firstChild) break;
|
|
932
|
+
}
|
|
933
|
+
if (elmCopy.childNodes.length > 1) {
|
|
934
|
+
const key = elmCopy.removeChild(elmCopy.firstChild).textContent.replace(/\s/g, '');
|
|
935
|
+
this.data.push([key, elmCopy]);
|
|
936
|
+
}
|
|
937
|
+
else {
|
|
938
|
+
const text = ZU.trimInternal(elmCopy.textContent);
|
|
939
|
+
const key = tryMatch(text, /^[[【]?.+?[】\]::]/).replace(/\s/g, '');
|
|
940
|
+
elmCopy.textContent = tryMatch(text, /^[[【]?.+?[】\]::]\s*(.+)/, 1);
|
|
941
|
+
this.data.push([key, elmCopy]);
|
|
942
|
+
}
|
|
943
|
+
}
|
|
944
|
+
}
|
|
945
|
+
|
|
946
|
+
get(label, element = false) {
|
|
947
|
+
if (Array.isArray(label)) {
|
|
948
|
+
const results = label
|
|
949
|
+
.map(aLabel => this.get(aLabel, element));
|
|
950
|
+
const keyVal = element
|
|
951
|
+
? results.find(element => !/^\s*$/.test(element.textContent))
|
|
952
|
+
: results.find(string => string);
|
|
953
|
+
return keyVal
|
|
954
|
+
? keyVal
|
|
955
|
+
: element
|
|
956
|
+
? this.emptyElm
|
|
957
|
+
: '';
|
|
958
|
+
}
|
|
959
|
+
const pattern = new RegExp(label, 'i');
|
|
960
|
+
const keyVal = this.data.find(arr => pattern.test(arr[0]));
|
|
961
|
+
return keyVal
|
|
962
|
+
? element
|
|
963
|
+
? keyVal[1]
|
|
964
|
+
: ZU.trimInternal(keyVal[1].textContent)
|
|
965
|
+
: element
|
|
966
|
+
? this.emptyElm
|
|
967
|
+
: '';
|
|
968
|
+
}
|
|
969
|
+
}
|
|
970
|
+
|
|
971
|
+
class Extra {
|
|
972
|
+
constructor() {
|
|
973
|
+
this.fields = [];
|
|
974
|
+
}
|
|
975
|
+
|
|
976
|
+
push(key, val, csl = false) {
|
|
977
|
+
this.fields.push({ key: key, val: val, csl: csl });
|
|
978
|
+
}
|
|
979
|
+
|
|
980
|
+
set(key, val, csl = false) {
|
|
981
|
+
const target = this.fields.find(obj => new RegExp(`^${key}$`, 'i').test(obj.key));
|
|
982
|
+
if (target) {
|
|
983
|
+
target.val = val;
|
|
984
|
+
}
|
|
985
|
+
else {
|
|
986
|
+
this.push(key, val, csl);
|
|
987
|
+
}
|
|
988
|
+
}
|
|
989
|
+
|
|
990
|
+
get(key) {
|
|
991
|
+
const result = this.fields.find(obj => new RegExp(`^${key}$`, 'i').test(obj.key));
|
|
992
|
+
return result
|
|
993
|
+
? result.val
|
|
994
|
+
: '';
|
|
995
|
+
}
|
|
996
|
+
|
|
997
|
+
toString(history = '') {
|
|
998
|
+
this.fields = this.fields.filter(obj => obj.val);
|
|
999
|
+
return [
|
|
1000
|
+
this.fields.filter(obj => obj.csl).map(obj => `${obj.key}: ${obj.val}`).join('\n'),
|
|
1001
|
+
history,
|
|
1002
|
+
this.fields.filter(obj => !obj.csl).map(obj => `${obj.key}: ${obj.val}`).join('\n')
|
|
1003
|
+
].filter(obj => obj).join('\n');
|
|
1004
|
+
}
|
|
1005
|
+
}
|
|
1006
|
+
|
|
1007
|
+
function richTextTitle(item, doc) {
|
|
1008
|
+
let title = doc.querySelector('.wx-tit > h1');
|
|
1009
|
+
if (title) {
|
|
1010
|
+
title = title.cloneNode(true);
|
|
1011
|
+
while (title.querySelector(':not(sup):not(sub):not(i):not(b)')) {
|
|
1012
|
+
title.removeChild(title.querySelector(':not(sup):not(sub):not(i):not(b)'));
|
|
1013
|
+
}
|
|
1014
|
+
item.title = title.innerHTML
|
|
1015
|
+
.replace(/<(sup|sub|i|b)[^>]+>/g, '<$1>')
|
|
1016
|
+
.replace(/<(sup|sub|i|b)><\/(sup|sub|i|b)>/g, '');
|
|
1017
|
+
}
|
|
1018
|
+
}
|
|
1019
|
+
|
|
1020
|
+
function cleanName(string, creatorType) {
|
|
1021
|
+
if (!string) return {};
|
|
1022
|
+
return /[\u4e00-\u9fff]/.test(string)
|
|
1023
|
+
? {
|
|
1024
|
+
firstName: '',
|
|
1025
|
+
lastName: string.replace(/\s/g, ''),
|
|
1026
|
+
creatorType: creatorType,
|
|
1027
|
+
fieldMode: 1
|
|
1028
|
+
}
|
|
1029
|
+
: ZU.cleanAuthor(ZU.capitalizeName(string), creatorType);
|
|
1030
|
+
}
|
|
1031
|
+
|
|
1032
|
+
async function addPubDetail(item, extra, ids, doc) {
|
|
1033
|
+
let url;
|
|
1034
|
+
let pubDoc;
|
|
1035
|
+
try {
|
|
1036
|
+
if (!['journalArticle', 'conferencePaper', 'bookSection'].includes(item.itemType)) {
|
|
1037
|
+
return;
|
|
1038
|
+
}
|
|
1039
|
+
switch (item.itemType) {
|
|
1040
|
+
case 'journalArticle': {
|
|
1041
|
+
url = inMainland
|
|
1042
|
+
? doc.querySelector('.top-tip > :first-child > a').href
|
|
1043
|
+
: attr(doc, '.top-tip > :first-child > a', 'onclick').replace(
|
|
1044
|
+
/^.+\('(.+?)',\s*'(.+?)'\).*$/,
|
|
1045
|
+
'/KNavi/JournalDetail?pcode=$1&pykm=$2'
|
|
1046
|
+
);
|
|
1047
|
+
pubDoc = await requestDocument(url);
|
|
1048
|
+
break;
|
|
1049
|
+
}
|
|
1050
|
+
case 'conferencePaper': {
|
|
1051
|
+
if (inMainland) {
|
|
1052
|
+
url = doc.querySelector('.top-tip > a').href;
|
|
1053
|
+
url = 'https://kns.cnki.net/knavi/conferences/proceedings/catalog'
|
|
1054
|
+
// “论文集”code
|
|
1055
|
+
+ `?lwjcode=${tryMatch(url, /\/proceedings\/(\w+)\//, 1)}`
|
|
1056
|
+
// “会议”code
|
|
1057
|
+
+ `&hycode=&pIdx=0`;
|
|
1058
|
+
pubDoc = await requestDocument(url);
|
|
1059
|
+
const id = attr(pubDoc, 'li[id]', 'id');
|
|
1060
|
+
url = 'https://navi.cnki.net/knavi/conferences/baseinfo'
|
|
1061
|
+
+ `?lwjcode=${id}`
|
|
1062
|
+
+ '&pIdx=0';
|
|
1063
|
+
}
|
|
1064
|
+
else {
|
|
1065
|
+
url = attr(doc, '.top-tip > :first-child > a', 'onclick').replace(
|
|
1066
|
+
/^.+\('(.+?)',\s*'(.+?)'\).*$/,
|
|
1067
|
+
'/knavi/DpaperDetail/CreateDPaperBaseInfo?pcode=$1&lwjcode=$2&pIdx=0'
|
|
1068
|
+
);
|
|
1069
|
+
}
|
|
1070
|
+
pubDoc = await requestDocument(url);
|
|
1071
|
+
break;
|
|
1072
|
+
}
|
|
1073
|
+
case 'bookSection': {
|
|
1074
|
+
// Navigation
|
|
1075
|
+
url = doc.querySelector('.brief a[href*="/issues/"], .book-info a[href*="/issues/"]').href;
|
|
1076
|
+
pubDoc = await requestDocument(url);
|
|
1077
|
+
const classid = attr(pubDoc, '#classid', 'value');
|
|
1078
|
+
const pykm = attr(pubDoc, '#pykm', 'value');
|
|
1079
|
+
const hidYearbookBH = attr(pubDoc, '#hidYearbookBH', 'value');
|
|
1080
|
+
// Year List
|
|
1081
|
+
url = 'https://kns.cnki.net/knavi/yearbookDetail/GetYearbooklYearAndPageList'
|
|
1082
|
+
+ `?classid=${classid}`
|
|
1083
|
+
+ `&pykm=${pykm}`
|
|
1084
|
+
+ `&pageIndex=1&pageSize=10`;
|
|
1085
|
+
pubDoc = await requestDocument(url);
|
|
1086
|
+
const yearbookNumber = attr(pubDoc, `#${hidYearbookBH}`, 'value');
|
|
1087
|
+
// Info
|
|
1088
|
+
pubDoc = await requestDocument('https://navi.cnki.net/knavi/yearbookDetail/GetBaseInfo', {
|
|
1089
|
+
method: 'POST',
|
|
1090
|
+
body: `pcode=${ids.dbcode}&bh=${yearbookNumber}`,
|
|
1091
|
+
headers: { Referer: url }
|
|
1092
|
+
});
|
|
1093
|
+
}
|
|
1094
|
+
}
|
|
1095
|
+
if (!pubDoc) {
|
|
1096
|
+
throw new Error('Failed to obtain publication document.');
|
|
1097
|
+
}
|
|
1098
|
+
const container = {
|
|
1099
|
+
originalContainerTitle: ZU.capitalizeTitle(text(pubDoc, '.infobox > h3 > p')),
|
|
1100
|
+
data: Array.from(pubDoc.querySelectorAll('.listbox li p'))
|
|
1101
|
+
.map(element => [tryMatch(ZU.trimInternal(element.textContent), /^[[【]?[\s\S]+?[】\]::]/).replace(/\s/g, ''), attr(element, 'span', 'title') || text(element, 'span')])
|
|
1102
|
+
.filter(arr => arr[0]),
|
|
1103
|
+
get: function (label) {
|
|
1104
|
+
if (Array.isArray(label)) {
|
|
1105
|
+
let result = label
|
|
1106
|
+
.map(aLabel => this.get(aLabel))
|
|
1107
|
+
.find(element => element);
|
|
1108
|
+
return result
|
|
1109
|
+
? result
|
|
1110
|
+
: '';
|
|
1111
|
+
}
|
|
1112
|
+
let pattern = new RegExp(label, 'i');
|
|
1113
|
+
let keyValPair = this.data.find(arr => pattern.test(arr[0]));
|
|
1114
|
+
return keyValPair
|
|
1115
|
+
? ZU.trimInternal(keyValPair[1])
|
|
1116
|
+
: '';
|
|
1117
|
+
}
|
|
1118
|
+
};
|
|
1119
|
+
extra.set('original-container-title', container.originalContainerTitle, true);
|
|
1120
|
+
switch (item.itemType) {
|
|
1121
|
+
case 'journalArticle': {
|
|
1122
|
+
item.ISSN = container.get('ISSN');
|
|
1123
|
+
extra.set('publicationTag', Array.from(pubDoc.querySelectorAll('.journalType2 > span')).map(element => ZU.trimInternal(element.textContent)).join(', '));
|
|
1124
|
+
extra.set('CIF', text(pubDoc, '#evaluateInfo span:not([title])', 0));
|
|
1125
|
+
extra.set('AIF', text(pubDoc, '#evaluateInfo span:not([title])', 1));
|
|
1126
|
+
break;
|
|
1127
|
+
}
|
|
1128
|
+
case 'conferencePaper':
|
|
1129
|
+
item.publisher = container.get('出版单位');
|
|
1130
|
+
item.date = ZU.strToISO(container.get(['出版时间', '出版日期', 'PublishingDate']));
|
|
1131
|
+
container.get(['编者', '編者', 'Editor']).split('、').forEach(creator => item.creators.push({
|
|
1132
|
+
firstName: '',
|
|
1133
|
+
lastName: creator.replace(/\(.*?\)$/, ''),
|
|
1134
|
+
creatorType: 'editor',
|
|
1135
|
+
fieldMode: 1
|
|
1136
|
+
}));
|
|
1137
|
+
// extra.set('organizer', container.get('主办单位'), true);
|
|
1138
|
+
break;
|
|
1139
|
+
case 'bookSection': {
|
|
1140
|
+
item.ISBN = container.get('ISBN');
|
|
1141
|
+
item.date = ZU.strToISO(container.get('出版时间'));
|
|
1142
|
+
item.publisher = container.get('出版者');
|
|
1143
|
+
}
|
|
1144
|
+
}
|
|
1145
|
+
}
|
|
1146
|
+
catch (error) {
|
|
1147
|
+
Z.debug('Failed to add document details.');
|
|
1148
|
+
Z.debug(error);
|
|
1149
|
+
}
|
|
1150
|
+
}
|
|
1151
|
+
|
|
1152
|
+
/** add pdf or caj to attachments, default is pdf */
|
|
1153
|
+
function addAttachments(item, doc, url, itemKey) {
|
|
1154
|
+
// If you want CAJ instead of PDF, set keepPDF = false
|
|
1155
|
+
// 如果你想将PDF文件替换为CAJ文件,将下面一行 keepPDF 设为 false
|
|
1156
|
+
let keepPDF = Z.getHiddenPref('CNKIPDF');
|
|
1157
|
+
if (keepPDF === undefined) keepPDF = true;
|
|
1158
|
+
// The legal status of patent is shown in the picture on webpage.
|
|
1159
|
+
if (item.itemType == 'patent') {
|
|
1160
|
+
item.attachments.push({
|
|
1161
|
+
title: 'Snapshot',
|
|
1162
|
+
document: doc
|
|
1163
|
+
});
|
|
1164
|
+
}
|
|
1165
|
+
const pdfLink = strChild(doc, 'a[id^="pdfDown"], .btn-dlpdf > a', 'href');
|
|
1166
|
+
Z.debug(`get PDF Link:\n${pdfLink}`);
|
|
1167
|
+
const cajLink = strChild(doc, 'a#cajDown', 'href') || itemKey.downloadlink || strChild(doc, 'a[href*="bar/download"]', 'href');
|
|
1168
|
+
Z.debug(`get CAJ link:\n${cajLink}`);
|
|
1169
|
+
if (keepPDF && pdfLink) {
|
|
1170
|
+
item.attachments.push({
|
|
1171
|
+
title: 'Full Text PDF',
|
|
1172
|
+
mimeType: 'application/pdf',
|
|
1173
|
+
url: pdfLink
|
|
1174
|
+
});
|
|
1175
|
+
}
|
|
1176
|
+
else if (cajLink) {
|
|
1177
|
+
item.attachments.push({
|
|
1178
|
+
title: 'Full Text CAJ',
|
|
1179
|
+
mimeType: 'application/caj',
|
|
1180
|
+
url: cajLink
|
|
1181
|
+
});
|
|
1182
|
+
}
|
|
1183
|
+
}
|
|
1184
|
+
|
|
1185
|
+
function strChild(docOrElem, selector, key, index) {
|
|
1186
|
+
const element = index
|
|
1187
|
+
? docOrElem.querySelector(selector)
|
|
1188
|
+
: docOrElem.querySelectorAll(selector).item(index);
|
|
1189
|
+
return (element && element[key])
|
|
1190
|
+
? element[key]
|
|
1191
|
+
: '';
|
|
1192
|
+
}
|
|
1193
|
+
|
|
1194
|
+
function tryMatch(string, pattern, index = 0) {
|
|
1195
|
+
if (!string) return '';
|
|
1196
|
+
const match = string.match(pattern);
|
|
1197
|
+
return (match && match[index])
|
|
1198
|
+
? match[index]
|
|
1199
|
+
: '';
|
|
1200
|
+
}
|
|
1201
|
+
|
|
1202
|
+
var exports = {
|
|
1203
|
+
scrape: scrape,
|
|
1204
|
+
scrapeMulti: scrapeMulti,
|
|
1205
|
+
platform: platform,
|
|
1206
|
+
typeMap: typeMap,
|
|
1207
|
+
scholarLike: scholarLike,
|
|
1208
|
+
csSelectors: csSelectors,
|
|
1209
|
+
enDatabase: enDatabase
|
|
1210
|
+
};
|
|
1211
|
+
|
|
1212
|
+
/** BEGIN TEST CASES **/
|
|
1213
|
+
var testCases = [
|
|
1214
|
+
{
|
|
1215
|
+
"type": "web",
|
|
1216
|
+
"url": "https://chn.oversea.cnki.net/KCMS/detail/detail.aspx?dbcode=CJFD&dbname=CJFDLAST2020&filename=ZGYK202012011&v=%25mmd2BHGGqe3MG%25mmd2FiWsTP5sBgemYG4X5LOYXSuyd0Rs%25mmd2FAl1mzrLs%25mmd2F7KNcFfXQMiFAipAgN",
|
|
1217
|
+
"items": [
|
|
1218
|
+
{
|
|
1219
|
+
"itemType": "journalArticle",
|
|
1220
|
+
"title": "多芯片联合分析2型糖尿病发病相关基因及其与阿尔茨海默病的关系",
|
|
1221
|
+
"creators": [
|
|
1222
|
+
{
|
|
1223
|
+
"firstName": "",
|
|
1224
|
+
"lastName": "辛宁",
|
|
1225
|
+
"creatorType": "author",
|
|
1226
|
+
"fieldMode": 1
|
|
1227
|
+
},
|
|
1228
|
+
{
|
|
1229
|
+
"firstName": "",
|
|
1230
|
+
"lastName": "陈建康",
|
|
1231
|
+
"creatorType": "author",
|
|
1232
|
+
"fieldMode": 1
|
|
1233
|
+
},
|
|
1234
|
+
{
|
|
1235
|
+
"firstName": "",
|
|
1236
|
+
"lastName": "陈艳",
|
|
1237
|
+
"creatorType": "author",
|
|
1238
|
+
"fieldMode": 1
|
|
1239
|
+
},
|
|
1240
|
+
{
|
|
1241
|
+
"firstName": "",
|
|
1242
|
+
"lastName": "杨洁",
|
|
1243
|
+
"creatorType": "author",
|
|
1244
|
+
"fieldMode": 1
|
|
1245
|
+
}
|
|
1246
|
+
],
|
|
1247
|
+
"date": "2020",
|
|
1248
|
+
"ISSN": "0258-4646",
|
|
1249
|
+
"abstractNote": "目的利用生物信息学方法探索2型糖尿病发病的相关基因,并研究这些基因与阿尔茨海默病的关系。方法基因表达汇编(GEO)数据库下载GSE85192、GSE95849、GSE97760、GSE85426数据集,获得健康人和2型糖尿病患者外周血的差异基因,利用加权基因共表达网络(WGCNA)分析差异基因和临床性状的关系。使用DAVID数据库分析与2型糖尿病有关的差异基因的功能与相关通路,筛选关键蛋白。根据结果将Toll样受体4 (TLR4)作为关键基因,利用基因集富集分析(GSEA)分析GSE97760中与高表达TLR4基因相关的信号通路。通过GSE85426验证TLR4的表达量。结果富集分析显示,差异基因主要参与的生物学过程包括炎症反应、Toll样受体(TLR)信号通路、趋化因子产生的正向调节等。差异基因主要参与的信号通路有嘧啶代谢通路、TLR信号通路等。ILF2、TLR4、POLR2G、MMP9为2型糖尿病的关键基因。GSEA显示,TLR4上调可通过影响嘧啶代谢及TLR信号通路而导致2型糖尿病及阿尔茨海默病的发生。TLR4在阿尔茨海默病外周血中高表达。结论 ILF2、TLR4、POLR2G、MMP9为2型糖尿病发病的关键基因,TLR4基因上调与2型糖尿病、阿尔茨海默病发生有关。",
|
|
1250
|
+
"extra": "original-container-title: Journal of China Medical University\ndownload: 407\nalbum: 医药卫生科技\nCLC: R587.2;R749.16\nCNKICite: 3\ndbcode: CJFD\ndbname: CJFDLAST2020\nfilename: zgyk202012011\nCIF: 1.156\nAIF: 0.890",
|
|
1251
|
+
"issue": "12",
|
|
1252
|
+
"language": "zh-CN",
|
|
1253
|
+
"libraryCatalog": "CNKI",
|
|
1254
|
+
"pages": "1106-1111, 1117",
|
|
1255
|
+
"publicationTitle": "中国医科大学学报",
|
|
1256
|
+
"url": "https://kns.cnki.net/KCMS/detail/detail.aspx?dbcode=CJFD&dbname=CJFDLAST2020&filename=zgyk202012011",
|
|
1257
|
+
"volume": "49",
|
|
1258
|
+
"attachments": [
|
|
1259
|
+
{
|
|
1260
|
+
"title": "Full Text PDF",
|
|
1261
|
+
"mimeType": "application/pdf"
|
|
1262
|
+
}
|
|
1263
|
+
],
|
|
1264
|
+
"tags": [
|
|
1265
|
+
{
|
|
1266
|
+
"tag": "2型糖尿病"
|
|
1267
|
+
},
|
|
1268
|
+
{
|
|
1269
|
+
"tag": "基因芯片"
|
|
1270
|
+
},
|
|
1271
|
+
{
|
|
1272
|
+
"tag": "数据挖掘"
|
|
1273
|
+
},
|
|
1274
|
+
{
|
|
1275
|
+
"tag": "胰岛炎症反应"
|
|
1276
|
+
},
|
|
1277
|
+
{
|
|
1278
|
+
"tag": "阿尔茨海默病"
|
|
1279
|
+
}
|
|
1280
|
+
],
|
|
1281
|
+
"notes": [],
|
|
1282
|
+
"seeAlso": []
|
|
1283
|
+
}
|
|
1284
|
+
]
|
|
1285
|
+
},
|
|
1286
|
+
{
|
|
1287
|
+
"type": "web",
|
|
1288
|
+
"url": "https://tra.oversea.cnki.net/KCMS/detail/detail.aspx?dbcode=CJFD&dbname=CJFD2012&filename=QHXB201211002&uniplatform=OVERSEA&v=mHFRnExWYa4LFz1M_R-EDbznu38HtcptZz-0EYf-ysFH9PFH41FafXUWtfsSr6o7",
|
|
1289
|
+
"items": [
|
|
1290
|
+
{
|
|
1291
|
+
"itemType": "journalArticle",
|
|
1292
|
+
"title": "互聯網藥品可信交易環境中主體資質審核備案模式",
|
|
1293
|
+
"creators": [
|
|
1294
|
+
{
|
|
1295
|
+
"firstName": "",
|
|
1296
|
+
"lastName": "于瀟",
|
|
1297
|
+
"creatorType": "author",
|
|
1298
|
+
"fieldMode": 1
|
|
1299
|
+
},
|
|
1300
|
+
{
|
|
1301
|
+
"firstName": "",
|
|
1302
|
+
"lastName": "劉義",
|
|
1303
|
+
"creatorType": "author",
|
|
1304
|
+
"fieldMode": 1
|
|
1305
|
+
},
|
|
1306
|
+
{
|
|
1307
|
+
"firstName": "",
|
|
1308
|
+
"lastName": "柴躍廷",
|
|
1309
|
+
"creatorType": "author",
|
|
1310
|
+
"fieldMode": 1
|
|
1311
|
+
},
|
|
1312
|
+
{
|
|
1313
|
+
"firstName": "",
|
|
1314
|
+
"lastName": "孫宏波",
|
|
1315
|
+
"creatorType": "author",
|
|
1316
|
+
"fieldMode": 1
|
|
1317
|
+
}
|
|
1318
|
+
],
|
|
1319
|
+
"date": "2012",
|
|
1320
|
+
"ISSN": "1000-0054",
|
|
1321
|
+
"abstractNote": "經濟全球化和新一輪產業升級為電子商務服務產業發展帶來了新的機遇和挑戰。無法全程、及時、有效監管電子商務市場的主體及其相關行為是電子商務發展過程中面臨的主要問題。尤其對于互聯網藥品市場,電子商務主體資質的審核備案是營造電子商務可信交易環境的一項重要工作。該文通過系統網絡結構分析的方法描述了公共審核備案服務模式和分立審核備案模式的基本原理;建立了兩種模式下的總體交易費用模型,分析了公共模式比分立模式節約總體交易費用的充要條件,以及推廣該公共模式的必要條件。研究發現:市場規模越大、集成成本越小,公共模式越容易推廣。應用案例分析驗證了模型,證實了公共審核備案服務模式節約了總體交易費用的結論。",
|
|
1322
|
+
"extra": "original-container-title: Journal of Tsinghua University(Science and Technology)\ndownload: 657\nalbum: 理工C(機電航空交通水利建筑能源); 醫藥衛生科技; 經濟與管理科學\nCLC: R95;F724.6\nCNKICite: 7\ndbcode: CJFD\ndbname: CJFD2012\nfilename: qhxb201211002\nCIF: 3.010\nAIF: 1.884",
|
|
1323
|
+
"issue": "11",
|
|
1324
|
+
"language": "zh-CN",
|
|
1325
|
+
"libraryCatalog": "CNKI",
|
|
1326
|
+
"pages": "1518-1523",
|
|
1327
|
+
"publicationTitle": "清華大學學報(自然科學版)",
|
|
1328
|
+
"url": "https://kns.cnki.net/KCMS/detail/detail.aspx?dbcode=CJFD&dbname=CJFD2012&filename=qhxb201211002",
|
|
1329
|
+
"volume": "52",
|
|
1330
|
+
"attachments": [
|
|
1331
|
+
{
|
|
1332
|
+
"title": "Full Text PDF",
|
|
1333
|
+
"mimeType": "application/pdf"
|
|
1334
|
+
}
|
|
1335
|
+
],
|
|
1336
|
+
"tags": [
|
|
1337
|
+
{
|
|
1338
|
+
"tag": "互聯網藥品交易"
|
|
1339
|
+
},
|
|
1340
|
+
{
|
|
1341
|
+
"tag": "交易主體"
|
|
1342
|
+
},
|
|
1343
|
+
{
|
|
1344
|
+
"tag": "可信交易環境"
|
|
1345
|
+
},
|
|
1346
|
+
{
|
|
1347
|
+
"tag": "資質審核備案"
|
|
1348
|
+
},
|
|
1349
|
+
{
|
|
1350
|
+
"tag": "電子商務"
|
|
1351
|
+
}
|
|
1352
|
+
],
|
|
1353
|
+
"notes": [],
|
|
1354
|
+
"seeAlso": []
|
|
1355
|
+
}
|
|
1356
|
+
]
|
|
1357
|
+
},
|
|
1358
|
+
{
|
|
1359
|
+
"type": "web",
|
|
1360
|
+
"url": "https://cnki.net/KCMS/detail/detail.aspx?dbcode=CPFD&dbname=CPFDLAST2017&filename=ZGPX201612002005&uniplatform=OVERSEA&v=wsSg9cXy6pQW_7zGbUyb2yxqQmW7T_GRYnF8Oqi5Eh1a2V96_8YUJdYPGMwq80tTlFps8uiX4AU%3d",
|
|
1361
|
+
"items": [
|
|
1362
|
+
{
|
|
1363
|
+
"itemType": "conferencePaper",
|
|
1364
|
+
"title": "大型铁路运输企业职工教育培训体系的构建与实施——以北京铁路局为例",
|
|
1365
|
+
"creators": [
|
|
1366
|
+
{
|
|
1367
|
+
"firstName": "",
|
|
1368
|
+
"lastName": "任娜",
|
|
1369
|
+
"creatorType": "author",
|
|
1370
|
+
"fieldMode": 1
|
|
1371
|
+
},
|
|
1372
|
+
{
|
|
1373
|
+
"firstName": "",
|
|
1374
|
+
"lastName": "中国职工教育和职业培训协会秘书处",
|
|
1375
|
+
"creatorType": "editor",
|
|
1376
|
+
"fieldMode": 1
|
|
1377
|
+
}
|
|
1378
|
+
],
|
|
1379
|
+
"date": "2016-12",
|
|
1380
|
+
"abstractNote": "北京铁路局是以铁路客货运输为主的特大型国有企业,是全国铁路网的中枢。全局共有职工19.1万人,管内铁路营业里程全长6246公里,其中高速铁路营业里程为1143.3公里。近年来,北京铁路局始终坚持\"主要行车工种做实、高技能人才做精、工班长队伍做强\"工作主线,积极构建并实施由教育培训规范、教育培训组织管理、实训基地及现代化设施、专兼职教育培训师资、",
|
|
1381
|
+
"extra": "download: 80\nalbum: (H) Education & Social Sciences\nCLC: G726\nCNKICite: 0\ndbcode: CPFD\ndbname: CPFDLAST2017\nfilename: zgpx201612002005",
|
|
1382
|
+
"language": "zh-CN",
|
|
1383
|
+
"libraryCatalog": "CNKI",
|
|
1384
|
+
"pages": "8",
|
|
1385
|
+
"url": "https://kns.cnki.net/KCMS/detail/detail.aspx?dbcode=CPFD&dbname=CPFDLAST2017&filename=zgpx201612002005",
|
|
1386
|
+
"attachments": [
|
|
1387
|
+
{
|
|
1388
|
+
"title": "Full Text PDF",
|
|
1389
|
+
"mimeType": "application/pdf"
|
|
1390
|
+
}
|
|
1391
|
+
],
|
|
1392
|
+
"tags": [
|
|
1393
|
+
{
|
|
1394
|
+
"tag": "教育培训体系"
|
|
1395
|
+
},
|
|
1396
|
+
{
|
|
1397
|
+
"tag": "教育培训激励"
|
|
1398
|
+
},
|
|
1399
|
+
{
|
|
1400
|
+
"tag": "构建与实施"
|
|
1401
|
+
},
|
|
1402
|
+
{
|
|
1403
|
+
"tag": "职工教育培训"
|
|
1404
|
+
},
|
|
1405
|
+
{
|
|
1406
|
+
"tag": "铁路局"
|
|
1407
|
+
},
|
|
1408
|
+
{
|
|
1409
|
+
"tag": "铁路运输企业"
|
|
1410
|
+
}
|
|
1411
|
+
],
|
|
1412
|
+
"notes": [],
|
|
1413
|
+
"seeAlso": []
|
|
1414
|
+
}
|
|
1415
|
+
]
|
|
1416
|
+
},
|
|
1417
|
+
{
|
|
1418
|
+
"type": "web",
|
|
1419
|
+
"url": "https://oversea.cnki.net/KCMS/detail/detail.aspx?dbcode=CAPJ&dbname=CAPJLAST&filename=OELJ20240407003&uniplatform=OVERSEA&v=pjMKCMsesac_7YFl-57_GL6t6cGkC6jtRhCTJq6xTVo2jgEy4kPExsIaqC-0Ee5S",
|
|
1420
|
+
"items": [
|
|
1421
|
+
{
|
|
1422
|
+
"itemType": "journalArticle",
|
|
1423
|
+
"title": "Extraction of weak values in the process of retrieving quantum entanglement state",
|
|
1424
|
+
"creators": [
|
|
1425
|
+
{
|
|
1426
|
+
"firstName": "Du",
|
|
1427
|
+
"lastName": "Shaojiang",
|
|
1428
|
+
"creatorType": "author"
|
|
1429
|
+
},
|
|
1430
|
+
{
|
|
1431
|
+
"firstName": "Feng",
|
|
1432
|
+
"lastName": "Hairan",
|
|
1433
|
+
"creatorType": "author"
|
|
1434
|
+
},
|
|
1435
|
+
{
|
|
1436
|
+
"firstName": "Zhang",
|
|
1437
|
+
"lastName": "Lu",
|
|
1438
|
+
"creatorType": "author"
|
|
1439
|
+
},
|
|
1440
|
+
{
|
|
1441
|
+
"firstName": "Yang",
|
|
1442
|
+
"lastName": "Lianwu",
|
|
1443
|
+
"creatorType": "author"
|
|
1444
|
+
},
|
|
1445
|
+
{
|
|
1446
|
+
"firstName": "Peng",
|
|
1447
|
+
"lastName": "Yonggang",
|
|
1448
|
+
"creatorType": "author"
|
|
1449
|
+
}
|
|
1450
|
+
],
|
|
1451
|
+
"date": "2024-04-12",
|
|
1452
|
+
"ISSN": "1673-1905",
|
|
1453
|
+
"abstractNote": "A reversible operation protocol is provided for a weak-measured quantum entanglement state. The evolution of weak values is studied under different parameter conditions. The weak values can be extracted from the entanglement state and the weak-measured quantum entanglement state can be revived to its initial state theoretically by weak measurement and reversibility operation respectively. We demonstrate the reversible operation protocol by taking Bell’s state as an example. The negativity is used to analyze the initial state, the weak-measured state and the reversed state in order to describe the evolution of quantum entanglement degree. Weak values is detected from the quantum entanglement state by weak measurement and the degree of the weak-measured quantum entanglement state can be revived to its initial state through reversible operation. The information of quantum entanglement state would be extracted from weak values detected in the process of the scheme.",
|
|
1454
|
+
"extra": "original-container-title: Optoelectronics Letters\nStatus: advance online publication\ndownload: 10\nalbum: (A) Mathematics/ Physics/ Mechanics/ Astronomy\nCLC: O413\nCNKICite: 0\ndbcode: CJFQ\ndbname: CAPJLAST\nfilename: oelj20240407003\nCIF: 0.330\nAIF: 0.197",
|
|
1455
|
+
"language": "zh-CN",
|
|
1456
|
+
"libraryCatalog": "CNKI",
|
|
1457
|
+
"pages": "1-6",
|
|
1458
|
+
"publicationTitle": "Optoelectronics Letters",
|
|
1459
|
+
"url": "https://kns.cnki.net/KCMS/detail/detail.aspx?dbcode=CJFQ&dbname=CAPJLAST&filename=oelj20240407003",
|
|
1460
|
+
"attachments": [
|
|
1461
|
+
{
|
|
1462
|
+
"title": "Full Text PDF",
|
|
1463
|
+
"mimeType": "application/pdf"
|
|
1464
|
+
}
|
|
1465
|
+
],
|
|
1466
|
+
"tags": [
|
|
1467
|
+
{
|
|
1468
|
+
"tag": "Extraction of weak values in the process of retrieving quantum entanglement state"
|
|
1469
|
+
}
|
|
1470
|
+
],
|
|
1471
|
+
"notes": [],
|
|
1472
|
+
"seeAlso": []
|
|
1473
|
+
}
|
|
1474
|
+
]
|
|
1475
|
+
},
|
|
1476
|
+
{
|
|
1477
|
+
"type": "web",
|
|
1478
|
+
"url": "https://kns.cnki.net/kcms2/article/abstract?v=sMQVub3UVPhGILJpAKOGh83AcRhGYSRgjDgy9nM13TOCVZF0pSJkEnbjmfB8tUhTS8LJ_RWzlJgcRv1RRK9Jq50xK24Omz1rh-UUpYJcNcDJTfmD9jOvQu1ZFbmeOLLTuuoZMm8XMBCoN6lWvYEhWWAp2BCB2ehojp96uYDdRf1ekk3Okjq_46zCyrqJKzNx&uniplatform=NZKPT",
|
|
1479
|
+
"items": [
|
|
1480
|
+
{
|
|
1481
|
+
"itemType": "journalArticle",
|
|
1482
|
+
"title": "A sustainable strategy for generating highly stable human skin equivalents based on fish collagen",
|
|
1483
|
+
"creators": [
|
|
1484
|
+
{
|
|
1485
|
+
"creatorType": "author",
|
|
1486
|
+
"firstName": "Shi Hua",
|
|
1487
|
+
"lastName": "Tan"
|
|
1488
|
+
},
|
|
1489
|
+
{
|
|
1490
|
+
"creatorType": "author",
|
|
1491
|
+
"firstName": "Shaoqiong",
|
|
1492
|
+
"lastName": "Liu"
|
|
1493
|
+
},
|
|
1494
|
+
{
|
|
1495
|
+
"creatorType": "author",
|
|
1496
|
+
"firstName": "Swee Hin",
|
|
1497
|
+
"lastName": "Teoh"
|
|
1498
|
+
},
|
|
1499
|
+
{
|
|
1500
|
+
"creatorType": "author",
|
|
1501
|
+
"firstName": "Carine",
|
|
1502
|
+
"lastName": "Bonnard"
|
|
1503
|
+
},
|
|
1504
|
+
{
|
|
1505
|
+
"creatorType": "author",
|
|
1506
|
+
"firstName": "David",
|
|
1507
|
+
"lastName": "Leavesley"
|
|
1508
|
+
},
|
|
1509
|
+
{
|
|
1510
|
+
"creatorType": "author",
|
|
1511
|
+
"firstName": "Kun",
|
|
1512
|
+
"lastName": "Liang"
|
|
1513
|
+
}
|
|
1514
|
+
],
|
|
1515
|
+
"date": "2024-04",
|
|
1516
|
+
"DOI": "10.1016/j.bioadv.2024.213780",
|
|
1517
|
+
"ISSN": "27729508",
|
|
1518
|
+
"abstractNote": "Tissue engineered skin equivalents are increasingly recognized as potential alternatives to traditional skin models such as human ex vivo skin or animal skin models. However, most of the currently investigated human skin equivalents (HSEs) are constructed using mammalian collagen which can be expensive and difficult to extract. Fish skin is a waste product produced by fish processing industries and identified as a cost-efficient and sustainable source ...",
|
|
1519
|
+
"journalAbbreviation": "Biomaterials Advances",
|
|
1520
|
+
"language": "en-US",
|
|
1521
|
+
"libraryCatalog": "DOI.org (Crossref)",
|
|
1522
|
+
"pages": "213780",
|
|
1523
|
+
"publicationTitle": "Biomaterials Advances",
|
|
1524
|
+
"url": "https://linkinghub.elsevier.com/retrieve/pii/S2772950824000232",
|
|
1525
|
+
"volume": "158",
|
|
1526
|
+
"attachments": [
|
|
1527
|
+
{
|
|
1528
|
+
"title": "Snapshot",
|
|
1529
|
+
"mimeType": "text/html"
|
|
1530
|
+
}
|
|
1531
|
+
],
|
|
1532
|
+
"tags": [
|
|
1533
|
+
{
|
|
1534
|
+
"tag": "3D skin model"
|
|
1535
|
+
},
|
|
1536
|
+
{
|
|
1537
|
+
"tag": "ATR-FTIR"
|
|
1538
|
+
},
|
|
1539
|
+
{
|
|
1540
|
+
"tag": "BC"
|
|
1541
|
+
},
|
|
1542
|
+
{
|
|
1543
|
+
"tag": "CD"
|
|
1544
|
+
},
|
|
1545
|
+
{
|
|
1546
|
+
"tag": "DSC"
|
|
1547
|
+
},
|
|
1548
|
+
{
|
|
1549
|
+
"tag": "FBC"
|
|
1550
|
+
},
|
|
1551
|
+
{
|
|
1552
|
+
"tag": "FC"
|
|
1553
|
+
},
|
|
1554
|
+
{
|
|
1555
|
+
"tag": "FFC"
|
|
1556
|
+
},
|
|
1557
|
+
{
|
|
1558
|
+
"tag": "H&E"
|
|
1559
|
+
},
|
|
1560
|
+
{
|
|
1561
|
+
"tag": "HDF(s)"
|
|
1562
|
+
},
|
|
1563
|
+
{
|
|
1564
|
+
"tag": "HEK(s)"
|
|
1565
|
+
},
|
|
1566
|
+
{
|
|
1567
|
+
"tag": "HSE(s)"
|
|
1568
|
+
},
|
|
1569
|
+
{
|
|
1570
|
+
"tag": "Human skin equivalent"
|
|
1571
|
+
},
|
|
1572
|
+
{
|
|
1573
|
+
"tag": "Hydrogel scaffold"
|
|
1574
|
+
},
|
|
1575
|
+
{
|
|
1576
|
+
"tag": "IHC"
|
|
1577
|
+
},
|
|
1578
|
+
{
|
|
1579
|
+
"tag": "MTT"
|
|
1580
|
+
},
|
|
1581
|
+
{
|
|
1582
|
+
"tag": "SDS-PAGE"
|
|
1583
|
+
},
|
|
1584
|
+
{
|
|
1585
|
+
"tag": "SEM"
|
|
1586
|
+
},
|
|
1587
|
+
{
|
|
1588
|
+
"tag": "TEER"
|
|
1589
|
+
},
|
|
1590
|
+
{
|
|
1591
|
+
"tag": "Td"
|
|
1592
|
+
}
|
|
1593
|
+
],
|
|
1594
|
+
"notes": [],
|
|
1595
|
+
"seeAlso": []
|
|
1596
|
+
}
|
|
1597
|
+
]
|
|
1598
|
+
},
|
|
1599
|
+
{
|
|
1600
|
+
"type": "web",
|
|
1601
|
+
"url": "https://kns.cnki.net/kcms2/article/abstract?v=S8jPpdFxNHiery8DXkT083oAvbAx9rgOEcigOFI2MZ_13Vw2PvRBKFn_YSqpi2fcEeJvp73BHlsXABqmXA-6JrgNRrOobwH-TLFr-W-2HLJmq-79RHQxS-bYacMxTadx9jyVX3P1Qojx90fWItiKLTJOEp94azAwKweOUqGKlPFS2Rzm8OTCSg==&uniplatform=NZKPT&language=CHS",
|
|
1602
|
+
"items": [
|
|
1603
|
+
{
|
|
1604
|
+
"itemType": "book",
|
|
1605
|
+
"title": "IMF Terminology Bulletin:Climate & the Environment, Fintech, Gender, and Related Acronyms: English to Arabic",
|
|
1606
|
+
"creators": [],
|
|
1607
|
+
"date": "10/2023",
|
|
1608
|
+
"ISBN": "9798400251245",
|
|
1609
|
+
"extra": "DOI: 10.5089/9798400251245.073",
|
|
1610
|
+
"language": "ar",
|
|
1611
|
+
"libraryCatalog": "DOI.org (Crossref)",
|
|
1612
|
+
"place": "Washington, D.C.",
|
|
1613
|
+
"publisher": "International Monetary Fund",
|
|
1614
|
+
"shortTitle": "IMF Terminology Bulletin",
|
|
1615
|
+
"url": "https://elibrary.imf.org/openurl?genre=book&isbn=9798400251245&cid=537460-com-dsp-crossref",
|
|
1616
|
+
"attachments": [
|
|
1617
|
+
{
|
|
1618
|
+
"title": "Snapshot",
|
|
1619
|
+
"mimeType": "text/html"
|
|
1620
|
+
}
|
|
1621
|
+
],
|
|
1622
|
+
"tags": [],
|
|
1623
|
+
"notes": [],
|
|
1624
|
+
"seeAlso": []
|
|
1625
|
+
}
|
|
1626
|
+
]
|
|
1627
|
+
},
|
|
1628
|
+
{
|
|
1629
|
+
"type": "web",
|
|
1630
|
+
"url": "https://kns.cnki.net/kcms2/article/abstract?v=sMQVub3UVPjIvOHHlcF3SNXEUHFPMOg2tYIxi0BfNKtiobSiU1R05at2q-ybyvO63iCJxYjXYt7Ypj6VZ0s9UXo0YEZxqJ8ZFIm_isJNaR-ynyDcFSxXe_3dOb5Jb0RHpgIZhZD72qxNWgLUa-Gw2rU6ln5dCCag&uniplatform=NZKPT",
|
|
1631
|
+
"items": [
|
|
1632
|
+
{
|
|
1633
|
+
"itemType": "journalArticle",
|
|
1634
|
+
"title": "外施Ca<sup>2+</sup>、ABA及H<sub>3</sub>PO<sub>4</sub>对盐碱胁迫的缓解效应",
|
|
1635
|
+
"creators": [
|
|
1636
|
+
{
|
|
1637
|
+
"firstName": "",
|
|
1638
|
+
"lastName": "颜宏",
|
|
1639
|
+
"creatorType": "author",
|
|
1640
|
+
"fieldMode": 1
|
|
1641
|
+
},
|
|
1642
|
+
{
|
|
1643
|
+
"firstName": "",
|
|
1644
|
+
"lastName": "石德成",
|
|
1645
|
+
"creatorType": "author",
|
|
1646
|
+
"fieldMode": 1
|
|
1647
|
+
},
|
|
1648
|
+
{
|
|
1649
|
+
"firstName": "",
|
|
1650
|
+
"lastName": "尹尚军",
|
|
1651
|
+
"creatorType": "author",
|
|
1652
|
+
"fieldMode": 1
|
|
1653
|
+
},
|
|
1654
|
+
{
|
|
1655
|
+
"firstName": "",
|
|
1656
|
+
"lastName": "赵伟",
|
|
1657
|
+
"creatorType": "author",
|
|
1658
|
+
"fieldMode": 1
|
|
1659
|
+
}
|
|
1660
|
+
],
|
|
1661
|
+
"date": "2000",
|
|
1662
|
+
"DOI": "10.13287/j.1001-9332.2000.0212",
|
|
1663
|
+
"ISSN": "1001-9332",
|
|
1664
|
+
"abstractNote": "分别对 30 0mmol·L-1NaCl和 10 0mmol·L-1Na2 CO3 盐碱胁迫下的羊草苗进行以不同方式施加Ca2 +、ABA和H3PO4 等缓解胁迫处理 .结果表明 ,外施Ca2 +、ABA和H3PO4 明显缓解了盐碱对羊草生长的抑制作用 .叶面喷施效果好于根部处理 ;施用Ca(NO3) 2 效果好于施用CaCl2 效果 ;混合施用CaCl2 和ABA的效果比单独施用ABA或CaCl2 的效果好 .",
|
|
1665
|
+
"extra": "original-container-title: Chinese Journal of Applied Ecology\nfoundation: 国家自然科学基金资助项目!(39670 0 83) .;\ndownload: 472\nalbum: 基础科学;农业科技\nCLC: Q945\ndbcode: CJFQ\ndbname: CJFD2000\nfilename: YYSB200006019\npublicationTag: 北大核心, CA, JST, Pж(AJ), CSCD, WJCI\nCIF: 4.949\nAIF: 3.435",
|
|
1666
|
+
"issue": "6",
|
|
1667
|
+
"language": "zh-CN",
|
|
1668
|
+
"libraryCatalog": "CNKI",
|
|
1669
|
+
"pages": "889-892",
|
|
1670
|
+
"publicationTitle": "应用生态学报",
|
|
1671
|
+
"url": "https://link.cnki.net/doi/10.13287/j.1001-9332.2000.0212",
|
|
1672
|
+
"attachments": [
|
|
1673
|
+
{
|
|
1674
|
+
"title": "Full Text PDF",
|
|
1675
|
+
"mimeType": "application/pdf"
|
|
1676
|
+
}
|
|
1677
|
+
],
|
|
1678
|
+
"tags": [
|
|
1679
|
+
{
|
|
1680
|
+
"tag": "Ca~(2+)"
|
|
1681
|
+
},
|
|
1682
|
+
{
|
|
1683
|
+
"tag": "盐胁迫"
|
|
1684
|
+
},
|
|
1685
|
+
{
|
|
1686
|
+
"tag": "碱胁迫"
|
|
1687
|
+
},
|
|
1688
|
+
{
|
|
1689
|
+
"tag": "羊草"
|
|
1690
|
+
},
|
|
1691
|
+
{
|
|
1692
|
+
"tag": "胁迫缓解"
|
|
1693
|
+
},
|
|
1694
|
+
{
|
|
1695
|
+
"tag": "脯氨酸(Pro)"
|
|
1696
|
+
},
|
|
1697
|
+
{
|
|
1698
|
+
"tag": "脱落酸(ABA)"
|
|
1699
|
+
}
|
|
1700
|
+
],
|
|
1701
|
+
"notes": [],
|
|
1702
|
+
"seeAlso": []
|
|
1703
|
+
}
|
|
1704
|
+
]
|
|
1705
|
+
},
|
|
1706
|
+
{
|
|
1707
|
+
"type": "web",
|
|
1708
|
+
"url": "https://kns.cnki.net/kcms2/article/abstract?v=sMQVub3UVPhcux9kLv3dlu3HqEnj6v7rkox2d22uoocSttonwOgx_NcK5r9Ri45_5JpY5LDDClDUm7F2zO2qh7tFrxe7CYKah4xjD0RYAGrQvCtgL9iJ9b4EQCE9aW3p6TamVKZUWrsu85jhkHeqVODJOFE3IG05&uniplatform=NZKPT",
|
|
1709
|
+
"items": [
|
|
1710
|
+
{
|
|
1711
|
+
"itemType": "journalArticle",
|
|
1712
|
+
"title": "黄瓜胚性愈伤组织的诱导保存和再生",
|
|
1713
|
+
"creators": [
|
|
1714
|
+
{
|
|
1715
|
+
"firstName": "",
|
|
1716
|
+
"lastName": "薛婉钰",
|
|
1717
|
+
"creatorType": "author",
|
|
1718
|
+
"fieldMode": 1
|
|
1719
|
+
},
|
|
1720
|
+
{
|
|
1721
|
+
"firstName": "",
|
|
1722
|
+
"lastName": "刘娜",
|
|
1723
|
+
"creatorType": "author",
|
|
1724
|
+
"fieldMode": 1
|
|
1725
|
+
},
|
|
1726
|
+
{
|
|
1727
|
+
"firstName": "",
|
|
1728
|
+
"lastName": "苑鑫",
|
|
1729
|
+
"creatorType": "author",
|
|
1730
|
+
"fieldMode": 1
|
|
1731
|
+
},
|
|
1732
|
+
{
|
|
1733
|
+
"firstName": "",
|
|
1734
|
+
"lastName": "张婷婷",
|
|
1735
|
+
"creatorType": "author",
|
|
1736
|
+
"fieldMode": 1
|
|
1737
|
+
},
|
|
1738
|
+
{
|
|
1739
|
+
"firstName": "",
|
|
1740
|
+
"lastName": "曹云娥",
|
|
1741
|
+
"creatorType": "author",
|
|
1742
|
+
"fieldMode": 1
|
|
1743
|
+
},
|
|
1744
|
+
{
|
|
1745
|
+
"firstName": "",
|
|
1746
|
+
"lastName": "陈书霞",
|
|
1747
|
+
"creatorType": "author",
|
|
1748
|
+
"fieldMode": 1
|
|
1749
|
+
}
|
|
1750
|
+
],
|
|
1751
|
+
"date": "2024-01-05",
|
|
1752
|
+
"DOI": "10.13207/j.cnki.jnwafu.2024.07.011",
|
|
1753
|
+
"ISSN": "1671-9387",
|
|
1754
|
+
"abstractNote": "【目的】对黄瓜胚性愈伤组织的诱导保存和再生进行研究,为黄瓜高频率遗传转化奠定基础。【方法】以欧洲温室型黄瓜自交系14-1子叶节为外植体,在MS培养基上附加1.5 mg/L 2,4-D,进行25 d的胚性愈伤组织诱导培养后,取胚性愈伤组织在添加30,60,90,100,110,120,130,140和150 g/L蔗糖及1.5 mg/L 2,4-D的MS培养基进行继代培养,每30 d继代1次,观察胚性愈伤组织的褐变情况及胚性分化能力,并用电子天平在超净工作台中记录胚性愈伤组织质量的变化。继代培养60 d后,将保存的胚性愈伤组织和体细胞胚移至含1.5 mg/L 2,4-D的MS培养基上,待出现体细胞胚后移至MS培养基进行萌发,观察再生小植株的生长情况。【结果】将欧洲温室型黄瓜自交系14-1的子叶节,接种到附加1.5 mg/L 2,4-D的MS培养基上进行诱导培养后,子叶节一端的愈伤组织集中聚集于下胚轴处,之后有黄色胚性愈伤组织产生。在继代培养过程中,当培养基中添加的蔗糖为60~150 g/L时,胚性愈伤组织能保持胚性愈伤状态达60 d。之后将继代培养60 d后的胚性愈伤组织转接至附加1.5 mg/L 2,4-D的MS培养基上,在蔗糖质量浓度为60 g/L条件下保存的胚性愈伤组织可诱导出正常胚状体,且能形成健康小植株。【结论】由黄瓜子叶节诱导出的胚性愈伤组织可在MS+60 g/L蔗糖的培养基上保存达60 d,之后能正常萌发形成胚状体,进而形成正常小植株。",
|
|
1755
|
+
"extra": "original-container-title: Journal of Northwest A & F University(Natural Science Edition)\nStatus: advance online publication\nfoundation: 国家自然科学基金项目(32072562;32272748;\ndownload: 422\nalbum: 农业科技\nCLC: S642.2\ndbcode: CAPJ\ndbname: CAPJLAST\nfilename: XBNY20240104006\npublicationTag: 北大核心, JST, Pж(AJ), CSCD, WJCI\nCIF: 2.343\nAIF: 1.657",
|
|
1756
|
+
"issue": "7",
|
|
1757
|
+
"language": "zh-CN",
|
|
1758
|
+
"libraryCatalog": "CNKI",
|
|
1759
|
+
"pages": "1-7",
|
|
1760
|
+
"publicationTitle": "西北农林科技大学学报(自然科学版)",
|
|
1761
|
+
"url": "https://doi.org/10.13207/j.cnki.jnwafu.2024.07.011",
|
|
1762
|
+
"attachments": [
|
|
1763
|
+
{
|
|
1764
|
+
"title": "Full Text PDF",
|
|
1765
|
+
"mimeType": "application/pdf"
|
|
1766
|
+
}
|
|
1767
|
+
],
|
|
1768
|
+
"tags": [
|
|
1769
|
+
{
|
|
1770
|
+
"tag": "离体保存"
|
|
1771
|
+
},
|
|
1772
|
+
{
|
|
1773
|
+
"tag": "胚性愈伤组织"
|
|
1774
|
+
},
|
|
1775
|
+
{
|
|
1776
|
+
"tag": "遗传转化"
|
|
1777
|
+
},
|
|
1778
|
+
{
|
|
1779
|
+
"tag": "黄瓜"
|
|
1780
|
+
}
|
|
1781
|
+
],
|
|
1782
|
+
"notes": [],
|
|
1783
|
+
"seeAlso": []
|
|
1784
|
+
}
|
|
1785
|
+
]
|
|
1786
|
+
},
|
|
1787
|
+
{
|
|
1788
|
+
"type": "web",
|
|
1789
|
+
"url": "https://kns.cnki.net/kcms2/article/abstract?v=sMQVub3UVPi709MgKyniiJ79ODC3KCFRV10Zq5RZGXXIfHj6BnzFrn-E3M0m12TLotEiKyxahikirQYncVv4zCW0ZtQdfHiTYfEIFVPt8oIXQ23Tokv19roGS3t-Fr-9Tnnx4A0dALUfFdvhF6DN3lHC5M5oUdg2N-_TcfODVmk=&uniplatform=NZKPT",
|
|
1790
|
+
"items": [
|
|
1791
|
+
{
|
|
1792
|
+
"itemType": "thesis",
|
|
1793
|
+
"title": "黄瓜共表达基因模块的识别及其特点分析",
|
|
1794
|
+
"creators": [
|
|
1795
|
+
{
|
|
1796
|
+
"firstName": "",
|
|
1797
|
+
"lastName": "林行众",
|
|
1798
|
+
"creatorType": "author",
|
|
1799
|
+
"fieldMode": 1
|
|
1800
|
+
},
|
|
1801
|
+
{
|
|
1802
|
+
"firstName": "",
|
|
1803
|
+
"lastName": "黄三文",
|
|
1804
|
+
"creatorType": "contributor",
|
|
1805
|
+
"fieldMode": 1
|
|
1806
|
+
},
|
|
1807
|
+
{
|
|
1808
|
+
"firstName": "",
|
|
1809
|
+
"lastName": "杨清",
|
|
1810
|
+
"creatorType": "contributor",
|
|
1811
|
+
"fieldMode": 1
|
|
1812
|
+
}
|
|
1813
|
+
],
|
|
1814
|
+
"date": "2015",
|
|
1815
|
+
"abstractNote": "黄瓜(Cucumis sativus L.)是我国最大的保护地栽培蔬菜作物,也是植物性别发育和维管束运输研究的重要模式植物。黄瓜基因组序列图谱已经构建完成,并且在此基础上又完成了全基因组SSR标记开发和涵盖330万个变异位点变异组图谱,成为黄瓜功能基因研究的重要平台和工具,相关转录组研究也有很多报道,不过共表达网络研究还是空白。本实验以温室型黄瓜9930为研究对象,选取10个不同组织,进行转录组测序,获得10份转录组原始数据。在对原始数据去除接头与低质量读段后,将高质量读段用Tophat2回贴到已经发表的栽培黄瓜基因组序列上。用Cufflinks对回贴后的数据计算FPKM值,获得10份组织的24274基因的表达量数据。计算结果中的回贴率比较理想,不过有些基因的表达量过低。为了防止表达量低的基因对结果的影响,将10份组织中表达量最大小于5的基因去除,得到16924个基因,进行下一步分析。共表达网络的构建过程是将上步获得的表达量数据,利用R语言中WGCNA(weighted gene co-expression network analysis)包构建共表达网络。结果得到的共表达网络包括1134个模块。这些模块中的基因表达模式类似,可以认为是共表达关系。不过结果中一些模块内基因间相关性同其他模块相比比较低,在分析过程中,将模块中基因相关性平均值低于0.9的模块都去除,最终得到839个模块,一共11,844个基因。共表达的基因因其表达模式类似而聚在一起,这些基因可能与10份组织存在特异性关联。为了计算模块与组织间的相关性,首先要对每个模块进行主成分分析(principle component analysis,PCA),获得特征基因(module eigengene,ME),特征基因可以表示这个模块所有基因共有的表达趋势。通过计算特征基因与组织间的相关性,从而挑选出组织特异性模块,这些模块一共有323个。利用topGO功能富集分析的结果表明这些特异性模块所富集的功能与组织相关。共表达基因在染色体上的物理位置经常是成簇分布的。按照基因间隔小于25kb为标准。分别对839个模块进行分析,结果发现在71个模块中共有220个cluster,这些cluster 一般有2~5个基因,cluster中的基因在功能上也表现出一定的联系。共表达基因可能受到相同的转录调控,这些基因在启动子前2kb可能会存在有相同的motif以供反式作用元...",
|
|
1816
|
+
"extra": "major: 生物化学与分子生物学\ndownload: 306\nalbum: 基础科学;农业科技\nCLC: S642.2;Q943.2\ndbcode: CMFD\ndbname: CMFD201701\nfilename: 1017045605.nh",
|
|
1817
|
+
"language": "zh-CN",
|
|
1818
|
+
"libraryCatalog": "CNKI",
|
|
1819
|
+
"numPages": "69",
|
|
1820
|
+
"thesisType": "硕士学位论文",
|
|
1821
|
+
"university": "南京农业大学",
|
|
1822
|
+
"url": "https://kns.cnki.net/KCMS/detail/detail.aspx?dbcode=CMFD&dbname=CMFD201701&filename=1017045605.nh",
|
|
1823
|
+
"attachments": [
|
|
1824
|
+
{
|
|
1825
|
+
"title": "Full Text PDF",
|
|
1826
|
+
"mimeType": "application/pdf"
|
|
1827
|
+
}
|
|
1828
|
+
],
|
|
1829
|
+
"tags": [
|
|
1830
|
+
{
|
|
1831
|
+
"tag": "共表达"
|
|
1832
|
+
},
|
|
1833
|
+
{
|
|
1834
|
+
"tag": "网络"
|
|
1835
|
+
},
|
|
1836
|
+
{
|
|
1837
|
+
"tag": "转录组"
|
|
1838
|
+
},
|
|
1839
|
+
{
|
|
1840
|
+
"tag": "黄瓜"
|
|
1841
|
+
}
|
|
1842
|
+
],
|
|
1843
|
+
"notes": [],
|
|
1844
|
+
"seeAlso": []
|
|
1845
|
+
}
|
|
1846
|
+
]
|
|
1847
|
+
},
|
|
1848
|
+
{
|
|
1849
|
+
"type": "web",
|
|
1850
|
+
"url": "https://kns.cnki.net/kcms2/article/abstract?v=sMQVub3UVPjLdnZQK0WmJ8u2192HTQIX3W_0-LF2_Hgj0ZNubzv0vrUbvuc58qkLIBNJXHzuM2ZwWyPsoZgrYAuZLhUAFADQPamzJwsK4-dXpgf_XtshP9fFt2D63LRNwTnGsg0OL3hHuBEkQaNFn3ocuvUjBH2s&uniplatform=NZKPT",
|
|
1851
|
+
"items": [
|
|
1852
|
+
{
|
|
1853
|
+
"itemType": "thesis",
|
|
1854
|
+
"title": "高导热聚合物基复合材料的制备与性能研究",
|
|
1855
|
+
"creators": [
|
|
1856
|
+
{
|
|
1857
|
+
"firstName": "",
|
|
1858
|
+
"lastName": "虞锦洪",
|
|
1859
|
+
"creatorType": "author",
|
|
1860
|
+
"fieldMode": 1
|
|
1861
|
+
},
|
|
1862
|
+
{
|
|
1863
|
+
"firstName": "",
|
|
1864
|
+
"lastName": "江平开",
|
|
1865
|
+
"creatorType": "contributor",
|
|
1866
|
+
"fieldMode": 1
|
|
1867
|
+
}
|
|
1868
|
+
],
|
|
1869
|
+
"date": "2012",
|
|
1870
|
+
"abstractNote": "随着微电子集成技术和组装技术的快速发展,电子元器件和逻辑电路的体积越来越小,而工作频率急剧增加,半导体的环境温度向高温方向变化,为保证电子元器件长时间可靠地正常工作,及时散热能力就成为其使用寿命长短的制约因素。高导热聚合物基复合材料在微电子、航空、航天、军事装备、电机电器等诸多制造业及高科技领域发挥着重要的作用。所以研制综合性能优异的高导热聚合物基复合材料成为了目前研究热点。本论文分别以氧化铝(Al_2O_3)、石墨烯和氮化硼(BN)纳米片为导热填料,以环氧树脂和聚偏氟乙烯(PVDF)为基体,制备了新型的高导热聚合物基复合材料。首先,采用两步法将超支化聚芳酰胺接枝到纳米Al_2O_3粒子表面:纳米颗粒先进行硅烷偶联剂处理引入氨基基团,在改性后的纳米粒子上接枝超支化聚合物;再利用X射线衍射、傅立叶红外光谱、核磁共振氢谱和热失重等方法对纳米Al_2O_3粒子的表面改性进行表征;然后分别将未改性的纳米Al_2O_3粒子、硅烷接枝的纳米Al_2O_3粒子(Al_2O_3-APS)和超支化聚芳酰胺接枝的纳米Al_2O_3粒子(Al_2O_3-HBP)与环氧树脂复合,并对三种复合材料的热性能和介电性能进行比较研究。结果表明:(1)从SEM、TEM和动态光散射的实验结果表明,三种纳米颗粒相比之下,Al_2O_3-HBP纳米粒子在有机溶剂乙醇和环氧树脂中显示出最好的分散性。(2)三种复合材料的导热系数都是随着纳米颗粒含量的增加而增大;在添加相同含量的纳米颗粒时,其导热系数遵循着如下的规律:环氧树脂/Al_2O_3-HBP复合材料>环氧树脂/Al_2O_3-APS复合材料>环氧树脂/Al_2O_3复合材料。而且从DSC、TGA和DMA的实验结果可以得出,与未改性Al_2O_3和Al_2O_3-APS纳米颗粒相比,添加Al_2O_3-HBP纳米颗粒能很好提高复合材料的耐热性。(3)对三种复合材料的介电性能(体积电阻率、介电常数、介电损耗和击穿强度)的研究比较发现,环氧树脂/Al_2O_3-HBP复合材料显示出优异的综合介电性能。其次,采用改进的Hummers法和超声剥离法制备氧化石墨烯,再使用热还原的方法制备石墨烯。系统地研究了石墨烯含量对PVDF复合材料的导热、热稳定和介电性能的影响,阐述了其石墨烯提高PVDF复合材料的导热性能的机理;最后还研究了低石墨烯掺量下对PVDF复合材料热稳定、动态热力学、结晶行为、透...",
|
|
1871
|
+
"extra": "major: 材料学\nfoundation: 国家自然基金;;\ndownload: 15683\nalbum: 工程科技Ⅰ辑\nCLC: TB332\ndbcode: CDFD\ndbname: CDFD1214\nfilename: 1012034749.nh",
|
|
1872
|
+
"language": "zh-CN",
|
|
1873
|
+
"libraryCatalog": "CNKI",
|
|
1874
|
+
"numPages": "148",
|
|
1875
|
+
"thesisType": "博士学位论文",
|
|
1876
|
+
"university": "上海交通大学",
|
|
1877
|
+
"url": "https://kns.cnki.net/KCMS/detail/detail.aspx?dbcode=CDFD&dbname=CDFD1214&filename=1012034749.nh",
|
|
1878
|
+
"attachments": [
|
|
1879
|
+
{
|
|
1880
|
+
"title": "Full Text PDF",
|
|
1881
|
+
"mimeType": "application/pdf"
|
|
1882
|
+
}
|
|
1883
|
+
],
|
|
1884
|
+
"tags": [
|
|
1885
|
+
{
|
|
1886
|
+
"tag": "介电"
|
|
1887
|
+
},
|
|
1888
|
+
{
|
|
1889
|
+
"tag": "复合材料"
|
|
1890
|
+
},
|
|
1891
|
+
{
|
|
1892
|
+
"tag": "导热"
|
|
1893
|
+
},
|
|
1894
|
+
{
|
|
1895
|
+
"tag": "氧化铝"
|
|
1896
|
+
},
|
|
1897
|
+
{
|
|
1898
|
+
"tag": "氮化硼"
|
|
1899
|
+
},
|
|
1900
|
+
{
|
|
1901
|
+
"tag": "环氧树脂"
|
|
1902
|
+
},
|
|
1903
|
+
{
|
|
1904
|
+
"tag": "石墨烯"
|
|
1905
|
+
},
|
|
1906
|
+
{
|
|
1907
|
+
"tag": "聚偏氟乙烯"
|
|
1908
|
+
}
|
|
1909
|
+
],
|
|
1910
|
+
"notes": [],
|
|
1911
|
+
"seeAlso": []
|
|
1912
|
+
}
|
|
1913
|
+
]
|
|
1914
|
+
},
|
|
1915
|
+
{
|
|
1916
|
+
"type": "web",
|
|
1917
|
+
"url": "https://kns.cnki.net/kcms2/article/abstract?v=sMQVub3UVPigDNftdOsKqRLYk606CWR4iKpMAydUwHAvlH8L01z2V5V5PNgdjglAwSLEPF8heJUfvw8Bcywfp-HkXBqojIwPInE3MrVQq2SJNY1TcrUVDCWowJRGRmuR9uaHzlD2ZaFsDG7crRtb-u3iPVCCs4vjZfe9H4K15f4=&uniplatform=NZKPT",
|
|
1918
|
+
"items": [
|
|
1919
|
+
{
|
|
1920
|
+
"itemType": "conferencePaper",
|
|
1921
|
+
"title": "辽西区新石器时代考古学文化纵横",
|
|
1922
|
+
"creators": [
|
|
1923
|
+
{
|
|
1924
|
+
"firstName": "",
|
|
1925
|
+
"lastName": "朱延平",
|
|
1926
|
+
"creatorType": "author",
|
|
1927
|
+
"fieldMode": 1
|
|
1928
|
+
},
|
|
1929
|
+
{
|
|
1930
|
+
"firstName": "",
|
|
1931
|
+
"lastName": "内蒙古文物考古研究所",
|
|
1932
|
+
"creatorType": "editor",
|
|
1933
|
+
"fieldMode": 1
|
|
1934
|
+
}
|
|
1935
|
+
],
|
|
1936
|
+
"date": "1991-09",
|
|
1937
|
+
"abstractNote": "辽西区的范围从大兴安岭南缘到渤海北岸,西起燕山西段,东止辽河平原,基本上包括内蒙古的赤峰市(原昭乌达盟)、哲里木盟西半部,辽宁省西部和河北省的承德、唐山、廊坊及其邻近的北京、天津等地区。这一地区的古人类遗存自旧石器时代晚期起,就与同属东北的辽东区有着明显的不同,在后来的发展中,构成自具特色的一个考古学文化区,对我国东北部起过不可忽视的作用。以下就辽西地区新石器时代的考古学文化序列、编年、谱系及有关问题简要地谈一下自己的认识。",
|
|
1938
|
+
"conferenceName": "内蒙古东部地区考古学术研讨会",
|
|
1939
|
+
"extra": "organizer: 中国社会科学院考古研究所、内蒙古文物考古研究所、赤峰市文化局\ndownload: 638\nalbum: 哲学与人文科学\nCLC: K872\ndbcode: CPFD\ndbname: CPFD9908\nfilename: OYDD199010001004",
|
|
1940
|
+
"language": "zh-CN",
|
|
1941
|
+
"libraryCatalog": "CNKI",
|
|
1942
|
+
"pages": "6, 13-18",
|
|
1943
|
+
"place": "中国内蒙古赤峰",
|
|
1944
|
+
"proceedingsTitle": "内蒙古东部区考古学文化研究文集",
|
|
1945
|
+
"url": "https://kns.cnki.net/KCMS/detail/detail.aspx?dbcode=CPFD&dbname=CPFD9908&filename=OYDD199010001004",
|
|
1946
|
+
"attachments": [
|
|
1947
|
+
{
|
|
1948
|
+
"title": "Full Text PDF",
|
|
1949
|
+
"mimeType": "application/pdf"
|
|
1950
|
+
}
|
|
1951
|
+
],
|
|
1952
|
+
"tags": [
|
|
1953
|
+
{
|
|
1954
|
+
"tag": "兴隆洼文化"
|
|
1955
|
+
},
|
|
1956
|
+
{
|
|
1957
|
+
"tag": "努鲁儿虎山"
|
|
1958
|
+
},
|
|
1959
|
+
{
|
|
1960
|
+
"tag": "半坡文化"
|
|
1961
|
+
},
|
|
1962
|
+
{
|
|
1963
|
+
"tag": "夹砂陶"
|
|
1964
|
+
},
|
|
1965
|
+
{
|
|
1966
|
+
"tag": "富河文化"
|
|
1967
|
+
},
|
|
1968
|
+
{
|
|
1969
|
+
"tag": "小河沿文化"
|
|
1970
|
+
},
|
|
1971
|
+
{
|
|
1972
|
+
"tag": "庙底沟文化"
|
|
1973
|
+
},
|
|
1974
|
+
{
|
|
1975
|
+
"tag": "彩陶花纹"
|
|
1976
|
+
},
|
|
1977
|
+
{
|
|
1978
|
+
"tag": "文化纵横"
|
|
1979
|
+
},
|
|
1980
|
+
{
|
|
1981
|
+
"tag": "新石器时代考古"
|
|
1982
|
+
},
|
|
1983
|
+
{
|
|
1984
|
+
"tag": "红山文化"
|
|
1985
|
+
}
|
|
1986
|
+
],
|
|
1987
|
+
"notes": [],
|
|
1988
|
+
"seeAlso": []
|
|
1989
|
+
}
|
|
1990
|
+
]
|
|
1991
|
+
},
|
|
1992
|
+
{
|
|
1993
|
+
"type": "web",
|
|
1994
|
+
"url": "https://kns.cnki.net/kcms2/article/abstract?v=8oX70opUeL9Sz6TMDobD54WY2iAv_7oc4EzA0EtCVBtRKS8rH086TmPI_zoEuk0Sr2lJdMsuSEk7qtwhzrhB-jyr-kbcD2lK7S0Xf1-kwkX7ulr9ql3sLhOB-EabHSGkMhP4xipN26g1xB7z7bd4XfVID9f5PVTJ0h4Py2oxZg8=&uniplatform=NZKPT",
|
|
1995
|
+
"items": [
|
|
1996
|
+
{
|
|
1997
|
+
"itemType": "newspaperArticle",
|
|
1998
|
+
"title": "灭绝物种RNA首次分离测序:为复活物种或研究RNA病毒开创新方向",
|
|
1999
|
+
"creators": [
|
|
2000
|
+
{
|
|
2001
|
+
"firstName": "",
|
|
2002
|
+
"lastName": "刘霞",
|
|
2003
|
+
"creatorType": "author",
|
|
2004
|
+
"fieldMode": 1
|
|
2005
|
+
}
|
|
2006
|
+
],
|
|
2007
|
+
"date": "2023-09-21",
|
|
2008
|
+
"abstractNote": "科技日报北京9月20日电 (记者刘霞)瑞典国家分子生物科学中心科学家首次分离和测序了一个已灭绝物种的RNA分子,从而重建了该灭绝物种(塔斯马尼亚虎)的皮肤和骨骼肌转录组。该项成果对复活塔斯马尼亚虎和毛猛犸象等灭绝物种,以及研究如新冠病毒等RNA病毒具有重要意义。相......",
|
|
2009
|
+
"extra": "DOI: 10.28502/n.cnki.nkjrb.2023.005521\nalbum: 基础科学\nCLC: Q343.1\ndbcode: CCND\ndbname: CCNDLAST2023\nfilename: KJRB202309210044",
|
|
2010
|
+
"language": "zh-CN",
|
|
2011
|
+
"libraryCatalog": "CNKI",
|
|
2012
|
+
"pages": "4",
|
|
2013
|
+
"publicationTitle": "科技日报",
|
|
2014
|
+
"shortTitle": "灭绝物种RNA首次分离测序",
|
|
2015
|
+
"url": "https://link.cnki.net/doi/10.28502/n.cnki.nkjrb.2023.005521",
|
|
2016
|
+
"attachments": [
|
|
2017
|
+
{
|
|
2018
|
+
"title": "Full Text PDF",
|
|
2019
|
+
"mimeType": "application/pdf"
|
|
2020
|
+
}
|
|
2021
|
+
],
|
|
2022
|
+
"tags": [
|
|
2023
|
+
{
|
|
2024
|
+
"tag": "RNA"
|
|
2025
|
+
},
|
|
2026
|
+
{
|
|
2027
|
+
"tag": "转录组"
|
|
2028
|
+
}
|
|
2029
|
+
],
|
|
2030
|
+
"notes": [],
|
|
2031
|
+
"seeAlso": []
|
|
2032
|
+
}
|
|
2033
|
+
]
|
|
2034
|
+
},
|
|
2035
|
+
{
|
|
2036
|
+
"type": "web",
|
|
2037
|
+
"url": "https://kns.cnki.net/kcms2/article/abstract?v=sMQVub3UVPh-Ko_j7TrAPDx9LWbcQaN5YkzQpO6PAqVJLgbmo5o3J7ksKEqqsQZN6P0YxslnWf9-Gr-_3iIVf99dBJvHvgEzhnLw4lywSVBekJFTwDz2wqrZLwSW-z_kmRUw8_wZEfE=&uniplatform=NZKPT",
|
|
2038
|
+
"items": [
|
|
2039
|
+
{
|
|
2040
|
+
"itemType": "bookSection",
|
|
2041
|
+
"title": "大事记",
|
|
2042
|
+
"creators": [
|
|
2043
|
+
{
|
|
2044
|
+
"firstName": "",
|
|
2045
|
+
"lastName": "高生记",
|
|
2046
|
+
"creatorType": "author",
|
|
2047
|
+
"fieldMode": 1
|
|
2048
|
+
}
|
|
2049
|
+
],
|
|
2050
|
+
"bookTitle": "山西年鉴",
|
|
2051
|
+
"extra": "DOI: 10.41842/y.cnki.ysxnj.2022.000050\ndownload: 26\nCLC: Z9\ndbcode: CYFD\ndbname: CYFD2022\nfilename: N2022040061000062",
|
|
2052
|
+
"language": "zh-CN",
|
|
2053
|
+
"libraryCatalog": "CNKI",
|
|
2054
|
+
"pages": "6-23",
|
|
2055
|
+
"url": "https://link.cnki.net/doi/10.41842/y.cnki.ysxnj.2022.000050",
|
|
2056
|
+
"attachments": [
|
|
2057
|
+
{
|
|
2058
|
+
"title": "Full Text PDF",
|
|
2059
|
+
"mimeType": "application/pdf"
|
|
2060
|
+
}
|
|
2061
|
+
],
|
|
2062
|
+
"tags": [
|
|
2063
|
+
{
|
|
2064
|
+
"tag": "大事记"
|
|
2065
|
+
}
|
|
2066
|
+
],
|
|
2067
|
+
"notes": [],
|
|
2068
|
+
"seeAlso": []
|
|
2069
|
+
}
|
|
2070
|
+
]
|
|
2071
|
+
},
|
|
2072
|
+
{
|
|
2073
|
+
"type": "web",
|
|
2074
|
+
"url": "https://kns.cnki.net/kns8s/defaultresult/index?classid=EMRPGLPA&korder=SU&kw=%E7%BA%B3%E7%B1%B3",
|
|
2075
|
+
"items": "multiple"
|
|
2076
|
+
},
|
|
2077
|
+
{
|
|
2078
|
+
"type": "web",
|
|
2079
|
+
"url": "https://kns.cnki.net/kcms2/article/abstract?v=sMQVub3UVPiG5mbP5BFYgsf2GVM4Pb3FAJPTQmmkT0VLgqYEWZjuffqXQSO25fYGRR6b8ap_q6BUEx9SorUDJIFGfoVhymByxCHw0NUHnC7Tgk_wHttZ89pJUbGhe_8Uw_i-UKZZWukatGvVDO884g==&uniplatform=NZKPT",
|
|
2080
|
+
"items": [
|
|
2081
|
+
{
|
|
2082
|
+
"itemType": "patent",
|
|
2083
|
+
"title": "不锈钢管的制造方法",
|
|
2084
|
+
"creators": [
|
|
2085
|
+
{
|
|
2086
|
+
"firstName": "",
|
|
2087
|
+
"lastName": "李玉和",
|
|
2088
|
+
"creatorType": "author",
|
|
2089
|
+
"fieldMode": 1
|
|
2090
|
+
},
|
|
2091
|
+
{
|
|
2092
|
+
"firstName": "",
|
|
2093
|
+
"lastName": "李守军",
|
|
2094
|
+
"creatorType": "author",
|
|
2095
|
+
"fieldMode": 1
|
|
2096
|
+
},
|
|
2097
|
+
{
|
|
2098
|
+
"firstName": "",
|
|
2099
|
+
"lastName": "李扬洲",
|
|
2100
|
+
"creatorType": "author",
|
|
2101
|
+
"fieldMode": 1
|
|
2102
|
+
},
|
|
2103
|
+
{
|
|
2104
|
+
"firstName": "",
|
|
2105
|
+
"lastName": "罗通伟",
|
|
2106
|
+
"creatorType": "author",
|
|
2107
|
+
"fieldMode": 1
|
|
2108
|
+
},
|
|
2109
|
+
{
|
|
2110
|
+
"firstName": "",
|
|
2111
|
+
"lastName": "彭声通",
|
|
2112
|
+
"creatorType": "author",
|
|
2113
|
+
"fieldMode": 1
|
|
2114
|
+
},
|
|
2115
|
+
{
|
|
2116
|
+
"firstName": "",
|
|
2117
|
+
"lastName": "贺同正",
|
|
2118
|
+
"creatorType": "author",
|
|
2119
|
+
"fieldMode": 1
|
|
2120
|
+
}
|
|
2121
|
+
],
|
|
2122
|
+
"abstractNote": "本发明公开了一种不锈钢管的制造方法,具有可提高不锈钢管质量的优点。该不锈钢管的制造方法,其特征是包括下述步骤:①将不锈钢液在熔炼炉中进行熔炼;②不锈钢液熔清后进行去渣及脱氧处理;③将不锈钢液浇入旋转的离心浇铸机型筒中进行离心浇铸后在离心力作用下冷却凝固成型为不锈钢管坯料。采用离心浇铸方法制作不锈钢空心管,使得在离心力作用下,离心管坯补缩效果好,组织较致密,气体和非金属夹杂容易排出,缺陷少,有效地提高了不锈钢管的质量,且通过离心浇铸后可直接获得不锈钢空心管,金属的收得率高,且通过采用离心浇铸后,管坯在后续加工中具有工序少、成材率高的特点,尤其适合在高端钢材产品的制造上面推广使用。",
|
|
2123
|
+
"applicationNumber": "CN200710201273.2",
|
|
2124
|
+
"country": "中国",
|
|
2125
|
+
"extra": "Genre: 发明公开\nalbum: 工程科技Ⅰ辑\nCLC: B22D13/02\ndbcode: SCPD\ndbname: SCPD0407\nfilename: CN101091984",
|
|
2126
|
+
"filingDate": "2007-08-03",
|
|
2127
|
+
"language": "zh-CN",
|
|
2128
|
+
"pages": "6",
|
|
2129
|
+
"patentNumber": "CN101091984",
|
|
2130
|
+
"place": "中国",
|
|
2131
|
+
"rights": "1.不锈钢管的制造方法,其特征是包括下述步骤:①、将不锈钢液\n\n\n\n在熔炼炉中进行熔炼;②、不锈钢液熔清后进行去渣及脱氧处理;③、将不锈钢液浇入旋转\n\n\n\n的离心浇铸机型筒中进行离心浇铸后在离心力作用下冷却凝固成型为不锈钢管坯料。",
|
|
2132
|
+
"url": "https://kns.cnki.net/KCMS/detail/detail.aspx?dbcode=SCPD&dbname=SCPD0407&filename=CN101091984",
|
|
2133
|
+
"attachments": [
|
|
2134
|
+
{
|
|
2135
|
+
"title": "Snapshot",
|
|
2136
|
+
"mimeType": "text/html"
|
|
2137
|
+
},
|
|
2138
|
+
{
|
|
2139
|
+
"title": "Full Text CAJ",
|
|
2140
|
+
"mimeType": "application/caj"
|
|
2141
|
+
}
|
|
2142
|
+
],
|
|
2143
|
+
"tags": [],
|
|
2144
|
+
"notes": [],
|
|
2145
|
+
"seeAlso": []
|
|
2146
|
+
}
|
|
2147
|
+
]
|
|
2148
|
+
},
|
|
2149
|
+
{
|
|
2150
|
+
"type": "web",
|
|
2151
|
+
"url": "https://kns.cnki.net/kcms2/article/abstract?v=sMQVub3UVPhUJgjC7Qa3I7KM9s9y0tpUeTk1TET0hGqCKwXmGEGJN6c25phYC4UVUOKqFs3LEMuE9HV0i_Q1tfpzYj_mbePzidRWSnNm2iIFBLqthVpUEGEhIrGePFl7zmn7dmm_nEgoIrEN2-lbjg==&uniplatform=NZKPT",
|
|
2152
|
+
"items": [
|
|
2153
|
+
{
|
|
2154
|
+
"itemType": "standard",
|
|
2155
|
+
"title": "粮油检验 小麦粉膨胀势的测定",
|
|
2156
|
+
"creators": [
|
|
2157
|
+
{
|
|
2158
|
+
"firstName": "",
|
|
2159
|
+
"lastName": "全国粮油标准化技术委员会",
|
|
2160
|
+
"creatorType": "author",
|
|
2161
|
+
"fieldMode": 1
|
|
2162
|
+
}
|
|
2163
|
+
],
|
|
2164
|
+
"date": "2019-05-10",
|
|
2165
|
+
"extra": "applyDate: 2019-12-01\noriginal-title: Inspection of grain and oils—Swelling properties test of wheat flour\nalbum: 工程科技Ⅰ辑\nCLC: X04 食品-食品综合-基础标准与通用方法\ndbcode: SCSF\ndbname: SCSF\nfilename: SCSF00058274",
|
|
2166
|
+
"language": "zh-CN",
|
|
2167
|
+
"libraryCatalog": "CNKI",
|
|
2168
|
+
"numPages": "16",
|
|
2169
|
+
"number": "GB/T 37510—2019",
|
|
2170
|
+
"status": "现行",
|
|
2171
|
+
"url": "https://kns.cnki.net/kcms2/article/abstract?v=sMQVub3UVPiowb17CydvU4D0OeNa6fUyv5OBL9DI3IKZep1tneGNFO3SiqiJX0C9QI46GsqnSbarj1Gh0nDUorgpzMyC9aHtNzSNNHSigLTtPdNmeAnZKPRSou_UYz4QUozez_3W_ZMjhu22CZrxYcr0-DCeyvHXObqSHurt7Ym8NNqaBc_J_5jesB75KM3I&uniplatform=NZKPT&language=CHS",
|
|
2172
|
+
"attachments": [
|
|
2173
|
+
{
|
|
2174
|
+
"title": "Full Text CAJ",
|
|
2175
|
+
"mimeType": "application/caj"
|
|
2176
|
+
}
|
|
2177
|
+
],
|
|
2178
|
+
"tags": [
|
|
2179
|
+
{
|
|
2180
|
+
"tag": "粮油检验"
|
|
2181
|
+
}
|
|
2182
|
+
],
|
|
2183
|
+
"notes": [],
|
|
2184
|
+
"seeAlso": []
|
|
2185
|
+
}
|
|
2186
|
+
]
|
|
2187
|
+
},
|
|
2188
|
+
{
|
|
2189
|
+
"type": "web",
|
|
2190
|
+
"url": "https://kns.cnki.net/kcms2/article/abstract?v=sMQVub3UVPgHKxUaqGeje4eBG31tefk-g1t1m5K2GD2Nmt1rgXe195otbojRwrL97hQfCLDwMAHfQn9e5Kj_RsCw59sBjBTrO_v5cPjiBVTrkpabiEDeTzlvU4yvtFZ2GdCMFb5eu9_BJDOUH39JWseZru4qhhB9&uniplatform=NZKPT",
|
|
2191
|
+
"items": [
|
|
2192
|
+
{
|
|
2193
|
+
"itemType": "report",
|
|
2194
|
+
"title": "25MW/100MWh液流电池长时储能系统关键技术研发与示范",
|
|
2195
|
+
"creators": [
|
|
2196
|
+
{
|
|
2197
|
+
"firstName": "",
|
|
2198
|
+
"lastName": "孟青",
|
|
2199
|
+
"creatorType": "author",
|
|
2200
|
+
"fieldMode": 1
|
|
2201
|
+
},
|
|
2202
|
+
{
|
|
2203
|
+
"firstName": "",
|
|
2204
|
+
"lastName": "刘素琴",
|
|
2205
|
+
"creatorType": "author",
|
|
2206
|
+
"fieldMode": 1
|
|
2207
|
+
},
|
|
2208
|
+
{
|
|
2209
|
+
"firstName": "",
|
|
2210
|
+
"lastName": "李建林",
|
|
2211
|
+
"creatorType": "author",
|
|
2212
|
+
"fieldMode": 1
|
|
2213
|
+
},
|
|
2214
|
+
{
|
|
2215
|
+
"firstName": "",
|
|
2216
|
+
"lastName": "曾义凯",
|
|
2217
|
+
"creatorType": "author",
|
|
2218
|
+
"fieldMode": 1
|
|
2219
|
+
},
|
|
2220
|
+
{
|
|
2221
|
+
"firstName": "",
|
|
2222
|
+
"lastName": "张家乐",
|
|
2223
|
+
"creatorType": "author",
|
|
2224
|
+
"fieldMode": 1
|
|
2225
|
+
},
|
|
2226
|
+
{
|
|
2227
|
+
"firstName": "",
|
|
2228
|
+
"lastName": "吴志宽",
|
|
2229
|
+
"creatorType": "author",
|
|
2230
|
+
"fieldMode": 1
|
|
2231
|
+
},
|
|
2232
|
+
{
|
|
2233
|
+
"firstName": "",
|
|
2234
|
+
"lastName": "刘文",
|
|
2235
|
+
"creatorType": "author",
|
|
2236
|
+
"fieldMode": 1
|
|
2237
|
+
},
|
|
2238
|
+
{
|
|
2239
|
+
"firstName": "",
|
|
2240
|
+
"lastName": "周明月",
|
|
2241
|
+
"creatorType": "author",
|
|
2242
|
+
"fieldMode": 1
|
|
2243
|
+
},
|
|
2244
|
+
{
|
|
2245
|
+
"firstName": "",
|
|
2246
|
+
"lastName": "何震",
|
|
2247
|
+
"creatorType": "author",
|
|
2248
|
+
"fieldMode": 1
|
|
2249
|
+
},
|
|
2250
|
+
{
|
|
2251
|
+
"firstName": "",
|
|
2252
|
+
"lastName": "王珏",
|
|
2253
|
+
"creatorType": "author",
|
|
2254
|
+
"fieldMode": 1
|
|
2255
|
+
},
|
|
2256
|
+
{
|
|
2257
|
+
"firstName": "",
|
|
2258
|
+
"lastName": "解祯",
|
|
2259
|
+
"creatorType": "author",
|
|
2260
|
+
"fieldMode": 1
|
|
2261
|
+
},
|
|
2262
|
+
{
|
|
2263
|
+
"firstName": "",
|
|
2264
|
+
"lastName": "娄明坤",
|
|
2265
|
+
"creatorType": "author",
|
|
2266
|
+
"fieldMode": 1
|
|
2267
|
+
},
|
|
2268
|
+
{
|
|
2269
|
+
"firstName": "",
|
|
2270
|
+
"lastName": "许超",
|
|
2271
|
+
"creatorType": "author",
|
|
2272
|
+
"fieldMode": 1
|
|
2273
|
+
},
|
|
2274
|
+
{
|
|
2275
|
+
"firstName": "",
|
|
2276
|
+
"lastName": "李继伟",
|
|
2277
|
+
"creatorType": "author",
|
|
2278
|
+
"fieldMode": 1
|
|
2279
|
+
},
|
|
2280
|
+
{
|
|
2281
|
+
"firstName": "",
|
|
2282
|
+
"lastName": "王璐嘉",
|
|
2283
|
+
"creatorType": "author",
|
|
2284
|
+
"fieldMode": 1
|
|
2285
|
+
}
|
|
2286
|
+
],
|
|
2287
|
+
"date": "2023",
|
|
2288
|
+
"abstractNote": "本项目拟通过分析材料、电堆、电解液和模块性能提升、成本控制制约因素,将关键材料性能提升与电堆结构优化设计以及系统电气、智能控制设施等的优化研究相结合,以最大限度地提升性能、降低系统成本。针对液流电池电解液活性物种溶解度不高,高、低温稳定性差,长期循环过程中容量衰减和效率降低问题,开发高浓度、高稳定性、活性电解液配方与制备工艺。在功率单元和能量单元性能优化基础上,以可靠性和系统性能优化为目标,分析指标,开发储能单元模块,以此为基础设计储能电站工程,针对工程应用开发调控和运维平台,形成示范应用及经济性分析。",
|
|
2289
|
+
"extra": "achievementType: 应用技术\nevaluation: 验收\nalbum: 工程科技Ⅱ辑\nCLC: TM912.9\ndbcode: SNAD\ndbname: SNAD\nfilename: SNAD000002043401",
|
|
2290
|
+
"institution": "山西国润储能科技有限公司",
|
|
2291
|
+
"language": "zh-CN",
|
|
2292
|
+
"libraryCatalog": "CNKI",
|
|
2293
|
+
"reportType": "科技报告",
|
|
2294
|
+
"url": "https://kns.cnki.net/KCMS/detail/detail.aspx?dbcode=SNAD&dbname=SNAD&filename=SNAD000002043401",
|
|
2295
|
+
"attachments": [
|
|
2296
|
+
{
|
|
2297
|
+
"title": "Full Text CAJ",
|
|
2298
|
+
"mimeType": "application/caj"
|
|
2299
|
+
}
|
|
2300
|
+
],
|
|
2301
|
+
"tags": [
|
|
2302
|
+
{
|
|
2303
|
+
"tag": "储能电站"
|
|
2304
|
+
},
|
|
2305
|
+
{
|
|
2306
|
+
"tag": "储能系统"
|
|
2307
|
+
},
|
|
2308
|
+
{
|
|
2309
|
+
"tag": "关键技术研发"
|
|
2310
|
+
},
|
|
2311
|
+
{
|
|
2312
|
+
"tag": "液流电池"
|
|
2313
|
+
},
|
|
2314
|
+
{
|
|
2315
|
+
"tag": "电解液活性"
|
|
2316
|
+
}
|
|
2317
|
+
],
|
|
2318
|
+
"notes": [],
|
|
2319
|
+
"seeAlso": []
|
|
2320
|
+
}
|
|
2321
|
+
]
|
|
2322
|
+
},
|
|
2323
|
+
{
|
|
2324
|
+
"type": "web",
|
|
2325
|
+
"url": "https://kns.cnki.net/kcms2/article/abstract?v=sMQVub3UVPiU0UZfLTdyfrPRSQiI4UbF8G-kxDspb8r4gBh2WY2zIfacmt1UliZdUVXJHOLplkC7UXsu94MxnAHopj7BIhIxmu2yL8YraQ6F6TnWewIC1X5SZDx1zPubVXqEjhpmEIXjY6pU9XMWxA==&uniplatform=NZKPT",
|
|
2326
|
+
"items": [
|
|
2327
|
+
{
|
|
2328
|
+
"itemType": "videoRecording",
|
|
2329
|
+
"title": "2020年第二季度宏观经济形势分析会",
|
|
2330
|
+
"creators": [
|
|
2331
|
+
{
|
|
2332
|
+
"firstName": "",
|
|
2333
|
+
"lastName": "贾康",
|
|
2334
|
+
"creatorType": "author",
|
|
2335
|
+
"fieldMode": 1
|
|
2336
|
+
},
|
|
2337
|
+
{
|
|
2338
|
+
"firstName": "",
|
|
2339
|
+
"lastName": "贾康",
|
|
2340
|
+
"creatorType": "author",
|
|
2341
|
+
"fieldMode": 1
|
|
2342
|
+
}
|
|
2343
|
+
],
|
|
2344
|
+
"date": "2020-07-23",
|
|
2345
|
+
"abstractNote": "【中国资本市场50人论坛携手中国知网联合出品】 议 程 更多 还原",
|
|
2346
|
+
"extra": "organizer: 中国资本市场50人论坛;中国知网\ndbcode: CCVD\ndbname: CCVD\nfilename: 542618070256",
|
|
2347
|
+
"language": "zh-CN",
|
|
2348
|
+
"libraryCatalog": "CNKI",
|
|
2349
|
+
"runningTime": "03:46:14",
|
|
2350
|
+
"url": "https://kns.cnki.net/KCMS/detail/detail.aspx?dbcode=CCVD&dbname=CCVD&filename=542618070256",
|
|
2351
|
+
"attachments": [],
|
|
2352
|
+
"tags": [
|
|
2353
|
+
{
|
|
2354
|
+
"tag": "民营经济"
|
|
2355
|
+
},
|
|
2356
|
+
{
|
|
2357
|
+
"tag": "要素市场化"
|
|
2358
|
+
}
|
|
2359
|
+
],
|
|
2360
|
+
"notes": [],
|
|
2361
|
+
"seeAlso": []
|
|
2362
|
+
}
|
|
2363
|
+
]
|
|
2364
|
+
},
|
|
2365
|
+
{
|
|
2366
|
+
"type": "web",
|
|
2367
|
+
"url": "https://kns.cnki.net/kns8s/search?classid=WD0FTY92&kw=%E7%85%A4%E7%82%AD&korder=SU",
|
|
2368
|
+
"items": "multiple"
|
|
2369
|
+
},
|
|
2370
|
+
{
|
|
2371
|
+
"type": "web",
|
|
2372
|
+
"url": "https://kns.cnki.net/kns8s/AdvSearch?classid=WD0FTY92",
|
|
2373
|
+
"items": "multiple"
|
|
2374
|
+
},
|
|
2375
|
+
{
|
|
2376
|
+
"type": "web",
|
|
2377
|
+
"url": "https://kns.cnki.net/kns/search?dbcode=SCDB",
|
|
2378
|
+
"items": "multiple"
|
|
2379
|
+
}
|
|
2380
|
+
]
|
|
2381
|
+
/** END TEST CASES **/
|