Codebase list plm / dd6c2f2
d/p/no-javafx: Remove some code that sneaked in upstream by accident Martin Quinson 3 years ago
3 changed file(s) with 39 addition(s) and 0 deletion(s). Raw diff Collapse all Expand all
33 - Fix a bug that prevented the PLM from saving the user code on disk.
44 - Some small improvements to the pedagogical content.
55 - New (partial) Ukrainian translation, thanks Yuri Chornoivan.
6 * d/p/no-javafx: Remove some code that sneaked in upstream by accident.
67
78 -- Martin Quinson <mquinson@debian.org> Sun, 20 Sep 2020 21:40:58 +0200
89
0 By accident, the upstream package contains a test javafx application.
1 I know that for sure since I'm the upstream author. I'll remove this
2 attempt from upstream at some point. Sorry for the mess.
3
4 ---
5 src/plm/core/javafx/PLM.java | 24 ------------------------
6 1 file changed, 24 deletions(-)
7
8 Index: b/src/plm/core/javafx/PLM.java
9 ===================================================================
10 --- a/src/plm/core/javafx/PLM.java
11 +++ /dev/null
12 @@ -1,24 +0,0 @@
13 -package plm.core.javafx;
14 -
15 -import javafx.application.Application;
16 -import javafx.scene.Group;
17 -import javafx.scene.layout.VBox;
18 -import javafx.scene.web.WebView;
19 -import javafx.scene.Scene;
20 -import javafx.stage.Stage;
21 -
22 -public class PLM extends Application {
23 - @Override
24 - public void start(Stage primaryStage) throws Exception {
25 - WebView webView = new WebView();
26 -
27 - webView.getEngine().load("http://google.com");
28 -
29 - VBox vBox = new VBox(webView);
30 - Scene scene = new Scene(vBox, 960, 600);
31 -
32 - primaryStage.setScene(scene);
33 - primaryStage.show();
34 -
35 - }
36 -}
22 no-github
33 jython-fixes
44 json-simple-3.patch
5 no-javafx