From: Mark Clarkstone Date: Mon, 9 May 2016 23:19:57 +0000 (+0100) Subject: mdhelp: complete channel tag doc + add tag dialog screenie X-Git-Tag: v4.2.1~533 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=830d9f3a142cad57d3277d64ab58467b54520028;p=thirdparty%2Ftvheadend.git mdhelp: complete channel tag doc + add tag dialog screenie --- diff --git a/docs/class/channeltag.md b/docs/class/channeltag.md index dca068579..0373fda63 100644 --- a/docs/class/channeltag.md +++ b/docs/class/channeltag.md @@ -1,5 +1,29 @@ -This tab is where you manage your channel tags. +This tab is used to configure channel tags. Tags are used to define a +set of channels - to group them, to aid searches, and similar. +Tags are not required by Tvheadend itself, but are useful in media +applications such as Kodi and are a requirement for using Tvheadend +with Movian. !['Channel tag'](static/img/doc/channeltags.png) --- + +inc/common_button_table_start + +inc/common_button_table_end + +--- + +inc/add_grid_entry + +!['Channel tag dialog'](static/img/doc/addchanneltagdialog.png) + +--- + +inc/edit_grid_entries + +--- + +inc/del_grid_entries + +--- diff --git a/src/channels.c b/src/channels.c index 8906ec8e9..f7ffdd880 100644 --- a/src/channels.c +++ b/src/channels.c @@ -1400,9 +1400,12 @@ channel_tag_class_get_list(void *o, const char *lang) return m; } +CLASS_DOC(channeltag) + const idclass_t channel_tag_class = { .ic_class = "channeltag", - .ic_caption = N_("Channel tag"), + .ic_caption = N_("Channel Tags"), + .ic_doc = tvh_doc_channeltag_class, .ic_event = "channeltag", .ic_save = channel_tag_class_save, .ic_get_title = channel_tag_class_get_title, diff --git a/src/webui/static/img/doc/addchanneltagdialog.png b/src/webui/static/img/doc/addchanneltagdialog.png new file mode 100644 index 000000000..17a31636e Binary files /dev/null and b/src/webui/static/img/doc/addchanneltagdialog.png differ