]> git.ipfire.org Git - thirdparty/tvheadend.git/commitdiff
Epg grabber user level adjustments
authorGlenn-1990 <g_christiaensen@msn.com>
Tue, 18 Oct 2016 12:32:11 +0000 (14:32 +0200)
committerJaroslav Kysela <perex@perex.cz>
Thu, 20 Oct 2016 12:08:07 +0000 (14:08 +0200)
src/epggrab.c
src/epggrab/module.c
src/webui/static/app/epggrab.js

index 73d262ca70a28d1b6f7aa5a59ba05cec83ba0366..b48822d6109e8fdf2df5c18a9c8b7c5973b696fa 100644 (file)
@@ -280,6 +280,7 @@ const idclass_t epggrab_class = {
                    "Note: this may cause unwanted changes to "
                    "already defined channel names."),
       .off    = offsetof(epggrab_conf_t, channel_rename),
+      .opts   = PO_ADVANCED,
       .group  = 1,
     },
     {
@@ -291,6 +292,7 @@ const idclass_t epggrab_class = {
                    "Note: this may cause unwanted changes to "
                    "already defined channel numbers."),
       .off    = offsetof(epggrab_conf_t, channel_renumber),
+      .opts   = PO_ADVANCED,
       .group  = 1,
     },
     {
@@ -302,6 +304,7 @@ const idclass_t epggrab_class = {
                    "Note: this may cause unwanted changes to "
                    "already defined channel icons."),
       .off    = offsetof(epggrab_conf_t, channel_reicon),
+      .opts   = PO_ADVANCED,
       .group  = 1,
     },
     {
@@ -361,7 +364,7 @@ const idclass_t epggrab_class = {
                    "time at most. If the EPG data is complete before "
                    "this limit, the mux is released sooner."),
       .off    = offsetof(epggrab_conf_t, ota_timeout),
-      .opts   = PO_ADVANCED,
+      .opts   = PO_EXPERT,
       .group  = 3,
     },
     {}
index 8c3a41e5ca015b5d7629bb92bb5635db8c08845a..95091e87c904ef9d62f952f53a7686330fb51b07 100644 (file)
@@ -158,7 +158,7 @@ const idclass_t epggrab_mod_class = {
                    "grabber is enabled. Priority is given to the grabber "
                    "with the highest value set here."),
       .off    = offsetof(epggrab_module_t, priority),
-      .opts   = PO_ADVANCED,
+      .opts   = PO_EXPERT,
       .group  = 1
     },
     {}
index f2eafa9761526eb129d83f7ff2101719c54bfe51..6c5246d6cfdbee4c56015542f9f9934f36332109 100644 (file)
@@ -58,6 +58,7 @@ tvheadend.epggrab_map = function(panel, index) {
         titleP: _('EPG Grabber Channels'),
         iconCls: 'baseconf',
         tabIndex: index,
+        uilevel: 'expert',
         del: true,
         sort: {
           field: 'name',
@@ -81,6 +82,7 @@ tvheadend.epggrab_mod = function(panel, index) {
 
     tvheadend.idnode_form_grid(panel, {
         tabIndex: index,
+        uilevel: 'advanced',
         clazz: 'epggrab_mod',
         comet: 'epggrab_mod',
         titleS: _('EPG Grabber Module'),