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
87503729
Commit
87503729
authored
Jun 12, 2012
by
Victor Shnayder
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
clarify docstring for modx_dispatch
parent
7cc7eed1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
lms/djangoapps/courseware/module_render.py
+3
-3
No files found.
lms/djangoapps/courseware/module_render.py
View file @
87503729
...
@@ -202,13 +202,13 @@ def modx_dispatch(request, module=None, dispatch=None, id=None):
...
@@ -202,13 +202,13 @@ def modx_dispatch(request, module=None, dispatch=None, id=None):
Arguments:
Arguments:
- request -- the django request.
- request -- the django request.
- module -- the name of the module, as used in the course configuration xml.
- module -- the type of the module, as used in the course configuration xml.
e.g. 'problem', 'video', etc
- dispatch -- the command string to pass through to the module's handle_ajax call
- dispatch -- the command string to pass through to the module's handle_ajax call
(e.g. 'problem_reset'). If this string contains '?', only pass
(e.g. 'problem_reset'). If this string contains '?', only pass
through the part before the first '?'.
through the part before the first '?'.
- id -- the module id. Used to look up the student module.
- id -- the module id. Used to look up the student module.
e.g. filenamexformularesponse
TODO: why are id and module not the same?
'''
'''
if
not
request
.
user
.
is_authenticated
():
if
not
request
.
user
.
is_authenticated
():
return
redirect
(
'/'
)
return
redirect
(
'/'
)
...
...
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