blob: 03ea6f9e0a35f07d9289927e0c1e4d8c487fca34 [file] [log] [blame]
<%--
Licensed to the Apache Software Foundation (ASF) under one or more
contributor license agreements. The ASF licenses this file to You
under the Apache License, Version 2.0 (the "License"); you may not
use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License. For additional information regarding
copyright in this work, please see the NOTICE file in the top level
directory of this distribution.
--%>
<%@ include file="/WEB-INF/jsps/taglibs-struts2.jsp" %>
<div class="bannerStatusBox">
<table class="bannerStatusBox" cellpadding="0" cellspacing="0">
<tr>
<td class="bannerLeft">
<s:if test="authenticatedUser != null">
<s:text name="mainPage.loggedInAs" />
<a href="<s:url action="menu" namespace="/roller-ui" />"><s:property value="authenticatedUser.userName"/></a>
</s:if>
<s:if test="actionWeblog != null">
- <s:text name="mainPage.currentWebsite" />
<b><a href='<s:property value="actionWeblog.absoluteURL" />'>
<s:property value="actionWeblog.handle" />
</a></b>
</s:if>
</td>
<td class="bannerRight">
<a href="<s:url value='/'/>"><s:property value="getProp('site.shortName')"/></a>
| <a href="<s:url action='menu' namespace='/roller-ui' />"><s:text name="mainPage.mainMenu" /></a>
<s:if test="authenticatedUser != null">
| <a href="<s:url action='logout' namespace='/roller-ui' />"><s:text name="navigationBar.logout"/></a>
</s:if>
<s:else>
| <a href="<s:url action='login-redirect' namespace='/roller-ui' />"><s:text name="navigationBar.login"/></a>
<s:if test="getBooleanProp('users.registration.enabled') && getProp('authentication.method') != 'ldap'">
| <a href="<s:url action='register' namespace='/roller-ui' />"><s:text name="navigationBar.register"/></a>
</s:if>
<s:elseif test="getProp('users.registration.url') != null && getProp('users.registration.url') > 0">
| <a href="<s:property value="getProp('users.registration.url')"/>"><s:text name="navigationBar.register"/></a>
</s:elseif>
</s:else>
</td>
</tr>
</table>
</div>