aboutsummaryrefslogtreecommitdiff
path: root/subsonic-main/src/main/webapp/WEB-INF/jsp/status.jsp
diff options
context:
space:
mode:
Diffstat (limited to 'subsonic-main/src/main/webapp/WEB-INF/jsp/status.jsp')
-rw-r--r--subsonic-main/src/main/webapp/WEB-INF/jsp/status.jsp93
1 files changed, 0 insertions, 93 deletions
diff --git a/subsonic-main/src/main/webapp/WEB-INF/jsp/status.jsp b/subsonic-main/src/main/webapp/WEB-INF/jsp/status.jsp
deleted file mode 100644
index 2861022d..00000000
--- a/subsonic-main/src/main/webapp/WEB-INF/jsp/status.jsp
+++ /dev/null
@@ -1,93 +0,0 @@
-<%@ page language="java" contentType="text/html; charset=utf-8" pageEncoding="iso-8859-1"%>
-<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
-
-<html><head>
- <%@ include file="head.jsp" %>
- <meta http-equiv="CACHE-CONTROL" content="NO-CACHE">
- <meta http-equiv="REFRESH" content="20;URL=status.view">
-</head>
-<body class="mainframe bgcolor1">
-
-<h1>
- <img src="<spring:theme code="statusImage"/>" alt="">
- <fmt:message key="status.title"/>
-</h1>
-
-<table width="100%" class="ruleTable indent">
- <tr>
- <th class="ruleTableHeader"><fmt:message key="status.type"/></th>
- <th class="ruleTableHeader"><fmt:message key="status.player"/></th>
- <th class="ruleTableHeader"><fmt:message key="status.user"/></th>
- <th class="ruleTableHeader"><fmt:message key="status.current"/></th>
- <th class="ruleTableHeader"><fmt:message key="status.transmitted"/></th>
- <th class="ruleTableHeader"><fmt:message key="status.bitrate"/></th>
- </tr>
-
- <c:forEach items="${model.transferStatuses}" var="status">
-
- <c:choose>
- <c:when test="${empty status.playerType}">
- <fmt:message key="common.unknown" var="type"/>
- </c:when>
- <c:otherwise>
- <c:set var="type" value="(${status.playerType})"/>
- </c:otherwise>
- </c:choose>
-
- <c:choose>
- <c:when test="${status.stream}">
- <fmt:message key="status.stream" var="transferType"/>
- </c:when>
- <c:when test="${status.download}">
- <fmt:message key="status.download" var="transferType"/>
- </c:when>
- <c:when test="${status.upload}">
- <fmt:message key="status.upload" var="transferType"/>
- </c:when>
- </c:choose>
-
- <c:choose>
- <c:when test="${empty status.username}">
- <fmt:message key="common.unknown" var="user"/>
- </c:when>
- <c:otherwise>
- <c:set var="user" value="${status.username}"/>
- </c:otherwise>
- </c:choose>
-
- <c:choose>
- <c:when test="${empty status.path}">
- <fmt:message key="common.unknown" var="current"/>
- </c:when>
- <c:otherwise>
- <c:set var="current" value="${status.path}"/>
- </c:otherwise>
- </c:choose>
-
- <sub:url value="/statusChart.view" var="chartUrl">
- <c:if test="${status.stream}">
- <sub:param name="type" value="stream"/>
- </c:if>
- <c:if test="${status.download}">
- <sub:param name="type" value="download"/>
- </c:if>
- <c:if test="${status.upload}">
- <sub:param name="type" value="upload"/>
- </c:if>
- <sub:param name="index" value="${status.index}"/>
- </sub:url>
-
- <tr>
- <td class="ruleTableCell">${transferType}</td>
- <td class="ruleTableCell">${status.player}<br>${type}</td>
- <td class="ruleTableCell">${user}</td>
- <td class="ruleTableCell">${current}</td>
- <td class="ruleTableCell">${status.bytes}</td>
- <td class="ruleTableCell" width="${model.chartWidth}"><img width="${model.chartWidth}" height="${model.chartHeight}" src="${chartUrl}" alt=""></td>
- </tr>
- </c:forEach>
-</table>
-
-<div class="forward"><a href="status.view?"><fmt:message key="common.refresh"/></a></div>
-
-</body></html> \ No newline at end of file