Re: post-reviews: The requested URL could not be retrieved

2011-06-24 Thread Leonel Togniolli
Hmm, let me try to start over. There's a file called .reviewboardrc that can be created, on windows I put it on %APPDATA% folder. It's meant for post-review settings. There's some info about it here: http://www.reviewboard.org/docs/manual/dev/users/tools/post-review/#reviewboardrc It is a

Re: post-reviews: The requested URL could not be retrieved

2011-06-22 Thread Leonel Togniolli
It's not. It's an optional file that you can create and add settings. It's parsed as a python file so that's why my workaround works. On Tue, Jun 21, 2011 at 8:36 PM, ptrchen ptrc...@gmail.com wrote: Looking at my %appdata% folder... Does .reviewboardrc get automatically installed? I don't see

Re: post-reviews: The requested URL could not be retrieved

2011-06-22 Thread ptrchen
How do I get parsed as a Python file? Got a link or instructions? Thanks! On Jun 22, 2:55 pm, Leonel Togniolli tognio...@gmail.com wrote: It's not. It's an optional file that you can create and add settings. It's parsed as a python file so that's why my workaround works. On Tue, Jun 21, 2011

Re: post-reviews: The requested URL could not be retrieved

2011-06-21 Thread ptrchen
Hi Leonel, Thanks for the reply, but where may I find .reviewboardrc? Thanks! Peter On Jun 20, 4:42 am, Leonel Togniolli tognio...@gmail.com wrote: Hi ptrchen, I worked around this issue by adding two lines to .reviewboardrc import os os.environ[no_proxy] = * On Fri, Jun 17, 2011 at

Re: post-reviews: The requested URL could not be retrieved

2011-06-21 Thread Leonel Togniolli
http://www.reviewboard.org/docs/manual/dev/users/tools/post-review/#reviewboardrc On windows, I have it on each user's %appdata% folder. On Tue, Jun 21, 2011 at 4:20 PM, ptrchen ptrc...@gmail.com wrote: Hi Leonel, Thanks for the reply, but where may I find .reviewboardrc? Thanks! Peter

Re: post-reviews: The requested URL could not be retrieved

2011-06-21 Thread ptrchen
Looking at my %appdata% folder... Does .reviewboardrc get automatically installed? I don't see it in my %appdata% folder. Thanks! Peter On Jun 21, 12:42 pm, Leonel Togniolli tognio...@gmail.com wrote: http://www.reviewboard.org/docs/manual/dev/users/tools/post-review/#r... On windows, I

Re: post-reviews: The requested URL could not be retrieved

2011-06-20 Thread Leonel Togniolli
Hi ptrchen, I worked around this issue by adding two lines to .reviewboardrc import os os.environ[no_proxy] = * On Fri, Jun 17, 2011 at 7:48 PM, ptrchen ptrc...@gmail.com wrote: Hi Christian, I think this page suggestions that should address my issues, correct?

Re: post-reviews: The requested URL could not be retrieved

2011-06-17 Thread ptrchen
Hi Christian, I think this page suggestions that should address my issues, correct? http://groups.google.com/group/reviewboard/browse_thread/thread/69e334db357f183e/955e8ebd634d0a94?lnk=gstq=proxy+post-review#955e8ebd634d0a94 On Jun 10, 4:54 pm, ptrchen ptrc...@gmail.com wrote: Sorry

Re: post-reviews: The requested URL could not be retrieved

2011-06-17 Thread Christian Hammond
It should, yes. I think after some restructuring work is finished in post-review, we'll go about making this a bit easier to deal with. Christian -- Christian Hammond - chip...@chipx86.com Review Board - http://www.reviewboard.org VMware, Inc. - http://www.vmware.com On Fri, Jun 17, 2011 at

Re: post-reviews: The requested URL could not be retrieved

