--- /dev/null
+##Digital Video Recorder - Autorec
+
+This tab is used to create and maintain Digital Video Recorder rules.
+These can be EPG-driven (such as those created from the initial EPG tab)
+through the DVR AutoRec Entries tab , or can be timer-based through the
+Time Schedules tab.
+
+This tab controls EPG-driven recording rules.
+
+
+
--- /dev/null
+##Configuration - Recording - Digital Video Recorder Profiles
+
+This tab is used to configure operation of the Digital Video Recorder.
+It is not used for scheduling or administration of individual
+recordings.
+
+
+
--- /dev/null
+##Digital Video Recorder - Time Schedules
+
+This tab is used to create and maintain Digital Video Recorder rules.
+These can be EPG-driven (such as those created from the initial EPG tab)
+through the DVR AutoRec Entries tab , or can be timer-based through the
+Time Schedules tab.
+
+This tab controls timer-driven recording rules.
+
+
return PO_RDONLY | PO_ADVANCED;
}
+extern const char *tvh_doc_dvrautorec_class[];
+
const idclass_t dvr_autorec_entry_class = {
.ic_class = "dvrautorec",
.ic_caption = N_("DVR Auto-record entry"),
.ic_event = "dvrautorec",
+ .ic_doc = tvh_doc_dvrautorec_class,
.ic_changed = dvr_autorec_entry_class_changed,
.ic_save = dvr_autorec_entry_class_save,
.ic_get_title = dvr_autorec_entry_class_get_title,
return 0;
}
+extern const char *tvh_doc_dvrconfig_class[];
+
const idclass_t dvr_config_class = {
.ic_class = "dvrconfig",
.ic_caption = N_("DVR configuration profile"),
.ic_event = "dvrconfig",
+ .ic_doc = tvh_doc_dvrconfig_class,
.ic_changed = dvr_config_class_changed,
.ic_save = dvr_config_class_save,
.ic_get_title = dvr_config_class_get_title,
return PO_RDONLY | PO_ADVANCED;
}
+extern const char *tvh_doc_dvrtimerec_class[];
+
const idclass_t dvr_timerec_entry_class = {
.ic_class = "dvrtimerec",
.ic_caption = N_("DVR time record entry"),
.ic_event = "dvrtimerec",
+ .ic_doc = tvh_doc_dvrtimerec_class,
.ic_changed = dvr_timerec_entry_class_changed,
.ic_save = dvr_timerec_entry_class_save,
.ic_get_title = dvr_timerec_entry_class_get_title,