Class: Senkyoshi::FillInBlankPlus

Inherits:
Question show all
Defined in:
lib/senkyoshi/models/questions/fill_in_blank_plus.rb

Constant Summary

Constants inherited from Question

Question::ITEM_FUNCTION, Question::QUESTION_TYPE

Instance Attribute Summary

Attributes inherited from Question

#answers

Instance Method Summary collapse

Methods inherited from Question

#canvas_conversion, from, #get_fraction, #initialize, #iterate_item, #set_answers, #set_correct_answers, #set_feedback, #set_incorrect_answers, #set_material, #set_max_score

Methods inherited from Resource

#_find_directories, #_fix_path, #_matches_directory_xid?, #_search_and_replace, #cleanup, #fix_html, get_pre_data, #matches_xid?, #strip_xid

Constructor Details

This class inherits a constructor from Senkyoshi::Question

Instance Method Details

#iterate_xml(data) ⇒ Object



20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
# File 'lib/senkyoshi/models/questions/fill_in_blank_plus.rb', line 20

def iterate_xml(data)
  super
  if data.at("resprocessing")
    conditionvar = data.at("resprocessing").at("conditionvar")
  end
  # not all fill in the blank questions have answers(ie: surveys)
  if conditionvar
    conditionvar.at("and").children.each do |or_child|
      or_child.children.each do |varequal|
        answer = Answer.new(varequal.text)
        answer.resp_ident = varequal.attributes["respident"].value
        answer.fraction = @max_score
        @answers.push(answer)
      end
    end
  end
  self
end