Skip to content

Commit 071f428

Browse files
authored
Disable ACM, Google Scholar, JSTOR (#7229)
1 parent 2da85d1 commit 071f428

File tree

2 files changed

+6
-8
lines changed

2 files changed

+6
-8
lines changed

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,6 @@ Note that this project **does not** adhere to [Semantic Versioning](http://semve
1818
- We added connection check function in network preference setting [#6560](https://github.com/JabRef/jabref/issues/6560)
1919
- We added support for exporting to YAML. [#6974](https://github.com/JabRef/jabref/issues/6974)
2020
- We added a DOI format and organization check to detect [American Physical Society](https://journals.aps.org/) journals to copy the article ID to the page field for cases where the page numbers are missing. [#7019](https://github.com/JabRef/jabref/issues/7019)
21-
- We added a new fetcher to enable users to search jstor.org [#6627](https://github.com/JabRef/jabref/issues/6627)
2221
- We added an error message in the New Entry dialog that is shown in case the fetcher did not find anything . [#7000](https://github.com/JabRef/jabref/issues/7000)
2322
- We added a new formatter to output shorthand month format. [#6579](https://github.com/JabRef/jabref/issues/6579)
2423
- We added support for the new Microsoft Edge browser in all platforms. [#7056](https://github.com/JabRef/jabref/pull/7056)
@@ -83,6 +82,7 @@ Note that this project **does not** adhere to [Semantic Versioning](http://semve
8382

8483
### Removed
8584

85+
- We removed the Google Scholar fetcher and the ACM fetcher do not work due to traffic limitations [#6369](https://github.com/JabRef/jabref/issues/6369)
8686
- We removed the menu entry "Manage external file types" because it's already in 'Preferences' dialog [#6991](https://github.com/JabRef/jabref/issues/6991)
8787
- We removed the integrity check "Abbreviation detected" for the field journal/journaltitle in the entry editor [#3925](https://github.com/JabRef/jabref/issues/3925)
8888

src/main/java/org/jabref/logic/importer/WebFetchers.java

Lines changed: 5 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -20,13 +20,11 @@
2020
import org.jabref.logic.importer.fetcher.DiVA;
2121
import org.jabref.logic.importer.fetcher.DoiFetcher;
2222
import org.jabref.logic.importer.fetcher.DoiResolution;
23-
import org.jabref.logic.importer.fetcher.GoogleScholar;
2423
import org.jabref.logic.importer.fetcher.GvkFetcher;
2524
import org.jabref.logic.importer.fetcher.IEEE;
2625
import org.jabref.logic.importer.fetcher.INSPIREFetcher;
2726
import org.jabref.logic.importer.fetcher.IacrEprintFetcher;
2827
import org.jabref.logic.importer.fetcher.IsbnFetcher;
29-
import org.jabref.logic.importer.fetcher.JstorFetcher;
3028
import org.jabref.logic.importer.fetcher.LibraryOfCongress;
3129
import org.jabref.logic.importer.fetcher.MathSciNet;
3230
import org.jabref.logic.importer.fetcher.MedlineFetcher;
@@ -96,7 +94,7 @@ public static SortedSet<SearchBasedFetcher> getSearchBasedFetchers(ImportFormatP
9694
set.add(new ZbMATH(importFormatPreferences));
9795
// see https://github.com/JabRef/jabref/issues/5804
9896
// set.add(new ACMPortalFetcher(importFormatPreferences));
99-
set.add(new GoogleScholar(importFormatPreferences));
97+
// set.add(new GoogleScholar(importFormatPreferences));
10098
set.add(new DBLPFetcher(importFormatPreferences));
10199
set.add(new SpringerFetcher());
102100
set.add(new CrossRef());
@@ -105,7 +103,7 @@ public static SortedSet<SearchBasedFetcher> getSearchBasedFetchers(ImportFormatP
105103
set.add(new IEEE(importFormatPreferences));
106104
set.add(new CompositeSearchBasedFetcher(set, 30));
107105
set.add(new CollectionOfComputerScienceBibliographiesFetcher(importFormatPreferences));
108-
set.add(new JstorFetcher(importFormatPreferences));
106+
// set.add(new JstorFetcher(importFormatPreferences));
109107
return set;
110108
}
111109

@@ -127,7 +125,7 @@ public static SortedSet<IdBasedFetcher> getIdBasedFetchers(ImportFormatPreferenc
127125
set.add(new IacrEprintFetcher(importFormatPreferences));
128126
set.add(new RfcFetcher(importFormatPreferences));
129127
set.add(new Medra());
130-
set.add(new JstorFetcher(importFormatPreferences));
128+
// set.add(new JstorFetcher(importFormatPreferences));
131129
return set;
132130
}
133131

@@ -169,8 +167,8 @@ public static Set<FulltextFetcher> getFullTextFetchers(ImportFormatPreferences i
169167
fetchers.add(new IEEE(importFormatPreferences));
170168
fetchers.add(new ApsFetcher());
171169
// Meta search
172-
fetchers.add(new JstorFetcher(importFormatPreferences));
173-
fetchers.add(new GoogleScholar(importFormatPreferences));
170+
// fetchers.add(new JstorFetcher(importFormatPreferences));
171+
// fetchers.add(new GoogleScholar(importFormatPreferences));
174172
fetchers.add(new OpenAccessDoi());
175173

176174
return fetchers;

0 commit comments

Comments
 (0)