[seam-commits] Seam SVN: r9126 - in trunk/seam-gen: view/layout and 1 other directory.
seam-commits at lists.jboss.org
seam-commits at lists.jboss.org
Tue Sep 23 15:06:46 EDT 2008
Author: dan.j.allen
Date: 2008-09-23 15:06:46 -0400 (Tue, 23 Sep 2008)
New Revision: 9126
Modified:
trunk/seam-gen/icefaces/view/layout/menu.xhtml
trunk/seam-gen/icefaces/view/layout/menu.xhtml.ftl
trunk/seam-gen/view/layout/menu.xhtml
trunk/seam-gen/view/layout/menu.xhtml.ftl
Log:
having "Welcome, username!" in the upper-right hand corner is annoying
changing it to "signed in as: username"
Modified: trunk/seam-gen/icefaces/view/layout/menu.xhtml
===================================================================
--- trunk/seam-gen/icefaces/view/layout/menu.xhtml 2008-09-23 19:05:42 UTC (rev 9125)
+++ trunk/seam-gen/icefaces/view/layout/menu.xhtml 2008-09-23 19:06:46 UTC (rev 9126)
@@ -17,7 +17,7 @@
</ice:panelGroup>
<ice:panelGroup id="menuPanelGroupRight" >
- <h:outputText id="menuWelcomeId" value="Welcome, #{identity.username}" rendered="#{identity.loggedIn}"/>
+ <h:outputText id="menuWelcomeId" value="signed in as: #{identity.username}" rendered="#{identity.loggedIn}"/>
<s:link id="menuLoginId" view="/login.xhtml" value="Login" rendered="#{not identity.loggedIn}"/>
<s:link id="menuLogoutId" view="/home.xhtml" action="#{identity.logout}" value="Logout" rendered="#{identity.loggedIn}"/>
</ice:panelGroup>
Modified: trunk/seam-gen/icefaces/view/layout/menu.xhtml.ftl
===================================================================
--- trunk/seam-gen/icefaces/view/layout/menu.xhtml.ftl 2008-09-23 19:05:42 UTC (rev 9125)
+++ trunk/seam-gen/icefaces/view/layout/menu.xhtml.ftl 2008-09-23 19:06:46 UTC (rev 9126)
@@ -22,7 +22,7 @@
<!-- @newMenuItem@ -->
</ice:panelGroup>
<ice:panelGroup id="rightMenuId">
- <h:outputText id="menuWelcomeId" value="Welcome,${'#'}{identity.username}" rendered="${'#'}{identity.loggedIn}"/>
+ <h:outputText id="menuWelcomeId" value="signed in as: ${'#'}{identity.username}" rendered="${'#'}{identity.loggedIn}"/>
<s:link view="/login.xhtml" id="menuLoginId" value="Login" rendered="${'#'}{not identity.loggedIn}" />
<s:link view="/home.xhtml" id="menulogoutId" action="${'#'}{identity.logout}" value="Logout" rendered="${'#'}{identity.loggedIn}"/>
</ice:panelGroup>
Modified: trunk/seam-gen/view/layout/menu.xhtml
===================================================================
--- trunk/seam-gen/view/layout/menu.xhtml 2008-09-23 19:05:42 UTC (rev 9125)
+++ trunk/seam-gen/view/layout/menu.xhtml 2008-09-23 19:06:46 UTC (rev 9126)
@@ -11,7 +11,7 @@
</rich:toolBarGroup>
<!-- @newMenuItem@ -->
<rich:toolBarGroup location="right">
- <h:outputText value="Welcome, #{identity.username}!" rendered="#{identity.loggedIn}"/>
+ <h:outputText value="signed in as: #{identity.username}" rendered="#{identity.loggedIn}"/>
<s:link view="/login.xhtml" value="Login" rendered="#{not identity.loggedIn}"/>
<s:link view="/home.xhtml" action="#{identity.logout}" value="Logout" rendered="#{identity.loggedIn}"/>
</rich:toolBarGroup>
Modified: trunk/seam-gen/view/layout/menu.xhtml.ftl
===================================================================
--- trunk/seam-gen/view/layout/menu.xhtml.ftl 2008-09-23 19:05:42 UTC (rev 9125)
+++ trunk/seam-gen/view/layout/menu.xhtml.ftl 2008-09-23 19:06:46 UTC (rev 9126)
@@ -18,7 +18,7 @@
</#foreach>
<!-- @newMenuItem@ -->
<rich:toolBarGroup location="right">
- <h:outputText value="Welcome, ${'#'}{identity.username}!" rendered="${'#'}{identity.loggedIn}"/>
+ <h:outputText value="signed in as: ${'#'}{identity.username}" rendered="${'#'}{identity.loggedIn}"/>
<s:link view="/login.xhtml" value="Login" rendered="${'#'}{not identity.loggedIn}"/>
<s:link view="/home.xhtml" action="${'#'}{identity.logout}" value="Logout" rendered="${'#'}{identity.loggedIn}"/>
</rich:toolBarGroup>
More information about the seam-commits
mailing list