blob: e8c6c4b04d3e8b43955fdb8a963b9c0fa7e4174f [file] [log] [blame]
<%--
Copyright (c) 2000, 2010 IBM Corporation and others.
This program and the accompanying materials
are made available under the terms of the Eclipse Public License 2.0
which accompanies this distribution, and is available at
https://www.eclipse.org/legal/epl-2.0/
SPDX-License-Identifier: EPL-2.0
Contributors:
IBM Corporation - initial API and implementation
--%>
<%@ include file="header.jsp"%>
<%
LayoutData data = new LayoutData(application,request, response);
%>
<html lang="<%=ServletResources.getString("locale", request)%>">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title><%=ServletResources.getString("Help", request)%></title>
</head>
<frameset cols="<%=isRTL?"*,300":"300,*"%>">
<%
if (isRTL) {
%>
<frame name="ContentViewFrame" title="<%=ServletResources.getString("aView", ServletResources.getString("topic", request), request)%>" src='<%=UrlUtil.htmlEncode(data.getContentURL())%>' marginwidth="5" marginheight="5">
<frame name="ViewsFrame" title="<%=ServletResources.getString("ignore", "ViewsFrame", request)%>" src='<%="view.jsp?view="+data.getVisibleView()+"&"+UrlUtil.htmlEncode(request.getQueryString())%>' marginwidth="0" marginheight="0" scrolling="no">
<%
} else {
%>
<frame name="ViewsFrame" title="<%=ServletResources.getString("ignore", "ViewsFrame", request)%>" src='<%="view.jsp?view="+data.getVisibleView()+"&"+UrlUtil.htmlEncode(request.getQueryString())%>' marginwidth="0" marginheight="0" scrolling="no">
<frame name="ContentViewFrame" title="<%=ServletResources.getString("aView", ServletResources.getString("topic", request), request)%>" src='<%=UrlUtil.htmlEncode(data.getContentURL())%>' marginwidth="5" marginheight="5">
<%
}
%>
</frameset>
</html>