-
-
Notifications
You must be signed in to change notification settings - Fork 2.8k
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
Moved Journal Abbreviation from Quality Menu to Cleanup Entries Dialog #12835
Open
GDeane
wants to merge
40
commits into
JabRef:main
Choose a base branch
from
GDeane:gavin-jenny-logic-fix
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Conversation
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
…tion behavior from UndoableAbbreviator.java.
…antiation of AbbreviateJournalDefaultCleanup class
…efault, dotless, and shortest-unique
…bbreviateJournalCleanup job (UnabbreviateJournalCleanup still not properly implemented)
…atch the functionality of UndoableUnabbreviator.java
…nality. Dependent tests still need fixing
…ing when re-opening clean up entries dialog
…inding.ABBREVIATE to instead use other KeyBindings
…eanup and UnabbreviateJournalCleanup rather than the old (removed) classes
… in Clean up entries dialog
src/test/java/org/jabref/gui/preferences/keybindings/KeyBindingViewModelTest.java
Show resolved
Hide resolved
src/test/java/org/jabref/gui/preferences/keybindings/KeyBindingViewModelTest.java
Show resolved
Hide resolved
src/test/java/org/jabref/logic/cleanup/AbbreviateJournalCleanupTest.java
Outdated
Show resolved
Hide resolved
src/test/java/org/jabref/logic/cleanup/AbbreviateJournalCleanupTest.java
Outdated
Show resolved
Hide resolved
src/test/java/org/jabref/logic/cleanup/AbbreviateJournalCleanupTest.java
Outdated
Show resolved
Hide resolved
src/test/java/org/jabref/logic/cleanup/AbbreviateJournalCleanupTest.java
Outdated
Show resolved
Hide resolved
…to add throws JabRefException to all the things that call this.
src/test/java/org/jabref/logic/cleanup/AbbreviateJournalCleanupTest.java
Show resolved
Hide resolved
src/test/java/org/jabref/logic/cleanup/AbbreviateJournalCleanupTest.java
Show resolved
Hide resolved
src/test/java/org/jabref/logic/cleanup/AbbreviateJournalCleanupTest.java
Show resolved
Hide resolved
src/test/java/org/jabref/logic/cleanup/AbbreviateJournalCleanupTest.java
Show resolved
Hide resolved
src/test/java/org/jabref/logic/cleanup/AbbreviateJournalCleanupTest.java
Show resolved
Hide resolved
src/test/java/org/jabref/logic/cleanup/AbbreviateJournalCleanupTest.java
Show resolved
Hide resolved
src/test/java/org/jabref/logic/cleanup/UnabbreviateJournalCleanupTest.java
Show resolved
Hide resolved
…itecture (it had no references in the gui package)
src/test/java/org/jabref/logic/cleanup/AbbreviateJournalCleanupTest.java
Show resolved
Hide resolved
This refs #11305 (comment) |
@trag-bot didn't find any issues in the code! ✅✨ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Labels
component: journal abbreviations
status: ready-for-review
Pull Requests that are ready to be reviewed by the maintainers
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Closes #11791
This change moves the Journal Abbreviation behavior from the Quality Menu into the Cleanup Entries Dialog as follows:
The JabRef documentation will need to be updated. A new issue has been created to do this here
Before Changes


After Changes



Summary
This pull request implements the steps outlined in this issue refinement
Specifically, all journal‐abbreviation tasks (both abbreviate and unabbreviate) from separate menu commands have been moved into the “Clean up entries” dialog. This allows the user to pick how they want to handle journal names—no change, abbreviate, or unabbreviate—directly inside the Cleanup dialog rather than from separate menu items.
Key changes:
AbbreviateJournalCleanupTest
andUnabbreviateJournalCleanupTest
, along with changes toJournalAbbreviationRepositoryTest
so the coverage is the same as before but uses the new cleanup approach.Notable Design Details
To perform this change, the functionality in
UndoableAbbreviator
(andUndoableUnabbreviator
) had to be adapted to theorg.jabref.logic.cleanup.CleanupJob
interface. I discovered while figuring out an implementation thatorg.jabref.logic.cleanup.AbbreviateJournalCleanup
(andorg.jabref.logic.cleanup.AbbreviateJournalCleanup
) both needed access to aJournalAbbreviationRepository
object. Many of the changes in this PR are related to this dependency being passed down fromorg.jabref.gui.frame.MainMenu
andorg.jabref.gui.frame.MainToolBar
. This issue is further described at this comment and this commentIt was suggested here that the journal abbreviation menu items instead be added to the field formatters in the UI, and implemented as a Formatter. The reason this was not done is because all the formatters act as stateless transformations, and are instantiated without any parameters (see
org.jabref.logic.formatter.Formatters
). Journal Abbreviation is notably not stateless, as it needs access toJournalAbbreviationRepository
. Theoretically, this could be overcome with dependency injection into the logic layer, but I believe that violates the architecture.How To Test
IMPORTANT NOTE: When testing and switching from running JabRef on this branch to running JabRef on the main branch, I had an unhandled exception because a new enum constant (e.g.


UNABBREVIATE
) persisted in the user preferences, but the code on main doesn't define this constant:The only workaround I have found for this is to go in JabRef to File -> Preferences -> Reset Preferences and then hit save.

Additionally:
org.jabref.logic.cleanup.AbbreviateJournalCleanupTest
,org.jabref.logic.cleanup.UnabbreviateJournalCleanupTest
, andorg.jabref.logic.journals.JournalAbbreviationRepositoryTest
Mandatory checks
CHANGELOG.md
described in a way that is understandable for the average user (if change is visible to the user)