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

Side by Side Diff: chrome/app/resources/manpage.1.in

Issue 3388021: Change the meaning of the command-line flag --proxy-server="socks://foo" to i... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 10 years, 2 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
« no previous file with comments | « no previous file | net/proxy/proxy_config_service_win_unittest.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 ." This file is processed by chrome.gyp to generate manpages in the 1 ." This file is processed by chrome.gyp to generate manpages in the
2 ." build diretory. 2 ." build diretory.
3 .TH @@FILENAME@@ 1 "" "" "USER COMMANDS" 3 .TH @@FILENAME@@ 1 "" "" "USER COMMANDS"
4 4
5 .SH NAME 5 .SH NAME
6 @@FILENAME@@ \- the web browser from Google 6 @@FILENAME@@ \- the web browser from Google
7 7
8 .SH SYNOPSIS 8 .SH SYNOPSIS
9 .B @@FILENAME@@ 9 .B @@FILENAME@@
10 [\fIOPTION\fR] [\fIPATH\fR|\fIURL\fR] 10 [\fIOPTION\fR] [\fIPATH\fR|\fIURL\fR]
(...skipping 30 matching lines...) Expand all
41 overrides any environment variables or settings picked via the options dialog. 41 overrides any environment variables or settings picked via the options dialog.
42 An individual proxy server is specified using the format: 42 An individual proxy server is specified using the format:
43 43
44 [<proxy-scheme>://]<proxy-host>[:<proxy-port>] 44 [<proxy-scheme>://]<proxy-host>[:<proxy-port>]
45 45
46 Where <proxy-scheme> is the protocol of the proxy server, and is one of: 46 Where <proxy-scheme> is the protocol of the proxy server, and is one of:
47 47
48 "http", "socks", "socks4", "socks5". 48 "http", "socks", "socks4", "socks5".
49 49
50 If the <proxy-scheme> is omitted, it defaults to "http". Also note that 50 If the <proxy-scheme> is omitted, it defaults to "http". Also note that
51 "socks" is equivlent to "socks4". 51 "socks" is equivlent to "socks5".
52 52
53 Examples: 53 Examples:
54 54
55 --proxy-server="foopy:99" 55 --proxy-server="foopy:99"
56 Use the HTTP proxy "foopy:99" to load all URLs. 56 Use the HTTP proxy "foopy:99" to load all URLs.
57 57
58 --proxy-server="socks://foobar:1080"
59 Use the SOCKS v5 proxy "foobar:1080" to load all URLs.
60
61 --proxy-server="sock4://foobar:1080"
62 Use the SOCKS v4 proxy "foobar:1080" to load all URLs.
63
58 --proxy-server="socks5://foobar:66" 64 --proxy-server="socks5://foobar:66"
59 Use the SOCKS v5 proxy "foobar:66" to load all URLs. 65 Use the SOCKS v5 proxy "foobar:66" to load all URLs.
60 66
61 --proxy-server="socks://foobar:1080"
62 Use the SOCKS v4 proxy "foobar:1080" to load all URLs.
63
64 It is also possible to specify a separate proxy server for different URL types, 67 It is also possible to specify a separate proxy server for different URL types,
65 by prefixing the proxy server specifier with a URL specifier: 68 by prefixing the proxy server specifier with a URL specifier:
66 69
67 Example: 70 Example:
68 71
69 --proxy-server="https=proxy1:80;http=socks4://baz:1080" 72 --proxy-server="https=proxy1:80;http=socks4://baz:1080"
70 Load https://* URLs using the HTTP proxy "proxy1:80". And load http://* 73 Load https://* URLs using the HTTP proxy "proxy1:80". And load http://*
71 URLs using the SOCKS v4 proxy "baz:1080". 74 URLs using the SOCKS v4 proxy "baz:1080".
72 75
73 .TP 76 .TP
(...skipping 69 matching lines...) Expand 10 before | Expand all | Expand 10 after
143 .SH BUGS 146 .SH BUGS
144 Bug tracker: 147 Bug tracker:
145 .IP 148 .IP
146 http://code.google.com/p/chromium/issues/list 149 http://code.google.com/p/chromium/issues/list
147 .PP 150 .PP
148 Be sure to do your search within "All Issues" before reporting bugs, 151 Be sure to do your search within "All Issues" before reporting bugs,
149 and be sure to pick the "Defect on Linux" template when filing a new one. 152 and be sure to pick the "Defect on Linux" template when filing a new one.
150 153
151 .SH AUTHOR 154 .SH AUTHOR
152 The Chromium team \- <http://www.chromium.org> 155 The Chromium team \- <http://www.chromium.org>
OLDNEW
« no previous file with comments | « no previous file | net/proxy/proxy_config_service_win_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698