[forge-issues] [JBoss JIRA] (FORGE-1523) Change the JSF namespaces to fit new Java EE 7 standard

George Gastaldi (JIRA) issues at jboss.org
Sat Mar 22 23:30:12 EDT 2014


     [ https://issues.jboss.org/browse/FORGE-1523?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

George Gastaldi updated FORGE-1523:
-----------------------------------

              Status: Open  (was: Pull Request Sent)
    Git Pull Request:   (was: https://github.com/forge/core/pull/368)

    
> 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


More information about the forge-issues mailing list