]> git.ipfire.org Git - thirdparty/tvheadend.git/commitdiff
adding help file for timeshift tab (under configure)
authoroneadvent <oneadvent@gmail.com>
Sun, 13 Jan 2013 00:36:16 +0000 (18:36 -0600)
committeroneadvent <oneadvent@gmail.com>
Sun, 13 Jan 2013 00:36:16 +0000 (18:36 -0600)
docs/html/config_timeshift.html [new file with mode: 0644]
src/webui/static/app/timeshift.js

diff --git a/docs/html/config_timeshift.html b/docs/html/config_timeshift.html
new file mode 100644 (file)
index 0000000..4c3420e
--- /dev/null
@@ -0,0 +1,37 @@
+<div class="hts-doc-text">
+
+ <p>
+ This tab is used to configure timeshift properties.
+
+ <p>
+ Configuration options:
+ <dl>
+  <dt>Enabled
+  <dd>Turn on and off timeshift.
+
+  <dt>On-Demand
+  <dd>Turn this on to only begin timeshift recording when pause is pressed. 
+      Leave unchecked for always timeshifting. (Rewinding even if you haven't pressed
+      pause.)
+
+  <dt>Storage Path:
+  <dd>Where should the timeshift data be stored.
+
+  <dt>Max. Period (mins):
+  <dd>Specify the number of minutes to put into the timeshift.
+
+  <dt>Unlimited:
+  <dd>If checked, this overrides Max Period (mins) and will continue to timeshift until your
+      hard drive or other storage medium fills up.
+
+  <dt>Max. Size (MB)
+  <dd>Specifies in Megabytes how big the timeshift file should get. 
+
+  <dt>Unlimited:
+  <dd>If checked, this overrides Max Size (MB) and will continue to timeshift until your
+      hard drive or other storage medium fills up
+
+ </dl>
+ Changes to any of these settings must be confirmed by pressing the
+ 'Save configuration' button before taking effect.
+</div>
index 7f27ba4fd76215baa26fc57530b90722c5a3dda3..e1a78aa98b946e6cee76ed55e0c723a6cd1aac12 100644 (file)
@@ -47,7 +47,7 @@ tvheadend.timeshift = function() {
   });
 
   var timeshiftUnlPeriod = new Ext.form.Checkbox({
-    fieldLabel: '  unlimited',
+    fieldLabel: '  Unlimited',
     name: 'timeshift_unlimited_period',
     Width: 300
   });
@@ -60,7 +60,7 @@ tvheadend.timeshift = function() {
   });
 
   var timeshiftUnlSize = new Ext.form.Checkbox({
-    fieldLabel: '  unlimited',
+    fieldLabel: '  Unlimited',
     name: 'timeshift_unlimited_size',
     Width: 300
   });