File tree 1 file changed +7
-2
lines changed
1 file changed +7
-2
lines changed Original file line number Diff line number Diff line change 6
6
import tempfile
7
7
import pwd
8
8
from textwrap import dedent
9
- from urllib .parse import urlparse , urlunparse
9
+ from urllib .parse import urlparse , urlunparse , urljoin
10
10
11
11
12
12
def get_rstudio_executable (prog ):
@@ -40,8 +40,13 @@ def rewrite_netloc(response, request):
40
40
for header , v in response .headers .get_all ():
41
41
if header == "Location" :
42
42
u = urlparse (v )
43
+ redirect_path = u .path
44
+ if u .path .startswith ("../" ):
45
+ # R Help server sometimes responds with relative locations which
46
+ # need to be handled if changing the host part of the header.
47
+ redirect_path = urljoin (request .path , u .path )
43
48
if u .netloc != request .host :
44
- response .headers [header ] = urlunparse (u ._replace (netloc = request .host ))
49
+ response .headers [header ] = urlunparse (u ._replace (netloc = request .host , path = redirect_path ))
45
50
46
51
def get_system_user ():
47
52
try :
You can’t perform that action at this time.
0 commit comments