-
-
Notifications
You must be signed in to change notification settings - Fork 2.8k
Tabular UI for naming linked files #12624
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
priyanshu16095
wants to merge
67
commits into
JabRef:main
Choose a base branch
from
priyanshu16095:tabularUI
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
67 commits
Select commit
Hold shift + click to select a range
9b11edf
Add fix options for integrity issues
priyanshu16095 02d8e75
Fix the check
priyanshu16095 754b6ad
Add a missing entry for Localization.lang
priyanshu16095 696f904
Fix the check
priyanshu16095 4ab36a8
Refactor code
priyanshu16095 28de796
Fix the check
priyanshu16095 70ae8eb
Add a CHANGELOG.md entry
priyanshu16095 77df6ea
Refactor the code
priyanshu16095 30c81ce
Make use of IntegrityIssue enum
priyanshu16095 5b389da
Add keys in Localization.lang
priyanshu16095 3a0d9a1
Refactor the code
priyanshu16095 a04e06a
Remove use of enum
priyanshu16095 8e9341a
Remove use of enum from PageChecker class
priyanshu16095 235c74f
Add fixAll method
priyanshu16095 9839137
Add a check for fixAll and fixByType method
priyanshu16095 5754680
Fix a bug
priyanshu16095 8f7bdc2
Use dialogService.notify() to notify
priyanshu16095 f57719c
Remove unused imports
priyanshu16095 2105a13
Merge branch 'main' into integrityCheckActions
priyanshu16095 e37ba79
Merge branch 'main' into integrityCheckActions
priyanshu16095 139777e
Add tests for methods
priyanshu16095 39dbfd1
Fix the check and updates based on review
priyanshu16095 16e9817
Use enum for passing issue message
priyanshu16095 102e789
Fix the checkstyle check
priyanshu16095 92d91b5
Add the gui
priyanshu16095 b726f30
Add files in logic directory
priyanshu16095 86518fc
Revert changes in three files
priyanshu16095 6f985ec
Revert some more files
priyanshu16095 5ea4754
Revert some more files
priyanshu16095 237af3d
Revert changes
priyanshu16095 038f8e2
Revert changes
priyanshu16095 e5e4f75
Revert changes
priyanshu16095 7c7ddd1
Revert changes
priyanshu16095 3e795c7
Remove comment
priyanshu16095 1f84f0f
Rename variables
priyanshu16095 429af55
Show entry types in table
priyanshu16095 3c1708d
Add a CHANGELOG.md entry and Fix the check
priyanshu16095 995760a
Merge branch 'main' into tabularUI
priyanshu16095 0c44228
Add more patterns and solve dropdown UI issue
priyanshu16095 d0153e5
Change default pattern
priyanshu16095 6715540
Remove commented code
priyanshu16095 5036cf5
Remove commented method
priyanshu16095 5d5ada3
Add preference migration
priyanshu16095 88c9e4f
Merge branch 'main' of https://github.com/priyanshu16095/jabref into …
priyanshu16095 de46be4
Rename LinkedFileNamePattern and CitationKeyPattern to Pattern
priyanshu16095 279ce8f
Merge branch 'main' into tabularUI
priyanshu16095 a3383a2
Renmae LinkedFileNamePatternsPanelItemModel and CitationKeyPatternsIt…
priyanshu16095 967a4a5
Rename LinkedFileNamePatternsSuggestionCell and CitationKeyPatternsSu…
priyanshu16095 1261731
Fix the checkstyle check
priyanshu16095 965d4df
Remove the redundant check
priyanshu16095 a0a00ef
Fix the check
priyanshu16095 ba11cf3
Fix import in MetaDataParse.java
priyanshu16095 d000184
Rename Pattern to KeyPattern
priyanshu16095 2ef68ef
Add logic to store in FilePreference.java
priyanshu16095 aa8e806
Update tests, add a getter
priyanshu16095 18e17a1
Use default via preferences
priyanshu16095 4e25832
Changes as per review
priyanshu16095 1ca61c7
Fix the problem with not storing values
priyanshu16095 998a8b4
Rename PatternsItemModel to CitationKeyPatternsItemModel again
priyanshu16095 87600fd
Rename PatternsItemModel to CitationKeyPatternsPanelItemModel again
priyanshu16095 73ad672
Rename PatternsItemModel to PatternsPanelItemModel and Fix the issue …
priyanshu16095 272fa51
Fix the problem with default value
priyanshu16095 6def49d
Remove use of magic strings
priyanshu16095 b79bb45
Merge branch 'main' into tabularUI
priyanshu16095 0ffc361
Fix the check
priyanshu16095 c0475ec
Fix the check
priyanshu16095 6569d58
Push latest changes
priyanshu16095 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
--- | ||
parent: Code Howtos | ||
--- | ||
# Command Line Interface | ||
|
||
The package `org.jabref.cli` is responsible for handling the command line options. | ||
|
||
During development, one can configure IntelliJ to pass command line parameters: | ||
|
||
 | ||
|
||
Passing command line arguments using gradle is currently not possible as all arguments (such as `-Dfile.encoding=windows-1252`) are passed to the application. | ||
|
||
Without [jlink](https://docs.oracle.com/en/java/javase/11/tools/jlink.html), it is not possible to generate a fat jar anymore. During development, the capabilities of the IDE has to be used. |
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 |
---|---|---|
@@ -0,0 +1,6 @@ | ||
--- | ||
parent: Code Howtos | ||
--- | ||
# Groups | ||
|
||
Diagram showing aspects of groups: [Groups.uml](https://github.com/JabRef/jabref/tree/3b3716b1e05a0d3273c886e102a8efe5e96472e0/docs/Groups.uml). |
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
17 changes: 17 additions & 0 deletions
17
src/main/java/org/jabref/gui/linkedfile/LinkedFileNamePatternsPanel.fxml
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 |
---|---|---|
@@ -0,0 +1,17 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
|
||
<?import javafx.scene.control.TableColumn?> | ||
<?import javafx.scene.control.TableView?> | ||
<fx:root editable="true" minWidth="280.0" type="TableView" | ||
xmlns="http://javafx.com/javafx/11.0.1" xmlns:fx="http://javafx.com/fxml/1" | ||
fx:controller="org.jabref.gui.linkedfile.LinkedFileNamePatternsPanel"> | ||
<columns> | ||
<TableColumn fx:id="entryTypeColumn" editable="false" minWidth="100.0" text="%Name"/> | ||
<TableColumn fx:id="patternColumn" minWidth="100.0" text="%Key pattern"/> | ||
<TableColumn fx:id="actionsColumn" editable="false" maxWidth="30.0" minWidth="30.0" prefWidth="30.0" | ||
reorderable="false" resizable="false" sortable="false"/> | ||
</columns> | ||
<columnResizePolicy> | ||
<TableView fx:constant="CONSTRAINED_RESIZE_POLICY"/> | ||
</columnResizePolicy> | ||
</fx:root> |
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.
Uh oh!
There was an error while loading. Please reload this page.