Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Duplicate check on import should be run in background Task #4963

Closed
Siedlerchr opened this issue May 11, 2019 · 13 comments
Closed

Duplicate check on import should be run in background Task #4963

Siedlerchr opened this issue May 11, 2019 · 13 comments

Comments

@Siedlerchr
Copy link
Member

Import a large database.
Import dialog nearly freezes. In debug mode you see that the DuplicateCheck is run on the FXThread and is time consuming.

Should be running in a background task.

@Siedlerchr Siedlerchr added import type: performance good first issue An issue intended for project-newcomers. Varies in difficulty. labels May 11, 2019
@tobiasdiez tobiasdiez removed the good first issue An issue intended for project-newcomers. Varies in difficulty. label May 11, 2019
@dimmonn
Copy link
Contributor

dimmonn commented May 14, 2019

Hi @Siedlerchr, I would work on this
could you help me to understand it better? what action do I do to import db?
is it File -> Import ?
how many entries shall the db have to be able to reproduce the issue?

@Siedlerchr
Copy link
Member Author

@dimmonn Thanks for your interest in this issue.
First start JabRef with debug parameter http://help.jabref.org/en/CommandLine#debug-mode---debug
Then File->Import into current library

Large database: We have a simple pyhton script to generate a large bib database in the /scripts/ folder.
It generates 10,000 entries or so. I think 100 entries or so should be enough.

When you now import, you see the import window which listst the entries to be imported and you see that it freezes because of the duplicate check .

Codewise a starting point is to look at the methods in ImportEntriesViewModel.java
there are two methods findInternalDuplicates and DuplicateCheck.
At least the internalDuplicate method is running on the FX Thread and therefore blocking the user input.

@dimmonn
Copy link
Contributor

dimmonn commented May 15, 2019

@Siedlerchr thank you, ill try to figure this out

@tobiasdiez
Copy link
Member

It might be a good idea to show a progress dialog for the complete import. For this you can use the following method:

<V> void showProgressDialogAndWait(String title, String content, Task<V> task);

@dimmonn
Copy link
Contributor

dimmonn commented May 15, 2019

@tobiasdiez thank you

@dimmonn
Copy link
Contributor

dimmonn commented May 17, 2019

@tobiasdiez shall I implement DialogService or shall I somehow re-use jabref/src/main/java/org/jabref/gui/JabRefDialogService.java to show the progress?

in terms of having duplicate check in the background task, is it about to move this work to some other thread?

@Siedlerchr
Copy link
Member Author

Siedlerchr commented May 17, 2019

@dimmonn You should wrap the code in a BackgroundTask, that is the javafx high level concept.
See for example here:

BackgroundTask.wrap(this::abbreviate)
.onSuccess(panel::output)
.executeWith(Globals.TASK_EXECUTOR);

And for the ProgressDialog:
See here for an example:

dialogService.showProgressDialogAndWait(
Localization.lang("Automatically setting file links"),
Localization.lang("Searching for files"),
linkFilesTask

@dimmonn
Copy link
Contributor

dimmonn commented May 17, 2019

@Siedlerchr ok thx

@Siedlerchr
Copy link
Member Author

@dimmonn Bascially our BackgroundTask is a wrapper around the javafx Task
https://docs.oracle.com/javase/8/javafx/interoperability-tutorial/concurrency.htm

@dimmonn
Copy link
Contributor

dimmonn commented May 17, 2019

Right got it thx

@dimmonn
Copy link
Contributor

dimmonn commented May 18, 2019

hey gents, just wanted to check if im on the right way
I am trying to do the below
org/jabref/gui/importer/ImportEntriesDialog.java:103

I introduce changes lilke

   Callable<Boolean> hasDuplicateEntryTask = () -> viewModel.hasDuplicate(entry);
                    BackgroundTask.wrap(hasDuplicateEntryTask).onSuccess(e -> {
                        if (e) {
                            Button duplicateButton = IconTheme.JabRefIcons.DUPLICATE.asButton();
                            duplicateButton.setTooltip(new Tooltip(Localization.lang("Possible duplicate of existing entry. Click to resolve.")));
                            duplicateButton.setOnAction(event -> viewModel.resolveDuplicate(entry));
                            container.getChildren().add(1, duplicateButton);
                        }
                    }).executeWith(Globals.TASK_EXECUTOR);
                    return container;

so that this method org.jabref.logic.bibtex.DuplicateCheck#isDuplicate

will be seen in the other thread

image

@Siedlerchr
Copy link
Member Author

Best is to create a Pull Request, so we can directly see the code changes in the context and see the results of unit tests.
But generally looks like it goes in the right direction
See also that the method hasDuplicate is called from the importEntries method in viewModel and at least one other method. So you need to wrap those as well.

dimmonn pushed a commit to dimmonn/jabref that referenced this issue May 18, 2019
dimmonn pushed a commit to dimmonn/jabref that referenced this issue May 18, 2019
…ask JabRef#4963 (created background task for duplicate chec)
dimmonn pushed a commit to dimmonn/jabref that referenced this issue May 18, 2019
dimmonn pushed a commit to dimmonn/jabref that referenced this issue May 18, 2019
dimmonn pushed a commit to dimmonn/jabref that referenced this issue May 20, 2019
… setting maxWidth and reverting off the temporary fix)
dimmonn pushed a commit to dimmonn/jabref that referenced this issue May 20, 2019
dimmonn pushed a commit to dimmonn/jabref that referenced this issue May 20, 2019
dimmonn pushed a commit to dimmonn/jabref that referenced this issue May 21, 2019
dimmonn pushed a commit to dimmonn/jabref that referenced this issue May 26, 2019
dimmonn pushed a commit to dimmonn/jabref that referenced this issue Jun 2, 2019
dimmonn pushed a commit to dimmonn/jabref that referenced this issue Jun 2, 2019
Siedlerchr added a commit that referenced this issue Jun 8, 2019
Duplicate check on import should be run in background Task #4963
@Siedlerchr
Copy link
Member Author