2011-06-10 Thread Tucker
You appear to have a DNS problem: Unable to determine IP address from host name for server_name. What does nslookup server_name say? On Thu, Jun 9, 2011 at 7:12 PM, ptrchen ptrc...@gmail.com wrote: Hi, We've been trying to run post-review but have been running into a requested URL could not

Re: post-reviews: The requested URL could not be retrieved

2011-06-10 Thread ptrchen
Hi Tucker, Thanks for the reply. I ran nslookup server_name from both server_name (XP server) and from a sparc-solaris2.10 machine. Both return Name: server_name.domain Address: ip_address On Jun 10, 11:15 am, Tucker j...@gmail.com wrote: You appear to have a DNS problem: Unable to

Re: post-reviews: The requested URL could not be retrieved

2011-06-10 Thread Christian Hammond
Are you using a full server path starting with http:// ? Are you behind a proxy server? Christian On Friday, June 10, 2011, ptrchen ptrc...@gmail.com wrote: Hi Tucker, Thanks for the reply. I ran nslookup server_name from both server_name (XP server) and from a sparc-solaris2.10 machine.

Re: post-reviews: The requested URL could not be retrieved

2011-06-10 Thread ptrchen
Yes, I am using the full server path name with http:// We do have a proxy server, but both the requester and target are within the proxy server. On Jun 10, 11:29 am, Christian Hammond chip...@chipx86.com wrote: Are you using a full server path starting with http:// ? Are you behind a proxy

Re: post-reviews: The requested URL could not be retrieved

2011-06-10 Thread Tucker
Does the error actually only list the hostname and not the fully qualified name? If so, that may be part of your problem (throwing out guesses). Have you tried using the fully qualified name? On Fri, Jun 10, 2011 at 11:22 AM, ptrchen ptrc...@gmail.com wrote: Hi Tucker, Thanks for the reply.

Re: post-reviews: The requested URL could not be retrieved

2011-06-10 Thread ptrchen
Sorry for not listing all the output, but company policy prohibits me from doing that. Yes, the error lists the hostname and FQDN Also, we do give it the FQDN following the --server option On Jun 10, 2:56 pm, Tucker j...@gmail.com wrote: Does the error actually only list the hostname and not

Re: post-reviews: The requested URL could not be retrieved

2011-06-10 Thread Christian Hammond
We've seen people run into this sort of error with proxy servers. Regardless of your client-side proxy server configuration (say, in your Internet settings, on Windows), it may still use the proxy server on post-review. The error output looks very much like it came from a proxy server, meaning

Re: post-reviews: The requested URL could not be retrieved

2011-06-10 Thread ptrchen
Ah, so would setting the environment variable in the command prompt window do the trick? On Jun 10, 4:32 pm, Christian Hammond chip...@chipx86.com wrote: We've seen people run into this sort of error with proxy servers. Regardless of your client-side proxy server configuration (say, in your

Re: post-reviews: The requested URL could not be retrieved

2011-06-10 Thread Christian Hammond
I know at least on Linux, the http_proxy variable is respected. I don't know about on Windows. A common problem on Linux is that people will have that set, in order for other things to work correctly, and then post-review will pick it up. Some people use an alias or wrapper so that doesn't happen.

Re: post-reviews: The requested URL could not be retrieved

2011-06-10 Thread ptrchen
Sorry Chrisitan, never mind, I misread your post. I'll do some more digging for overriding the proxy configuration On Jun 10, 4:51 pm, ptrchen ptrc...@gmail.com wrote: Ah, so would setting the environment variable in the command prompt window do the trick? On Jun 10, 4:32 pm, Christian

post-reviews: The requested URL could not be retrieved

2011-06-09 Thread ptrchen
Hi, We've been trying to run post-review but have been running into a requested URL could not be retrieved error We're running: ReviewBoard 1.5.5 on Windows XP Python 2.5.x Apache 2.2.x Subversion 1.6.16, running on a sparc-solaris2.10 Here is the output after adding the --debug option: