/hg/icedtea-web: * netx/net/sourceforge/jnlp/runtime/Boot.java: ...
jvanek at icedtea.classpath.org
jvanek at icedtea.classpath.org
Tue Oct 2 08:46:00 UTC 2018
changeset bc46334f8730 in /hg/icedtea-web
details: http://icedtea.classpath.org/hg/icedtea-web?cmd=changeset;node=bc46334f8730
author: Jiri Vanek <jvanek at redhat.com>
date: Tue Oct 02 10:45:37 2018 +0200
* netx/net/sourceforge/jnlp/runtime/Boot.java: returned handling of version, licnes, help, property and about which disapeared without any trace inchangelog
diffstat:
netx/net/sourceforge/jnlp/runtime/Boot.java | 42 +++++++++++++++++++++++++++++
1 files changed, 42 insertions(+), 0 deletions(-)
diffs (52 lines):
diff -r 2f0a9aa90a60 -r bc46334f8730 netx/net/sourceforge/jnlp/runtime/Boot.java
--- a/netx/net/sourceforge/jnlp/runtime/Boot.java Tue Oct 02 10:36:25 2018 +0200
+++ b/netx/net/sourceforge/jnlp/runtime/Boot.java Tue Oct 02 10:45:37 2018 +0200
@@ -122,6 +122,48 @@
}
}
+ if (optionParser.hasOption(OptionsDefinitions.OPTIONS.VERSION)) {
+ OutputController.getLogger().printOutLn(nameAndVersion);
+ JNLPRuntime.exit(0);
+ }
+
+ if (optionParser.hasOption(OptionsDefinitions.OPTIONS.LICENSE)) {
+ OutputController.getLogger().printOutLn(miniLicense);
+ JNLPRuntime.exit(0);
+ }
+
+ if (optionParser.hasOption(OptionsDefinitions.OPTIONS.HELP1)) {
+ handleMessage();
+ JNLPRuntime.exit(0);
+ }
+ List<String> properties = optionParser.getParams(OptionsDefinitions.OPTIONS.PROPERTY);
+ if (properties != null) {
+ for (String prop : properties) {
+ try {
+ PropertyDesc propDesc = PropertyDesc.fromString(prop);
+ JNLPRuntime.getConfiguration().setProperty(propDesc.getKey(), propDesc.getValue());
+ } catch (LaunchException ex) {
+ OutputController.getLogger().log(ex);
+ }
+ }
+ }
+
+ if (optionParser.hasOption(OptionsDefinitions.OPTIONS.ABOUT)) {
+ handleAbout();
+ if (JNLPRuntime.isHeadless()) {
+ JNLPRuntime.exit(0);
+ } else {
+ try {
+ UIManager.setLookAndFeel(UIManager.getSystemLookAndFeelClassName());
+ } catch (Exception e) {
+ OutputController.getLogger().log("Unable to set system look and feel");
+ }
+ OutputController.getLogger().printOutLn(R("BLaunchAbout"));
+ AboutDialog.display(TextsProvider.JAVAWS);
+ return;
+ }
+ }
+
if (optionParser.hasOption(OptionsDefinitions.OPTIONS.UPDATE)) {
int value = Integer.parseInt(optionParser.getParam(OptionsDefinitions.OPTIONS.UPDATE));
JNLPRuntime.setDefaultUpdatePolicy(new UpdatePolicy(value * 1000l));
More information about the distro-pkg-dev
mailing list