forked from I2P_Developers/i2p.i2p
55 lines
2.0 KiB
Plaintext
55 lines
2.0 KiB
Plaintext
<%@page contentType="text/html"%>
|
|
<%@page trimDirectiveWhitespaces="true"%>
|
|
<%@page pageEncoding="UTF-8"%>
|
|
<jsp:useBean class="net.i2p.router.web.CSSHelper" id="tester" scope="request" />
|
|
<%
|
|
String i2pcontextId1 = null;
|
|
try {
|
|
i2pcontextId1 = (String) session.getAttribute("i2p.contextId");
|
|
} catch (IllegalStateException ise) {}
|
|
%>
|
|
<jsp:setProperty name="tester" property="contextId" value="<%=i2pcontextId1%>" />
|
|
<%
|
|
// CSSHelper is also pulled in by css.jsi below...
|
|
boolean testIFrame = tester.allowIFrame(request.getHeader("User-Agent"));
|
|
boolean embedApp = tester.embedApps();
|
|
if (!testIFrame || !embedApp) {
|
|
response.setStatus(307);
|
|
response.setHeader("Location", "/susimail/");
|
|
// force commitment
|
|
response.getOutputStream().close();
|
|
return;
|
|
} else {
|
|
%>
|
|
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
|
|
<html><head>
|
|
<%@include file="css.jsi" %>
|
|
<%=intl.title("webmail")%>
|
|
<script src="/js/iframed.js?<%=net.i2p.CoreVersion.VERSION%>" type="text/javascript"></script>
|
|
<%@include file="summaryajax.jsi" %>
|
|
<script nonce="<%=cspNonce%>" type="text/javascript">
|
|
/* @license http://creativecommons.org/publicdomain/zero/1.0/legalcode CC0-1.0 */
|
|
|
|
function setupFrame() {
|
|
f = document.getElementById("susimailframe");
|
|
f.addEventListener("load", function() {
|
|
injectClass(f);
|
|
resizeFrame(f);
|
|
}, true);
|
|
}
|
|
|
|
/* @license-end */
|
|
</script>
|
|
</head><body>
|
|
<%@include file="summary.jsi" %>
|
|
<h1><%=intl._t("I2P Webmail")%> <span class="newtab"><a href="/susimail/" target="_blank" title="<%=intl._t("Open in new tab")%>"><img src="<%=intl.getTheme(request.getHeader("User-Agent"))%>images/newtab.png" /></a></span></h1>
|
|
<div class="main" id="webmail">
|
|
<iframe src="/susimail/" width="100%" height="100%" frameborder="0" border="0" name="susimailframe" id="susimailframe" allowtransparency="true">
|
|
<%=intl._t("Your browser does not support iFrames.")%>
|
|
<a href="/susimail/"><%=intl._t("Click here to continue.")%></a>
|
|
</iframe>
|
|
</div></body></html>
|
|
<%
|
|
}
|
|
%>
|