You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@myfaces.apache.org by "Ole Kværnø (JIRA)" <de...@myfaces.apache.org> on 2006/11/16 09:02:41 UTC

[jira] Created: (TOMAHAWK-786) panelTabbedPane does not render included ".jspf" file (bug is easily reproduced)

panelTabbedPane does not render included ".jspf" file (bug is easily reproduced)
--------------------------------------------------------------------------------

                 Key: TOMAHAWK-786
                 URL: http://issues.apache.org/jira/browse/TOMAHAWK-786
             Project: MyFaces Tomahawk
          Issue Type: Bug
          Components: Tabbed Pane
    Affects Versions: 1.1.4-SNAPSHOT, 1.1.5-SNAPSHOT
         Environment: myfaces-example-simple-1.1.5-SNAPSHOT.war [2006-11-14]
tomahawk-1.5.0-SNAPSHOT  + tomahawk-examples-1.1.5-SNAPSHOT
Firefox 1.5.0.8 and IE 6.0-SP1
            Reporter: Ole Kværnø
            Priority: Blocker


If file extension ".jspf" is used, [Tab 2] is not rendered

Bug is reproduced by:
# 1) copy "tab2.jsp" to "tab2.jspf"
# 2) In file "tabbedPane.jsp"
    <f:subview id="tab2" >
        <jsp:include page="tab2.jsp"  />
    </f:subview>
Change line to:
    <jsp:include page="tab2.jspf"  />
# 3) Tab 2 is not rendered. :-(

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: http://issues.apache.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira

       

[jira] Resolved: (TOMAHAWK-786) panelTabbedPane does not render included ".jspf" file (bug is easily reproduced)

Posted by "Cagatay Civici (JIRA)" <de...@myfaces.apache.org>.
     [ https://issues.apache.org/jira/browse/TOMAHAWK-786?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Cagatay Civici resolved TOMAHAWK-786.
-------------------------------------

    Resolution: Invalid

This is clearly not a myfaces issue, jspf's are not simply processed in your app. In order to use *.jspf's with jsp:include try adding the following to your web.xml.

<servlet-mapping>
		<servlet-name>jsp</servlet-name>
		<url-pattern>*.jspf</url-pattern>
</servlet-mapping>

> panelTabbedPane does not render included ".jspf" file (bug is easily reproduced)
> --------------------------------------------------------------------------------
>
>                 Key: TOMAHAWK-786
>                 URL: https://issues.apache.org/jira/browse/TOMAHAWK-786
>             Project: MyFaces Tomahawk
>          Issue Type: Bug
>          Components: Tabbed Pane
>    Affects Versions: 1.1.4-SNAPSHOT, 1.1.5-SNAPSHOT
>         Environment: myfaces-example-simple-1.1.5-SNAPSHOT.war [2006-11-14]
> tomahawk-1.5.0-SNAPSHOT  + tomahawk-examples-1.1.5-SNAPSHOT
> Firefox 1.5.0.8 and IE 6.0-SP1
>            Reporter: Ole Kværnø
>         Assigned To: Cagatay Civici
>            Priority: Minor
>
> If file extension ".jspf" is used, [Tab 2] is not rendered
> Bug is reproduced by:
> # 1) copy "tab2.jsp" to "tab2.jspf"
> # 2) In file "tabbedPane.jsp"
>     <f:subview id="tab2" >
>         <jsp:include page="tab2.jsp"  />
>     </f:subview>
> Change line to:
>     <jsp:include page="tab2.jspf"  />
> # 3) Tab 2 is not rendered. :-(

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.