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

Side by Side Diff: chrome/browser/resources/options/chromeos/proxy.html

Issue 9814030: get rid of old options pages (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: more fixes Created 8 years, 9 months 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 | Annotate | Revision Log
OLDNEW
(Empty)
1 <div id="proxyPage" class="page vbox" hidden>
2 <div id="info-banner" class="managed-prefs-banner" hidden>
3 <span id="banner-icon" class="managed-prefs-icon"></span>
4 <span id="banner-text" class="managed-prefs-text"></span>
5 </div>
6 <h1 id="proxy-page-title" i18n-content="proxyPage"></h1>
7 <section>
8 <h3 i18n-content="proxy_config_title"></h3>
9 <div>
10 <div class="radio">
11 <label>
12 <input id="directProxy" type="radio" name="proxytype" value="1"
13 pref="cros.session.proxy.type">
14 <span i18n-content="proxyDirectInternetConnection"></span>
15 </label>
16 </div>
17 <div class="radio">
18 <label>
19 <input id="manualProxy" type="radio" name="proxytype" value="2"
20 pref="cros.session.proxy.type">
21 <span i18n-content="proxyManual"></span>
22 </label>
23 </div>
24 <div class="checkbox">
25 <label>
26 <input id="proxyAllProtocols" type="checkbox"
27 pref="cros.session.proxy.single">
28 <span i18n-content="sameProxyProtocols"></span>
29 </label>
30 </div>
31 <div id="singleProxy">
32 <table>
33 <tr>
34 <td>
35 <span i18n-content="httpProxy"></span>
36 <input id="proxyHostSingleName" type="text" size="30"
37 pref="cros.session.proxy.singlehttp" disabled>
38 </td>
39 <td>
40 <span i18n-content="proxyPort"></span>
41 <input id="proxyHostSinglePort" type="text" data-type="number"
42 size="5" pref="cros.session.proxy.singlehttpport" disabled>
43 </td>
44 </tr>
45 </table>
46 </div>
47 <div id="multiProxy">
48 <table>
49 <tr>
50 <td>
51 <span i18n-content="httpProxy"></span>
52 </td>
53 <td>
54 <input id="proxyHostName" type="text" size="30"
55 pref="cros.session.proxy.httpurl" disabled>
56 </td>
57 <td>
58 <span i18n-content="proxyPort"></span>
59 </td>
60 <td>
61 <input id="proxyHostPort" type="text" data-type="number" size="5"
62 pref="cros.session.proxy.httpport" disabled>
63 </td>
64 </tr>
65 <tr>
66 <td>
67 <span i18n-content="secureHttpProxy"></span>
68 </td>
69 <td>
70 <input id="secureProxyHostName" type="text" size="30"
71 pref="cros.session.proxy.httpsurl" disabled>
72 </td>
73 <td>
74 <span i18n-content="proxyPort"></span>
75 </td>
76 <td>
77 <input id="secureProxyPort" type="text" data-type="number" size="5 "
78 pref="cros.session.proxy.httpsport" disabled>
79 </td>
80 </tr>
81 <tr>
82 <td>
83 <span i18n-content="ftpProxy"></span>
84 </td>
85 <td>
86 <input id="ftpProxy" type="text" size="30"
87 pref="cros.session.proxy.ftpurl" disabled>
88 </td>
89 <td>
90 <span i18n-content="proxyPort"></span>
91 </td>
92 <td>
93 <input id="ftpProxyPort" type="text" data-type="number" size="5"
94 pref="cros.session.proxy.ftpport" disabled>
95 </td>
96 </tr>
97 <tr>
98 <td>
99 <span i18n-content="socksHost"></span>
100 </td>
101 <td>
102 <input id="socksHost" type="text" size="30"
103 pref="cros.session.proxy.socks" disabled>
104 </td>
105 <td>
106 <span i18n-content="proxyPort"></span>
107 </td>
108 <td>
109 <input id="socksPort" type="text" data-type="number" size="5"
110 pref="cros.session.proxy.socksport" disabled>
111 </td>
112 </tr>
113 </table>
114 </div>
115 <div class="radio">
116 <label>
117 <input id="autoProxy" type="radio" name="proxytype" value="3"
118 pref="cros.session.proxy.type">
119 <span i18n-content="proxyAutomatic"></span>
120 </label>
121 </div>
122 <div>
123 <label>
124 <span i18n-content="proxyConfigUrl"></span>
125 <input id="proxyConfig" type="url" size="60"
126 pref="cros.session.proxy.pacurl">
127 </label>
128 </div>
129 </div>
130 </section>
131 <section id="advancedConfig" class="vbox stretch">
132 <h3 i18n-content="advanced_proxy_config"></h3>
133 <div class="option vbox flex">
134 <div i18n-content="proxyBypass"></div>
135 <list id="ignoredHostList" class="stretch"></list>
136 <input id="newHost" type="url" size="30">
137 <button id="addHost" i18n-content="addHost"></button>
138 <button id="removeHost" i18n-content="removeHost"></button>
139 </div>
140 </section>
141 </div>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698