Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
E
edx-platform-release
Manage
Activity
Members
Labels
Plan
Issues
0
Issue boards
Milestones
Wiki
Code
Merge requests
1
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Package Registry
Model registry
Operate
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Hsin-Yu Chien
edx-platform-release
Commits
f391e9c5
Commit
f391e9c5
authored
12 years ago
by
Piotr Mitros
Committed by
Calen Pennington
12 years ago
Browse files
Options
Downloads
Patches
Plain Diff
Courseware can have same random seed in multiple problems for exam. Slight hack.
parent
40a950f1
Loading
Loading
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
common/lib/xmodule/capa_module.py
+2
-0
2 additions, 0 deletions
common/lib/xmodule/capa_module.py
lms/djangoapps/courseware/module_render.py
+5
-1
5 additions, 1 deletion
lms/djangoapps/courseware/module_render.py
with
7 additions
and
1 deletion
common/lib/xmodule/capa_module.py
+
2
−
0
View file @
f391e9c5
...
...
@@ -222,6 +222,8 @@ class Module(XModule):
self
.
weight
=
only_one
(
dom2
.
xpath
(
'
/problem/@weight
'
))
if
self
.
rerandomize
==
'
never
'
:
seed
=
1
elif
self
.
rerandomize
==
"
per_student
"
and
hasattr
(
system
,
'
id
'
):
seed
=
system
.
id
else
:
seed
=
None
try
:
...
...
This diff is collapsed.
Click to expand it.
lms/djangoapps/courseware/module_render.py
+
5
−
1
View file @
f391e9c5
...
...
@@ -31,7 +31,7 @@ class I4xSystem(object):
functionality.
'''
def
__init__
(
self
,
ajax_url
,
track_function
,
render_function
,
render_template
,
filestore
=
None
):
render_template
,
request
=
None
,
filestore
=
None
):
'''
Create a closure around the system environment.
...
...
@@ -46,6 +46,7 @@ class I4xSystem(object):
and
'
type
'
.
render_template - a function that takes (template_file, context), and returns
rendered html.
request - the request in progress
filestore - A filestore ojbect. Defaults to an instance of OSFS based at
settings.DATA_DIR.
'''
...
...
@@ -62,6 +63,7 @@ class I4xSystem(object):
self
.
render_template
=
render_template
self
.
exception404
=
Http404
self
.
DEBUG
=
settings
.
DEBUG
self
.
id
=
request
.
user
.
id
if
request
is
not
None
else
0
def
get
(
self
,
attr
):
'''
provide uniform access to attributes (like etree).
'''
...
...
@@ -169,6 +171,7 @@ def get_module(user, request, module_xml, student_module_cache, position=None):
render_function
=
render_function
,
render_template
=
render_to_string
,
ajax_url
=
ajax_url
,
request
=
request
,
filestore
=
OSFS
(
data_root
),
)
# pass position specified in URL to module through I4xSystem
...
...
@@ -300,6 +303,7 @@ def modx_dispatch(request, module=None, dispatch=None, id=None):
render_function
=
None
,
render_template
=
render_to_string
,
ajax_url
=
ajax_url
,
request
=
request
,
filestore
=
OSFS
(
data_root
),
)
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment