Skip to content
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

Convert SharedDatabaseConnect Dialog to Javafx #4040

Merged
merged 36 commits into from
Aug 31, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
36 commits
Select commit Hold shift + click to select a range
a2f99df
Convert SharedBD Dialog to javafx
Siedlerchr May 18, 2018
3db0452
Merge remote-tracking branch 'upstream/maintable-beta' into sharedblogin
Siedlerchr May 20, 2018
8e79ac9
convert shared database dialog to javafx
Siedlerchr May 20, 2018
cfa6384
fix checkstyle
Siedlerchr May 20, 2018
bd73449
convert some more dialogs to fx
Siedlerchr May 21, 2018
f4f0bc4
checkstyle
Siedlerchr May 21, 2018
b39455a
Merge remote-tracking branch 'upstream/maintable-beta' into sharedblogin
Siedlerchr May 25, 2018
66ecd83
remove duplicate listener which results in loop
Siedlerchr May 25, 2018
08836a5
add localization
Siedlerchr May 25, 2018
e228e65
add cancel button
Siedlerchr May 25, 2018
9348086
add button types, but results in npe
Siedlerchr May 25, 2018
e7fd700
move gui logic to viewmodel
Siedlerchr May 25, 2018
f960808
add validation support, move rest of logic to view model
Siedlerchr May 25, 2018
e0cf01d
wrap initVisualization in platform.runlater to avoid exception regard…
Siedlerchr May 25, 2018
e033afd
Merge remote-tracking branch 'upstream/master' into sharedblogin
Siedlerchr Jun 6, 2018
2fcc7a3
remove old gui class
Siedlerchr Jun 6, 2018
41c07af
Merge remote-tracking branch 'upstream/master' into sharedblogin
Siedlerchr Aug 24, 2018
7c1605c
add ssl options
Siedlerchr Aug 24, 2018
0da63fa
l10n cleanup
Siedlerchr Aug 25, 2018
4ebf7c2
Merge remote-tracking branch 'upstream/master' into sharedblogin
Siedlerchr Aug 29, 2018
b01ca3c
add bindings for keystore
Siedlerchr Aug 29, 2018
d3ac48f
checkstyle
Siedlerchr Aug 29, 2018
bbce005
fix l10n
Siedlerchr Aug 29, 2018
a38d03a
add support for ssl
Siedlerchr Aug 29, 2018
0dc04a3
fix checkstyle
Siedlerchr Aug 29, 2018
46d90f6
fix keystore file path not displayed
Siedlerchr Aug 30, 2018
e1d45f9
renamings
Siedlerchr Aug 30, 2018
b4190f0
enable ssl for all
Siedlerchr Aug 30, 2018
dbc7f03
checkstyle
Siedlerchr Aug 30, 2018
9e68ea5
cleanups
Siedlerchr Aug 31, 2018
c6a3b1a
store keystore file in prefs
Siedlerchr Aug 31, 2018
18f8344
set useSSL and keystore correctly
Siedlerchr Aug 31, 2018
1814069
fix checkstyle
Siedlerchr Aug 31, 2018
c19bb18
resize and convert one binding to view model
Siedlerchr Aug 31, 2018
83898ff
address comments, pass connectionProperties as parameter
Siedlerchr Aug 31, 2018
4102644
fix one codacy suggestion
Siedlerchr Aug 31, 2018
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package org.jabref.gui.actions;

import org.jabref.gui.JabRefFrame;
import org.jabref.gui.shared.ConnectToSharedDatabaseDialog;
import org.jabref.gui.shared.SharedDatabaseLoginDialogView;

/**
* Opens a shared database.
Expand All @@ -16,7 +16,6 @@ public ConnectToSharedDatabaseCommand(JabRefFrame jabRefFrame) {

@Override
public void execute() {
ConnectToSharedDatabaseDialog connectToSharedDatabaseDialog = new ConnectToSharedDatabaseDialog(jabRefFrame);
connectToSharedDatabaseDialog.setVisible(true);
new SharedDatabaseLoginDialogView(jabRefFrame).showAndWait();
}
}
Loading