/usr/share/jspwiki/templates/default/Header.jsp is in jspwiki 2.8.0-5.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 | <%@ taglib uri="/WEB-INF/jspwiki.tld" prefix="wiki" %>
<%@ taglib uri="http://java.sun.com/jsp/jstl/fmt" prefix="fmt" %>
<%@ page import="com.ecyrd.jspwiki.*" %>
<fmt:setLocale value="${prefs.Language}" />
<fmt:setBundle basename="templates.default"/>
<%
WikiContext c = WikiContext.findContext(pageContext);
String frontpage = c.getEngine().getFrontPage();
%>
<div id="header">
<div class="titlebox"><wiki:InsertPage page="TitleBox"/></div>
<div class="applicationlogo" >
<a href="<wiki:LinkTo page='<%=frontpage%>' format='url' />"
title="<fmt:message key='actions.home.title' ><fmt:param><%=frontpage%></fmt:param></fmt:message> "><fmt:message key='actions.home' /></a>
</div>
<div class="companylogo"></div>
<wiki:Include page="UserBox.jsp" />
<div class="pagename"><wiki:PageName /></div>
<div class="searchbox"><wiki:Include page="SearchBox.jsp" /></div>
<div class="breadcrumbs"><fmt:message key="header.yourtrail"/><wiki:Breadcrumbs /></div>
</div>
|