aboutsummaryrefslogtreecommitdiff
path: root/subsonic-main/src/main/webapp/WEB-INF/jsp/rating.jsp
diff options
context:
space:
mode:
authorScott Jackson <daneren2005@gmail.com>2013-07-27 14:33:25 -0700
committerScott Jackson <daneren2005@gmail.com>2013-07-27 14:33:38 -0700
commit4738428c2c205f42200386ae09b44b9ec07b9144 (patch)
treea6402978fe1b4655f90c3c8a181f4d246fbc5e89 /subsonic-main/src/main/webapp/WEB-INF/jsp/rating.jsp
parent82ec8315f777c319f2372540098e21111019d629 (diff)
downloaddsub-4738428c2c205f42200386ae09b44b9ec07b9144.tar.gz
dsub-4738428c2c205f42200386ae09b44b9ec07b9144.tar.bz2
dsub-4738428c2c205f42200386ae09b44b9ec07b9144.zip
Move subsonic-android to root
Diffstat (limited to 'subsonic-main/src/main/webapp/WEB-INF/jsp/rating.jsp')
-rw-r--r--subsonic-main/src/main/webapp/WEB-INF/jsp/rating.jsp51
1 files changed, 0 insertions, 51 deletions
diff --git a/subsonic-main/src/main/webapp/WEB-INF/jsp/rating.jsp b/subsonic-main/src/main/webapp/WEB-INF/jsp/rating.jsp
deleted file mode 100644
index 9e956de3..00000000
--- a/subsonic-main/src/main/webapp/WEB-INF/jsp/rating.jsp
+++ /dev/null
@@ -1,51 +0,0 @@
-<%@ page language="java" contentType="text/html; charset=utf-8" pageEncoding="iso-8859-1"%>
-<%@ include file="include.jsp" %>
-
-<%--
-Creates HTML for displaying the rating stars.
-PARAMETERS
- path: Album path. May be null if readonly.
- readonly: Whether rating can be changed.
- rating: The rating, an integer from 0 (no rating), through 10 (lowest rating), to 50 (highest rating).
---%>
-
-<c:forEach var="i" begin="1" end="5">
-
- <sub:url value="setRating.view" var="ratingUrl">
- <sub:param name="path" value="${param.path}"/>
- <sub:param name="action" value="rating"/>
- <sub:param name="rating" value="${i}"/>
- </sub:url>
-
- <c:choose>
- <c:when test="${param.rating ge i * 10}">
- <spring:theme code="ratingOnImage" var="imageUrl"/>
- </c:when>
- <c:when test="${param.rating ge i*10 - 7 and param.rating le i*10 - 3}">
- <spring:theme code="ratingHalfImage" var="imageUrl"/>
- </c:when>
- <c:otherwise>
- <spring:theme code="ratingOffImage" var="imageUrl"/>
- </c:otherwise>
- </c:choose>
-
- <c:choose>
- <c:when test="${param.readonly}">
- <img src="${imageUrl}" style="margin-right:-3px" alt="" title="<fmt:message key="rating.rating"/> ${param.rating/10}">
- </c:when>
- <c:otherwise>
- <a href="${ratingUrl}"><img src="${imageUrl}" style="margin-right:-3px" alt="" title="<fmt:message key="rating.rating"/> ${i}"></a>
- </c:otherwise>
- </c:choose>
-
-</c:forEach>
-
-<sub:url value="setRating.view" var="clearRatingUrl">
- <sub:param name="path" value="${param.path}"/>
- <sub:param name="action" value="rating"/>
- <sub:param name="rating" value="0"/>
-</sub:url>
-
-<c:if test="${not param.readonly}">
- | <a href="${clearRatingUrl}"><img src="<spring:theme code="clearRatingImage"/>" alt="" title="<fmt:message key="rating.clearrating"/>" style="margin-left:-3px; margin-right:5px"></a>
-</c:if>