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
57f7acf8
Commit
57f7acf8
authored
Mar 19, 2013
by
Diana Huang
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Unbreak grading for capa problems
Clean up some pylint errors
parent
a2957cb3
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
25 additions
and
12 deletions
+25
-12
common/lib/capa/capa/capa_problem.py
+1
-7
common/lib/capa/capa/inputtypes.py
+7
-1
common/lib/capa/capa/templates/matlabinput.html
+1
-1
common/lib/xmodule/xmodule/capa_module.py
+16
-3
No files found.
common/lib/capa/capa/capa_problem.py
View file @
57f7acf8
...
...
@@ -16,7 +16,6 @@ This is used by capa_module.
from
__future__
import
division
from
datetime
import
datetime
import
json
import
logging
import
math
import
numpy
...
...
@@ -32,8 +31,6 @@ from xml.sax.saxutils import unescape
from
copy
import
deepcopy
import
chem
import
chem.chemcalc
import
chem.chemtools
import
chem.miller
import
verifiers
import
verifiers.draganddrop
...
...
@@ -70,9 +67,6 @@ global_context = {'random': random,
'scipy'
:
scipy
,
'calc'
:
calc
,
'eia'
:
eia
,
'chemcalc'
:
chem
.
chemcalc
,
'chemtools'
:
chem
.
chemtools
,
'miller'
:
chem
.
miller
,
'draganddrop'
:
verifiers
.
draganddrop
}
# These should be removed from HTML output, including all subelements
...
...
@@ -371,7 +365,7 @@ class LoncapaProblem(object):
dispatch
=
get
[
'dispatch'
]
return
self
.
inputs
[
input_id
]
.
handle_ajax
(
dispatch
,
get
)
else
:
log
.
warning
(
"Could not find matching input for id:
%
s"
%
problem
_id
)
log
.
warning
(
"Could not find matching input for id:
%
s"
%
input
_id
)
return
{}
...
...
common/lib/capa/capa/inputtypes.py
View file @
57f7acf8
...
...
@@ -37,7 +37,6 @@ graded status as'status'
# makes sense, but a bunch of problems have markup that assumes block. Bigger TODO: figure out a
# general css and layout strategy for capa, document it, then implement it.
from
collections
import
namedtuple
import
json
import
logging
from
lxml
import
etree
...
...
@@ -623,6 +622,13 @@ registry.register(CodeInput)
class
MatlabInput
(
CodeInput
):
'''
InputType for handling Matlab code input
Example:
<matlabinput rows="10" cols="80" tabsize="4">
<plot_payload>
%
api_key=API_KEY
</plot_payload>
</matlabinput>
'''
template
=
"matlabinput.html"
tags
=
[
'matlabinput'
]
...
...
common/lib/capa/capa/templates/matlabinput.html
View file @
57f7acf8
...
...
@@ -44,7 +44,7 @@
%
if
linenumbers
==
'true'
:
lineNumbers
:
true
,
%
endif
mode
:
"
${mode}
"
,
mode
:
"
matlab
"
,
matchBrackets
:
true
,
lineWrapping
:
true
,
indentUnit
:
"${tabsize}"
,
...
...
common/lib/xmodule/xmodule/capa_module.py
View file @
57f7acf8
...
...
@@ -446,7 +446,7 @@ class CapaModule(CapaFields, XModule):
'problem_save'
:
self
.
save_problem
,
'problem_show'
:
self
.
get_answer
,
'score_update'
:
self
.
update_score
,
'input_ajax'
:
self
.
lcp
.
handle_input_ajax
,
'input_ajax'
:
self
.
handle_input_ajax
,
'ungraded_response'
:
self
.
handle_ungraded_response
}
...
...
@@ -460,7 +460,6 @@ class CapaModule(CapaFields, XModule):
'progress_changed'
:
after
!=
before
,
'progress_status'
:
Progress
.
to_js_status_str
(
after
),
})
self
.
set_state_from_lcp
()
return
json
.
dumps
(
d
,
cls
=
ComplexEncoder
)
def
is_past_due
(
self
):
...
...
@@ -544,7 +543,10 @@ class CapaModule(CapaFields, XModule):
def
handle_ungraded_response
(
self
,
get
):
'''
Get the XQueue response
Delivers a response to the capa problem where the expectation where this response does
not have relevant grading information
No ajax return is needed, so an empty dict is returned
'''
queuekey
=
get
[
'queuekey'
]
score_msg
=
get
[
'xqueue_body'
]
...
...
@@ -553,6 +555,17 @@ class CapaModule(CapaFields, XModule):
self
.
set_state_from_lcp
()
return
dict
()
def
handle_input_ajax
(
self
,
get
):
'''
Passes information down to the capa problem so that it can handle its own ajax calls
Returns the response from the capa problem
'''
response
=
self
.
lcp
.
handle_input_ajax
(
get
)
# save any state changes that may occur
self
.
set_state_from_lcp
()
return
response
def
get_answer
(
self
,
get
):
'''
For the "show answer" button.
...
...
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