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
85079da3
Commit
85079da3
authored
12 years ago
by
Piotr Mitros
Committed by
pmitros
12 years ago
Browse files
Options
Downloads
Patches
Plain Diff
Minor bug fix/conflict between grades and i4xsystem
parent
747105e3
Loading
Loading
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
djangoapps/courseware/grades.py
+5
-1
5 additions, 1 deletion
djangoapps/courseware/grades.py
djangoapps/courseware/module_render.py
+2
-1
2 additions, 1 deletion
djangoapps/courseware/module_render.py
djangoapps/courseware/modules/x_module.py
+7
-4
7 additions, 4 deletions
djangoapps/courseware/modules/x_module.py
with
14 additions
and
6 deletions
djangoapps/courseware/grades.py
+
5
−
1
View file @
85079da3
...
...
@@ -135,7 +135,11 @@ def get_score(user, problem, cache):
if
id
in
cache
and
response
.
max_grade
!=
None
:
total
=
response
.
max_grade
else
:
total
=
float
(
courseware
.
modules
.
capa_module
.
Module
(
etree
.
tostring
(
problem
),
"
id
"
).
max_score
())
## HACK 1: We shouldn't specifically reference capa_module
## HACK 2: Backwards-compatibility: This should be written when a grade is saved, and removed from the system
from
module_render
import
I4xSystem
system
=
I4xSystem
(
None
,
None
,
None
)
total
=
float
(
courseware
.
modules
.
capa_module
.
Module
(
system
,
etree
.
tostring
(
problem
),
"
id
"
).
max_score
())
response
.
max_grade
=
total
response
.
save
()
...
...
This diff is collapsed.
Click to expand it.
djangoapps/courseware/module_render.py
+
2
−
1
View file @
85079da3
...
...
@@ -25,7 +25,8 @@ class I4xSystem(object):
def
__init__
(
self
,
ajax_url
,
track_function
,
render_function
,
filestore
=
None
):
self
.
ajax_url
=
ajax_url
self
.
track_function
=
track_function
self
.
filestore
=
OSFS
(
settings
.
DATA_DIR
)
if
not
filestore
:
self
.
filestore
=
OSFS
(
settings
.
DATA_DIR
)
self
.
render_function
=
render_function
self
.
exception404
=
Http404
...
...
This diff is collapsed.
Click to expand it.
djangoapps/courseware/modules/x_module.py
+
7
−
4
View file @
85079da3
...
...
@@ -51,8 +51,11 @@ class XModule(object):
self
.
item_id
=
item_id
self
.
state
=
state
self
.
ajax_url
=
system
.
ajax_url
self
.
tracker
=
system
.
track_function
self
.
filestore
=
system
.
filestore
self
.
render_function
=
system
.
render_function
if
system
:
## These are temporary; we really should go
## through self.system.
self
.
ajax_url
=
system
.
ajax_url
self
.
tracker
=
system
.
track_function
self
.
filestore
=
system
.
filestore
self
.
render_function
=
system
.
render_function
self
.
system
=
system
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