asbachb commented on issue #6069: URL: https://github.com/apache/netbeans/issues/6069#issuecomment-1595955212
I had an initial look into the issue. I already have a branch which adds the correct namespaces when creating new jsf pages and shows tag suggestions when using `Shift + Space`. My concern is that the information for these suggestions are based (at least for maven projects) from a bundles JSF 2.2 taglib jar. Which seems to be used for all jsf versions. I guess the main problem is that the taglib.xml (which is used to generate the autosuggestions) are not part of the faces-api itself. They seem to be bundled with the implementation. So in order to show any suggestions a implementation needs to be provided somehow - which is a little bit weird as the tags are defined in the faces spec, so I don't see the point not providing them within the faces-api.jar Currently I don't see an easy option to fetch the taglib matching the used faces version in your project. So we only show JSF 2.2 taglib information and we need to manually map the namespaces somehow based on the used faces version of the project. /cc @mbien -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected] For further information about the NetBeans mailing lists, visit: https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists
