File:  [LON-CAPA] / doc / homework / datastorage
Revision 1.9: download - view: text, annotated - select for diffs
Sat May 19 01:05:19 2001 UTC (22 years, 11 months ago) by albertel
Branches: MAIN
CVS tags: HEAD
- added possible values for awarddetail

    1: <Provided by &EXT() and set external to the resource, required>
    2: resource.partid.opendate   #unix time of when the local machine should let the
    3:                     #student in
    4: 
    5: resource.partid.duedate    #unix time of when the local machine should stop
    6:                     #accepting answers
    7: 
    8: resource.partid.answerdate #unix time of when the local machine should
    9:                     #provide the correct answer to the student
   10: 
   11: resource.partid.weight     # points the problem is worth
   12: 
   13: resource.partid.maxtries   # maximum number of attempts the student can have
   14: 
   15: 
   16: 
   17: <caparesponse needed: (has a default if nonexistant)>
   18: 
   19: resource.partid.tol   # lots of possibilities here
   20:                     # percentage, range (inclusive and exclusive),
   21: 		    # variable name, etc
   22:                     # 3%
   23:                     # 0.5
   24:                     # .05+
   25:                     # 3%+
   26:                     # 0.5+,.005
   27: 
   28: resource.partid.sig  # one or two comma sepearted integers, specifying the
   29:                      # number of significatn figures a student must use
   30: 
   31: resource.partid.feedback   # at least a single bit (yes/no) may go with a
   32:                          # bitmask in the future, controls whether or not
   33:                          # a problem should say "correct" or not
   34: 
   35: 
   36: <Problem sets using cstore (required):>
   37: resource.partid.solved # if not set, problem yet to be viewed
   38:                 # incorrect_attempted == incorrect and attempted
   39:                 # correct_by_student == correct by student work
   40:                 # correct_by_override == correct, instructor override
   41:                 # incorrect_by_override == incorrect, instructor override
   42:                 # excused == excused, problem no longer counts for student
   43:                 # '' (empty) == not attempted
   44:                 # ungraded_attempted == an ungraded answer has been
   45:                                           sumbitted and stored
   46: resource.partid.tries  # positive integer of number of unsuccessful attempts
   47:                 # made, malformed answers don't count if feedback is
   48:                 # on
   49: 
   50: resource.partid.awarded # float between 0 and 1, percentage of
   51:                  # resource.weight that the stundent earned.
   52: 
   53: resource.partid.responseid.submissons
   54:                     # the student submitted string for the part.response
   55: 
   56: resource.partid.responseid.awarddetail
   57:                      # list of all of the results of grading the submissions
   58:                      # in detailed form of the specific failure
   59: 		     #Posible values:
   60:                      # EXACT_ANS, APPROX_ANS : student is correct
   61:                      # NO_RESPONSE : student submitted no response
   62:                      # MISSING_ANSWER : student submitted some but not
   63:                      #                   all parts of a response
   64:                      # WANTED_NUMERIC : expected a numeric answer and
   65:                      #                   didn't get one
   66: 		     # SIG_FAIL : incorrect number of Significant Figures
   67:                      # UNIT_FAIL : incorrect unit
   68:                      # UNIT_NOTNEEDED : Submitted a unit when one shouldn't
   69:                      # NO_UNIT : needed a unit but none was submitted
   70: 		     # BAD_FORMULA : syntax error in submitted formula
   71:                      # INCORRECT : answer was wrong
   72:                      # SUBMITTED : submission wasn't graded
   73: 
   74: 

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>