Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
E
edx-platform
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
edx-platform
Commits
7caf8c53
Commit
7caf8c53
authored
Jul 28, 2014
by
Ned Batchelder
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #4080 from Course-Master/redirect
decode uri component before redirect for safe redirect
parents
ff696a2f
01cf702a
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
38 additions
and
4 deletions
+38
-4
common/djangoapps/terrain/steps.py
+3
-1
lms/djangoapps/courseware/features/login.feature
+10
-0
lms/djangoapps/debug/views.py
+15
-1
lms/templates/login.html
+5
-1
lms/urls.py
+5
-1
No files found.
common/djangoapps/terrain/steps.py
View file @
7caf8c53
...
@@ -81,7 +81,9 @@ def click_the_link_with_the_text_group1(step, linktext):
...
@@ -81,7 +81,9 @@ def click_the_link_with_the_text_group1(step, linktext):
@step
(
'I should see that the path is "([^"]*)"$'
)
@step
(
'I should see that the path is "([^"]*)"$'
)
def
i_should_see_that_the_path_is
(
step
,
path
):
def
i_should_see_that_the_path_is
(
step
,
path
):
assert
world
.
url_equals
(
path
)
assert
world
.
url_equals
(
path
),
(
"path should be {!r} but is {!r}"
.
format
(
path
,
world
.
browser
.
url
)
)
@step
(
u'the page title should be "([^"]*)"$'
)
@step
(
u'the page title should be "([^"]*)"$'
)
...
...
lms/djangoapps/courseware/features/login.feature
View file @
7caf8c53
...
@@ -46,3 +46,13 @@ Feature: LMS.Login in as a registered user
...
@@ -46,3 +46,13 @@ Feature: LMS.Login in as a registered user
And I visit the url "/login?next=http
:
//www.google.com/"
And I visit the url "/login?next=http
:
//www.google.com/"
When
I submit my credentials on the login form
When
I submit my credentials on the login form
Then
I should be on the dashboard page
Then
I should be on the dashboard page
Scenario
:
Login with a redirect with parameters
Given
I am an edX user
And
I am not logged in
And
I visit the url
"/debug/show_parameters?foo=hello&bar=world"
And
I should see that the path is
"/accounts/login?next=/debug/show_parameters%3Ffoo%3Dhello%26bar%3Dworld"
When
I submit my credentials on the login form
And
I wait for
"2"
seconds
Then I should see "foo
:
u'hello'"
somewhere
on
the
page
And I should see "bar
:
u'world'"
somewhere
on
the
page
lms/djangoapps/debug/views.py
View file @
7caf8c53
...
@@ -3,13 +3,16 @@
...
@@ -3,13 +3,16 @@
import
pprint
import
pprint
import
traceback
import
traceback
from
django.http
import
Http404
from
django.http
import
Http404
,
HttpResponse
from
django.contrib.auth.decorators
import
login_required
from
django.contrib.auth.decorators
import
login_required
from
django.utils.html
import
escape
from
django_future.csrf
import
ensure_csrf_cookie
from
django_future.csrf
import
ensure_csrf_cookie
from
edxmako.shortcuts
import
render_to_response
from
edxmako.shortcuts
import
render_to_response
from
codejail.safe_exec
import
safe_exec
from
codejail.safe_exec
import
safe_exec
@login_required
@login_required
@ensure_csrf_cookie
@ensure_csrf_cookie
def
run_python
(
request
):
def
run_python
(
request
):
...
@@ -29,3 +32,14 @@ def run_python(request):
...
@@ -29,3 +32,14 @@ def run_python(request):
else
:
else
:
c
[
'results'
]
=
pprint
.
pformat
(
g
)
c
[
'results'
]
=
pprint
.
pformat
(
g
)
return
render_to_response
(
"debug/run_python_form.html"
,
c
)
return
render_to_response
(
"debug/run_python_form.html"
,
c
)
@login_required
def
show_parameters
(
request
):
"""A page that shows what parameters were on the URL and post."""
html
=
[]
for
name
,
value
in
sorted
(
request
.
GET
.
items
()):
html
.
append
(
escape
(
"GET {}: {!r}"
.
format
(
name
,
value
)))
for
name
,
value
in
sorted
(
request
.
POST
.
items
()):
html
.
append
(
escape
(
"POST {}: {!r}"
.
format
(
name
,
value
)))
return
HttpResponse
(
"
\n
"
.
join
(
"<p>{}</p>"
.
format
(
h
)
for
h
in
html
))
lms/templates/login.html
View file @
7caf8c53
...
@@ -51,7 +51,11 @@
...
@@ -51,7 +51,11 @@
$
(
'#login-form'
).
on
(
'ajax:success'
,
function
(
event
,
json
,
xhr
)
{
$
(
'#login-form'
).
on
(
'ajax:success'
,
function
(
event
,
json
,
xhr
)
{
if
(
json
.
success
)
{
if
(
json
.
success
)
{
var
u
=
decodeURI
(
window
.
location
.
search
);
var
u
=
decodeURI
(
window
.
location
.
search
);
next
=
u
.
split
(
"next="
)[
1
];
var
next
=
u
.
split
(
"next="
)[
1
];
if
(
next
!=
undefined
)
{
// if next is undefined, decodeURI returns "undefined" causing a bad redirect.
next
=
decodeURIComponent
(
next
);
}
if
(
next
&&
!
isExternal
(
next
))
{
if
(
next
&&
!
isExternal
(
next
))
{
location
.
href
=
next
;
location
.
href
=
next
;
}
else
if
(
json
.
redirect_url
){
}
else
if
(
json
.
redirect_url
){
...
...
lms/urls.py
View file @
7caf8c53
...
@@ -478,9 +478,13 @@ urlpatterns += (
...
@@ -478,9 +478,13 @@ urlpatterns += (
if
settings
.
FEATURES
.
get
(
'ENABLE_DEBUG_RUN_PYTHON'
):
if
settings
.
FEATURES
.
get
(
'ENABLE_DEBUG_RUN_PYTHON'
):
urlpatterns
+=
(
urlpatterns
+=
(
url
(
r'^debug/run_python'
,
'debug.views.run_python'
),
url
(
r'^debug/run_python
$
'
,
'debug.views.run_python'
),
)
)
urlpatterns
+=
(
url
(
r'^debug/show_parameters$'
,
'debug.views.show_parameters'
),
)
# Crowdsourced hinting instructor manager.
# Crowdsourced hinting instructor manager.
if
settings
.
FEATURES
.
get
(
'ENABLE_HINTER_INSTRUCTOR_VIEW'
):
if
settings
.
FEATURES
.
get
(
'ENABLE_HINTER_INSTRUCTOR_VIEW'
):
urlpatterns
+=
(
urlpatterns
+=
(
...
...
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