version 1.57, 2010/02/28 23:48:10
|
version 1.59.2.1, 2011/11/21 13:39:40
|
Line 70 function selwrite(text) {
|
Line 70 function selwrite(text) {
|
} |
} |
|
|
function choicestart() { |
function choicestart() { |
this.window.choices.document.clear(); |
this.window.choices.document.open(); |
choicewrite('<html><body>'); |
choicewrite('<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">'); |
|
choicewrite('<html xmlns="http://www.w3.org/1999/xhtml">'); |
choicewrite('<head>'); |
choicewrite('<head>'); |
|
choicewrite('<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />'); |
|
choicewrite('<title>LON-CAPA</title>'); |
choicewrite('<style type="text/css">'); |
choicewrite('<style type="text/css">'); |
choicewrite('<!--'); |
choicewrite('<!--'); |
choicewrite('body {'); |
choicewrite('body {'); |
Line 86 function choicestart() {
|
Line 89 function choicestart() {
|
choicewrite('-->'); |
choicewrite('-->'); |
choicewrite('</style>'); |
choicewrite('</style>'); |
choicewrite('</head>'); |
choicewrite('</head>'); |
|
choicewrite('<body>'); |
} |
} |
|
|
function choiceend() { |
function choiceend() { |
Line 382 function draw() {
|
Line 386 function draw() {
|
if (ptype=='string') { |
if (ptype=='string') { |
choicewrite(' action="javascript:stringeval();"'); |
choicewrite(' action="javascript:stringeval();"'); |
} |
} |
|
if (ptype != 'int' && ptype != 'float' && ptype != 'string') { |
|
choicewrite(' action=""'); |
|
} |
choicewrite('>'); |
choicewrite('>'); |
if (ptype=='tolerance') { |
if (ptype=='tolerance') { |
// 0: pscat |
// 0: pscat |
Line 648 function draw() {
|
Line 655 function draw() {
|
' type="radio" '+callradiostringeval('anonsurveycred')); |
' type="radio" '+callradiostringeval('anonsurveycred')); |
if (svalue=='anonsurveycred') { choicewrite(' checked="checked"'); } |
if (svalue=='anonsurveycred') { choicewrite(' checked="checked"'); } |
choicewrite('> Anonymous Survey (credit for submission)</label><br />'); |
choicewrite('> Anonymous Survey (credit for submission)</label><br />'); |
|
choicewrite('<label><input name="stringval" value="randomizetry"'+ |
|
' type="radio" '+callradiostringeval('randomizetry')); |
|
if (svalue=='randomizetry') { choicewrite(' checked="checked"'); } |
|
choicewrite('> New Randomization Each N Tries (default N=1)</label><br />'); |
choicewrite('<label><input name="stringval" value="library"'+ |
choicewrite('<label><input name="stringval" value="library"'+ |
' type="radio" '+callradiostringeval('library')); |
' type="radio" '+callradiostringeval('library')); |
if (svalue=='library') { choicewrite(' checked="checked"'); } |
if (svalue=='library') { choicewrite(' checked="checked"'); } |
Line 671 function draw() {
|
Line 681 function draw() {
|
' type="radio" '+callradiostringeval('png,jpg,jpeg,gif')); |
' type="radio" '+callradiostringeval('png,jpg,jpeg,gif')); |
if (svalue=='png,jpg,jpeg,gif') { choicewrite(' checked="checked"'); } |
if (svalue=='png,jpg,jpeg,gif') { choicewrite(' checked="checked"'); } |
choicewrite(' /> Picture File</label><br />'); |
choicewrite(' /> Picture File</label><br />'); |
choicewrite('<label><input name="radstringval" value="doc,xls,ppt"'+ |
choicewrite('<label><input name="radstringval" value="doc,docx,xls,xlsx,ppt,pptx"'+ |
' type="radio" '+callradiostringeval('doc,xls,ppt')); |
' type="radio" '+callradiostringeval('doc,docx,xls,xlsx,ppt,pptx')); |
|
if (svalue=='doc,docx,xls,xlsx,ppt,pptx') { choicewrite(' checked="checked"'); } |
if (svalue=='doc,xls,ppt') { choicewrite(' checked="checked"'); } |
if (svalue=='doc,xls,ppt') { choicewrite(' checked="checked"'); } |
choicewrite(' /> Office Document</label><br />'); |
choicewrite(' /> Office Document</label><br />'); |
choicewrite('<input name="stringval" size="20" value="'+escapeHTML(svalue)+ |
choicewrite('<input name="stringval" size="20" value="'+escapeHTML(svalue)+ |
Line 836 function init() {
|
Line 847 function init() {
|
} |
} |
} |
} |
|
|
this.window.selector.document.clear(); |
this.window.selector.document.open(); |
selwrite('<html><body>'); |
selwrite('<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">'); |
|
selwrite('<html xmlns="http://www.w3.org/1999/xhtml">'); |
selwrite('<head>'); |
selwrite('<head>'); |
|
selwrite('<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />'); |
|
selwrite('<title>LON-CAPA</title>'); |
selwrite('<style type="text/css">'); |
selwrite('<style type="text/css">'); |
selwrite('<!--'); |
selwrite('<!--'); |
selwrite('body {'); |
selwrite('body {'); |
Line 850 function init() {
|
Line 864 function init() {
|
selwrite('-->'); |
selwrite('-->'); |
selwrite('</style>'); |
selwrite('</style>'); |
selwrite('</head>'); |
selwrite('</head>'); |
selwrite('<form name="fsel"><b>'+pname+'</b><br />'); |
selwrite('<body>'); |
|
selwrite('<form name="fsel" action=""><b>'+pname+'</b><br />'); |
selwrite('<select name="fcat" onchange="parent.catchange();">'); |
selwrite('<select name="fcat" onchange="parent.catchange();">'); |
|
|
if (ptype=='tolerance') { |
if (ptype=='tolerance') { |