[JBoss JIRA] (JBIDE-22380) New Application wizard: project is not preselected (nor can you select any) if launched from explorer
by Andre Dietisheim (JIRA)
[ https://issues.jboss.org/browse/JBIDE-22380?page=com.atlassian.jira.plugi... ]
Andre Dietisheim updated JBIDE-22380:
-------------------------------------
Steps to Reproduce:
# ASSERT: have a connection and project in OpenShift explorer
# EXEC: in OpenShift explorer: select a project and pick New > Application from the context menu
# ASSERT: new application wizards shows up
Result:
OpenShift project combo has no project preselected. You cannot manually select any either.
!project-not-preselected.png!
was:
# ASSERT: have a connection and project in OpenShift explorer
# EXEC: in OpenShift explorer: select a project and pick New > Application from the context menu
# ASSERT: new application wizards shows up
Result:
OpenShift project combo has no project preselected. You cannot manually select any either.
!no-project-preselected.png!
> 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
> Attachments: project-not-preselected.png
>
>
--
This message was sent by Atlassian JIRA
(v6.4.11#64026)
9 years, 11 months
[JBoss JIRA] (JBIDE-22380) New Application wizard: project is not preselected (nor can you select any) if launched from explorer
by Andre Dietisheim (JIRA)
[ https://issues.jboss.org/browse/JBIDE-22380?page=com.atlassian.jira.plugi... ]
Andre Dietisheim updated JBIDE-22380:
-------------------------------------
Steps to Reproduce:
# ASSERT: have a connection and project in OpenShift explorer
# EXEC: in OpenShift explorer: select a project and pick New > Application from the context menu
# ASSERT: new application wizards shows up
Result:
OpenShift project combo has no project preselected. You cannot manually select any either.
!no-project-preselected.png!
was:
# ASSERT: have a connection and project in OpenShift explorer
# EXEC: in OpenShift explorer: pick New > Application from the context menu of your project
# ASSERT: new application wizards shows up
Result:
Connection combo has no connection selected and you cannot select any from it
!no-connection-may-be-selected.png!
> 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
>
--
This message was sent by Atlassian JIRA
(v6.4.11#64026)
9 years, 11 months
[JBoss JIRA] (JBIDE-21885) Properties: Remove "()" from context-menu name of Start Build
by Viacheslav Kabanovich (JIRA)
[ https://issues.jboss.org/browse/JBIDE-21885?page=com.atlassian.jira.plugi... ]
Viacheslav Kabanovich commented on JBIDE-21885:
-----------------------------------------------
Actually, if we would care for the parameter to get to the menu label as for example 'Start Build (build config)' we might add to the command definition tag <values> referencing implementation IParameterValues that maps parameter value 'BuildConfig' to human readable 'build config' in order to inform user of it. So, it is a nice feature, but in our case the parameter is an internal matter that we do not want to show to user.
The coding error in ParameterizedCommand is to add "()" when there is nothing to put inside. Attribute 'values' (or tag <values>) is not required so that it is ok that no errors are reported, just when attribute/tag is not defined, nothing should be added to the name.
> Properties: Remove "()" from context-menu name of Start Build
> --------------------------------------------------------------
>
> Key: JBIDE-21885
> URL: https://issues.jboss.org/browse/JBIDE-21885
> Project: Tools (JBoss Tools)
> Issue Type: Bug
> Components: openshift
> Affects Versions: 4.4.0.Alpha1
> Environment: JBoss OpenShift 3 Tools 3.2.0.Alpha1-v20160316-2139-B1202
> OS: Fedora 22 & Windows 10
> Reporter: Xia Zhao
> Assignee: Viacheslav Kabanovich
> Priority: Minor
> Labels: openshift_v3
> Fix For: 4.4.0.Alpha2
>
> Attachments: build-config-properties-menu.png, start-build.png
>
>
> The "()" from context-menu name of Start Build should be removed
--
This message was sent by Atlassian JIRA
(v6.4.11#64026)
9 years, 11 months
[JBoss JIRA] (JBIDE-22377) Jax RS service - Run on Server: default id value is ignored in WS tester
by Alexey Kazakov (JIRA)
[ https://issues.jboss.org/browse/JBIDE-22377?page=com.atlassian.jira.plugi... ]
Alexey Kazakov reassigned JBIDE-22377:
--------------------------------------
Assignee: Xavier Coulon
> Jax RS service - Run on Server: default id value is ignored in WS tester
> ------------------------------------------------------------------------
>
> Key: JBIDE-22377
> URL: https://issues.jboss.org/browse/JBIDE-22377
> Project: Tools (JBoss Tools)
> Issue Type: Bug
> Components: webservices
> Affects Versions: 4.4.0.Alpha1
> Reporter: Jan Richter
> Assignee: Xavier Coulon
>
> I have a project with the following jax-rs service:
> {noformat}
> @Path("/rest")
> public class Service {
> @GET
> @Path("/{id}")
> public String mainService(@PathParam("id") @DefaultValue("0") Integer id,
> @MatrixParam("m1") @DefaultValue("m1") String m1,
> @QueryParam("q1") @DefaultValue("q1") String q1) {
> return id + " " + m1 + " " + q1;
> }
>
> }
> {noformat}
> When I select 'run on server' on the service endpoint and then invoke the opened service tester, it shows blank id value even when the default is set to 0.
--
This message was sent by Atlassian JIRA
(v6.4.11#64026)
9 years, 11 months
[JBoss JIRA] (JBIDE-21885) Properties: Remove "()" from context-menu name of Start Build
by Viacheslav Kabanovich (JIRA)
[ https://issues.jboss.org/browse/JBIDE-21885?page=com.atlassian.jira.plugi... ]
Viacheslav Kabanovich edited comment on JBIDE-21885 at 5/18/16 3:08 PM:
------------------------------------------------------------------------
Addition "()" is made by ParameterizedCommand.getName(String baseName).
And while it tries insert parameter value calling appendParameter(), it accesses Parameterization.getValueName() and then Parameter.getValues(), it fails on creating extension
{code}
(IParameterValues) valuesConfigurationElement
.createExecutableExtension(ATTRIBUTE_VALUES);
{code}
because we do not have attribute 'values'. So, the CoreException is caught and new ParameterValuesException("Problem creating parameter values", e) is thrown.
Next, ParameterValuesException is caught in Parameterization.appendParameter() and the way it is treated deserves to be studied as an instructing masterpiece:
{code}
try {
nameBuffer.append(parameterization.getValueName());
} catch (final ParameterValuesException e) {
/*
* Just let it go for now. If someone complains we can
* add more info later.
*/
}
{code}
No more comments are needed.
was (Author: scabanovich):
Addition "()" is made by ParameterizedCommand.getName(String baseName).
> Properties: Remove "()" from context-menu name of Start Build
> --------------------------------------------------------------
>
> Key: JBIDE-21885
> URL: https://issues.jboss.org/browse/JBIDE-21885
> Project: Tools (JBoss Tools)
> Issue Type: Bug
> Components: openshift
> Affects Versions: 4.4.0.Alpha1
> Environment: JBoss OpenShift 3 Tools 3.2.0.Alpha1-v20160316-2139-B1202
> OS: Fedora 22 & Windows 10
> Reporter: Xia Zhao
> Assignee: Viacheslav Kabanovich
> Priority: Minor
> Labels: openshift_v3
> Fix For: 4.4.0.Alpha2
>
> Attachments: build-config-properties-menu.png, start-build.png
>
>
> The "()" from context-menu name of Start Build should be removed
--
This message was sent by Atlassian JIRA
(v6.4.11#64026)
9 years, 11 months
[JBoss JIRA] (JBIDE-21885) Properties: Remove "()" from context-menu name of Start Build
by Viacheslav Kabanovich (JIRA)
[ https://issues.jboss.org/browse/JBIDE-21885?page=com.atlassian.jira.plugi... ]
Viacheslav Kabanovich commented on JBIDE-21885:
-----------------------------------------------
Addition "()" is made by ParameterizedCommand.getName(String baseName).
> Properties: Remove "()" from context-menu name of Start Build
> --------------------------------------------------------------
>
> Key: JBIDE-21885
> URL: https://issues.jboss.org/browse/JBIDE-21885
> Project: Tools (JBoss Tools)
> Issue Type: Bug
> Components: openshift
> Affects Versions: 4.4.0.Alpha1
> Environment: JBoss OpenShift 3 Tools 3.2.0.Alpha1-v20160316-2139-B1202
> OS: Fedora 22 & Windows 10
> Reporter: Xia Zhao
> Assignee: Viacheslav Kabanovich
> Priority: Minor
> Labels: openshift_v3
> Fix For: 4.4.0.Alpha2
>
> Attachments: build-config-properties-menu.png, start-build.png
>
>
> The "()" from context-menu name of Start Build should be removed
--
This message was sent by Atlassian JIRA
(v6.4.11#64026)
9 years, 11 months
[JBoss JIRA] (JBDS-3894) Refactor discovery plugins/TPs from jbds/jbdevstudio to devstudio
by Nick Boldt (JIRA)
[ https://issues.jboss.org/browse/JBDS-3894?page=com.atlassian.jira.plugin.... ]
Nick Boldt updated JBDS-3894:
-----------------------------
Description:
In https://github.com/jbosstools/jbosstools-discovery/ we should finally adopt consistent naming/branding for the devstudio target platforms, using devstudio instead of jbdevstudio and jbds.
Affected: publishing/staging/release scripts, discovery sites, jenkins jobs, etc.
> Refactor discovery plugins/TPs from jbds/jbdevstudio to devstudio
> -----------------------------------------------------------------
>
> Key: JBDS-3894
> URL: https://issues.jboss.org/browse/JBDS-3894
> Project: Red Hat Developer Studio (DevStudio)
> Issue Type: Task
> Components: central-update, target-platform, updatesite
> Affects Versions: 10.0.0.Alpha1
> Reporter: Nick Boldt
> Assignee: Nick Boldt
>
> In https://github.com/jbosstools/jbosstools-discovery/ we should finally adopt consistent naming/branding for the devstudio target platforms, using devstudio instead of jbdevstudio and jbds.
> Affected: publishing/staging/release scripts, discovery sites, jenkins jobs, etc.
--
This message was sent by Atlassian JIRA
(v6.4.11#64026)
9 years, 11 months