Update of /cvsroot/aimmath/AIM/WEB-INF/maple/aim
In directory sc8-pr-cvs1:/tmp/cvs-serv9312/WEB-INF/maple/aim
Modified Files:
Question.mpl
Log Message:
Index: Question.mpl
===================================================================
RCS file: /cvsroot/aimmath/AIM/WEB-INF/maple/aim/Question.mpl,v
retrieving revision 1.6
retrieving revision 1.7
diff -C2 -d -r1.6 -r1.7
*** Question.mpl 6 Sep 2003 10:46:28 -0000 1.6
--- Question.mpl 6 Sep 2003 13:13:36 -0000 1.7
***************
*** 2092,2104 ****
if not qtrymode then
if focused then
- # KM
jscript :="javascript:MoveFocus('%s');";
- # END KM
if focusindex > 1 then
- # KM
- # DIST href := sprintf("javascript:MoveFocus('%s');",
- # DIST labels[focusindex - 1]);
href := sprintf(jscript,labels[focusindex - 1]);
- # END KM
nav['AddContents',
["td",[["a","href" = href],__("Previous")]]];
--- 2092,2098 ----
***************
*** 2106,2114 ****
for label in labels do
- # KM
- # DIST href := sprintf("javascript:MoveFocus('%s');",
- # DIST label);
href := sprintf(jscript,label);
- # END KM
nav['AddContents',
["td",[["a","href" = href],label]]];
--- 2100,2104 ----
***************
*** 2116,2124 ****
if focusindex < nops(labels) then
- # KM
- # DIST href := sprintf("javascript:MoveFocus('%s');",
- # DIST labels[focusindex + 1]);
href := sprintf(jscript,labels[focusindex + 1]);
- # END KM
nav['AddContents',
["td",[["a","href" = href],__("Next")]]];
--- 2106,2110 ----
***************
*** 2136,2148 ****
[["a","href" = "javascript:Mark();"],__("Mark")]]];
fi;
- # KM
jscript := "javascript:Unfocus();";
- # END KM
nav['AddContents',
["td",
- # KM
- # DIST [["a","href" = "javascript:Unfocus();"],__("Unfocus")]],
[["a","href" = jscript],__("Unfocus")]],
- # END KM
["td",`aim/HelpLink`(__("Help"))]];
else # not focused
--- 2122,2129 ----
|