Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(21)

Side by Side Diff: chrome/browser/resources/chromeos/network_ui/network_ui.html

Issue 793933003: Add chrome:://device-log (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase Created 6 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 <!doctype html> 1 <!doctype html>
2 <html i18n-values="dir:textdirection;"> 2 <html i18n-values="dir:textdirection;">
3 <head> 3 <head>
4 <meta charset="utf-8"> 4 <meta charset="utf-8">
5 <title id="network" i18n-content="titleText"></title> 5 <title id="network" i18n-content="titleText"></title>
6 <link rel="stylesheet" href="chrome://network/network_ui.css"> 6 <link rel="stylesheet" href="chrome://network/network_ui.css">
7 <script src="chrome://resources/js/load_time_data.js"></script> 7 <script src="chrome://resources/js/load_time_data.js"></script>
8 <script src="chrome://resources/js/util.js"></script> 8 <script src="chrome://resources/js/util.js"></script>
9 <script src="chrome://network/strings.js"></script> 9 <script src="chrome://network/strings.js"></script>
10 <script src="chrome://network/network_config.js"></script> 10 <script src="chrome://network/network_config.js"></script>
11 <script src="chrome://network/network_ui.js"></script> 11 <script src="chrome://network/network_ui.js"></script>
12 </head> 12 </head>
13 <body i18n-values=".style.fontFamily:fontfamily;.style.fontSize:fontsize"> 13 <body i18n-values=".style.fontFamily:fontfamily;.style.fontSize:fontsize">
14 <p i18n-content="autoRefreshText"></p> 14 <div id="header">
15 <h3>Event Log (Newest first):</h3> 15 <p i18n-content="autoRefreshText"></p>
16 <div id="log-level-container"> 16 <span i18n-values=".innerHTML:deviceLogLinkText"></span>
17 <button id="log-refresh" i18n-content="logRefreshText"></button> 17 <div id="advanced-options">
18 <label i18n-content="logLevelShowText"></label> 18 <span i18n-content="clickToExpandText"></span>
19 <input id="log-error" type="checkbox"> 19 <span i18n-content="propertyFormatText"></span>
20 <label for="log-error" i18n-content="logLevelErrorText"></label> 20 <select id="get-property-format">
21 <input id="log-user" type="checkbox"> 21 <option value="normal" i18n-content="normalFormatOption"></option>
22 <label for="log-user" i18n-content="logLevelUserText"></label> 22 <option value="managed" i18n-content="managedFormatOption"></option>
23 <input id="log-event" type="checkbox"> 23 <option value="shill" i18n-content="shillFormatOption"></option>
24 <label for="log-event" i18n-content="logLevelEventText"></label> 24 </select>
25 <input id="log-debug" type="checkbox"> 25 </div>
26 <label for="log-debug" i18n-content="logLevelDebugText"></label> 26 <p><button id="refresh" i18n-content="networkRefreshText"></button></p>
27 <input id="log-fileinfo" type="checkbox">
28 <label for="log-fileinfo" i18n-content="logLevelFileinfoText"></label>
29 <input id="log-timedetail" type="checkbox">
30 <label for="log-timedetail" i18n-content="logLevelTimeDetailText"></label>
31 </div> 27 </div>
32 <div id="network-log-container"> 28
33 </div> 29 <h3 i18n-content="visibleNetworksLabel"></h3>
34 <div id="advanced-options">
35 <span>Click '+' to get network properties of type: </span>
36 <select id="get-network-type">
37 <option id="normal" selected>ONC</option>
38 <option id="managed">Managed ONC</option>
39 <option id="shill">Shill</option>
40 </select>
41 </div>
42 <h3>Visible Networks: </h3>
43 <table id="network-state-table" class="state-table"> 30 <table id="network-state-table" class="state-table">
44 <tr class="state-table-header"> 31 <tr class="state-table-header">
45 <td></td> 32 <td></td>
46 <td>GUID</td> 33 <td>GUID</td>
47 <td>Path</td> 34 <td>Path</td>
48 <td>Name</td> 35 <td>Name</td>
49 <td>Type</td> 36 <td>Type</td>
50 <td>State</td> 37 <td>State</td>
51 <td>Connect?</td> 38 <td>Connect?</td>
52 <td>Error</td> 39 <td>Error</td>
53 <td>Security</td> 40 <td>Security</td>
54 <td>Tech</td> 41 <td>Tech</td>
55 <td>Activation</td> 42 <td>Activation</td>
56 <td>Roam</td> 43 <td>Roam</td>
57 <td>OOC</td> 44 <td>OOC</td>
58 <td>Strength</td> 45 <td>Strength</td>
59 </tr> 46 </tr>
60 </table> 47 </table>
61 <h3>Favorites: </h3> 48
49 <h3 i18n-content="favoriteNetworksLabel"></h3>
62 <table id="favorite-state-table" class="state-table"> 50 <table id="favorite-state-table" class="state-table">
63 <tr class="state-table-header"> 51 <tr class="state-table-header">
64 <td></td> 52 <td></td>
65 <td>GUID</td> 53 <td>GUID</td>
66 <td>Path</td> 54 <td>Path</td>
67 <td>Name</td> 55 <td>Name</td>
68 <td>Type</td> 56 <td>Type</td>
69 <td>Profile</td> 57 <td>Profile</td>
70 <td>Visible</td> 58 <td>Visible</td>
71 <td>ONC Source</td> 59 <td>ONC Source</td>
72 </tr> 60 </tr>
73 </table> 61 </table>
62
74 <script src="chrome://resources/js/i18n_template2.js"></script> 63 <script src="chrome://resources/js/i18n_template2.js"></script>
75 </body> 64 </body>
76 </html> 65 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698