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,1028 @@
|
|
|
1
|
+
{
|
|
2
|
+
"translatorID": "be4556e0-01aa-433e-8988-a428b51b19c3",
|
|
3
|
+
"label": "CNKI TIKS",
|
|
4
|
+
"creator": "jiaojiaodubai",
|
|
5
|
+
"target": "^https?://(kjqy|kc)\\.cnki\\.net",
|
|
6
|
+
"minVersion": "5.0",
|
|
7
|
+
"maxVersion": "",
|
|
8
|
+
"priority": 100,
|
|
9
|
+
"inRepository": true,
|
|
10
|
+
"translatorType": 4,
|
|
11
|
+
"browserSupport": "gcsibv",
|
|
12
|
+
"lastUpdated": "2024-11-14 03:02:44"
|
|
13
|
+
}
|
|
14
|
+
|
|
15
|
+
/*
|
|
16
|
+
***** BEGIN LICENSE BLOCK *****
|
|
17
|
+
|
|
18
|
+
Copyright © 2024 jiaojiaodubai<jiaojiaodubai23@gmail.com>
|
|
19
|
+
|
|
20
|
+
This file is part of Zotero.
|
|
21
|
+
|
|
22
|
+
Zotero is free software: you can redistribute it and/or modify
|
|
23
|
+
it under the terms of the GNU Affero General Public License as published by
|
|
24
|
+
the Free Software Foundation, either version 3 of the License, or
|
|
25
|
+
(at your option) any later version.
|
|
26
|
+
|
|
27
|
+
Zotero is distributed in the hope that it will be useful,
|
|
28
|
+
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
29
|
+
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
30
|
+
GNU Affero General Public License for more details.
|
|
31
|
+
|
|
32
|
+
You should have received a copy of the GNU Affero General Public License
|
|
33
|
+
along with Zotero. If not, see <http://www.gnu.org/licenses/>.
|
|
34
|
+
|
|
35
|
+
***** END LICENSE BLOCK *****
|
|
36
|
+
*/
|
|
37
|
+
|
|
38
|
+
const typeMAp = {
|
|
39
|
+
journalArticle: '刊名',
|
|
40
|
+
patent: '专利',
|
|
41
|
+
standard: '标准号',
|
|
42
|
+
report: '成果完成人',
|
|
43
|
+
conferencePaper: '会议',
|
|
44
|
+
thesis: '学位',
|
|
45
|
+
newspaperArticle: '报纸名称',
|
|
46
|
+
bookSection: '年鉴',
|
|
47
|
+
statute: '发文字号'
|
|
48
|
+
};
|
|
49
|
+
|
|
50
|
+
function detectWeb(doc, url) {
|
|
51
|
+
const results = doc.querySelector('.search-result, .main-view');
|
|
52
|
+
if (results) {
|
|
53
|
+
Z.monitorDOMChanges(results, { subtree: true, childList: true });
|
|
54
|
+
}
|
|
55
|
+
if (/\/article?.*id=/i.test(url)) {
|
|
56
|
+
return Object.keys(typeMAp).find(key => ZU.xpath(doc, `//span[@class="label"][contains(text(), "${typeMAp[key]}")]`).length);
|
|
57
|
+
}
|
|
58
|
+
else if (getSearchResults(doc, true)) {
|
|
59
|
+
return 'multiple';
|
|
60
|
+
}
|
|
61
|
+
return false;
|
|
62
|
+
}
|
|
63
|
+
|
|
64
|
+
function getSearchResults(doc, checkOnly) {
|
|
65
|
+
const items = {};
|
|
66
|
+
let found = false;
|
|
67
|
+
const rows = doc.querySelectorAll('[data-col-key="TI"] > span > a');
|
|
68
|
+
for (const row of rows) {
|
|
69
|
+
const href = row.href;
|
|
70
|
+
const title = ZU.trimInternal(row.textContent);
|
|
71
|
+
if (!href || !title) continue;
|
|
72
|
+
if (checkOnly) return true;
|
|
73
|
+
found = true;
|
|
74
|
+
items[href] = title;
|
|
75
|
+
}
|
|
76
|
+
return found ? items : false;
|
|
77
|
+
}
|
|
78
|
+
|
|
79
|
+
async function doWeb(doc, url) {
|
|
80
|
+
if (detectWeb(doc, url) == 'multiple') {
|
|
81
|
+
const items = await Zotero.selectItems(getSearchResults(doc, false));
|
|
82
|
+
if (!items) return;
|
|
83
|
+
for (const url of Object.keys(items)) {
|
|
84
|
+
await scrape(await requestDocument(url), url);
|
|
85
|
+
}
|
|
86
|
+
}
|
|
87
|
+
else {
|
|
88
|
+
await scrape(doc, url);
|
|
89
|
+
}
|
|
90
|
+
}
|
|
91
|
+
|
|
92
|
+
async function scrape(doc, url = doc.location.href) {
|
|
93
|
+
let newItem = new Z.Item(detectWeb(doc, url));
|
|
94
|
+
const extra = new Extra();
|
|
95
|
+
newItem.title = text(doc, '.article-content > h3');
|
|
96
|
+
let info = await requestJSON('https://kc.cnki.net/api/articleabstract/info', {
|
|
97
|
+
method: 'POST',
|
|
98
|
+
headers: {
|
|
99
|
+
Accept: 'application/json, text/plain, */*',
|
|
100
|
+
'Content-Type': 'application/json;charset=UTF-8',
|
|
101
|
+
'Ot-Hy-Flag': 0,
|
|
102
|
+
'X-XSRF-TOKEN': tryMatch(doc.cookie, /XSRF-TOKEN=([\w-]+)/, 1),
|
|
103
|
+
Referer: url
|
|
104
|
+
},
|
|
105
|
+
body: JSON.stringify({ id: tryMatch(url, /id=([^&#]+)/i, 1) })
|
|
106
|
+
});
|
|
107
|
+
Z.debug(info);
|
|
108
|
+
info = info.data;
|
|
109
|
+
function metadata(mainKey, list = false) {
|
|
110
|
+
const result = info.metadata.find(obj => obj.key == mainKey);
|
|
111
|
+
return result
|
|
112
|
+
? list
|
|
113
|
+
? result.list
|
|
114
|
+
: result.value
|
|
115
|
+
: list
|
|
116
|
+
? []
|
|
117
|
+
: '';
|
|
118
|
+
}
|
|
119
|
+
try {
|
|
120
|
+
// throw new Error('debug');
|
|
121
|
+
const doi = attr(doc, 'span.doi > a', 'href') || metadata('DOI');
|
|
122
|
+
Z.debug(`DOI: ${doi}`);
|
|
123
|
+
newItem = await scrapeSearch(doi);
|
|
124
|
+
}
|
|
125
|
+
catch (error) {
|
|
126
|
+
Z.debug(`failed to use search translator.`);
|
|
127
|
+
Z.debug(error);
|
|
128
|
+
const citation = info.citationFormat
|
|
129
|
+
? info.citationFormat[Object.keys(info.citationFormat).find(key => key.includes('GB/T'))]
|
|
130
|
+
: '';
|
|
131
|
+
Z.debug(citation);
|
|
132
|
+
newItem.title = info.title;
|
|
133
|
+
newItem.abstractNote = metadata('AB').replace(/(\s)+/g, '$1');
|
|
134
|
+
switch (newItem.itemType) {
|
|
135
|
+
case 'journalArticle':
|
|
136
|
+
newItem.publicationTitle = metadata('LY');
|
|
137
|
+
newItem.volume = tryMatch(citation, /\d{4},\s?0*(\d+)\(/, 1) || metadata('JU');
|
|
138
|
+
newItem.issue = tryMatch(citation, /\(0*(\d+)\)/, 1);
|
|
139
|
+
newItem.pages = metadata('PAGE');
|
|
140
|
+
newItem.date = metadata('YE');
|
|
141
|
+
info.authors.forEach((creator) => {
|
|
142
|
+
newItem.creators.push(cleanAuthor(creator.value, 'author'));
|
|
143
|
+
});
|
|
144
|
+
break;
|
|
145
|
+
case 'patent':
|
|
146
|
+
extra.set('Genre', metadata('PTN'), true);
|
|
147
|
+
newItem.assignee = metadata('SQR');
|
|
148
|
+
newItem.patentNumber = metadata('GKH');
|
|
149
|
+
newItem.applicationNumber = metadata('SQH');
|
|
150
|
+
newItem.place = newItem.country = patentCountry(newItem.patentNumber || newItem.applicationNumber);
|
|
151
|
+
newItem.filingDate = metadata('AD');
|
|
152
|
+
newItem.issueDate = metadata('PD');
|
|
153
|
+
metadata('AU', true).forEach((creator) => {
|
|
154
|
+
newItem.creators.push(cleanAuthor(creator.value, 'inventor'));
|
|
155
|
+
});
|
|
156
|
+
newItem.rights = metadata('ZQX');
|
|
157
|
+
break;
|
|
158
|
+
case 'standard':
|
|
159
|
+
newItem.number = metadata('BZH').replace(/(\d)-(\d)/, '$1—$2');
|
|
160
|
+
newItem.date = metadata('RD');
|
|
161
|
+
// 缺归口单位
|
|
162
|
+
extra.set('applyDate', metadata('OD'));
|
|
163
|
+
extra.set('CCS', metadata('SLC'));
|
|
164
|
+
extra.set('ICS', metadata('CLZ'));
|
|
165
|
+
newItem.numPages = metadata('OP');
|
|
166
|
+
break;
|
|
167
|
+
case 'report':
|
|
168
|
+
newItem.reportType = '科技报告';
|
|
169
|
+
newItem.institution = metadata('AF');
|
|
170
|
+
newItem.date = metadata('YE') || metadata('RKNF');
|
|
171
|
+
metadata('AU', true).forEach((creator) => {
|
|
172
|
+
newItem.creators.push(cleanAuthor(creator.value));
|
|
173
|
+
});
|
|
174
|
+
extra.set('achievementType', metadata('LBMC'));
|
|
175
|
+
break;
|
|
176
|
+
case 'conferencePaper':
|
|
177
|
+
newItem.date = metadata('PT');
|
|
178
|
+
newItem.conferenceName = metadata('LY');
|
|
179
|
+
newItem.place = metadata('AD');
|
|
180
|
+
newItem.pages = metadata('PM');
|
|
181
|
+
info.authors.forEach((creator) => {
|
|
182
|
+
newItem.creators.push(cleanAuthor(creator.value, 'author'));
|
|
183
|
+
});
|
|
184
|
+
break;
|
|
185
|
+
case 'thesis':
|
|
186
|
+
newItem.thesisType = info.repository.resource == 'EKRCDFD'
|
|
187
|
+
? '硕士学位论文'
|
|
188
|
+
: '博士学位论文';
|
|
189
|
+
newItem.university = metadata('LY');
|
|
190
|
+
// 缺年份
|
|
191
|
+
newItem.numPages = metadata('PAGEC');
|
|
192
|
+
extra.set('major', metadata('SN'));
|
|
193
|
+
info.authors.forEach((creator) => {
|
|
194
|
+
newItem.creators.push(cleanAuthor(creator.value, 'author'));
|
|
195
|
+
});
|
|
196
|
+
metadata('TUS').split(/[;,;]\s?/).forEach((creator) => {
|
|
197
|
+
newItem.creators.push(cleanAuthor(creator, 'contributor'));
|
|
198
|
+
});
|
|
199
|
+
break;
|
|
200
|
+
case 'newspaperArticle':
|
|
201
|
+
newItem.publicationTitle = metadata('LY');
|
|
202
|
+
newItem.date = metadata('PT');
|
|
203
|
+
newItem.pages = metadata('PV').replace(/0*(\d+)/, '$1');
|
|
204
|
+
info.authors.forEach((creator) => {
|
|
205
|
+
newItem.creators.push(cleanAuthor(creator.value, 'author'));
|
|
206
|
+
});
|
|
207
|
+
break;
|
|
208
|
+
case 'bookSection':
|
|
209
|
+
newItem.bookTitle = metadata('LY');
|
|
210
|
+
newItem.date = metadata('YE');
|
|
211
|
+
newItem.pages = metadata('PPM');
|
|
212
|
+
info.authors.forEach((creator) => {
|
|
213
|
+
newItem.creators.push(cleanAuthor(creator.value.replace(/\s?[总主参]编$/, ''), 'editor'));
|
|
214
|
+
});
|
|
215
|
+
break;
|
|
216
|
+
case 'statute':
|
|
217
|
+
if (newItem.title.startsWith('中华人民共和国')) {
|
|
218
|
+
newItem.shortTitle = newItem.title.substring(7);
|
|
219
|
+
}
|
|
220
|
+
newItem.abstractNote = metadata('ZWKZ').replace(/(\s)+/g, '$1');
|
|
221
|
+
newItem.publicLawNumber = metadata('FWZH');
|
|
222
|
+
newItem.dateEnacted = metadata('PBT');
|
|
223
|
+
extra.set('applyDate', metadata('OT'));
|
|
224
|
+
if (!metadata('XLJB').includes('法律')) extra.set('Type', 'regulation', true);
|
|
225
|
+
if (metadata('SXX') == '已失效') extra.set('Status', '已废止');
|
|
226
|
+
info.aff.forEach((creator) => {
|
|
227
|
+
newItem.creators.push(cleanAuthor(creator.value, 'author'));
|
|
228
|
+
});
|
|
229
|
+
break;
|
|
230
|
+
}
|
|
231
|
+
if (ZU.fieldIsValidForType('DOI', newItem.itemType)) {
|
|
232
|
+
newItem.DOI = metadata('DOI');
|
|
233
|
+
}
|
|
234
|
+
else {
|
|
235
|
+
extra.set('DOI', metadata('DOI'), true);
|
|
236
|
+
}
|
|
237
|
+
}
|
|
238
|
+
extra.set('album', metadata('CLJ'));
|
|
239
|
+
extra.set('CLC', metadata('CLC'));
|
|
240
|
+
extra.set('download', metadata('DFR'));
|
|
241
|
+
extra.set('CNKICite', tryMatch(text(doc, '.quote'), /\d+/));
|
|
242
|
+
extra.set('filename', info.fileName);
|
|
243
|
+
extra.set('dbname', info.repository.resource.slice(-4));
|
|
244
|
+
extra.set('dbcode', info.repository.dataset.substring(4));
|
|
245
|
+
const attachment = info.relations.reverse().find(obj => ['PDF', 'CAJ'].includes(obj.scope));
|
|
246
|
+
newItem.attachments.push(attachment
|
|
247
|
+
? {
|
|
248
|
+
url: attachment.url,
|
|
249
|
+
title: `Full Text ${attachment.scope}`,
|
|
250
|
+
mimeType: `application/${attachment.scope.toLowerCase()}`
|
|
251
|
+
}
|
|
252
|
+
: {
|
|
253
|
+
title: 'Snapshot',
|
|
254
|
+
document: doc
|
|
255
|
+
}
|
|
256
|
+
);
|
|
257
|
+
newItem.tags = metadata('KY', true).map(obj => obj.value);
|
|
258
|
+
const toc = info.co;
|
|
259
|
+
if (toc) newItem.notes.push('<h1>Table of Contents</h1>' + toc);
|
|
260
|
+
newItem.extra = extra.toString(newItem.extra);
|
|
261
|
+
newItem.complete();
|
|
262
|
+
}
|
|
263
|
+
|
|
264
|
+
async function scrapeSearch(doi) {
|
|
265
|
+
let item = {};
|
|
266
|
+
if (!doi) throw new ReferenceError('no identifier available');
|
|
267
|
+
const translator = Zotero.loadTranslator('search');
|
|
268
|
+
translator.setSearch({ DOI: doi });
|
|
269
|
+
translator.setHandler('translators', (_, translators) => {
|
|
270
|
+
translator.setTranslator(translators);
|
|
271
|
+
});
|
|
272
|
+
translator.setHandler('itemDone', (_, patchItem) => {
|
|
273
|
+
item = patchItem;
|
|
274
|
+
});
|
|
275
|
+
translator.setHandler('error', () => { });
|
|
276
|
+
await translator.getTranslators();
|
|
277
|
+
await translator.translate();
|
|
278
|
+
return item;
|
|
279
|
+
}
|
|
280
|
+
|
|
281
|
+
class Extra {
|
|
282
|
+
constructor() {
|
|
283
|
+
this.fields = [];
|
|
284
|
+
}
|
|
285
|
+
|
|
286
|
+
push(key, val, csl = false) {
|
|
287
|
+
this.fields.push({ key: key, val: val, csl: csl });
|
|
288
|
+
}
|
|
289
|
+
|
|
290
|
+
set(key, val, csl = false) {
|
|
291
|
+
let target = this.fields.find(obj => new RegExp(`^${key}$`, 'i').test(obj.key));
|
|
292
|
+
if (target) {
|
|
293
|
+
target.val = val;
|
|
294
|
+
}
|
|
295
|
+
else {
|
|
296
|
+
this.push(key, val, csl);
|
|
297
|
+
}
|
|
298
|
+
}
|
|
299
|
+
|
|
300
|
+
get(key) {
|
|
301
|
+
let result = this.fields.find(obj => new RegExp(`^${key}$`, 'i').test(obj.key));
|
|
302
|
+
return result
|
|
303
|
+
? result.val
|
|
304
|
+
: '';
|
|
305
|
+
}
|
|
306
|
+
|
|
307
|
+
toString(history = '') {
|
|
308
|
+
this.fields = this.fields.filter(obj => obj.val);
|
|
309
|
+
return [
|
|
310
|
+
this.fields.filter(obj => obj.csl).map(obj => `${obj.key}: ${obj.val}`).join('\n'),
|
|
311
|
+
history,
|
|
312
|
+
this.fields.filter(obj => !obj.csl).map(obj => `${obj.key}: ${obj.val}`).join('\n')
|
|
313
|
+
].filter(obj => obj).join('\n');
|
|
314
|
+
}
|
|
315
|
+
}
|
|
316
|
+
|
|
317
|
+
function tryMatch(string, pattern, index = 0) {
|
|
318
|
+
if (!string) return '';
|
|
319
|
+
let match = string.match(pattern);
|
|
320
|
+
return (match && match[index])
|
|
321
|
+
? match[index]
|
|
322
|
+
: '';
|
|
323
|
+
}
|
|
324
|
+
|
|
325
|
+
function cleanAuthor(creator, creatorType = 'author') {
|
|
326
|
+
creator = ZU.cleanAuthor(creator, creatorType);
|
|
327
|
+
if (/[\u4e00-\u9fa5]/.test(creator.lastName)) {
|
|
328
|
+
creator.lastName = creator.firstName + creator.lastName;
|
|
329
|
+
creator.firstName = '';
|
|
330
|
+
creator.fieldMode = 1;
|
|
331
|
+
}
|
|
332
|
+
return creator;
|
|
333
|
+
}
|
|
334
|
+
|
|
335
|
+
function patentCountry(idNumber) {
|
|
336
|
+
return {
|
|
337
|
+
AD: '安道尔', AE: '阿拉伯联合酋长国', AF: '阿富汗', AG: '安提瓜和巴布达', AI: '安圭拉', AL: '阿尔巴尼亚', AM: '亚美尼亚', AN: '菏属安的列斯群岛', AO: '安哥拉', AR: '阿根廷', AT: '奥地利', AU: '澳大利亚', AW: '阿鲁巴', AZ: '阿塞拜疆', BB: '巴巴多斯', BD: '孟加拉国', BE: '比利时', BF: '布莱基纳法索', BG: '保加利亚', BH: '巴林', BI: '布隆迪', BJ: '贝宁', BM: '百慕大', BN: '文莱', BO: '玻利维亚', BR: '巴西', BS: '巴哈马', BT: '不丹', BU: '缅甸', BW: '博茨瓦纳', BY: '白俄罗斯', BZ: '伯利兹', CA: '加拿大', CF: '中非共和国', CG: '刚果', CH: '瑞士', CI: '科特迪瓦', CL: '智利', CM: '喀麦隆', CN: '中国', CO: '哥伦比亚', CR: '哥斯达黎加', CS: '捷克斯洛伐克', CU: '古巴', CV: '怫得角', CY: '塞浦路斯',
|
|
338
|
+
DE: '联邦德国', DJ: '吉布提', DK: '丹麦', DM: '多米尼加岛', DO: '多米尼加共和国', DZ: '阿尔及利亚', EC: '厄瓜多尔', EE: '爱沙尼亚', EG: '埃及', EP: '欧洲专利局', ES: '西班牙', ET: '埃塞俄比亚', FI: '芬兰', FJ: '斐济', FK: '马尔维纳斯群岛', FR: '法国',
|
|
339
|
+
GA: '加蓬', GB: '英国', GD: '格林那达', GE: '格鲁吉亚', GH: '加纳', GI: '直布罗陀', GM: '冈比亚', GN: '几内亚', GQ: '赤道几内亚', GR: '希腊', GT: '危地马拉', GW: '几内亚比绍', GY: '圭亚那', HK: '香港', HN: '洪都拉斯', HR: '克罗地亚', HT: '海地', HU: '匈牙利', HV: '上沃尔特', ID: '印度尼西亚', IE: '爱尔兰', IL: '以色列', IN: '印度', IQ: '伊拉克', IR: '伊朗', IS: '冰岛', IT: '意大利',
|
|
340
|
+
JE: '泽西岛', JM: '牙买加', JO: '约旦', JP: '日本', KE: '肯尼亚', KG: '吉尔吉斯', KH: '柬埔寨', KI: '吉尔伯特群岛', KM: '科摩罗', KN: '圣克里斯托夫岛', KP: '朝鲜', KR: '韩国', KW: '科威特', KY: '开曼群岛', KZ: '哈萨克', LA: '老挝', LB: '黎巴嫩', LC: '圣卢西亚岛', LI: '列支敦士登', LK: '斯里兰卡', LR: '利比里亚', LS: '莱索托', LT: '立陶宛', LU: '卢森堡', LV: '拉脱维亚', LY: '利比亚',
|
|
341
|
+
MA: '摩洛哥', MC: '摩纳哥', MD: '莫尔多瓦', MG: '马达加斯加', ML: '马里', MN: '蒙古', MO: '澳门', MR: '毛里塔尼亚', MS: '蒙特塞拉特岛', MT: '马耳他', MU: '毛里求斯', MV: '马尔代夫', MW: '马拉维', MX: '墨西哥', MY: '马来西亚', MZ: '莫桑比克', NA: '纳米比亚', NE: '尼日尔', NG: '尼日利亚', NH: '新赫布里底', NI: '尼加拉瓜', NL: '荷兰', NO: '挪威', NP: '尼泊尔', NR: '瑙鲁', NZ: '新西兰', OA: '非洲知识产权组织', OM: '阿曼',
|
|
342
|
+
PA: '巴拿马', PC: 'PCT', PE: '秘鲁', PG: '巴布亚新几内亚', PH: '菲律宾', PK: '巴基斯坦', PL: '波兰', PT: '葡萄牙', PY: '巴拉圭', QA: '卡塔尔', RO: '罗马尼亚', RU: '俄罗斯联邦', RW: '卢旺达',
|
|
343
|
+
SA: '沙特阿拉伯', SB: '所罗门群岛', SC: '塞舌尔', SD: '苏丹', SE: '瑞典', SG: '新加坡', SH: '圣赫勒拿岛', SI: '斯洛文尼亚', SL: '塞拉利昂', SM: '圣马利诺', SN: '塞内加尔', SO: '索马里', SR: '苏里南', ST: '圣多美和普林西比岛', SU: '苏联', SV: '萨尔瓦多', SY: '叙利亚', SZ: '斯威士兰', TD: '乍得', TG: '多哥', TH: '泰国', TJ: '塔吉克', TM: '土库曼', TN: '突尼斯', TO: '汤加', TR: '土耳其', TT: '特立尼达和多巴哥', TV: '图瓦卢', TZ: '坦桑尼亚', UA: '乌克兰', UG: '乌干达', US: '美国', UY: '乌拉圭', UZ: '乌兹别克',
|
|
344
|
+
VA: '梵蒂冈', VC: '圣文森特岛和格林纳达', VE: '委内瑞拉', VG: '维尔京群岛', VN: '越南', VU: '瓦努阿图', WO: '世界知识产权组织', WS: '萨摩亚', YD: '民主也门', YE: '也门', YU: '南斯拉夫', ZA: '南非', ZM: '赞比亚', ZR: '扎伊尔', ZW: '津巴布韦'
|
|
345
|
+
}[idNumber.substring(0, 2).toUpperCase()] || '';
|
|
346
|
+
}
|
|
347
|
+
|
|
348
|
+
/** BEGIN TEST CASES **/
|
|
349
|
+
var testCases = [
|
|
350
|
+
{
|
|
351
|
+
"type": "web",
|
|
352
|
+
"url": "https://kc.cnki.net/detail/article?id=+65CzYatVkPphjNI3d5Se3ZRZsD0epgTIFTgiN0KvS8TBpZBufJVc5nP8Gx0OnKo/2bYRuTrDL0PSLBa771nqEy2Yneose9abBCdZtTero7p21YEEzqcKCd1OHr2qZz0eAUTkFcZztUZNKEXCvGU+JACNavVFF/gOAJHy/F/e4OxtTwb9ksTG7IE3EB2bUwTHqGFof0rEVasRo0iMgXAihH7ZAfBsWEHbbo06SkBTS/Huq8B5UMvCwj9DJPJMeu8TX/pD9hILf6sHns1uCZ0+MkDgbawUN+uAeNOHFyS2Nw0g7kxPUquky0saJeCykXxsQPwQqPZax89VO0q5SlDtu/ETK6OSiVwtsHl3Dt5jHiIJ1WyzlOVaygqlayNTLkSye7LUHNCLKMZR1a6UxQVaw==",
|
|
353
|
+
"items": [
|
|
354
|
+
{
|
|
355
|
+
"itemType": "journalArticle",
|
|
356
|
+
"title": "非金属阳离子水系二次电池研究进展",
|
|
357
|
+
"creators": [
|
|
358
|
+
{
|
|
359
|
+
"firstName": "",
|
|
360
|
+
"lastName": "詹世英",
|
|
361
|
+
"creatorType": "author",
|
|
362
|
+
"fieldMode": 1
|
|
363
|
+
},
|
|
364
|
+
{
|
|
365
|
+
"firstName": "",
|
|
366
|
+
"lastName": "于东旭",
|
|
367
|
+
"creatorType": "author",
|
|
368
|
+
"fieldMode": 1
|
|
369
|
+
},
|
|
370
|
+
{
|
|
371
|
+
"firstName": "",
|
|
372
|
+
"lastName": "陈楠",
|
|
373
|
+
"creatorType": "author",
|
|
374
|
+
"fieldMode": 1
|
|
375
|
+
},
|
|
376
|
+
{
|
|
377
|
+
"firstName": "",
|
|
378
|
+
"lastName": "杜菲",
|
|
379
|
+
"creatorType": "author",
|
|
380
|
+
"fieldMode": 1
|
|
381
|
+
}
|
|
382
|
+
],
|
|
383
|
+
"date": "2021",
|
|
384
|
+
"DOI": "10.19799/j.cnki.2095-4239.2021.0228",
|
|
385
|
+
"abstractNote": "水系电池以其安全性高、环境友好、离子导电率高等优点,在规模储能领域展现出良好的应用前景。电荷载流子是二次电池关键的组成部分,决定着电池的机制和性能。相较于被广泛研究的金属离子作为载流子的二次电池,以非金属阳离子,如NH<sub>4</sub><sup>+</sup>、H<sup>+</sup>、H<sub>3</sub>O<sup>+</sup>,作为电荷传输载体的研究却相对较少。与金属离子作为载流子相比,非金属离子载流子通常具有更小的水合离子半径、更低的摩尔质量,因此往往展现出更高的扩散速率与较长的循环寿命,且其制造成本更为低廉。然而,开发适于储存非金属离子的电极材料仍面临诸多挑战。本文对近几年相关研究报道进行总结。首先,介绍并讨论了非金属离子与金属离子作为载流子之间的差异;随后,总结了基于质子、水合氢离子、铵根离子和其他非金属载流子水系电池的最新研究进展;重点分析了由非金属离子存储所诱发新的电池化学与反应机制。最后,综合分析,认为通过材料结构优化工程,并且扩大电解液的工作电压区间,是有效提升水系非金属离子电池性能的必要途径之一。",
|
|
386
|
+
"extra": "album: 工程科技Ⅱ辑\nCLC: TM912\ndownload: 502\nCNKICite: 3\nfilename: cnkx202106031\ndbname: CJFD\ndbcode: CJFDLAST2021",
|
|
387
|
+
"issue": "6",
|
|
388
|
+
"libraryCatalog": "CNKI TIKS",
|
|
389
|
+
"pages": "278-289",
|
|
390
|
+
"publicationTitle": "储能科学与技术",
|
|
391
|
+
"volume": "10",
|
|
392
|
+
"attachments": [
|
|
393
|
+
{
|
|
394
|
+
"title": "Full Text PDF",
|
|
395
|
+
"mimeType": "application/pdf"
|
|
396
|
+
}
|
|
397
|
+
],
|
|
398
|
+
"tags": [
|
|
399
|
+
{
|
|
400
|
+
"tag": "水系电池"
|
|
401
|
+
},
|
|
402
|
+
{
|
|
403
|
+
"tag": "电极材料"
|
|
404
|
+
},
|
|
405
|
+
{
|
|
406
|
+
"tag": "电池化学"
|
|
407
|
+
},
|
|
408
|
+
{
|
|
409
|
+
"tag": "结构优化"
|
|
410
|
+
},
|
|
411
|
+
{
|
|
412
|
+
"tag": "非金属载流子"
|
|
413
|
+
}
|
|
414
|
+
],
|
|
415
|
+
"notes": [
|
|
416
|
+
"<h1>Table of Contents</h1>1 质子水系电池<br/>2 水合氢离子水系电池<br/>3 铵根离子水系电池<br/>4 其他阳离子水系电池<br/>5 所面临的挑战及提升电池性能的方案<br/> 5.1 不同非金属阳离子载流子的对比<br/> 5.2 非金属阳离子水系电池发展的主要困境<br/>6 结论与展望"
|
|
417
|
+
],
|
|
418
|
+
"seeAlso": []
|
|
419
|
+
}
|
|
420
|
+
]
|
|
421
|
+
},
|
|
422
|
+
{
|
|
423
|
+
"type": "web",
|
|
424
|
+
"url": "https://kc.cnki.net/detail/article?id=PqMgm0hVeJ5JauEli4+7BBeKF5jC9KDmy6A3tGuMsNgXqS5jIBays+qruNPaD2zdRXM+yMPBLHGw9pwYiaCpVwn3Li6ScyEwRqdy1WQkSRTdSzjVG3WJ6E4w3z2XBDPKYWtTlYQbaNIh/hWSDQjgdeaygDOeSJKR3x0arJaD61N5WwO7wUuY7iTMwqysrrg6OtlDSn58sqLbqTf8/TQnl7Wn+lc/sUujJNWY46Kze/CtQlQubHTFKjo6aqLIfs4neLb1+PaCs6EqZ+Dlc5Smre2bnXlnOdeg4h8sEMzs0Y5pFbLxqeP2cdRUSkKP+34g5/ESfeIF22BQYCadwTy0Np5pcU+jQVkNIaDEqn1+Ucwc7HNmYqVxnICPKdR1W5kotS9u9yKZ+QodOX0qFFTyGlzkYSqkClXj+1iUKpiY0i9VdwK0u7+OVAwqFrFH66K4ra+aiBVuIG51NZ6zgWAOyuQf+KA5fjYmEF6KIjsn2aDY5OM30cbNZHmj8oLLxwT+BJONS4AjeB+qnFm9Etdwcg==",
|
|
425
|
+
"items": [
|
|
426
|
+
{
|
|
427
|
+
"itemType": "patent",
|
|
428
|
+
"title": "一种干湿球温度计",
|
|
429
|
+
"creators": [
|
|
430
|
+
{
|
|
431
|
+
"firstName": "",
|
|
432
|
+
"lastName": "戴聪",
|
|
433
|
+
"creatorType": "inventor",
|
|
434
|
+
"fieldMode": 1
|
|
435
|
+
},
|
|
436
|
+
{
|
|
437
|
+
"firstName": "",
|
|
438
|
+
"lastName": "傅立新",
|
|
439
|
+
"creatorType": "inventor",
|
|
440
|
+
"fieldMode": 1
|
|
441
|
+
},
|
|
442
|
+
{
|
|
443
|
+
"firstName": "",
|
|
444
|
+
"lastName": "汪迪文",
|
|
445
|
+
"creatorType": "inventor",
|
|
446
|
+
"fieldMode": 1
|
|
447
|
+
},
|
|
448
|
+
{
|
|
449
|
+
"firstName": "",
|
|
450
|
+
"lastName": "吴加胜",
|
|
451
|
+
"creatorType": "inventor",
|
|
452
|
+
"fieldMode": 1
|
|
453
|
+
},
|
|
454
|
+
{
|
|
455
|
+
"firstName": "",
|
|
456
|
+
"lastName": "陈善齐",
|
|
457
|
+
"creatorType": "inventor",
|
|
458
|
+
"fieldMode": 1
|
|
459
|
+
},
|
|
460
|
+
{
|
|
461
|
+
"firstName": "",
|
|
462
|
+
"lastName": "彭博",
|
|
463
|
+
"creatorType": "inventor",
|
|
464
|
+
"fieldMode": 1
|
|
465
|
+
},
|
|
466
|
+
{
|
|
467
|
+
"firstName": "",
|
|
468
|
+
"lastName": "采振东",
|
|
469
|
+
"creatorType": "inventor",
|
|
470
|
+
"fieldMode": 1
|
|
471
|
+
}
|
|
472
|
+
],
|
|
473
|
+
"issueDate": "2024-02-27",
|
|
474
|
+
"abstractNote": "本发明公布了一种干湿球温度计,它包括塔体,所述塔体的上方设置有风机,所述风机与电机电连接;所述风机的下方侧端依次设置有除水器和填料,所述填料的下端设置有集水箱,所述集水箱与循环管道连通,所述循环管道与水泵连通,所述循环管道的末端设置有喷嘴,所述喷嘴设置在百叶上;所述百叶的侧端设置有第一感温探头,所述循环管道上设置有第二感温探头。本发明提供一种干湿球温度计,设计巧妙,使用方便,保证读速的稳定性和准确性,可实时读取,并自动记录。",
|
|
475
|
+
"applicationNumber": "CN201711410931.9",
|
|
476
|
+
"assignee": "湖南元亨科技股份有限公司",
|
|
477
|
+
"country": "中国",
|
|
478
|
+
"extra": "Genre: 发明授权\nalbum: 工程科技Ⅰ辑\nCLC: G01N25/62;G01K11/02\nfilename: cn107966475b\ndbname: SCPD\ndbcode: SCPD202401",
|
|
479
|
+
"filingDate": "2017-12-23",
|
|
480
|
+
"patentNumber": "CN107966475B",
|
|
481
|
+
"place": "中国",
|
|
482
|
+
"rights": "1.一种干湿球温度计,它包括塔体(12),其特征在于,所述塔体(12)的上方设置有风机(2),所述风机(2)与电机(1)电连接;所述风机(2)的下方侧端依次设置有除水器(3)和填料(4),所述填料(4)的下端设置有集水箱(5),所述集水箱(5)与循环管道(7)连通,所述循环管道(7)与水泵(8)连通,所述循环管道(7)的末端设置有喷嘴(10),所述喷嘴(10)设置在百叶(9)上;所述百叶(9)的侧端设置有第一感温探头(11),所述循环管道(7)上设置有第二感温探头(6);所述喷嘴(10)与填料(4)横向方向上间距设置;所述填料(4)与除水器(3)横向方向间距设置;所述填料(4)的与集水箱(5)纵向方向间距设置。",
|
|
483
|
+
"attachments": [
|
|
484
|
+
{
|
|
485
|
+
"title": "Full Text PDF",
|
|
486
|
+
"mimeType": "application/pdf"
|
|
487
|
+
}
|
|
488
|
+
],
|
|
489
|
+
"tags": [],
|
|
490
|
+
"notes": [],
|
|
491
|
+
"seeAlso": []
|
|
492
|
+
}
|
|
493
|
+
]
|
|
494
|
+
},
|
|
495
|
+
{
|
|
496
|
+
"type": "web",
|
|
497
|
+
"url": "https://kc.cnki.net/detail/article?id=FKzHkzrFWW7fZf0m+nwTGhjHtlM0YqbV5Wh3kP0w53EhLxphaRV4DX7+90nw9cpcC3KCtodP+AWCSfDU/eyFqQHh8YJRIo9KvWt9tl52Ijqp3E1zY48MTFfycSEOr4bGNNwP0x6r9MD6OaxSOQQK4lVy2ZyQ+B0iCZYVi6IWJ4splGVbgIpkp4FaJJm+3h3QbS56SbtKjG1UqNFpHThj2zEP+Y3f3YxfQrs2YvZ4+1P78bJ+n0YdHSf89R/erQypnrN29xD//JOdPh/FdSTKGJgUVvFmLw7dIYllM+5dbQ91dEl70wHHetePdIO+jiAWK6+kbhw1crpRFMVN6JAbxXnffg9DCsJ68XjUJalX5vrqzP1ggWIvzuviGd89Nzia",
|
|
498
|
+
"items": [
|
|
499
|
+
{
|
|
500
|
+
"itemType": "standard",
|
|
501
|
+
"title": "信息与文献 参考文献著录规则",
|
|
502
|
+
"creators": [],
|
|
503
|
+
"date": "2015-05-15",
|
|
504
|
+
"extra": "applyDate: 2015-12-01\nCCS: A14\nICS: 01_140_20\nCNKICite: 235\nfilename: scsf00045714\ndbname: SCSF\ndbcode: SCSF",
|
|
505
|
+
"libraryCatalog": "CNKI TIKS",
|
|
506
|
+
"numPages": "28",
|
|
507
|
+
"number": "GB/T 7714-2015",
|
|
508
|
+
"attachments": [
|
|
509
|
+
{
|
|
510
|
+
"title": "Full Text PDF",
|
|
511
|
+
"mimeType": "application/pdf"
|
|
512
|
+
}
|
|
513
|
+
],
|
|
514
|
+
"tags": [],
|
|
515
|
+
"notes": [],
|
|
516
|
+
"seeAlso": []
|
|
517
|
+
}
|
|
518
|
+
]
|
|
519
|
+
},
|
|
520
|
+
{
|
|
521
|
+
"type": "web",
|
|
522
|
+
"url": "https://kc.cnki.net/detail/article?id=w3Kl2NZJ/QpT4d/p9IN68mPs+zLtTVZcpGdfVQ2y2etFO9lGmIC0lpGguty4oTMjdwYi5xEz5goGqBhu1pS26mVW7uBOugvVbBQ1eRM6EJNgdj+ImM89GUTtQpnr03bX5JUce3pQIZK5uwdhYHQLwVBY8mXVGGa24p+s8RWc4MQ/GJa98AuTmZ6yNsPvpVM50cofZdahiEdYXGjELWgztb5EWS62GhZ8j3Sd79MGmboA0JSsA44Qb19ElhAjdhBe1bqgbtZGQRaQoAMz2kke48z6CyXAz3SiTU76eYOtrmXxJYpdhjRWOcZGOGpvf5m1fM+ukmOD1h5eT8LYyeALuKGzimTiewh0LkLptUu1fI956g7SpM461+a7tGhPkZFnE1cpkrOSlyrVn7u0iE0NrLALDg3zEvOL0oGQscprEVM=",
|
|
523
|
+
"items": [
|
|
524
|
+
{
|
|
525
|
+
"itemType": "report",
|
|
526
|
+
"title": "航天微小型相机技术",
|
|
527
|
+
"creators": [
|
|
528
|
+
{
|
|
529
|
+
"firstName": "",
|
|
530
|
+
"lastName": "王新全",
|
|
531
|
+
"creatorType": "author",
|
|
532
|
+
"fieldMode": 1
|
|
533
|
+
},
|
|
534
|
+
{
|
|
535
|
+
"firstName": "",
|
|
536
|
+
"lastName": "汲玉卓",
|
|
537
|
+
"creatorType": "author",
|
|
538
|
+
"fieldMode": 1
|
|
539
|
+
},
|
|
540
|
+
{
|
|
541
|
+
"firstName": "",
|
|
542
|
+
"lastName": "夏玮玮",
|
|
543
|
+
"creatorType": "author",
|
|
544
|
+
"fieldMode": 1
|
|
545
|
+
},
|
|
546
|
+
{
|
|
547
|
+
"firstName": "",
|
|
548
|
+
"lastName": "于祥凤",
|
|
549
|
+
"creatorType": "author",
|
|
550
|
+
"fieldMode": 1
|
|
551
|
+
},
|
|
552
|
+
{
|
|
553
|
+
"firstName": "",
|
|
554
|
+
"lastName": "潘冬宁",
|
|
555
|
+
"creatorType": "author",
|
|
556
|
+
"fieldMode": 1
|
|
557
|
+
},
|
|
558
|
+
{
|
|
559
|
+
"firstName": "",
|
|
560
|
+
"lastName": "安佰秀",
|
|
561
|
+
"creatorType": "author",
|
|
562
|
+
"fieldMode": 1
|
|
563
|
+
},
|
|
564
|
+
{
|
|
565
|
+
"firstName": "",
|
|
566
|
+
"lastName": "戚君仪",
|
|
567
|
+
"creatorType": "author",
|
|
568
|
+
"fieldMode": 1
|
|
569
|
+
},
|
|
570
|
+
{
|
|
571
|
+
"firstName": "",
|
|
572
|
+
"lastName": "齐敏珺",
|
|
573
|
+
"creatorType": "author",
|
|
574
|
+
"fieldMode": 1
|
|
575
|
+
},
|
|
576
|
+
{
|
|
577
|
+
"firstName": "",
|
|
578
|
+
"lastName": "于翠荣",
|
|
579
|
+
"creatorType": "author",
|
|
580
|
+
"fieldMode": 1
|
|
581
|
+
},
|
|
582
|
+
{
|
|
583
|
+
"firstName": "",
|
|
584
|
+
"lastName": "于淏",
|
|
585
|
+
"creatorType": "author",
|
|
586
|
+
"fieldMode": 1
|
|
587
|
+
}
|
|
588
|
+
],
|
|
589
|
+
"date": "2015",
|
|
590
|
+
"abstractNote": "由青岛市光电工程技术研究院自主研究开发的航天微小型相机技术成果属于新一代信息技术产业,航空航天技术领域,主要应用于科学研究和技术服务业。 航天微小型相机技术是采用光学成像相机拍摄航天器太阳帆板展开、天线调整、机械臂动作等的动态图像,同时还可对航天器表面状况进行长期可视化监测,获取的图像资料可供技术人员进行深入研究,为监视航天器健康状况、改进太阳帆板设计、天线设计等提供非常有价值的资料,对提高航天器的安全性和可靠性意义重大。 该成果产品已进行了初样产品设计、生产和鉴定级试验,并获得了上海微小卫星应用中心的认可。暂未申请相关专利。",
|
|
591
|
+
"extra": "achievementType: 应用技术\nalbum: 工程科技Ⅱ辑\nfilename: snad000001698916\ndbname: SNAD\ndbcode: SNAD",
|
|
592
|
+
"institution": "青岛市光电工程技术研究院",
|
|
593
|
+
"libraryCatalog": "CNKI TIKS",
|
|
594
|
+
"reportType": "科技报告",
|
|
595
|
+
"attachments": [
|
|
596
|
+
{
|
|
597
|
+
"title": "Full Text PDF",
|
|
598
|
+
"mimeType": "application/pdf"
|
|
599
|
+
}
|
|
600
|
+
],
|
|
601
|
+
"tags": [
|
|
602
|
+
{
|
|
603
|
+
"tag": "大视场"
|
|
604
|
+
},
|
|
605
|
+
{
|
|
606
|
+
"tag": "微型"
|
|
607
|
+
},
|
|
608
|
+
{
|
|
609
|
+
"tag": "相机"
|
|
610
|
+
},
|
|
611
|
+
{
|
|
612
|
+
"tag": "航天"
|
|
613
|
+
}
|
|
614
|
+
],
|
|
615
|
+
"notes": [],
|
|
616
|
+
"seeAlso": []
|
|
617
|
+
}
|
|
618
|
+
]
|
|
619
|
+
},
|
|
620
|
+
{
|
|
621
|
+
"type": "web",
|
|
622
|
+
"url": "https://kc.cnki.net/detail/article?id=5VFSkZAor0u2+yuRSQNBKHCfvyZ61xE3d3RK0E1aAKglOjrPe3R7rVqqG4tOwfje2F9nOH6nbkr/64VkvkeA5xLrvwXc6NZ8QT13Qf0oRBhS0ibW8/9r9RdsrOJldflfRJGP0g8wDuI8oG/DuYtLbi7g0Dlq35tOUeVpt+MAYg2CZgIZMCLrgpk0AT9LvDoazJD8Fc0wP91ItwxwiqQDf8/nlsGYD566ygI48NOm6gkIzDliLOvIWLR3IMjdE1IjuDXhAcskBM9YYpnW5yLT9EGMAUmyerSGRhqnxPSRKrxzRZfFuBtVuNz33lER5E82YhBZxnq39wt+ErEae4moNN9oHulACKwhC1t97Zz331ztSSKcT4vTMHqdhj6U3qAvbD2h7i0YaGDuABXuTMjilFt7Fd6ZBEaO+OeG6NNB5ew9+pVtwgsOgr9LbT18ZcXfZ0zrL9mryePWl1AHsTrymQ==",
|
|
623
|
+
"items": [
|
|
624
|
+
{
|
|
625
|
+
"itemType": "journalArticle",
|
|
626
|
+
"title": "Ultrafast photocarrier dynamics in InAs/GaAs self-assembled quantum dots investigated via optical pump-terahertz probe spectroscopy",
|
|
627
|
+
"creators": [
|
|
628
|
+
{
|
|
629
|
+
"creatorType": "author",
|
|
630
|
+
"firstName": "Vince Paul",
|
|
631
|
+
"lastName": "Juguilon"
|
|
632
|
+
},
|
|
633
|
+
{
|
|
634
|
+
"creatorType": "author",
|
|
635
|
+
"firstName": "Deborah Anne",
|
|
636
|
+
"lastName": "Lumantas-Colades"
|
|
637
|
+
},
|
|
638
|
+
{
|
|
639
|
+
"creatorType": "author",
|
|
640
|
+
"firstName": "Karim",
|
|
641
|
+
"lastName": "Omambac"
|
|
642
|
+
},
|
|
643
|
+
{
|
|
644
|
+
"creatorType": "author",
|
|
645
|
+
"firstName": "Neil Irvin",
|
|
646
|
+
"lastName": "Cabello"
|
|
647
|
+
},
|
|
648
|
+
{
|
|
649
|
+
"creatorType": "author",
|
|
650
|
+
"firstName": "Inhee",
|
|
651
|
+
"lastName": "Maeng"
|
|
652
|
+
},
|
|
653
|
+
{
|
|
654
|
+
"creatorType": "author",
|
|
655
|
+
"firstName": "Chul",
|
|
656
|
+
"lastName": "Kang"
|
|
657
|
+
},
|
|
658
|
+
{
|
|
659
|
+
"creatorType": "author",
|
|
660
|
+
"firstName": "Armando",
|
|
661
|
+
"lastName": "Somintac"
|
|
662
|
+
},
|
|
663
|
+
{
|
|
664
|
+
"creatorType": "author",
|
|
665
|
+
"firstName": "Arnel",
|
|
666
|
+
"lastName": "Salvador"
|
|
667
|
+
},
|
|
668
|
+
{
|
|
669
|
+
"creatorType": "author",
|
|
670
|
+
"firstName": "Alexander De Los",
|
|
671
|
+
"lastName": "Reyes"
|
|
672
|
+
},
|
|
673
|
+
{
|
|
674
|
+
"creatorType": "author",
|
|
675
|
+
"firstName": "Chul-Sik",
|
|
676
|
+
"lastName": "Kee"
|
|
677
|
+
},
|
|
678
|
+
{
|
|
679
|
+
"creatorType": "author",
|
|
680
|
+
"firstName": "Elmer",
|
|
681
|
+
"lastName": "Estacio"
|
|
682
|
+
}
|
|
683
|
+
],
|
|
684
|
+
"date": "2024-04-05",
|
|
685
|
+
"DOI": "10.1088/1361-6463/ad1853",
|
|
686
|
+
"ISSN": "0022-3727, 1361-6463",
|
|
687
|
+
"abstractNote": "Abstract\n Optical pump-terahertz probe (OPTP) spectroscopy was performed to measure the lifetime of photogenerated carriers in the barrier and the wetting layer (WL) regions of an indium arsenide on gallium arsenide (InAs/GaAs) single-layer self-assembled quantum dot (QD) sample. A modified rate equation model of carrier dynamics was proposed where possible state-filling in both QD and WL is considered. Drude model fitting was also performed to extract the time-dependent plasma frequency and phenomenological scattering time from the terahertz transmission spectra. The results of the OPTP experiment show two prominent recombination processes that occur at different timescales after photoexcitation. These two processes were attributed to carrier recombination in the GaAs barrier and the quantum well-like states of the WL based on the fitted lifetimes. Calculations using the coupled differential rate equations were also able to replicate the experimental trend at low fluence. The lack of agreement between experimental data and numerical calculations at high optical fluence was mainly attributed to the possible saturation of the GaAs density of states. Lastly, the results of the parameter fitting for the plasma frequency and scattering time indicate a transition from the barrier to the WL recombination as the dominant carrier recombination mechanism within the time scale of the OPTP scan. This further lends credence to the proposed model for carrier dynamics in SAQD systems under state-filling conditions.",
|
|
688
|
+
"extra": "titleTranslation: 利用激光抽运-太赫兹波探测光谱研究了InAs/GaAs量子点中的超快光生载流子动力学\nfilename: sipd6e4c7b87ce0fec481b5e77688a7472ad\ndbname: WWJD\ndbcode: GARJ2021_4",
|
|
689
|
+
"issue": "14",
|
|
690
|
+
"journalAbbreviation": "J. Phys. D: Appl. Phys.",
|
|
691
|
+
"libraryCatalog": "DOI.org (Crossref)",
|
|
692
|
+
"pages": "145107",
|
|
693
|
+
"publicationTitle": "Journal of Physics D: Applied Physics",
|
|
694
|
+
"url": "https://iopscience.iop.org/article/10.1088/1361-6463/ad1853",
|
|
695
|
+
"volume": "57",
|
|
696
|
+
"attachments": [
|
|
697
|
+
{
|
|
698
|
+
"title": "Snapshot",
|
|
699
|
+
"mimeType": "text/html"
|
|
700
|
+
}
|
|
701
|
+
],
|
|
702
|
+
"tags": [],
|
|
703
|
+
"notes": [],
|
|
704
|
+
"seeAlso": []
|
|
705
|
+
}
|
|
706
|
+
]
|
|
707
|
+
},
|
|
708
|
+
{
|
|
709
|
+
"type": "web",
|
|
710
|
+
"url": "https://kc.cnki.net/detail/article?id=Op1GCewLIWRYlLTfiX8Q5Fs3+avBJeCFT3isEy3NjY324uV0FDSnxwahWfRqJ0mdYPkeOzsf9BaQcMtgC43PjfFT3QLcedoOSSrjCz0v1QhfzkABqJ2L1t/7HAjC4T4BmyfjD05ZPv8FVuQUqP8+LgpyIQNRa7DrkUbedVlD4JATkm2rRvyUNnX7fzqazlVDSrz3ZhNUofxT3MTYHsiT656tMLwnrJe8F3vDDsUG2sIAk4EZIw2Os+688k0fK60PW73WY8BMOq1VtH4PBcNCzgCZkgCiiEFCJpPQ34PUtgiBWVOJDrD3wZMyyLMc8JWfkSoxD/dEtPzm8GdECoaHe9CjtyDW4rZ//oiyor+ZRlEiV5D5LJnaXHdVaB+LO43E7U8kIvEHapiCkr8egmBJW4Ff7ZP9MA6Dz5lB8xIWrTU=",
|
|
711
|
+
"items": [
|
|
712
|
+
{
|
|
713
|
+
"itemType": "conferencePaper",
|
|
714
|
+
"title": "黑龙江黑土地保护性耕作效益影响因素研究",
|
|
715
|
+
"creators": [
|
|
716
|
+
{
|
|
717
|
+
"firstName": "",
|
|
718
|
+
"lastName": "张红平",
|
|
719
|
+
"creatorType": "author",
|
|
720
|
+
"fieldMode": 1
|
|
721
|
+
}
|
|
722
|
+
],
|
|
723
|
+
"date": "2024-01-26",
|
|
724
|
+
"DOI": "10.26914/c.cnkihy.2024.000547",
|
|
725
|
+
"abstractNote": "黑龙江省是我国重要的粮食生产基地,黑土地是其主要的农业资源。然而,长期的过度开垦、不合理的耕作方式和化肥施用等导致了黑土地的退化和流失,严重影响了粮食生产和生态安全。为了保护和恢复黑土地,实现可持续农业发展,保护性耕作作为一种有效的土壤管理措施,在黑龙江省得到了广泛的推广和应用。本文基于黑龙江省12个地级市的农户调查数据,运用多元回归模型,分析了保护性耕作对黑土地的效益影响,以及影响保护性耕作效益的主要因素。结果表明,保护性耕作能够显著提高黑土地的肥力、水分和有机质含量,降低土壤侵蚀和农业投入,增加粮食产量和收入。影响保护性耕作效益的主要因素包括农户的教育水平、经验、信息获取渠道、政策支持、技术培训、机械化水平等。本文为黑龙江省推进保护性耕作提供了理论依据和政策建议。",
|
|
726
|
+
"conferenceName": "东北四省区2024年水利学术年会暨水利先进技术(产品)推介会",
|
|
727
|
+
"extra": "album: 农业科技;经济与管理科学\nCLC: F323.211\ndownload: 46\nCNKICite: 0\nfilename: bwts202401001034\ndbname: CPFD\ndbcode: CPFDTEMP",
|
|
728
|
+
"libraryCatalog": "CNKI TIKS",
|
|
729
|
+
"pages": "249-257",
|
|
730
|
+
"place": "中国黑龙江哈尔滨",
|
|
731
|
+
"attachments": [
|
|
732
|
+
{
|
|
733
|
+
"title": "Full Text PDF",
|
|
734
|
+
"mimeType": "application/pdf"
|
|
735
|
+
}
|
|
736
|
+
],
|
|
737
|
+
"tags": [
|
|
738
|
+
{
|
|
739
|
+
"tag": "保护性耕作"
|
|
740
|
+
},
|
|
741
|
+
{
|
|
742
|
+
"tag": "多元回归模型"
|
|
743
|
+
},
|
|
744
|
+
{
|
|
745
|
+
"tag": "黑土地"
|
|
746
|
+
}
|
|
747
|
+
],
|
|
748
|
+
"notes": [
|
|
749
|
+
"<h1>Table of Contents</h1>1 研究的背景及意义<br/> 1.1 研究背景<br/> 1.2 研究的意义<br/>2 国内外研究现状<br/> 2.1 国外研究现状<br/> 2.2 国内研究现状<br/>3 研究内容<br/>4 概念界定和理论基础<br/> 4.1 保护性耕地技术<br/> 4.2 理论基础<br/> 4.2.1 可持续发展理论<br/> 4.2.2 规模经济理论<br/> 4.2.3 农户行为理论<br/>5 保护性耕作的主要技术<br/> 5.1 黑龙江省黑土地保护性耕作模式<br/> 5.2“梨树模式”保护性耕作效益分析<br/> 5.2.1 经济效益<br/>6 问卷设计与数据来源<br/> 6.1 构建模型<br/> 6.2 理论分析与变量选取<br/> 6.3 结果分析<br/>7 结论<br/> 7.1 对策建议及研究不足"
|
|
750
|
+
],
|
|
751
|
+
"seeAlso": []
|
|
752
|
+
}
|
|
753
|
+
]
|
|
754
|
+
},
|
|
755
|
+
{
|
|
756
|
+
"type": "web",
|
|
757
|
+
"url": "https://kc.cnki.net/detail/article?id=9WYvzzV69PrybFdGzD1gibgTrPpyn5AEqWETuS8ZZSZwLdA0FP70tfmOX2wlLvDqZLXKMEfPMdkW3o31bIAFxioPM17+Swsn39NqKkrDoC8+Wh2WNNHaUn5y5g4u9V5f/aVaeGRmni8k4hDLYK6kOSJyVmVYaFPnlsjYkkGSVbnXUZFChS4FWdZxVen4vr17VER04ALsX++bFneRQeqQlNxbRluqjU5HR4UmHtlkuKTAWfQvpPe2otBKzNhYW0wW3E5g/6K55U1UAD3pMDlQOW46QxLZJ0UvKLpvMCcFvEzOIEVIRAfYqZHq5XvDBjQ8bVstYOkiPeJx9ZY2Jmw3CNddIGuJ8ETKR5v++QLRsesZN2yxh8gB3KN7xJvlpCEXh8SgNKwtUSGyy1DLcVNFIbq66Aqo2Nv5oHFcNb1b5qk=",
|
|
758
|
+
"items": [
|
|
759
|
+
{
|
|
760
|
+
"itemType": "thesis",
|
|
761
|
+
"title": "多元主体共治背景下社会资本的环境效应研究",
|
|
762
|
+
"creators": [
|
|
763
|
+
{
|
|
764
|
+
"firstName": "",
|
|
765
|
+
"lastName": "郭金",
|
|
766
|
+
"creatorType": "author",
|
|
767
|
+
"fieldMode": 1
|
|
768
|
+
},
|
|
769
|
+
{
|
|
770
|
+
"firstName": "",
|
|
771
|
+
"lastName": "钟若愚",
|
|
772
|
+
"creatorType": "contributor",
|
|
773
|
+
"fieldMode": 1
|
|
774
|
+
}
|
|
775
|
+
],
|
|
776
|
+
"abstractNote": "环境可持续发展描绘了人类与自然和谐相处的美好形象,是人类发展的共同目标。然而,我们目前仍然面临一些挑战,包括气候变化、臭氧层损耗、生态退化以及生物多样性减少等环境问题。进入新时代,人民群众对优美生态环境的需要已成为社会主要矛盾的重要方面,党的二十大再次强调必须牢固树立和践行绿色理念,站在人与自然和谐共生的高度谋划发展。长期以来,我国的环境治理主要仰赖政府力量,但常常存在政府机制和市场机制双重失效的情况,生态环境保护事业的主体能力不足、缺乏协作。而社会资本强调人际间的信任、合作和沟通的重要性,恰恰促成了社会治理机制的达成,是突破集体行动困境的重要利器。那么,在多元主体共治背景下社会资本能否有效改善环境,成为突破环境治理困境的新出路,在现有研究中并未得到应有的关注,亦是本文的主旨所在。本研究在多元主体共治的环境治理大背景下,立足社会资本的宏观和微观视角,致力于厘清社会资本的环境效应,探索突破环境治理困境的有效路径。基于已有研究和经济学、社会学交叉领域的相关理论,文章首先从区域、企业和公众三个层面构建了社会资本影响环境的分析框架,以及其中的作用机制。进一步地,利用2010-2020年30个省份的面板数据、2011-2021年沪深A股上市公司的面板数据以及CGSS2018年社会综合调查数据,在理论研究的基础上,通过多种计量经济模型考察了社会资本的环境效应与作用机制。主要内容与结论如下:(1)运用文献梳理和理论推演的方法对社会资本、区域环境效率、企业环境责任和公众环境参与的关系进行了理论研究。本文通过梳理文献在对核心概念进行界定的基础上,系统回顾了嵌入-社会网络与社会资本理论、理性行动理论和重复博弈理论。进一步地,依据上述理论构建了社会资本影响环境的分析框架,及其作用机制框架,以此为后续地研究开展提供坚实地理论指导和路径指引。(2)基于社会资本的宏观视角,利用logistic模型实证检验社会资本对区域环境效率的影响,技术开发阶段和成果转化阶段的中介效应以及区域政府治理质量差异的调节效应。结果表明,社会资本对区域环境效率具有显著影响,且其对技术进步的影响更大。其次,创新水平在社会资本与环境效率的关系中起中介作用,相较于成果转化阶段(16.01%),技术开发阶段(23.45%)发挥地中介影响更为明显,侧面说明我国在科技成果转移转化方面还有待加强,要增强源头创新能力,畅通创新资源流动,强化技术与市场的联动。此外,社会资本作为非正式制度与政府管制的正式制度互为补充,高政府治理质量的区域更能从社会资本的积累中受益,且缺乏政府管制时,非正式制度的补充作用难以有效发挥。(3)基于社会资本的微观视角,利用双向固定效应模型和工具变量法实证检验企业社会资本对企业环境责任的影响,并进一步分析了政府行为的作用。结果表明,企业社会资本对企业环境履责具有显著的正向引导作用,从企业社会资本的三个维度来看,拥有政治关联的企业的环境履责积极性更高,董事网络关系和社会联系越丰富占据信息优势的企业环境履责情况越好。其次,政府行为的作用分析表明,企业社会资本的提升将强化政府补助等相关正式制度对企业的引导作用,有助于企业获得更多的政府资源支持,进而推动企业绿色经营。此外,异质性分析发现,社会资本对企业环境责任的影响存在企业层面和区域层面的异质性。(4)基于社会资本的微观视角,根据微观调查数据的不同特点,利用有序logit模型和左归并Tobit模型实证检验社会资本对公众环境参与的影响,及经济收入水平与环境认知能力的调节作用。结果表明,社会资本对我国公众环境参与具有积极的正向影响,不同维度的社会资本对公众环境参与的影响程度不同,但均具有积极作用。其次,对环境问题以及如何解决这些问题的深入认知,使公众更具有主人翁意识和社会责任感,增加了个人采取环保行动的可能性。随着收入水平的提高,个人环境参与意愿提高,但用于环境保护的边际支付意愿下降;且没有社会资本时,经济收入状况的改善并不能促进公众的环境参与。此外,异质性分析发现,社会资本的公众环境参与效应在东部地区要优于中西部地区,高收入群体相较低收入群体对环境保护的需求更大,但自评家庭经济状况远高于平均水平时,并不利于公众环境参与,这表明控制收入差距,提高中产阶级比例有利于改善社会环境偏好。(5)综合以上分析及检验,结合我国实际情况,从加强社会网络建设、构筑社会信任、形成互惠规范、重视社会资本和政府治理质量之间的匹配衔接、坚持创新驱动、提升环境认知水平、缩小贫富差距几方面提出建议。本文在以下方面进行了创新性尝试:一是结合经济学、社会学交叉领域的相关理论,把社会资本纳入环境问题的研究框架,丰富了现有研究环境问题的视角,完善了环境治理体系的理论框架。二是从多元主体共同治理这一重要环境治理体系构建层面出发,结合对已有研究成果的梳理归纳和总结,构建了社会资本的环境效应分析框架,从可持续发展整体框架入手提出了包含区域、企业和居民个人的社会资本环境效应分析框架,丰富了关于非正式制度经济后果的研究。三是使用多源异构数据从社会资本的宏观和微观角度实证考察了社会资本的环境效应,针对环境治理主体的异质性,基于社会资本的不同分析层次测度社会资本指标,分别考察了社会资本对区域环境效率、企业环境责任和公众环境参与的影响及其作用机制,增强了社会资本分析的可行性,有助于后续实证分析的完整性、结果的稳健性以及研究的深化与扩展。",
|
|
777
|
+
"extra": "DOI: 10.27283/d.cnki.gsxcc.2023.001649\nmajor: 人口、资源与环境经济学\nalbum: 工程科技Ⅰ辑;经济与管理科学\nCLC: X321;F832.51\ndownload: 393\nCNKICite: 0\nfilename: 1024309183.nh\ndbname: CDFD\ndbcode: CDFDTEMP",
|
|
778
|
+
"libraryCatalog": "CNKI TIKS",
|
|
779
|
+
"numPages": "160",
|
|
780
|
+
"thesisType": "硕士学位论文",
|
|
781
|
+
"university": "山西财经大学",
|
|
782
|
+
"attachments": [
|
|
783
|
+
{
|
|
784
|
+
"title": "Full Text PDF",
|
|
785
|
+
"mimeType": "application/pdf"
|
|
786
|
+
}
|
|
787
|
+
],
|
|
788
|
+
"tags": [
|
|
789
|
+
{
|
|
790
|
+
"tag": "多元主体共治"
|
|
791
|
+
},
|
|
792
|
+
{
|
|
793
|
+
"tag": "环境效应"
|
|
794
|
+
},
|
|
795
|
+
{
|
|
796
|
+
"tag": "社会资本"
|
|
797
|
+
},
|
|
798
|
+
{
|
|
799
|
+
"tag": "非正式制度"
|
|
800
|
+
}
|
|
801
|
+
],
|
|
802
|
+
"notes": [
|
|
803
|
+
"<h1>Table of Contents</h1>摘要<br/>ABSTRACT<br/>第1章 导论<br/> 1.1 研究背景及意义<br/> 1.1.1 研究背景<br/> 1.1.2 研究意义<br/> 1.2 研究内容与研究方法<br/> 1.2.1 研究内容<br/> 1.2.2 研究方法<br/> 1.3 研究思路及技术路线<br/> 1.4 研究的创新之处<br/>第2章 文献综述<br/> 2.1 社会资本相关研究<br/> 2.1.1 社会资本的起源与发展<br/> 2.1.2 社会资本的分析层次<br/> 2.1.3 社会资本的测度<br/> 2.2 区域环境效率相关研究<br/> 2.2.1 区域环境效率的界定<br/> 2.2.2 区域环境效率的影响因素<br/> 2.2.3 区域环境效率的测度<br/> 2.2.4 社会资本与区域环境效率<br/> 2.3 企业环境责任相关研究<br/> 2.3.1 企业环境责任的界定<br/> 2.3.2 企业环境责任的影响因素<br/> 2.3.3 社会资本与企业环境责任的相关研究<br/> 2.4 公众环保行为相关研究<br/> 2.4.1 公众亲环境行为的界定<br/> 2.4.2 公众环保行为的影响因素<br/> 2.4.3 社会资本与公众环保行为<br/> 2.5 文献述评<br/>第3章 社会资本对环境影响的理论分析<br/> 3.1 相关概念界定<br/> 3.1.1 社会资本<br/> 3.1.2 多元主体共治<br/> 3.1.3 环境效应<br/> 3.2 理论基础<br/> 3.2.1 嵌入、社会网络与社会资本理论<br/> 3.2.2 理性行动理论<br/> 3.2.3 重复博弈理论<br/> 3.3 分析框架<br/> 3.3.1 宏观社会资本影响区域环境效率的机制分析<br/> 3.3.2 企业社会资本影响企业环境履责的机制分析<br/> 3.3.3 个体社会资本影响公众环境参与的机制分析<br/> 3.4 本章小结<br/>第4章 区域社会资本对区域环境效率的影响分析<br/> 4.1 研究设计<br/> 4.1.1 数据来源与样本选择<br/> 4.1.2 变量设定<br/> 4.1.3 模型构建<br/> 4.2 核心变量的测度与时空特征<br/> 4.2.1 社会资本的测度<br/> 4.2.2 环境效率的测度<br/> 4.3 社会资本对区域环境效率的基准回归分析<br/> 4.3.1 数据描述性统计<br/> 4.3.2 基准回归分析<br/> 4.3.3 社会资本的不同维度与区域环境效率<br/> 4.3.4 稳健性检验<br/> 4.4 创新水平与政府治理质量的作用分析<br/> 4.4.1 创新水平的中介效应检验<br/> 4.4.2 政府治理质量的调节效应检验<br/> 4.5 本章小结<br/>第5章 企业社会资本对企业环境履责的影响分析<br/> 5.1 研究设计<br/> 5.1.1 数据来源与样本选择<br/> 5.1.2 变量设定<br/> 5.1.3 模型构建<br/> 5.2 社会资本对企业环境责任的基准回归分析<br/> 5.2.1 数据描述性统计<br/> 5.2.2 基准回归分析<br/> 5.2.3 稳健性检验<br/> 5.3 政府行为的作用分析<br/> 5.4 异质性分析<br/> 5.4.1 按所有权性质划分国有企业与非国有企业<br/> 5.4.2 按行业污染程度划分重污染企业与其他企业<br/> 5.4.3 按区域市场化程度划分高低<br/> 5.5 本章小结<br/>第6章 个体社会资本对公众环境参与的影响分析<br/> 6.1 研究设计<br/> 6.1.1 数据来源与样本选择<br/> 6.1.2 变量设定<br/> 6.1.3 模型构建<br/> 6.2 社会资本对公众环境参与的基准回归分析<br/> 6.2.1 数据描述性统计<br/> 6.2.2 基准回归分析<br/> 6.2.3 社会资本的不同维度与公众环境参与<br/> 6.2.4 稳健性检验<br/> 6.3 经济地位和环境认知能力的作用分析<br/> 6.3.1 经济收入水平的调节效应检验<br/> 6.3.2 环境认知能力的调节效应检验<br/> 6.4 异质性分析<br/> 6.4.1 按地理区域划分东中西部<br/> 6.4.2 按自评家庭经济状况划分高低<br/> 6.5 本章小结<br/>第7章 结论与政策建议<br/> 7.1 主要研究结论<br/> 7.2 主要政策启示<br/> 7.2.1 加强社会网络建设,疏通人际流、信息流、商品流等社会联通渠道<br/> 7.2.2 提升市场化水平,构筑社会信任<br/> 7.2.3 依托社区功能,形成互惠规范<br/> 7.2.4 重视社会资本和政府治理质量之间的匹配衔接<br/> 7.2.5 发展绿色技术,坚持创新驱动战略<br/> 7.2.6 重视绿色教育和生态文化建设,提升环境认知水平<br/> 7.2.7 扩大中等收入群体规模,缩小贫富差距<br/> 7.3 进一步研究的方向<br/>参考文献"
|
|
804
|
+
],
|
|
805
|
+
"seeAlso": []
|
|
806
|
+
}
|
|
807
|
+
]
|
|
808
|
+
},
|
|
809
|
+
{
|
|
810
|
+
"type": "web",
|
|
811
|
+
"url": "https://kc.cnki.net/detail/article?id=cS11hQr8Vus+4Le7JPsyKJi8D96XMZz4HcuXe8olGz+qzrr9rYnYZfFqX90N9Bw6YfL1UMjNDcxat7WHWidOoGRe1FBeFJXW6snj+xBa8VdkOHOa27GSw7OjKmtmM6oKyXUmNhC3btzgv/5NlajVA03AiVlHu7CwwlkdIy2BemIXfwpAUyFI0iCf7CXhDzv7WloRphAhjDU7RAVUyQCJCKAftcw4eyVy7vzLXA1mkM1Lb0kCUNt5zzb1SpEQLITLZSAm/P3xKKp1ME1Bv4eLkVWCXjzH747tHmuDAAsJUuoGXCnre/MoyvjxaZ9uF5Fn9rLY173n015Ga+cRN5j0F9ciAaoZVMDkutsle4NuUaXMjgJpgSuCyU4avmlvU2f9viDlkx/sCFkIHSlQVCkR0Qof5fcvLzbkUU8Hm8NdSog=",
|
|
812
|
+
"items": [
|
|
813
|
+
{
|
|
814
|
+
"itemType": "thesis",
|
|
815
|
+
"title": "基层廉政建设的问题与对策研究",
|
|
816
|
+
"creators": [
|
|
817
|
+
{
|
|
818
|
+
"firstName": "",
|
|
819
|
+
"lastName": "关莹",
|
|
820
|
+
"creatorType": "author",
|
|
821
|
+
"fieldMode": 1
|
|
822
|
+
},
|
|
823
|
+
{
|
|
824
|
+
"firstName": "",
|
|
825
|
+
"lastName": "田玉麒",
|
|
826
|
+
"creatorType": "contributor",
|
|
827
|
+
"fieldMode": 1
|
|
828
|
+
}
|
|
829
|
+
],
|
|
830
|
+
"abstractNote": "基层廉政建设是全面推进党风廉政建设工作的重要环节,基层党风政风是否清正廉洁,既影响着基层党组织的公信力,也影响着党的群众基础。因此,如何深入推进基层廉政建设成为学界关注的重点问题。本文以J市L街道为研究对象,调查研究了L街道廉政建设现状,重点分析了L街道廉政建设具体措施:一是加强廉政教育;二是建立健全制度;三是强化监督执纪;四是做实做细巡察整改工作;五是发挥基层监督“前哨”作用。研究发现,L街道虽取得了一定的成绩,但仍存在着廉政生态建设受外部因素的侵扰、廉政制度建设不完善、廉政文化建设成效不明显、廉政监督机制不健全的问题,阻碍了基层廉政建设的发展。上述问题之所以产生,是由于廉政生态建设内生动力不足、廉政制度建设基础薄弱、廉政文化作用发挥不充分、廉政监督责任落实不到位的原因导致。为此,本文依托腐败治理理论和权力制衡理论,在国内外学者研究的基础上,结合实际,提出了适合L街道廉政建设的对策建议:一要汇聚多元监督力量,构建健康廉政生态;二要完善廉政制度建设,夯实管理基础;三要创新工作思路,强化廉政文化建设;四要聚焦监督重点,强化责任落实。街道作为推进基层廉政建设的重要阵地,本文对以J市L街道为代表的基层党组织廉政建设现状进行研究,希望能够为基层廉政建设提供一些有益的思路和建议,从而为推进基层治理提供坚强保障。",
|
|
831
|
+
"extra": "DOI: 10.27162/d.cnki.gjlin.2023.007863\nmajor: 公共管理硕士(专业学位)\nalbum: 社会科学Ⅰ辑\nCLC: D262.6;D630\ndownload: 51\nCNKICite: 0\nfilename: 1023929507.nh\ndbname: CMFD\ndbcode: CMFDTEMP",
|
|
832
|
+
"libraryCatalog": "CNKI TIKS",
|
|
833
|
+
"numPages": "50",
|
|
834
|
+
"thesisType": "博士学位论文",
|
|
835
|
+
"university": "吉林大学",
|
|
836
|
+
"attachments": [
|
|
837
|
+
{
|
|
838
|
+
"title": "Full Text PDF",
|
|
839
|
+
"mimeType": "application/pdf"
|
|
840
|
+
}
|
|
841
|
+
],
|
|
842
|
+
"tags": [
|
|
843
|
+
{
|
|
844
|
+
"tag": "基层廉政建设"
|
|
845
|
+
},
|
|
846
|
+
{
|
|
847
|
+
"tag": "廉政制度建设"
|
|
848
|
+
},
|
|
849
|
+
{
|
|
850
|
+
"tag": "廉政文化建设"
|
|
851
|
+
},
|
|
852
|
+
{
|
|
853
|
+
"tag": "廉政生态建设"
|
|
854
|
+
},
|
|
855
|
+
{
|
|
856
|
+
"tag": "廉政监督机制"
|
|
857
|
+
}
|
|
858
|
+
],
|
|
859
|
+
"notes": [
|
|
860
|
+
"<h1>Table of Contents</h1>中文摘要<br/>abstract<br/>绪论<br/> (一)研究背景<br/> (二)选题意义<br/> (三)国内外研究现状<br/> 1.国外研究现状<br/> 2.国内研究现状<br/> 3.研究现状评述<br/> (四)研究内容<br/> (五)研究方法<br/> (六)论文的创新点与不足<br/>一、基本概念与理论基础<br/> (一)基本概念<br/> 1.廉政<br/> 2.廉政建设<br/> 3.基层廉政建设<br/> 4.腐败<br/> (二)理论基础<br/> 1.腐败治理理论<br/> 2.权力制衡理论<br/>二、J市L街道廉政建设的实践举措<br/> (一)J市L街道简介<br/> (二)J市L街道廉政建设的具体措施<br/> 1.以廉政教育为先导,巩固宗旨意识<br/> 2.以建立健全制度为依托,抓好源头预防<br/> 3.以强化监督执纪为根本保障,持续正风肃纪反腐<br/> 4.做实做细巡察整改工作<br/> 5.建立联动机制,充分发挥基层监督“前哨”作用<br/>三、J市L街道廉政建设存在的问题及成因<br/> (一)J市L街道廉政建设存在的问题<br/> 1.廉政生态建设受外部因素侵扰<br/> 2.廉政制度建设不完善<br/> 3.廉政文化建设成效不明显<br/> 4.廉政监督机制不健全<br/> (二)J市L街道廉政建设存在的问题成因<br/> 1.廉政生态建设内生动力不足<br/> 2.廉政制度建设基础薄弱<br/> 3.廉政文化作用发挥不充分<br/> 4.廉政监督责任落实不到位<br/>四、J市L街道推进廉政建设的对策建议<br/> (一)汇聚多元监督力量,构建健康廉政生态<br/> 1.夯实监督基础,提升内生动力<br/> 2.加强部门联动,形成监督合力<br/> 3.发动群众监督,织密监督网络<br/> (二)完善廉政制度建设,夯实管理基础<br/> 1.强化制度体系建设,提升工作质效<br/> 2.强化制度意识,提高制度执行力<br/> (三)创新工作思路,强化廉政文化建设<br/> 1.强化教育引导,提高思想认识<br/> 2.夯实文化阵地建设,打响社区文化品牌<br/> 3.汲取传统文化精髓,丰富廉政文化内涵<br/> (四)聚焦监督重点,强化责任落实<br/> 1.找准定位,加强同级监督<br/> 2.把好选拔任用关口,优化干部队伍<br/> 3.培养调查研究能力,提高综合素质<br/> 4.精准运用“四种形态”,提升监督问责成效<br/>结论<br/>参考文献"
|
|
861
|
+
],
|
|
862
|
+
"seeAlso": []
|
|
863
|
+
}
|
|
864
|
+
]
|
|
865
|
+
},
|
|
866
|
+
{
|
|
867
|
+
"type": "web",
|
|
868
|
+
"url": "https://kc.cnki.net/detail/article?id=Gdq2ZkEbySCS+jbPS+bIIC2fANueD5Ni3aplDcbimeEu7EOA4txEXGSFdlBErYaYXTrFKQdSPLQmrdZxdgPO/q765H6Ic9tzV2gTaHAEQa10/NxYYfWXJUichUdVUkQIS2Cg4USnynfjy4mZRNL8xHdkSWYEZxDIy1Nng13KaXXJCtheZCp623j8l8a1Q5ePv3Q2jBKtXnvBVstPRcxEMw5i3yJhjloiy7KQUKJER3+IpvdQ4IhN6duID+Ro0wgXm+5yoRHYZc2epmC+yE9uvkPg2tMh7I8YS4Kf//d59AITTMk6wOi6ZwV8bCFi8KYHADyQWlDzw0P2uGTtcpiL3iJjxrsaXRdahKn/m+EXHI3iZ4iVHbnYmjV77UhIYIhMwc+NPGeOXrEsvrXgA601XO1YHRJ4Eqwgo69KNi6x36g=",
|
|
869
|
+
"items": [
|
|
870
|
+
{
|
|
871
|
+
"itemType": "newspaperArticle",
|
|
872
|
+
"title": "粤港澳大湾区国际科技创新中心:“合聚变”激发澎湃科创力量",
|
|
873
|
+
"creators": [
|
|
874
|
+
{
|
|
875
|
+
"firstName": "",
|
|
876
|
+
"lastName": "叶青",
|
|
877
|
+
"creatorType": "author",
|
|
878
|
+
"fieldMode": 1
|
|
879
|
+
},
|
|
880
|
+
{
|
|
881
|
+
"firstName": "",
|
|
882
|
+
"lastName": "罗云鹏",
|
|
883
|
+
"creatorType": "author",
|
|
884
|
+
"fieldMode": 1
|
|
885
|
+
},
|
|
886
|
+
{
|
|
887
|
+
"firstName": "",
|
|
888
|
+
"lastName": "龙跃梅",
|
|
889
|
+
"creatorType": "author",
|
|
890
|
+
"fieldMode": 1
|
|
891
|
+
}
|
|
892
|
+
],
|
|
893
|
+
"date": "2024-03-07",
|
|
894
|
+
"abstractNote": "“2019年2月,《粤港澳大湾区发展规划纲要》正式发布。4月,我和香港科技大学霍英东研究院(以下简称霍英东研究院)签了合同,决定来到广州南沙,在粤港澳大湾区工作。”霍英东研究院建筑物能源研究中心经理朱龙潜日前对记者说。\n从香港科技大学取得博士学位后,朱",
|
|
895
|
+
"extra": "album: 经济与管理科学\ndownload: 13\nfilename: kjrb202403070081\ndbname: CCND\ndbcode: CCNDTEMP",
|
|
896
|
+
"libraryCatalog": "CNKI TIKS",
|
|
897
|
+
"pages": "8",
|
|
898
|
+
"publicationTitle": "科技日报",
|
|
899
|
+
"attachments": [
|
|
900
|
+
{
|
|
901
|
+
"title": "Full Text PDF",
|
|
902
|
+
"mimeType": "application/pdf"
|
|
903
|
+
}
|
|
904
|
+
],
|
|
905
|
+
"tags": [
|
|
906
|
+
{
|
|
907
|
+
"tag": "科技创新中心"
|
|
908
|
+
},
|
|
909
|
+
{
|
|
910
|
+
"tag": "粤港澳"
|
|
911
|
+
},
|
|
912
|
+
{
|
|
913
|
+
"tag": "规划纲要"
|
|
914
|
+
}
|
|
915
|
+
],
|
|
916
|
+
"notes": [],
|
|
917
|
+
"seeAlso": []
|
|
918
|
+
}
|
|
919
|
+
]
|
|
920
|
+
},
|
|
921
|
+
{
|
|
922
|
+
"type": "web",
|
|
923
|
+
"url": "https://kc.cnki.net/detail/article?id=/eXpHEjRa97GRlewO5DNtaTO9brQqdLLdAxnePgvkmnHWm0YymI1blt6bfqWsh8e3UAwBTzEzQpvejpQgoPmiqCv8fTMbTjAOjJYsjHr3SizI/xsM5evxHpLvD/0mGY6ewCfWZZPp9POmDX2aDuBOgwY4Ied+2PdQo9m9AKzz1EVpiT+Nj/WBxozWwmxYuptlT/DPAgAiv5TSuXQawbFcedyv/QEYqOP6mym4s3x8o17kOHE/mxUIPh7dx0oZyMo/fWzTm8g5Q0uvGd9RgmEkEOM41Cb1dNdcQ80+MFB5dzcXCIOKl9haAzUW4btXZEYyAKes2oFpN6oqG5lP+zdX1suWwX8YS1bejFwCW0R49iTloAcnIyVrK9ZzrrqgdeoFeN900W0n1a4rqOvNcc4gA==",
|
|
924
|
+
"items": [
|
|
925
|
+
{
|
|
926
|
+
"itemType": "bookSection",
|
|
927
|
+
"title": "6-2 煤炭生产、外调、使用平衡表",
|
|
928
|
+
"creators": [
|
|
929
|
+
{
|
|
930
|
+
"firstName": "",
|
|
931
|
+
"lastName": "王育民",
|
|
932
|
+
"creatorType": "author",
|
|
933
|
+
"fieldMode": 1
|
|
934
|
+
}
|
|
935
|
+
],
|
|
936
|
+
"date": "2023",
|
|
937
|
+
"bookTitle": "山西统计年鉴",
|
|
938
|
+
"extra": "DOI: 10.42111/y.cnki.yuyty.2023.000115\nCLC: F426.21\ndownload: 6\nfilename: n2023110026000127\ndbname: CYFD\ndbcode: CYFD2023",
|
|
939
|
+
"libraryCatalog": "CNKI TIKS",
|
|
940
|
+
"pages": "156",
|
|
941
|
+
"attachments": [
|
|
942
|
+
{
|
|
943
|
+
"title": "Full Text PDF",
|
|
944
|
+
"mimeType": "application/pdf"
|
|
945
|
+
}
|
|
946
|
+
],
|
|
947
|
+
"tags": [],
|
|
948
|
+
"notes": [],
|
|
949
|
+
"seeAlso": []
|
|
950
|
+
}
|
|
951
|
+
]
|
|
952
|
+
},
|
|
953
|
+
{
|
|
954
|
+
"type": "web",
|
|
955
|
+
"url": "https://kc.cnki.net/detail/article?id=jtlinruh2VLDhc+I04vrNixixCRS7WU5nrX8JTgd5kPqgYAKsT9hjQEyTlAZnivW7L8AuhHPNUNV9tBof+7aDZ0Yt4jiyE4mSd25ml0ApXhQwEtbJ3oJvGUCQbCdMazKlzFcZB+F4F7jqz8ai9In0XQU0W62wqH8qrznSLzFO3MdHE0RQZg6VnEgWsxzhgc+UK5JbU4B2qLBo7hu+a+5iqgdZ4iUEQOPveDMoGnk9l8=",
|
|
956
|
+
"items": [
|
|
957
|
+
{
|
|
958
|
+
"itemType": "statute",
|
|
959
|
+
"nameOfAct": "中华人民共和国公司法",
|
|
960
|
+
"creators": [
|
|
961
|
+
{
|
|
962
|
+
"firstName": "",
|
|
963
|
+
"lastName": "全国人民代表大会常务委员会",
|
|
964
|
+
"creatorType": "author",
|
|
965
|
+
"fieldMode": 1
|
|
966
|
+
}
|
|
967
|
+
],
|
|
968
|
+
"dateEnacted": "2023-12-29",
|
|
969
|
+
"abstractNote": "第一章 总 则\n第一条 为了规范公司的组织和行为,保护公司、股东、职工和债权人的合法权益,完善中国特色现代企业制度,弘扬企业家精神,维护社会经济秩序,促进社会主义市场经济的发展,根据宪法,制定本法。\n第二条 本法所称公司,是指依照本法在中华人民共和国境内设",
|
|
970
|
+
"extra": "applyDate: 2024-07-01\nfilename: la2023123000006\ndbname: CLKL\ndbcode: CLKLLAST",
|
|
971
|
+
"publicLawNumber": "中华人民共和国主席令第十五号",
|
|
972
|
+
"shortTitle": "公司法",
|
|
973
|
+
"attachments": [
|
|
974
|
+
{
|
|
975
|
+
"title": "Full Text PDF",
|
|
976
|
+
"mimeType": "application/pdf"
|
|
977
|
+
}
|
|
978
|
+
],
|
|
979
|
+
"tags": [
|
|
980
|
+
{
|
|
981
|
+
"tag": "公司"
|
|
982
|
+
},
|
|
983
|
+
{
|
|
984
|
+
"tag": "公司法"
|
|
985
|
+
}
|
|
986
|
+
],
|
|
987
|
+
"notes": [],
|
|
988
|
+
"seeAlso": []
|
|
989
|
+
}
|
|
990
|
+
]
|
|
991
|
+
},
|
|
992
|
+
{
|
|
993
|
+
"type": "web",
|
|
994
|
+
"url": "https://kc.cnki.net/detail/article?id=jGMZiBWlT9KcG4/pu/81g/VWi2hiBEdd4uPpPqo9Gl8M2QQaGFZioi2kR1zsO6KN25LNlU6snA0SKKJ+SzssmYR9ivBojL5z5AeUmFOwHvii7JxKCsrJsT85EG++5t4nzxJ0jSfcqQ3YYdWLiLuLf0jmF0PJxTN+o1H7+oMjYE9VGYgtgw8nWb7oSpzNWIqntBQtvhc33IJgCG9bCe7QGA==",
|
|
995
|
+
"items": [
|
|
996
|
+
{
|
|
997
|
+
"itemType": "statute",
|
|
998
|
+
"nameOfAct": "河南省人民政府关于印发河南省基本公共服务体系“十二五”规划的通知",
|
|
999
|
+
"creators": [
|
|
1000
|
+
{
|
|
1001
|
+
"firstName": "",
|
|
1002
|
+
"lastName": "河南省人民政府",
|
|
1003
|
+
"creatorType": "author",
|
|
1004
|
+
"fieldMode": 1
|
|
1005
|
+
}
|
|
1006
|
+
],
|
|
1007
|
+
"dateEnacted": "2012-12-28",
|
|
1008
|
+
"abstractNote": "各省辖市、省直管试点县(市)人民政府,省人民政府各部门: 现将《河南省基本公共服务体系“十二五”规划》印发给你们,请认真组织实施。 $R河南省人民政府 2012年12月28日$E 河南省基本公共服务体系“十二五”规划 序 言 基本公共服务,是指建立在一定社",
|
|
1009
|
+
"extra": "Type: regulation\napplyDate: 2012-12-28\nStatus: 已废止\nfilename: la201302250090\ndbname: CLKL\ndbcode: CLKL0817",
|
|
1010
|
+
"publicLawNumber": "豫政[2012]110号",
|
|
1011
|
+
"attachments": [
|
|
1012
|
+
{
|
|
1013
|
+
"title": "Full Text PDF",
|
|
1014
|
+
"mimeType": "application/pdf"
|
|
1015
|
+
}
|
|
1016
|
+
],
|
|
1017
|
+
"tags": [
|
|
1018
|
+
{
|
|
1019
|
+
"tag": "公共服务"
|
|
1020
|
+
}
|
|
1021
|
+
],
|
|
1022
|
+
"notes": [],
|
|
1023
|
+
"seeAlso": []
|
|
1024
|
+
}
|
|
1025
|
+
]
|
|
1026
|
+
}
|
|
1027
|
+
]
|
|
1028
|
+
/** END TEST CASES **/
|