File:  [LON-CAPA] / doc / homework / datastorage
Revision 1.3: download - view: text, annotated - select for diffs
Wed Nov 22 00:12:58 2000 UTC (23 years, 5 months ago) by albertel
Branches: MAIN
CVS tags: HEAD
- revised standards

    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.significantfigures  # one or two comma sepearted integers
   29: 
   30: resource.partid.feedback   # at least a single bit (yes/no) may go with a
   31:                          # bitmask in the future, controls whether or not
   32:                          # a problem should say "correct" or not
   33: 
   34: 
   35: <Problem sets using cstore (required):>
   36: resource.partid.solved # if not set, problem yet to be viewed
   37:                 # 0 == incorrect and attempted
   38:                 # 1 == correct by student work
   39:                 # 2 == correct, instructor override
   40:                 # -1 == incorrect, instructor override
   41:                 # E == excused, problem no longer counts for student
   42: 
   43: resource.partid.tries  # positive integer of number of unsuccessful attempts
   44:                 # made, malformed answers don't count if feedback is
   45:                 # on
   46: 
   47: resource.partid.awarded # float between 0 and 1, percentage of
   48:                  # resource.weight that the stundent earned.
   49: 
   50: resource.partid.responseidsubmissons 
   51:                     # list of all of the student submitted strings for all of
   52:                     # answers in the part
   53: 
   54: resource.partid.responseid.awarddetail 
   55:                      # list of all of the results of grading the submissions
   56:                      # in detailed form of the specific failure
   57: 
   58: 
   59: 
   60: 
   61: 

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