OLD | NEW |
1 { | 1 { |
2 "extensions": [ | 2 "extensions": [ |
3 { | 3 { |
4 "type": "view", | 4 "type": "view", |
5 "location": "panel", | 5 "location": "panel", |
6 "id": "console", | 6 "id": "console", |
7 "title": "Console", | 7 "title": "Console", |
8 "order": 20, | 8 "order": 20, |
9 "className": "Console.ConsolePanel" | 9 "className": "Console.ConsolePanel" |
10 }, | 10 }, |
11 { | 11 { |
12 "type": "view", | 12 "type": "view", |
13 "location": "drawer-view", | 13 "location": "drawer-view", |
14 "id": "console-view", | 14 "id": "console-view", |
15 "title": "Console", | 15 "title": "Console", |
16 "persistence": "permanent", | 16 "persistence": "permanent", |
17 "order": 0, | 17 "order": 0, |
18 "className": "Console.ConsolePanel.WrapperView" | 18 "className": "Console.ConsolePanel.WrapperView" |
19 }, | 19 }, |
20 { | 20 { |
21 "type": "@Common.Revealer", | 21 "type": "@Common.Revealer", |
22 "contextTypes": ["Common.Console"], | 22 "contextTypes": [ |
| 23 "Common.Console" |
| 24 ], |
23 "className": "Console.ConsolePanel.ConsoleRevealer" | 25 "className": "Console.ConsolePanel.ConsoleRevealer" |
24 }, | 26 }, |
25 { | 27 { |
26 "type": "@UI.ActionDelegate", | 28 "type": "@UI.ActionDelegate", |
27 "actionId": "console.show", | 29 "actionId": "console.show", |
28 "className": "Console.ConsoleView.ActionDelegate", | 30 "className": "Console.ConsoleView.ActionDelegate", |
29 "bindings": [ | 31 "bindings": [ |
30 { | 32 { |
31 "shortcut": "Ctrl+`" | 33 "shortcut": "Ctrl+`" |
32 } | 34 } |
(...skipping 25 matching lines...) Expand all Loading... |
58 "className": "Console.ConsoleView.ActionDelegate" | 60 "className": "Console.ConsoleView.ActionDelegate" |
59 }, | 61 }, |
60 { | 62 { |
61 "type": "setting", | 63 "type": "setting", |
62 "category": "Console", | 64 "category": "Console", |
63 "title": "Hide network messages", | 65 "title": "Hide network messages", |
64 "settingName": "hideNetworkMessages", | 66 "settingName": "hideNetworkMessages", |
65 "settingType": "boolean", | 67 "settingType": "boolean", |
66 "defaultValue": false, | 68 "defaultValue": false, |
67 "options": [ | 69 "options": [ |
68 { "value": true, "title": "Hide network messages" }, | 70 { |
69 { "value": false, "title": "Show network messages" } | 71 "value": true, |
| 72 "title": "Hide network messages" |
| 73 }, |
| 74 { |
| 75 "value": false, |
| 76 "title": "Show network messages" |
| 77 } |
70 ] | 78 ] |
71 }, | 79 }, |
72 { | 80 { |
73 "type": "setting", | 81 "type": "setting", |
74 "category": "Console", | 82 "category": "Console", |
75 "title": "Hide violations", | 83 "title": "Hide violations", |
76 "settingName": "hideViolationMessages", | 84 "settingName": "hideViolationMessages", |
77 "settingType": "boolean", | 85 "settingType": "boolean", |
78 "defaultValue": true, | 86 "defaultValue": true, |
79 "options": [ | 87 "options": [ |
80 { "value": true, "title": "Hide violations" }, | 88 { |
81 { "value": false, "title": "Show violations" } | 89 "value": true, |
| 90 "title": "Hide violations" |
| 91 }, |
| 92 { |
| 93 "value": false, |
| 94 "title": "Show violations" |
| 95 } |
82 ] | 96 ] |
83 }, | 97 }, |
84 { | 98 { |
85 "type": "setting", | 99 "type": "setting", |
86 "category": "Console", | 100 "category": "Console", |
87 "title": "Log XMLHttpRequests", | 101 "title": "Log XMLHttpRequests", |
88 "settingName": "monitoringXHREnabled", | 102 "settingName": "monitoringXHREnabled", |
89 "settingType": "boolean", | 103 "settingType": "boolean", |
90 "defaultValue": false | 104 "defaultValue": false |
91 }, | 105 }, |
92 { | 106 { |
93 "type": "setting", | 107 "type": "setting", |
94 "category": "Console", | 108 "category": "Console", |
95 "title": "Show timestamps", | 109 "title": "Show timestamps", |
96 "settingName": "consoleTimestampsEnabled", | 110 "settingName": "consoleTimestampsEnabled", |
97 "settingType": "boolean", | 111 "settingType": "boolean", |
98 "defaultValue": false, | 112 "defaultValue": false, |
99 "options": [ | 113 "options": [ |
100 { "value": true, "title": "Show timestamps" }, | 114 { |
101 { "value": false, "title": "Hide timestamps" } | 115 "value": true, |
| 116 "title": "Show timestamps" |
| 117 }, |
| 118 { |
| 119 "value": false, |
| 120 "title": "Hide timestamps" |
| 121 } |
102 ] | 122 ] |
103 }, | 123 }, |
104 { | 124 { |
105 "type": "setting", | 125 "type": "setting", |
106 "category": "Console", | 126 "category": "Console", |
107 "title": "Autocomplete from history", | 127 "title": "Autocomplete from history", |
108 "settingName": "consoleHistoryAutocomplete", | 128 "settingName": "consoleHistoryAutocomplete", |
109 "settingType": "boolean", | 129 "settingType": "boolean", |
110 "defaultValue": true, | 130 "defaultValue": true, |
111 "options": [ | 131 "options": [ |
112 { "value": true, "title": "Autocomplete from history" }, | 132 { |
113 { "value": false, "title": "Do not autocomplete from history" } | 133 "value": true, |
| 134 "title": "Autocomplete from history" |
| 135 }, |
| 136 { |
| 137 "value": false, |
| 138 "title": "Do not autocomplete from history" |
| 139 } |
114 ] | 140 ] |
115 } | 141 } |
116 ], | 142 ], |
117 "dependencies": [ | 143 "dependencies": [ |
118 "components", "ui_lazy" | 144 "components", |
| 145 "data_grid" |
119 ], | 146 ], |
120 "scripts": [ | 147 "scripts": [ |
121 "ConsoleContextSelector.js", | 148 "ConsoleContextSelector.js", |
122 "ConsoleViewport.js", | 149 "ConsoleViewport.js", |
123 "ConsoleViewMessage.js", | 150 "ConsoleViewMessage.js", |
124 "ConsolePrompt.js", | 151 "ConsolePrompt.js", |
125 "ConsoleView.js", | 152 "ConsoleView.js", |
126 "ConsolePanel.js" | 153 "ConsolePanel.js" |
127 ], | 154 ], |
128 "resources": [ | 155 "resources": [ |
129 "consoleView.css" | 156 "consoleView.css" |
130 ] | 157 ] |
131 } | 158 } |
OLD | NEW |