From: Mark Clarkstone Date: Sat, 16 Apr 2016 01:15:51 +0000 (+0100) Subject: mdhelp: add screenshot and button table to access_entry doc mdhelp: update config... X-Git-Tag: v4.2.1~637 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=7e586fa918b43fe40931512817871d6cac6e8862;p=thirdparty%2Ftvheadend.git mdhelp: add screenshot and button table to access_entry doc mdhelp: update config doc button table mdhelp: add screenshot, button table and update caption (imagecache) --- diff --git a/docs/class/access_entry.md b/docs/class/access_entry.md index a4093d1ee..876913ab4 100644 --- a/docs/class/access_entry.md +++ b/docs/class/access_entry.md @@ -9,6 +9,24 @@ if the username matches and the IP source address of the requesting peer is within the prefix. There is also anonymous access, if the user is set to asterisk. Only network prefix is matched then. +!['Access Entries Grid'](docresources/accessentriesgrid.png) + +--- + +###Buttons + +The tab has the following buttons: + +Button | Function +-----------------------|------------------- +**Save** | Save any changes made to the grid/entries. +**Undo** | Revert any changes made since the last save. +**Add** | Display the *Add Access* dialog. +**Delete** | Delete the selected entry/entries. +**Move Up** | Move the selected entry up the grid. +**Move Down** | Move the selected entry down the grid. +**Edit** | Edit the selected entry. + --- ### Adding an Entry/Creating an Account diff --git a/docs/class/config.md b/docs/class/config.md index 3eab26684..a0f65a621 100644 --- a/docs/class/config.md +++ b/docs/class/config.md @@ -11,7 +11,7 @@ The tab has the following buttons: Button | Function -----------------------|------------------- -**Save** | Save all changes. +**Save** | Save all changes (this will reload the web interface). **Undo** | Revert all changes since last save. **Start wizard** | Display the first-run set-up wizard. diff --git a/docs/class/imagecache.md b/docs/class/imagecache.md index 140d2f540..bcc6e7984 100644 --- a/docs/class/imagecache.md +++ b/docs/class/imagecache.md @@ -2,3 +2,20 @@ This will cache any channel icons or other images (such as EPG metadata) to be served from the local webserver. This can be useful for multi-client systems and, generally, to reduce hits on upstream providers. + +!['Configuration - Image Cache tab'](docresources/configimagecache.png) + +--- + +###Buttons + +The tab has the following buttons: + +Button | Function +----------------------------|------------------- +**Save** | Save any changes made to the tab. +**Undo** | Revert any changes made since the last save. +**Clean image (icon) cache**| Clean-up the stored image files (empty cache and re-fetch icons). +**Re-fetch images** | Re-refresh image cache (reload images from upstream providers). + +--- diff --git a/docs/docresources/accessentriesgrid.png b/docs/docresources/accessentriesgrid.png new file mode 100644 index 000000000..3de25c6d7 Binary files /dev/null and b/docs/docresources/accessentriesgrid.png differ diff --git a/docs/docresources/configimagecache.png b/docs/docresources/configimagecache.png new file mode 100644 index 000000000..b201e3bb9 Binary files /dev/null and b/docs/docresources/configimagecache.png differ diff --git a/src/imagecache.c b/src/imagecache.c index 761e3c5b9..f0785611c 100644 --- a/src/imagecache.c +++ b/src/imagecache.c @@ -76,7 +76,7 @@ CLASS_DOC(imagecache) const idclass_t imagecache_class = { .ic_snode = (idnode_t *)&imagecache_conf, .ic_class = "imagecache", - .ic_caption = N_("Image cache"), + .ic_caption = N_("Configuration - Image cache"), .ic_event = "imagecache", .ic_perm_def = ACCESS_ADMIN, .ic_doc = tvh_doc_imagecache_class,