[JBoss JIRA] (JBIDE-16041) "null" in label of remove connection dialog
by Andre Dietisheim (JIRA)
[ https://issues.jboss.org/browse/JBIDE-16041?page=com.atlassian.jira.plugi... ]
Andre Dietisheim updated JBIDE-16041:
-------------------------------------
Description:
ASSERT: Have connection that's using the default server in OpenShift explorer.
EXEC: Choose connection, open context menu and Remove connection.
In prompt (after attempt to remove OpenShift connection in OpenShift Explorer) is in dialog shown some text tooltip but there is some "null" value.
!null_label.png!
was:
ASSERT: Have connection to OpenShift in OpenShift explorer.
EXEC: Choose connection, open context menu and Remove connection.
In prompt (after attempt to remove OpenShift connection in OpenShift Explorer) is in dialog shown some text tooltip but there is some "null" value.
!null_label.png!
> "null" in label of remove connection dialog
> -------------------------------------------
>
> Key: JBIDE-16041
> URL: https://issues.jboss.org/browse/JBIDE-16041
> Project: Tools (JBoss Tools)
> Issue Type: Bug
> Components: openshift
> Affects Versions: 4.1.1.CR1
> Reporter: Marián Labuda
> Assignee: Andre Dietisheim
> Priority: Minor
> Attachments: null_label.png
>
>
> ASSERT: Have connection that's using the default server in OpenShift explorer.
> EXEC: Choose connection, open context menu and Remove connection.
> In prompt (after attempt to remove OpenShift connection in OpenShift Explorer) is in dialog shown some text tooltip but there is some "null" value.
> !null_label.png!
--
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, 5 months
[JBoss JIRA] (JBDS-2832) Installer GUI problems in java8
by Denis Golovin (JIRA)
[ https://issues.jboss.org/browse/JBDS-2832?page=com.atlassian.jira.plugin.... ]
Denis Golovin updated JBDS-2832:
--------------------------------
Component/s: upstream
> Installer GUI problems in java8
> -------------------------------
>
> Key: JBDS-2832
> URL: https://issues.jboss.org/browse/JBDS-2832
> Project: Developer Studio (JBoss Developer Studio)
> Issue Type: Bug
> Security Level: Public(Everyone can see)
> Components: installer, upstream
> Affects Versions: 7.1.x
> Environment: Win7 64bit
> jdk 1.8.0 b114
> Reporter: Konstantin Marmalyukov
> Assignee: Denis Golovin
> Attachments: Screenshot 2013-11-18 20.48.07.png, Screenshot 2013-11-18 20.49.20.png, Screenshot 2013-11-18 20.49.29.png
>
>
> I have opened an installer with java8. The result is in attached files.
> Btw, choosing java8 is not allowed in JVM choose step.
--
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, 5 months
[JBoss JIRA] (JBIDE-16040) Openshift Enterprise: Web balancer cartridge should not be listed
by Andre Dietisheim (JIRA)
[ https://issues.jboss.org/browse/JBIDE-16040?page=com.atlassian.jira.plugi... ]
Andre Dietisheim updated JBIDE-16040:
-------------------------------------
Priority: Minor (was: Major)
> Openshift Enterprise: Web balancer cartridge should not be listed
> -----------------------------------------------------------------
>
> Key: JBIDE-16040
> URL: https://issues.jboss.org/browse/JBIDE-16040
> Project: Tools (JBoss Tools)
> Issue Type: Enhancement
> Components: openshift
> Affects Versions: 4.1.1.CR1
> Reporter: Marián Labuda
> Assignee: Andre Dietisheim
> Priority: Minor
> Attachments: haproxy_cartridge.png
>
>
> There is embedded cartridge Web Balancer listed in table of embedded cartridges. It is not possible use this cartridge in any application, bcs. it's automatically added to scalable application. Remove this cartridge from scalable application is not possible as well. Also on the OpenShift Enterprise is not this cartridge listed among others.
> !haproxy_cartridge.png!
--
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, 5 months
[JBoss JIRA] (JBIDE-15512) CordovaSim: need to implement InAppBrowser plugin
by Ilya Buziuk (JIRA)
[ https://issues.jboss.org/browse/JBIDE-15512?page=com.atlassian.jira.plugi... ]
Ilya Buziuk commented on JBIDE-15512:
-------------------------------------
Hello, [~vpakan].
Here you can find InAppBrowser API documentation with samples - http://docs.phonegap.com/en/3.0.0/cordova_inappbrowser_inappbrowser.md.ht....
Steps for verifying:
1. Create new Hybrid Mobile Application Project
2. Add inAppBrowser plugin via config.xml wizard
3. Update index.html with the sample from the documentation. For instance, the code from the sample below loads http://apache.org in the inAppBrowser and changes the apache logo image with the cordova image :
{code:title=index.html|borderStyle=solid}
<!DOCTYPE html>
<html>
<head>
<title>InAppBrowser.executeScript Example</title>
<script type="text/javascript" charset="utf-8" src="cordova.js"></script>
<script type="text/javascript" charset="utf-8">
// Wait for device API libraries to load
//
document.addEventListener("deviceready", onDeviceReady, false);
// Global InAppBrowser reference
var iabRef = null;
// Inject our custom JavaScript into the InAppBrowser window
//
function replaceHeaderImage() {
iabRef.executeScript({
code: "var img=document.querySelector('#header img'); img.src='http://cordova.apache.org/images/cordova_bot.png';"
}, function() {
alert("Image Element Successfully Hijacked");
});
}
function iabClose(event) {
iabRef.removeEventListener('loadstop', replaceHeaderImage);
iabRef.removeEventListener('exit', iabClose);
}
// device APIs are available
//
function onDeviceReady() {
iabRef = window.open('http://apache.org', '_blank', 'location=yes');
iabRef.addEventListener('loadstop', replaceHeaderImage);
iabRef.addEventListener('exit', iabClose);
}
</script>
</head>
<body>
</body>
</html>
{code}
4. Run the newly created project with the Cordovasim. The expected result - !inAppBrowser.png|thumbnail!
5. You can also run this sample on the Android device, to compare the result of emulation with the actual result.
NOTES:
- InAppBrowser and ChildBrowser can be closed by pressing BrowserSim's "back" or "home" buttons
- I have added demo samples for inAppBrowser and ChildBrowser API - https://github.com/ibuziuk/cordovasim-demo.
> CordovaSim: need to implement InAppBrowser plugin
> -------------------------------------------------
>
> Key: JBIDE-15512
> URL: https://issues.jboss.org/browse/JBIDE-15512
> Project: Tools (JBoss Tools)
> Issue Type: Sub-task
> Components: browsersim
> Reporter: Ilya Buziuk
> Assignee: Ilya Buziuk
> Fix For: 4.1.1.CR1, 4.2.0.Alpha1
>
> Attachments: inAppBrowser.png
>
>
> InAppBrowser ( http://docs.phonegap.com/en/3.0.0/cordova_inappbrowser_inappbrowser.md.ht... ) which is based on Child Browser plugin is part of org.apache.cordova API.
> This feature can't be implemented via iframe, because of the X-Frame-Options and Same-origin policy. So, it should be implemented via browserFunction (org.eclipse.swt.browser.BrowserFunction) and SWT Browser widget
--
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, 5 months
[JBoss JIRA] (JBDS-2807) Update jrebel updatesite to use separate url for install feedback
by Nick Boldt (JIRA)
[ https://issues.jboss.org/browse/JBDS-2807?page=com.atlassian.jira.plugin.... ]
Nick Boldt commented on JBDS-2807:
----------------------------------
OK, JBDS 5, 6, and 7.0.1 have been updated on the server. [~arhan] [~maxandersen], can you see if you're getting pingbacks from JBT 5, 6, and 7.0.1 users?
Affected URLs (can be tested explicitly w/ -Djboss.discovery.directory.url= pointing at one of these in your eclipse.ini or jbdevstudio.ini):
https://devstudio.jboss.com/updates/7.0/devstudio-directory.xml
https://devstudio.jboss.com/updates/6.0/devstudio-directory.xml
https://devstudio.jboss.com/updates/5.0/devstudio-directory.xml
http://download.jboss.org/jbosstools/updates/stable/kepler/jbosstools-dir...
http://download.jboss.org/jbosstools/updates/stable/juno/jbosstools-direc...
http://download.jboss.org/jbosstools/updates/stable/indigo/jbosstools-dir...
> Update jrebel updatesite to use separate url for install feedback
> -----------------------------------------------------------------
>
> Key: JBDS-2807
> URL: https://issues.jboss.org/browse/JBDS-2807
> Project: Developer Studio (JBoss Developer Studio)
> Issue Type: Task
> Security Level: Public(Everyone can see)
> Components: central, discovery
> Reporter: Max Rydahl Andersen
> Assignee: Nick Boldt
> Labels: respin-a
> Fix For: 5.0.2.GA, 6.0.1.GA, 7.0.1.GA, 7.1.0.Beta1
>
> Attachments: JBDS2807_after_install_JRebel.png, JBDS2807_after_install_JRebel_JBDS7beta1_b441.png, JBDS2807_JBDS502_JRebel540_installed.png, JBDS2807_JBDS50x_patch.txt, JBDS2807_JBDS50x_patch2.txt, JBDS2807_JBDS601_JRebel540_installed.png, JBDS2807_JBDS60x_patch.txt, JBDS2807_JBDS60x_patch2.txt, JBDS2807_JBDS700_JRebel540_installed.png, JBDS2807_JBT33x_patch.txt, JBDS2807_JBT33x_patch2.txt
>
>
> jrebel would like to see how many installs central gives and have given us this special url to use in discovery.xml.
> http://update.zeroturnaround.com/update-site-jboss/
> (the / at the end is important)
> We should change this for all active discovery plugins that have jrebel mentioned.
--
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, 5 months
[JBoss JIRA] (JBDS-2807) Update jrebel updatesite to use separate url for install feedback
by Nick Boldt (JIRA)
[ https://issues.jboss.org/browse/JBDS-2807?page=com.atlassian.jira.plugin.... ]
Nick Boldt updated JBDS-2807:
-----------------------------
Assignee: Maxim Areshkau (was: Nick Boldt)
> Update jrebel updatesite to use separate url for install feedback
> -----------------------------------------------------------------
>
> Key: JBDS-2807
> URL: https://issues.jboss.org/browse/JBDS-2807
> Project: Developer Studio (JBoss Developer Studio)
> Issue Type: Task
> Security Level: Public(Everyone can see)
> Components: central, discovery
> Reporter: Max Rydahl Andersen
> Assignee: Maxim Areshkau
> Labels: respin-a
> Fix For: 5.0.2.GA, 6.0.1.GA, 7.0.1.GA, 7.1.0.Beta1
>
> Attachments: JBDS2807_after_install_JRebel.png, JBDS2807_after_install_JRebel_JBDS7beta1_b441.png, JBDS2807_JBDS502_JRebel540_installed.png, JBDS2807_JBDS50x_patch.txt, JBDS2807_JBDS50x_patch2.txt, JBDS2807_JBDS601_JRebel540_installed.png, JBDS2807_JBDS60x_patch.txt, JBDS2807_JBDS60x_patch2.txt, JBDS2807_JBDS700_JRebel540_installed.png, JBDS2807_JBT33x_patch.txt, JBDS2807_JBT33x_patch2.txt
>
>
> jrebel would like to see how many installs central gives and have given us this special url to use in discovery.xml.
> http://update.zeroturnaround.com/update-site-jboss/
> (the / at the end is important)
> We should change this for all active discovery plugins that have jrebel mentioned.
--
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, 5 months
[JBoss JIRA] (JBDS-2807) Update jrebel updatesite to use separate url for install feedback
by Nick Boldt (JIRA)
[ https://issues.jboss.org/browse/JBDS-2807?page=com.atlassian.jira.plugin.... ]
Nick Boldt updated JBDS-2807:
-----------------------------
Assignee: Max Rydahl Andersen (was: Maxim Areshkau)
> Update jrebel updatesite to use separate url for install feedback
> -----------------------------------------------------------------
>
> Key: JBDS-2807
> URL: https://issues.jboss.org/browse/JBDS-2807
> Project: Developer Studio (JBoss Developer Studio)
> Issue Type: Task
> Security Level: Public(Everyone can see)
> Components: central, discovery
> Reporter: Max Rydahl Andersen
> Assignee: Max Rydahl Andersen
> Labels: respin-a
> Fix For: 5.0.2.GA, 6.0.1.GA, 7.0.1.GA, 7.1.0.Beta1
>
> Attachments: JBDS2807_after_install_JRebel.png, JBDS2807_after_install_JRebel_JBDS7beta1_b441.png, JBDS2807_JBDS502_JRebel540_installed.png, JBDS2807_JBDS50x_patch.txt, JBDS2807_JBDS50x_patch2.txt, JBDS2807_JBDS601_JRebel540_installed.png, JBDS2807_JBDS60x_patch.txt, JBDS2807_JBDS60x_patch2.txt, JBDS2807_JBDS700_JRebel540_installed.png, JBDS2807_JBT33x_patch.txt, JBDS2807_JBT33x_patch2.txt
>
>
> jrebel would like to see how many installs central gives and have given us this special url to use in discovery.xml.
> http://update.zeroturnaround.com/update-site-jboss/
> (the / at the end is important)
> We should change this for all active discovery plugins that have jrebel mentioned.
--
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, 5 months
[JBoss JIRA] (JBIDE-15864) Add dialog displaying errors when Plugins are added to Hybrid Mobile Project
by Gorkem Ercan (JIRA)
[ https://issues.jboss.org/browse/JBIDE-15864?page=com.atlassian.jira.plugi... ]
Gorkem Ercan commented on JBIDE-15864:
--------------------------------------
the plugins directory is the only true way to discover what plugins are available to use for that application, tools actually use the plugin resources from their location under plugins.
I was actually reluctant to invoke the plugin discovery dialog from config.xml editor because it would create the impression that every plugin must modify config.xml and apparently it does. Perhaps, the best way to proceed is to move add plugin functionality elsewhere on the config.xml editor and let the add/remove buttons do only xml manipulation.
> Add dialog displaying errors when Plugins are added to Hybrid Mobile Project
> ----------------------------------------------------------------------------
>
> Key: JBIDE-15864
> URL: https://issues.jboss.org/browse/JBIDE-15864
> Project: Tools (JBoss Tools)
> Issue Type: Feature Request
> Components: aerogear-hybrid
> Affects Versions: 4.1.1.Beta1
> Reporter: Vlado Pakan
> Assignee: Gorkem Ercan
> Fix For: 4.1.1.CR1
>
>
> Sometimes when adding Plugins to Hybrid Mobile project via Cordova Configuration Editor some errors are happening and added Plugins are different than Plugins selected to be added. This is very confusing for user. Would be nice to have some dialog explaining errors which happened while adding Plugins so user know what has happened
--
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, 5 months
[JBoss JIRA] (JBIDE-16041) "null" in label of remove connection dialog
by Marián Labuda (JIRA)
[ https://issues.jboss.org/browse/JBIDE-16041?page=com.atlassian.jira.plugi... ]
Marián Labuda updated JBIDE-16041:
----------------------------------
Description:
ASSERT: Have connection to OpenShift in OpenShift explorer.
EXEC: Choose connection, open context menu and Remove connection.
In prompt (after attempt to remove OpenShift connection in OpenShift Explorer) is in dialog shown some text tooltip but there is some "null" value.
!null_label.png!
was:
In prompt (after attempt to remove OpenShift connection in OpenShift Explorer) is in dialog shown some text tooltip but there is some "null" value.
!null_label.png!
> "null" in label of remove connection dialog
> -------------------------------------------
>
> Key: JBIDE-16041
> URL: https://issues.jboss.org/browse/JBIDE-16041
> Project: Tools (JBoss Tools)
> Issue Type: Bug
> Components: openshift
> Affects Versions: 4.1.1.CR1
> Reporter: Marián Labuda
> Assignee: Andre Dietisheim
> Priority: Minor
> Attachments: null_label.png
>
>
> ASSERT: Have connection to OpenShift in OpenShift explorer.
> EXEC: Choose connection, open context menu and Remove connection.
> In prompt (after attempt to remove OpenShift connection in OpenShift Explorer) is in dialog shown some text tooltip but there is some "null" value.
> !null_label.png!
--
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, 5 months