From af290e4b4f027ad2daec2397cb45c4fe81130ff2 Mon Sep 17 00:00:00 2001 From: Artur Signell Date: Tue, 14 Apr 2009 12:13:25 +0000 Subject: Merged fix for #2819 - Updated build.xml to remove .gwt-tmp when a widgetset has been built svn changeset:7401/svn branch:6.0 --- build/build.xml | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) (limited to 'build') diff --git a/build/build.xml b/build/build.xml index 06bcd3fb79..e5cadfd72e 100644 --- a/build/build.xml +++ b/build/build.xml @@ -734,6 +734,11 @@ TEST TARGET CALLED + + Removing widgetset temp files + + + Compiling src (client-side) com.itmill.toolkit.terminal.gwt.DefaultWidgetSet @@ -751,6 +756,7 @@ + Compiled DefaultWidgetSet @@ -780,6 +786,7 @@ + Compiled ReservationWidgetSet @@ -802,6 +809,7 @@ + Compiled SamplerWidgetSet @@ -823,7 +831,8 @@ - Compiled SamplerWidgetSet + + Compiled CoverflowWidgetSet @@ -844,6 +853,7 @@ + Compiled ColorPickerWidgetSet -- cgit v1.2.3 From bc5356f12ca6e6daf75fd17b8d9620d4b449d614 Mon Sep 17 00:00:00 2001 From: Artur Signell Date: Tue, 14 Apr 2009 13:58:10 +0000 Subject: Changed versions to development so built packages are not confused with the release packages svn changeset:7406/svn branch:6.0 --- build/VERSION.properties | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'build') diff --git a/build/VERSION.properties b/build/VERSION.properties index 85aede4896..6a1bc1320c 100644 --- a/build/VERSION.properties +++ b/build/VERSION.properties @@ -1 +1 @@ -version=5.3.0 +version=6.0.development -- cgit v1.2.3 From c2a6543cbf31109a73166908cef09cc607d2a403 Mon Sep 17 00:00:00 2001 From: Artur Signell Date: Mon, 20 Apr 2009 05:52:38 +0000 Subject: Merged all 5.4 build script and testing tools related changes to 6.0 svn changeset:7462/svn branch:6.0 --- build/bin/mergetool.py | 11 ++-- build/build.xml | 60 +++++++++++++++++----- build/package/start.sh | 2 +- .../toolkit/launcher/ITMillToolkitDesktopMode.java | 10 ++-- 4 files changed, 55 insertions(+), 28 deletions(-) (limited to 'build') diff --git a/build/bin/mergetool.py b/build/bin/mergetool.py index 91d9d5105c..7ed1cb1579 100755 --- a/build/bin/mergetool.py +++ b/build/bin/mergetool.py @@ -79,12 +79,10 @@ def listChangedFiles(): changed = [] for line in lines: # Remove trailing newline - line = line.rstrip() - print line - + line = line[:-1] + # Extract the file state and name - filestate = line[0:2].strip() - filename = line[7:].strip() + (filestate, filename) = re.split(r'[ \+]+', line) # Ignore files in build directory if (filename.startswith("build/merge/") \ @@ -543,8 +541,7 @@ def commandRevert(): line = line[:-1] # Extract the file state and name - filestate = line[0:2].strip() - filename = line[7:].strip() + (filestate, filename) = re.split(r'[ \+]+', line) # Ignore files in build directory if (filename.startswith("build/merge/") \ diff --git a/build/build.xml b/build/build.xml index e5cadfd72e..ec50f34df7 100644 --- a/build/build.xml +++ b/build/build.xml @@ -186,9 +186,6 @@ Toolkit package is: ${toolkit-package} - - - @@ -975,6 +972,18 @@ + + + + + + + XEP license expected to be installed as ${xep.license.path.installed} + + + + + @@ -986,13 +995,15 @@ + - - + + + - + @@ -1009,7 +1020,7 @@ - + @@ -1120,7 +1131,7 @@ Installing ${output-dir}/WebContent/${lib-jar-name} to ${nightly.publish} Hopefully you have permissions for the copy operation with SSH. - + @@ -1137,16 +1148,37 @@ - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + ##teamcity[testSuiteStarted name='com.itmill.toolkit.tests.test-framework'] diff --git a/build/package/start.sh b/build/package/start.sh index 448d318415..febda97e4c 100644 --- a/build/package/start.sh +++ b/build/package/start.sh @@ -4,4 +4,4 @@ if [ "$1" != "" ] ; then cd $1 fi -java -cp WebContent/demo/lib/jetty/jetty-6.1.7.jar:WebContent/demo/lib/jetty/jetty-util-6.1.7.jar:WebContent/demo/lib/jetty/servlet-api-2.5-6.1.7.jar:WebContent/WEB-INF/classes:WebContent/WEB-INF/src com.itmill.toolkit.launcher.ITMillToolkitDesktopMode +java -cp WebContent/demo/lib/jetty/jetty-6.1.7.jar:WebContent/demo/lib/jetty/jetty-util-6.1.7.jar:WebContent/demo/lib/jetty/servlet-api-2.5-6.1.7.jar:WebContent/WEB-INF/classes:WebContent/WEB-INF/src com.itmill.toolkit.launcher.ITMillToolkitDesktopMode $ITMILLTOOLKIT_PARAMETERS diff --git a/src/com/itmill/toolkit/launcher/ITMillToolkitDesktopMode.java b/src/com/itmill/toolkit/launcher/ITMillToolkitDesktopMode.java index 72aecc4464..e16fea21cb 100644 --- a/src/com/itmill/toolkit/launcher/ITMillToolkitDesktopMode.java +++ b/src/com/itmill/toolkit/launcher/ITMillToolkitDesktopMode.java @@ -63,14 +63,12 @@ public class ITMillToolkitDesktopMode { final String url = ITMillToolkitWebMode.runServer(serverArgs, "Desktop Mode"); - // Open browser into application URL - if (url != null) { + if (!serverArgs.containsKey("nogui") && url != null) { + + // Open browser into application URL BrowserLauncher.openBrowser(url); - } - - // Open control dialog - if (url != null) { + // Open control dialog /* * Swing components should never be manipulated outside the event * dispatch thread. -- cgit v1.2.3