[JBoss JIRA] Created: (JBIDE-9198) Cannot add JSF capabilities to a project with no web.xml
by Brian Leathem (JIRA)
Cannot add JSF capabilities to a project with no web.xml
--------------------------------------------------------
Key: JBIDE-9198
URL: https://issues.jboss.org/browse/JBIDE-9198
Project: Tools (JBoss Tools)
Issue Type: Feature Request
Components: JSF
Reporter: Brian Leathem
Assignee: Alexey Kazakov
The Seam Faces impl project defines facelet files that are used as composite components vy projects that use Seam Faces. When I try to edit one of these facelet files, I am prompted to add JSF capabilities to the project in order to get JSF completion. However I am unable to add JSF capabilities, as I am required to point to an exisiting web.xml file. The Seam Faces impl project does not have a web.xml file. I does however have a web-fragment.xml (I don't know if that's relevant).
It would be nice to take advantage of the JSF tooling in "JSF library projects" without necessarily having a web.xml file.
--
This message is automatically generated by JIRA.
For more information on JIRA, see: http://www.atlassian.com/software/jira
14 years, 9 months
[JBoss JIRA] Created: (JBIDE-9190) no provider name for org.jboss.tools.forge.feature
by Nick Boldt (JIRA)
no provider name for org.jboss.tools.forge.feature
--------------------------------------------------
Key: JBIDE-9190
URL: https://issues.jboss.org/browse/JBIDE-9190
Project: Tools (JBoss Tools)
Issue Type: Bug
Components: forge
Affects Versions: 3.3.0.M2
Reporter: Nick Boldt
Fix For: 3.3.0.Beta1
Attachments: Screenshot-Forge-and-WS-JAXRS-missing-provider-names.png
Missing provider name. check your feature.xml and add one (see other feature.xml and feature.properties files to learn how. Provider should be "JBoss by Red Hat".
See also screenshot below:
!Screenshot-Forge-and-WS-JAXRS-missing-provider-names!
--
This message is automatically generated by JIRA.
For more information on JIRA, see: http://www.atlassian.com/software/jira
14 years, 9 months
[JBoss JIRA] Created: (JBIDE-9251) hyperlink window should not contain duplicit entries
by Lukas Jungmann (JIRA)
hyperlink window should not contain duplicit entries
----------------------------------------------------
Key: JBIDE-9251
URL: https://issues.jboss.org/browse/JBIDE-9251
Project: Tools (JBoss Tools)
Issue Type: Bug
Components: cdi (jsr-299)
Affects Versions: 3.3.0.M2
Reporter: Lukas Jungmann
Assignee: Alexey Kazakov
-open http://docs.jboss.org/seam/3/solder/latest/reference/en-US/html/unwraps.html
-create class:
{code}
package com.acme;
@SessionScoped
public class PermissionManager {
Permission permission;
void setPermission(Permission permission) {
this.permission=permission;
}
@Unwraps //@Current
Permission getPermission() {
return this.permission;
}
}
{code}
-create class:
{code}
package com.acme;
@SessionScoped
class SecurityManager {
@Inject
//@Current
Permission permission;
boolean checkAdminPermission() {
return permission.getName().equals("admin");
}
}
{code}
-make sure that "@Current" is commented out
-open hyperlink window on @Current in SecurityManager
=> popup shows 3 entries for PM.getPermission() but only one should be shown instead
see attached screenshot
--
This message is automatically generated by JIRA.
For more information on JIRA, see: http://www.atlassian.com/software/jira
14 years, 9 months