Files
i2p.i2p-bote/src/main/webapp/statusFrame.jsp

75 lines
3.1 KiB
Plaintext
Raw Normal View History

2009-12-01 07:10:56 +00:00
<%--
Copyright (C) 2009 HungryHobo@mail.i2p
The GPG fingerprint for HungryHobo@mail.i2p is:
6DD3 EAA2 9990 29BC 4AD2 7486 1E2C 7B61 76DC DC12
This file is part of I2P-Bote.
I2P-Bote is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
I2P-Bote is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with I2P-Bote. If not, see <http://www.gnu.org/licenses/>.
--%>
<%@ page language="java" contentType="text/html; charset=UTF-8"
pageEncoding="UTF-8"%>
2015-01-24 12:31:42 +00:00
<!DOCTYPE html>
2009-12-01 07:10:56 +00:00
<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>
<%@ taglib prefix="ib" uri="I2pBoteTags" %>
<jsp:useBean id="jspHelperBean" class="i2p.bote.web.JSPHelper"/>
<c:set var="themeDir" value="themes/${jspHelperBean.configuration.theme}" scope="request"/>
<jsp:include page="getStatus.jsp"/>
2009-12-13 07:12:07 +00:00
2009-12-01 07:10:56 +00:00
<html>
<head>
2015-01-24 12:31:42 +00:00
<meta charset="utf-8">
<link rel="stylesheet" href="themes/${jspHelperBean.configuration.theme}/i2pbote.css" />
<c:if test="${connStatus ne CONNECTED and connStatus ne ERROR}">
<meta http-equiv="refresh" content="20" />
</c:if>
2009-12-01 07:10:56 +00:00
</head>
<body class="iframe-body">
2009-12-01 07:10:56 +00:00
<div class="statusbox">
2009-12-13 07:12:07 +00:00
<c:choose>
<c:when test="${connStatus == NOT_STARTED}"><img src="${themeDir}/images/connect_error.png"/> <ib:message key="Not Started"/></c:when>
<c:when test="${connStatus == DELAY}"><img src="${themeDir}/images/connecting.png"/> <ib:message key="Waiting 3 Minutes..."/><br/></c:when>
<c:when test="${connStatus == CONNECTING}"><img src="${themeDir}/images/connecting.png"/> <ib:message key="Connecting..."/></c:when>
<c:when test="${connStatus == CONNECTED}"><img src="${themeDir}/images/connected.png"/> <ib:message key="Connected"/></c:when>
<c:when test="${connStatus == ERROR}"><img src="${themeDir}/images/connect_error.png"/>
<a href="connectError.jsp" target="_parent"><ib:message key="Error"/></a>
</c:when>
<c:otherwise> <ib:message key="Unknown Status"/></c:otherwise>
2009-12-13 07:12:07 +00:00
</c:choose>
<c:if test="${connStatus == DELAY or connStatus == ERROR}">
<%-- Show the connect button --%>
<div class="status-frame-connect">
<%-- When the connect button is clicked, refresh the entire page so the buttons in buttonFrame.jsp are enabled --%>
<form action="connect.jsp" target="_top" method="GET">
<button type="submit">
<c:if test="${connStatus eq ERROR}">
<ib:message key="Retry Connecting"/>
</c:if>
<c:if test="${connStatus ne ERROR}">
<ib:message key="Connect Now"/>
</c:if>
</button>
</form>
</div>
</c:if>
2009-12-01 07:10:56 +00:00
</div>
</body>
</html>