From f77cd7c4e59a68106a439478cd9066aaba477ab9 Mon Sep 17 00:00:00 2001 From: Ian Date: Mon, 26 May 2014 15:35:35 +0100 Subject: [PATCH] tvhlog.js: Option grouping for consistency with rest of interface; correction of option label capitalisation --- src/webui/static/app/tvhlog.js | 19 ++++++++++++++----- 1 file changed, 14 insertions(+), 5 deletions(-) diff --git a/src/webui/static/app/tvhlog.js b/src/webui/static/app/tvhlog.js index d5c6e92c..8062b7ac 100644 --- a/src/webui/static/app/tvhlog.js +++ b/src/webui/static/app/tvhlog.js @@ -12,7 +12,7 @@ tvheadend.tvhlog = function() { * ***************************************************************/ var tvhlogLogPath = new Ext.form.TextField({ - fieldLabel: 'Debug Log Path', + fieldLabel: 'Debug log path', name: 'tvhlog_path', allowBlank: true, width: 400 @@ -29,14 +29,14 @@ tvheadend.tvhlog = function() { }); var tvhlogDebugSubsys = new Ext.form.TextField({ - fieldLabel: 'Debug Subsystems', + fieldLabel: 'Debug subsystems', name: 'tvhlog_debug', allowBlank: true, width: 400 }); var tvhlogTraceSubsys = new Ext.form.TextField({ - fieldLabel: 'Trace Subsystems', + fieldLabel: 'Trace subsystems', name: 'tvhlog_trace', allowBlank: true, width: 400 @@ -60,6 +60,16 @@ tvheadend.tvhlog = function() { } }); + var DebuggingPanel = new Ext.form.FieldSet({ + title: 'Debugging Options', + width: 700, + autoHeight: true, + collapsible: true, + animCollapse : true, + items: [tvhlogLogPath, tvhlogToSyslog, + tvhlogTraceOn, tvhlogDebugSubsys, tvhlogTraceSubsys] + }); + var confpanel = new Ext.form.FormPanel({ title: 'Debugging', iconCls: 'wrench', @@ -72,8 +82,7 @@ tvheadend.tvhlog = function() { layout: 'form', defaultType: 'textfield', autoHeight: true, - items: [tvhlogLogPath, tvhlogToSyslog, - tvhlogTraceOn, tvhlogDebugSubsys, tvhlogTraceSubsys], + items: [DebuggingPanel], tbar: [saveButton, '->', helpButton] });