Skip to content

Commit f641333

Browse files
authored
Merge branch 'ControlSystemStudio:master' into pv-tango
2 parents 96da3e8 + bf6fa78 commit f641333

File tree

534 files changed

+23472
-6742
lines changed

Some content is hidden

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

534 files changed

+23472
-6742
lines changed

.github/PULL_REQUEST_TEMPLATE.md

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
2+
<!-- ^^^ Describe your changes here ^^^ -->
3+
4+
## Checklist
5+
6+
<!--
7+
Check all that apply.
8+
9+
Note that these are not all required,
10+
but serves as information for reviewers.
11+
-->
12+
13+
- Testing:
14+
- [ ] The feature has automated tests
15+
- [ ] Tests were run
16+
- If not, explain how you tested your changes
17+
18+
- Documentation:
19+
- [ ] The feature is documented
20+
- [ ] The documentation is up to date
21+
- Release notes:
22+
- [ ] Added an entry if the change is breaking or significant
23+
- [ ] Added an entry when adding a new feature

.gitignore

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -123,6 +123,5 @@ phoebus-product/settings_template.ini
123123

124124
# doc files generated by docs/source/conf.py
125125
docs/source/applications.rst
126-
docs/source/preference_properties.rst
127126
docs/source/services.rst
128127

app/3d-viewer/pom.xml

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,23 @@
1+
12
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
23
<modelVersion>4.0.0</modelVersion>
34
<parent>
45
<groupId>org.phoebus</groupId>
56
<artifactId>app</artifactId>
6-
<version>5.0.1-SNAPSHOT</version>
7+
<version>5.0.3-SNAPSHOT</version>
78
</parent>
89
<artifactId>app-3d-viewer</artifactId>
10+
<name>${project.groupId}:${project.artifactId}</name>
911
<dependencies>
1012
<dependency>
1113
<groupId>org.phoebus</groupId>
1214
<artifactId>core-ui</artifactId>
13-
<version>5.0.1-SNAPSHOT</version>
15+
<version>5.0.3-SNAPSHOT</version>
1416
</dependency>
1517
<dependency>
1618
<groupId>org.phoebus</groupId>
1719
<artifactId>core-framework</artifactId>
18-
<version>5.0.1-SNAPSHOT</version>
20+
<version>5.0.3-SNAPSHOT</version>
1921
</dependency>
2022
<dependency>
2123
<groupId>org.junit.jupiter</groupId>
Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,12 @@
1-
<?xml version="1.0" encoding="UTF-8"?>
21
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
32
<modelVersion>4.0.0</modelVersion>
43
<parent>
54
<groupId>org.phoebus</groupId>
65
<artifactId>app-alarm</artifactId>
7-
<version>5.0.1-SNAPSHOT</version>
6+
<version>5.0.3-SNAPSHOT</version>
87
</parent>
98
<artifactId>app-alarm-audio-annunciator</artifactId>
10-
9+
<name>${project.groupId}:${project.artifactId}</name>
1110
<properties>
1211
<maven.compiler.source>17</maven.compiler.source>
1312
<maven.compiler.target>17</maven.compiler.target>
@@ -17,7 +16,7 @@
1716
<dependency>
1817
<groupId>org.phoebus</groupId>
1918
<artifactId>app-alarm-ui</artifactId>
20-
<version>5.0.1-SNAPSHOT</version>
19+
<version>5.0.3-SNAPSHOT</version>
2120
</dependency>
2221
<dependency>
2322
<groupId>org.openjfx</groupId>
@@ -26,4 +25,4 @@
2625
</dependency>
2726
</dependencies>
2827

29-
</project>
28+
</project>

app/alarm/datasource/pom.xml

Lines changed: 8 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,10 @@
33
<parent>
44
<groupId>org.phoebus</groupId>
55
<artifactId>app-alarm</artifactId>
6-
<version>5.0.1-SNAPSHOT</version>
6+
<version>5.0.3-SNAPSHOT</version>
77
</parent>
88
<artifactId>app-alarm-datasouce</artifactId>
9+
<name>${project.groupId}:${project.artifactId}</name>
910
<dependencies>
1011
<dependency>
1112
<groupId>org.junit.jupiter</groupId>
@@ -22,32 +23,32 @@
2223
<dependency>
2324
<groupId>org.phoebus</groupId>
2425
<artifactId>core-framework</artifactId>
25-
<version>5.0.1-SNAPSHOT</version>
26+
<version>5.0.3-SNAPSHOT</version>
2627
</dependency>
2728
<dependency>
2829
<groupId>org.phoebus</groupId>
2930
<artifactId>core-types</artifactId>
30-
<version>5.0.1-SNAPSHOT</version>
31+
<version>5.0.3-SNAPSHOT</version>
3132
</dependency>
3233
<dependency>
3334
<groupId>org.phoebus</groupId>
3435
<artifactId>core-pv</artifactId>
35-
<version>5.0.1-SNAPSHOT</version>
36+
<version>5.0.3-SNAPSHOT</version>
3637
</dependency>
3738
<dependency>
3839
<groupId>org.phoebus</groupId>
3940
<artifactId>core-util</artifactId>
40-
<version>5.0.1-SNAPSHOT</version>
41+
<version>5.0.3-SNAPSHOT</version>
4142
</dependency>
4243
<dependency>
4344
<groupId>org.phoebus</groupId>
4445
<artifactId>core-ui</artifactId>
45-
<version>5.0.1-SNAPSHOT</version>
46+
<version>5.0.3-SNAPSHOT</version>
4647
</dependency>
4748
<dependency>
4849
<groupId>org.phoebus</groupId>
4950
<artifactId>app-alarm-model</artifactId>
50-
<version>5.0.1-SNAPSHOT</version>
51+
<version>5.0.3-SNAPSHOT</version>
5152
</dependency>
5253
<dependency>
5354
<groupId>net.sf.sociaal</groupId>

