blob: d2d8c0e29322970f3531be8dfb7b8e87022b38e3 [file] [log] [blame]
<%--
Licensed to the Apache Software Foundation (ASF) under one
or more contributor license agreements. See the NOTICE file
distributed with this work for additional information
regarding copyright ownership. 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.
--%>
<%@ taglib uri="http://jspwiki.apache.org/tags" prefix="wiki" %>
<%@ taglib uri="http://java.sun.com/jsp/jstl/fmt" prefix="fmt" %>
<%@ page import="javax.servlet.jsp.jstl.fmt.*" %>
<%@ page import="org.apache.wiki.api.core.*" %>
<fmt:setLocale value="${prefs.Language}" />
<fmt:setBundle basename="templates.default"/>
<%
Context c = Context.findContext(pageContext);
%>
<div class="userbox">
<wiki:UserCheck status="anonymous">
<span class="username anonymous">
<fmt:message key="fav.greet.anonymous" />
</span>
</wiki:UserCheck>
<wiki:UserCheck status="asserted">
<span class="username asserted">
<fmt:message key="fav.greet.asserted">
<fmt:param><wiki:Translate>[<wiki:UserName />]</wiki:Translate></fmt:param>
</fmt:message>
</span>
</wiki:UserCheck>
<wiki:UserCheck status="authenticated">
<span class="username authenticated">
<fmt:message key="fav.greet.authenticated">
<fmt:param><wiki:Translate>[<wiki:UserName />]</wiki:Translate></fmt:param>
</fmt:message>
</span>
</wiki:UserCheck>
<%-- action buttons --%>
<wiki:UserCheck status="notAuthenticated">
<wiki:CheckRequestContext context='!login'>
<wiki:Permission permission="login">
<a href="<wiki:Link jsp='Login.jsp' format='url'><wiki:Param
name='redirect' value='<%=c.getEngine().encodeName(c.getName())%>'/></wiki:Link>"
class="action login"
title="<fmt:message key='actions.login.title'/>"><fmt:message key="actions.login"/></a>
</wiki:Permission>
</wiki:CheckRequestContext>
</wiki:UserCheck>
<wiki:UserCheck status="authenticated">
<a href="<wiki:Link jsp='Logout.jsp' format='url' />"
class="action logout"
title="<fmt:message key='actions.logout.title'/>"><fmt:message key="actions.logout"/></a>
<%--onclick="return( confirm('<fmt:message key="actions.confirmlogout"/>') && (location=this.href) );"--%>
</wiki:UserCheck>
<wiki:CheckRequestContext context='!prefs'>
<wiki:CheckRequestContext context='!preview'>
<a href="<wiki:Link jsp='UserPreferences.jsp' format='url' ><wiki:Param name='redirect'
value='<%=c.getEngine().encodeName(c.getName())%>'/></wiki:Link>"
class="action prefs" accesskey="p"
title="<fmt:message key='actions.prefs.title'/>"><fmt:message key="actions.prefs" />
</a>
</wiki:CheckRequestContext>
</wiki:CheckRequestContext>
<div class="clearbox"></div>
</div>