-
-
Notifications
You must be signed in to change notification settings - Fork 2.8k
Keyword Tooltip/Cleanup for MSC codes added to Keyword Editor #12914
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
Open
JustinHennis1
wants to merge
34
commits into
JabRef:main
Choose a base branch
from
JustinHennis1:ktooltip
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.
Open
Changes from all commits
Commits
Show all changes
34 commits
Select commit
Hold shift + click to select a range
0f77aba
added msc codes, keyword tooltip feature
JustinHennis1 9cec66b
keyword tooltip feature#423, changelog updated
JustinHennis1 3a506b4
Merge branch 'main' into ktooltip
JustinHennis1 a09718f
uses getResource to find json/loadMscCodesFromJson overloaded to take…
JustinHennis1 1ce8ec0
Merge branch 'ktooltip' of https://github.com/JustinHennis1/jabref in…
JustinHennis1 92d0f60
printstacktrace removed from MscCodeUtils
JustinHennis1 0d57263
Switched from File to Path.of in loadMscFromJson
JustinHennis1 f5f16b1
Merge branch 'JabRef:main' into ktooltip
JustinHennis1 8d0af60
checkstyle compliance
JustinHennis1 6d14ec9
Merge branch 'ktooltip' of https://github.com/JustinHennis1/jabref in…
JustinHennis1 4fa4d10
fixed markdown check
JustinHennis1 24d5112
Added logic for MSC code conversion cleanup. Actual cleanup() logic s…
JustinHennis1 1ab572d
added secondary cleanup to convert keywords in entries to their descr…
JustinHennis1 a1d0c92
MSC code cleanup functional, msc_codes.json cleaned for comma delimit…
JustinHennis1 475c3b9
Cleaned msc json for extra commas
JustinHennis1 b3e11f5
Tests updated for msc code conversion
JustinHennis1 965a564
Passes Checkstyle and RewriteDryRun, cleanup mentioned in changelog
JustinHennis1 903f2e1
Markup check
JustinHennis1 87203b1
MSC cleanup test modified because conversion is async,Fixed syntax er…
JustinHennis1 53b47a6
loadMSCCodes is wrapped in Optional, Custom Exception created
JustinHennis1 0fca1f5
loadMSCCodeFromJson: empty optional returned, cstyle compliant
JustinHennis1 44bf6f0
Merge branch 'main' into ktooltip
JustinHennis1 339fb44
localizations added, most tests pass, javafx issue with cleanuptest s…
JustinHennis1 03eba4e
Merge branch 'ktooltip' of https://github.com/JustinHennis1/jabref in…
JustinHennis1 430c1e0
JavaFX initializes once for tests
JustinHennis1 30d3391
Tests Pass Local, Using Platform class to check JavaFX initialized in…
JustinHennis1 e3e475a
Features and Tests work, one caveat issue w/ JavaFX
JustinHennis1 da15de2
Merge branch 'main' into ktooltip
JustinHennis1 fa09a62
Merge branch 'main' into ktooltip
JustinHennis1 88fbaff
Language Localizations added, FF principle fixes
JustinHennis1 6f7ac45
Merge branch 'ktooltip' of https://github.com/JustinHennis1/jabref in…
JustinHennis1 019ce37
Bimap implemented, fixes unhandled except, msc codes edited
JustinHennis1 9f7f31d
Checkstyle fixes
JustinHennis1 c27e0e1
Merge branch 'main' into ktooltip
JustinHennis1 File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 |
---|---|---|
|
@@ -84,7 +84,8 @@ private void doCleanup(BibDatabaseContext databaseContext, CleanupPreferences pr | |
CleanupWorker cleaner = new CleanupWorker( | ||
databaseContext, | ||
preferences.getFilePreferences(), | ||
preferences.getTimestampPreferences() | ||
preferences.getTimestampPreferences(), | ||
preferences.getBibEntryPreferences() | ||
Comment on lines
+87
to
+88
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. The addition of preferences.getBibEntryPreferences() to the CleanupWorker constructor changes the method signature, which requires updating the JavaDoc to reflect this change. |
||
); | ||
|
||
List<FieldChange> changes = cleaner.cleanup(preset, entry); | ||
|
This file contains hidden or 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 hidden or 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 hidden or 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.
Oops, something went wrong.
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.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The addition of preferences.getBibEntryPreferences() to the CleanupWorker constructor requires updating the JavaDoc for doCleanup method to reflect this change in parameters.