app/alarm/examples/talk.sh

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
#!/bin/sh
2+
#
3+
# Send talk message
4+
5+
if [ $# -ne 2 ]
6+
then
7+
echo "Usage: talk.sh Accelerator Message"
8+
exit 1
9+
fi
10+
11+
topic="$1"
12+
text="$2"
13+
14+
kafka/bin/kafka-console-producer.sh --broker-list localhost:9092 --property 'parse.key=true' --property key.separator=" : " --topic ${topic}Talk <<END
15+
talk:/$topic/pv : {"severity":"MAJOR", "standout":true, "talk":"$text"}
16+
END
17+
18+
Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,13 @@
1-
<?xml version="1.0" encoding="UTF-8"?>
21
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
32
<modelVersion>4.0.0</modelVersion>
43
<parent>
54
<groupId>org.phoebus</groupId>
65
<artifactId>app-alarm</artifactId>
7-
<version>5.0.1-SNAPSHOT</version>
6+
<version>5.0.3-SNAPSHOT</version>
87
</parent>
98
<artifactId>app-alarm-freetts-annunciator</artifactId>
10-
11-
<properties>
9+
<name>${project.groupId}:${project.artifactId}</name>
10+
<properties>
1211
<maven.compiler.source>17</maven.compiler.source>
1312
<maven.compiler.target>17</maven.compiler.target>
1413
</properties>
@@ -22,9 +21,9 @@
2221
<dependency>
2322
<groupId>org.phoebus</groupId>
2423
<artifactId>app-alarm-ui</artifactId>
25-
<version>5.0.1-SNAPSHOT</version>
24+
<version>5.0.3-SNAPSHOT</version>
2625
<scope>compile</scope>
2726
</dependency>
2827
</dependencies>
2928

30-
</project>
29+
</project>

app/alarm/logging-ui/pom.xml

Lines changed: 8 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -3,39 +3,40 @@
33
<parent>
44
<groupId>org.phoebus</groupId>
55
<artifactId>app-alarm</artifactId>
6-
<version>5.0.1-SNAPSHOT</version>
6+
<version>5.0.3-SNAPSHOT</version>
77
</parent>
88
<artifactId>app-alarm-logging-ui</artifactId>
9+
<name>${project.groupId}:${project.artifactId}</name>
910
<dependencies>
1011
<dependency>
1112
<groupId>org.phoebus</groupId>
1213
<artifactId>core-framework</artifactId>
13-
<version>5.0.1-SNAPSHOT</version>
14+
<version>5.0.3-SNAPSHOT</version>
1415
</dependency>
1516
<dependency>
1617
<groupId>org.phoebus</groupId>
1718
<artifactId>core-ui</artifactId>
18-
<version>5.0.1-SNAPSHOT</version>
19+
<version>5.0.3-SNAPSHOT</version>
1920
</dependency>
2021
<dependency>
2122
<groupId>org.phoebus</groupId>
2223
<artifactId>core-types</artifactId>
23-
<version>5.0.1-SNAPSHOT</version>
24+
<version>5.0.3-SNAPSHOT</version>
2425
</dependency>
2526
<dependency>
2627
<groupId>org.phoebus</groupId>
2728
<artifactId>core-util</artifactId>
28-
<version>5.0.1-SNAPSHOT</version>
29+
<version>5.0.3-SNAPSHOT</version>
2930
</dependency>
3031
<dependency>
3132
<groupId>org.phoebus</groupId>
3233
<artifactId>app-alarm-model</artifactId>
33-
<version>5.0.1-SNAPSHOT</version>
34+
<version>5.0.3-SNAPSHOT</version>
3435
</dependency>
3536
<dependency>
3637
<groupId>org.phoebus</groupId>
3738
<artifactId>app-alarm-ui</artifactId>
38-
<version>5.0.1-SNAPSHOT</version>
39+
<version>5.0.3-SNAPSHOT</version>
3940
<scope>compile</scope>
4041
</dependency>
4142
<dependency>

app/alarm/model/pom.xml

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,11 @@
33
<parent>
44
<groupId>org.phoebus</groupId>
55
<artifactId>app-alarm</artifactId>
6-
<version>5.0.1-SNAPSHOT</version>
6+
<version>5.0.3-SNAPSHOT</version>
77
</parent>
88
<artifactId>app-alarm-model</artifactId>
9-
<dependencies>
9+
<name>${project.groupId}:${project.artifactId}</name>
10+
<dependencies>
1011
<dependency>
1112
<groupId>org.junit.jupiter</groupId>
1213
<artifactId>junit-jupiter</artifactId>
@@ -47,12 +48,12 @@
4748
<dependency>
4849
<groupId>org.phoebus</groupId>
4950
<artifactId>core-framework</artifactId>
50-
<version>5.0.1-SNAPSHOT</version>
51+
<version>5.0.3-SNAPSHOT</version>
5152
</dependency>
5253
<dependency>
5354
<groupId>org.phoebus</groupId>
5455
<artifactId>core-util</artifactId>
55-
<version>5.0.1-SNAPSHOT</version>
56+
<version>5.0.3-SNAPSHOT</version>
5657
</dependency>
5758
</dependencies>
5859
</project>

0 commit comments

Comments
 (0)