summaryrefslogtreecommitdiffstats
path: root/chrome/browser/resources/options/chromeos_proxy.html
blob: 4c0afba391c63f3a2adf354a3a34fef8ca6e44be (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
<div class="page hidden" id="proxyPage">
  <h1 i18n-content="proxyPage"></h1>
  <section>
    <h3 i18n-content="proxy_config_title"></h3>
    <div>
      <label><input type="radio" id="directProxy" name="proxytype" 
          pref="cros.proxy.type" value="1"><span
          i18n-content="proxyDirectInternetConnection"></span>
      </label>
      <label><input type="radio" id="manualProxy" name="proxytype"
          pref="cros.proxy.type" value="2"><span
          i18n-content="proxyManual"></span></label>
      <label><input id="proxyAllProtocols"
          type="checkbox" pref="cros.proxy.single"><span
          i18n-content="sameProxyProtocols"></span></label>
      <div id="singleProxy">
        <table>
        <tr><td><span
            i18n-content="httpProxy"></span>
          <input id="proxyHostSingleName" type="text" size="30" pref="cros.proxy.singlehttp" disabled>
          </td><td>
          <span
            i18n-content="proxyPort"></span>
          <input id="proxyHostSinglePort" type="text" size="5" pref="cros.proxy.singlehttpport" disabled>
          </td></tr>
        </table>
      </div>
      <div id="multiProxy">
        <table>
        <tr>
        <td><span
            i18n-content="httpProxy"></span></td><td>
          <input id="proxyHostName" type="text" size="30" pref="cros.proxy.httpurl" disabled>
        </td><td>
        <span
          i18n-content="proxyPort"></span></td><td>
        <input id="proxyHostPort" type="text" size="5" pref="cros.proxy.httpport" disabled>
        </td></tr>
        <tr>
        <td><span
          i18n-content="secureHttpProxy"></span></td><td>
        <input id="secureProxyHostName" type="text" size="30" pref="cros.proxy.httpsurl" disabled>
        </td><td>
        <span
          i18n-content="proxyPort"></span></td><td>
        <input id="secureProxyPort" type="text" size="5" pref="cros.proxy.httpsport" disabled>
        </td></tr>
        <tr>    
        <td><span
            i18n-content="ftpProxy"></span></td><td>
          <input id="ftpProxy" type="text" size="30" pref="cros.proxy.ftpurl" disabled>
          </td><td>
          <span
            i18n-content="proxyPort"></span></td><td>
          <input id="ftpProxyPort" type="text" size="5" pref="cros.proxy.ftpport" disabled>
        </td></tr>
        <tr>
        <td><span
            i18n-content="socksHost"></span></td><td>
          <input id="socksHost" type="text" size="30" pref="cros.proxy.socks" disabled>
          </td><td>
          <span
            i18n-content="proxyPort"></span></td><td>
          <input id="socksPort" type="text" size="5" pref="cros.proxy.socksport" disabled>
        </td></tr>
        </table>
      </div>
      <label><input type="radio" id="autoProxy" name="proxytype"
            pref="cros.proxy.type" value="3"><span
          i18n-content="proxyAutomatic"></span></label>
      <label><span
          i18n-content="proxyConfigUrl"></span>
        <input id="proxyConfig" type="url" size="60" pref="cros.proxy.pacurl">
      </label>
    </div>
  </section>
  <section id="advancedConfig">
    <h3 i18n-content="advanced_proxy_config"></h3>
    <div class="option">
         <list id="ignoredHostList"></list>
       <br>
       <input id="newHost" type="url" size="30"><br>
       <button id="addHost"
               i18n-content="addHost"></button>
       <button id="removeHost"
               i18n-content="removeHost"></button>
    </div>
  </section>
</div>