[JBoss JIRA] (JBIDE-15944) [Regression] Can not edit server runtime classpath
by Denis Golovin (JIRA)
Denis Golovin created JBIDE-15944:
-------------------------------------
Summary: [Regression] Can not edit server runtime classpath
Key: JBIDE-15944
URL: https://issues.jboss.org/browse/JBIDE-15944
Project: Tools (JBoss Tools)
Issue Type: Bug
Components: server
Environment: windows eclipse 3.4.1
Reporter: filippo rossoni
Assignee: Rob Stryker
Priority: Blocker
Fix For: 3.0.0.GA
Attachments: JBIDE-3770.jpg
when edit the server runtime configuration the changes are lost after save
--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira
12 years, 7 months
[JBoss JIRA] (JBIDE-15895) Cordova API not working when added widget from jQuery Mobile palette
by Gorkem Ercan (JIRA)
[ https://issues.jboss.org/browse/JBIDE-15895?page=com.atlassian.jira.plugi... ]
Gorkem Ercan updated JBIDE-15895:
---------------------------------
Fix Version/s: 4.2.x
(was: 4.1.1.CR1)
> Cordova API not working when added widget from jQuery Mobile palette
> --------------------------------------------------------------------
>
> Key: JBIDE-15895
> URL: https://issues.jboss.org/browse/JBIDE-15895
> Project: Tools (JBoss Tools)
> Issue Type: Bug
> Components: aerogear-hybrid, browsersim, upstream
> Affects Versions: 4.1.1.Beta1
> Environment: JBDS7.1.0.Beta1b Beta1-v20131102-1529-B493
> Reporter: Vlado Pakan
> Fix For: 4.2.x
>
>
> 1. Create Mobile Hybrid Project
> 2. Add Accelerometer testing page as described on phonegap wep page
> 3. Run Project on CordovaSim and/or Emulator and/or Android device
> 4. Open Acceleromer page
> ASSERT: App is displaying data from Accelerometer
> 5. Open index.html page add some widget from jQuery Mobile pallete and save
> 6. Repeat step 3. and 4.
> ERROR: App is not displaying data from Accelerometer. Event DeviceReady is not fired
> When adding widget from jQuery Mobile pallete also this reference to jQuery Mobile java script file is added
> {noformat}
> <script src="http://code.jquery.com/mobile/1.3.1/jquery.mobile-1.3.1.min.js"></script>
> {noformat}
> and it seems is somehow breaking Cordova API functionality. Once removed from index.html application is displaying data from Acceleromer again
--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira
12 years, 7 months
[JBoss JIRA] (JBIDE-15934) Run on Android Device does not work on OS X
by Gorkem Ercan (JIRA)
[ https://issues.jboss.org/browse/JBIDE-15934?page=com.atlassian.jira.plugi... ]
Gorkem Ercan commented on JBIDE-15934:
--------------------------------------
The only thing that our tooling does is to restart the adb server before calling adb devices. The main reason for this is without this restart adb looses the emulators often.
> Run on Android Device does not work on OS X
> -------------------------------------------
>
> Key: JBIDE-15934
> URL: https://issues.jboss.org/browse/JBIDE-15934
> Project: Tools (JBoss Tools)
> Issue Type: Bug
> Components: aerogear-hybrid
> Affects Versions: 4.1.1.Beta1
> Environment: OS X Mavericks
> Latest Android SDK
> JBDS 7.1.0.Beta1
> Nexus 7
> Reporter: Martin Malina
> Fix For: 4.1.1.CR1
>
>
> Following the instructions in JBIDE-15904 I am trying to run an app on an Android Device.
> This fails for me - I get: No developer enabled android device is attached to this computer please attach your device and try again. (Punctuation is missing, btw.)
> When I try to run adb devices, I can see the device is not there. Development mode is enabled on the device and it works for Vlado on Linux.
> I found out that using Run on Android Device somehow breaks the connection with the device - before I run that, "adb devices" shows the device just fine. After I run that, the device is no longer displayed.
> We even tried to deploy the app using adb install and it worked (while the device was still connected)
--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira
12 years, 7 months
[JBoss JIRA] (JBIDE-15943) openshift-java-client: Remove useragent hack that allows jenkins plugin to use "OpenShift" in the useragent
by Andre Dietisheim (JIRA)
Andre Dietisheim created JBIDE-15943:
----------------------------------------
Summary: openshift-java-client: Remove useragent hack that allows jenkins plugin to use "OpenShift" in the useragent
Key: JBIDE-15943
URL: https://issues.jboss.org/browse/JBIDE-15943
Project: Tools (JBoss Tools)
Issue Type: Enhancement
Components: openshift
Affects Versions: 4.1.1.Beta1
Reporter: Andre Dietisheim
Assignee: Andre Dietisheim
Fix For: 4.1.1.CR1, 4.2.0.Alpha1
There's a "hack" in openshift-java-client that makes sure that the OpenShift jenkins plugin is using "OpenShift" as user-agent:
{code:title=UrlConnectionHttpClient}
...
private static final String USERAGENT_FOR_KEYAUTH = "OpenShift";
...
private String setupUserAgent(String authKey, String authIV, String userAgent) {
if (!StringUtils.isEmpty(authKey)) {
if (userAgent == null) {
userAgent = USERAGENT_FOR_KEYAUTH;
} else if (!userAgent.startsWith(USERAGENT_FOR_KEYAUTH)) {
userAgent = USERAGENT_FOR_KEYAUTH + '-' + userAgent;
}
}
return userAgent;
}
{code}
This logic is OpenShift jenkins-plugin specific and should be removed from openshift-java-client.
--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira
12 years, 7 months
[JBoss JIRA] (JBIDE-15935) Android SDK not installed automatically on OS X
by Max Rydahl Andersen (JIRA)
[ https://issues.jboss.org/browse/JBIDE-15935?page=com.atlassian.jira.plugi... ]
Max Rydahl Andersen commented on JBIDE-15935:
---------------------------------------------
[~vpakan], [~mmalina] can you confirm/deny what [~fbricon] asks for ?
wether ADT normal install (not using our central) asks for installing android sdk OR if the sdk already installed ?
> Android SDK not installed automatically on OS X
> -----------------------------------------------
>
> Key: JBIDE-15935
> URL: https://issues.jboss.org/browse/JBIDE-15935
> Project: Tools (JBoss Tools)
> Issue Type: Bug
> Components: central
> Affects Versions: 4.1.1.Beta1
> Environment: JBDS 7.1.0.Beta1
> OS X Mavericks
> Reporter: Martin Malina
> Fix For: 4.1.1.CR1
>
> Attachments: Central_AndTools.png
>
> Original Estimate: 0 minutes
> Remaining Estimate: 0 minutes
>
> When I install android tools from central and then I restart the IDE as requested, I should be asked to automatically download and install Android SDK (I got word it works this way on Linux). I got nothing like that on OS X.
> So I had to download and setup SDK manually.
--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira
12 years, 7 months