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
81621fbe
Commit
81621fbe
authored
Apr 20, 2013
by
ichuang
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
for staff masquerading as student be kind and don't 404 for inaccessible content
parent
6cbd3539
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
0 deletions
+6
-0
lms/djangoapps/courseware/views.py
+6
-0
No files found.
lms/djangoapps/courseware/views.py
View file @
81621fbe
...
...
@@ -307,12 +307,18 @@ def index(request, course_id, chapter=None, section=None,
chapter_module
=
course_module
.
get_child_by
(
lambda
m
:
m
.
url_name
==
chapter
)
if
chapter_module
is
None
:
# User may be trying to access a chapter that isn't live yet
if
masq
==
'student'
:
# if staff is masquerading as student be kinder, don't 404
log
.
debug
(
'staff masq as student: no chapter
%
s'
%
chapter
)
return
redirect
(
reverse
(
'courseware'
,
args
=
[
course
.
id
]))
raise
Http404
if
section
is
not
None
:
section_descriptor
=
chapter_descriptor
.
get_child_by
(
lambda
m
:
m
.
url_name
==
section
)
if
section_descriptor
is
None
:
# Specifically asked-for section doesn't exist
if
masq
==
'student'
:
# if staff is masquerading as student be kinder, don't 404
log
.
debug
(
'staff masq as student: no section
%
s'
%
section
)
return
redirect
(
reverse
(
'courseware'
,
args
=
[
course
.
id
]))
raise
Http404
# cdodge: this looks silly, but let's refetch the section_descriptor with depth=None
...
...
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