Changeset 4989
- Timestamp:
- Jul 2, 2021 5:06:54 PM (19 months ago)
- Location:
- trunk
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/GSASIIdataGUI.py
r4987 r4989 2360 2360 %t% --config-option servers:global:http-proxy-port=*port* 2361 2361 %% 2362 where *host* will be a network name (proxy.subnet.org) or 2363 IP address (102.3.123.23) and *port* will be a port number 2364 (integer such as 80, 8080, etc) or will be blank. 2365 %% 2362 2366 Additional subversion command line options can be supplied here 2363 by pressing the '+' button. As examples of options that might be of 2367 by pressing the '+' button. Two lines are needed for each option 2368 where the first svn option name (starting with two dashes) and 2369 the second line will be the value. 2370 As examples of options that might be of 2364 2371 value, use two extra lines to add: 2365 2372 %t% --config-dir … … 2374 2381 %t% servers:global:http-proxy-password=*password* 2375 2382 %% 2376 to specify a proxy user name and password. 2383 to specify a proxy user name (*account*) and password (*password*). 2384 Note that this information will be stored in a plain-text file. 2377 2385 %% 2378 Note that strings marked *value* are items that will be configured 2379 by the user. See http://svnbook.red-bean.com for more information on 2380 subversion. 2386 See http://svnbook.red-bean.com for more information on subversion. 2381 2387 ''' 2382 2388 dlg = G2G.MultiStringDialog(self,'Enter proxy values', -
trunk/GSASIIpath.py
r4987 r4989 212 212 pl = proxy.split(':') 213 213 if len(pl) < 2: continue 214 host = ':'.join(pl[0:2])214 host = pl[1] 215 215 port = '' 216 216 if len(pl) == 3:
Note: See TracChangeset
for help on using the changeset viewer.