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

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: Feedback, localize network_ui 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>
xiyuan 2014/12/11 20:14:32 nit: remove the space after ":". :p
stevenjb 2014/12/11 20:53:14 I copied your example :P done.
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"></select>
21 <input id="log-user" type="checkbox"> 21 </div>
22 <label for="log-user" i18n-content="logLevelUserText"></label> 22 <p><button id="refresh" i18n-content="networkRefreshText"></button></p>
23 <input id="log-event" type="checkbox">
24 <label for="log-event" i18n-content="logLevelEventText"></label>
25 <input id="log-debug" type="checkbox">
26 <label for="log-debug" i18n-content="logLevelDebugText"></label>
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> 23 </div>
32 <div id="network-log-container"> 24
33 </div>
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> 25 <h3>Visible Networks: </h3>
xiyuan 2014/12/11 20:14:32 nit: localize this
stevenjb 2014/12/11 20:53:14 Done.
43 <table id="network-state-table" class="state-table"> 26 <table id="network-state-table" class="state-table">
44 <tr class="state-table-header"> 27 <tr class="state-table-header">
45 <td></td> 28 <td></td>
46 <td>GUID</td> 29 <td>GUID</td>
47 <td>Path</td> 30 <td>Path</td>
48 <td>Name</td> 31 <td>Name</td>
49 <td>Type</td> 32 <td>Type</td>
50 <td>State</td> 33 <td>State</td>
51 <td>Connect?</td> 34 <td>Connect?</td>
52 <td>Error</td> 35 <td>Error</td>
53 <td>Security</td> 36 <td>Security</td>
54 <td>Tech</td> 37 <td>Tech</td>
55 <td>Activation</td> 38 <td>Activation</td>
56 <td>Roam</td> 39 <td>Roam</td>
57 <td>OOC</td> 40 <td>OOC</td>
58 <td>Strength</td> 41 <td>Strength</td>
59 </tr> 42 </tr>
60 </table> 43 </table>
44
61 <h3>Favorites: </h3> 45 <h3>Favorites: </h3>
xiyuan 2014/12/11 20:14:31 nit: and this.
stevenjb 2014/12/11 20:53:14 Done.
62 <table id="favorite-state-table" class="state-table"> 46 <table id="favorite-state-table" class="state-table">
63 <tr class="state-table-header"> 47 <tr class="state-table-header">
64 <td></td> 48 <td></td>
65 <td>GUID</td> 49 <td>GUID</td>
66 <td>Path</td> 50 <td>Path</td>
67 <td>Name</td> 51 <td>Name</td>
68 <td>Type</td> 52 <td>Type</td>
69 <td>Profile</td> 53 <td>Profile</td>
70 <td>Visible</td> 54 <td>Visible</td>
71 <td>ONC Source</td> 55 <td>ONC Source</td>
72 </tr> 56 </tr>
73 </table> 57 </table>
58
74 <script src="chrome://resources/js/i18n_template2.js"></script> 59 <script src="chrome://resources/js/i18n_template2.js"></script>
75 </body> 60 </body>
76 </html> 61 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698