]> git.ipfire.org Git - thirdparty/tvheadend.git/commitdiff
Added some suggestions from CvH
authorGlenn-1990 <g_christiaensen@msn.com>
Wed, 19 Oct 2016 11:46:13 +0000 (13:46 +0200)
committerJaroslav Kysela <perex@perex.cz>
Thu, 20 Oct 2016 12:08:07 +0000 (14:08 +0200)
src/input/mpegts/mpegts_mux.c
src/input/mpegts/mpegts_mux_dvb.c
src/timeshift.c
src/webui/static/app/config.js
src/webui/static/app/tvheadend.js
src/webui/static/app/tvhlog.js

index e593fde3b6404462f9a455dcf53373a34c466329..e452d71dc614665c28854bca698bfd5db9c46239 100644 (file)
@@ -612,7 +612,7 @@ const idclass_t mpegts_mux_class =
       .off      = offsetof(mpegts_mux_t, mm_scan_state),
       .set      = mpegts_mux_class_scan_state_set,
       .list     = mpegts_mux_class_scan_state_enum,
-      .opts     = PO_NOSAVE | PO_SORTKEY | PO_DOC_NLIST,
+      .opts     = PO_ADVANCED | PO_NOSAVE | PO_SORTKEY | PO_DOC_NLIST,
     },
     {
       .type     = PT_INT,
@@ -656,7 +656,7 @@ const idclass_t mpegts_mux_class =
        .id       = "tsid_zero",
        .name     = N_("Accept zero value for TSID"),
        .off      = offsetof(mpegts_mux_t, mm_tsid_accept_zero_value),
-       .opts     = PO_ADVANCED
+       .opts     = PO_EXPERT
     },
     {
       .type     = PT_INT,
index a6b7f57df328a5680b052d742e278d316e0d8277..c2255a11610da8845aff5052a066a735ea94912d 100644 (file)
@@ -493,7 +493,7 @@ const idclass_t dvb_mux_dvbs_class =
       MUX_PROP_STR("pls_mode", N_("PLS mode"), dvbs, pls_mode, "ROOT"),
       .desc     = N_("The Physical Layer Scrambling (PLS) mode "
                      "used on the mux."),
-      .opts     = PO_ADVANCED,
+      .opts     = PO_EXPERT,
     },
     {
       .type     = PT_U32,
index 7d75f294f25999b00bb112528c2e6e532717319d..3502b258bc04a9a0525bdd311ae59a4315c4af4e 100644 (file)
@@ -267,7 +267,7 @@ const idclass_t timeshift_conf_class = {
       .name   = N_("RAM only"),
       .desc   = N_("Only use system RAM for timeshift buffers."),
       .off    = offsetof(timeshift_conf_t, ram_only),
-      .opts   = PO_EXPERT,
+      .opts   = PO_ADVANCED,
     },
     {
       .type   = PT_BOOL,
index 3df02c713d3d59db4aef4b903ab966eaf27aa7d4..5cce152243fde764ec2f3a7f32b3e0219dda77b1 100644 (file)
@@ -108,7 +108,7 @@ tvheadend.imgcacheconf = function(panel, index) {
         title: _('Image Cache'),
         iconCls: 'imgcacheconf',
         tabIndex: index,
-        uilevel: 'advanced',
+        uilevel: 'expert',
         comet: 'imagecache',
         width: 550,
         labelWidth: 200,
index d31d5b9626336eadfb1ba7c8e43d6e1bdb9468cc..6b352a6abd4a34b9a9fc6078c806f7b257257690 100644 (file)
@@ -777,7 +777,7 @@ function accessUpdate(o) {
             tvheadend.caclient(cp, 6);
 
         /* Debug */
-        if (o.uilevel == 'expert') {
+        if (o.uilevel == 'advanced' || o.uilevel == 'expert') {
             var dbg = new Ext.TabPanel({
                 tabIndex: 7,
                 activeTab: 0,
index f3453cd8df439b8ecf66e5e6c2d1dff8af4f4672..8294a9b89b76435775fcc659b74f734937346995 100644 (file)
@@ -36,6 +36,7 @@ tvheadend.memoryinfo = function(panel, index)
         titleP: _('Memory Information Entries'),
         iconCls: 'exclamation',
         tabIndex: index,
+        uilevel: 'expert',
         readonly: true
     });
 };