File:  [LON-CAPA] / loncom / xml / scripttag.pm
Revision 1.34: download - view: text, annotated - select for diffs
Thu Feb 22 00:49:03 2001 UTC (23 years, 3 months ago) by albertel
Branches: MAIN
CVS tags: HEAD
- changed redirection, and output stack to work more intelligently, checkount radiobuttonresponse for a good example, should have to muck with @Apache::lonxml::outputstack and $Apache::lonxml::redirection directly use startredirection and enredirection

    1: # The LearningOnline Network with CAPA
    2: # <script> definiton
    3: # 2/21 Guy
    4: 
    5: package Apache::scripttag; 
    6: 
    7: use strict;
    8: use Apache::lonnet;
    9: 
   10: sub BEGIN {
   11:   &Apache::lonxml::register('Apache::scripttag',('script','scriptlib',
   12: 						 'parserlib','import',
   13:                                                  'window','display'));
   14: }
   15: 
   16: sub start_script {
   17:   my ($target,$token,$parstack,$parser,$safeeval)=@_;
   18:   my $args ='';
   19:   if ( $#$parstack > -1 ) { $args=$$parstack[$#$parstack]; }
   20:   my $type = &Apache::run::run("{$args;".'return $type}',$safeeval);
   21:   my $result='';
   22:   #&Apache::lonxml::debug("found type of $type");
   23:   if ($type eq "loncapa/perl") {
   24:     my $bodytext=&Apache::lonxml::get_all_text("/script",$$parser[$#$parser]);
   25:     
   26:     if ( $target eq "modified" ) {
   27:     } elsif ( $target eq "web" || $target eq "grade" ) {
   28:       &Apache::run::run($bodytext,$safeeval);
   29:     } elsif ($target eq "edit" ) {
   30:       &Apache::run::run($bodytext,$safeeval);
   31:       $result="<br /> &lt;$token->[1]&gt; output: <br />$bodytext<br />Source:<br />";
   32:       $result.=&editfield($token->[1],$bodytext);
   33:     }
   34:   } else {
   35:     if ($target ne "meta") { $result = $token->[4]; }
   36:   }
   37:   return $result;
   38: }
   39: 
   40: sub end_script {
   41:   my ($target,$token,$parstack,$parser,$safeeval)=@_;
   42:   if ( $target eq "meta" ) { return ''; } 
   43:   my $args ='';
   44:   if ( $#$parstack > -1 ) { $args=$$parstack[$#$parstack]; }
   45:   my $type = &Apache::run::run("{$args;".'return $type}',$safeeval);
   46:   my $result='';
   47:   #other script blocks need to survive
   48:   if ($type ne "loncapa/perl") { return $token->[2]; }
   49:   return '';
   50: }
   51: 
   52: sub start_display {
   53:   my ($target,$token,$parstack,$parser,$safeeval)=@_;
   54:   my $args ='';
   55:   if ( $#$parstack > -1 ) {
   56:     $args=$$parstack[$#$parstack];
   57:   }
   58:   my $bodytext=&Apache::lonxml::get_all_text("/display",$$parser[$#$parser]);
   59:   
   60:   if ( $target eq "modified" ) {
   61:   }
   62:   my $result=&Apache::run::run($bodytext,$safeeval);
   63:   if ($target eq 'grade' ) {
   64:     # grade should produce no output
   65:     $result='';
   66:   }
   67:   if ($target eq "edit" ) {
   68:     $result = 
   69:       "<br /> &lt;$token->[1]&gt; output: <br />$bodytext<br />Source:<br />";
   70:     $result.=&editfield($token->[1],$bodytext);
   71:   }
   72:   return $result;
   73: }
   74: 
   75: sub end_display {
   76: }
   77: 
   78: sub start_scriptlib {
   79:   my ($target,$token,$parstack,$parser,$safeeval)=@_;
   80:   my $bodytext=$$parser[$#$parser]->get_text("/scriptlib");
   81:   my $result ="";
   82: 
   83:   $bodytext=&Apache::run::evaluate($bodytext,$safeeval,
   84: 				   $$parstack[$#$parstack]);
   85:   my $location=&Apache::lonnet::filelocation($Apache::lonxml::pwd['-1'],
   86: 					     $bodytext);
   87:   my $script=&Apache::lonnet::getfile($location);
   88:   if ($script == -1) {
   89:     &Apache::lonxml::error("<b> Unable to find <i>$location</i> for scriptlib</b>");
   90:     return "";
   91:   }
   92:   &Apache::run::run($script,$safeeval);
   93:   #&Apache::lonxml::debug("ran $bodytext:<br />".&Apache::lonnet::getfile($bodytext)."<br />");
   94: 
   95:   if ($target eq "edit" ) {
   96:     $result.=&editfield($token->[1],$bodytext);
   97:   }
   98:   return $result;
   99: }
  100: 
  101: sub end_scriptlib {}
  102: 
  103: sub start_parserlib {
  104:   my ($target,$token,$parstack,$parser,$safeeval,$style)=@_;
  105:   my $bodytext=$$parser[$#$parser]->get_text("/parserlib");
  106:   my $result ="";
  107: 
  108:   $bodytext=&Apache::run::evaluate($bodytext,$safeeval,
  109: 				  $$parstack[$#$parstack]);
  110:   my $location=&Apache::lonnet::filelocation($Apache::lonxml::pwd['-1'],
  111: 					     $bodytext);
  112:   my $styletext=&Apache::lonnet::getfile($location);
  113:   #&Apache::lonxml::debug("found :$bodytext: in :$location: with :$styletext:");
  114:   if ($styletext == -1) {
  115:     &Apache::lonxml::error("<b> Unable to find <i>$location</i> for parserlib</b>");
  116:     return "";
  117:   }
  118:   %$style = ( %$style , &Apache::style::styleparser($target,$styletext));
  119: 
  120:   if ($target eq "edit" ) {
  121:     $result=&editfield($token->[1],$bodytext);
  122:   }
  123:   return $result;
  124: }
  125: 
  126: sub end_parserlib {
  127: }
  128: 
  129: sub start_window {
  130:   my ($target,$token,$parstack,$parser,$safeeval,$style)=@_;
  131:   my $result = '';
  132:   if ($target eq 'web') {
  133:     &Apache::lonxml::startredirection;
  134:   } 
  135:   return $result;  
  136: }
  137: 
  138: sub end_window {
  139:   my ($target,$token,$parstack,$parser,$safeeval,$style)=@_;
  140:   my $result;
  141:   if ($target eq 'web') {
  142:     my $output=&Apache::lonxml::endredirection;
  143:     $output =~ s/\"/\&quot\;/g;
  144:     $result = "<a href=\"javascript:newWindow=open(\'\',\'new_W\',\'width=500,height=200\');newWindow.document.open(\'text/html\',\'replace\');newWindow.document.writeln(\'<html><head><title>newwindow</title></head><body bgcolor=&quot;#FFFFFF&quot;> $output </body></html>\');newWindow.document.close();void(0);\"><sup>*</sup></a>";
  145:   } else {
  146:     $result = '';
  147:   }
  148:   return $result; 
  149: }
  150: 
  151: sub start_import {
  152:   my ($target,$token,$parstack,$parser,$safeeval,$style)=@_;
  153:   my $bodytext=$$parser[$#$parser]->get_text("/import");
  154:   my $result ="";
  155: 
  156:   $bodytext=Apache::run::evaluate($bodytext,$safeeval,$$parstack[$#$parstack]);
  157:   my $location=&Apache::lonnet::filelocation($Apache::lonxml::pwd['-1'],$bodytext);
  158:   my $file=&Apache::lonnet::getfile($location);
  159:   if ($file == -1) {
  160:     &Apache::lonxml::error("<b> Unable to find <i>$bodytext $location</i> for import</b>");
  161:     return "";
  162:   }
  163: 
  164:   my $dir=$location;
  165:   $dir=~s:/[^/]*$::;  
  166: #  &Apache::lonxml::debug("directory $dir $location file $file \n<b>END</b>\n");
  167:   &Apache::lonxml::newparser($parser,\$file,$dir);
  168: 
  169:   if ($target eq "edit" ) {
  170:     $result.=&editfield($token->[1],$bodytext);
  171:     $result.="Click<a href=\"/res/$bodytext\">here</a> to edit<br />"
  172:   }
  173:   return '';
  174: }
  175: 
  176: sub end_import {
  177: }
  178: 
  179: sub start_meta {
  180:   my ($target,$token,$parstack,$parser,$safeeval,$style)=@_;
  181:   my $result = '';
  182:     if ($target ne 'meta') {
  183:        $result = &Apache::lonxml::get_all_text("/meta",$$parser[$#$parser]); 
  184:        $result = '';
  185:       return $result; 
  186:     } else {
  187:        return $result; 
  188:     }
  189: }
  190: 
  191: sub end_meta {
  192: }
  193: 
  194: sub editfield {
  195:   my ($tag,$data)=@_;
  196:   
  197:   my $count=0;
  198:   my $maxlength=-1;
  199:   map { $count++;
  200: 	if (length($_) > $maxlength) { $maxlength = length ($_); }
  201:       } split ("\n", $data);
  202: 	  
  203:   return "<br />\n&lt;$tag&gt;<br />\n&nbsp;&nbsp;&nbsp;<textarea rows=\"$count\" cols=\"$maxlength\" name=homework_edit_".$Apache::lonxml::curdepth.">$data</textarea><br />\n&lt;/$tag&gt;<br />\n";
  204: }
  205: 
  206: sub getfilenothere {
  207:   my ($filename) = @_;
  208:   my $a="";
  209:   
  210:   $filename=~ s/^\s*(\S+)\s*$/$1/; ## strip off leading and trailing spaces
  211:   $filename="/home/httpd/html/res".$filename;
  212:   if (! -e $filename ) {
  213:     &Apache::lonnet::subscribe($filename);
  214:     &Apache::lonnet::repcopy($filename);
  215:   }
  216:   if (! -e $filename ) { return -1; };
  217:   my $fh=Apache::File->new($filename);
  218:   while (<$fh>) {
  219:       $a .=$_;
  220:   }
  221:   return $a
  222: }
  223: 
  224: 1;
  225: __END__

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>