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
1ae94ce6
Commit
1ae94ce6
authored
Jan 08, 2013
by
Vik Paruchuri
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Hopefully allow for submission to be reset early
parent
b6a49f33
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
35 additions
and
11 deletions
+35
-11
common/lib/xmodule/xmodule/combined_open_ended_module.py
+27
-6
common/lib/xmodule/xmodule/js/src/combinedopenended/display.coffee
+7
-4
common/lib/xmodule/xmodule/openendedchild.py
+1
-1
No files found.
common/lib/xmodule/xmodule/combined_open_ended_module.py
View file @
1ae94ce6
...
...
@@ -147,10 +147,11 @@ class CombinedOpenEndedModule(XModule):
self
.
current_task_descriptor
=
children
[
'descriptors'
][
current_task_type
](
self
.
system
)
etree_xml
=
etree
.
fromstring
(
self
.
current_task_xml
)
min_score_to_attempt
=
int
(
etree_xml
.
attrib
.
get
(
'min_score_to_attempt'
,
0
))
max_score_to_attempt
=
int
(
etree_xml
.
attrib
.
get
(
'min_score_to_attempt'
,
self
.
_max_score
))
if
self
.
current_task_number
>
0
:
last_response_data
=
self
.
get_last_response
(
self
.
current_task_number
-
1
)
allow_reset
=
self
.
check_allow_reset
()
if
allow_reset
:
return
False
self
.
current_task_parsed_xml
=
self
.
current_task_descriptor
.
definition_from_xml
(
etree_xml
,
self
.
system
)
if
current_task_state
is
None
and
self
.
current_task_number
==
0
:
...
...
@@ -172,6 +173,17 @@ class CombinedOpenEndedModule(XModule):
return
True
def
check_allow_reset
(
self
):
allow_reset
=
False
if
self
.
current_task_number
>
0
:
last_response_data
=
self
.
get_last_response
(
self
.
current_task_number
-
1
)
current_response_data
=
self
.
get_last_response
(
self
.
current_task_number
)
if
current_response_data
[
'min_score_to_attempt'
]
>
last_response_data
[
'score'
]
or
current_response_data
[
'max_score_to_attempt'
]
<
last_response_data
[
'score'
]:
allow_reset
=
True
return
allow_rest
def
get_context
(
self
):
task_html
=
self
.
get_html_base
()
#set context variables and render template
...
...
@@ -179,7 +191,7 @@ class CombinedOpenEndedModule(XModule):
context
=
{
'items'
:
[{
'content'
:
task_html
}],
'ajax_url'
:
self
.
system
.
ajax_url
,
'allow_reset'
:
True
,
'allow_reset'
:
self
.
check_allow_reset
()
,
'state'
:
self
.
state
,
'task_count'
:
len
(
self
.
task_xml
),
'task_number'
:
self
.
current_task_number
+
1
,
...
...
@@ -210,10 +222,17 @@ class CombinedOpenEndedModule(XModule):
task_xml
=
self
.
task_xml
[
task_number
]
task_type
=
self
.
get_tag_name
(
task_xml
)
children
=
self
.
child_modules
()
task_descriptor
=
children
[
'descriptors'
][
task_type
](
self
.
system
)
task_parsed_xml
=
task_descriptor
.
definition_from_xml
(
etree
.
fromstring
(
task_xml
),
self
.
system
)
etree_xml
=
etree
.
fromstring
(
task_xml
)
min_score_to_attempt
=
int
(
etree_xml
.
attrib
.
get
(
'min_score_to_attempt'
,
0
))
max_score_to_attempt
=
int
(
etree_xml
.
attrib
.
get
(
'min_score_to_attempt'
,
self
.
_max_score
))
task_parsed_xml
=
task_descriptor
.
definition_from_xml
(
etree_xml
,
self
.
system
)
task
=
children
[
'modules'
][
task_type
](
self
.
system
,
self
.
location
,
task_parsed_xml
,
task_descriptor
,
self
.
static_data
,
instance_state
=
task_state
)
last_response
=
task
.
latest_answer
()
last_score
=
task
.
latest_score
()
...
...
@@ -234,7 +253,9 @@ class CombinedOpenEndedModule(XModule):
'max_score'
:
max_score
,
'state'
:
state
,
'human_state'
:
task
.
HUMAN_NAMES
[
state
],
'correct'
:
last_correctness
'correct'
:
last_correctness
,
'min_score_to_attempt'
:
min_score_to_attempt
,
'max_score_to_attempt'
:
max_score_to_attempt
,
}
return
last_response_dict
...
...
common/lib/xmodule/xmodule/js/src/combinedopenended/display.coffee
View file @
1ae94ce6
...
...
@@ -76,9 +76,15 @@ class @CombinedOpenEnded
@
reset_button
.
hide
()
@
next_problem_button
.
hide
()
@
hint_area
.
attr
(
'disabled'
,
false
)
if
@
child_type
==
"openended"
@
skip_button
.
hide
()
if
@
child_state
==
'initial'
if
@
allow_reset
@
reset_button
.
show
()
@
submit_button
.
hide
()
@
answer_area
.
attr
(
"disabled"
,
true
)
@
hint_area
.
attr
(
'disabled'
,
true
)
else
if
@
child_state
==
'initial'
@
answer_area
.
attr
(
"disabled"
,
false
)
@
submit_button
.
prop
(
'value'
,
'Submit'
)
@
submit_button
.
click
@
save_answer
...
...
@@ -145,7 +151,6 @@ class @CombinedOpenEnded
@
find_hint_elements
()
else
if
@
child_state
==
'done'
@
message_wrapper
.
html
(
response
.
message_html
)
@
allow_reset
=
response
.
allow_reset
@
rebind
()
else
...
...
@@ -162,7 +167,6 @@ class @CombinedOpenEnded
if
response
.
success
@
message_wrapper
.
html
(
response
.
message_html
)
@
child_state
=
'done'
@
allow_reset
=
response
.
allow_reset
@
rebind
()
else
@
errors_area
.
html
(
response
.
error
)
...
...
@@ -175,7 +179,6 @@ class @CombinedOpenEnded
$
.
postWithPrefix
"
#{
@
ajax_url
}
/skip_post_assessment"
,
{},
(
response
)
=>
if
response
.
success
@
child_state
=
'done'
@
allow_reset
=
response
.
allow_reset
@
rebind
()
else
@
errors_area
.
html
(
response
.
error
)
...
...
common/lib/xmodule/xmodule/openendedchild.py
View file @
1ae94ce6
...
...
@@ -200,7 +200,7 @@ class OpenEndedChild():
def
_allow_reset
(
self
):
"""Can the module be reset?"""
return
self
.
state
==
self
.
DONE
and
self
.
attempts
<
self
.
max_attempts
return
(
self
.
state
==
self
.
DONE
and
self
.
attempts
<
self
.
max_attempts
)
def
max_score
(
self
):
"""
...
...
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