Re: SVN Behind Proxy

2008-08-13 Thread Zaki Akhmad
On Tue, Aug 12, 2008 at 8:49 PM, Eugene V. Lyubimkin
<[EMAIL PROTECTED]> wrote:

Thank you Eugene, Gregory and Nelson.

It works now.

I add my proxy configuration on /etc/subversion/servers on the global section

# vim /etc/subersion/servers
http-proxy-host = *.*.22.105
http-proxy-port = 8080
http-proxy-username = username
http-proxy-password = password
http-compression = no
http-auth-types = basic,digest;negotiate

-- 
Zaki Akhmad


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Re: SVN Behind Proxy

2008-08-12 Thread Eugene V. Lyubimkin
Gregory Seidman wrote:
> On Tue, Aug 12, 2008 at 01:12:35PM +0700, Zaki Akhmad wrote:
>> I am trying to get some source code with SVN. My access to Internet is
>> behind proxy. How do I set the SVN (I use subversion package) so that
>> I can access the source code?
>>
>> Here's the command I should write (example)
>> $ svn checkout http://blabla.googlecode.com/svn/trunk/ blabla-read-only
> 
> Most commandline apps that can use an HTTP proxy read the http_proxy
> environment variable. If you are using a bash-like shell, try:
> 
> export http_proxy=http://my-proxy-server.com:8080/
> svn checkout http://blabla.googlecode.com/svn/trunk/ blabla-read-only
> 
> This assumes that your proxy is running on port 8080 of
> my-proxy-server.com; modify appropriately. I'm not 100% certain svn
> supports HTTP proxies, but if it does then this is likely how to specify
> it.
Subversion support HTTP proxies, but not via http_proxy, but via 
/etc/subversion/servers file.

-- 
Eugene V. Lyubimkin aka JackYF, Ukrainian C++ developer.



signature.asc
Description: OpenPGP digital signature


Re: SVN Behind Proxy

2008-08-12 Thread Nelson Castillo
On Tue, Aug 12, 2008 at 1:12 AM, Zaki Akhmad <[EMAIL PROTECTED]> wrote:
> Hi All,
>
> I am trying to get some source code with SVN. My access to Internet is
> behind proxy. How do I set the SVN (I use subversion package) so that
> I can access the source code?

Hi.

Please check the file  "~/.subversion/servers". It has some nice
comments. You can define a proxy for all projects or for specific
ones.

Regards,
Nelson.-

-- 
http://arhuaco.org


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Re: SVN Behind Proxy

2008-08-12 Thread Gregory Seidman
On Tue, Aug 12, 2008 at 01:12:35PM +0700, Zaki Akhmad wrote:
> I am trying to get some source code with SVN. My access to Internet is
> behind proxy. How do I set the SVN (I use subversion package) so that
> I can access the source code?
> 
> Here's the command I should write (example)
> $ svn checkout http://blabla.googlecode.com/svn/trunk/ blabla-read-only

Most commandline apps that can use an HTTP proxy read the http_proxy
environment variable. If you are using a bash-like shell, try:

export http_proxy=http://my-proxy-server.com:8080/
svn checkout http://blabla.googlecode.com/svn/trunk/ blabla-read-only

This assumes that your proxy is running on port 8080 of
my-proxy-server.com; modify appropriately. I'm not 100% certain svn
supports HTTP proxies, but if it does then this is likely how to specify
it.

> Zaki Akhmad
--Greg


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



SVN Behind Proxy

2008-08-11 Thread Zaki Akhmad
Hi All,

I am trying to get some source code with SVN. My access to Internet is
behind proxy. How do I set the SVN (I use subversion package) so that
I can access the source code?

Here's the command I should write (example)
$ svn checkout http://blabla.googlecode.com/svn/trunk/ blabla-read-only

-- 
Zaki Akhmad


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]