-
-
Notifications
You must be signed in to change notification settings - Fork 2.6k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge remote-tracking branch 'upstream/master' into ooPanel
* upstream/master: Fix move to group always moves first entry (#4457) Add eprint cleanup (#4445) respect preference state (#4468) Set auto-update checkbox enable/disable when reading preferences (#4446) Improve MathSciNet fetcher and add ISBN fetcher to entry editor toolbar (#4444) New translations JabRef_en.properties (German) (#4455)
- Loading branch information
Showing
23 changed files
with
462 additions
and
313 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
33 changes: 33 additions & 0 deletions
33
src/main/java/org/jabref/gui/cleanup/CleanupPresetPanel.fxml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
|
||
<?import javafx.geometry.Insets?> | ||
<?import javafx.scene.control.CheckBox?> | ||
<?import javafx.scene.control.Label?> | ||
<?import javafx.scene.layout.VBox?> | ||
<fx:root xmlns:fx="http://javafx.com/fxml/1" spacing="10.0" type="VBox" xmlns="http://javafx.com/javafx/8.0.121" | ||
fx:controller="org.jabref.gui.cleanup.CleanupPresetPanel"> | ||
|
||
<CheckBox fx:id="cleanUpDOI" text="%Move DOIs from note and URL field to DOI field and remove http prefix"/> | ||
<CheckBox fx:id="cleanUpEprint" | ||
text="%Move preprint information from 'URL' and 'journal' field to the 'eprint' field"/> | ||
<CheckBox fx:id="cleanUpISSN" text="%Reformat ISSN"/> | ||
<CheckBox fx:id="cleanUpUpgradeExternalLinks"/> | ||
<CheckBox fx:id="cleanUpMovePDF"/> | ||
<CheckBox fx:id="cleanUpMakePathsRelative" text="%Make paths of linked files relative (if possible)"/> | ||
<CheckBox fx:id="cleanUpRenamePDF" text="%Rename PDFs to given filename format pattern"/> | ||
<VBox spacing="5.0"> | ||
<Label fx:id="cleanupRenamePDFLabel"/> | ||
<CheckBox fx:id="cleanUpRenamePDFonlyRelativePaths" text="%Rename only PDFs having a relative path"/> | ||
<VBox.margin> | ||
<Insets left="40.0"/> | ||
</VBox.margin> | ||
</VBox> | ||
|
||
<CheckBox fx:id="cleanUpBiblatex" | ||
text="%Convert to biblatex format (for example, move the value of the 'journal' field to 'journaltitle')"/> | ||
<CheckBox fx:id="cleanUpBibtex" | ||
text="%Convert to BibTeX format (for example, move the value of the 'journaltitle' field to 'journal')"/> | ||
|
||
<VBox fx:id="formatterContainer"/> | ||
|
||
</fx:root> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.