diff options
Diffstat (limited to 'subsonic-main/src/main/webapp/WEB-INF/jsp/wap/searchResult.jsp')
-rw-r--r-- | subsonic-main/src/main/webapp/WEB-INF/jsp/wap/searchResult.jsp | 30 |
1 files changed, 0 insertions, 30 deletions
diff --git a/subsonic-main/src/main/webapp/WEB-INF/jsp/wap/searchResult.jsp b/subsonic-main/src/main/webapp/WEB-INF/jsp/wap/searchResult.jsp deleted file mode 100644 index 2267c069..00000000 --- a/subsonic-main/src/main/webapp/WEB-INF/jsp/wap/searchResult.jsp +++ /dev/null @@ -1,30 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE wml PUBLIC "-//WAPFORUM//DTD WML 1.1//EN" "http://www.wapforum.org/DTD/wml_1.1.xml">
-
-<%@ page language="java" contentType="text/vnd.wap.wml; charset=utf-8" pageEncoding="iso-8859-1"%>
-
-<wml>
-
- <%@ include file="head.jsp" %>
- <card id="main" title="Subsonic" newcontext="false">
- <p><small>
-
- <c:choose>
- <c:when test="${model.creatingIndex}">
- <fmt:message key="wap.searchresult.index"/>
- </c:when>
-
- <c:otherwise>
- <c:forEach items="${model.hits}" var="hit">
- <sub:url var="url" value="/wap/browse.view">
- <sub:param name="path" value="${hit.path}"/>
- </sub:url>
- <a href="${url}">${fn:escapeXml(hit.title)}</a><br/>
- </c:forEach>
- </c:otherwise>
- </c:choose>
- </small></p>
- </card>
-
-</wml>
-
|