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
6b9130fa
Commit
6b9130fa
authored
Jun 04, 2012
by
Calen Pennington
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Be more direct about where modx_dispatch is located and where it is used
parent
21ebb2ea
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
1 additions
and
2 deletions
+1
-2
djangoapps/courseware/views.py
+0
-1
urls.py
+1
-1
No files found.
djangoapps/courseware/views.py
View file @
6b9130fa
...
@@ -16,7 +16,6 @@ from django.views.decorators.cache import cache_control
...
@@ -16,7 +16,6 @@ from django.views.decorators.cache import cache_control
from
lxml
import
etree
from
lxml
import
etree
from
module_render
import
render_x_module
,
make_track_function
,
I4xSystem
from
module_render
import
render_x_module
,
make_track_function
,
I4xSystem
from
module_render
import
modx_dispatch
#Note that this is not used in this file, but urls refers to courseware.views.modx_dispatch
from
models
import
StudentModule
from
models
import
StudentModule
from
student.models
import
UserProfile
from
student.models
import
UserProfile
from
multicourse
import
multicourse_settings
from
multicourse
import
multicourse_settings
...
...
urls.py
View file @
6b9130fa
...
@@ -54,7 +54,7 @@ if settings.COURSEWARE_ENABLED:
...
@@ -54,7 +54,7 @@ if settings.COURSEWARE_ENABLED:
url
(
r'^courseware/(?P<course>[^/]*)/(?P<chapter>[^/]*)/$'
,
'courseware.views.index'
,
name
=
"courseware_chapter"
),
url
(
r'^courseware/(?P<course>[^/]*)/(?P<chapter>[^/]*)/$'
,
'courseware.views.index'
,
name
=
"courseware_chapter"
),
url
(
r'^courseware/(?P<course>[^/]*)/$'
,
'courseware.views.index'
,
name
=
"courseware_course"
),
url
(
r'^courseware/(?P<course>[^/]*)/$'
,
'courseware.views.index'
,
name
=
"courseware_course"
),
url
(
r'^section/(?P<section>[^/]*)/$'
,
'courseware.views.render_section'
),
url
(
r'^section/(?P<section>[^/]*)/$'
,
'courseware.views.render_section'
),
url
(
r'^modx/(?P<module>[^/]*)/(?P<id>[^/]*)/(?P<dispatch>[^/]*)$'
,
'courseware.
views
.modx_dispatch'
),
#reset_problem'),
url
(
r'^modx/(?P<module>[^/]*)/(?P<id>[^/]*)/(?P<dispatch>[^/]*)$'
,
'courseware.
module_render
.modx_dispatch'
),
#reset_problem'),
url
(
r'^profile$'
,
'courseware.views.profile'
),
url
(
r'^profile$'
,
'courseware.views.profile'
),
url
(
r'^profile/(?P<student_id>[^/]*)/$'
,
'courseware.views.profile'
),
url
(
r'^profile/(?P<student_id>[^/]*)/$'
,
'courseware.views.profile'
),
url
(
r'^change_setting$'
,
'student.views.change_setting'
),
url
(
r'^change_setting$'
,
'student.views.change_setting'
),
...
...
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