version 1.80, 2001/05/28 18:27:46
|
version 1.96, 2001/06/16 18:34:31
|
Line 9
|
Line 9
|
# 5/10 Scott Harrison |
# 5/10 Scott Harrison |
# 5/26 Gerd Kortemeyer |
# 5/26 Gerd Kortemeyer |
# 5/27 H. K. Ng |
# 5/27 H. K. Ng |
|
# 6/2,6/3,6/8,6/9 Gerd Kortemeyer |
|
# 6/12,6/13 H. K. Ng |
|
# 6/16 Gerd Kortemeyer |
|
|
package Apache::lonxml; |
package Apache::lonxml; |
use vars |
use vars |
Line 17 use strict;
|
Line 20 use strict;
|
use HTML::TokeParser; |
use HTML::TokeParser; |
use Safe; |
use Safe; |
use Safe::Hole; |
use Safe::Hole; |
use Math::Trig; |
use Math::Cephes qw(:trigs :hypers :bessels erf erfc); |
use Math::Cephes qw(j0 j1 jn jv y0 y1 yn yv); |
use Math::Random qw(:all); |
use Opcode; |
use Opcode; |
|
|
sub register { |
sub register { |
Line 99 sub fontsettings() {
|
Line 102 sub fontsettings() {
|
} |
} |
|
|
sub registerurl { |
sub registerurl { |
return (<<ENDSCRIPT); |
if ($ENV{'REQUEST_URI'}!~/^\/(res\/)*adm\//) { |
|
my $hwkadd=''; |
|
if ($ENV{'REQUEST_URI'}=~/\.(problem|exam|quiz|assess|survey|form)$/) { |
|
if (&Apache::lonnet::allowed('vgr',$ENV{'request.course.id'})) { |
|
$hwkadd.=(<<ENDSUBM); |
|
menu.switchbutton |
|
(7,1,'subm.gif','view sub','missions', |
|
'gocmd("/adm/grades","submission")'); |
|
ENDSUBM |
|
} |
|
if (&Apache::lonnet::allowed('mgr',$ENV{'request.course.id'})) { |
|
$hwkadd.=(<<ENDGRDS); |
|
menu.switchbutton |
|
(7,2,'pgrd.gif','problem','grades', |
|
'gocmd("/adm/grades","viewgrades")'); |
|
ENDGRDS |
|
} |
|
if (&Apache::lonnet::allowed('opa',$ENV{'request.course.id'})) { |
|
$hwkadd.=(<<ENDPARM); |
|
menu.switchbutton |
|
(7,3,'pparm.gif','problem','parms', |
|
'gocmd("/adm/parmset","set")'); |
|
ENDPARM |
|
} |
|
} |
|
return (<<ENDREGTHIS); |
|
|
<script language="JavaScript"> |
<script language="JavaScript"> |
// BEGIN LON-CAPA Internal |
// BEGIN LON-CAPA Internal |
|
|
function LONCAPAreg() { |
function LONCAPAreg() { |
if (window.location.pathname!="/res/adm/pages/menu.html") { |
|
menu=window.open("","LONCAPAmenu"); |
menu=window.open("","LONCAPAmenu"); |
|
menu.clearTimeout(menu.menucltim); |
menu.currentURL=window.location.pathname; |
menu.currentURL=window.location.pathname; |
menu.currentStale=0; |
menu.currentStale=0; |
} |
menu.clearbut(3,1); |
|
menu.switchbutton |
|
(8,1,'eval.gif','evaluate','this','gopost("/adm/evaluate",currentURL)'); |
|
menu.switchbutton |
|
(8,2,'fdbk.gif','feedback','on this','gopost("/adm/feedback",currentURL)'); |
|
menu.switchbutton |
|
(8,3,'prt.gif','prepare','printout','gopost("/adm/printout",currentURL)'); |
|
menu.switchbutton |
|
(2,1,'back.gif','backward','','gopost("/adm/flip","back:"+currentURL)'); |
|
menu.switchbutton |
|
(2,3,'forw.gif','forward','','gopost("/adm/flip","forward:"+currentURL)'); |
|
menu.switchbutton |
|
(9,1,'sbkm.gif','set','bookmark','set_bookmark()'); |
|
menu.switchbutton |
|
(9,2,'vbkm.gif','view','bookmark','edit_bookmarks()'); |
|
menu.switchbutton |
|
(9,3,'anot.gif','anno-','tations','annotate()'); |
|
$hwkadd |
} |
} |
|
|
function LONCAPAstale() { |
function LONCAPAstale() { |
if (window.location.pathname!="/res/adm/pages/menu.html") { |
|
menu=window.open("","LONCAPAmenu"); |
menu=window.open("","LONCAPAmenu"); |
menu.currentStale=1; |
menu.currentStale=1; |
} |
menu.switchbutton |
|
(3,1,'reload.gif','return','location','go(currentURL)'); |
|
menu.clearbut(7,1); |
|
menu.clearbut(7,2); |
|
menu.clearbut(7,3); |
|
menu.menucltim=menu.setTimeout( |
|
'clearbut(2,1);clearbut(2,3);clearbut(8,1);clearbut(8,2);clearbut(8,3);'+ |
|
'clearbut(9,1);clearbut(9,2);clearbut(9,3);', |
|
2000); |
|
|
|
} |
|
|
|
// END LON-CAPA Internal |
|
</script> |
|
ENDREGTHIS |
|
|
|
} else { |
|
return (<<ENDDONOTREGTHIS); |
|
|
|
<script language="JavaScript"> |
|
// BEGIN LON-CAPA Internal |
|
|
|
function LONCAPAreg() { |
|
menu=window.open("","LONCAPAmenu"); |
|
menu.currentStale=1; |
|
menu.clearbut(2,1); |
|
menu.clearbut(2,3); |
|
menu.clearbut(8,1); |
|
menu.clearbut(8,2); |
|
menu.clearbut(8,3); |
|
if (menu.currentURL) { |
|
menu.switchbutton |
|
(3,1,'reload.gif','return','location','go(currentURL)'); |
|
} else { |
|
menu.clearbut(3,1); |
|
} |
|
} |
|
|
|
function LONCAPAstale() { |
} |
} |
|
|
// END LON-CAPA Internal |
// END LON-CAPA Internal |
</script> |
</script> |
ENDSCRIPT |
ENDDONOTREGTHIS |
|
|
|
} |
} |
} |
|
|
sub loadevents() { |
sub loadevents() { |
Line 137 sub printalltags {
|
Line 224 sub printalltags {
|
} |
} |
|
|
sub xmlparse { |
sub xmlparse { |
|
|
my ($target,$content_file_string,$safeinit,%style_for_target) = @_; |
my ($target,$content_file_string,$safeinit,%style_for_target) = @_; |
if ($target eq 'meta') { |
|
$Apache::lonxml::redirection = 0; |
&setup_globals($target); |
$Apache::lonxml::metamode = 1; |
|
$Apache::lonxml::evaluate = 1; |
|
$Apache::lonxml::import = 0; |
|
} elsif ($target eq 'grade') { |
|
&startredirection; |
|
$Apache::lonxml::metamode = 0; |
|
$Apache::lonxml::evaluate = 1; |
|
$Apache::lonxml::import = 1; |
|
} elsif ($target eq 'modified') { |
|
$Apache::lonxml::redirection = 0; |
|
$Apache::lonxml::metamode = 0; |
|
$Apache::lonxml::evaluate = 0; |
|
$Apache::lonxml::import = 0; |
|
} else { |
|
$Apache::lonxml::redirection = 0; |
|
$Apache::lonxml::metamode = 0; |
|
$Apache::lonxml::evaluate = 1; |
|
$Apache::lonxml::import = 1; |
|
} |
|
#&printalltags(); |
#&printalltags(); |
my @pars = (); |
my @pars = (); |
@Apache::lonxml::pwd=(); |
@Apache::lonxml::pwd=(); |
Line 173 sub xmlparse {
|
Line 240 sub xmlparse {
|
|
|
my $safeeval = new Safe; |
my $safeeval = new Safe; |
my $safehole = new Safe::Hole; |
my $safehole = new Safe::Hole; |
$safeeval->permit("entereval"); |
&init_safespace($target,$safeeval,$safehole,$safeinit); |
$safeeval->permit(":base_math"); |
|
$safeeval->permit("sort"); |
|
$safeeval->deny(":base_io"); |
|
# $safe->share_from('Math::Trig',['acsc','asin','acos','atan']); |
|
$safehole->wrap(\&Apache::lonnet::EXT,$safeeval,'&EXT'); |
|
$safehole->wrap(\&Math::Trig::acsc,$safeeval,'&acsc'); |
|
$safehole->wrap(\&Math::Trig::acosec,$safeeval,'&acosec'); |
|
$safehole->wrap(\&Math::Trig::asec,$safeeval,'&asec'); |
|
$safehole->wrap(\&Math::Trig::acot,$safeeval,'&acot'); |
|
$safehole->wrap(\&Math::Trig::acotan,$safeeval,'&acotan'); |
|
$safehole->wrap(\&Math::Trig::acsch,$safeeval,'&acsch'); |
|
$safehole->wrap(\&Math::Trig::acosech,$safeeval,'&acosech'); |
|
$safehole->wrap(\&Math::Trig::asech,$safeeval,'&asech'); |
|
$safehole->wrap(\&Math::Trig::acoth,$safeeval,'&acoth'); |
|
$safehole->wrap(\&Math::Trig::acotanh,$safeeval,'&acotanh'); |
|
$safehole->wrap(\&Math::Trig::asin,$safeeval,'&asin'); |
|
$safehole->wrap(\&Math::Trig::acos,$safeeval,'&acos'); |
|
$safehole->wrap(\&Math::Trig::atan,$safeeval,'&atan'); |
|
$safehole->wrap(\&Math::Trig::asinh,$safeeval,'&asinh'); |
|
$safehole->wrap(\&Math::Trig::acosh,$safeeval,'&acosh'); |
|
$safehole->wrap(\&Math::Trig::atanh,$safeeval,'&atanh'); |
|
$safehole->wrap(\&Math::Trig::atan2,$safeeval,'&atan2'); |
|
$safehole->wrap(\&Math::Trig::csc,$safeeval,'&csc'); |
|
$safehole->wrap(\&Math::Trig::cosec,$safeeval,'&cosec'); |
|
$safehole->wrap(\&Math::Trig::sec,$safeeval,'&sec'); |
|
$safehole->wrap(\&Math::Trig::cot,$safeeval,'&cot'); |
|
$safehole->wrap(\&Math::Trig::cotan,$safeeval,'&cotan'); |
|
$safehole->wrap(\&Math::Trig::csch,$safeeval,'&csch'); |
|
$safehole->wrap(\&Math::Trig::cosech,$safeeval,'&cosech'); |
|
$safehole->wrap(\&Math::Trig::sech,$safeeval,'&sech'); |
|
$safehole->wrap(\&Math::Trig::coth,$safeeval,'&coth'); |
|
$safehole->wrap(\&Math::Trig::cotanh,$safeeval,'&cptanh'); |
|
$safehole->wrap(\&Math::Trig::deg2rad,$safeeval,'°2rad'); |
|
$safehole->wrap(\&Math::Trig::deg2grad,$safeeval,'°2grad'); |
|
$safehole->wrap(\&Math::Trig::grad2deg,$safeeval,'&grad2deg'); |
|
$safehole->wrap(\&Math::Trig::grad2rad,$safeeval,'&grad2rad'); |
|
$safehole->wrap(\&Math::Trig::rad2deg,$safeeval,'&rad2deg'); |
|
$safehole->wrap(\&Math::Trig::rad2grad,$safeeval,'&rad2grad'); |
|
$safehole->wrap(\&Math::Trig::pi,$safeeval,'&pi'); |
|
$safehole->wrap(\&Math::Cephes::erf,$safeeval,'&erf'); |
|
$safehole->wrap(\&Math::Cephes::erfc,$safeeval,'&erfc'); |
|
$safehole->wrap(\&Math::Cephes::j0,$safeeval,'&j0'); |
|
$safehole->wrap(\&Math::Cephes::j1,$safeeval,'&j1'); |
|
$safehole->wrap(\&Math::Cephes::jn,$safeeval,'&jn'); |
|
$safehole->wrap(\&Math::Cephes::jv,$safeeval,'&jv'); |
|
$safehole->wrap(\&Math::Cephes::y0,$safeeval,'&y0'); |
|
$safehole->wrap(\&Math::Cephes::y1,$safeeval,'&y1'); |
|
$safehole->wrap(\&Math::Cephes::yn,$safeeval,'&yn'); |
|
$safehole->wrap(\&Math::Cephes::yv,$safeeval,'&yv'); |
|
|
|
#need to inspect this class of ops |
|
# $safeeval->deny(":base_orig"); |
|
$safeinit .= ';$external::target='.$target.';'; |
|
$safeinit .= ';$external::randomseed='.&Apache::lonnet::rndseed().';'; |
|
&Apache::run::run($safeinit,$safeeval); |
|
#-------------------- Redefinition of the target in the case of compound target |
#-------------------- Redefinition of the target in the case of compound target |
|
|
($target, my @tenta) = split('&&',$target); |
($target, my @tenta) = split('&&',$target); |
Line 259 sub xmlparse {
|
Line 271 sub xmlparse {
|
$safeeval,\%style_for_target,@parstack); |
$safeeval,\%style_for_target,@parstack); |
} |
} |
} else { |
} else { |
$result = &callsub("start_$token->[1]", $target, $token,\@parstack, |
$result = &callsub("start_$token->[1]", $target, $token, \@stack, |
\@pars, $safeeval, \%style_for_target); |
\@parstack, \@pars, $safeeval, \%style_for_target); |
} |
} |
} elsif ($token->[0] eq 'E') { |
} elsif ($token->[0] eq 'E') { |
#clear out any tags that didn't end |
#clear out any tags that didn't end |
Line 281 sub xmlparse {
|
Line 293 sub xmlparse {
|
} |
} |
|
|
} else { |
} else { |
$result = &callsub("end_$token->[1]", $target, $token, \@parstack, |
$result = &callsub("end_$token->[1]", $target, $token, \@stack, |
\@pars,$safeeval, \%style_for_target); |
\@parstack, \@pars,$safeeval, \%style_for_target); |
} |
} |
} else { |
} else { |
&Apache::lonxml::error("Unknown token event :$token->[0]:$token->[1]:"); |
&Apache::lonxml::error("Unknown token event :$token->[0]:$token->[1]:"); |
Line 343 sub recurse {
|
Line 355 sub recurse {
|
push (@innerstack,$tokenpat->[1]); |
push (@innerstack,$tokenpat->[1]); |
push (@innerparstack,&parstring($tokenpat)); |
push (@innerparstack,&parstring($tokenpat)); |
&increasedepth($tokenpat); |
&increasedepth($tokenpat); |
$partstring = &callsub("start_$tokenpat->[1]", |
$partstring = &callsub("start_$tokenpat->[1]", $target, $tokenpat, |
$target, $tokenpat, \@innerparstack, |
\@innerstack, \@innerparstack, \@pat, |
\@pat, $safeeval, $style_for_target); |
$safeeval, $style_for_target); |
} elsif ($tokenpat->[0] eq 'E') { |
} elsif ($tokenpat->[0] eq 'E') { |
#clear out any tags that didn't end |
#clear out any tags that didn't end |
while ($tokenpat->[1] ne $innerstack[$#innerstack] |
while ($tokenpat->[1] ne $innerstack[$#innerstack] |
Line 353 sub recurse {
|
Line 365 sub recurse {
|
&Apache::lonxml::warning("Unbalanced tags in resource $innerstack['-1']"); |
&Apache::lonxml::warning("Unbalanced tags in resource $innerstack['-1']"); |
pop @innerstack;pop @innerparstack;&decreasedepth($tokenpat); |
pop @innerstack;pop @innerparstack;&decreasedepth($tokenpat); |
} |
} |
$partstring = &callsub("end_$tokenpat->[1]", |
$partstring = &callsub("end_$tokenpat->[1]", $target, $tokenpat, |
$target, $tokenpat, \@innerparstack, |
\@innerstack, \@innerparstack, \@pat, |
\@pat, $safeeval, $style_for_target); |
$safeeval, $style_for_target); |
} else { |
} else { |
&Apache::lonxml::error("Unknown token event :$tokenpat->[0]:$tokenpat->[1]:"); |
&Apache::lonxml::error("Unknown token event :$tokenpat->[0]:$tokenpat->[1]:"); |
} |
} |
Line 388 sub recurse {
|
Line 400 sub recurse {
|
} |
} |
|
|
sub callsub { |
sub callsub { |
my ($sub,$target,$token,$parstack,$parser,$safeeval,$style)=@_; |
my ($sub,$target,$token,$tagstack,$parstack,$parser,$safeeval,$style)=@_; |
my $currentstring=''; |
my $currentstring=''; |
my $nodefault; |
my $nodefault; |
{ |
{ |
my $sub1; |
my $sub1; |
no strict 'refs'; |
no strict 'refs'; |
if ($target eq 'edit' && $token->[0] eq 'S') { |
|
$currentstring = &Apache::edit::tag_start($target,$token,$parstack,$parser, |
|
$safeeval,$style); |
|
} |
|
my $tag=$token->[1]; |
my $tag=$token->[1]; |
my $space=$Apache::lonxml::alltags{$tag}; |
my $space=$Apache::lonxml::alltags{$tag}; |
if (!$space) { |
if (!$space) { |
Line 409 sub callsub {
|
Line 417 sub callsub {
|
#&Apache::lonxml::debug("Calling sub $sub in $space $metamode<br />\n"); |
#&Apache::lonxml::debug("Calling sub $sub in $space $metamode<br />\n"); |
$sub1="$space\:\:$sub"; |
$sub1="$space\:\:$sub"; |
$Apache::lonxml::curdepth=join('_',@Apache::lonxml::depthcounter); |
$Apache::lonxml::curdepth=join('_',@Apache::lonxml::depthcounter); |
($currentstring,$nodefault) = &$sub1($target,$token,$parstack,$parser, |
($currentstring,$nodefault) = &$sub1($target,$token,$tagstack, |
$safeeval,$style); |
$parstack,$parser,$safeeval, |
|
$style); |
} else { |
} else { |
#&Apache::lonxml::debug("NOT Calling sub $sub in $space $metamode<br />\n"); |
#&Apache::lonxml::debug("NOT Calling sub $sub in $space $metamode<br />\n"); |
if ($metamode <1) { |
if ($metamode <1) { |
Line 421 sub callsub {
|
Line 430 sub callsub {
|
} |
} |
} |
} |
} |
} |
&Apache::lonxml::debug("nodefalt:$nodefault:"); |
# &Apache::lonxml::debug("nodefalt:$nodefault:"); |
if ($currentstring eq '' && $nodefault eq '') { |
if ($currentstring eq '' && $nodefault eq '') { |
if ($target eq 'edit') { |
if ($target eq 'edit') { |
&Apache::lonxml::debug("doing default edit for $token->[1]"); |
&Apache::lonxml::debug("doing default edit for $token->[1]"); |
Line 444 sub callsub {
|
Line 453 sub callsub {
|
return $currentstring; |
return $currentstring; |
} |
} |
|
|
|
sub setup_globals { |
|
my ($target)=@_; |
|
if ($target eq 'meta') { |
|
$Apache::lonxml::redirection = 0; |
|
$Apache::lonxml::metamode = 1; |
|
$Apache::lonxml::evaluate = 1; |
|
$Apache::lonxml::import = 0; |
|
} elsif ($target eq 'grade') { |
|
&startredirection; |
|
$Apache::lonxml::metamode = 0; |
|
$Apache::lonxml::evaluate = 1; |
|
$Apache::lonxml::import = 1; |
|
} elsif ($target eq 'modified') { |
|
$Apache::lonxml::redirection = 0; |
|
$Apache::lonxml::metamode = 0; |
|
$Apache::lonxml::evaluate = 0; |
|
$Apache::lonxml::import = 0; |
|
} elsif ($target eq 'edit') { |
|
$Apache::lonxml::redirection = 0; |
|
$Apache::lonxml::metamode = 0; |
|
$Apache::lonxml::evaluate = 0; |
|
$Apache::lonxml::import = 0; |
|
} else { |
|
$Apache::lonxml::redirection = 0; |
|
$Apache::lonxml::metamode = 0; |
|
$Apache::lonxml::evaluate = 1; |
|
$Apache::lonxml::import = 1; |
|
} |
|
} |
|
|
|
sub init_safespace { |
|
my ($target,$safeeval,$safehole,$safeinit) = @_; |
|
$safeeval->permit("entereval"); |
|
$safeeval->permit(":base_math"); |
|
$safeeval->permit("sort"); |
|
$safeeval->deny(":base_io"); |
|
$safehole->wrap(\&Apache::lonnet::EXT,$safeeval,'&EXT'); |
|
|
|
$safehole->wrap(\&Math::Cephes::asin,$safeeval,'&asin'); |
|
$safehole->wrap(\&Math::Cephes::acos,$safeeval,'&acos'); |
|
$safehole->wrap(\&Math::Cephes::atan,$safeeval,'&atan'); |
|
$safehole->wrap(\&Math::Cephes::sinh,$safeeval,'&sinh'); |
|
$safehole->wrap(\&Math::Cephes::cosh,$safeeval,'&cosh'); |
|
$safehole->wrap(\&Math::Cephes::tanh,$safeeval,'&tanh'); |
|
$safehole->wrap(\&Math::Cephes::asinh,$safeeval,'&asinh'); |
|
$safehole->wrap(\&Math::Cephes::acosh,$safeeval,'&acosh'); |
|
$safehole->wrap(\&Math::Cephes::atanh,$safeeval,'&atanh'); |
|
$safehole->wrap(\&Math::Cephes::erf,$safeeval,'&erf'); |
|
$safehole->wrap(\&Math::Cephes::erfc,$safeeval,'&erfc'); |
|
$safehole->wrap(\&Math::Cephes::j0,$safeeval,'&j0'); |
|
$safehole->wrap(\&Math::Cephes::j1,$safeeval,'&j1'); |
|
$safehole->wrap(\&Math::Cephes::jn,$safeeval,'&jn'); |
|
$safehole->wrap(\&Math::Cephes::jv,$safeeval,'&jv'); |
|
$safehole->wrap(\&Math::Cephes::y0,$safeeval,'&y0'); |
|
$safehole->wrap(\&Math::Cephes::y1,$safeeval,'&y1'); |
|
$safehole->wrap(\&Math::Cephes::yn,$safeeval,'&yn'); |
|
$safehole->wrap(\&Math::Cephes::yv,$safeeval,'&yv'); |
|
$safehole->wrap(\&Math::Random::random_beta,$safeeval,'&math_random_beta'); |
|
$safehole->wrap(\&Math::Random::random_chi_square,$safeeval,'&math_random_chi_square'); |
|
$safehole->wrap(\&Math::Random::random_exponential,$safeeval,'&math_random_exponential'); |
|
$safehole->wrap(\&Math::Random::random_f,$safeeval,'&math_random_f'); |
|
$safehole->wrap(\&Math::Random::random_gamma,$safeeval,'&math_random_gamma'); |
|
$safehole->wrap(\&Math::Random::random_multivariate_normal,$safeeval,'&math_random_multivariate_normal'); |
|
$safehole->wrap(\&Math::Random::random_multinomial,$safeeval,'&math_random_multinomial'); |
|
$safehole->wrap(\&Math::Random::random_noncentral_chi_square,$safeeval,'&math_random_noncentral_chi_square'); |
|
$safehole->wrap(\&Math::Random::random_noncentral_f,$safeeval,'&math_random_noncentral_f'); |
|
$safehole->wrap(\&Math::Random::random_normal,$safeeval,'&math_random_normal'); |
|
$safehole->wrap(\&Math::Random::random_permutation,$safeeval,'&math_random_permutation'); |
|
$safehole->wrap(\&Math::Random::random_permuted_index,$safeeval,'&math_random_permuted_index'); |
|
$safehole->wrap(\&Math::Random::random_uniform,$safeeval,'&math_random_uniform'); |
|
$safehole->wrap(\&Math::Random::random_poisson,$safeeval,'&math_random_poisson'); |
|
$safehole->wrap(\&Math::Random::random_uniform_integer,$safeeval,'&math_random_uniform_integer'); |
|
$safehole->wrap(\&Math::Random::random_negative_binomial,$safeeval,'&math_random_negative_binomial'); |
|
$safehole->wrap(\&Math::Random::random_binomial,$safeeval,'&math_random_binomial'); |
|
$safehole->wrap(\&Math::Random::random_seed_from_phrase,$safeeval,'&random_seed_from_phrase'); |
|
$safehole->wrap(\&Math::Random::random_set_seed_from_phrase,$safeeval,'&random_set_seed_from_phrase'); |
|
$safehole->wrap(\&Math::Random::random_get_seed,$safeeval,'&random_get_seed'); |
|
$safehole->wrap(\&Math::Random::random_set_seed,$safeeval,'&random_set_seed'); |
|
|
|
#need to inspect this class of ops |
|
# $safeeval->deny(":base_orig"); |
|
$safeinit .= ';$external::target="'.$target.'";'; |
|
$safeinit .= ';$external::randomseed='.&Apache::lonnet::rndseed().';'; |
|
&Apache::run::run($safeinit,$safeeval); |
|
} |
|
|
sub startredirection { |
sub startredirection { |
$Apache::lonxml::redirection++; |
$Apache::lonxml::redirection++; |
push (@Apache::lonxml::outputstack, ''); |
push (@Apache::lonxml::outputstack, ''); |
Line 725 ENDNOTFOUND
|
Line 820 ENDNOTFOUND
|
|
|
sub debug { |
sub debug { |
if ($Apache::lonxml::debug eq 1) { |
if ($Apache::lonxml::debug eq 1) { |
print "DEBUG:".$_[0]."<br />\n"; |
print("DEBUG:".$_[0]."<br />\n"); |
} |
} |
} |
} |
|
|
Line 757 sub warning {
|
Line 852 sub warning {
|
} |
} |
} |
} |
|
|
|
sub get_param { |
|
my ($param,$parstack,$safeeval,$context) = @_; |
|
if ( ! $context ) { $context = -1; } |
|
my $args =''; |
|
if ( $#$parstack > (-2-$context) ) { $args=$$parstack[$context]; } |
|
return &Apache::run::run("{$args;".'return $'.$param.'}',$safeeval); #' |
|
} |
|
|
sub register_insert { |
sub register_insert { |
my @data = split /\n/, &Apache::lonnet::getfile('/home/httpd/lonTabs/insertlist.tab'); |
my @data = split /\n/, &Apache::lonnet::getfile('/home/httpd/lonTabs/insertlist.tab'); |
my $i; |
my $i; |
Line 766 sub register_insert {
|
Line 869 sub register_insert {
|
my $line = $data[$i]; |
my $line = $data[$i]; |
if ( $line =~ /^\#/ || $line =~ /^\s*\n/) { next; } |
if ( $line =~ /^\#/ || $line =~ /^\s*\n/) { next; } |
if ( $line =~ /TABLE/ ) { last; } |
if ( $line =~ /TABLE/ ) { last; } |
my ($tag,$descrip,$function,$show) = split(/,/, $line); |
my ($tag,$descrip,$color,$function,$show) = split(/,/, $line); |
$insertlist{"$tagnum.tag"} = $tag; |
$insertlist{"$tagnum.tag"} = $tag; |
$insertlist{"$tagnum.description"} = $descrip; |
$insertlist{"$tagnum.description"} = $descrip; |
|
$insertlist{"$tagnum.color"} = $color; |
$insertlist{"$tagnum.function"} = $function; |
$insertlist{"$tagnum.function"} = $function; |
$insertlist{"$tagnum.show"}= $show; |
$insertlist{"$tagnum.show"}= $show; |
|
$insertlist{"$tag.num"}=$tagnum; |
$tagnum++; |
$tagnum++; |
} |
} |
$i++; #skipping TABLE line |
$i++; #skipping TABLE line |