]> git.ipfire.org Git - thirdparty/tvheadend.git/commitdiff
mdhelp: add automatic service checking table doc
authorMark Clarkstone <hello@markclarkstone.co.uk>
Thu, 26 May 2016 16:16:34 +0000 (17:16 +0100)
committerJaroslav Kysela <perex@perex.cz>
Fri, 27 May 2016 16:14:29 +0000 (18:14 +0200)
docs/property/servicechecking.md [new file with mode: 0644]
src/service.c

diff --git a/docs/property/servicechecking.md b/docs/property/servicechecking.md
new file mode 100644 (file)
index 0000000..b9b8dcb
--- /dev/null
@@ -0,0 +1,7 @@
+:
+
+Option                        | Description
+------------------------------|------------
+**Auto check enabled**        | Enable automatic service checking.
+**Auto check disabled**       | Disable automatic service checking.
+**Missing In PAT/SDT**        | The service is no longer available on this mux.
index 905dc2f5778e5a5dbd1e999c29ad72542a0c22bd..5b404c249f0f0ec0fea7cc8e140973270697e9ec 100644 (file)
@@ -161,6 +161,8 @@ service_type_auto_list ( void *o, const char *lang )
   return strtab2htsmsg(tab, 1, lang);
 }
 
+PROP_DOC(servicechecking)
+
 const idclass_t service_class = {
   .ic_class      = "service",
   .ic_caption    = N_("Service"),
@@ -185,6 +187,7 @@ const idclass_t service_class = {
       .desc     = N_("Check for the services' presence. If the service is no "
                      "longer broadcast this field will change to "
                      "Missing In PAT/SDT."),
+      .doc      = prop_doc_servicechecking,
       .list     = service_class_auto_list,
       .off      = offsetof(service_t, s_auto),
       .opts     = PO_ADVANCED | PO_DOC_NLIST,