]> git.ipfire.org Git - thirdparty/tvheadend.git/commitdiff
tvhlog.js: Option grouping for consistency with rest of interface; correction of...
authorIan <ian@sproink.co.uk>
Mon, 26 May 2014 14:35:35 +0000 (15:35 +0100)
committerIan <ian@sproink.co.uk>
Mon, 26 May 2014 14:35:35 +0000 (15:35 +0100)
src/webui/static/app/tvhlog.js

index d5c6e92cc430397b0acbe80ad87001d795f73a80..8062b7ac2c4c1ab7b678632afa05eb4be200141a 100644 (file)
@@ -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]
     });