Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
mdhelp: add mux scheduler doc + screenies mdhelp: change caption (fro…
…m "mux schedule entry" to "Mux Scheduler") mdhelp: add cron property doc
- Loading branch information
Showing
5 changed files
with
75 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,46 @@ | ||
| Mux Schedulers enable Tvheadend to automatically play channels. This is | ||
| useful to get EPG, services or access rights updates. | ||
|
|
||
|  | ||
|
|
||
| --- | ||
|
|
||
| ###Menu Bar/Buttons | ||
|
|
||
| The following functions are available: | ||
|
|
||
| Button | Function | ||
| ---------------|--------- | ||
| **Save** | Save any changes made. | ||
| **Undo** | Undo any changes made since the last save. | ||
| **Add** | Add a new entry. | ||
| **Delete** | Delete an existing entry. | ||
| **Edit** | Edit an existing schedule entry. | ||
| **View Level** | Change the interface view level to show/hide more advanced options. | ||
| **Help** | Displays this help page. | ||
|
|
||
| --- | ||
|
|
||
| ###Adding/Editing an Entry | ||
|
|
||
| You can add an entry by pressing the *[Add]* button from the menu bar. | ||
| To edit an entry highlight (select) the entry from within the grid, and press the | ||
| *[Edit]* button from the menu bar. | ||
|
|
||
| A common set of fields is used for the Add or Edit functions, most of | ||
| which can also be seen in the grid view: | ||
|
|
||
|  | ||
|
|
||
| --- | ||
|
|
||
| ###Deleting an Entry | ||
|
|
||
| To delete an entry highlight (select) the entry from within the grid, | ||
| and press the *[Delete]* button from the menu bar. | ||
|
|
||
| **Tip**: You can select all entries within the grid by pressing ctrl+A. | ||
| You can also ctrl+click to make additional selections, or shift+click to | ||
| select a range. | ||
|
|
||
| --- |
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,23 @@ | ||
| : | ||
| Example : every day at 2am is : `0 2 * * *` | ||
|
|
||
| `┌───────────── min (0 - 59)` | ||
|
|
||
| `│ ┌────────────── hour (0 - 23)` | ||
|
|
||
| `│ │ ┌─────────────── day of month (1 - 31)` | ||
|
|
||
| `│ │ │ ┌──────────────── month (1 - 12)` | ||
|
|
||
| `│ │ │ │ ┌───────────────── day of week (0 - 6) (0 to 6 are Sunday to Saturday, or use names; 7 is Sunday, the same as 0)` | ||
|
|
||
| `│ │ │ │ │` | ||
|
|
||
| `│ │ │ │ │` | ||
|
|
||
| `* * * * *` | ||
|
|
||
| You cannot use non-standard predefined scheduling definitions for this | ||
| field. | ||
|
|
||
| See [Wikipedia for a detailed look into Cron.](https://en.wikipedia.org/wiki/Cron) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters