]> git.ipfire.org Git - thirdparty/tvheadend.git/commitdiff
mdhelp: some minor edits mdhelp: add grabber docs + screenie mdhelp: update captions
authorMark Clarkstone <hello@markclarkstone.co.uk>
Tue, 10 May 2016 11:38:28 +0000 (12:38 +0100)
committerJaroslav Kysela <perex@perex.cz>
Wed, 11 May 2016 19:09:23 +0000 (21:09 +0200)
docs/class/caclient.md
docs/class/epgconf.md
docs/class/epggrabber_channel.md
docs/class/epggrabber_modules.md [new file with mode: 0644]
src/epggrab/module.c
src/epggrab/module/pyepg.c
src/epggrab/module/xmltv.c
src/webui/static/img/doc/epggrabmodules.png [new file with mode: 0644]

index 8d6e7fd7c3820cc3510bc1ad2eeed02483b831ab..1adc604dbf99e5558ac8079e0ae37a8ddb617799 100644 (file)
@@ -45,7 +45,7 @@ connection status.
 Icon                                         | Description
 ---------------------------------------------|------------
 !['Accept/OK Icon'](icons/accept.png)        | The client is connected.
-!['Error Icon'](icons/exclamation.png)       | There was an error connecting.
+!['Error Icon'](icons/exclamation.png)       | There was an error.
 !['Stop/Disabled Icon'](icons/stop.png)      | The client is disabled.
 
 ---
index ff597584260dae379887b27541e0a5370afa1d4a..6afc733016d01fc05c938c1bb1b3c04c6de25266 100644 (file)
@@ -1,7 +1,5 @@
 This tab is used to configure the Electronic Program Guide (EPG) 
-grabbing capabilities. Tvheadend supports a variety of different EPG 
-grabbing mechanisms. These fall into 3 broad categories, within which 
-there are a variety of specific grabber implementations.
+[grabbing](class/epggrab_mod) capabilities.
 
 !['EPG Grabber Configuration'](static/img/doc/epggrabberconfig.png)
 
index 652b0636fb5a4c511ca81d16094e7c9cc7ce0f2d..fdb2c42eb54a3d577e0dd9a65df31e6e13b797aa 100644 (file)
@@ -1,4 +1,4 @@
-This tab displays external EPG data used by channels.
+This tab displays EPG data used by channels.
 
 !['EPG Grabber Channels Tab'](static/img/doc/epggrabberchannels.png)
 
diff --git a/docs/class/epggrabber_modules.md b/docs/class/epggrabber_modules.md
new file mode 100644 (file)
index 0000000..fa95f5b
--- /dev/null
@@ -0,0 +1,26 @@
+This tab is used to configure the Electronic Program Guide (EPG) 
+grabber modules. Tvheadend supports a variety of different EPG 
+grabbing mechanisms. These fall into 3 broad categories, within which 
+there are a variety of specific grabber implementations.
+
+!['EPG Grabber Configuration'](static/img/doc/epggrabmodules.png)
+
+---
+
+###Menu Bar/Buttons
+
+The following functions are available:
+
+Button                      | Function
+----------------------------|-------------------
+**Save**                    | Save any changes made to the tab.
+**Undo**                    | Revert any changes made since the last save.
+
+<tvh_include>inc/common_button_table_end</tvh_include>
+
+---
+
+
+
+
+
index cd424774928d3c9d379fa796e12248c001aeb4f3..a3c815c9e2969ce61b44aa8b804f168d8b77b8e0 100644 (file)
@@ -104,9 +104,12 @@ static int epggrab_mod_class_type_set(void *o, const void *v)
   return 0;
 }
 
+CLASS_DOC(epggrabber_modules)
+
 const idclass_t epggrab_mod_class = {
   .ic_class      = "epggrab_mod",
-  .ic_caption    = N_("EPG grabber"),
+  .ic_caption    = N_("EPG Grabber"),
+  .ic_doc        = tvh_doc_epggrabber_modules_class,
   .ic_event      = "epggrab_mod",
   .ic_perm_def   = ACCESS_ADMIN,
   .ic_get_title  = epggrab_mod_class_title,
index 5994a2abbca91ae9a934039a9218c7605dfdd7ac..6131a76fa8eae7e13e7f6d5c44462059f2c7e607 100644 (file)
@@ -461,14 +461,14 @@ static int _pyepg_parse
 const idclass_t epggrab_mod_int_pyepg_class = {
   .ic_super      = &epggrab_mod_int_class,
   .ic_class      = "epggrab_mod_int_pyepg",
-  .ic_caption    = N_("Internal PyEPG grabber"),
+  .ic_caption    = N_("Internal PyEPG Grabber"),
 };
 
 
 const idclass_t epggrab_mod_ext_pyepg_class = {
   .ic_super      = &epggrab_mod_ext_class,
   .ic_class      = "epggrab_mod_ext_pyepg",
-  .ic_caption    = N_("External PyEPG grabber"),
+  .ic_caption    = N_("External PyEPG Grabber"),
 };
 
 
index 8f2ec822765bc37e1fcaf8a947d5cf6a75bf51be..15497696b519303492b640aae0ba1c513a2a6fa2 100644 (file)
@@ -767,7 +767,7 @@ xmltv_dn_chnum_list ( void *o, const char *lang )
 const idclass_t epggrab_mod_int_xmltv_class = {
   .ic_super      = &epggrab_mod_int_class,
   .ic_class      = "epggrab_mod_int_xmltv",
-  .ic_caption    = N_("Internal XMLTV EPG grabber"),
+  .ic_caption    = N_("Internal XMLTV EPG Grabber"),
   .ic_properties = (const property_t[]){
     {
       .type   = PT_INT,
@@ -785,7 +785,7 @@ const idclass_t epggrab_mod_int_xmltv_class = {
 const idclass_t epggrab_mod_ext_xmltv_class = {
   .ic_super      = &epggrab_mod_ext_class,
   .ic_class      = "epggrab_mod_ext_xmltv",
-  .ic_caption    = N_("External XMLTV EPG grabber"),
+  .ic_caption    = N_("External XMLTV EPG Grabber"),
   .ic_properties = (const property_t[]){
     {
       .type   = PT_BOOL,
diff --git a/src/webui/static/img/doc/epggrabmodules.png b/src/webui/static/img/doc/epggrabmodules.png
new file mode 100644 (file)
index 0000000..4766f94
Binary files /dev/null and b/src/webui/static/img/doc/epggrabmodules.png differ