Author: ptw
Date: 2010-06-29 13:03:14 -0700 (Tue, 29 Jun 2010)
New Revision: 16833
Modified:
openlaszlo/branches/4.8/
openlaszlo/branches/4.8/WEB-INF/lps/server/src/org/openlaszlo/server/LPS.java
Log:
Merged revisions 16624 via svnmerge from
http://svn.openlaszlo.org/openlaszlo/trunk
.......
r16624 | hqm | 2010-06-04 11:57:03 -0400 (Fri, 04 Jun 2010) | 30 lines
Change 20100604-hqm-I by hqm at badtzmaru.home on 2010-06-04 11:44:02 EDT
in /Users/hqm/openlaszlo/trunk2
for http://svn.openlaszlo.org/openlaszlo/trunk
Summary: set java runtime to use headless awt operation by default
New Features:
Bugs Fixed: LPP-9085
Technical Reviewer: ptw
QA Reviewer: (pending)
Doc Reviewer: (pending)
Documentation:
Release Notes:
Overview:
Details:
set System.setProperty("java.awt.headless", "true") when LPS initializes
Tests:
ant build no longer causes java process to come to front in OSX
.......
Property changes on: openlaszlo/branches/4.8
___________________________________________________________________
Name: svnmerge-integrated
- /openlaszlo/trunk:1-3892,3894-3952,3954-4393,4395-4461,4463-4467,4469-4471,4473-5085,5087-5171,5173-5203,5205-5209,5211-5331,5333-5334,16597,16605,16610,16628,16650,16724,16757,16767,16771,16796,16824-16825 /openlaszlo/branches/4.7:1-15424,15759-15761,16592,16634 /openlaszlo/branches/4.2:1-12154,12181,13205,13778,14112,14287,14316,14508,14517-14590 /openlaszlo/branches/4.1:1-10153 /openlaszlo/branches/4.4:1-13936,14007 /openlaszlo/branches/devildog:1-8432 /openlaszlo/branches/pagan-deities:1-7955,8825,10756-10920,10922-10928,10930-10935,11151,11207,11554,13476,13629,15650,15685 /openlaszlo/branches/paperpie:1-6504,6506-6574,6576-7135,7137-7235 /openlaszlo/branches/wafflecone:1-5746,5818-6068,6070-6205,6207-6213,6216-6265,6267-6368,6370-6431,6433-6450,6497,6509,6661,7097,7872
+ /openlaszlo/trunk:1-3892,3894-3952,3954-4393,4395-4461,4463-4467,4469-4471,4473-5085,5087-5171,5173-5203,5205-5209,5211-5331,5333-5334,16597,16605,16610,16624,16628,16650,16724,16757,16767,16771,16796,16824-16825 /openlaszlo/branches/4.7:1-15424,15759-15761,16592,16634 /openlaszlo/branches/4.2:1-12154,12181,13205,13778,14112,14287,14316,14508,14517-14590 /openlaszlo/branches/4.1:1-10153 /openlaszlo/branches/4.4:1-13936,14007 /openlaszlo/branches/devildog:1-8432 /openlaszlo/branches/pagan-deities:1-7955,8825,10756-10920,10922-10928,10930-10935,11151,11207,11554,13476,13629,15650,15685 /openlaszlo/branches/paperpie:1-6504,6506-6574,6576-7135,7137-7235 /openlaszlo/branches/wafflecone:1-5746,5818-6068,6070-6205,6207-6213,6216-6265,6267-6368,6370-6431,6433-6450,6497,6509,6661,7097,7872
Modified: openlaszlo/branches/4.8/WEB-INF/lps/server/src/org/openlaszlo/server/LPS.java
===================================================================
--- openlaszlo/branches/4.8/WEB-INF/lps/server/src/org/openlaszlo/server/LPS.java 2010-06-29 18:36:04 UTC (rev 16832)
+++ openlaszlo/branches/4.8/WEB-INF/lps/server/src/org/openlaszlo/server/LPS.java 2010-06-29 20:03:14 UTC (rev 16833)
@@ -3,7 +3,7 @@
* ****************************************************************************/
/* J_LZ_COPYRIGHT_BEGIN *******************************************************
-* Copyright 2001-2009 Laszlo Systems, Inc. All Rights Reserved. *
+* Copyright 2001-2010 Laszlo Systems, Inc. All Rights Reserved. *
* Use is subject to license terms. *
* J_LZ_COPYRIGHT_END *********************************************************/
@@ -78,6 +78,10 @@
mBuildDate = root.getChildTextNormalize("build-date");
mVersionID = root.getChildTextNormalize("version-id");
mRelease = root.getChildTextNormalize("release");
+
+ System.setProperty("java.awt.headless", "true");
+
+
}