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

Enhanced message log #4815

Merged
merged 13 commits into from
Apr 3, 2019
Merged

Enhanced message log #4815

merged 13 commits into from
Apr 3, 2019

Conversation

r0light
Copy link
Contributor

@r0light r0light commented Mar 27, 2019

Worked on #4805 .
Removed JabRefFrame.output in favor of FXDialogService.notify and refactored calling code.
Added Logging to FXDialogService.notify

Logs seemed to be duplicated afterwards. However, this was another issue with log4j. Because LogEvent-Objects are reused, they were copied in LogMessages.add . But at that point it was too late, resulting in different Log Messages being overwritten. I therefore moved the copying to GuiAppender.append and this resolves the issue of seemingly duplicated log messages.
This is probably also the reason for #4811

closes #4805 closes #4811


  • Change in CHANGELOG.md described
  • Tests created for changes
  • Manually tested changed features in running JabRef
  • Screenshots added in PR description (for bigger UI changes)
  • Ensured that the git commit message is a good one
  • Check documentation status (Issue created for outdated help page at help.jabref.org?)

@@ -168,7 +168,7 @@ private void openWindow(Stage mainStage) {
String message = Localization.lang("Error opening file '%0'.", pr.getFile().get().getName()) + "\n"
+ pr.getErrorMessage();

dialogService.showErrorDialogAndWait(Localization.lang("Error opening file"), message);
JabRefGUI.mainFrame.getDialogService().showErrorDialogAndWait(Localization.lang("Error opening file"), message);
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This change doesn't make any sense. You are already in JabRef Gui and already have a DialogService object

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

True, reversed this in commit 7e20650.

@@ -251,7 +251,7 @@ public JabRefFrame frame() {
}

public void output(String s) {
frame.output(s);
frame.getDialogService().notify(s);
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I'm pretty sure BasePanel also has already the dialogServie object

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

You're right, did not see the attribute at first. Done in 23362fa

@r0light r0light changed the title [WIP] Enhanced message log Enhanced message log Mar 28, 2019
Copy link
Member

@tobiasdiez tobiasdiez left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thanks for your PR. I've only two minor suggestions, then we can merge.


/**
* @deprecated try not to initialize a new dialog service but reuse the one constructed in {@link org.jabref.gui.JabRefFrame}.
*/
@Deprecated
public FXDialogService() {
this(null);
this(null, null);
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The null argument will lead to a NPE below in notify. Leaving it as this(null) should work.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Ok, I will fix it in the next commit.

@@ -253,7 +270,8 @@ public boolean showConfirmationDialogWithOptOutAndWait(String title, String cont

@Override
public void notify(String message) {
JabRefGUI.getMainFrame().output(message);
LOGGER.info(message);
DefaultTaskExecutor.runInJavaFXThread(() -> statusLine.fireEvent(new SnackbarEvent(new JFXSnackbarLayout(message), TOAST_MESSAGE_DISPLAY_TIME, null)));
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please remove the runInJavaFXThread. This is a leftover when we had a lot of interaction between Swing and JavaFX code.

Copy link
Member

@Siedlerchr Siedlerchr Mar 28, 2019

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I think this method is still sometimes called from background threads therefore we risk exceptions

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Is there an alternative to this method? I also think it is necessary to run it on the JavaFX thread, for example in SendAsEmailAction.action notify is called from a background thread.

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Usually background tasks are not allowed to communicate things directly. The general principle is that only the hard work is moved to a different task (by using BackgroundTask.wrap(doHardWork)) and the only user interaction should be in the onSuccess and onError handlers that automatically run on the JavaFX thread).

Personally, I would prefer exceptions instead of facing potentially hard to debug threading issues. But for now you can simply leave the runInJavaFXThread call.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Ok, I understand and will keep that in mind.

@r0light r0light changed the title Enhanced message log [WIP] Enhanced message log Apr 2, 2019
@@ -251,7 +251,6 @@ public static void openConsole(File file) throws IOException {
Localization.lang("Error occured while executing the command \"%0\".", commandLoggingText),
Localization.lang("Open console") + " - " + Localization.lang("Error"),
JOptionPane.ERROR_MESSAGE);
JabRefGUI.getMainFrame().getDialogService().notify(null);
}
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I just saw that we seemed to forgot to convert that old swing dialog here. Could you please fix this as well?
dialogService.showErrorDialog or so should work
Thanks!

Copy link
Contributor Author

@r0light r0light Apr 2, 2019

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

did it in f2a31d0, there was also another one in the same class

for (Path file : filesToOpen) {
// Run the actual open in a thread to prevent the program locking until the file is loaded.
BackgroundTask.wrap(() -> openIt(file, dialog.importEntries(), dialog.importStrings(), dialog.importGroups(), dialog.importSelectorWords()))
.onSuccess(fileName -> { dialogService.notify(Localization.lang("Imported from library") + " '" + fileName + "'");})
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

singleLineLambdas usually don't need curly braces

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

fixed it :)

Integer.toString(count), totalCount, Integer.toString(foundCount)));
final String nextStatusMessage = Localization.lang("Looking up %0... - entry %1 out of %2 - found %3",
fetcher.getIdentifierName(), Integer.toString(count), totalCount, Integer.toString(foundCount));
DefaultTaskExecutor.runInJavaFXThread(() -> frame.getDialogService().notify(nextStatusMessage));
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

lookupIdentifiers is executed in a background thread and in order to provide feedback to the user, i used a workaround here and explicitly called DefaultTaskExecutor.runInJavaFXThread
However, i would suggest to completely remove the notifications here, because they do not provide much value

// This import method never throws an IOException:
imports.add(Globals.IMPORT_FORMAT_READER.importUnknownFormat(filename, Globals.getFileUpdateMonitor()));
} else {
frame.output(Localization.lang("Importing in %0 format", importer.get().getName()) + "...");
DefaultTaskExecutor.runInJavaFXThread(() -> frame.getDialogService().notify(Localization.lang("Importing in %0 format", importer.get().getName()) + "..."));
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Also a workaround here and i would suggest to remove the notifications

@r0light
Copy link
Contributor Author

r0light commented Apr 2, 2019

@Siedlerchr @tobiasdiez
I thought while i'm at this anyway, i could also do it properly and checked all calls to DialogService.notify. I refactored all places where the method was called from a background thread, so that i could remove DefaultTaskExecutor.runInJavaFXThread from DialogService.notify.
At two points however it was not as easy, see the review above.
What do you think?

@tobiasdiez
Copy link
Member

Thanks for the update. The BackgroundTask has updateProgress and updateMessage for these cases. However, an implementation along these lines needs further refactoring I guess. In my opinion, we can leave it like that for the moment and merge.

@r0light r0light changed the title [WIP] Enhanced message log Enhanced message log Apr 3, 2019
@r0light
Copy link
Contributor Author

r0light commented Apr 3, 2019

Ok, so maybe a follow-up issue could then be to improve the Identifier lookup and maybe also the fulltext lookup using updateProgress and updateMessage ?
This is ready for merge then, i guess.

@Siedlerchr
Copy link
Member

Yes, to change the identifer lookkup and the other would be a good followup issue

@Siedlerchr Siedlerchr merged commit a273eb1 into JabRef:master Apr 3, 2019
github-actions bot pushed a commit to leitianjian/jabref that referenced this pull request May 24, 2020
2f0d735 Improve localization of DGfP
683d7d1 Create zeitschrift-fur-theologie-und-philosophie.csl (JabRef#4813)
7c82406 always show DOI in aps.csl (JabRef#4820)
1eb531d Update journal-of-international-business-studies.csl (JabRef#4819)
9caf926 Create interdisziplinare-anthropologie.csl (JabRef#4818)
00210e1 UKSW2 (JabRef#4807)
015db6e UKSW1 (JabRef#4800)
f706ef5 Update masarykova-univerzita-pravnicka-fakulta.csl (JabRef#4822)
096108d Update epilepsia.csl (JabRef#4823)
07ebdc3 Update eksploatacja-i-niezawodnosc.csl (JabRef#4824)
3d50f3c Create ABNT-Universidade-Federal-de-Pernambuco-CFCH.csl (JabRef#4798)
df94fa1 Update eksploatacja-i-niezawodnosc.csl (JabRef#4808)
4089be5 Update bulletin-de-la-societe-prehistorique-francaise.csl (JabRef#4810)
f130aa7 Update molecular-biology-and-evolution.csl (JabRef#4814)
86f452f Create heiliger-dienst.csl (JabRef#4815)
5ccd3e9 Update revista-brasileira-de-ciencia-do-solo.csl (JabRef#4817)
0eea734 Fix a delimiter in journal-of-the-royal-society-of-western-australia.csl (JabRef#4811)
1cbe790 Delete heiliger-dienst.csl
19fa29f Create heiliger-dienst.csl (JabRef#4787)
888bad1 Update RMIT Harvard to match Easy Cite (JabRef#4788)
46011dd Create universite-nangui-abrogoua-ufr-sn (JabRef#4676)
174adab Create apa-6th-edition-no-ampersand.csl (JabRef#4767)
03cf65f Create journal-of-plant-protection-research.csl (JabRef#4797)
c749084 Update eksploatacja-i-niezawodnosc.csl (JabRef#4782)
17e1501  Update masarykova-univerzita-pravnicka-fakulta.csl (JabRef#4783)
5596d18 Update revista-brasileira-de-ciencia-do-solo.csl (JabRef#4790)
9c1a381 create csl for the journal Textual Cultures (JabRef#4785)
8345762 Update taylor-and-francis-national-library-of-medicine.csl (JabRef#4786)
5ec1acf Create british-journal-of-criminology.csl (JabRef#4789)
68550ac Update angewandte-chemie.csl (JabRef#4791)
09e2755 Create shock.csl (JabRef#4792)
d46e49e Update antioxidants-and-redox-signaling.csl (JabRef#4793)

git-subtree-dir: src/main/resources/csl-styles
git-subtree-split: 2f0d735
github-actions bot pushed a commit to zesaro/jabref that referenced this pull request May 30, 2020
70beb7b Harvard Lancaster: Fix in-text locator
0709b73 Update informal-logic.csl (JabRef#4831)
d18d133 Update gost-r-7-0-5-2008.csl (JabRef#4829)
cfb5389 Update gost-r-7-0-5-2008-numeric.csl (JabRef#4828)
0fc46ea Update gost-r-7-0-5-2008-numeric-alphabetical.csl (JabRef#4827)
fac26cb Create feminist-theory.csl (JabRef#4830)
a2721e6 Update pravnik.csl, masarykova-univerzita-pravnicka-fakulta.csl, and iso690-full-note-cs.csl (JabRef#4826)
2f0d735 Improve localization of DGfP
683d7d1 Create zeitschrift-fur-theologie-und-philosophie.csl (JabRef#4813)
7c82406 always show DOI in aps.csl (JabRef#4820)
1eb531d Update journal-of-international-business-studies.csl (JabRef#4819)
9caf926 Create interdisziplinare-anthropologie.csl (JabRef#4818)
00210e1 UKSW2 (JabRef#4807)
015db6e UKSW1 (JabRef#4800)
f706ef5 Update masarykova-univerzita-pravnicka-fakulta.csl (JabRef#4822)
096108d Update epilepsia.csl (JabRef#4823)
07ebdc3 Update eksploatacja-i-niezawodnosc.csl (JabRef#4824)
3d50f3c Create ABNT-Universidade-Federal-de-Pernambuco-CFCH.csl (JabRef#4798)
df94fa1 Update eksploatacja-i-niezawodnosc.csl (JabRef#4808)
4089be5 Update bulletin-de-la-societe-prehistorique-francaise.csl (JabRef#4810)
f130aa7 Update molecular-biology-and-evolution.csl (JabRef#4814)
86f452f Create heiliger-dienst.csl (JabRef#4815)
5ccd3e9 Update revista-brasileira-de-ciencia-do-solo.csl (JabRef#4817)
0eea734 Fix a delimiter in journal-of-the-royal-society-of-western-australia.csl (JabRef#4811)
1cbe790 Delete heiliger-dienst.csl
19fa29f Create heiliger-dienst.csl (JabRef#4787)
888bad1 Update RMIT Harvard to match Easy Cite (JabRef#4788)
46011dd Create universite-nangui-abrogoua-ufr-sn (JabRef#4676)
174adab Create apa-6th-edition-no-ampersand.csl (JabRef#4767)
03cf65f Create journal-of-plant-protection-research.csl (JabRef#4797)
c749084 Update eksploatacja-i-niezawodnosc.csl (JabRef#4782)
17e1501  Update masarykova-univerzita-pravnicka-fakulta.csl (JabRef#4783)
5596d18 Update revista-brasileira-de-ciencia-do-solo.csl (JabRef#4790)
9c1a381 create csl for the journal Textual Cultures (JabRef#4785)
8345762 Update taylor-and-francis-national-library-of-medicine.csl (JabRef#4786)
5ec1acf Create british-journal-of-criminology.csl (JabRef#4789)
68550ac Update angewandte-chemie.csl (JabRef#4791)
09e2755 Create shock.csl (JabRef#4792)
d46e49e Update antioxidants-and-redox-signaling.csl (JabRef#4793)

git-subtree-dir: src/main/resources/csl-styles
git-subtree-split: 70beb7b
github-actions bot pushed a commit to CaptainDaVinci/jabref that referenced this pull request Jun 1, 2020
c5f14e2 Update journal-of-plant-ecology.csl (JabRef#4837)
b5d00ab Hotfix: pravnik.csl & iso690-full-note-cs.csl (JabRef#4833)
fb8d48a add PMID and DOI (JabRef#4832)
7ebdfff Update lancaster-university-harvard.csl (JabRef#4836)
8771e21 Create journal-of-clinical-neurology.csl (JabRef#4835)
70beb7b Harvard Lancaster: Fix in-text locator
0709b73 Update informal-logic.csl (JabRef#4831)
d18d133 Update gost-r-7-0-5-2008.csl (JabRef#4829)
cfb5389 Update gost-r-7-0-5-2008-numeric.csl (JabRef#4828)
0fc46ea Update gost-r-7-0-5-2008-numeric-alphabetical.csl (JabRef#4827)
fac26cb Create feminist-theory.csl (JabRef#4830)
a2721e6 Update pravnik.csl, masarykova-univerzita-pravnicka-fakulta.csl, and iso690-full-note-cs.csl (JabRef#4826)
2f0d735 Improve localization of DGfP
683d7d1 Create zeitschrift-fur-theologie-und-philosophie.csl (JabRef#4813)
7c82406 always show DOI in aps.csl (JabRef#4820)
1eb531d Update journal-of-international-business-studies.csl (JabRef#4819)
9caf926 Create interdisziplinare-anthropologie.csl (JabRef#4818)
00210e1 UKSW2 (JabRef#4807)
015db6e UKSW1 (JabRef#4800)
f706ef5 Update masarykova-univerzita-pravnicka-fakulta.csl (JabRef#4822)
096108d Update epilepsia.csl (JabRef#4823)
07ebdc3 Update eksploatacja-i-niezawodnosc.csl (JabRef#4824)
3d50f3c Create ABNT-Universidade-Federal-de-Pernambuco-CFCH.csl (JabRef#4798)
df94fa1 Update eksploatacja-i-niezawodnosc.csl (JabRef#4808)
4089be5 Update bulletin-de-la-societe-prehistorique-francaise.csl (JabRef#4810)
f130aa7 Update molecular-biology-and-evolution.csl (JabRef#4814)
86f452f Create heiliger-dienst.csl (JabRef#4815)
5ccd3e9 Update revista-brasileira-de-ciencia-do-solo.csl (JabRef#4817)
0eea734 Fix a delimiter in journal-of-the-royal-society-of-western-australia.csl (JabRef#4811)
1cbe790 Delete heiliger-dienst.csl
19fa29f Create heiliger-dienst.csl (JabRef#4787)
888bad1 Update RMIT Harvard to match Easy Cite (JabRef#4788)
46011dd Create universite-nangui-abrogoua-ufr-sn (JabRef#4676)
174adab Create apa-6th-edition-no-ampersand.csl (JabRef#4767)
03cf65f Create journal-of-plant-protection-research.csl (JabRef#4797)
c749084 Update eksploatacja-i-niezawodnosc.csl (JabRef#4782)
17e1501  Update masarykova-univerzita-pravnicka-fakulta.csl (JabRef#4783)
5596d18 Update revista-brasileira-de-ciencia-do-solo.csl (JabRef#4790)
9c1a381 create csl for the journal Textual Cultures (JabRef#4785)
8345762 Update taylor-and-francis-national-library-of-medicine.csl (JabRef#4786)
5ec1acf Create british-journal-of-criminology.csl (JabRef#4789)
68550ac Update angewandte-chemie.csl (JabRef#4791)
09e2755 Create shock.csl (JabRef#4792)
d46e49e Update antioxidants-and-redox-signaling.csl (JabRef#4793)

git-subtree-dir: src/main/resources/csl-styles
git-subtree-split: c5f14e2
github-actions bot pushed a commit to dimitra-karadima/jabref that referenced this pull request Jun 1, 2020
c5f14e2 Update journal-of-plant-ecology.csl (JabRef#4837)
b5d00ab Hotfix: pravnik.csl & iso690-full-note-cs.csl (JabRef#4833)
fb8d48a add PMID and DOI (JabRef#4832)
7ebdfff Update lancaster-university-harvard.csl (JabRef#4836)
8771e21 Create journal-of-clinical-neurology.csl (JabRef#4835)
70beb7b Harvard Lancaster: Fix in-text locator
0709b73 Update informal-logic.csl (JabRef#4831)
d18d133 Update gost-r-7-0-5-2008.csl (JabRef#4829)
cfb5389 Update gost-r-7-0-5-2008-numeric.csl (JabRef#4828)
0fc46ea Update gost-r-7-0-5-2008-numeric-alphabetical.csl (JabRef#4827)
fac26cb Create feminist-theory.csl (JabRef#4830)
a2721e6 Update pravnik.csl, masarykova-univerzita-pravnicka-fakulta.csl, and iso690-full-note-cs.csl (JabRef#4826)
2f0d735 Improve localization of DGfP
683d7d1 Create zeitschrift-fur-theologie-und-philosophie.csl (JabRef#4813)
7c82406 always show DOI in aps.csl (JabRef#4820)
1eb531d Update journal-of-international-business-studies.csl (JabRef#4819)
9caf926 Create interdisziplinare-anthropologie.csl (JabRef#4818)
00210e1 UKSW2 (JabRef#4807)
015db6e UKSW1 (JabRef#4800)
f706ef5 Update masarykova-univerzita-pravnicka-fakulta.csl (JabRef#4822)
096108d Update epilepsia.csl (JabRef#4823)
07ebdc3 Update eksploatacja-i-niezawodnosc.csl (JabRef#4824)
3d50f3c Create ABNT-Universidade-Federal-de-Pernambuco-CFCH.csl (JabRef#4798)
df94fa1 Update eksploatacja-i-niezawodnosc.csl (JabRef#4808)
4089be5 Update bulletin-de-la-societe-prehistorique-francaise.csl (JabRef#4810)
f130aa7 Update molecular-biology-and-evolution.csl (JabRef#4814)
86f452f Create heiliger-dienst.csl (JabRef#4815)
5ccd3e9 Update revista-brasileira-de-ciencia-do-solo.csl (JabRef#4817)
0eea734 Fix a delimiter in journal-of-the-royal-society-of-western-australia.csl (JabRef#4811)
1cbe790 Delete heiliger-dienst.csl
19fa29f Create heiliger-dienst.csl (JabRef#4787)
888bad1 Update RMIT Harvard to match Easy Cite (JabRef#4788)
46011dd Create universite-nangui-abrogoua-ufr-sn (JabRef#4676)
174adab Create apa-6th-edition-no-ampersand.csl (JabRef#4767)
03cf65f Create journal-of-plant-protection-research.csl (JabRef#4797)
c749084 Update eksploatacja-i-niezawodnosc.csl (JabRef#4782)
17e1501  Update masarykova-univerzita-pravnicka-fakulta.csl (JabRef#4783)
5596d18 Update revista-brasileira-de-ciencia-do-solo.csl (JabRef#4790)
9c1a381 create csl for the journal Textual Cultures (JabRef#4785)
8345762 Update taylor-and-francis-national-library-of-medicine.csl (JabRef#4786)
5ec1acf Create british-journal-of-criminology.csl (JabRef#4789)
68550ac Update angewandte-chemie.csl (JabRef#4791)
09e2755 Create shock.csl (JabRef#4792)
d46e49e Update antioxidants-and-redox-signaling.csl (JabRef#4793)

git-subtree-dir: src/main/resources/csl-styles
git-subtree-split: c5f14e2
github-actions bot pushed a commit to Xuanxuan-Zou/jabref that referenced this pull request Jun 1, 2020
c5f14e2 Update journal-of-plant-ecology.csl (JabRef#4837)
b5d00ab Hotfix: pravnik.csl & iso690-full-note-cs.csl (JabRef#4833)
fb8d48a add PMID and DOI (JabRef#4832)
7ebdfff Update lancaster-university-harvard.csl (JabRef#4836)
8771e21 Create journal-of-clinical-neurology.csl (JabRef#4835)
70beb7b Harvard Lancaster: Fix in-text locator
0709b73 Update informal-logic.csl (JabRef#4831)
d18d133 Update gost-r-7-0-5-2008.csl (JabRef#4829)
cfb5389 Update gost-r-7-0-5-2008-numeric.csl (JabRef#4828)
0fc46ea Update gost-r-7-0-5-2008-numeric-alphabetical.csl (JabRef#4827)
fac26cb Create feminist-theory.csl (JabRef#4830)
a2721e6 Update pravnik.csl, masarykova-univerzita-pravnicka-fakulta.csl, and iso690-full-note-cs.csl (JabRef#4826)
2f0d735 Improve localization of DGfP
683d7d1 Create zeitschrift-fur-theologie-und-philosophie.csl (JabRef#4813)
7c82406 always show DOI in aps.csl (JabRef#4820)
1eb531d Update journal-of-international-business-studies.csl (JabRef#4819)
9caf926 Create interdisziplinare-anthropologie.csl (JabRef#4818)
00210e1 UKSW2 (JabRef#4807)
015db6e UKSW1 (JabRef#4800)
f706ef5 Update masarykova-univerzita-pravnicka-fakulta.csl (JabRef#4822)
096108d Update epilepsia.csl (JabRef#4823)
07ebdc3 Update eksploatacja-i-niezawodnosc.csl (JabRef#4824)
3d50f3c Create ABNT-Universidade-Federal-de-Pernambuco-CFCH.csl (JabRef#4798)
df94fa1 Update eksploatacja-i-niezawodnosc.csl (JabRef#4808)
4089be5 Update bulletin-de-la-societe-prehistorique-francaise.csl (JabRef#4810)
f130aa7 Update molecular-biology-and-evolution.csl (JabRef#4814)
86f452f Create heiliger-dienst.csl (JabRef#4815)
5ccd3e9 Update revista-brasileira-de-ciencia-do-solo.csl (JabRef#4817)
0eea734 Fix a delimiter in journal-of-the-royal-society-of-western-australia.csl (JabRef#4811)
1cbe790 Delete heiliger-dienst.csl
19fa29f Create heiliger-dienst.csl (JabRef#4787)
888bad1 Update RMIT Harvard to match Easy Cite (JabRef#4788)
46011dd Create universite-nangui-abrogoua-ufr-sn (JabRef#4676)
174adab Create apa-6th-edition-no-ampersand.csl (JabRef#4767)
03cf65f Create journal-of-plant-protection-research.csl (JabRef#4797)
c749084 Update eksploatacja-i-niezawodnosc.csl (JabRef#4782)
17e1501  Update masarykova-univerzita-pravnicka-fakulta.csl (JabRef#4783)
5596d18 Update revista-brasileira-de-ciencia-do-solo.csl (JabRef#4790)
9c1a381 create csl for the journal Textual Cultures (JabRef#4785)
8345762 Update taylor-and-francis-national-library-of-medicine.csl (JabRef#4786)
5ec1acf Create british-journal-of-criminology.csl (JabRef#4789)
68550ac Update angewandte-chemie.csl (JabRef#4791)
09e2755 Create shock.csl (JabRef#4792)
d46e49e Update antioxidants-and-redox-signaling.csl (JabRef#4793)

git-subtree-dir: src/main/resources/csl-styles
git-subtree-split: c5f14e2
github-actions bot pushed a commit to felixbohnacker/jabref that referenced this pull request Jun 1, 2020
c5f14e2 Update journal-of-plant-ecology.csl (JabRef#4837)
b5d00ab Hotfix: pravnik.csl & iso690-full-note-cs.csl (JabRef#4833)
fb8d48a add PMID and DOI (JabRef#4832)
7ebdfff Update lancaster-university-harvard.csl (JabRef#4836)
8771e21 Create journal-of-clinical-neurology.csl (JabRef#4835)
70beb7b Harvard Lancaster: Fix in-text locator
0709b73 Update informal-logic.csl (JabRef#4831)
d18d133 Update gost-r-7-0-5-2008.csl (JabRef#4829)
cfb5389 Update gost-r-7-0-5-2008-numeric.csl (JabRef#4828)
0fc46ea Update gost-r-7-0-5-2008-numeric-alphabetical.csl (JabRef#4827)
fac26cb Create feminist-theory.csl (JabRef#4830)
a2721e6 Update pravnik.csl, masarykova-univerzita-pravnicka-fakulta.csl, and iso690-full-note-cs.csl (JabRef#4826)
2f0d735 Improve localization of DGfP
683d7d1 Create zeitschrift-fur-theologie-und-philosophie.csl (JabRef#4813)
7c82406 always show DOI in aps.csl (JabRef#4820)
1eb531d Update journal-of-international-business-studies.csl (JabRef#4819)
9caf926 Create interdisziplinare-anthropologie.csl (JabRef#4818)
00210e1 UKSW2 (JabRef#4807)
015db6e UKSW1 (JabRef#4800)
f706ef5 Update masarykova-univerzita-pravnicka-fakulta.csl (JabRef#4822)
096108d Update epilepsia.csl (JabRef#4823)
07ebdc3 Update eksploatacja-i-niezawodnosc.csl (JabRef#4824)
3d50f3c Create ABNT-Universidade-Federal-de-Pernambuco-CFCH.csl (JabRef#4798)
df94fa1 Update eksploatacja-i-niezawodnosc.csl (JabRef#4808)
4089be5 Update bulletin-de-la-societe-prehistorique-francaise.csl (JabRef#4810)
f130aa7 Update molecular-biology-and-evolution.csl (JabRef#4814)
86f452f Create heiliger-dienst.csl (JabRef#4815)
5ccd3e9 Update revista-brasileira-de-ciencia-do-solo.csl (JabRef#4817)
0eea734 Fix a delimiter in journal-of-the-royal-society-of-western-australia.csl (JabRef#4811)
1cbe790 Delete heiliger-dienst.csl
19fa29f Create heiliger-dienst.csl (JabRef#4787)
888bad1 Update RMIT Harvard to match Easy Cite (JabRef#4788)
46011dd Create universite-nangui-abrogoua-ufr-sn (JabRef#4676)
174adab Create apa-6th-edition-no-ampersand.csl (JabRef#4767)
03cf65f Create journal-of-plant-protection-research.csl (JabRef#4797)
c749084 Update eksploatacja-i-niezawodnosc.csl (JabRef#4782)
17e1501  Update masarykova-univerzita-pravnicka-fakulta.csl (JabRef#4783)
5596d18 Update revista-brasileira-de-ciencia-do-solo.csl (JabRef#4790)
9c1a381 create csl for the journal Textual Cultures (JabRef#4785)
8345762 Update taylor-and-francis-national-library-of-medicine.csl (JabRef#4786)
5ec1acf Create british-journal-of-criminology.csl (JabRef#4789)
68550ac Update angewandte-chemie.csl (JabRef#4791)
09e2755 Create shock.csl (JabRef#4792)
d46e49e Update antioxidants-and-redox-signaling.csl (JabRef#4793)

git-subtree-dir: src/main/resources/csl-styles
git-subtree-split: c5f14e2
github-actions bot pushed a commit to calixtus/jabref that referenced this pull request Jun 1, 2020
c5f14e2 Update journal-of-plant-ecology.csl (JabRef#4837)
b5d00ab Hotfix: pravnik.csl & iso690-full-note-cs.csl (JabRef#4833)
fb8d48a add PMID and DOI (JabRef#4832)
7ebdfff Update lancaster-university-harvard.csl (JabRef#4836)
8771e21 Create journal-of-clinical-neurology.csl (JabRef#4835)
70beb7b Harvard Lancaster: Fix in-text locator
0709b73 Update informal-logic.csl (JabRef#4831)
d18d133 Update gost-r-7-0-5-2008.csl (JabRef#4829)
cfb5389 Update gost-r-7-0-5-2008-numeric.csl (JabRef#4828)
0fc46ea Update gost-r-7-0-5-2008-numeric-alphabetical.csl (JabRef#4827)
fac26cb Create feminist-theory.csl (JabRef#4830)
a2721e6 Update pravnik.csl, masarykova-univerzita-pravnicka-fakulta.csl, and iso690-full-note-cs.csl (JabRef#4826)
2f0d735 Improve localization of DGfP
683d7d1 Create zeitschrift-fur-theologie-und-philosophie.csl (JabRef#4813)
7c82406 always show DOI in aps.csl (JabRef#4820)
1eb531d Update journal-of-international-business-studies.csl (JabRef#4819)
9caf926 Create interdisziplinare-anthropologie.csl (JabRef#4818)
00210e1 UKSW2 (JabRef#4807)
015db6e UKSW1 (JabRef#4800)
f706ef5 Update masarykova-univerzita-pravnicka-fakulta.csl (JabRef#4822)
096108d Update epilepsia.csl (JabRef#4823)
07ebdc3 Update eksploatacja-i-niezawodnosc.csl (JabRef#4824)
3d50f3c Create ABNT-Universidade-Federal-de-Pernambuco-CFCH.csl (JabRef#4798)
df94fa1 Update eksploatacja-i-niezawodnosc.csl (JabRef#4808)
4089be5 Update bulletin-de-la-societe-prehistorique-francaise.csl (JabRef#4810)
f130aa7 Update molecular-biology-and-evolution.csl (JabRef#4814)
86f452f Create heiliger-dienst.csl (JabRef#4815)
5ccd3e9 Update revista-brasileira-de-ciencia-do-solo.csl (JabRef#4817)
0eea734 Fix a delimiter in journal-of-the-royal-society-of-western-australia.csl (JabRef#4811)
1cbe790 Delete heiliger-dienst.csl
19fa29f Create heiliger-dienst.csl (JabRef#4787)
888bad1 Update RMIT Harvard to match Easy Cite (JabRef#4788)
46011dd Create universite-nangui-abrogoua-ufr-sn (JabRef#4676)
174adab Create apa-6th-edition-no-ampersand.csl (JabRef#4767)
03cf65f Create journal-of-plant-protection-research.csl (JabRef#4797)
c749084 Update eksploatacja-i-niezawodnosc.csl (JabRef#4782)
17e1501  Update masarykova-univerzita-pravnicka-fakulta.csl (JabRef#4783)
5596d18 Update revista-brasileira-de-ciencia-do-solo.csl (JabRef#4790)
9c1a381 create csl for the journal Textual Cultures (JabRef#4785)
8345762 Update taylor-and-francis-national-library-of-medicine.csl (JabRef#4786)
5ec1acf Create british-journal-of-criminology.csl (JabRef#4789)
68550ac Update angewandte-chemie.csl (JabRef#4791)
09e2755 Create shock.csl (JabRef#4792)
d46e49e Update antioxidants-and-redox-signaling.csl (JabRef#4793)

git-subtree-dir: src/main/resources/csl-styles
git-subtree-split: c5f14e2
github-actions bot pushed a commit to ShikunXiong/jabref that referenced this pull request Jun 1, 2020
c5f14e2 Update journal-of-plant-ecology.csl (JabRef#4837)
b5d00ab Hotfix: pravnik.csl & iso690-full-note-cs.csl (JabRef#4833)
fb8d48a add PMID and DOI (JabRef#4832)
7ebdfff Update lancaster-university-harvard.csl (JabRef#4836)
8771e21 Create journal-of-clinical-neurology.csl (JabRef#4835)
70beb7b Harvard Lancaster: Fix in-text locator
0709b73 Update informal-logic.csl (JabRef#4831)
d18d133 Update gost-r-7-0-5-2008.csl (JabRef#4829)
cfb5389 Update gost-r-7-0-5-2008-numeric.csl (JabRef#4828)
0fc46ea Update gost-r-7-0-5-2008-numeric-alphabetical.csl (JabRef#4827)
fac26cb Create feminist-theory.csl (JabRef#4830)
a2721e6 Update pravnik.csl, masarykova-univerzita-pravnicka-fakulta.csl, and iso690-full-note-cs.csl (JabRef#4826)
2f0d735 Improve localization of DGfP
683d7d1 Create zeitschrift-fur-theologie-und-philosophie.csl (JabRef#4813)
7c82406 always show DOI in aps.csl (JabRef#4820)
1eb531d Update journal-of-international-business-studies.csl (JabRef#4819)
9caf926 Create interdisziplinare-anthropologie.csl (JabRef#4818)
00210e1 UKSW2 (JabRef#4807)
015db6e UKSW1 (JabRef#4800)
f706ef5 Update masarykova-univerzita-pravnicka-fakulta.csl (JabRef#4822)
096108d Update epilepsia.csl (JabRef#4823)
07ebdc3 Update eksploatacja-i-niezawodnosc.csl (JabRef#4824)
3d50f3c Create ABNT-Universidade-Federal-de-Pernambuco-CFCH.csl (JabRef#4798)
df94fa1 Update eksploatacja-i-niezawodnosc.csl (JabRef#4808)
4089be5 Update bulletin-de-la-societe-prehistorique-francaise.csl (JabRef#4810)
f130aa7 Update molecular-biology-and-evolution.csl (JabRef#4814)
86f452f Create heiliger-dienst.csl (JabRef#4815)
5ccd3e9 Update revista-brasileira-de-ciencia-do-solo.csl (JabRef#4817)
0eea734 Fix a delimiter in journal-of-the-royal-society-of-western-australia.csl (JabRef#4811)
1cbe790 Delete heiliger-dienst.csl
19fa29f Create heiliger-dienst.csl (JabRef#4787)
888bad1 Update RMIT Harvard to match Easy Cite (JabRef#4788)
46011dd Create universite-nangui-abrogoua-ufr-sn (JabRef#4676)
174adab Create apa-6th-edition-no-ampersand.csl (JabRef#4767)
03cf65f Create journal-of-plant-protection-research.csl (JabRef#4797)
c749084 Update eksploatacja-i-niezawodnosc.csl (JabRef#4782)
17e1501  Update masarykova-univerzita-pravnicka-fakulta.csl (JabRef#4783)
5596d18 Update revista-brasileira-de-ciencia-do-solo.csl (JabRef#4790)
9c1a381 create csl for the journal Textual Cultures (JabRef#4785)
8345762 Update taylor-and-francis-national-library-of-medicine.csl (JabRef#4786)
5ec1acf Create british-journal-of-criminology.csl (JabRef#4789)
68550ac Update angewandte-chemie.csl (JabRef#4791)
09e2755 Create shock.csl (JabRef#4792)
d46e49e Update antioxidants-and-redox-signaling.csl (JabRef#4793)

git-subtree-dir: src/main/resources/csl-styles
git-subtree-split: c5f14e2
github-actions bot pushed a commit to eetian/jabref that referenced this pull request Jun 1, 2020
c5f14e2 Update journal-of-plant-ecology.csl (JabRef#4837)
b5d00ab Hotfix: pravnik.csl & iso690-full-note-cs.csl (JabRef#4833)
fb8d48a add PMID and DOI (JabRef#4832)
7ebdfff Update lancaster-university-harvard.csl (JabRef#4836)
8771e21 Create journal-of-clinical-neurology.csl (JabRef#4835)
70beb7b Harvard Lancaster: Fix in-text locator
0709b73 Update informal-logic.csl (JabRef#4831)
d18d133 Update gost-r-7-0-5-2008.csl (JabRef#4829)
cfb5389 Update gost-r-7-0-5-2008-numeric.csl (JabRef#4828)
0fc46ea Update gost-r-7-0-5-2008-numeric-alphabetical.csl (JabRef#4827)
fac26cb Create feminist-theory.csl (JabRef#4830)
a2721e6 Update pravnik.csl, masarykova-univerzita-pravnicka-fakulta.csl, and iso690-full-note-cs.csl (JabRef#4826)
2f0d735 Improve localization of DGfP
683d7d1 Create zeitschrift-fur-theologie-und-philosophie.csl (JabRef#4813)
7c82406 always show DOI in aps.csl (JabRef#4820)
1eb531d Update journal-of-international-business-studies.csl (JabRef#4819)
9caf926 Create interdisziplinare-anthropologie.csl (JabRef#4818)
00210e1 UKSW2 (JabRef#4807)
015db6e UKSW1 (JabRef#4800)
f706ef5 Update masarykova-univerzita-pravnicka-fakulta.csl (JabRef#4822)
096108d Update epilepsia.csl (JabRef#4823)
07ebdc3 Update eksploatacja-i-niezawodnosc.csl (JabRef#4824)
3d50f3c Create ABNT-Universidade-Federal-de-Pernambuco-CFCH.csl (JabRef#4798)
df94fa1 Update eksploatacja-i-niezawodnosc.csl (JabRef#4808)
4089be5 Update bulletin-de-la-societe-prehistorique-francaise.csl (JabRef#4810)
f130aa7 Update molecular-biology-and-evolution.csl (JabRef#4814)
86f452f Create heiliger-dienst.csl (JabRef#4815)
5ccd3e9 Update revista-brasileira-de-ciencia-do-solo.csl (JabRef#4817)
0eea734 Fix a delimiter in journal-of-the-royal-society-of-western-australia.csl (JabRef#4811)
1cbe790 Delete heiliger-dienst.csl
19fa29f Create heiliger-dienst.csl (JabRef#4787)
888bad1 Update RMIT Harvard to match Easy Cite (JabRef#4788)
46011dd Create universite-nangui-abrogoua-ufr-sn (JabRef#4676)
174adab Create apa-6th-edition-no-ampersand.csl (JabRef#4767)
03cf65f Create journal-of-plant-protection-research.csl (JabRef#4797)
c749084 Update eksploatacja-i-niezawodnosc.csl (JabRef#4782)
17e1501  Update masarykova-univerzita-pravnicka-fakulta.csl (JabRef#4783)
5596d18 Update revista-brasileira-de-ciencia-do-solo.csl (JabRef#4790)
9c1a381 create csl for the journal Textual Cultures (JabRef#4785)
8345762 Update taylor-and-francis-national-library-of-medicine.csl (JabRef#4786)
5ec1acf Create british-journal-of-criminology.csl (JabRef#4789)
68550ac Update angewandte-chemie.csl (JabRef#4791)
09e2755 Create shock.csl (JabRef#4792)
d46e49e Update antioxidants-and-redox-signaling.csl (JabRef#4793)

git-subtree-dir: src/main/resources/csl-styles
git-subtree-split: c5f14e2
github-actions bot pushed a commit that referenced this pull request Jun 1, 2020
c5f14e2 Update journal-of-plant-ecology.csl (#4837)
b5d00ab Hotfix: pravnik.csl & iso690-full-note-cs.csl (#4833)
fb8d48a add PMID and DOI (#4832)
7ebdfff Update lancaster-university-harvard.csl (#4836)
8771e21 Create journal-of-clinical-neurology.csl (#4835)
70beb7b Harvard Lancaster: Fix in-text locator
0709b73 Update informal-logic.csl (#4831)
d18d133 Update gost-r-7-0-5-2008.csl (#4829)
cfb5389 Update gost-r-7-0-5-2008-numeric.csl (#4828)
0fc46ea Update gost-r-7-0-5-2008-numeric-alphabetical.csl (#4827)
fac26cb Create feminist-theory.csl (#4830)
a2721e6 Update pravnik.csl, masarykova-univerzita-pravnicka-fakulta.csl, and iso690-full-note-cs.csl (#4826)
2f0d735 Improve localization of DGfP
683d7d1 Create zeitschrift-fur-theologie-und-philosophie.csl (#4813)
7c82406 always show DOI in aps.csl (#4820)
1eb531d Update journal-of-international-business-studies.csl (#4819)
9caf926 Create interdisziplinare-anthropologie.csl (#4818)
00210e1 UKSW2 (#4807)
015db6e UKSW1 (#4800)
f706ef5 Update masarykova-univerzita-pravnicka-fakulta.csl (#4822)
096108d Update epilepsia.csl (#4823)
07ebdc3 Update eksploatacja-i-niezawodnosc.csl (#4824)
3d50f3c Create ABNT-Universidade-Federal-de-Pernambuco-CFCH.csl (#4798)
df94fa1 Update eksploatacja-i-niezawodnosc.csl (#4808)
4089be5 Update bulletin-de-la-societe-prehistorique-francaise.csl (#4810)
f130aa7 Update molecular-biology-and-evolution.csl (#4814)
86f452f Create heiliger-dienst.csl (#4815)
5ccd3e9 Update revista-brasileira-de-ciencia-do-solo.csl (#4817)
0eea734 Fix a delimiter in journal-of-the-royal-society-of-western-australia.csl (#4811)
1cbe790 Delete heiliger-dienst.csl
19fa29f Create heiliger-dienst.csl (#4787)
888bad1 Update RMIT Harvard to match Easy Cite (#4788)
46011dd Create universite-nangui-abrogoua-ufr-sn (#4676)
174adab Create apa-6th-edition-no-ampersand.csl (#4767)
03cf65f Create journal-of-plant-protection-research.csl (#4797)
c749084 Update eksploatacja-i-niezawodnosc.csl (#4782)
17e1501  Update masarykova-univerzita-pravnicka-fakulta.csl (#4783)
5596d18 Update revista-brasileira-de-ciencia-do-solo.csl (#4790)
9c1a381 create csl for the journal Textual Cultures (#4785)
8345762 Update taylor-and-francis-national-library-of-medicine.csl (#4786)
5ec1acf Create british-journal-of-criminology.csl (#4789)
68550ac Update angewandte-chemie.csl (#4791)
09e2755 Create shock.csl (#4792)
d46e49e Update antioxidants-and-redox-signaling.csl (#4793)

git-subtree-dir: src/main/resources/csl-styles
git-subtree-split: c5f14e2
github-actions bot pushed a commit to NikodemKch/jabref-1 that referenced this pull request Jun 1, 2020
c5f14e2 Update journal-of-plant-ecology.csl (JabRef#4837)
b5d00ab Hotfix: pravnik.csl & iso690-full-note-cs.csl (JabRef#4833)
fb8d48a add PMID and DOI (JabRef#4832)
7ebdfff Update lancaster-university-harvard.csl (JabRef#4836)
8771e21 Create journal-of-clinical-neurology.csl (JabRef#4835)
70beb7b Harvard Lancaster: Fix in-text locator
0709b73 Update informal-logic.csl (JabRef#4831)
d18d133 Update gost-r-7-0-5-2008.csl (JabRef#4829)
cfb5389 Update gost-r-7-0-5-2008-numeric.csl (JabRef#4828)
0fc46ea Update gost-r-7-0-5-2008-numeric-alphabetical.csl (JabRef#4827)
fac26cb Create feminist-theory.csl (JabRef#4830)
a2721e6 Update pravnik.csl, masarykova-univerzita-pravnicka-fakulta.csl, and iso690-full-note-cs.csl (JabRef#4826)
2f0d735 Improve localization of DGfP
683d7d1 Create zeitschrift-fur-theologie-und-philosophie.csl (JabRef#4813)
7c82406 always show DOI in aps.csl (JabRef#4820)
1eb531d Update journal-of-international-business-studies.csl (JabRef#4819)
9caf926 Create interdisziplinare-anthropologie.csl (JabRef#4818)
00210e1 UKSW2 (JabRef#4807)
015db6e UKSW1 (JabRef#4800)
f706ef5 Update masarykova-univerzita-pravnicka-fakulta.csl (JabRef#4822)
096108d Update epilepsia.csl (JabRef#4823)
07ebdc3 Update eksploatacja-i-niezawodnosc.csl (JabRef#4824)
3d50f3c Create ABNT-Universidade-Federal-de-Pernambuco-CFCH.csl (JabRef#4798)
df94fa1 Update eksploatacja-i-niezawodnosc.csl (JabRef#4808)
4089be5 Update bulletin-de-la-societe-prehistorique-francaise.csl (JabRef#4810)
f130aa7 Update molecular-biology-and-evolution.csl (JabRef#4814)
86f452f Create heiliger-dienst.csl (JabRef#4815)
5ccd3e9 Update revista-brasileira-de-ciencia-do-solo.csl (JabRef#4817)
0eea734 Fix a delimiter in journal-of-the-royal-society-of-western-australia.csl (JabRef#4811)
1cbe790 Delete heiliger-dienst.csl
19fa29f Create heiliger-dienst.csl (JabRef#4787)
888bad1 Update RMIT Harvard to match Easy Cite (JabRef#4788)
46011dd Create universite-nangui-abrogoua-ufr-sn (JabRef#4676)
174adab Create apa-6th-edition-no-ampersand.csl (JabRef#4767)
03cf65f Create journal-of-plant-protection-research.csl (JabRef#4797)
c749084 Update eksploatacja-i-niezawodnosc.csl (JabRef#4782)
17e1501  Update masarykova-univerzita-pravnicka-fakulta.csl (JabRef#4783)
5596d18 Update revista-brasileira-de-ciencia-do-solo.csl (JabRef#4790)
9c1a381 create csl for the journal Textual Cultures (JabRef#4785)
8345762 Update taylor-and-francis-national-library-of-medicine.csl (JabRef#4786)
5ec1acf Create british-journal-of-criminology.csl (JabRef#4789)
68550ac Update angewandte-chemie.csl (JabRef#4791)
09e2755 Create shock.csl (JabRef#4792)
d46e49e Update antioxidants-and-redox-signaling.csl (JabRef#4793)

git-subtree-dir: src/main/resources/csl-styles
git-subtree-split: c5f14e2
github-actions bot pushed a commit to dextep/jabref that referenced this pull request Jun 1, 2020
c5f14e2 Update journal-of-plant-ecology.csl (JabRef#4837)
b5d00ab Hotfix: pravnik.csl & iso690-full-note-cs.csl (JabRef#4833)
fb8d48a add PMID and DOI (JabRef#4832)
7ebdfff Update lancaster-university-harvard.csl (JabRef#4836)
8771e21 Create journal-of-clinical-neurology.csl (JabRef#4835)
70beb7b Harvard Lancaster: Fix in-text locator
0709b73 Update informal-logic.csl (JabRef#4831)
d18d133 Update gost-r-7-0-5-2008.csl (JabRef#4829)
cfb5389 Update gost-r-7-0-5-2008-numeric.csl (JabRef#4828)
0fc46ea Update gost-r-7-0-5-2008-numeric-alphabetical.csl (JabRef#4827)
fac26cb Create feminist-theory.csl (JabRef#4830)
a2721e6 Update pravnik.csl, masarykova-univerzita-pravnicka-fakulta.csl, and iso690-full-note-cs.csl (JabRef#4826)
2f0d735 Improve localization of DGfP
683d7d1 Create zeitschrift-fur-theologie-und-philosophie.csl (JabRef#4813)
7c82406 always show DOI in aps.csl (JabRef#4820)
1eb531d Update journal-of-international-business-studies.csl (JabRef#4819)
9caf926 Create interdisziplinare-anthropologie.csl (JabRef#4818)
00210e1 UKSW2 (JabRef#4807)
015db6e UKSW1 (JabRef#4800)
f706ef5 Update masarykova-univerzita-pravnicka-fakulta.csl (JabRef#4822)
096108d Update epilepsia.csl (JabRef#4823)
07ebdc3 Update eksploatacja-i-niezawodnosc.csl (JabRef#4824)
3d50f3c Create ABNT-Universidade-Federal-de-Pernambuco-CFCH.csl (JabRef#4798)
df94fa1 Update eksploatacja-i-niezawodnosc.csl (JabRef#4808)
4089be5 Update bulletin-de-la-societe-prehistorique-francaise.csl (JabRef#4810)
f130aa7 Update molecular-biology-and-evolution.csl (JabRef#4814)
86f452f Create heiliger-dienst.csl (JabRef#4815)
5ccd3e9 Update revista-brasileira-de-ciencia-do-solo.csl (JabRef#4817)
0eea734 Fix a delimiter in journal-of-the-royal-society-of-western-australia.csl (JabRef#4811)
1cbe790 Delete heiliger-dienst.csl
19fa29f Create heiliger-dienst.csl (JabRef#4787)
888bad1 Update RMIT Harvard to match Easy Cite (JabRef#4788)
46011dd Create universite-nangui-abrogoua-ufr-sn (JabRef#4676)
174adab Create apa-6th-edition-no-ampersand.csl (JabRef#4767)
03cf65f Create journal-of-plant-protection-research.csl (JabRef#4797)
c749084 Update eksploatacja-i-niezawodnosc.csl (JabRef#4782)
17e1501  Update masarykova-univerzita-pravnicka-fakulta.csl (JabRef#4783)
5596d18 Update revista-brasileira-de-ciencia-do-solo.csl (JabRef#4790)
9c1a381 create csl for the journal Textual Cultures (JabRef#4785)
8345762 Update taylor-and-francis-national-library-of-medicine.csl (JabRef#4786)
5ec1acf Create british-journal-of-criminology.csl (JabRef#4789)
68550ac Update angewandte-chemie.csl (JabRef#4791)
09e2755 Create shock.csl (JabRef#4792)
d46e49e Update antioxidants-and-redox-signaling.csl (JabRef#4793)

git-subtree-dir: src/main/resources/csl-styles
git-subtree-split: c5f14e2
github-actions bot pushed a commit to joe9111/jabref that referenced this pull request Jun 1, 2020
c5f14e2 Update journal-of-plant-ecology.csl (JabRef#4837)
b5d00ab Hotfix: pravnik.csl & iso690-full-note-cs.csl (JabRef#4833)
fb8d48a add PMID and DOI (JabRef#4832)
7ebdfff Update lancaster-university-harvard.csl (JabRef#4836)
8771e21 Create journal-of-clinical-neurology.csl (JabRef#4835)
70beb7b Harvard Lancaster: Fix in-text locator
0709b73 Update informal-logic.csl (JabRef#4831)
d18d133 Update gost-r-7-0-5-2008.csl (JabRef#4829)
cfb5389 Update gost-r-7-0-5-2008-numeric.csl (JabRef#4828)
0fc46ea Update gost-r-7-0-5-2008-numeric-alphabetical.csl (JabRef#4827)
fac26cb Create feminist-theory.csl (JabRef#4830)
a2721e6 Update pravnik.csl, masarykova-univerzita-pravnicka-fakulta.csl, and iso690-full-note-cs.csl (JabRef#4826)
2f0d735 Improve localization of DGfP
683d7d1 Create zeitschrift-fur-theologie-und-philosophie.csl (JabRef#4813)
7c82406 always show DOI in aps.csl (JabRef#4820)
1eb531d Update journal-of-international-business-studies.csl (JabRef#4819)
9caf926 Create interdisziplinare-anthropologie.csl (JabRef#4818)
00210e1 UKSW2 (JabRef#4807)
015db6e UKSW1 (JabRef#4800)
f706ef5 Update masarykova-univerzita-pravnicka-fakulta.csl (JabRef#4822)
096108d Update epilepsia.csl (JabRef#4823)
07ebdc3 Update eksploatacja-i-niezawodnosc.csl (JabRef#4824)
3d50f3c Create ABNT-Universidade-Federal-de-Pernambuco-CFCH.csl (JabRef#4798)
df94fa1 Update eksploatacja-i-niezawodnosc.csl (JabRef#4808)
4089be5 Update bulletin-de-la-societe-prehistorique-francaise.csl (JabRef#4810)
f130aa7 Update molecular-biology-and-evolution.csl (JabRef#4814)
86f452f Create heiliger-dienst.csl (JabRef#4815)
5ccd3e9 Update revista-brasileira-de-ciencia-do-solo.csl (JabRef#4817)
0eea734 Fix a delimiter in journal-of-the-royal-society-of-western-australia.csl (JabRef#4811)
1cbe790 Delete heiliger-dienst.csl
19fa29f Create heiliger-dienst.csl (JabRef#4787)
888bad1 Update RMIT Harvard to match Easy Cite (JabRef#4788)
46011dd Create universite-nangui-abrogoua-ufr-sn (JabRef#4676)
174adab Create apa-6th-edition-no-ampersand.csl (JabRef#4767)
03cf65f Create journal-of-plant-protection-research.csl (JabRef#4797)
c749084 Update eksploatacja-i-niezawodnosc.csl (JabRef#4782)
17e1501  Update masarykova-univerzita-pravnicka-fakulta.csl (JabRef#4783)
5596d18 Update revista-brasileira-de-ciencia-do-solo.csl (JabRef#4790)
9c1a381 create csl for the journal Textual Cultures (JabRef#4785)
8345762 Update taylor-and-francis-national-library-of-medicine.csl (JabRef#4786)
5ec1acf Create british-journal-of-criminology.csl (JabRef#4789)
68550ac Update angewandte-chemie.csl (JabRef#4791)
09e2755 Create shock.csl (JabRef#4792)
d46e49e Update antioxidants-and-redox-signaling.csl (JabRef#4793)

git-subtree-dir: src/main/resources/csl-styles
git-subtree-split: c5f14e2
Siedlerchr pushed a commit that referenced this pull request Aug 22, 2020
* Squashed 'src/main/resources/csl-styles/' changes from 586e0b8..c5f14e2

c5f14e2 Update journal-of-plant-ecology.csl (#4837)
b5d00ab Hotfix: pravnik.csl & iso690-full-note-cs.csl (#4833)
fb8d48a add PMID and DOI (#4832)
7ebdfff Update lancaster-university-harvard.csl (#4836)
8771e21 Create journal-of-clinical-neurology.csl (#4835)
70beb7b Harvard Lancaster: Fix in-text locator
0709b73 Update informal-logic.csl (#4831)
d18d133 Update gost-r-7-0-5-2008.csl (#4829)
cfb5389 Update gost-r-7-0-5-2008-numeric.csl (#4828)
0fc46ea Update gost-r-7-0-5-2008-numeric-alphabetical.csl (#4827)
fac26cb Create feminist-theory.csl (#4830)
a2721e6 Update pravnik.csl, masarykova-univerzita-pravnicka-fakulta.csl, and iso690-full-note-cs.csl (#4826)
2f0d735 Improve localization of DGfP
683d7d1 Create zeitschrift-fur-theologie-und-philosophie.csl (#4813)
7c82406 always show DOI in aps.csl (#4820)
1eb531d Update journal-of-international-business-studies.csl (#4819)
9caf926 Create interdisziplinare-anthropologie.csl (#4818)
00210e1 UKSW2 (#4807)
015db6e UKSW1 (#4800)
f706ef5 Update masarykova-univerzita-pravnicka-fakulta.csl (#4822)
096108d Update epilepsia.csl (#4823)
07ebdc3 Update eksploatacja-i-niezawodnosc.csl (#4824)
3d50f3c Create ABNT-Universidade-Federal-de-Pernambuco-CFCH.csl (#4798)
df94fa1 Update eksploatacja-i-niezawodnosc.csl (#4808)
4089be5 Update bulletin-de-la-societe-prehistorique-francaise.csl (#4810)
f130aa7 Update molecular-biology-and-evolution.csl (#4814)
86f452f Create heiliger-dienst.csl (#4815)
5ccd3e9 Update revista-brasileira-de-ciencia-do-solo.csl (#4817)
0eea734 Fix a delimiter in journal-of-the-royal-society-of-western-australia.csl (#4811)
1cbe790 Delete heiliger-dienst.csl
19fa29f Create heiliger-dienst.csl (#4787)
888bad1 Update RMIT Harvard to match Easy Cite (#4788)
46011dd Create universite-nangui-abrogoua-ufr-sn (#4676)
174adab Create apa-6th-edition-no-ampersand.csl (#4767)
03cf65f Create journal-of-plant-protection-research.csl (#4797)
c749084 Update eksploatacja-i-niezawodnosc.csl (#4782)
17e1501  Update masarykova-univerzita-pravnicka-fakulta.csl (#4783)
5596d18 Update revista-brasileira-de-ciencia-do-solo.csl (#4790)
9c1a381 create csl for the journal Textual Cultures (#4785)
8345762 Update taylor-and-francis-national-library-of-medicine.csl (#4786)
5ec1acf Create british-journal-of-criminology.csl (#4789)
68550ac Update angewandte-chemie.csl (#4791)
09e2755 Create shock.csl (#4792)
d46e49e Update antioxidants-and-redox-signaling.csl (#4793)

git-subtree-dir: src/main/resources/csl-styles
git-subtree-split: c5f14e2

* Squashed 'src/main/resources/csl-styles/' changes from c5f14e2..716f635

716f635 Update changes in Harvard-Stellenbosch (#4862)
a6a9a1a Create alkoholizmus-a-drogove-zavislosti.csl (#4859)
0560ca0 Update journal-of-the-american-college-of-surgeons.csl (#4858)
9e16631 create independent style for cellular-and-molecular-gastroenterology-and-hepatology.csl (#4852)
87b0853 Update antiquity.csl (#4841)
cb4e7f7 Update heart-rhythm.csl (#4850)
b3b55ee Create iisue-moderno (#4846)
63973a7 Create etasr.csl (#4848)
9942138 Create style for Journal of Vertebrate Biology (#4849)
7c7f3d3 Add Future Medicine dependents (#4838)
abe2066 Update methods-of-information-in-medicine.csl (#4847)
c64d98b create independent style for new-zealand-journal-of-forestry-science (#4844)
28265f9 Create continuity-and-change.csl (#4839)
d065fdd Create journal-of-clinical-ethics.csl (#4842)
b9fbfa3 Update future-medicine.csl (#4843)
ceb56fa Create future-medicine.csl (#4834)

git-subtree-dir: src/main/resources/csl-styles
git-subtree-split: 716f635

* Squashed 'src/main/resources/csl-styles/' changes from 716f635..a995c63

a995c63 Create errata.csl (#4894)
883b9cd Update archeologie-medievale.csl (#4892)
a942b5c Update rmit-university-harvard.csl (#4890)
5d535fc Update universidade-do-porto-faculdade-de-engenharia-chicago.csl (#4891)
f2a8fe3 Fix AVMA style
c5a2d7e Create universidade-do-porto-faculdade-de-engenharia-chicago.csl (#4872)
9f106eb Update rmit-university-harvard.csl (#4884)
5213c2f Update universitetet-i-oslo-rettsvitenskap.csl (#4886)
7e0828d Update uclouvain-centre-charles-de-visscher-pour-le-droit-internation… (#4871)
ae5eba3 Create revue-archeologique-de-lest.csl (#4881)
58a1672 Create pacific-conservation-biology.csl (#4880)
381106e Update national-institute-of-organisation-dynamics-australia-harvard.csl (#4879)
c66a5c0 Create society-of-biblical-literature-author-date.csl (#4812)
008073c Create ruhr-universitat-bochum-medizinische-fakultat-variante-a.csl (#4874)
193385a Update manchester (#4878)
fa9ef11 Create Faculty of Psychology and Education Sciences, Porto (#4856)
2f70b14 Add "personal communication" to remaining APA locales (#4866)
2b4f831 Fixed page-range-format (#4863)
d5661ba universitat-bern-institut-fur-musikwissenschaft add missing cs:sort to cs:bibliography (#4860)
e433c99 fix delimiter issue for bioscience.csl (#4876)
4d97aab update et-al settings for stroke.csl (#4875)
342b9e3 Update masarykova-univerzita-pravnicka-fakulta.csl (#4868)
91fe25e Add article number to IEEE (#4867)

git-subtree-dir: src/main/resources/csl-styles
git-subtree-split: a995c63

* Squashed 'src/main/resources/csl-styles/' changes from a995c63..bf698ac

bf698ac Create common-market-law-review.csl (#4910)
c962eca Create harvard-prifysgol-caerdydd.csl (#4922)
0c24e7f Update gewerblicher-rechtsschutz-und-urheberrecht.csl (#4923)
d2ec1a7 Create Tijdschrift-voor-Geneeskunde.csl (#4907)
5df7250 Update harvard-institut-fur-praxisforschung-de.csl (#4918)
093fd91 Update universite-de-montreal-apa.csl (#4916)
a3e41d4 Update thieme-german.csl (#4919)
648765a add DOI to aerosol-science-and-technology.csl (#4909)
bc1ebee Reindent/reorder
a8dc18a Fix documentation link for epidemiology & infection
aab403a Fix AGLC Newspaper date
4c018d5 Add period between editor and translator (SBL styles) (#4906)
42f7491 Create geographische-zeitschrift.csl (#4898)
a4002a6 Create german-kunstwissenschaft.csl (#4896)
b01910b Disambiguation of names (#4895)

git-subtree-dir: src/main/resources/csl-styles
git-subtree-split: bf698ac

* Squashed 'src/main/resources/csl-styles/' changes from bf698ac..7cab2f7

7cab2f7 Create depro-ufs.csl (#4947)
2fcda1f Create journal-of-sport-science-and-medicine.csl (#4949)
cd457d4 Update american-marketing-association.csl (#4945)
cacc4ee Create nejm-catalyst.csl (#4943)
bd769b9 Update and rename dependent/chinese-medical-journal.csl to chinese-me… (#4941)
1f706cd Update health-services-research.csl (#4939)
76bcd1d Update journal-of-the-royal-society-of-western-australia.csl (#4932)
e79640e Create afro-asia.csl (#4934)
c601aa4 Update lancaster-university-harvard.csl (#4938)
184fd90 Update collection-du-centre-jean-berard.csl (#4936)
82f9aec fix et-al & add DOI thyroid.csl (#4937)
4af169f Create universidade-estadual-de-alagoas-uneal-abnt (#4885)
47165b3 Update and rename medical-physics.csl to dependent/medical-physics.csl (AMA) (#4905)
3cab27d Update thieme-german.csl (#4931)
eb2c977 Create zeitschrift-fur-zahnarztliche-implantologie.csl (#4925)
4adb1ea Create karstenia.csl (#4929)
530a136 Fix author substitute in Universita Cattolica

git-subtree-dir: src/main/resources/csl-styles
git-subtree-split: 7cab2f7

* Squashed 'src/main/resources/csl-styles/' changes from 7cab2f7..827b986

827b986 add DOI preprint to american-society-for-microbiology.csl (#4946)

git-subtree-dir: src/main/resources/csl-styles
git-subtree-split: 827b986

* Squashed 'src/main/resources/csl-styles/' changes from 827b986..eb0d37e

eb0d37e Create natbib-plainnat-author-dat.csl (#4967)
fb1592a Update journal-of-fish-biology.csl (#4969)
f6876cb Update .travis.yml (#4970)
d6d400b Create london-review-of-international-law.csl (#4966)
d2a5ae1 Update harvard-stellenbosch-university.csl (#4965)
9c62141 Create phytopathologia-mediterranea.csl (#4964)
8ca2ea1 Update historical-materialism.csl (#4960)
80456dc Update historical-materialism.csl
be2d910 Update historical-materialism.csl
1d1cf09 Create atlande.csl (#4930)
89f41d4 Create juristische-zitierweise-oeffentliches-recht.csl (#4944)
8c677a0 Create korean-journal-of-gastroenterology.csl (#4954)
eadb950 Create historical-materialism.csl (#4955)
5553dcd Create revista-materia.csl (#4957)
d23a3ab Bug fix in APA 6 original publication macro (#4959)
66f9974 Always print publisher in APA 6th edition (#4899)
868809c Create agora.csl (#4940)
99c19c3 Update anthropologie-et-societes.csl (#4952)
ee17423 Create critical-reviews-in-solid-state-and-materials-science.csl (#4951)
7a13a7d Create korean-journal-of-internal-medicine.csl (#4953)

git-subtree-dir: src/main/resources/csl-styles
git-subtree-split: eb0d37e

* Merged new library actions

* l10n

* Removed unused constructor

* Fixed checkstyle failed check

* Fixed one more checkstyle issue

Co-authored-by: github actions <[email protected]>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

A simple "save" add six lines to the event log Improvement: Add all messages shown also to event log
3 participants