%PDF- %PDF-
| Direktori : /proc/thread-self/root/home/waritko/subsonic/ROOT/WEB-INF/jsp/ |
| Current File : //proc/thread-self/root/home/waritko/subsonic/ROOT/WEB-INF/jsp/podcastSettings.jsp |
<%@ page language="java" contentType="text/html; charset=utf-8" pageEncoding="iso-8859-1" %>
<%--@elvariable id="command" type="net.sourceforge.subsonic.command.PodcastSettingsCommand"--%>
<html><head>
<%@ include file="head.jsp" %>
<%@ include file="jquery.jsp" %>
</head>
<body class="mainframe bgcolor1">
<c:set var="category" value="podcast"/>
<c:set var="toast" value="${command.toast}"/>
<%@ include file="settingsHeader.jsp" %>
<form:form commandName="command" action="podcastSettings.view" method="post">
<table class="indent">
<tr>
<td><fmt:message key="podcastsettings.update"/></td>
<td>
<form:select path="interval" cssStyle="width:20em">
<fmt:message key="podcastsettings.interval.manually" var="never"/>
<fmt:message key="podcastsettings.interval.hourly" var="hourly"/>
<fmt:message key="podcastsettings.interval.daily" var="daily"/>
<fmt:message key="podcastsettings.interval.weekly" var="weekly"/>
<form:option value="-1" label="${never}"/>
<form:option value="1" label="${hourly}"/>
<form:option value="24" label="${daily}"/>
<form:option value="168" label="${weekly}"/>
</form:select>
</td>
</tr>
<tr>
<td><fmt:message key="podcastsettings.keep"/></td>
<td>
<form:select path="episodeRetentionCount" cssStyle="width:20em">
<fmt:message key="podcastsettings.keep.all" var="all"/>
<fmt:message key="podcastsettings.keep.one" var="one"/>
<form:option value="-1" label="${all}"/>
<form:option value="1" label="${one}"/>
<c:forTokens items="2 3 4 5 10 20 30 50" delims=" " var="count">
<fmt:message key="podcastsettings.keep.many" var="many"><fmt:param value="${count}"/></fmt:message>
<form:option value="${count}" label="${many}"/>
</c:forTokens>
</form:select>
</td>
</tr>
<tr>
<td><fmt:message key="podcastsettings.download"/></td>
<td>
<form:select path="episodeDownloadCount" cssStyle="width:20em">
<fmt:message key="podcastsettings.download.all" var="all"/>
<fmt:message key="podcastsettings.download.one" var="one"/>
<fmt:message key="podcastsettings.download.none" var="none"/>
<form:option value="-1" label="${all}"/>
<form:option value="1" label="${one}"/>
<c:forTokens items="2 3 4 5 10" delims=" " var="count">
<fmt:message key="podcastsettings.download.many" var="many"><fmt:param value="${count}"/></fmt:message>
<form:option value="${count}" label="${many}"/>
</c:forTokens>
<form:option value="0" label="${none}"/>
</form:select>
</td>
</tr>
<tr>
<td><fmt:message key="podcastsettings.folder"/></td>
<td><form:input path="folder" cssStyle="width:20em"/></td>
</tr>
<tr>
<td style="padding-top:1.5em" colspan="2">
<input type="submit" value="<fmt:message key="common.save"/>" style="margin-right:0.3em">
<input type="button" value="<fmt:message key="common.cancel"/>" onclick="location.href='nowPlaying.view'">
</td>
</tr>
</table>
</form:form>
</body></html>