Reputation: 13
I have a SVN Server over internet and I want to access it from my work where there's a proxy. With TortoiseSVN I just configure the Proxy Settings. Can I Configure Proxy for Delphi XE SVN Plugin ??
Upvotes: 1
Views: 614
Reputation: 873
In order to use Version Insight with a SVN server over a proxy you have to do this:
At the end it should look like this
[global]
http-proxy-exceptions = *.exception.com, www.internal-site.org
http-proxy-host = defaultproxy.whatever.com
http-proxy-port = 7000
http-proxy-username = defaultusername
http-proxy-password = defaultpassword
Entering the proxy information into TSVN might work too, but I have never tested this.
Upvotes: 0
Reputation: 43575
All svn clients (at least all client using the official svn library) use the same settings files. So if you've set the proxy for TSVN, you've automatically set them for your plugin as well.
Upvotes: 1