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
aca6cdba
Commit
aca6cdba
authored
Apr 05, 2013
by
Sarina
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #1813 from MITx/fix/vik/pg-progress
Fix pg progress
parents
4c95294b
6aada791
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
1 deletions
+3
-1
common/lib/xmodule/xmodule/combined_open_ended_module.py
+1
-0
common/lib/xmodule/xmodule/peer_grading_module.py
+2
-1
No files found.
common/lib/xmodule/xmodule/combined_open_ended_module.py
View file @
aca6cdba
...
...
@@ -219,4 +219,5 @@ class CombinedOpenEndedDescriptor(CombinedOpenEndedFields, RawDescriptor):
stores_state
=
True
has_score
=
True
always_recalculate_grades
=
True
template_dir_name
=
"combinedopenended"
common/lib/xmodule/xmodule/peer_grading_module.py
View file @
aca6cdba
...
...
@@ -37,7 +37,7 @@ class PeerGradingFields(object):
grace_period_string
=
String
(
help
=
"Amount of grace to give on the due date."
,
default
=
None
,
scope
=
Scope
.
settings
)
max_grade
=
Integer
(
help
=
"The maximum grade that a student can receieve for this problem."
,
default
=
MAX_SCORE
,
scope
=
Scope
.
settings
)
student_data_for_location
=
Object
(
help
=
"Student data for a given peer grading problem."
,
default
=
json
.
dumps
({}),
student_data_for_location
=
Object
(
help
=
"Student data for a given peer grading problem."
,
scope
=
Scope
.
user_state
)
weight
=
StringyFloat
(
help
=
"How much to weight this problem by"
,
scope
=
Scope
.
settings
)
...
...
@@ -577,4 +577,5 @@ class PeerGradingDescriptor(PeerGradingFields, RawDescriptor):
stores_state
=
True
has_score
=
True
always_recalculate_grades
=
True
template_dir_name
=
"peer_grading"
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