]> git.ipfire.org Git - thirdparty/tvheadend.git/commitdiff
mdhelp: add tab specific button table to bouquets doc for force scan mdhelp: slightly...
authorMark Clarkstone <hello@markclarkstone.co.uk>
Sat, 4 Jun 2016 05:14:12 +0000 (06:14 +0100)
committerJaroslav Kysela <perex@perex.cz>
Sat, 4 Jun 2016 08:47:34 +0000 (10:47 +0200)
docs/class/bouquet.md
docs/property/network_discovery.md [new file with mode: 0644]
src/input/mpegts/mpegts_network.c

index 44a0311cf62cef2d6423dc41bdedce23323965bd..c50e29064fc8fdf6cebcc5365c34157f2d7dff10 100644 (file)
@@ -21,6 +21,12 @@ listen to the specific MPEG-TS PIDs.
 
 <tvh_include>inc/common_button_table_end</tvh_include>
 
+The following tab specific buttons are available: 
+
+Button         | Function
+---------------|---------
+**Force Scan** | Rescan the selected mux for changes to the bouquet.
+
 ---
 
 <tvh_include>inc/add_grid_entry</tvh_include>
diff --git a/docs/property/network_discovery.md b/docs/property/network_discovery.md
new file mode 100644 (file)
index 0000000..1221d69
--- /dev/null
@@ -0,0 +1,7 @@
+:
+
+Option                         | Description
+-------------------------------|------------
+**Disable**                    | Disable mux discovery.
+**New muxes only**             | Discover new muxes only.
+**New muxes + changed muxes**  | Discover new muxes and changes to existing muxes.
index 767c9108a91e1b96f6e73c5105d78a6fb4aa02ac..0e8373f5c4a79fd4bc3e775e31d87c1ccc921c2d 100644 (file)
@@ -135,12 +135,13 @@ mpegts_network_discovery_enum ( void *o, const char *lang )
   static const struct strtab tab[] = {
     { N_("Disable"),                  MN_DISCOVERY_DISABLE },
     { N_("New muxes only"),           MN_DISCOVERY_NEW },
-    { N_("New muxes + change muxes"), MN_DISCOVERY_CHANGE },
+    { N_("New muxes + changed muxes"), MN_DISCOVERY_CHANGE },
   };
   return strtab2htsmsg(tab, 1, lang);
 }
 
 CLASS_DOC(mpegts_network)
+PROP_DOC(network_discovery)
 
 const idclass_t mpegts_network_class =
 {
@@ -182,9 +183,10 @@ const idclass_t mpegts_network_class =
       .name     = N_("Network discovery"),
       .desc     = N_("Discover more muxes using the Network "
                      "Information Table (if available)."),
+      .doc      = prop_doc_network_discovery,
       .off      = offsetof(mpegts_network_t, mn_autodiscovery),
       .list     = mpegts_network_discovery_enum,
-      .opts     = PO_ADVANCED,
+      .opts     = PO_ADVANCED | PO_DOC_NLIST,
       .def.i    = MN_DISCOVERY_NEW
     },
     {