File:  [LON-CAPA] / doc / homework / datastorage
Revision 1.12: download - view: text, annotated - select for diffs
Fri May 3 18:37:09 2002 UTC (22 years ago) by albertel
Branches: MAIN
CVS tags: HEAD
- added bonustries

    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: resource.partid.type       # type of problem homework can be:
   16:                            # homework - randomized, graded, stored with 
   17:                            #            requesting user, full feeback
   18:                            # exam - randomized, graded, stored with 
   19:                            #        requesting user, minimal feedback
   20:                            # form - unrandomized, ungraded, stored with 
   21:                            #        specified user, full feedback
   22:                            # survey - unrandomized, ungraded, stored with 
   23:                            #          requesting user, full feedback
   24: 
   25: 
   26: 
   27: <numerical/formula/response needed: (has a default if nonexistant)>
   28: 
   29: resource.partid.responseid.tol   # lots of possibilities here
   30:                     # percentage, range (inclusive and exclusive),
   31: 		    # variable name, etc
   32:                     # 3%
   33:                     # 0.5
   34:                     # .05+
   35:                     # 3%+
   36:                     # 0.5+,.005
   37: 
   38: resource.partid.responseid.sig  # one or two comma sepearted integers, specifying the
   39:                      # number of significatn figures a student must use
   40: 
   41: 
   42: 
   43: <Problem sets using cstore (required):>
   44: resource.partid.solved # if not set, problem yet to be viewed
   45:                 # incorrect_attempted == incorrect and attempted
   46:                 # correct_by_student == correct by student work
   47:                 # correct_by_override == correct, instructor override
   48:                 # incorrect_by_override == incorrect, instructor override
   49:                 # excused == excused, problem no longer counts for student
   50:                 # '' (empty) == not attempted
   51:                 # ungraded_attempted == an ungraded answer has been
   52:                                           sumbitted and stored
   53: resource.partid.tries  # positive integer of number of unsuccessful attempts
   54:                 # made, malformed answers don't count if feedback is
   55:                 # on
   56: 
   57: resource.partid.awarded # float between 0 and 1, percentage of
   58:                  # resource.weight that the stundent earned.
   59: 
   60: resource.partid.award # final detailed award that was applied to the entire
   61:                       # part of the question, check awarddetail below for
   62:                       # possibilities
   63: 
   64: resource.partid.previous # boolean, is this submission a previous submission
   65: 
   66: resource.partid.responseid.submissons
   67:                     # the student submitted string for the part.response
   68: 
   69: resource.partid.responseid.awarddetail
   70:                      # list of all of the results of grading the submissions
   71:                      # in detailed form of the specific failure
   72: 		     #Possible values:
   73:                      # EXACT_ANS, APPROX_ANS : student is correct
   74:                      # NO_RESPONSE : student submitted no response
   75:                      # MISSING_ANSWER : student submitted some but not
   76:                      #                   all parts of a response
   77:                      # WANTED_NUMERIC : expected a numeric answer and
   78:                      #                   didn't get one
   79: 		     # SIG_FAIL : incorrect number of Significant Figures
   80:                      # UNIT_FAIL : incorrect unit
   81:                      # UNIT_NOTNEEDED : Submitted a unit when one shouldn't
   82:                      # NO_UNIT : needed a unit but none was submitted
   83: 		     # BAD_FORMULA : syntax error in submitted formula
   84:                      # INCORRECT : answer was wrong
   85:                      # SUBMITTED : submission wasn't graded
   86: 
   87: 		     # ERROR : unable to get a grade
   88: 
   89: resource.partid.responseid.message (optional)
   90: 		     # a message hat you need to send to the student
   91: 
   92: resource.partid.bonustries (optional)
   93:                      # if set, added to the maxtries parameter for student 
   94:                      # total number of tries overall

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