Skip to content

Commit 13ac314

Browse files
committed
Resolve merge conflicts
2 parents fdd3aea + 5cf6e87 commit 13ac314

File tree

69 files changed

+1156
-544
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

69 files changed

+1156
-544
lines changed

app/alarm/ui/src/main/resources/org/phoebus/applications/alarm/ui/messages_fr.properties

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,12 @@ error=Erreur
22
acknowledgeFailed=\u00C9chec de l\u0027acquittement de(s) (\u0027)alarme(s)
33
addComponentFailed=\u00C9chec de l\u0027ajout du composant
44
disableAlarmFailed=\u00C9chec de la d\u00E9sactivation de l\u0027alarme
5+
disabled=D\u00E9sactiv\u00E9
6+
disabledUntil=D\u00E9sactiv\u00E9 jusqu\u0027\u00E0
57
enableAlarmFailed=\u00C9chec de l\u0027activation de l\u0027alarme
68
moveItemFailed=\u00C9chec du d\u00E9placement de l\u0027\u00E9l\u00E9ment
9+
partlyDisabled=Partiellement d\u00E9sactiv\u00E9
710
removeComponentFailed=\u00C9chec de la suppression du composant
811
renameItemFailed=\u00C9chec du renommage de l\u0027\u00E9l\u00E9ment
12+
timer=Minuteur
913
unacknowledgeFailed=\u00C9chec de la d\u00E9sacquittement de(s) (l\u0027)alarme(s)
3.55 KB
Loading
Binary file not shown.
30 KB
Loading
34.7 KB
Loading

app/credentials-management/doc/index.rst

Lines changed: 14 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -8,18 +8,25 @@ Further, Phoebus may be configured to store the credentials entered by the user
88
In order to also support an explicit logout capability, the Credentials Management application offers means to
99
remove stored credentials.
1010

11-
In some cases an explicit login procedure can be useful, e.g. login to service for the purpose of storing
12-
user credentials and thereby support automated creation of logbook entries.
13-
1411
The application is launched using the dedicated button in the (bottom) status bar.
1512

16-
The below screen shot shows an example where credentials have been stored for the "logbook" scope,
17-
plus an option to login to the "<remote service>" scope. User may also choose to "logout" from all scopes,
13+
The below screen shot shows an example where credentials have been stored for the "Logbook" scope,
14+
plus an option to login to the "<remote service>" scope. User may also choose to "Logout from all" services,
1815
i.e. to remove all stored credentials.
1916

2017
.. image:: images/CredentialsManagement.png
2118

22-
If no credentials are stored in the credentials store, and if no services supporting authentication have been configured,
19+
If no credentials are stored in the credentials store, and if no services supporting authentication are available,
2320
the Credentials Management UI will show a static message:
2421

25-
.. image:: images/CredentialsManagement_Empty.png
22+
.. image:: images/CredentialsManagement_empty.png
23+
24+
The "Login To All" button can be used to login to all services as a single action.
25+
In this case credentials entered in the text fields of toolbar at the top are used for all services, irrespective of
26+
the credentials (if any) entered in other input fields.
27+
28+
If login to a service fails (service off-line or invalid credentials), this is indicated in the "Login Result" column.
29+
30+
.. image:: images/CredentialsManagement_one_failed.png
31+
32+
If on the other hand login succeeds to a single or all services, the dialog is closed automatically.

app/credentials-management/src/main/java/org/phoebus/applications/credentialsmanagement/CredentialsManagementController.java

Lines changed: 281 additions & 123 deletions
Large diffs are not rendered by default.

app/credentials-management/src/main/java/org/phoebus/applications/credentialsmanagement/CredentialsManagementStage.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,6 @@ public CredentialsManagementStage(List<ServiceAuthenticationProvider> authentica
6161
try {
6262
fxmlLoader.load();
6363
Scene scene = new Scene(fxmlLoader.getRoot());
64-
scene.getStylesheets().add(getClass().getResource("/css/credentials-management-style.css").toExternalForm());
6564
setTitle(Messages.Title);
6665
setScene(scene);
6766
} catch (Exception exception) {

app/credentials-management/src/main/java/org/phoebus/applications/credentialsmanagement/Messages.java

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,9 @@ public class Messages {
3030
public static String SecureStoreErrorTitle;
3131
public static String SecureStoreErrorBody;
3232
public static String Title;
33+
public static String ServiceConnectionFailure;
34+
public static String UnknownError;
35+
public static String UserNotAuthenticated;
3336

3437
static
3538
{
Lines changed: 11 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,27 @@
11
.text-field-styling{
22
-fx-padding: 5px 3px 3px 3px;
3-
-fx-border-insets: 5px 3px 3px 3px;
3+
-fx-border-insets: 5px 3px 3px 2px;
44
-fx-background-insets: 5px 3px 3px 3px;
55
-fx-border-color: #cdcdcd;
66
-fx-border-radius: 3px;
77
}
88

99
.table-view .table-column{
10-
-fx-alignment:center;
10+
-fx-alignment:CENTER;
1111
}
1212

13-
.table-view .table-cell{
14-
-fx-font-weight: bold;
13+
.table-view .column-header > .label{
14+
-fx-alignment: CENTER-LEFT;
1515
-fx-font-size: 14px;
16+
-fx-padding: 5px 3px 3px 3px;
1617
}
1718

1819
.button-style{
1920
-fx-pref-width: 100px;
2021
}
22+
23+
.error{
24+
-fx-text-fill: red;
25+
}
26+
27+

0 commit comments

Comments
 (0)