[JBoss JIRA] (JBIDE-22383) Application Wizard: Selected project combo box is empty
by Viacheslav Kabanovich (JIRA)
[ https://issues.jboss.org/browse/JBIDE-22383?page=com.atlassian.jira.plugi... ]
Viacheslav Kabanovich edited comment on JBIDE-22383 at 5/19/16 2:49 PM:
------------------------------------------------------------------------
This issue seems very related to JBIDE-22380. [~mlabuda], when the project combo box is empty, does it have choices? Or is it completely empty? Does 'New...' button allow to create new project or it behaves as in JBIDE-22380?
was (Author: scabanovich):
This issue seems very related to JBIDE-22380. [~mlabuda], when the project combo box is empty, does it have choices? Or it is completely empty. Does 'New...' button allow to create new project or it behaves as in JBIDE-22380?
> Application Wizard: Selected project combo box is empty
> -------------------------------------------------------
>
> Key: JBIDE-22383
> URL: https://issues.jboss.org/browse/JBIDE-22383
> Project: Tools (JBoss Tools)
> Issue Type: Enhancement
> Components: openshift
> Affects Versions: 4.4.0.Alpha2
> Reporter: Marián Labuda
> Labels: application_wizard, openshift_v3
>
> Having a connection with several projects and a different than the first one project selected in OpenShift Explorer view, opening of a New OpenShift Application wizard via shell menu File - New - OpenShift Application leaves combo box for a project empty. If the first project is preselect in OpenShift Explorer view, its ok. Issues is only with selected project different than the first one.
--
This message was sent by Atlassian JIRA
(v6.4.11#64026)
9 years, 10 months
[JBoss JIRA] (JBIDE-22383) Application Wizard: Selected project combo box is empty
by Viacheslav Kabanovich (JIRA)
[ https://issues.jboss.org/browse/JBIDE-22383?page=com.atlassian.jira.plugi... ]
Viacheslav Kabanovich commented on JBIDE-22383:
-----------------------------------------------
This issue seems very related to JBIDE-22380. [~mlabuda], when the project combo box is empty, does it have choices? Or it is completely empty. Does 'New...' button allow to create new project or it behaves as in JBIDE-22380?
> Application Wizard: Selected project combo box is empty
> -------------------------------------------------------
>
> Key: JBIDE-22383
> URL: https://issues.jboss.org/browse/JBIDE-22383
> Project: Tools (JBoss Tools)
> Issue Type: Enhancement
> Components: openshift
> Affects Versions: 4.4.0.Alpha2
> Reporter: Marián Labuda
> Labels: application_wizard, openshift_v3
>
> Having a connection with several projects and a different than the first one project selected in OpenShift Explorer view, opening of a New OpenShift Application wizard via shell menu File - New - OpenShift Application leaves combo box for a project empty. If the first project is preselect in OpenShift Explorer view, its ok. Issues is only with selected project different than the first one.
--
This message was sent by Atlassian JIRA
(v6.4.11#64026)
9 years, 10 months
[JBoss JIRA] (JBIDE-22380) New Application wizard: project is not preselected (nor can you select any) if launched from explorer
by Viacheslav Kabanovich (JIRA)
[ https://issues.jboss.org/browse/JBIDE-22380?page=com.atlassian.jira.plugi... ]
Viacheslav Kabanovich commented on JBIDE-22380:
-----------------------------------------------
[~adietish], can it happen that sometimes ConnectionsRegistryUtil.safeGetConnectionFor(resource) returns null. You have started from a project and the logic of NewApplicationWizard.init() picks the first resource from the selection (it should be the project), and looks for connection for it. Can it fail sometimes?
> New Application wizard: project is not preselected (nor can you select any) if launched from explorer
> -----------------------------------------------------------------------------------------------------
>
> Key: JBIDE-22380
> URL: https://issues.jboss.org/browse/JBIDE-22380
> Project: Tools (JBoss Tools)
> Issue Type: Bug
> Components: openshift
> Affects Versions: 4.4.0.Alpha1
> Reporter: Andre Dietisheim
> Priority: Critical
> Labels: application_wizard, openshift_v3
> Attachments: project-not-preselected.png
>
>
--
This message was sent by Atlassian JIRA
(v6.4.11#64026)
9 years, 10 months
[JBoss JIRA] (JBIDE-22380) New Application wizard: project is not preselected (nor can you select any) if launched from explorer
by Viacheslav Kabanovich (JIRA)
[ https://issues.jboss.org/browse/JBIDE-22380?page=com.atlassian.jira.plugi... ]
Viacheslav Kabanovich edited comment on JBIDE-22380 at 5/19/16 2:39 PM:
------------------------------------------------------------------------
[~adietish], can it happen that sometimes ConnectionsRegistryUtil.safeGetConnectionFor(resource) returns null? You have started from a project and the logic of NewApplicationWizard.init() picks the first resource from the selection (it should be the project), and looks for connection for it. Can it fail sometimes?
was (Author: scabanovich):
[~adietish], can it happen that sometimes ConnectionsRegistryUtil.safeGetConnectionFor(resource) returns null. You have started from a project and the logic of NewApplicationWizard.init() picks the first resource from the selection (it should be the project), and looks for connection for it. Can it fail sometimes?
> New Application wizard: project is not preselected (nor can you select any) if launched from explorer
> -----------------------------------------------------------------------------------------------------
>
> Key: JBIDE-22380
> URL: https://issues.jboss.org/browse/JBIDE-22380
> Project: Tools (JBoss Tools)
> Issue Type: Bug
> Components: openshift
> Affects Versions: 4.4.0.Alpha1
> Reporter: Andre Dietisheim
> Priority: Critical
> Labels: application_wizard, openshift_v3
> Attachments: project-not-preselected.png
>
>
--
This message was sent by Atlassian JIRA
(v6.4.11#64026)
9 years, 10 months
[JBoss JIRA] (ERT-198) Content assist displays only top level properties as proposals [EBZ#490639]
by Friendly Jira Robot (JIRA)
Friendly Jira Robot created ERT-198:
---------------------------------------
Summary: Content assist displays only top level properties as proposals [EBZ#490639]
Key: ERT-198
URL: https://issues.jboss.org/browse/ERT-198
Project: Eclipse Release Train
Issue Type: Task
Components: WTP Source Editing
Reporter: Friendly Jira Robot
Fix For: Neon (4.6) RC2
When I invoke content assist on a JSON object, I expect to see the list of properties in the context of the selected object but I see a list of top level properties instead.
I think the problem is in the JSONSchemaNode.walk() method, where the 'json' object that gets passed in is always the schema root, so the properties always correspond to that object.
private static void walk(JsonObject json, JSONSchemaNode schemaNode) {
Member member = null;
JsonObject properties = (JsonObject) json.get("properties");
if (properties != null) {
Iterator<Member> members = properties.iterator();
while (members.hasNext()) {
member = members.next();
schemaNode.addProperty(new JSONSchemaProperty(member.getName(),
(JsonObject) member.getValue(), schemaNode));
}
}
}
--
This message was sent by Atlassian JIRA
(v6.4.11#64026)
9 years, 10 months
[JBoss JIRA] (ERT-200) Docker Neon RC3 [EBZ#494055]
by Friendly Jira Robot (JIRA)
Friendly Jira Robot created ERT-200:
---------------------------------------
Summary: Docker Neon RC3 [EBZ#494055]
Key: ERT-200
URL: https://issues.jboss.org/browse/ERT-200
Project: Eclipse Release Train
Issue Type: Task
Components: Linux Tools
Reporter: Friendly Jira Robot
Fix For: Neon (4.6)
Release Docker as part of Linux Tools RC3 for Neon.
--
This message was sent by Atlassian JIRA
(v6.4.11#64026)
9 years, 10 months
[JBoss JIRA] (ERT-199) Docker Neon RC2 [EBZ#494053]
by Friendly Jira Robot (JIRA)
Friendly Jira Robot created ERT-199:
---------------------------------------
Summary: Docker Neon RC2 [EBZ#494053]
Key: ERT-199
URL: https://issues.jboss.org/browse/ERT-199
Project: Eclipse Release Train
Issue Type: Task
Components: Linux Tools
Reporter: Friendly Jira Robot
Fix For: Neon (4.6)
Release Docker as part of Linux Tools RC2 for Neon.
--
This message was sent by Atlassian JIRA
(v6.4.11#64026)
9 years, 10 months