From d35fc3e65b316c4c8d532d138afc940f383d16cb Mon Sep 17 00:00:00 2001 From: elgekko Date: Fri, 26 May 2023 00:27:54 +0200 Subject: [PATCH] v0.1.1 --- lis-app/pom.xml | 2 +- .../ui/converter/DoubleToStringConverter.java | 8 +- .../main/resources/web/partner-selector.zul | 4 +- .../src/main/resources/web/project-editor.zul | 134 ++++++++++-------- .../main/resources/web/project-selector.zul | 2 +- .../resources/web/static/css/webclient.css | 8 ++ lis-ui/src/main/resources/web/timeout.zul | 4 +- start-lis.sh | 1 + stop-lis.sh | 1 + 9 files changed, 91 insertions(+), 73 deletions(-) create mode 100644 start-lis.sh create mode 100644 stop-lis.sh diff --git a/lis-app/pom.xml b/lis-app/pom.xml index e4b4744..f59bdf6 100644 --- a/lis-app/pom.xml +++ b/lis-app/pom.xml @@ -4,7 +4,7 @@ 4.0.0 hu.user lis-app - 0.1.0-SNAPSHOT + 0.1.1-SNAPSHOT hu.user lis diff --git a/lis-ui/src/main/java/hu/user/lis/ui/converter/DoubleToStringConverter.java b/lis-ui/src/main/java/hu/user/lis/ui/converter/DoubleToStringConverter.java index dd5a98c..dde634b 100644 --- a/lis-ui/src/main/java/hu/user/lis/ui/converter/DoubleToStringConverter.java +++ b/lis-ui/src/main/java/hu/user/lis/ui/converter/DoubleToStringConverter.java @@ -2,13 +2,13 @@ package hu.user.lis.ui.converter; import org.zkoss.bind.BindContext; import org.zkoss.bind.Converter; -import org.zkoss.zul.Listcell; +import org.zkoss.zk.ui.Component; import java.math.RoundingMode; import java.text.NumberFormat; import java.util.Locale; -public class DoubleToStringConverter implements Converter { +public class DoubleToStringConverter implements Converter { static private NumberFormat nf = NumberFormat.getInstance(new Locale("hu", "HU")); static { @@ -18,12 +18,12 @@ public class DoubleToStringConverter implements Converter - - + diff --git a/lis-ui/src/main/resources/web/project-editor.zul b/lis-ui/src/main/resources/web/project-editor.zul index 2015310..aa0bfad 100644 --- a/lis-ui/src/main/resources/web/project-editor.zul +++ b/lis-ui/src/main/resources/web/project-editor.zul @@ -14,55 +14,60 @@ - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -76,20 +81,23 @@ - - - - - - - + + + + + + + + + + diff --git a/lis-ui/src/main/resources/web/project-selector.zul b/lis-ui/src/main/resources/web/project-selector.zul index 24d1cc9..b1488b4 100644 --- a/lis-ui/src/main/resources/web/project-selector.zul +++ b/lis-ui/src/main/resources/web/project-selector.zul @@ -1,5 +1,5 @@ - + .z-row-inner, +.no-hover-grid .z-row:hover>.z-cell { + background: none; +} +/**/ + textarea { resize: none; } diff --git a/lis-ui/src/main/resources/web/timeout.zul b/lis-ui/src/main/resources/web/timeout.zul index 9709c4c..4dccfd0 100644 --- a/lis-ui/src/main/resources/web/timeout.zul +++ b/lis-ui/src/main/resources/web/timeout.zul @@ -1,9 +1,9 @@ - + Tovább - + \ No newline at end of file diff --git a/start-lis.sh b/start-lis.sh new file mode 100644 index 0000000..a8876ce --- /dev/null +++ b/start-lis.sh @@ -0,0 +1 @@ +java -DLIS-APPLICATION -jar lis-app-0.1.1-SNAPSHOT.jar > /dev/null 2>&1 & diff --git a/stop-lis.sh b/stop-lis.sh new file mode 100644 index 0000000..b0804d4 --- /dev/null +++ b/stop-lis.sh @@ -0,0 +1 @@ +pkill -f LIS-APPLICATION -- 2.54.0