OLD | NEW |
1 <!doctype html> | 1 <!doctype html> |
2 <html i18n-values="dir:textdirection;lang:language"> | 2 <html i18n-values="dir:textdirection;lang:language"> |
| 3 |
3 <head> | 4 <head> |
4 <meta charset="utf-8"> | 5 <meta charset="utf-8"> |
5 <title id="network" i18n-content="titleText"></title> | 6 <title id="network" i18n-content="titleText"></title> |
6 <link rel="stylesheet" href="chrome://resources/css/text_defaults.css"> | 7 <link rel="stylesheet" href="chrome://resources/css/text_defaults.css"> |
7 <link rel="stylesheet" href="chrome://network/network_ui.css"> | 8 <link rel="stylesheet" href="chrome://network/network_ui.css"> |
| 9 <link rel="import" |
| 10 href="chrome://resources/polymer/paper-button/paper-button.html"> |
| 11 <link rel="import" |
| 12 href="chrome://resources/cr_elements/cr_onc/cr_onc_data.html"> |
| 13 <link rel="import" |
| 14 href="chrome://resources/cr_elements/cr_network_icon/cr_network_icon.html"
> |
| 15 |
8 <script src="chrome://resources/js/load_time_data.js"></script> | 16 <script src="chrome://resources/js/load_time_data.js"></script> |
9 <script src="chrome://resources/js/util.js"></script> | 17 <script src="chrome://resources/js/util.js"></script> |
10 <script src="chrome://network/strings.js"></script> | 18 <script src="chrome://network/strings.js"></script> |
11 <script src="chrome://network/network_ui.js"></script> | 19 <script src="chrome://network/network_ui.js"></script> |
12 </head> | 20 </head> |
| 21 |
13 <body> | 22 <body> |
14 <div id="header"> | 23 <div id="header"> |
15 <p i18n-content="autoRefreshText"></p> | 24 <p i18n-content="autoRefreshText"></p> |
16 <span i18n-values=".innerHTML:deviceLogLinkText"></span> | 25 <span i18n-values=".innerHTML:deviceLogLinkText"></span> |
17 <div id="advanced-options"> | 26 <div id="advanced-options"> |
18 <span i18n-content="clickToExpandText"></span> | 27 <span i18n-content="clickToExpandText"></span> |
19 <span i18n-content="propertyFormatText"></span> | 28 <span i18n-content="propertyFormatText"></span> |
20 <select id="get-property-format"> | 29 <select id="get-property-format"> |
21 <option value="normal" i18n-content="normalFormatOption"></option> | 30 <option value="normal" i18n-content="normalFormatOption"></option> |
22 <option value="managed" i18n-content="managedFormatOption"></option> | 31 <option value="managed" i18n-content="managedFormatOption"></option> |
23 <option value="shill" i18n-content="shillFormatOption"></option> | 32 <option value="shill" i18n-content="shillFormatOption"></option> |
24 </select> | 33 </select> |
25 </div> | 34 </div> |
26 <p><button id="refresh" i18n-content="networkRefreshText"></button></p> | 35 |
| 36 <div id="default-network"> |
| 37 <cr-network-icon id="default-network-icon"></cr-network-icon> |
| 38 <span id="default-network-text"></span> |
| 39 </div> |
| 40 |
| 41 <div> |
| 42 <paper-button raised class="colored" id="refresh" |
| 43 i18n-content="networkRefreshText"> |
| 44 </paper-button> |
| 45 </div> |
27 </div> | 46 </div> |
28 | 47 |
29 <h3 i18n-content="visibleNetworksLabel"></h3> | 48 <h3 i18n-content="visibleNetworksLabel"></h3> |
30 <table id="network-state-table" class="state-table"> | 49 <table id="network-state-table" class="state-table"> |
31 <tr class="state-table-header"> | 50 <tr class="state-table-header"> |
32 <td></td> | 51 <td></td> |
| 52 <td></td> |
33 <td>GUID</td> | 53 <td>GUID</td> |
34 <td>Path</td> | 54 <td>Path</td> |
35 <td>Name</td> | 55 <td>Name</td> |
36 <td>Type</td> | 56 <td>Type</td> |
37 <td>State</td> | 57 <td>State</td> |
38 <td>Connect?</td> | 58 <td>Connect?</td> |
39 <td>Error</td> | 59 <td>Error</td> |
40 <td>Security</td> | 60 <td>Security</td> |
41 <td>Tech</td> | 61 <td>Tech</td> |
42 <td>Activation</td> | 62 <td>Activation</td> |
43 <td>Roam</td> | 63 <td>Roam</td> |
44 <td>OOC</td> | 64 <td>OOC</td> |
45 <td>Strength</td> | 65 <td>Strength</td> |
46 </tr> | 66 </tr> |
47 </table> | 67 </table> |
48 | 68 |
49 <h3 i18n-content="favoriteNetworksLabel"></h3> | 69 <h3 i18n-content="favoriteNetworksLabel"></h3> |
50 <table id="favorite-state-table" class="state-table"> | 70 <table id="favorite-state-table" class="state-table"> |
51 <tr class="state-table-header"> | 71 <tr class="state-table-header"> |
52 <td></td> | 72 <td></td> |
| 73 <td></td> |
53 <td>GUID</td> | 74 <td>GUID</td> |
54 <td>Path</td> | 75 <td>Path</td> |
55 <td>Name</td> | 76 <td>Name</td> |
56 <td>Type</td> | 77 <td>Type</td> |
57 <td>Profile</td> | 78 <td>Profile</td> |
58 <td>Visible</td> | 79 <td>Visible</td> |
59 <td>ONC Source</td> | 80 <td>ONC Source</td> |
60 </tr> | 81 </tr> |
61 </table> | 82 </table> |
62 | 83 |
63 <script src="chrome://resources/js/i18n_template2.js"></script> | 84 <script src="chrome://resources/js/i18n_template2.js"></script> |
64 </body> | 85 </body> |
65 </html> | 86 </html> |
OLD | NEW |