[
https://issues.jboss.org/browse/FORGE-1523?page=com.atlassian.jira.plugin...
]
Antonio Goncalves updated FORGE-1523:
-------------------------------------
Parent Issue: FORGE-1491 (was: FORGE-1505)
Change the JSF namespaces to fit new Java EE 7 standard
-------------------------------------------------------
Key: FORGE-1523
URL:
https://issues.jboss.org/browse/FORGE-1523
Project: Forge
Issue Type: Sub-task
Components: Scaffold
Affects Versions: 2.0.0.CR2
Reporter: Antonio Goncalves
Assignee: George Gastaldi
Priority: Minor
Fix For: 2.x Future
When a JSF page is generated, the namespaces look like this :
{code}
<ui:composition
xmlns="http://www.w3.org/1999/xhtml"
xmlns:h="http://java.sun.com/jsf/html"
xmlns:f="http://java.sun.com/jsf/core"
xmlns:ui="http://java.sun.com/jsf/facelets"
xmlns:c="http://java.sun.com/jsp/jstl/core"
template="/resources/scaffold/pageTemplate.xhtml">
{code}
They use the old {{java.sun.com}} namespace instead of the new {{xmlns.jcp.org}}. They
should look like this :
{code}
<ui:composition
xmlns="http://www.w3.org/1999/xhtml"
xmlns:h="http://xmlns.jcp.org/jsf/html"
xmlns:f="http://xmlns.jcp.org/jsf/core"
xmlns:ui="http://xmlns.jcp.org/jsf/facelets"
xmlns:c="http://xmlns.jcp.org/jsp/jstl/core"
template="/resources/scaffold/pageTemplate.xhtml">
{code}
--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see:
http://www.atlassian.com/software/jira