Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
D
django-rest-framework
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
edx
django-rest-framework
Commits
5541f0af
Commit
5541f0af
authored
Oct 31, 2011
by
Meurig Freeman
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
make use of original prefix when generating absolute urls
parent
2caf879f
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
2 deletions
+5
-2
djangorestframework/views.py
+5
-2
No files found.
djangorestframework/views.py
View file @
5541f0af
...
...
@@ -5,7 +5,7 @@ be subclassing in your implementation.
By setting or modifying class attributes on your view, you change it's predefined behaviour.
"""
from
django.core.urlresolvers
import
set_script_prefix
from
django.core.urlresolvers
import
set_script_prefix
,
get_script_prefix
from
django.http
import
HttpResponse
from
django.views.decorators.csrf
import
csrf_exempt
...
...
@@ -113,8 +113,9 @@ class View(ResourceMixin, RequestMixin, ResponseMixin, AuthMixin, DjangoView):
self
.
headers
=
{}
# Calls to 'reverse' will not be fully qualified unless we set the scheme/host/port here.
orig_prefix
=
get_script_prefix
()
prefix
=
'
%
s://
%
s'
%
(
request
.
is_secure
()
and
'https'
or
'http'
,
request
.
get_host
())
set_script_prefix
(
prefix
)
set_script_prefix
(
prefix
+
orig_prefix
)
try
:
self
.
initial
(
request
,
*
args
,
**
kwargs
)
...
...
@@ -156,6 +157,8 @@ class View(ResourceMixin, RequestMixin, ResponseMixin, AuthMixin, DjangoView):
# merge with headers possibly set at some point in the view
response
.
headers
.
update
(
self
.
headers
)
set_script_prefix
(
orig_prefix
)
return
self
.
render
(
response
)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment