[JBoss JIRA] (JBIDE-18704) Application wizard, Embed wizard: Cartridge details are black in Win8
by Andre Dietisheim (JIRA)
[ https://issues.jboss.org/browse/JBIDE-18704?page=com.atlassian.jira.plugi... ]
Andre Dietisheim updated JBIDE-18704:
-------------------------------------
Attachment: application-wizard-fixed-details.png
embed-cartridges-fixed-details.png
> Application wizard, Embed wizard: Cartridge details are black in Win8
> ---------------------------------------------------------------------
>
> Key: JBIDE-18704
> URL: https://issues.jboss.org/browse/JBIDE-18704
> Project: Tools (JBoss Tools)
> Issue Type: Bug
> Components: openshift
> Affects Versions: 4.2.0.Final
> Reporter: Andre Dietisheim
> Labels: application_wizard
> Fix For: 4.3.0.Alpha1
>
> Attachments: application-wizard-black-details.png, application-wizard-fixed-details.png, embed-cartridges-black-details.png, embed-cartridges-fixed-details.png
>
>
> The details group which shows the details for the selected cartridge or quickstart are black in win8:
> !application-wizard-black-details.png!
> !embed-cartridges-black-details.png!
--
This message was sent by Atlassian JIRA
(v6.3.1#6329)
11 years, 5 months
[JBoss JIRA] (JBIDE-18704) Application wizard, Embed wizard: Cartridge details are black in Win8
by Andre Dietisheim (JIRA)
[ https://issues.jboss.org/browse/JBIDE-18704?page=com.atlassian.jira.plugi... ]
Andre Dietisheim commented on JBIDE-18704:
------------------------------------------
Switching for transparency to MacOS only (the only OS we know that is using no-default background for groups) and thus using default background color for all the other OSes fixes the issue:
{code}
/**
* Causes the given StyledText to be transparent. Uses a transparent
* background image (since SWT flags wont work for StyledText) or sets the
* widget to the default widget background color. Different strategies are
* used for the different platforms.
*
* @param styledText
* the styled text widget that shall get transparent background
*
* @see Control#setBackgroundImage(org.eclipse.swt.graphics.Image)
* @see StyledText
*/
public static void setTransparent(StyledText styledText) {
if (Platform.WS_COCOA.equals(Platform.getWS())) {
// MacOS has no default widget background in groups (JBIDE-16913)
styledText.setBackgroundImage(OpenShiftImages.TRANSPARENT_PIXEL_IMG);
} else {
// RHEL 6.5 cannot display transparent pixels in images (neither
// png, gif, bmp, etc.)
// Win8 cannot display transparent pixels in images (JBIDE-18704)
styledText.setBackground(styledText.getDisplay().getSystemColor(SWT.COLOR_WIDGET_BACKGROUND));
}
}
{code}
!!
> Application wizard, Embed wizard: Cartridge details are black in Win8
> ---------------------------------------------------------------------
>
> Key: JBIDE-18704
> URL: https://issues.jboss.org/browse/JBIDE-18704
> Project: Tools (JBoss Tools)
> Issue Type: Bug
> Components: openshift
> Affects Versions: 4.2.0.Final
> Reporter: Andre Dietisheim
> Labels: application_wizard
> Fix For: 4.3.0.Alpha1
>
> Attachments: application-wizard-black-details.png, embed-cartridges-black-details.png
>
>
> The details group which shows the details for the selected cartridge or quickstart are black in win8:
> !application-wizard-black-details.png!
> !embed-cartridges-black-details.png!
--
This message was sent by Atlassian JIRA
(v6.3.1#6329)
11 years, 5 months
[JBoss JIRA] (JBIDE-18704) Application wizard, Embed wizard: Cartridge details are black in Win8
by Andre Dietisheim (JIRA)
[ https://issues.jboss.org/browse/JBIDE-18704?page=com.atlassian.jira.plugi... ]
Andre Dietisheim commented on JBIDE-18704:
------------------------------------------
fedora, ubuntu, RHEL, MacOS and Win7/XP were verified for this issue (Win8 wasnt). Unfortunately Win8 brings in another inability to paint transparency to the table. We have to switch to default widget background instead of transparency like we already to for RHEL.
> Application wizard, Embed wizard: Cartridge details are black in Win8
> ---------------------------------------------------------------------
>
> Key: JBIDE-18704
> URL: https://issues.jboss.org/browse/JBIDE-18704
> Project: Tools (JBoss Tools)
> Issue Type: Bug
> Components: openshift
> Affects Versions: 4.2.0.Final
> Reporter: Andre Dietisheim
> Labels: application_wizard
> Fix For: 4.3.0.Alpha1
>
> Attachments: application-wizard-black-details.png, embed-cartridges-black-details.png
>
>
> The details group which shows the details for the selected cartridge or quickstart are black in win8:
> !application-wizard-black-details.png!
> !embed-cartridges-black-details.png!
--
This message was sent by Atlassian JIRA
(v6.3.1#6329)
11 years, 5 months
[JBoss JIRA] (JBIDE-18704) Application wizard, Embed wizard: Cartridge details are black in Win8
by Andre Dietisheim (JIRA)
[ https://issues.jboss.org/browse/JBIDE-18704?page=com.atlassian.jira.plugi... ]
Andre Dietisheim updated JBIDE-18704:
-------------------------------------
Attachment: application-wizard-black-details.png
embed-cartridges-black-details.png
> Application wizard, Embed wizard: Cartridge details are black in Win8
> ---------------------------------------------------------------------
>
> Key: JBIDE-18704
> URL: https://issues.jboss.org/browse/JBIDE-18704
> Project: Tools (JBoss Tools)
> Issue Type: Bug
> Components: openshift
> Affects Versions: 4.2.0.Final
> Reporter: Andre Dietisheim
> Labels: application_wizard
> Attachments: application-wizard-black-details.png, embed-cartridges-black-details.png
>
>
> The details group which shows the details for the selected cartridge or quickstart are black in win8:
> !application-wizard-black-details.png!
> !embed-cartridges-black-details.png!
--
This message was sent by Atlassian JIRA
(v6.3.1#6329)
11 years, 5 months
[JBoss JIRA] (JBIDE-18704) Application wizard, Embed wizard: Cartridge details are black in Win8
by Andre Dietisheim (JIRA)
Andre Dietisheim created JBIDE-18704:
----------------------------------------
Summary: Application wizard, Embed wizard: Cartridge details are black in Win8
Key: JBIDE-18704
URL: https://issues.jboss.org/browse/JBIDE-18704
Project: Tools (JBoss Tools)
Issue Type: Bug
Components: openshift
Affects Versions: 4.2.0.Final
Reporter: Andre Dietisheim
The details group which shows the details for the selected cartridge or quickstart are black in win8:
!application-wizard-black-details.png!
!embed-cartridges-black-details.png!
--
This message was sent by Atlassian JIRA
(v6.3.1#6329)
11 years, 5 months
[JBoss JIRA] (JBDS-3197) Cannot connect to server running on localhost from internal web browser in JBDS8
by Len DiMaggio (JIRA)
[ https://issues.jboss.org/browse/JBDS-3197?page=com.atlassian.jira.plugin.... ]
Len DiMaggio commented on JBDS-3197:
------------------------------------
The issue does not seem to be specific to the deployed app as the internal browser on this RHEL6 box is also not able to access http://localhost:8080 to get to the EAP admin console from the internal browser. It is reachable from an external browser on the same machine.
> Cannot connect to server running on localhost from internal web browser in JBDS8
> --------------------------------------------------------------------------------
>
> Key: JBDS-3197
> URL: https://issues.jboss.org/browse/JBDS-3197
> Project: Developer Studio (JBoss Developer Studio)
> Issue Type: Bug
> Components: server
> Affects Versions: 8.0.0.GA
> Environment: RHEL 6
> JBDS 8.0 GA
> Reporter: Len DiMaggio
> Assignee: Snjezana Peco
> Attachments: JBDS.png, JBT.png
>
>
> To recreate the problem:
> * Install JBDS 8 with the embedded EAP server
> * Create a new project - such as "start from scratch html5 kitchensink"
> * Start the embeded EAP server
> * Deploy the project to the server
> * Open the project URL - http://localhost:8080/jboss-as-kitchensink-html5-mobile/ in the internal web browser
> * This error is displayed in the internal browser view: Cannot connect to destination
> * Nothing is written to the eclipse .log
--
This message was sent by Atlassian JIRA
(v6.3.1#6329)
11 years, 5 months
[JBoss JIRA] (JBDS-3197) Cannot connect to server running on localhost from internal web browser in JBDS8
by Len DiMaggio (JIRA)
[ https://issues.jboss.org/browse/JBDS-3197?page=com.atlassian.jira.plugin.... ]
Len DiMaggio commented on JBDS-3197:
------------------------------------
The URL for the deployed app is: http://localhost:8080/jboss-as-kitchensink-html5-mobile/
The server log shows shows this here:
07:43:46,737 INFO [org.jboss.web] (ServerService Thread Pool -- 51) JBAS018210: Register web context: /jboss-as-kitchensink-html5-mobile
07:43:46,797 INFO [org.jboss.as.server] (ServerService Thread Pool -- 26) JBAS018559: Deployed "jboss-as-kitchensink-html5-mobile.war" (runtime-name : "jboss-as-kitchensink-html5-mobile.war")
It is reachable from firefox, running on the same physical machine.
> Cannot connect to server running on localhost from internal web browser in JBDS8
> --------------------------------------------------------------------------------
>
> Key: JBDS-3197
> URL: https://issues.jboss.org/browse/JBDS-3197
> Project: Developer Studio (JBoss Developer Studio)
> Issue Type: Bug
> Components: server
> Affects Versions: 8.0.0.GA
> Environment: RHEL 6
> JBDS 8.0 GA
> Reporter: Len DiMaggio
> Assignee: Snjezana Peco
> Attachments: JBDS.png, JBT.png
>
>
> To recreate the problem:
> * Install JBDS 8 with the embedded EAP server
> * Create a new project - such as "start from scratch html5 kitchensink"
> * Start the embeded EAP server
> * Deploy the project to the server
> * Open the project URL - http://localhost:8080/jboss-as-kitchensink-html5-mobile/ in the internal web browser
> * This error is displayed in the internal browser view: Cannot connect to destination
> * Nothing is written to the eclipse .log
--
This message was sent by Atlassian JIRA
(v6.3.1#6329)
11 years, 5 months
[JBoss JIRA] (JBIDE-18696) Application wizard: Can not show quickstarts list
by Andre Dietisheim (JIRA)
[ https://issues.jboss.org/browse/JBIDE-18696?page=com.atlassian.jira.plugi... ]
Andre Dietisheim edited comment on JBIDE-18696 at 10/24/14 8:46 AM:
--------------------------------------------------------------------
I just tried to replicate this on one of our win8 lab machines and couldnt. I used a new account (which had no keys nor domain) and after being prompted to create a domain and upload some ssh key I saw the cartridges and quickstarts being loaded and then displayed. Subsequent tries with the very same account showed all quickstarts, too. I'm really puzzled. The only difference I now spot is that you're using a devenv.
So please answer to these 2 questions:
* Can you replicate this with OpenShift Online?
* if I understand you right, the only time you see quickstarts is in the first attempt to create an application, right after having restarted Eclipse. Every later attempt doesnt have quickstarts, right?
was (Author: adietish):
I just tried to replicate this on one of our win8 lab machines and couldnt. I used a new account (which had no keys nor domain) and after being prompted to create a domain and upload some ssh key I saw the cartridges and quickstarts being loaded and then displayed. Subsequent tries with the very same account showed all quickstarts, too. I'm really puzzled. The only difference I now spot is that you're using a devenv.
So please answer these 2 questions:
* Can you replicate this with OpenShift Online?
* if I understand you right, the only time you see quickstarts is in the first attempt to create an application, right after having restarted Eclipse. Every later attempt doesnt have quickstarts, right?
> Application wizard: Can not show quickstarts list
> -------------------------------------------------
>
> Key: JBIDE-18696
> URL: https://issues.jboss.org/browse/JBIDE-18696
> Project: Tools (JBoss Tools)
> Issue Type: Bug
> Components: openshift
> Affects Versions: 4.2.0.Final
> Environment: Windows 8 + Eclipse Luna (4.4)
> Reporter: Chunyun Chen
> Attachments: Screenshot1.png, Screenshot3.png, trace_after_restart.log, trace_before_restart.log
>
>
> The quickstarts are unable to be shown, so any quickstarts can not be chosen to create.
--
This message was sent by Atlassian JIRA
(v6.3.1#6329)
11 years, 5 months