You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@myfaces.apache.org by pa...@apache.org on 2006/11/28 06:21:57 UTC

svn commit: r479906 - /myfaces/tomahawk/trunk/examples/simple/src/main/webapp/testSuite/template.jsp

Author: paulsp
Date: Mon Nov 27 21:21:51 2006
New Revision: 479906

URL: http://svn.apache.org/viewvc?view=rev&rev=479906
Log:
o Add id to source link
o No need to use t:outputLink when h:outputLink work fine

Modified:
    myfaces/tomahawk/trunk/examples/simple/src/main/webapp/testSuite/template.jsp

Modified: myfaces/tomahawk/trunk/examples/simple/src/main/webapp/testSuite/template.jsp
URL: http://svn.apache.org/viewvc/myfaces/tomahawk/trunk/examples/simple/src/main/webapp/testSuite/template.jsp?view=diff&rev=479906&r1=479905&r2=479906
==============================================================================
--- myfaces/tomahawk/trunk/examples/simple/src/main/webapp/testSuite/template.jsp (original)
+++ myfaces/tomahawk/trunk/examples/simple/src/main/webapp/testSuite/template.jsp Mon Nov 27 21:21:51 2006
@@ -31,11 +31,11 @@
       </t:htmlTag>
     </t:documentHead>
     <t:documentBody>
-      <t:outputText value="Hello World" />
+      <h:outputText value="Hello World" />
       <h:form id="footerLinks">
         <h:commandLink id="homeLink" action="home" value="Home" />
         <h:outputText value=" " />
-        <h:outputLink target="sourceWindow"
+        <h:outputLink id="sourceLink" target="sourceWindow"
           value="#{facesContext.externalContext.requestContextPath}#{view.viewId}.source">
           <h:outputText value="View source in popup window" />
         </h:outputLink>