diff --git a/AUTHORS b/AUTHORS index 3b4f540c584..da7ac9bf114 100644 --- a/AUTHORS +++ b/AUTHORS @@ -301,6 +301,7 @@ Stephen Beitzel Stéphane Curet Super-Tang Sven Jäger +systemoperator Thiago Toledo Thomas Arildsen Thomas Ilsche diff --git a/CHANGELOG.md b/CHANGELOG.md index 6ffa4e88747..fea2161c7ac 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -27,6 +27,8 @@ We refer to [GitHub issues](https://github.com/JabRef/jabref/issues) by using `# - We fixed an issue where an erroneous "The library has been modified by another program" message was shown when saving. [#4877](https://github.com/JabRef/jabref/issues/4877) - We fixed an issue where the file extension was missing after downloading a file (we now fall-back to pdf). [#5816](https://github.com/JabRef/jabref/issues/5816) - We fixed an issue where cleaning up entries broke web URLs, if "Make paths of linked files relative (if possible)" was enabled, which resulted in various other issues subsequently. [#5861](https://github.com/JabRef/jabref/issues/5861) +- We fixed an issue where the tab "Required fields" of the entry editor did not show all required fields, if at least two of the defined required fields are linked with a logical or. [#5859](https://github.com/JabRef/jabref/issues/5859) +- We fixed several issues concerning managing external file types: Now everything is usable and fully functional. Previously, there were problems with the radio buttons, with saving the settings and with loading an input field value. Furthermore, different behavior for Windows and other operating systems was given, which was unified as well. [#5846](https://github.com/JabRef/jabref/issues/5846) ### Removed - Ampersands are no longer escaped by default in the `bib` file. If you want to keep the current behaviour, you can use the new "Escape Ampersands" formatter as a save action. diff --git a/docs/development-strategy.md b/docs/development-strategy.md index 333f39b1885..083e146728a 100644 --- a/docs/development-strategy.md +++ b/docs/development-strategy.md @@ -6,9 +6,9 @@ To ensure high code-quality, - we follow the priniciples of [Java by Comparison](https://java.by-comparison.com/). - we follow the principles of [Effetcive Java](https://www.oreilly.com/library/view/effective-java-3rd/9780134686097/). -- we use [Design Pattners](https://java-design-patterns.com/patterns/) wherever possible. +- we use [Design Pattners](https://java-design-patterns.com/patterns/) when applicable. - we document our design decisions using the lightweight architectural decision records [MADR](https://adr.github.io/madr/). -- we review each pull request by at least two [JabRef Core Developers](https://github.com/JabRef/jabref/blob/master/DEVELOPERS). +- we review each external pull request by at least two [JabRef Core Developers](https://github.com/JabRef/jabref/blob/master/DEVELOPERS). ## Continuos integration @@ -22,6 +22,7 @@ The branch [master](https://builds.jabref.org/master/) is the main development l Other branches are used for discussing improvements with the help of [pull requests](https://github.com/JabRef/jabref/pulls). One can see the binaries of each branch at . +Releases mark milestones and are based on the master at a point in time. ## How JabRef aquires contributors diff --git a/docs/guidelines-for-setting-up-a-local-workspace.md b/docs/guidelines-for-setting-up-a-local-workspace.md index 219fc14694c..bc26cccb89b 100644 --- a/docs/guidelines-for-setting-up-a-local-workspace.md +++ b/docs/guidelines-for-setting-up-a-local-workspace.md @@ -45,55 +45,158 @@ Under Ubuntu Linux, you can follow the [documentation from the Ubuntu Community] * Go to the newly created jabref folder: `cd jabref` * Generate additional source code: `./gradlew assemble` * Start JabRef: `./gradlew run` + * The JabRef's GUI should now start up. ## Configure your IDE -### IntelliJ +### Setup for IntelliJ 1. Open `jabref/build.gradle` as a project 2. Enable annotation processors: - * File -> Settings -> Compiler -> Annotation processors -> Check "Enable annotation processing" -3. Configure module settings: Right click on project -> Open Module Settings - * Ensure that the projects SDK is Java 13: Project Settings -> Project -> Project SDK: Choose Java 13 - * Ensure that standard SDK is Java 13: Platform Settings -> SDK -> Choose Java 13 -4. Specify additional compiler arguments: File -> Settings -> Build, Execution, Deployment -> Compiler -> Java Compiler -> Under "Override compiler parameters per-module" add the following compiler arguments for the `JabRef.main` module: - ```text - --patch-module test=fastparse_2.12-1.0.0.jar - --patch-module test2=fastparse-utils_2.12-1.0.0.jar - --patch-module test3=sourcecode_2.12-0.1.4.jar - --add-exports javafx.controls/com.sun.javafx.scene.control=org.jabref - --add-exports org.controlsfx.controls/impl.org.controlsfx.skin=org.jabref - --add-exports javafx.graphics/com.sun.javafx.scene=org.controlsfx.controls - --add-exports javafx.graphics/com.sun.javafx.scene.traversal=org.controlsfx.controls - --add-exports javafx.graphics/com.sun.javafx.css=org.controlsfx.controls - --add-exports javafx.controls/com.sun.javafx.scene.control.behavior=org.controlsfx.controls - --add-exports javafx.controls/com.sun.javafx.scene.control=org.controlsfx.controls - --add-exports javafx.controls/com.sun.javafx.scene.control.inputmap=org.controlsfx.controls - --add-exports javafx.base/com.sun.javafx.event=org.controlsfx.controls - --add-exports javafx.base/com.sun.javafx.collections=org.controlsfx.controls - --add-exports javafx.base/com.sun.javafx.runtime=org.controlsfx.controls - --add-exports javafx.web/com.sun.webkit=org.controlsfx.controls - --add-exports javafx.graphics/com.sun.javafx.css=org.controlsfx.controls - --add-exports javafx.controls/com.sun.javafx.scene.control.behavior=com.jfoenix - --patch-module org.jabref=build/resources/main + * File -> Settings -> Build, Execution, Deployment -> Compiler -> Annotation processors: + * Check "Enable annotation processing" +3. Configure module settings: Right click on project -> Open Module Settings: + * Ensure that the projects' SDK is Java 13: + * Project Settings -> Project -> Project SDK: Choose Java 13 + * Ensure that standard SDK is Java 13: + * Platform Settings -> SDK -> Choose Java 13 +4. Specify additional compiler arguments: + * File -> Settings -> Build, Execution, Deployment -> Compiler -> Java Compiler: + * Under "Override compiler parameters per-module" add ([+]) the following compiler arguments for the `JabRef.main` module: + + ``` + --add-exports=javafx.controls/com.sun.javafx.scene.control=org.jabref + --add-exports=org.controlsfx.controls/impl.org.controlsfx.skin=org.jabref ``` -4. Use IntellJ to build and run (instead of gradle): File -> Settings -> Build, Execution, Deployment -> Build Tools -> Gradle -> At "Build and run using" and "Run tests using" choose "Intellj IDEA" -4. Ensure that JDK13 is enabled for Gradle: Use IntellJ to build and run (instead of gradle): File -> Settings -> Build, Execution, Deployment -> Build Tools -> Gradle -> Gradle -> Gradle JVM -5. Use the provided code style: - 1. Install the [CheckStyle-IDEA plugin](http://plugins.jetbrains.com/plugin/1065?pr=idea), it can be found via plug-in repository (File > Settings > Plugins > Marketplace -> Search for "Checkstyle" and choose "CheckStyle-IDEA). Close the settings afterwards and restart IntelliJ. - 2. Go to File > Settings > Editor > Code Style, choose a code style (or create a new one) - 3. Click on the settings wheel (next to the scheme chooser), then click "Import Scheme" and choose "IntelliJ Code Style xml". Select the IntelliJ configuration file `config/IntelliJ Code Style.xml`. Click OK. - 4. Go to File -> Settings -> Checkstyle and import the CheckStyle configuration file. Activate it. -6. Use the provided run configuration: Run -> Run "JabRef Main" - -### Set-up Eclipse - -1. Run `./gradlew run` to generate all resources and to check if jabref runs. (This step is only required once) -2. Run `./gradlew eclipse` (This has to be always execute, when there are new upstream changes) -7. Copy the file Log4jPlugins.java from `build\generated\sources\annotationProcessor\java\main\org\jabref\gui\logging\plugins` to `org.jabref.gui.logging.plugins` -8. Create a run/debug configuration for main class `org.jabref.JabRefLauncher` -9. In the arguments tab enter the same runtime arguments as above for intellij. -10. Optional: Install the [e(fx)clipse plugin](http://www.eclipse.org/efxclipse/index.html) from the eclipse marketplace + +5. Use IntellJ to build and run (instead of gradle): + * File -> Settings -> Build, Execution, Deployment -> Build Tools -> Gradle: + * Set "Build and run using" and "Run tests using" both to "IntelliJ IDEA" +6. Ensure that the JDK13 is enabled for Gradle: Use IntellJ to build and run (instead of gradle): + * File -> Settings -> Build, Execution, Deployment -> Build Tools -> Gradle -> Gradle: + * Set "Gradle JVM" to "JDK13" +7. Use the provided code style: + 1. Install the [CheckStyle-IDEA plugin](http://plugins.jetbrains.com/plugin/1065?pr=idea), it can be found via the plug-in repository: + 1. File > Settings > Plugins > Marketplace + 2. Search for "Checkstyle" and choose "CheckStyle-IDEA" + 3. Close the settings afterwards and restart IntelliJ + 2. Go to File > Settings > Editor > Code Style: + 1. Click on the settings wheel (next to the scheme chooser), then click "Import Scheme" and choose "IntelliJ Code Style.xml". + 2. Select the IntelliJ configuration file `config/IntelliJ Code Style.xml`. + 3. Click "OK". + 4. Go to File -> Settings -> Other Settings -> Checkstyle -> Configuration File: + 1. Import the CheckStyle configuration file by clicking the [+] button + 2. For the description provide e.g. "CheckStyle" + 3. Click "Browse" and choose `config/checkstyle/checkstyle.xml` + 4. Click "Next" and "Finish" + 5. Activate the CheckStyle configuration file by ticking it in the list + 6. Save settings by clicking "OK" +8. Open Run -> Edit Configurations... -> Select Application -> JabRef Main + * Verify, that "JRE" is set to "Default (JDK 13)" or to JDK 13 + * Set "VM Options" to the following: + + ``` + --patch-module org.jabref=build/resources/main + --add-exports javafx.controls/com.sun.javafx.scene.control=org.jabref + --add-exports org.controlsfx.controls/impl.org.controlsfx.skin=org.jabref + --add-exports javafx.graphics/com.sun.javafx.scene=org.controlsfx.controls + --add-exports javafx.graphics/com.sun.javafx.scene.traversal=org.controlsfx.controls + --add-exports javafx.graphics/com.sun.javafx.css=org.controlsfx.controls + --add-exports javafx.controls/com.sun.javafx.scene.control.behavior=org.controlsfx.controls + --add-exports javafx.controls/com.sun.javafx.scene.control=org.controlsfx.controls + --add-exports javafx.controls/com.sun.javafx.scene.control.inputmap=org.controlsfx.controls + --add-exports javafx.base/com.sun.javafx.event=org.controlsfx.controls + --add-exports javafx.base/com.sun.javafx.collections=org.controlsfx.controls + --add-exports javafx.base/com.sun.javafx.runtime=org.controlsfx.controls + --add-exports javafx.web/com.sun.webkit=org.controlsfx.controls + --add-exports javafx.graphics/com.sun.javafx.css=org.controlsfx.controls + --add-exports javafx.controls/com.sun.javafx.scene.control.behavior=com.jfoenix + --add-exports com.oracle.truffle.regex/com.oracle.truffle.regex=org.graalvm.truffle + --add-opens javafx.controls/javafx.scene.control=org.jabref + --add-opens org.controlsfx.controls/org.controlsfx.control.textfield=org.jabref + --add-opens javafx.controls/javafx.scene.control.skin=org.controlsfx.controls + --add-opens javafx.graphics/javafx.scene=org.controlsfx.controls + --add-opens javafx.controls/com.sun.javafx.scene.control=org.jabref + --add-opens javafx.controls/com.sun.javafx.scene.control.behavior=com.jfoenix + --add-opens javafx.base/com.sun.javafx.binding=com.jfoenix + --add-opens javafx.graphics/com.sun.javafx.stage=com.jfoenix + --add-opens javafx.base/com.sun.javafx.event=com.jfoenix + ``` + + Optionally the following entries can also be added (but they currently only produce warnings and they are not needed): + + ``` + --patch-module test=fastparse_2.12-1.0.0.jar + --patch-module test2=fastparse-utils_2.12-1.0.0.jar + --patch-module test3=sourcecode_2.12-0.1.4.jar + ``` + +9. If you have configured Eclipse for the same project (the required steps are described below), then the additionally added file `Log4jPlugins.java` must be excluded from the compilation process, otherwise an error will occur during the compilation of the project: + * File -> Settings -> Build, Execution, Deployment -> Compiler -> Excludes: Add the following file to the list ([+]), in order to exclude it: + * `src/main/java/org/jabref/gui/logging/plugins/Log4jPlugins.java` +10. Use the provided run configuration: Run -> Run "JabRef Main" + * This uses now IntelliJ for building and running/debugging the application, which is recommended, since the application starts quite fast. +11. Alternatively, the project can also be built and run/debugged by using gradle from within the IDE, which is not recommended, since the application starts significantly slower: + 1. Open the gradle tool window: + * View -> Tool Windows -> Gradle + 2. Navigate to the following entry in the gradle tool window: + * JabRef -> Tasks -> application -> run + 3. Double click "run" to build and run the application + 4. After that a new entry called "jabref [run]" will appear in the run configurations. + 5. Now you can also select "jabref [run]" and either run or debug the application from within IntelliJ. + * Equivalently, this can also be executed from the terminal by running `./gradlew run`. + + +### Setup for Eclipse + +1. Run `./gradlew run` to generate all resources and to check if jabref runs. + * The JabRef GUI should finally appear. + * This step is only required once. +2. Run `./gradlew eclipse` + * **This must always be executed, when there are new upstream changes.** +3. Copy the file `Log4jPlugins.java` from `build\generated\sources\annotationProcessor\java\main\org\jabref\gui\logging\plugins` to `src/main/java/org/jabref/gui/logging/plugins/` + * Usually, the folder `plugins` must be created for that. +4. Open or import the existing project in Eclipse as Java project. Import as gradle project will not work correctly. +5. Create a run/debug configuration for the main class `org.jabref.JabRefLauncher` and/or for `org.jabref.JabRefMain` (both can be used equivalently) + * In the tab "Arguments" of the run/debug configuration, enter the same runtime VM arguments as above for intelliJ: + * Set "VM Arguments" to: + + ``` + --patch-module org.jabref=build/resources/main + --add-exports javafx.controls/com.sun.javafx.scene.control=org.jabref + --add-exports org.controlsfx.controls/impl.org.controlsfx.skin=org.jabref + --add-exports javafx.graphics/com.sun.javafx.scene=org.controlsfx.controls + --add-exports javafx.graphics/com.sun.javafx.scene.traversal=org.controlsfx.controls + --add-exports javafx.graphics/com.sun.javafx.css=org.controlsfx.controls + --add-exports javafx.controls/com.sun.javafx.scene.control.behavior=org.controlsfx.controls + --add-exports javafx.controls/com.sun.javafx.scene.control=org.controlsfx.controls + --add-exports javafx.controls/com.sun.javafx.scene.control.inputmap=org.controlsfx.controls + --add-exports javafx.base/com.sun.javafx.event=org.controlsfx.controls + --add-exports javafx.base/com.sun.javafx.collections=org.controlsfx.controls + --add-exports javafx.base/com.sun.javafx.runtime=org.controlsfx.controls + --add-exports javafx.web/com.sun.webkit=org.controlsfx.controls + --add-exports javafx.graphics/com.sun.javafx.css=org.controlsfx.controls + --add-exports javafx.controls/com.sun.javafx.scene.control.behavior=com.jfoenix + --add-exports com.oracle.truffle.regex/com.oracle.truffle.regex=org.graalvm.truffle + --add-opens javafx.controls/javafx.scene.control=org.jabref + --add-opens org.controlsfx.controls/org.controlsfx.control.textfield=org.jabref + --add-opens javafx.controls/javafx.scene.control.skin=org.controlsfx.controls + --add-opens javafx.graphics/javafx.scene=org.controlsfx.controls + --add-opens javafx.controls/com.sun.javafx.scene.control=org.jabref + --add-opens javafx.controls/com.sun.javafx.scene.control.behavior=com.jfoenix + --add-opens javafx.base/com.sun.javafx.binding=com.jfoenix + --add-opens javafx.graphics/com.sun.javafx.stage=com.jfoenix + --add-opens javafx.base/com.sun.javafx.event=com.jfoenix + ``` + +6. Optional: Install the [e(fx)clipse plugin](http://www.eclipse.org/efxclipse/index.html) from the eclipse marketplace: + 1. Help -> Eclipse Marketplace... -> Search tab + 2. Enter "e(fx)clipse" in the search dialogue + 3. Click "Go" + 4. Click "Install" button next to the plugin + 5. Click "Finish" +7. Now you can build and run/debug the application by either using "JabRefLauncher" or "JabRefMain". This is the recommended way, since the application starts quite fast. + * Alternatively, it is still possible to start the application from the terminal by executing `./gradlew run`, but the application will start significantly slower. ## Final comments diff --git a/src/main/java/org/jabref/gui/entryeditor/RequiredFieldsTab.java b/src/main/java/org/jabref/gui/entryeditor/RequiredFieldsTab.java index 2378f64c4ca..2ea4b81baaf 100644 --- a/src/main/java/org/jabref/gui/entryeditor/RequiredFieldsTab.java +++ b/src/main/java/org/jabref/gui/entryeditor/RequiredFieldsTab.java @@ -4,7 +4,6 @@ import java.util.Optional; import java.util.SortedSet; import java.util.TreeSet; -import java.util.stream.Collectors; import javax.swing.undo.UndoManager; @@ -43,7 +42,9 @@ protected SortedSet determineFieldsToShow(BibEntry entry) { Optional entryType = entryTypesManager.enrich(entry.getType(), databaseContext.getMode()); SortedSet fields = new TreeSet<>(Comparator.comparing(Field::getName)); if (entryType.isPresent()) { - fields.addAll(entryType.get().getRequiredFields().stream().map(OrFields::getPrimary).collect(Collectors.toSet())); + for (OrFields orFields : entryType.get().getRequiredFields()) { + fields.addAll(orFields); + } // Add the edit field for Bibtex-key. fields.add(InternalField.KEY_FIELD); } else { diff --git a/src/main/java/org/jabref/gui/externalfiletype/CustomizeExternalFileTypesViewModel.java b/src/main/java/org/jabref/gui/externalfiletype/CustomizeExternalFileTypesViewModel.java index 4a250f6f549..e7ee73267b2 100644 --- a/src/main/java/org/jabref/gui/externalfiletype/CustomizeExternalFileTypesViewModel.java +++ b/src/main/java/org/jabref/gui/externalfiletype/CustomizeExternalFileTypesViewModel.java @@ -49,6 +49,8 @@ private void showEditDialog(ExternalFileType type, String dialogTitle) { typeForEdit = (CustomExternalFileType) type; } else { typeForEdit = new CustomExternalFileType(type); + fileTypes.add(fileTypes.indexOf(type), typeForEdit); + fileTypes.remove(type); } EditExternalFileTypeEntryDialog dlg = new EditExternalFileTypeEntryDialog(typeForEdit, dialogTitle); diff --git a/src/main/java/org/jabref/gui/externalfiletype/EditExternalFileTypeEntryDialog.java b/src/main/java/org/jabref/gui/externalfiletype/EditExternalFileTypeEntryDialog.java index 88566e07772..bafbece5ded 100644 --- a/src/main/java/org/jabref/gui/externalfiletype/EditExternalFileTypeEntryDialog.java +++ b/src/main/java/org/jabref/gui/externalfiletype/EditExternalFileTypeEntryDialog.java @@ -62,6 +62,7 @@ public void initialize() { icon.setGraphic(viewModel.getIcon()); defaultApplication.selectedProperty().bindBidirectional(viewModel.defaultApplicationSelectedProperty()); + customApplication.selectedProperty().bindBidirectional(viewModel.customApplicationSelectedProperty()); selectedApplication.disableProperty().bind(viewModel.defaultApplicationSelectedProperty()); btnBrowse.disableProperty().bind(viewModel.defaultApplicationSelectedProperty()); diff --git a/src/main/java/org/jabref/gui/externalfiletype/EditExternalFileTypeViewModel.java b/src/main/java/org/jabref/gui/externalfiletype/EditExternalFileTypeViewModel.java index 331e1a8d835..dc573aa2c36 100644 --- a/src/main/java/org/jabref/gui/externalfiletype/EditExternalFileTypeViewModel.java +++ b/src/main/java/org/jabref/gui/externalfiletype/EditExternalFileTypeViewModel.java @@ -6,8 +6,6 @@ import javafx.beans.property.StringProperty; import javafx.scene.Node; -import org.jabref.logic.util.OS; - public class EditExternalFileTypeViewModel { private final StringProperty extensionProperty = new SimpleStringProperty(""); @@ -15,13 +13,14 @@ public class EditExternalFileTypeViewModel { private final StringProperty mimeTypeProperty = new SimpleStringProperty(""); private final StringProperty selectedApplicationProperty = new SimpleStringProperty(""); private final BooleanProperty defaultApplicationSelectedProperty = new SimpleBooleanProperty(false); + private final BooleanProperty customApplicationSelectedProperty = new SimpleBooleanProperty(false); private final Node icon; private final CustomExternalFileType fileType; public EditExternalFileTypeViewModel(CustomExternalFileType fileType) { this.fileType = fileType; extensionProperty.setValue(fileType.getExtension()); - nameProperty.setValue(fileType.getField().getDisplayName()); + nameProperty.setValue(fileType.getName()); mimeTypeProperty.setValue(fileType.getMimeType()); selectedApplicationProperty.setValue(fileType.getOpenWithApplication()); icon = fileType.getIcon().getGraphicNode(); @@ -29,6 +28,9 @@ public EditExternalFileTypeViewModel(CustomExternalFileType fileType) { if (fileType.getOpenWithApplication().isEmpty()) { defaultApplicationSelectedProperty.setValue(true); } + else { + customApplicationSelectedProperty.setValue(true); + } } @@ -52,6 +54,10 @@ public BooleanProperty defaultApplicationSelectedProperty() { return defaultApplicationSelectedProperty; } + public BooleanProperty customApplicationSelectedProperty() { + return customApplicationSelectedProperty; + } + public Node getIcon() { return icon; } @@ -69,20 +75,14 @@ public void storeSettings() { } String application = selectedApplicationProperty.getValue().trim(); - if (OS.WINDOWS) { - // On Windows, store application as empty if the "Default" option is selected, - // or if the application name is empty: - if (defaultApplicationSelectedProperty.getValue() || application.isEmpty()) { - fileType.setOpenWith(""); - selectedApplicationProperty.setValue(""); - - } else { - fileType.setOpenWith(application); - } + + // store application as empty if the "Default" option is selected, or if the application name is empty: + if (defaultApplicationSelectedProperty.getValue() || application.isEmpty()) { + fileType.setOpenWith(""); + selectedApplicationProperty.setValue(""); } else { fileType.setOpenWith(application); } - } } diff --git a/src/main/resources/csl-locales/locales-nb-NO.xml b/src/main/resources/csl-locales/locales-nb-NO.xml index 7e86f935c44..b0ae7f02f0f 100644 --- a/src/main/resources/csl-locales/locales-nb-NO.xml +++ b/src/main/resources/csl-locales/locales-nb-NO.xml @@ -45,7 +45,7 @@ intervju brev ingen dato - udatert + u.å. online presentert på diff --git a/src/main/resources/csl-locales/locales-nn-NO.xml b/src/main/resources/csl-locales/locales-nn-NO.xml index 060b1212039..8702c944455 100644 --- a/src/main/resources/csl-locales/locales-nn-NO.xml +++ b/src/main/resources/csl-locales/locales-nn-NO.xml @@ -45,7 +45,7 @@ intervju brev ingen dato - udatert + u.å. online presentert på diff --git a/src/main/resources/csl-styles/agriculturae-conspectus-scientificus.csl b/src/main/resources/csl-styles/agriculturae-conspectus-scientificus.csl index 6b640afc498..8eabb451eb0 100644 --- a/src/main/resources/csl-styles/agriculturae-conspectus-scientificus.csl +++ b/src/main/resources/csl-styles/agriculturae-conspectus-scientificus.csl @@ -14,7 +14,7 @@ 1331-7768 1331-7776 - 2020-01-13T13:20:01+00:00 + 2020-01-15T11:50:40+00:00 This work is licensed under a Creative Commons Attribution-ShareAlike 3.0 License @@ -41,7 +41,7 @@ - + diff --git a/src/main/resources/csl-styles/apa-annotated-bibliography.csl b/src/main/resources/csl-styles/apa-annotated-bibliography.csl index ed5c3d9c543..977fade834a 100644 --- a/src/main/resources/csl-styles/apa-annotated-bibliography.csl +++ b/src/main/resources/csl-styles/apa-annotated-bibliography.csl @@ -43,34 +43,76 @@ + + + persoonlike kommunikasie + brief + + + + + اتصال شخصي + خطاب + + et al. + personlig kommunikation + brev et al. + persönliche Kommunikation + Brief de + comunicación personal + carta + + + + + communication personnelle + lettre et al. + personlig kommunikasjon + brev et al. + persoonlijke communicatie + brief et al. + personlig kommunikasjon + brev + + + + + личная переписка + письмо + + + + + kişisel iletişim + mektup ed ed @@ -207,14 +208,17 @@ - + - - + + + + + @@ -486,12 +490,13 @@ + - + @@ -514,6 +519,7 @@ + @@ -663,8 +669,8 @@ - - + + @@ -672,6 +678,7 @@ + @@ -701,7 +708,8 @@ - + + diff --git a/src/main/resources/csl-styles/dependent/clinical-and-experimental-optometry.csl b/src/main/resources/csl-styles/dependent/clinical-and-experimental-optometry.csl index 0ec847a3739..7d17cee9838 100644 --- a/src/main/resources/csl-styles/dependent/clinical-and-experimental-optometry.csl +++ b/src/main/resources/csl-styles/dependent/clinical-and-experimental-optometry.csl @@ -4,8 +4,8 @@ Clinical and Experimental Optometry http://www.zotero.org/styles/clinical-and-experimental-optometry - - + + 0816-4622 diff --git a/src/main/resources/csl-styles/eksploatacja-i-niezawodnosc.csl b/src/main/resources/csl-styles/eksploatacja-i-niezawodnosc.csl new file mode 100644 index 00000000000..bb11517d273 --- /dev/null +++ b/src/main/resources/csl-styles/eksploatacja-i-niezawodnosc.csl @@ -0,0 +1,130 @@ + + diff --git a/src/main/resources/csl-styles/geriatrie-et-psychologie-neuropsychiatrie-du-vieillissement.csl b/src/main/resources/csl-styles/geriatrie-et-psychologie-neuropsychiatrie-du-vieillissement.csl new file mode 100644 index 00000000000..31917a3767b --- /dev/null +++ b/src/main/resources/csl-styles/geriatrie-et-psychologie-neuropsychiatrie-du-vieillissement.csl @@ -0,0 +1,148 @@ + + diff --git a/src/main/resources/csl-styles/groupe-danthropologie-et-darcheologie-funeraire.csl b/src/main/resources/csl-styles/groupe-danthropologie-et-darcheologie-funeraire.csl index 7d25d8c8e63..c35cfc08211 100644 --- a/src/main/resources/csl-styles/groupe-danthropologie-et-darcheologie-funeraire.csl +++ b/src/main/resources/csl-styles/groupe-danthropologie-et-darcheologie-funeraire.csl @@ -14,7 +14,7 @@ - 2020-01-10T00:59:23+00:00 + 2020-01-22T01:24:22+00:00 This work is licensed under a Creative Commons Attribution-ShareAlike 3.0 License @@ -196,7 +196,7 @@ - + @@ -275,24 +275,10 @@ - + - - - - - - - - - - - - - - @@ -327,7 +313,6 @@ - diff --git a/src/main/resources/csl-styles/hochschule-fur-soziale-arbeit-fhnw.csl b/src/main/resources/csl-styles/hochschule-fur-soziale-arbeit-fhnw.csl index fce174651f0..1b7887dc2fe 100644 --- a/src/main/resources/csl-styles/hochschule-fur-soziale-arbeit-fhnw.csl +++ b/src/main/resources/csl-styles/hochschule-fur-soziale-arbeit-fhnw.csl @@ -206,7 +206,7 @@ - + diff --git a/src/main/resources/csl-styles/instituto-brasileiro-de-informacao-em-ciencia-e-tecnologia-abnt.csl b/src/main/resources/csl-styles/instituto-brasileiro-de-informacao-em-ciencia-e-tecnologia-abnt.csl index a3e34f1c8ac..cae0377ea27 100644 --- a/src/main/resources/csl-styles/instituto-brasileiro-de-informacao-em-ciencia-e-tecnologia-abnt.csl +++ b/src/main/resources/csl-styles/instituto-brasileiro-de-informacao-em-ciencia-e-tecnologia-abnt.csl @@ -6,9 +6,9 @@ http://www.zotero.org/styles/instituto-brasileiro-de-informacao-em-ciencia-e-tecnologia-abnt - + - Andre Luiz Appel + André Luiz Appel andreappel@ibict.br @@ -19,10 +19,14 @@ Tiago Emmanuel Nunes Braga tiagobraga@ibict.br + + Diego José Macêdo + diegomacedo@ibict.br + The Brazilian Standard Style by IBICT - 2019-07-11T00:59:23+00:00 + 2020-01-14T14:52:00+00:00 This work is licensed under a Creative Commons Attribution-ShareAlike 3.0 License @@ -52,10 +56,10 @@ - + - @@ -102,8 +106,6 @@ - - @@ -114,7 +116,7 @@ - + @@ -129,7 +131,7 @@ - + @@ -150,7 +152,7 @@ - + @@ -158,7 +160,7 @@ - + @@ -178,40 +180,27 @@ - + - - - - - - - - - - + - - + + - - - - - - - + + + - + @@ -224,7 +213,7 @@ - + @@ -238,7 +227,7 @@ - + @@ -273,7 +262,7 @@ - + @@ -285,7 +274,7 @@ - + @@ -319,7 +308,7 @@ - + @@ -367,29 +356,10 @@ - - - - - - - - - - - - - - - - - - - - + @@ -402,8 +372,8 @@ - - + + @@ -447,7 +417,6 @@ - @@ -457,13 +426,11 @@ - - - - - - - + + + + + @@ -473,7 +440,7 @@ - + @@ -485,18 +452,18 @@ - + - + - + @@ -510,12 +477,11 @@ - + - @@ -534,9 +500,9 @@ - + - + @@ -545,17 +511,17 @@ - - - - + + + + - + @@ -567,7 +533,7 @@ - + @@ -576,8 +542,8 @@ - + diff --git a/src/main/resources/csl-styles/international-journal-of-population-data-science.csl b/src/main/resources/csl-styles/international-journal-of-population-data-science.csl new file mode 100644 index 00000000000..45abc9881ce --- /dev/null +++ b/src/main/resources/csl-styles/international-journal-of-population-data-science.csl @@ -0,0 +1,163 @@ + + diff --git a/src/main/resources/csl-styles/john-benjamins-publishing-company-linguistik-aktuell-linguistics-today.csl b/src/main/resources/csl-styles/john-benjamins-publishing-company-linguistik-aktuell-linguistics-today.csl index 06fc6cc4837..c874eab2bfc 100644 --- a/src/main/resources/csl-styles/john-benjamins-publishing-company-linguistik-aktuell-linguistics-today.csl +++ b/src/main/resources/csl-styles/john-benjamins-publishing-company-linguistik-aktuell-linguistics-today.csl @@ -1,5 +1,5 @@ - diff --git a/src/main/resources/csl-styles/karabuk-university-graduate-school-of-natural-and-applied-sciences.csl b/src/main/resources/csl-styles/karabuk-university-graduate-school-of-natural-and-applied-sciences.csl new file mode 100644 index 00000000000..6ba14afc345 --- /dev/null +++ b/src/main/resources/csl-styles/karabuk-university-graduate-school-of-natural-and-applied-sciences.csl @@ -0,0 +1,132 @@ + + diff --git a/src/main/resources/csl-styles/lancaster-university-harvard.csl b/src/main/resources/csl-styles/lancaster-university-harvard.csl new file mode 100644 index 00000000000..0386061847d --- /dev/null +++ b/src/main/resources/csl-styles/lancaster-university-harvard.csl @@ -0,0 +1,456 @@ + + diff --git a/src/main/resources/csl-styles/mcgill-en.csl b/src/main/resources/csl-styles/mcgill-en.csl index fe29f925cfc..5b051d22006 100644 --- a/src/main/resources/csl-styles/mcgill-en.csl +++ b/src/main/resources/csl-styles/mcgill-en.csl @@ -1,10 +1,10 @@ diff --git a/src/main/resources/csl-styles/psychiatric-services.csl b/src/main/resources/csl-styles/psychiatric-services.csl index e291e18cf75..beb737cfdf2 100644 --- a/src/main/resources/csl-styles/psychiatric-services.csl +++ b/src/main/resources/csl-styles/psychiatric-services.csl @@ -65,26 +65,17 @@ - - + + - + - - - - - - - - - diff --git a/src/main/resources/csl-styles/psychological-medicine.csl b/src/main/resources/csl-styles/psychological-medicine.csl index 277c310129f..05f7185d7c3 100644 --- a/src/main/resources/csl-styles/psychological-medicine.csl +++ b/src/main/resources/csl-styles/psychological-medicine.csl @@ -1,13 +1,5 @@ - diff --git a/src/main/resources/csl-styles/university-of-york-apa.csl b/src/main/resources/csl-styles/university-of-york-apa.csl index 931a12cc458..bcdf8ce4aa0 100644 --- a/src/main/resources/csl-styles/university-of-york-apa.csl +++ b/src/main/resources/csl-styles/university-of-york-apa.csl @@ -2,7 +2,7 @@