[JBoss JIRA] (JBIDE-20756) Touch events for BrowserSim are not set properly
by Vlado Pakan (JIRA)
[ https://issues.jboss.org/browse/JBIDE-20756?page=com.atlassian.jira.plugi... ]
Vlado Pakan commented on JBIDE-20756:
-------------------------------------
When JavaFx is used there are no errors but no touch event is fired
> Touch events for BrowserSim are not set properly
> ------------------------------------------------
>
> Key: JBIDE-20756
> URL: https://issues.jboss.org/browse/JBIDE-20756
> Project: Tools (JBoss Tools)
> Issue Type: Bug
> Components: browsersim
> Affects Versions: 4.3.0.CR1
> Environment: JBDS 9.0.0.CR1-v20150918-0257-B105 Fedora 22 KDE 64bit
> Reporter: Vlado Pakan
> Assignee: Konstantin Marmalyukov
> Fix For: 4.3.x
>
>
> 1. Create HTML page with this content:
> {code:html}
> <!DOCTYPE html>
> <html>
> <head>
> <title>sample</title>
> <script type="text/javascript">
> function window_onload() {
> document.getElementById('touchable').addEventListener('touchstart', function(ev) {
> alert('touchstart')}, false);
> document.getElementById('touchable').addEventListener('touchend', function(ev) {
> alert('touchend')}, false);
> document.getElementById('touchable').addEventListener('touchmove', function(ev) {
> alert('touchmove')}, false);
> }
> </script>
> </head>
> <body onload='window_onload();'>
> <div id='touchable'>This element is touchable.</div>
> </body>
> </html>
> {code}
> 2. Open this page in BrowserSim
> 3. Enable touch events for BrowserSim
> 4. Click somewhere within the page in BrowserSim
> ERROR:
> {noformat}
> !JavaScript WARN: Converting `ontouchstart` property to event listener.
> !JavaScript ERROR: TypeError: Unable to delete property. on line 118 for file:///.../jboss-touchevents/src/main/webapp/index.html
> !JavaScript WARN: Converting `ontouchend` property to event listener.
> !JavaScript ERROR: TypeError: Unable to delete property. on line 118 for file:///.../jboss-touchevents/src/main/webapp/index.html
> {noformat}
--
This message was sent by Atlassian JIRA
(v6.4.11#64026)
10 years, 7 months
[JBoss JIRA] (JBIDE-20756) Touch events for BrowserSim are not set properly
by Konstantin Marmalyukov (JIRA)
[ https://issues.jboss.org/browse/JBIDE-20756?page=com.atlassian.jira.plugi... ]
Konstantin Marmalyukov updated JBIDE-20756:
-------------------------------------------
Workaround Description: Switch to JavaFx mode
Workaround: Workaround Exists
> Touch events for BrowserSim are not set properly
> ------------------------------------------------
>
> Key: JBIDE-20756
> URL: https://issues.jboss.org/browse/JBIDE-20756
> Project: Tools (JBoss Tools)
> Issue Type: Bug
> Components: browsersim
> Affects Versions: 4.3.0.CR1
> Environment: JBDS 9.0.0.CR1-v20150918-0257-B105 Fedora 22 KDE 64bit
> Reporter: Vlado Pakan
> Assignee: Konstantin Marmalyukov
> Fix For: 4.3.x
>
>
> 1. Create HTML page with this content:
> {code:html}
> <!DOCTYPE html>
> <html>
> <head>
> <title>sample</title>
> <script type="text/javascript">
> function window_onload() {
> document.getElementById('touchable').addEventListener('touchstart', function(ev) {
> alert('touchstart')}, false);
> document.getElementById('touchable').addEventListener('touchend', function(ev) {
> alert('touchend')}, false);
> document.getElementById('touchable').addEventListener('touchmove', function(ev) {
> alert('touchmove')}, false);
> }
> </script>
> </head>
> <body onload='window_onload();'>
> <div id='touchable'>This element is touchable.</div>
> </body>
> </html>
> {code}
> 2. Open this page in BrowserSim
> 3. Enable touch events for BrowserSim
> 4. Click somewhere within the page in BrowserSim
> ERROR:
> {noformat}
> !JavaScript WARN: Converting `ontouchstart` property to event listener.
> !JavaScript ERROR: TypeError: Unable to delete property. on line 118 for file:///.../jboss-touchevents/src/main/webapp/index.html
> !JavaScript WARN: Converting `ontouchend` property to event listener.
> !JavaScript ERROR: TypeError: Unable to delete property. on line 118 for file:///.../jboss-touchevents/src/main/webapp/index.html
> {noformat}
--
This message was sent by Atlassian JIRA
(v6.4.11#64026)
10 years, 7 months
[JBoss JIRA] (JBIDE-20754) org.jboss.tools.jmx.local.ProcessInformationStore doesn't handle spaces in the java.home path - part 2
by Martin Malina (JIRA)
[ https://issues.jboss.org/browse/JBIDE-20754?page=com.atlassian.jira.plugi... ]
Martin Malina commented on JBIDE-20754:
---------------------------------------
[~ldimaggio], [~akazakov], see the issue from which this is cloned for more details: JBIDE-20510
This issue is not new and most probably was always there, we just didn't know about it. We still don't know if there's any impact of the error shown (perhaps [~rob.stryker] could answer that).
So Len, yes, it's present in CR1, see the other JIRA. It was reported with Beta2, but as far as I know, it's in all versions.
> org.jboss.tools.jmx.local.ProcessInformationStore doesn't handle spaces in the java.home path - part 2
> ------------------------------------------------------------------------------------------------------
>
> Key: JBIDE-20754
> URL: https://issues.jboss.org/browse/JBIDE-20754
> Project: Tools (JBoss Tools)
> Issue Type: Bug
> Components: jmx
> Affects Versions: 4.3.0.Beta2
> Environment: Windows 7 x64, Eclipse Mars (4.5.0), Java 1.8.0u51
> Reporter: Daniel Atallah
> Assignee: Rob Stryker
> Priority: Critical
> Fix For: 4.3.1.Final
>
>
> org.jboss.tools.jmx.local.ProcessInformationStore.loadProcessStore:97 should either use the Runtime.getRuntime().exec(String[]) method to deal with Java installation locations containing spaces.
> In my case the {{java.home}} system property points to {{"C:\Program Files\Java\jdk1.8.0_51"}}, which I think would be pretty normal on Windows.
> {noformat}
> java.io.IOException: Cannot run program "C:\Program": CreateProcess error=2, The system cannot find the file specified
> at java.lang.ProcessBuilder.start(ProcessBuilder.java:1048)
> at java.lang.Runtime.exec(Runtime.java:620)
> at java.lang.Runtime.exec(Runtime.java:450)
> at java.lang.Runtime.exec(Runtime.java:347)
> at org.jboss.tools.jmx.local.ProcessInformationStore.loadProcessStore(ProcessInformationStore.java:97)
> at org.jboss.tools.jmx.local.ProcessInformationStore.refreshProcessInformationStore(ProcessInformationStore.java:64)
> at org.jboss.tools.jmx.local.ProcessInformationStore$1.run(ProcessInformationStore.java:135)
> at org.eclipse.core.internal.jobs.Worker.run(Worker.java:55)
> Caused by: java.io.IOException: CreateProcess error=2, The system cannot find the file specified
> at java.lang.ProcessImpl.create(Native Method)
> at java.lang.ProcessImpl.<init>(ProcessImpl.java:386)
> at java.lang.ProcessImpl.start(ProcessImpl.java:137)
> at java.lang.ProcessBuilder.start(ProcessBuilder.java:1029)
> ... 7 more
> {noformat}
> I'm note sure what the impact is - I don't necessarily notice anything not working.
--
This message was sent by Atlassian JIRA
(v6.4.11#64026)
10 years, 7 months
[JBoss JIRA] (JBIDE-20745) Livereload doesn't work stable with CordovaSim / BrowserSim
by Ilya Buziuk (JIRA)
[ https://issues.jboss.org/browse/JBIDE-20745?page=com.atlassian.jira.plugi... ]
Ilya Buziuk updated JBIDE-20745:
--------------------------------
Description:
It seems that Livereload stopped working on simple pages like:
{code}
<!DOCTYPE html>
<html>
<head>
<title>Insert title here</title>
</head>
<body>
<h1>Hello World</h1>
</body>
</html>
{code}
But at the same time it works fine with some complex projects like jboss-as-kitchensink-html5-mobile & https://github.com/ibuziuk/cordovasim-demo
was:
It seems that Livereload stopped working on simple pages like:
{code}
<!DOCTYPE html>
<html>
<head>
<title>Insert title here</title>
</head>
<body>
<h1>Hello World</h1>
</body>
</html>
{code}
But at the same time it works fine with some complex projects like & https://github.com/ibuziuk/cordovasim-demo
> Livereload doesn't work stable with CordovaSim / BrowserSim
> -----------------------------------------------------------
>
> Key: JBIDE-20745
> URL: https://issues.jboss.org/browse/JBIDE-20745
> Project: Tools (JBoss Tools)
> Issue Type: Bug
> Components: browsersim, cordovasim, livereload
> Affects Versions: 4.3.0.CR1
> Reporter: Ilya Buziuk
> Assignee: Ilya Buziuk
> Priority: Critical
> Fix For: 4.3.1.Final
>
>
> It seems that Livereload stopped working on simple pages like:
> {code}
> <!DOCTYPE html>
> <html>
> <head>
> <title>Insert title here</title>
> </head>
> <body>
> <h1>Hello World</h1>
> </body>
> </html>
> {code}
> But at the same time it works fine with some complex projects like jboss-as-kitchensink-html5-mobile & https://github.com/ibuziuk/cordovasim-demo
--
This message was sent by Atlassian JIRA
(v6.4.11#64026)
10 years, 7 months
[JBoss JIRA] (JBIDE-20636) Push changes: Management interface wont come up while deployment
by Andre Dietisheim (JIRA)
[ https://issues.jboss.org/browse/JBIDE-20636?page=com.atlassian.jira.plugi... ]
Andre Dietisheim commented on JBIDE-20636:
------------------------------------------
[~red4sis] in a quick look at it this very much looks like a backend problem. If this happens with the command line (rhc), too then we know for sure. Does it? Can you please verify it?
> Push changes: Management interface wont come up while deployment
> ----------------------------------------------------------------
>
> Key: JBIDE-20636
> URL: https://issues.jboss.org/browse/JBIDE-20636
> Project: Tools (JBoss Tools)
> Issue Type: Bug
> Components: openshift
> Affects Versions: 4.3.0.CR1
> Reporter: Jeff Cantrill
> Labels: openshift_v2
> Fix For: 4.3.1.Final
>
>
> Reference: https://github.com/openshift/origin/issues/4502
> {code}
> Preparing build for deployment
> Deployment id is f2c69660
> Activating deployment
> Starting PHPMyAdmin cartridge
> Starting MySQL 5.5 cartridge Deploying JBoss
> Starting jbossas cartridge
> Found 127.3.158.129:8080 listening port
> Found 127.3.158.129:9999 listening port
> CLIENT_MESSAGE: Could not connect to JBoss management interface, skipping deployment verification
> -------------------------
> Git Post-Receive Result: success
> Activation status: success
> Deployment completed with status: success
> {code}
--
This message was sent by Atlassian JIRA
(v6.4.11#64026)
10 years, 7 months
[JBoss JIRA] (JBIDE-20636) Push changes: Management interface wont come up while deployment
by Andre Dietisheim (JIRA)
[ https://issues.jboss.org/browse/JBIDE-20636?page=com.atlassian.jira.plugi... ]
Andre Dietisheim updated JBIDE-20636:
-------------------------------------
Summary: Push changes: Management interface wont come up while deployment (was: Push changes: Deployment wont get performed, management interface wont come up)
> Push changes: Management interface wont come up while deployment
> ----------------------------------------------------------------
>
> Key: JBIDE-20636
> URL: https://issues.jboss.org/browse/JBIDE-20636
> Project: Tools (JBoss Tools)
> Issue Type: Bug
> Components: openshift
> Affects Versions: 4.3.0.CR1
> Reporter: Jeff Cantrill
> Labels: openshift_v2
> Fix For: 4.3.1.Final
>
>
> Reference: https://github.com/openshift/origin/issues/4502
> {code}
> Preparing build for deployment
> Deployment id is f2c69660
> Activating deployment
> Starting PHPMyAdmin cartridge
> Starting MySQL 5.5 cartridge Deploying JBoss
> Starting jbossas cartridge
> Found 127.3.158.129:8080 listening port
> Found 127.3.158.129:9999 listening port
> CLIENT_MESSAGE: Could not connect to JBoss management interface, skipping deployment verification
> -------------------------
> Git Post-Receive Result: success
> Activation status: success
> Deployment completed with status: success
> {code}
--
This message was sent by Atlassian JIRA
(v6.4.11#64026)
10 years, 7 months
[JBoss JIRA] (JBIDE-20754) org.jboss.tools.jmx.local.ProcessInformationStore doesn't handle spaces in the java.home path - part 2
by Alexey Kazakov (JIRA)
[ https://issues.jboss.org/browse/JBIDE-20754?page=com.atlassian.jira.plugi... ]
Alexey Kazakov commented on JBIDE-20754:
----------------------------------------
This is some old problem right? Or it's a regression and we didn't have it in JBDS 8?
> org.jboss.tools.jmx.local.ProcessInformationStore doesn't handle spaces in the java.home path - part 2
> ------------------------------------------------------------------------------------------------------
>
> Key: JBIDE-20754
> URL: https://issues.jboss.org/browse/JBIDE-20754
> Project: Tools (JBoss Tools)
> Issue Type: Bug
> Components: jmx
> Affects Versions: 4.3.0.Beta2
> Environment: Windows 7 x64, Eclipse Mars (4.5.0), Java 1.8.0u51
> Reporter: Daniel Atallah
> Assignee: Rob Stryker
> Priority: Critical
> Fix For: 4.3.1.Final
>
>
> org.jboss.tools.jmx.local.ProcessInformationStore.loadProcessStore:97 should either use the Runtime.getRuntime().exec(String[]) method to deal with Java installation locations containing spaces.
> In my case the {{java.home}} system property points to {{"C:\Program Files\Java\jdk1.8.0_51"}}, which I think would be pretty normal on Windows.
> {noformat}
> java.io.IOException: Cannot run program "C:\Program": CreateProcess error=2, The system cannot find the file specified
> at java.lang.ProcessBuilder.start(ProcessBuilder.java:1048)
> at java.lang.Runtime.exec(Runtime.java:620)
> at java.lang.Runtime.exec(Runtime.java:450)
> at java.lang.Runtime.exec(Runtime.java:347)
> at org.jboss.tools.jmx.local.ProcessInformationStore.loadProcessStore(ProcessInformationStore.java:97)
> at org.jboss.tools.jmx.local.ProcessInformationStore.refreshProcessInformationStore(ProcessInformationStore.java:64)
> at org.jboss.tools.jmx.local.ProcessInformationStore$1.run(ProcessInformationStore.java:135)
> at org.eclipse.core.internal.jobs.Worker.run(Worker.java:55)
> Caused by: java.io.IOException: CreateProcess error=2, The system cannot find the file specified
> at java.lang.ProcessImpl.create(Native Method)
> at java.lang.ProcessImpl.<init>(ProcessImpl.java:386)
> at java.lang.ProcessImpl.start(ProcessImpl.java:137)
> at java.lang.ProcessBuilder.start(ProcessBuilder.java:1029)
> ... 7 more
> {noformat}
> I'm note sure what the impact is - I don't necessarily notice anything not working.
--
This message was sent by Atlassian JIRA
(v6.4.11#64026)
10 years, 7 months
[JBoss JIRA] (JBIDE-20636) Push changes: Deployment wont get performed, management interface wont come up
by Andre Dietisheim (JIRA)
[ https://issues.jboss.org/browse/JBIDE-20636?page=com.atlassian.jira.plugi... ]
Andre Dietisheim updated JBIDE-20636:
-------------------------------------
Description:
Reference: https://github.com/openshift/origin/issues/4502
{code}
Preparing build for deployment
Deployment id is f2c69660
Activating deployment
Starting PHPMyAdmin cartridge
Starting MySQL 5.5 cartridge Deploying JBoss
Starting jbossas cartridge
Found 127.3.158.129:8080 listening port
Found 127.3.158.129:9999 listening port
CLIENT_MESSAGE: Could not connect to JBoss management interface, skipping deployment verification
-------------------------
Git Post-Receive Result: success
Activation status: success
Deployment completed with status: success
{code}
was:
Reference: https://github.com/openshift/origin/issues/4502
{code}
Preparing build for deployment Deployment id is f2c69660 Activating deployment Starting PHPMyAdmin cartridge Starting MySQL 5.5 cartridge Deploying JBoss Starting jbossas cartridge Found 127.3.158.129:8080 listening port Found 127.3.158.129:9999 listening port CLIENT_MESSAGE: Could not connect to JBoss management interface, skipping deployment verification ------------------------- Git Post-Receive Result: success Activation status: success Deployment completed with status: success
{code}
> Push changes: Deployment wont get performed, management interface wont come up
> ------------------------------------------------------------------------------
>
> Key: JBIDE-20636
> URL: https://issues.jboss.org/browse/JBIDE-20636
> Project: Tools (JBoss Tools)
> Issue Type: Bug
> Components: openshift
> Affects Versions: 4.3.0.CR1
> Reporter: Jeff Cantrill
> Labels: openshift_v2
> Fix For: 4.3.1.Final
>
>
> Reference: https://github.com/openshift/origin/issues/4502
> {code}
> Preparing build for deployment
> Deployment id is f2c69660
> Activating deployment
> Starting PHPMyAdmin cartridge
> Starting MySQL 5.5 cartridge Deploying JBoss
> Starting jbossas cartridge
> Found 127.3.158.129:8080 listening port
> Found 127.3.158.129:9999 listening port
> CLIENT_MESSAGE: Could not connect to JBoss management interface, skipping deployment verification
> -------------------------
> Git Post-Receive Result: success
> Activation status: success
> Deployment completed with status: success
> {code}
--
This message was sent by Atlassian JIRA
(v6.4.11#64026)
10 years, 7 months