Fixed by #4981

Siedlerchr added a commit that referenced this issue Jun 8, 2019
* upstream/master:
  change wording
  Fix l10n
  Convert merge shared entries to javafx
  Remove "automatic bug report" title (#5040)
  Bump bcprov-jdk15on from 1.61 to 1.62 (#5039)
  Remove option to name a field with hyphen.
  Fix checkstyle error.
  Add changes in CHANGELOG.
  Remove the character '-' on KEY_ILLEGAL_CHARACTERS and KEY_UNWANTED_CHARACTERS constants.
  Change TreeMap for LinkedHashMap on create function.
  Duplicate check on import should be run in background #4963
  Duplicate check on import should be run in background Task  #4963
  Duplicate check on import should be run in background Task (changing var name)
  Duplicate check on import should be run in background Task  #4963
  Duplicate check on import should be run in background Task  #4963
  Duplicate check on import should be run in background Task  #4963 (checkstyle fix)
  Duplicate check on import should be run in background Task  #4963 (adding background task for view model)
  fixup! fixup! Too big error message #4963 (updating controlsfx, setting maxWidth and reverting off the temporary fix)
  Duplicate check on import should be run in background Task #4963
github-actions bot pushed a commit that referenced this issue Aug 23, 2020
469deb6 Sage Harvard: Add translator/editor
1f51ef8 Add Pensoft dependents (#4981)
5338ff6 Create electrophoresis.csl (#4883)
4de9a97 Update spec_helper.rb
fe81f17 Create uirs-urbani-izziv.csl (#4928)
69d37d8 Create uirs-urban-challenge-journal.csl (#4927)
d807202 Changes to match Taxon guidelines for authors (#4980)
aeb2170 Create ucl-university-college-denmark-apa.csl (#4962)
16f58df Update American Physical Society styles (#4794)
b77bd91 Update ucl-university-college-denmark-vancouver.csl (#4963)
81d1a59 Update bibliotheque-d-archeologie-mediterraneenne-et-africaine-biama.csl (#4979)

git-subtree-dir: src/main/resources/csl-styles
git-subtree-split: 469deb6
github-actions bot pushed a commit to RamonG92/jabref that referenced this issue Sep 1, 2020
fad76fe Update Gemfile.lock
a8dafef Update harvard-cite-them-right.csl (JabRef#4993)
c8784ff Update and rename emerald-harvard.csl to emerald-harvard-2.csl (JabRef#4991)
197ec0e Update circulation-journal.csl (JabRef#4994)
f36dabe Update American Physical Society dependents (JabRef#4992)
93469bb Create journal-of-musculoskeletal-research.csl (JabRef#4990)
43287c7 Update taxon.csl a little more (JabRef#4989)
9f32917 Update and rename university-college-lillebaelt-harvard.csl to ucl-un… (JabRef#4982)
00c3cec Update isnad-metinici.csl (JabRef#4988)
864a64c Update medicine-and-science-in-sports-and-exercise.csl (JabRef#4983)
0c76011 Don't demote particles in Equine Vet J (JabRef#4984)
603ee73 Fix MLA editor translator (JabRef#4985)
40d207c Update pravnik.csl (JabRef#4986)
c5fe30c Update isnad-dipnotlu.csl (JabRef#4987)
469deb6 Sage Harvard: Add translator/editor
1f51ef8 Add Pensoft dependents (JabRef#4981)
5338ff6 Create electrophoresis.csl (JabRef#4883)
4de9a97 Update spec_helper.rb
fe81f17 Create uirs-urbani-izziv.csl (JabRef#4928)
69d37d8 Create uirs-urban-challenge-journal.csl (JabRef#4927)
d807202 Changes to match Taxon guidelines for authors (JabRef#4980)
aeb2170 Create ucl-university-college-denmark-apa.csl (JabRef#4962)
16f58df Update American Physical Society styles (JabRef#4794)
b77bd91 Update ucl-university-college-denmark-vancouver.csl (JabRef#4963)
81d1a59 Update bibliotheque-d-archeologie-mediterraneenne-et-africaine-biama.csl (JabRef#4979)
0895562 Create pensoft-journals.csl (JabRef#4972)
4f8fa44 creates the gigascience.csl file (JabRef#4961)
1b9c7a0 Create acta-ornithologica.csl (JabRef#4977)
c8c6c6d Create sorbonne-student-law-review.csl (JabRef#4956)

git-subtree-dir: src/main/resources/csl-styles
git-subtree-split: fad76fe
github-actions bot pushed a commit to CaptainDaVinci/jabref that referenced this issue Sep 1, 2020
fad76fe Update Gemfile.lock
a8dafef Update harvard-cite-them-right.csl (JabRef#4993)
c8784ff Update and rename emerald-harvard.csl to emerald-harvard-2.csl (JabRef#4991)
197ec0e Update circulation-journal.csl (JabRef#4994)
f36dabe Update American Physical Society dependents (JabRef#4992)
93469bb Create journal-of-musculoskeletal-research.csl (JabRef#4990)
43287c7 Update taxon.csl a little more (JabRef#4989)
9f32917 Update and rename university-college-lillebaelt-harvard.csl to ucl-un… (JabRef#4982)
00c3cec Update isnad-metinici.csl (JabRef#4988)
864a64c Update medicine-and-science-in-sports-and-exercise.csl (JabRef#4983)
0c76011 Don't demote particles in Equine Vet J (JabRef#4984)
603ee73 Fix MLA editor translator (JabRef#4985)
40d207c Update pravnik.csl (JabRef#4986)
c5fe30c Update isnad-dipnotlu.csl (JabRef#4987)
469deb6 Sage Harvard: Add translator/editor
1f51ef8 Add Pensoft dependents (JabRef#4981)
5338ff6 Create electrophoresis.csl (JabRef#4883)
4de9a97 Update spec_helper.rb
fe81f17 Create uirs-urbani-izziv.csl (JabRef#4928)
69d37d8 Create uirs-urban-challenge-journal.csl (JabRef#4927)
d807202 Changes to match Taxon guidelines for authors (JabRef#4980)
aeb2170 Create ucl-university-college-denmark-apa.csl (JabRef#4962)
16f58df Update American Physical Society styles (JabRef#4794)
b77bd91 Update ucl-university-college-denmark-vancouver.csl (JabRef#4963)
81d1a59 Update bibliotheque-d-archeologie-mediterraneenne-et-africaine-biama.csl (JabRef#4979)
0895562 Create pensoft-journals.csl (JabRef#4972)
4f8fa44 creates the gigascience.csl file (JabRef#4961)
1b9c7a0 Create acta-ornithologica.csl (JabRef#4977)
c8c6c6d Create sorbonne-student-law-review.csl (JabRef#4956)

git-subtree-dir: src/main/resources/csl-styles
git-subtree-split: fad76fe
github-actions bot pushed a commit to dimitra-karadima/jabref that referenced this issue Sep 1, 2020
fad76fe Update Gemfile.lock
a8dafef Update harvard-cite-them-right.csl (JabRef#4993)
c8784ff Update and rename emerald-harvard.csl to emerald-harvard-2.csl (JabRef#4991)
197ec0e Update circulation-journal.csl (JabRef#4994)
f36dabe Update American Physical Society dependents (JabRef#4992)
93469bb Create journal-of-musculoskeletal-research.csl (JabRef#4990)
43287c7 Update taxon.csl a little more (JabRef#4989)
9f32917 Update and rename university-college-lillebaelt-harvard.csl to ucl-un… (JabRef#4982)
00c3cec Update isnad-metinici.csl (JabRef#4988)
864a64c Update medicine-and-science-in-sports-and-exercise.csl (JabRef#4983)
0c76011 Don't demote particles in Equine Vet J (JabRef#4984)
603ee73 Fix MLA editor translator (JabRef#4985)
40d207c Update pravnik.csl (JabRef#4986)
c5fe30c Update isnad-dipnotlu.csl (JabRef#4987)
469deb6 Sage Harvard: Add translator/editor
1f51ef8 Add Pensoft dependents (JabRef#4981)
5338ff6 Create electrophoresis.csl (JabRef#4883)
4de9a97 Update spec_helper.rb
fe81f17 Create uirs-urbani-izziv.csl (JabRef#4928)
69d37d8 Create uirs-urban-challenge-journal.csl (JabRef#4927)
d807202 Changes to match Taxon guidelines for authors (JabRef#4980)
aeb2170 Create ucl-university-college-denmark-apa.csl (JabRef#4962)
16f58df Update American Physical Society styles (JabRef#4794)
b77bd91 Update ucl-university-college-denmark-vancouver.csl (JabRef#4963)
81d1a59 Update bibliotheque-d-archeologie-mediterraneenne-et-africaine-biama.csl (JabRef#4979)
0895562 Create pensoft-journals.csl (JabRef#4972)
4f8fa44 creates the gigascience.csl file (JabRef#4961)
1b9c7a0 Create acta-ornithologica.csl (JabRef#4977)
c8c6c6d Create sorbonne-student-law-review.csl (JabRef#4956)

git-subtree-dir: src/main/resources/csl-styles
git-subtree-split: fad76fe
github-actions bot pushed a commit to Xuanxuan-Zou/jabref that referenced this issue Sep 1, 2020
fad76fe Update Gemfile.lock
a8dafef Update harvard-cite-them-right.csl (JabRef#4993)
c8784ff Update and rename emerald-harvard.csl to emerald-harvard-2.csl (JabRef#4991)
197ec0e Update circulation-journal.csl (JabRef#4994)
f36dabe Update American Physical Society dependents (JabRef#4992)
93469bb Create journal-of-musculoskeletal-research.csl (JabRef#4990)
43287c7 Update taxon.csl a little more (JabRef#4989)
9f32917 Update and rename university-college-lillebaelt-harvard.csl to ucl-un… (JabRef#4982)
00c3cec Update isnad-metinici.csl (JabRef#4988)
864a64c Update medicine-and-science-in-sports-and-exercise.csl (JabRef#4983)
0c76011 Don't demote particles in Equine Vet J (JabRef#4984)
603ee73 Fix MLA editor translator (JabRef#4985)
40d207c Update pravnik.csl (JabRef#4986)
c5fe30c Update isnad-dipnotlu.csl (JabRef#4987)
469deb6 Sage Harvard: Add translator/editor
1f51ef8 Add Pensoft dependents (JabRef#4981)
5338ff6 Create electrophoresis.csl (JabRef#4883)
4de9a97 Update spec_helper.rb
fe81f17 Create uirs-urbani-izziv.csl (JabRef#4928)
69d37d8 Create uirs-urban-challenge-journal.csl (JabRef#4927)
d807202 Changes to match Taxon guidelines for authors (JabRef#4980)
aeb2170 Create ucl-university-college-denmark-apa.csl (JabRef#4962)
16f58df Update American Physical Society styles (JabRef#4794)
b77bd91 Update ucl-university-college-denmark-vancouver.csl (JabRef#4963)
81d1a59 Update bibliotheque-d-archeologie-mediterraneenne-et-africaine-biama.csl (JabRef#4979)
0895562 Create pensoft-journals.csl (JabRef#4972)
4f8fa44 creates the gigascience.csl file (JabRef#4961)
1b9c7a0 Create acta-ornithologica.csl (JabRef#4977)
c8c6c6d Create sorbonne-student-law-review.csl (JabRef#4956)

git-subtree-dir: src/main/resources/csl-styles
git-subtree-split: fad76fe
github-actions bot pushed a commit to felixbohnacker/jabref that referenced this issue Sep 1, 2020
fad76fe Update Gemfile.lock
a8dafef Update harvard-cite-them-right.csl (JabRef#4993)
c8784ff Update and rename emerald-harvard.csl to emerald-harvard-2.csl (JabRef#4991)
197ec0e Update circulation-journal.csl (JabRef#4994)
f36dabe Update American Physical Society dependents (JabRef#4992)
93469bb Create journal-of-musculoskeletal-research.csl (JabRef#4990)
43287c7 Update taxon.csl a little more (JabRef#4989)
9f32917 Update and rename university-college-lillebaelt-harvard.csl to ucl-un… (JabRef#4982)
00c3cec Update isnad-metinici.csl (JabRef#4988)
864a64c Update medicine-and-science-in-sports-and-exercise.csl (JabRef#4983)
0c76011 Don't demote particles in Equine Vet J (JabRef#4984)
603ee73 Fix MLA editor translator (JabRef#4985)
40d207c Update pravnik.csl (JabRef#4986)
c5fe30c Update isnad-dipnotlu.csl (JabRef#4987)
469deb6 Sage Harvard: Add translator/editor
1f51ef8 Add Pensoft dependents (JabRef#4981)
5338ff6 Create electrophoresis.csl (JabRef#4883)
4de9a97 Update spec_helper.rb
fe81f17 Create uirs-urbani-izziv.csl (JabRef#4928)
69d37d8 Create uirs-urban-challenge-journal.csl (JabRef#4927)
d807202 Changes to match Taxon guidelines for authors (JabRef#4980)
aeb2170 Create ucl-university-college-denmark-apa.csl (JabRef#4962)
16f58df Update American Physical Society styles (JabRef#4794)
b77bd91 Update ucl-university-college-denmark-vancouver.csl (JabRef#4963)
81d1a59 Update bibliotheque-d-archeologie-mediterraneenne-et-africaine-biama.csl (JabRef#4979)
0895562 Create pensoft-journals.csl (JabRef#4972)
4f8fa44 creates the gigascience.csl file (JabRef#4961)
1b9c7a0 Create acta-ornithologica.csl (JabRef#4977)
c8c6c6d Create sorbonne-student-law-review.csl (JabRef#4956)

git-subtree-dir: src/main/resources/csl-styles
git-subtree-split: fad76fe
github-actions bot pushed a commit to ShikunXiong/jabref that referenced this issue Sep 1, 2020
fad76fe Update Gemfile.lock
a8dafef Update harvard-cite-them-right.csl (JabRef#4993)
c8784ff Update and rename emerald-harvard.csl to emerald-harvard-2.csl (JabRef#4991)
197ec0e Update circulation-journal.csl (JabRef#4994)
f36dabe Update American Physical Society dependents (JabRef#4992)
93469bb Create journal-of-musculoskeletal-research.csl (JabRef#4990)
43287c7 Update taxon.csl a little more (JabRef#4989)
9f32917 Update and rename university-college-lillebaelt-harvard.csl to ucl-un… (JabRef#4982)
00c3cec Update isnad-metinici.csl (JabRef#4988)
864a64c Update medicine-and-science-in-sports-and-exercise.csl (JabRef#4983)
0c76011 Don't demote particles in Equine Vet J (JabRef#4984)
603ee73 Fix MLA editor translator (JabRef#4985)
40d207c Update pravnik.csl (JabRef#4986)
c5fe30c Update isnad-dipnotlu.csl (JabRef#4987)
469deb6 Sage Harvard: Add translator/editor
1f51ef8 Add Pensoft dependents (JabRef#4981)
5338ff6 Create electrophoresis.csl (JabRef#4883)
4de9a97 Update spec_helper.rb
fe81f17 Create uirs-urbani-izziv.csl (JabRef#4928)
69d37d8 Create uirs-urban-challenge-journal.csl (JabRef#4927)
d807202 Changes to match Taxon guidelines for authors (JabRef#4980)
aeb2170 Create ucl-university-college-denmark-apa.csl (JabRef#4962)
16f58df Update American Physical Society styles (JabRef#4794)
b77bd91 Update ucl-university-college-denmark-vancouver.csl (JabRef#4963)
81d1a59 Update bibliotheque-d-archeologie-mediterraneenne-et-africaine-biama.csl (JabRef#4979)
0895562 Create pensoft-journals.csl (JabRef#4972)
4f8fa44 creates the gigascience.csl file (JabRef#4961)
1b9c7a0 Create acta-ornithologica.csl (JabRef#4977)
c8c6c6d Create sorbonne-student-law-review.csl (JabRef#4956)

git-subtree-dir: src/main/resources/csl-styles
git-subtree-split: fad76fe
github-actions bot pushed a commit to eetian/jabref that referenced this issue Sep 1, 2020
fad76fe Update Gemfile.lock
a8dafef Update harvard-cite-them-right.csl (JabRef#4993)
c8784ff Update and rename emerald-harvard.csl to emerald-harvard-2.csl (JabRef#4991)
197ec0e Update circulation-journal.csl (JabRef#4994)
f36dabe Update American Physical Society dependents (JabRef#4992)
93469bb Create journal-of-musculoskeletal-research.csl (JabRef#4990)
43287c7 Update taxon.csl a little more (JabRef#4989)
9f32917 Update and rename university-college-lillebaelt-harvard.csl to ucl-un… (JabRef#4982)
00c3cec Update isnad-metinici.csl (JabRef#4988)
864a64c Update medicine-and-science-in-sports-and-exercise.csl (JabRef#4983)
0c76011 Don't demote particles in Equine Vet J (JabRef#4984)
603ee73 Fix MLA editor translator (JabRef#4985)
40d207c Update pravnik.csl (JabRef#4986)
c5fe30c Update isnad-dipnotlu.csl (JabRef#4987)
469deb6 Sage Harvard: Add translator/editor
1f51ef8 Add Pensoft dependents (JabRef#4981)
5338ff6 Create electrophoresis.csl (JabRef#4883)
4de9a97 Update spec_helper.rb
fe81f17 Create uirs-urbani-izziv.csl (JabRef#4928)
69d37d8 Create uirs-urban-challenge-journal.csl (JabRef#4927)
d807202 Changes to match Taxon guidelines for authors (JabRef#4980)
aeb2170 Create ucl-university-college-denmark-apa.csl (JabRef#4962)
16f58df Update American Physical Society styles (JabRef#4794)
b77bd91 Update ucl-university-college-denmark-vancouver.csl (JabRef#4963)
81d1a59 Update bibliotheque-d-archeologie-mediterraneenne-et-africaine-biama.csl (JabRef#4979)
0895562 Create pensoft-journals.csl (JabRef#4972)
4f8fa44 creates the gigascience.csl file (JabRef#4961)
1b9c7a0 Create acta-ornithologica.csl (JabRef#4977)
c8c6c6d Create sorbonne-student-law-review.csl (JabRef#4956)

git-subtree-dir: src/main/resources/csl-styles
git-subtree-split: fad76fe
github-actions bot pushed a commit to leitianjian/jabref that referenced this issue Sep 1, 2020
fad76fe Update Gemfile.lock
a8dafef Update harvard-cite-them-right.csl (JabRef#4993)
c8784ff Update and rename emerald-harvard.csl to emerald-harvard-2.csl (JabRef#4991)
197ec0e Update circulation-journal.csl (JabRef#4994)
f36dabe Update American Physical Society dependents (JabRef#4992)
93469bb Create journal-of-musculoskeletal-research.csl (JabRef#4990)
43287c7 Update taxon.csl a little more (JabRef#4989)
9f32917 Update and rename university-college-lillebaelt-harvard.csl to ucl-un… (JabRef#4982)
00c3cec Update isnad-metinici.csl (JabRef#4988)
864a64c Update medicine-and-science-in-sports-and-exercise.csl (JabRef#4983)
0c76011 Don't demote particles in Equine Vet J (JabRef#4984)
603ee73 Fix MLA editor translator (JabRef#4985)
40d207c Update pravnik.csl (JabRef#4986)
c5fe30c Update isnad-dipnotlu.csl (JabRef#4987)
469deb6 Sage Harvard: Add translator/editor
1f51ef8 Add Pensoft dependents (JabRef#4981)
5338ff6 Create electrophoresis.csl (JabRef#4883)
4de9a97 Update spec_helper.rb
fe81f17 Create uirs-urbani-izziv.csl (JabRef#4928)
69d37d8 Create uirs-urban-challenge-journal.csl (JabRef#4927)
d807202 Changes to match Taxon guidelines for authors (JabRef#4980)
aeb2170 Create ucl-university-college-denmark-apa.csl (JabRef#4962)
16f58df Update American Physical Society styles (JabRef#4794)
b77bd91 Update ucl-university-college-denmark-vancouver.csl (JabRef#4963)
81d1a59 Update bibliotheque-d-archeologie-mediterraneenne-et-africaine-biama.csl (JabRef#4979)
0895562 Create pensoft-journals.csl (JabRef#4972)
4f8fa44 creates the gigascience.csl file (JabRef#4961)
1b9c7a0 Create acta-ornithologica.csl (JabRef#4977)
c8c6c6d Create sorbonne-student-law-review.csl (JabRef#4956)

git-subtree-dir: src/main/resources/csl-styles
git-subtree-split: fad76fe
github-actions bot pushed a commit to systemoperator/jabref that referenced this issue Sep 1, 2020
fad76fe Update Gemfile.lock
a8dafef Update harvard-cite-them-right.csl (JabRef#4993)
c8784ff Update and rename emerald-harvard.csl to emerald-harvard-2.csl (JabRef#4991)
197ec0e Update circulation-journal.csl (JabRef#4994)
f36dabe Update American Physical Society dependents (JabRef#4992)
93469bb Create journal-of-musculoskeletal-research.csl (JabRef#4990)
43287c7 Update taxon.csl a little more (JabRef#4989)
9f32917 Update and rename university-college-lillebaelt-harvard.csl to ucl-un… (JabRef#4982)
00c3cec Update isnad-metinici.csl (JabRef#4988)
864a64c Update medicine-and-science-in-sports-and-exercise.csl (JabRef#4983)
0c76011 Don't demote particles in Equine Vet J (JabRef#4984)
603ee73 Fix MLA editor translator (JabRef#4985)
40d207c Update pravnik.csl (JabRef#4986)
c5fe30c Update isnad-dipnotlu.csl (JabRef#4987)
469deb6 Sage Harvard: Add translator/editor
1f51ef8 Add Pensoft dependents (JabRef#4981)
5338ff6 Create electrophoresis.csl (JabRef#4883)
4de9a97 Update spec_helper.rb
fe81f17 Create uirs-urbani-izziv.csl (JabRef#4928)
69d37d8 Create uirs-urban-challenge-journal.csl (JabRef#4927)
d807202 Changes to match Taxon guidelines for authors (JabRef#4980)
aeb2170 Create ucl-university-college-denmark-apa.csl (JabRef#4962)
16f58df Update American Physical Society styles (JabRef#4794)
b77bd91 Update ucl-university-college-denmark-vancouver.csl (JabRef#4963)
81d1a59 Update bibliotheque-d-archeologie-mediterraneenne-et-africaine-biama.csl (JabRef#4979)
0895562 Create pensoft-journals.csl (JabRef#4972)
4f8fa44 creates the gigascience.csl file (JabRef#4961)
1b9c7a0 Create acta-ornithologica.csl (JabRef#4977)
c8c6c6d Create sorbonne-student-law-review.csl (JabRef#4956)

git-subtree-dir: src/main/resources/csl-styles
git-subtree-split: fad76fe
github-actions bot pushed a commit to dextep/jabref that referenced this issue Sep 1, 2020
fad76fe Update Gemfile.lock
a8dafef Update harvard-cite-them-right.csl (JabRef#4993)
c8784ff Update and rename emerald-harvard.csl to emerald-harvard-2.csl (JabRef#4991)
197ec0e Update circulation-journal.csl (JabRef#4994)
f36dabe Update American Physical Society dependents (JabRef#4992)
93469bb Create journal-of-musculoskeletal-research.csl (JabRef#4990)
43287c7 Update taxon.csl a little more (JabRef#4989)
9f32917 Update and rename university-college-lillebaelt-harvard.csl to ucl-un… (JabRef#4982)
00c3cec Update isnad-metinici.csl (JabRef#4988)
864a64c Update medicine-and-science-in-sports-and-exercise.csl (JabRef#4983)
0c76011 Don't demote particles in Equine Vet J (JabRef#4984)
603ee73 Fix MLA editor translator (JabRef#4985)
40d207c Update pravnik.csl (JabRef#4986)
c5fe30c Update isnad-dipnotlu.csl (JabRef#4987)
469deb6 Sage Harvard: Add translator/editor
1f51ef8 Add Pensoft dependents (JabRef#4981)
5338ff6 Create electrophoresis.csl (JabRef#4883)
4de9a97 Update spec_helper.rb
fe81f17 Create uirs-urbani-izziv.csl (JabRef#4928)
69d37d8 Create uirs-urban-challenge-journal.csl (JabRef#4927)
d807202 Changes to match Taxon guidelines for authors (JabRef#4980)
aeb2170 Create ucl-university-college-denmark-apa.csl (JabRef#4962)
16f58df Update American Physical Society styles (JabRef#4794)
b77bd91 Update ucl-university-college-denmark-vancouver.csl (JabRef#4963)
81d1a59 Update bibliotheque-d-archeologie-mediterraneenne-et-africaine-biama.csl (JabRef#4979)
0895562 Create pensoft-journals.csl (JabRef#4972)
4f8fa44 creates the gigascience.csl file (JabRef#4961)
1b9c7a0 Create acta-ornithologica.csl (JabRef#4977)
c8c6c6d Create sorbonne-student-law-review.csl (JabRef#4956)

git-subtree-dir: src/main/resources/csl-styles
git-subtree-split: fad76fe
github-actions bot pushed a commit to graffaner/jabref that referenced this issue Sep 1, 2020
fad76fe Update Gemfile.lock
a8dafef Update harvard-cite-them-right.csl (JabRef#4993)
c8784ff Update and rename emerald-harvard.csl to emerald-harvard-2.csl (JabRef#4991)
197ec0e Update circulation-journal.csl (JabRef#4994)
f36dabe Update American Physical Society dependents (JabRef#4992)
93469bb Create journal-of-musculoskeletal-research.csl (JabRef#4990)
43287c7 Update taxon.csl a little more (JabRef#4989)
9f32917 Update and rename university-college-lillebaelt-harvard.csl to ucl-un… (JabRef#4982)
00c3cec Update isnad-metinici.csl (JabRef#4988)
864a64c Update medicine-and-science-in-sports-and-exercise.csl (JabRef#4983)
0c76011 Don't demote particles in Equine Vet J (JabRef#4984)
603ee73 Fix MLA editor translator (JabRef#4985)
40d207c Update pravnik.csl (JabRef#4986)
c5fe30c Update isnad-dipnotlu.csl (JabRef#4987)
469deb6 Sage Harvard: Add translator/editor
1f51ef8 Add Pensoft dependents (JabRef#4981)
5338ff6 Create electrophoresis.csl (JabRef#4883)
4de9a97 Update spec_helper.rb
fe81f17 Create uirs-urbani-izziv.csl (JabRef#4928)
69d37d8 Create uirs-urban-challenge-journal.csl (JabRef#4927)
d807202 Changes to match Taxon guidelines for authors (JabRef#4980)
aeb2170 Create ucl-university-college-denmark-apa.csl (JabRef#4962)
16f58df Update American Physical Society styles (JabRef#4794)
b77bd91 Update ucl-university-college-denmark-vancouver.csl (JabRef#4963)
81d1a59 Update bibliotheque-d-archeologie-mediterraneenne-et-africaine-biama.csl (JabRef#4979)
0895562 Create pensoft-journals.csl (JabRef#4972)
4f8fa44 creates the gigascience.csl file (JabRef#4961)
1b9c7a0 Create acta-ornithologica.csl (JabRef#4977)
c8c6c6d Create sorbonne-student-law-review.csl (JabRef#4956)

git-subtree-dir: src/main/resources/csl-styles
git-subtree-split: fad76fe
github-actions bot pushed a commit to joe9111/jabref that referenced this issue Sep 1, 2020
fad76fe Update Gemfile.lock
a8dafef Update harvard-cite-them-right.csl (JabRef#4993)
c8784ff Update and rename emerald-harvard.csl to emerald-harvard-2.csl (JabRef#4991)
197ec0e Update circulation-journal.csl (JabRef#4994)
f36dabe Update American Physical Society dependents (JabRef#4992)
93469bb Create journal-of-musculoskeletal-research.csl (JabRef#4990)
43287c7 Update taxon.csl a little more (JabRef#4989)
9f32917 Update and rename university-college-lillebaelt-harvard.csl to ucl-un… (JabRef#4982)
00c3cec Update isnad-metinici.csl (JabRef#4988)
864a64c Update medicine-and-science-in-sports-and-exercise.csl (JabRef#4983)
0c76011 Don't demote particles in Equine Vet J (JabRef#4984)
603ee73 Fix MLA editor translator (JabRef#4985)
40d207c Update pravnik.csl (JabRef#4986)
c5fe30c Update isnad-dipnotlu.csl (JabRef#4987)
469deb6 Sage Harvard: Add translator/editor
1f51ef8 Add Pensoft dependents (JabRef#4981)
5338ff6 Create electrophoresis.csl (JabRef#4883)
4de9a97 Update spec_helper.rb
fe81f17 Create uirs-urbani-izziv.csl (JabRef#4928)
69d37d8 Create uirs-urban-challenge-journal.csl (JabRef#4927)
d807202 Changes to match Taxon guidelines for authors (JabRef#4980)
aeb2170 Create ucl-university-college-denmark-apa.csl (JabRef#4962)
16f58df Update American Physical Society styles (JabRef#4794)
b77bd91 Update ucl-university-college-denmark-vancouver.csl (JabRef#4963)
81d1a59 Update bibliotheque-d-archeologie-mediterraneenne-et-africaine-biama.csl (JabRef#4979)
0895562 Create pensoft-journals.csl (JabRef#4972)
4f8fa44 creates the gigascience.csl file (JabRef#4961)
1b9c7a0 Create acta-ornithologica.csl (JabRef#4977)
c8c6c6d Create sorbonne-student-law-review.csl (JabRef#4956)

git-subtree-dir: src/main/resources/csl-styles
git-subtree-split: fad76fe
github-actions bot pushed a commit to NikodemKch/jabref-1 that referenced this issue Sep 1, 2020
fad76fe Update Gemfile.lock
a8dafef Update harvard-cite-them-right.csl (JabRef#4993)
c8784ff Update and rename emerald-harvard.csl to emerald-harvard-2.csl (JabRef#4991)
197ec0e Update circulation-journal.csl (JabRef#4994)
f36dabe Update American Physical Society dependents (JabRef#4992)
93469bb Create journal-of-musculoskeletal-research.csl (JabRef#4990)
43287c7 Update taxon.csl a little more (JabRef#4989)
9f32917 Update and rename university-college-lillebaelt-harvard.csl to ucl-un… (JabRef#4982)
00c3cec Update isnad-metinici.csl (JabRef#4988)
864a64c Update medicine-and-science-in-sports-and-exercise.csl (JabRef#4983)
0c76011 Don't demote particles in Equine Vet J (JabRef#4984)
603ee73 Fix MLA editor translator (JabRef#4985)
40d207c Update pravnik.csl (JabRef#4986)
c5fe30c Update isnad-dipnotlu.csl (JabRef#4987)
469deb6 Sage Harvard: Add translator/editor
1f51ef8 Add Pensoft dependents (JabRef#4981)
5338ff6 Create electrophoresis.csl (JabRef#4883)
4de9a97 Update spec_helper.rb
fe81f17 Create uirs-urbani-izziv.csl (JabRef#4928)
69d37d8 Create uirs-urban-challenge-journal.csl (JabRef#4927)
d807202 Changes to match Taxon guidelines for authors (JabRef#4980)
aeb2170 Create ucl-university-college-denmark-apa.csl (JabRef#4962)
16f58df Update American Physical Society styles (JabRef#4794)
b77bd91 Update ucl-university-college-denmark-vancouver.csl (JabRef#4963)
81d1a59 Update bibliotheque-d-archeologie-mediterraneenne-et-africaine-biama.csl (JabRef#4979)
0895562 Create pensoft-journals.csl (JabRef#4972)
4f8fa44 creates the gigascience.csl file (JabRef#4961)
1b9c7a0 Create acta-ornithologica.csl (JabRef#4977)
c8c6c6d Create sorbonne-student-law-review.csl (JabRef#4956)

git-subtree-dir: src/main/resources/csl-styles
git-subtree-split: fad76fe
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

3 participants