File:  [LON-CAPA] / loncom / homework / outputtags.pm
Revision 1.23: download - view: text, annotated - select for diffs
Thu Nov 21 22:35:32 2002 UTC (21 years, 5 months ago) by albertel
Branches: MAIN
CVS tags: HEAD
- now defaults to 1 point even if no points set better
- Also works for printouts
- Fixes BUG#969

    1: # The LearningOnline Network with CAPA 
    2: # tags that create controlled output
    3: #
    4: # $Id: outputtags.pm,v 1.23 2002/11/21 22:35:32 albertel Exp $
    5: #
    6: # Copyright Michigan State University Board of Trustees
    7: #
    8: # This file is part of the LearningOnline Network with CAPA (LON-CAPA).
    9: #
   10: # LON-CAPA is free software; you can redistribute it and/or modify
   11: # it under the terms of the GNU General Public License as published by
   12: # the Free Software Foundation; either version 2 of the License, or
   13: # (at your option) any later version.
   14: #
   15: # LON-CAPA is distributed in the hope that it will be useful,
   16: # but WITHOUT ANY WARRANTY; without even the implied warranty of
   17: # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
   18: # GNU General Public License for more details.
   19: #
   20: # You should have received a copy of the GNU General Public License
   21: # along with LON-CAPA; if not, write to the Free Software
   22: # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
   23: #
   24: # /home/httpd/html/adm/gpl.txt
   25: #
   26: # http://www.lon-capa.org/
   27: #
   28: 
   29: package Apache::outputtags; 
   30: 
   31: use strict;
   32: use Apache::lonnet;
   33: use POSIX qw(strftime);
   34: 
   35: BEGIN {
   36:     &Apache::lonxml::register('Apache::outputtags',('displayduedate','displaytitle','displayweight'));
   37: }
   38: 
   39: sub initialize_outputtags {
   40:     %Apache::outputtags::showonce=();
   41: }
   42: 
   43: sub start_displayduedate {
   44:     my ($target,$token,$tagstack,$parstack,$parser,$safeeval)=@_;
   45:     my $result;
   46:     if (exists($Apache::outputtags::showonce{'displayduedate'})) {
   47: 	return '';
   48:     } else {
   49: 	$Apache::outputtags::showonce{'displayduedate'}=1;
   50:     }
   51:     my $status=$Apache::inputtags::status['-1'];
   52:     &Apache::lonxml::debug("got a $status in duedatebox");
   53:     if (($status =~ /CAN.*_ANSWER/) && ($target eq 'web')) {
   54: #	my $format = &Apache::lonxml::get_param('format',$parstack,$safeeval);
   55: #	if ($format eq '') {
   56: #	    &Apache::lonxml::debug("using default format");
   57: #	    $format="%c";
   58: #	}
   59: 	my $id = $Apache::inputtags::part;
   60: 	my $date = &Apache::lonnet::EXT("resource.$id.duedate");
   61: 	&Apache::lonxml::debug("duedatebox found $date for $id");
   62: 	$result ='<table border="on"><tr><td>Due '.
   63: 	    &Apache::lonnavmaps::timeToHumanString($date).
   64: 		'</td></tr></table>';
   65: #        } else {
   66: #	    $result ='<table border="on"><tr><td>No due date set.</td></tr></table>';
   67: #	}
   68:     } elsif ( $target eq 'edit' ) {
   69: 	$result=&Apache::edit::tag_start($target,$token);
   70: 	$result.='</td></tr>';
   71: 	$result.=&Apache::edit::end_table();
   72:     }
   73:     return $result;
   74: }
   75: 
   76: sub end_displayduedate {
   77:     my ($target,$token,$tagstack,$parstack,$parser,$safeeval)=@_;
   78:     my @result;
   79:     if ($target eq 'edit') { $result[1]='no'; }
   80:     return @result;
   81: }
   82: 
   83: sub start_displaytitle {
   84:     my ($target,$token,$tagstack,$parstack,$parser,$safeeval)=@_;
   85:     my $result='';
   86:     if (exists($Apache::outputtags::showonce{'displayduetitle'})) {
   87: 	return '';
   88:     } else {
   89: 	$Apache::outputtags::showonce{'displayduetitle'}=1;
   90:     }
   91:     if ($target eq 'web') {
   92: 	$result="<h1>$Apache::lonhomework::name</h1>";
   93:     } elsif ($target eq 'edit') {
   94: 	$result=&Apache::edit::tag_start($target,$token);
   95: 	$result.='</td></tr>';
   96: 	$result.=&Apache::edit::end_table();
   97:     } elsif ($target eq 'tex') {
   98: 	$Apache::lonhomework::name=~s/%/\%/g;
   99: 	$Apache::lonhomework::name=~s/&/\&/g;
  100: 	$result='\vskip 0 mm\noindent\textbf{'.$Apache::lonhomework::name.'}\vskip 0 mm';
  101:     }
  102:     return $result;
  103: }
  104: 
  105: sub end_displaytitle {
  106:     my ($target,$token,$tagstack,$parstack,$parser,$safeeval)=@_;
  107:     my @result;
  108:     if ($target eq 'edit') { $result[1]='no'; }
  109:     return @result;
  110: }
  111: 
  112: sub start_displayweight {
  113:     my ($target,$token,$tagstack,$parstack,$parser,$safeeval)=@_;
  114:     my $result;
  115:     if (exists($Apache::outputtags::showonce{'displayweight'})) {
  116: 	return '';
  117:     } else {
  118: 	$Apache::outputtags::showonce{'displayweight'}=1;
  119:     }
  120:     my $status=$Apache::inputtags::status['-1'];
  121:     if (($status =~ /CAN.*_ANSWER/) && ($target eq 'web' || $target eq 'tex')) {
  122: 	my $id = $Apache::inputtags::part;
  123: 	my $weight = &Apache::lonnet::EXT("resource.$id.weight");
  124: 	&Apache::lonxml::debug("duedatebox found $weight for $id");
  125: 	if (!defined($weight) || ($weight eq '')) { $weight=1; }
  126: 	$result.=$weight;
  127:     } elsif ( $target eq 'edit' ) {
  128: 	$result=&Apache::edit::tag_start($target,$token);
  129: 	$result.='</td></tr>';
  130: 	$result.=&Apache::edit::end_table();
  131:     }
  132:     return $result;
  133: }
  134: 
  135: sub end_displayweight {
  136:     my ($target,$token,$tagstack,$parstack,$parser,$safeeval)=@_;
  137:     my @result;
  138:     if ($target eq 'edit') { $result[1]='no'; }
  139:     return @result;
  140: }
  141: 
  142: 1;
  143: __END__

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