Newer
Older
# -*- coding: utf-8 -*-
from __future__ import division
__copyright__ = "Copyright (C) 2014 Andreas Kloeckner"
__license__ = """
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
"""
import django.forms as forms
from django.utils.safestring import mark_safe
from django.utils.translation import (
ugettext_lazy as _, ugettext, string_concat)
from course.page.base import (
AnswerFeedback, PageBaseWithTitle, PageBaseWithValue, markup_to_html)
from course.content import remove_prefix
from course.validation import validate_markup, ValidationError
class ChoiceAnswerForm(StyledForm):
def __init__(self, field, *args, **kwargs):
super(ChoiceAnswerForm, self).__init__(*args, **kwargs)
self.fields["choice"] = field
# Translators: "choice" in Choice Answer Form in a choice question.
self.fields["choice"].label = _("Choice")
class MultipleChoiceAnswerForm(StyledForm):
def __init__(self, field, *args, **kwargs):
super(MultipleChoiceAnswerForm, self).__init__(*args, **kwargs)
self.fields["choice"] = field
# Translators: "Multiple choice" in Choice Answer Form in a mutliple choice question.
self.fields["choice"].label = _("Multiple Choices")
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
class ChoiceQuestion(PageBaseWithTitle, PageBaseWithValue):
"""
A page asking the participant to choose one of multiple answers.
.. attribute:: id
|id-page-attr|
.. attribute:: type
``ChoiceQuestion``
.. attribute:: access_rules
|access-rules-page-attr|
.. attribute:: title
|title-page-attr|
.. attribute:: value
|value-page-attr|
.. attribute:: prompt
The page's prompt, written in :ref:`markup`.
.. attribute:: choices
A list of choices, each in :ref:`markup`. Correct
choices are indicated by the prefix ``~CORRECT~``.
.. attribute:: shuffle
Optional. ``True`` or ``False``. If true, the choices will
be presented in random order.
"""
CORRECT_TAG = "~CORRECT~"
@classmethod
def process_choice_string(cls, page_context, s):
if not isinstance(s, str):
s = str(s)
s = remove_prefix(cls.CORRECT_TAG, s)
s = markup_to_html(page_context, s)
# allow HTML in option
s = mark_safe(s)
return s
def __init__(self, vctx, location, page_desc):
super(ChoiceQuestion, self).__init__(vctx, location, page_desc)
correct_choice_count = 0
for choice_idx, choice in enumerate(page_desc.choices):
try:
choice = str(choice)
except:
raise ValidationError(
string_concat(
"%(location)s, ",
_("choice %(idx)d: unable to convert to string")
)
% {'location': location, 'idx': choice_idx+1})
if choice.startswith(self.CORRECT_TAG):
correct_choice_count += 1
if vctx is not None:
validate_markup(vctx, location,
remove_prefix(self.CORRECT_TAG, choice))
if correct_choice_count < 1:
raise ValidationError(
string_concat(
"%(location)s: ",
"one or more correct answer(s) "
"expected, %(n_correct)d found")
% {
'location': location,
'n_correct': correct_choice_count})
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
def required_attrs(self):
return super(ChoiceQuestion, self).required_attrs() + (
("prompt", "markup"),
("choices", list),
)
def allowed_attrs(self):
return super(ChoiceQuestion, self).allowed_attrs() + (
("shuffle", bool),
)
def markup_body_for_title(self):
return self.page_desc.prompt
def body(self, page_context, page_data):
return markup_to_html(page_context, self.page_desc.prompt)
def make_page_data(self):
import random
perm = range(len(self.page_desc.choices))
if getattr(self.page_desc, "shuffle", False):
random.shuffle(perm)
return {"permutation": perm}
def make_choice_form(self, page_context, page_data, *args, **kwargs):
permutation = page_data["permutation"]
choices = tuple(
(i, self.process_choice_string(
page_context, self.page_desc.choices[src_i]))
for i, src_i in enumerate(permutation))
return ChoiceAnswerForm(
forms.TypedChoiceField(
choices=tuple(choices),
coerce=int,
widget=forms.RadioSelect()),
*args, **kwargs)
def make_form(self, page_context, page_data,
answer_data, answer_is_final):
if answer_data is not None:
form_data = {"choice": answer_data["choice"]}
form = self.make_choice_form(page_context, page_data, form_data)
else:
form = self.make_choice_form(page_context, page_data)
if answer_is_final:
form.fields['choice'].widget.attrs['disabled'] = True
return form
def post_form(self, page_context, page_data, post_data, files_data):
return self.make_choice_form(
page_context, page_data, post_data, files_data)
def answer_data(self, page_context, page_data, form, files_data):
return {"choice": form.cleaned_data["choice"]}
def unpermuted_correct_indices(self):
result = []
for i, choice_text in enumerate(self.page_desc.choices):
if str(choice_text).startswith(self.CORRECT_TAG):
result.append(i)
return result
def grade(self, page_context, page_data, answer_data, grade_data):
if answer_data is None:
return AnswerFeedback(correctness=0,
permutation = page_data["permutation"]
choice = answer_data["choice"]
if permutation[choice] in self.unpermuted_correct_indices():
correctness = 1
else:
correctness = 0
return AnswerFeedback(correctness=correctness)
def correct_answer(self, page_context, page_data, answer_data, grade_data):
corr_idx = self.unpermuted_correct_indices()[0]
return (_("A correct answer is: %s")
% self.process_choice_string(
page_context,
self.page_desc.choices[corr_idx]).lstrip())
def normalized_answer(self, page_context, page_data, answer_data):
if answer_data is None:
return None
permutation = page_data["permutation"]
choice = answer_data["choice"]
return self.process_choice_string(
page_context,
self.page_desc.choices[permutation[choice]])
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
# }}}
# {{{ multiple choice question
class MultipleChoiceQuestion(ChoiceQuestion):
"""
A page asking the participant to choose one of multiple answers.
.. attribute:: id
|id-page-attr|
.. attribute:: type
``MultipleChoiceQuestion``
.. attribute:: access_rules
|access-rules-page-attr|
.. attribute:: title
|title-page-attr|
.. attribute:: value
|value-page-attr|
.. attribute:: prompt
The page's prompt, written in :ref:`markup`.
.. attribute:: choices
A list of choices, each in :ref:`markup`. Correct
choices are indicated by the prefix ``~CORRECT~``.
.. attribute:: shuffle
Optional. ``True`` or ``False``. If true, the choices will
be presented in random order.
.. attribute:: full_match
Optional. ``True`` or ``False``. If true (default), only
answers which fully matches the correct answer is correct.
If false, answers with subset of correct choices will get
a proportional credit.
"""
def allowed_attrs(self):
return super(MultipleChoiceQuestion, self).allowed_attrs() + (
("full_match", bool),
)
def make_choice_form(self, page_context, page_data, *args, **kwargs):
permutation = page_data["permutation"]
choices = tuple(
(i, self.process_choice_string(
page_context, self.page_desc.choices[src_i]))
for i, src_i in enumerate(permutation))
return MultipleChoiceAnswerForm(
forms.TypedMultipleChoiceField(
choices=tuple(choices),
coerce=int,
widget=forms.CheckboxSelectMultiple()),
*args, **kwargs)
def grade(self, page_context, page_data, answer_data, grade_data):
if answer_data is None:
return AnswerFeedback(correctness=0,
feedback=ugettext("No answer provided."))
permutation = page_data["permutation"]
choice = answer_data["choice"]
unpermed_idx_set = set([permutation[idx] for idx in choice])
correct_idx_set = set(self.unpermuted_correct_indices())
if unpermed_idx_set == correct_idx_set:
correctness = 1
else:
if getattr(self.page_desc, "full_match", True):
correctness = 0
else:
if unpermed_idx_set < correct_idx_set:
correctness = len(unpermed_idx_set)/len(correct_idx_set)
else:
correctness = 0
return AnswerFeedback(correctness=correctness)
def get_answer_html(self, page_context, idx_list, unpermute=False):
answer_html_list = []
if unpermute:
idx_list = list(set(idx_list))
for idx in idx_list:
answer_html_list.append(
"<li>"
+ self.process_choice_string(
page_context,
self.page_desc.choices[idx]).lstrip().replace("<p>","").replace("</p>","")
+ "</li>"
)
answer_html = "<ul>"+"".join(answer_html_list)+"</ul>"
return answer_html
def correct_answer(self, page_context, page_data, answer_data, grade_data):
corr_idx_list = self.unpermuted_correct_indices()
return (_("The correct answer is: %s")
% self.get_answer_html(page_context, corr_idx_list))
def normalized_answer(self, page_context, page_data, answer_data):
if answer_data is None:
return None
permutation = page_data["permutation"]
choice = answer_data["choice"]
return self.get_answer_html(
page_context,
[permutation[idx] for idx in choice],
unpermute=True)
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
# }}}
# {{{ survey choice question
class SurveyChoiceQuestion(PageBaseWithTitle):
"""
A page asking the participant to choose one of multiple answers.
.. attribute:: id
|id-page-attr|
.. attribute:: type
``ChoiceQuestion``
.. attribute:: access_rules
|access-rules-page-attr|
.. attribute:: title
|title-page-attr|
.. attribute:: prompt
The page's prompt, written in :ref:`markup`.
.. attribute:: choices
A list of choices, each in :ref:`markup`.
"""
@classmethod
def process_choice_string(cls, page_context, s):
if not isinstance(s, str):
s = str(s)
s = markup_to_html(page_context, s)
# allow HTML in option
s = mark_safe(s)
return s
def __init__(self, vctx, location, page_desc):
super(SurveyChoiceQuestion, self).__init__(vctx, location, page_desc)
for choice_idx, choice in enumerate(page_desc.choices):
try:
choice = str(choice)
except:
raise ValidationError(
string_concat(
"%(location)s, ",
_("choice %(idx)d: unable to convert to string")
)
% {"location": location, "idx": choice_idx+1})
if vctx is not None:
validate_markup(vctx, location, choice)
def required_attrs(self):
return super(SurveyChoiceQuestion, self).required_attrs() + (
("prompt", "markup"),
("choices", list),
)
def allowed_attrs(self):
return super(SurveyChoiceQuestion, self).allowed_attrs() + (
("answer_comment", "markup"),
)
def correct_answer(self, page_context, page_data, answer_data, grade_data):
if hasattr(self.page_desc, "answer_comment"):
return markup_to_html(page_context, self.page_desc.answer_comment)
else:
return None
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
def markup_body_for_title(self):
return self.page_desc.prompt
def body(self, page_context, page_data):
return markup_to_html(page_context, self.page_desc.prompt)
def make_choice_form(self, page_context, page_data, *args, **kwargs):
choices = tuple(
(i, self.process_choice_string(
page_context, self.page_desc.choices[i]))
for i in range(len(self.page_desc.choices)))
return ChoiceAnswerForm(
forms.TypedChoiceField(
choices=tuple(choices),
coerce=int,
widget=forms.RadioSelect()),
*args, **kwargs)
def make_form(self, page_context, page_data,
answer_data, answer_is_final):
if answer_data is not None:
form_data = {"choice": answer_data["choice"]}
form = self.make_choice_form(page_context, page_data, form_data)
else:
form = self.make_choice_form(page_context, page_data)
if answer_is_final:
form.fields['choice'].widget.attrs['disabled'] = True
return form
def post_form(self, page_context, page_data, post_data, files_data):
return self.make_choice_form(
page_context, page_data, post_data, files_data)
def answer_data(self, page_context, page_data, form, files_data):
return {"choice": form.cleaned_data["choice"]}
def expects_answer(self):
return True
def is_answer_gradable(self):
return False
def normalized_answer(self, page_context, page_data, answer_data):
if answer_data is None:
return None
choice = answer_data["choice"]
return self.process_choice_string(
page_context,
self.page_desc.choices[choice])
# }}}
# vim: foldmethod=marker