You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@myfaces.apache.org by im...@apache.org on 2007/09/07 15:02:47 UTC

svn commit: r573565 - /myfaces/orchestra/trunk/examples/src/main/webapp/header.jspf

Author: imario
Date: Fri Sep  7 06:02:47 2007
New Revision: 573565

URL: http://svn.apache.org/viewvc?rev=573565&view=rev
Log:
demonstrate the use of the SeparateConversationContext tag

Modified:
    myfaces/orchestra/trunk/examples/src/main/webapp/header.jspf

Modified: myfaces/orchestra/trunk/examples/src/main/webapp/header.jspf
URL: http://svn.apache.org/viewvc/myfaces/orchestra/trunk/examples/src/main/webapp/header.jspf?rev=573565&r1=573564&r2=573565&view=diff
==============================================================================
--- myfaces/orchestra/trunk/examples/src/main/webapp/header.jspf (original)
+++ myfaces/orchestra/trunk/examples/src/main/webapp/header.jspf Fri Sep  7 06:02:47 2007
@@ -22,6 +22,7 @@
 <%@ taglib uri="http://java.sun.com/jsf/core" prefix="f" %>
 <%@ taglib uri="http://myfaces.apache.org/tomahawk" prefix="t" %>
 <%@ taglib uri="http://myfaces.apache.org/sandbox" prefix="s" %>
+<%@ taglib uri="http://myfaces.apache.org/orchestra" prefix="o" %>
 
 <f:verbatim>
 	<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
@@ -48,6 +49,13 @@
 			<h:outputLink value="/">
 				<h:outputText value="Home" />
 			</h:outputLink>
+		</t:htmlTag>
+		<t:htmlTag value="li">
+			<o:separateConversationContext>
+				<h:outputLink value="/" target="_blank">
+					<h:outputText value="Home in new window" />
+				</h:outputLink>
+			</o:separateConversationContext>
 		</t:htmlTag>
 	</t:htmlTag>
 </h:form>