blob: 0c6e60e33beb30b879783aabb076920f2d2054d9 [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.
--%>
<%@ page import="java.util.*" %>
<%@ page import="javax.servlet.jsp.jstl.fmt.*" %>
<%@ page import="org.apache.wiki.api.core.*" %>
<%@ page import="org.apache.wiki.pages.PageManager" %>
<%@ page import="org.apache.wiki.tags.InsertDiffTag" %>
<%@ page import="org.apache.wiki.variables.VariableManager" %>
<%@ taglib uri="http://jspwiki.apache.org/tags" prefix="wiki" %>
<%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c" %>
<%@ taglib uri="http://java.sun.com/jsp/jstl/fmt" prefix="fmt" %>
<fmt:setLocale value="${prefs.Language}" />
<fmt:setBundle basename="templates.default"/>
<%
Context c = Context.findContext( pageContext );
%>
<c:set var="history" value="<%= c.getEngine().getManager( PageManager.class ).getVersionHistory(c.getPage().getName()) %>" />
<c:set var="diffprovider" value='<%= c.getEngine().getManager( VariableManager.class ).getVariable(c,"jspwiki.diffProvider") %>' />
<wiki:PageExists>
<form action="<wiki:Link jsp='Diff.jsp' format='url' />"
class="diffbody form-inline"
method="get" accept-charset="UTF-8">
<input type="hidden" name="page" value="<wiki:PageName />" />
<p class="btn btn-default btn-block">
<fmt:message key="diff.difference">
<fmt:param>
<select class="form-control" id="r1" name="r1" onchange="this.form.submit();" >
<c:forEach items="${history}" var="i">
<option value="${i.version}" ${i.version == olddiff ? 'selected="selected"' : ''} >${i.version}</option>
</c:forEach>
</select>
</fmt:param>
<fmt:param>
<select class="form-control" id="r2" name="r2" onchange="this.form.submit();" >
<c:forEach items="${history}" var="i">
<option value="${i.version}" ${i.version == newdiff ? 'selected="selected"' : ''} >${i.version}</option>
</c:forEach>
</select>
</fmt:param>
</fmt:message>
</p>
<c:if test='${diffprovider eq "ContextualDiffProvider"}' >
<div class="diffnote">
<a href="#change-1" title="<fmt:message key='diff.gotofirst.title'/>" class="diff-nextprev" >
<fmt:message key="diff.gotofirst"/>
</a>
</div>
</c:if>
<wiki:InsertDiff><p></p><p class="warning"><fmt:message key="diff.nodiff"/></p></wiki:InsertDiff>
</form>
</wiki:PageExists>