version 1.61, 2011/11/21 01:03:09
|
version 1.62, 2011/11/21 04:10:34
|
Line 71 function selwrite(text) {
|
Line 71 function selwrite(text) {
|
|
|
function choicestart() { |
function choicestart() { |
this.window.choices.document.open(); |
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 857 function init() {
|
Line 864 function init() {
|
} |
} |
|
|
this.window.selector.document.open(); |
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 870 function init() {
|
Line 880 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') { |