[Aimmath-commit] AIM/WEB-INF/maple/aim/admin Quiz.mpl,1.4,1.5
Brought to you by:
gustav_delius,
npstrick
|
From: <gus...@us...> - 2003-09-25 19:37:14
|
Update of /cvsroot/aimmath/AIM/WEB-INF/maple/aim/admin
In directory sc8-pr-cvs1:/tmp/cvs-serv7059/WEB-INF/maple/aim/admin
Modified Files:
Quiz.mpl
Log Message:
Added extra optional boolean parameter "KeepQuestionOrder" which, when set to true, avoids reordering of questions. This is to make it easier for external programs to interface with AiM
Index: Quiz.mpl
===================================================================
RCS file: /cvsroot/aimmath/AIM/WEB-INF/maple/aim/admin/Quiz.mpl,v
retrieving revision 1.4
retrieving revision 1.5
diff -C2 -d -r1.4 -r1.5
*** Quiz.mpl 30 Aug 2003 21:08:04 -0000 1.4
--- Quiz.mpl 25 Sep 2003 19:37:10 -0000 1.5
***************
*** 24,27 ****
--- 24,28 ----
['Parameter',"SelectorText" = ""],
['Parameter',"RandQuestionOrder"::boolean = false],
+ ['Parameter',"KeepQuestionOrder"::boolean = false],
['Parameter',
***************
*** 346,350 ****
fi;
! if action <> "UseAllQuestions" then
# reorder the question list
qlist := NULL;
--- 347,351 ----
fi;
! if action <> "UseAllQuestions" and p["KeepQuestionOrder"] = "false" then
# reorder the question list
qlist := NULL;
|