File:  [LON-CAPA] / loncom / interface / lonsyllabus.pm
Revision 1.37: download - view: text, annotated - select for diffs
Fri Jun 11 16:37:42 2004 UTC (19 years, 11 months ago) by sakharuk
Branches: MAIN
CVS tags: version_1_2_X, version_1_2_1, version_1_2_0, version_1_1_99_5, version_1_1_99_4, version_1_1_99_3, version_1_1_99_2, version_1_1_99_1, HEAD
Size of table is adjusted.

    1: # The LearningOnline Network
    2: # Syllabus
    3: #
    4: # $Id: lonsyllabus.pm,v 1.37 2004/06/11 16:37:42 sakharuk 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::lonsyllabus;
   30: 
   31: use strict;
   32: use Apache::Constants qw(:common);
   33: use Apache::loncommon;
   34: use Apache::lonnet;
   35: use Apache::lontexconvert;
   36: use Apache::lonfeedback;
   37: use Apache::lonannounce;
   38: use Apache::lonlocal;
   39: use Apache::lonhtmlcommon;
   40: 
   41: sub handler {
   42:     my $r = shift;
   43:     &Apache::loncommon::content_type($r,'text/html');
   44:     $r->send_http_header;
   45:     return OK if $r->header_only;
   46: 
   47: # ------------------------------------------------------------ Print the screen
   48:     my $target=$ENV{'form.grade_target'};
   49:     if ($target ne 'tex') {
   50: 	$r->print(<<ENDDOCUMENT);
   51: <html>
   52: <head>
   53: <title>The LearningOnline Network with CAPA</title>
   54: ENDDOCUMENT
   55:     } else {
   56: 	$r->print(&Apache::lonprintout::print_latex_header($ENV{'form.latex_type'}));
   57:     } 
   58:     my (undef,undef,$cdom,$cnum)=split(/\//,$r->uri);
   59: # Is this even a course?
   60:     my $homeserver=&Apache::lonnet::homeserver($cnum,$cdom); 
   61:     if ($homeserver eq 'no_host') {
   62: 	$r->print('</head><body>'.&mt('No syllabus available').'</body></html>');
   63:         return OK;
   64:     }
   65: # --------------------------------------------------------- The syllabus fields
   66:     my %syllabusfields=&Apache::lonlocal::texthash(
   67:        'aaa_instructorinfo' => 'Instructor Information',
   68:        'bbb_description'    => 'Course Description',
   69:        'ccc_prereq'         => 'Prerequisites',
   70:        'cdc_classhours'     => 'Class Hours',
   71:        'ddd_officehours'    => 'Office Hours',
   72:        'eee_helproom'       => 'Helproom Hours',
   73:        'efe_projectinfo'    => 'Project Information',
   74:        'fff_examinfo'       => 'Exam Information',
   75:        'fgf_deadlines'      => 'Deadlines',
   76:        'ggg_grading'        => 'Grading Information',
   77:        'hhh_readings'       => 'Readings',
   78:        'iii_coursepack'     => 'Coursepack',
   79:        'jjj_weblinks'       => 'Web Links',
   80:        'kkk_textbook'       => 'Textbook',
   81:        'lll_includeurl'     => 'URLs To Include in Syllabus');
   82: 
   83: # ------------------------------------------------------------ Get query string
   84:     &Apache::loncommon::get_unprocessed_cgi
   85:                         ($ENV{'QUERY_STRING'},['forcestudent','register','forceedit']);
   86: # ----------------------------------------------------- Force menu registration
   87:     my $addentries='';
   88:     if ($ENV{'form.register'}) {
   89:        $addentries=' onLoad="'.&Apache::lonmenu::loadevents().
   90: 	   '" onUnload="'.&Apache::lonmenu::unloadevents().'"';
   91:        $r->print(&Apache::lonmenu::registerurl(1));
   92:     }
   93: # --------------------------------------------------------------- Force Student
   94:     my $forcestudent='';
   95:     if ($ENV{'form.forcestudent'}) { $forcestudent='student'; };
   96:     my $forceedit='';
   97:     if ($ENV{'form.forceedit'}) { $forceedit='edit'; }
   98:        
   99: # ------------------------------------- There is such a course, get environment
  100:     my %courseenv=&Apache::lonnet::dump('environment',$cdom,$cnum);
  101:     if ($target ne 'tex') {
  102: 	$r->print(&Apache::lonhtmlcommon::htmlareaheaders().
  103: 		  '</head>'.&Apache::loncommon::bodytag
  104:             ("Syllabus",$forcestudent,$addentries,'',$cdom,$ENV{'form.register'}));
  105: 	$r->print('<h1>'.$courseenv{'description'}.'</h1><h3>'.
  106:                  $Apache::lonnet::domaindescription{$cdom}.'</h3>');
  107:     } else {
  108: 	$r->print('\noindent{\large\textbf{'.$courseenv{'description'}.'}}\\\\\\\\\textbf{'.
  109:                  $Apache::lonnet::domaindescription{$cdom}.'}\\\\');
  110:     }
  111: # -------------------------------------------------------------- Announcements?
  112:     if ($target ne 'tex') {
  113: 	$r->print(&Apache::lonannounce::showday(time,2,
  114:                          &Apache::lonannounce::readcalendar($cdom.'_'.$cnum)));
  115:     } else {
  116: 	$r->print(&Apache::lonxml::xmlparse($r,'tex',
  117: 		       &Apache::lonannounce::showday(time,2,
  118:                        &Apache::lonannounce::readcalendar($cdom.'_'.$cnum))));
  119:     }
  120: # -------------------------------------------------------- Get course personnel
  121:     my %coursepersonnel=&Apache::lonnet::get_course_adv_roles($cdom.'/'.$cnum);
  122:     if ($target ne 'tex') {
  123: 	$r->print('<table border="2">');
  124:     } else {
  125: 	$r->print('\begin{tabular}{|p{0.45\textwidth}|p{0.45\textwidth}|}\hline');
  126:     }
  127:     foreach my $element (sort keys %coursepersonnel) {
  128: 	if ($target ne 'tex') {
  129: 	    $r->print('<tr><td>'.$element.'</td><td>');
  130: 	} else {
  131: 	    $r->print(' '.&Apache::lonxml::xmlparse($r,'tex',$element).' & '); 
  132: 	}
  133:         foreach (split(/\,/,$coursepersonnel{$element})) {
  134: 	    my ($puname,$pudom)=split(/\:/,$_);
  135: 	    if ($target ne 'tex') {
  136: 		$r->print(' '.&Apache::loncommon::aboutmewrapper(
  137:                               &Apache::loncommon::plainname($puname,
  138:                               $pudom),$puname,$pudom));
  139: 	    } else {
  140: 		$r->print(' '.&Apache::loncommon::plainname($puname,
  141:                               $pudom).' ');
  142: 	    }
  143: 	}
  144: 	if ($target ne 'tex') {
  145: 	    $r->print('</td></tr>');
  146: 	} else {
  147: 	    $r->print('\\\\ \hline');
  148: 	}
  149:     }
  150:     if ($target ne 'tex') {
  151: 	$r->print('</table>');
  152:     } else {
  153: 	$r->print('\end{tabular}\\\\');
  154:     }
  155: # ---------------------------------------------------------- Load syllabus info
  156:     my %syllabus=&Apache::lonnet::dump('syllabus',$cdom,$cnum);
  157:     my $allowed=0;
  158:     my $privileged=0;
  159: 
  160: # This handler might be called anonymously ...
  161: # ----------------------------------------------------- Only if not public call
  162:     if ($ENV{'user.environment'}) {
  163: # does this user have privileges to post, etc?
  164:        if ($ENV{'request.course.id'}) {
  165:           $allowed=&Apache::lonnet::allowed('mdc',$ENV{'request.course.id'});
  166: 	  $privileged=$allowed;
  167: 	  if (($syllabus{'uploaded.lastmodified'}) && (!$forceedit)) {
  168: 	      $forcestudent='student';
  169: 	  }
  170:           if ($forcestudent or $target eq 'tex') { $allowed=0; }
  171:        }
  172:        if ($allowed) {
  173:           $r->print('<p>'.
  174: &Apache::loncommon::help_open_topic('Uploaded_Templates_TextBoxes','Help with filling in text boxes').'</p><p>'.&mt('This syllabus can be publicly viewed at')
  175: 		    .' <tt>http://'.
  176: 		    $Apache::lonnet::hostname{$homeserver}.$r->uri.'</tt>'.
  177:                &Apache::loncommon::help_open_topic('Syllabus_ExtLink').'</p>'.
  178: 	  '<p><a href="'.$r->uri.'?forcestudent=1"><font size="+1">'.
  179: &mt('Show Public View').'</font></a>'.
  180:           &Apache::loncommon::help_open_topic('Uploaded_Templates_PublicView').
  181:           '</p>');
  182:       } elsif ($privileged) {
  183: 	  if ($target ne 'tex') {
  184: 	      $r->print('<p><a href="'.$r->uri.'?forceedit=1"><font size="+1">'.
  185: 			&mt('Edit').'</font></a>'); 
  186: 	  }
  187:       }
  188:        if (($allowed) && ($ENV{'form.storesyl'})) {
  189: 	   foreach (keys %syllabusfields) {
  190:                my $field=$ENV{'form.'.$_};
  191: 	       chomp($field);
  192:                $field=~s/\s+$//s;
  193: 	       $field=~s/^\s+//s;
  194: 	       $field=~s/\<br\s*\/*\>$//s;
  195: 	       $field=&Apache::lonfeedback::clear_out_html($field,1);
  196: 	       $syllabus{$_}=$field;
  197:                if ($_ eq 'lll_includeurl') { # clean up included URLs
  198:                   my $field='';
  199: 	          foreach (split(/\n/,$syllabus{$_})) {
  200: 		      my $url=$_;
  201: # get rid of leading and trailing spaces
  202:                       $url=~s/^\s+//;
  203:                       $url=~s/\s+$//;
  204:                       if ($url=~/^http\:\/\/([^\/]+)\/(.+)$/) {
  205:                           my $remainder=$2;
  206: # remove the hostname from internal URLs
  207: 		          foreach (keys %Apache::lonnet::hostname) {
  208:                               if ($1=~/$Apache::lonnet::hostname{$_}/i) {
  209: 			         $url=$remainder;
  210: 			      }
  211: 		          }
  212: 		      }
  213: # norm internal URLs
  214:                       unless ($url=~/^http\:/) {
  215: 		          $url=&Apache::lonnet::clutter($url);
  216:                       }
  217: # re-assemble field
  218:                       if ($url) {
  219: 		          $field.=$url."\n";
  220:                       }
  221: 		  }
  222:                   $syllabus{$_}=$field;
  223: 	      }
  224:            }
  225:            $syllabus{'uploaded.domain'}=$ENV{'user.domain'};
  226:            $syllabus{'uploaded.name'}=$ENV{'user.name'};
  227:            $syllabus{'uploaded.lastmodified'}=time;
  228:            &Apache::lonnet::put('syllabus',\%syllabus,$cdom,$cnum);
  229:        }
  230:     }
  231: # ---------------------------------------------------------------- Get syllabus
  232:     if (($syllabus{'uploaded.lastmodified'}) || ($allowed)) {
  233:        my $lastmod=$syllabus{'uploaded.lastmodified'};
  234:        $lastmod=($lastmod?&Apache::lonlocal::locallocaltime($lastmod):&mt('never'));
  235:        my $who = &Apache::loncommon::aboutmewrapper(
  236:                     &Apache::loncommon::plainname($syllabus{'uploaded.name'},
  237:                      $syllabus{'uploaded.domain'}),$syllabus{'uploaded.name'},
  238:                      $syllabus{'uploaded.domain'});
  239:        if ($target ne 'tex') {
  240: 	   $r->print('<table><tr><td>'.&mt('Last updated').':</td><td>'.
  241: 		     $lastmod.'</td><td>'.&mt('by').' '.$who.
  242: 		     '</td></tr></table><p>');
  243:        } else {
  244: 	   $r->print('\\\\ '.&mt('Last updated').': '.$lastmod.' '.&mt('by').'\\\\ '.
  245: 		     &Apache::loncommon::plainname($syllabus{'uploaded.name'},
  246:                      $syllabus{'uploaded.domain'}).'\\\\');
  247:        }
  248:        if ($allowed) {
  249: 	   $r->print('<form method="post">'.
  250: 		     '<input type="hidden" name="forceedit" value="edit" />');
  251:        }
  252:        my @htmlids=();
  253:        foreach (sort keys %syllabusfields) {
  254:           if (($syllabus{$_}=~/\w/) || ($allowed)) {
  255:               my $message=$syllabus{$_};
  256:               if ($_ eq 'lll_includeurl') { # this is the "included" field
  257: 		  my $urls=$message;
  258:                   $message='';
  259:                   foreach my $filelink (split(/\n/,$urls)) {
  260: 		      my $output='';
  261: # embed style?
  262: 		      my ($curfext)=($filelink=~/\.([^\.]+)$/);
  263:                       my $embstyle=&Apache::loncommon::fileembstyle($curfext);
  264: 	              if (($embstyle eq 'ssi') || ($curfext=~/\/$/)) {
  265: # make ssi call and remove everything but the body contents
  266: 			  $output=&Apache::lonnet::ssi_body($filelink);
  267: 	              } elsif ($embstyle eq 'img') {
  268: # embed as an image
  269:                          $output='<img src="'.$filelink.'" />';
  270: 		      }
  271: 		      if ($target ne 'tex') {
  272: 			  $message.='<p>'.$output.'</p>';
  273: 		      } else {
  274: 			  $message.=' '.&Apache::lonxml::xmlparse($r,'tex','<p>'.$output.'</p>').' ';
  275: 		      }		      
  276:                   }
  277:                   if ($allowed) {
  278:                      $r->print('<h3>'.$syllabusfields{$_}.
  279:           &Apache::loncommon::help_open_topic('Syllabus_URLs').'</h3>'.
  280: 	  '<p><a href="'.$r->uri.'?forcestudent=1"><font size="+1">'.&mt('Show Public View').'</font></a>'.
  281:  &Apache::loncommon::help_open_topic('Uploaded_Templates_PublicView').'</p>');
  282: 		 } else {
  283:                   $r->print($message);
  284:                  } 
  285:               } else {
  286:                  $message=~s/\n/\<br \/\>/g;
  287:                  $message
  288:            =~s/(https*\:\/\/[^\s]+)/\<a href=\"$1\"\>\<tt\>$1\<\/tt\>\<\/a\>/g;
  289: 	         $message=&Apache::lontexconvert::msgtexconverted($message);
  290: 		 if ($target ne 'tex') {
  291: 		     $r->print('<h3>'.$syllabusfields{$_}.'</h3><blockquote>'.
  292:                                $message.'</blockquote>');
  293: 		 } else {
  294: 		     $r->print('\\\\\textbf{'.$syllabusfields{$_}.'}\\\\'.
  295: 			       &Apache::lonxml::xmlparse($r,'tex',$message).'\\\\');
  296: 		 }
  297: 		 push @htmlids,$_;
  298: 	     }
  299:               if ($allowed) {
  300:                  $r->print(
  301: 	   '<br /><textarea cols="80" rows="12" name="'.$_.'" id="'.$_.'">'.
  302: 			   $syllabus{$_}.
  303:            '</textarea> <input type="submit" name="storesyl" value="Store" />');
  304: 	      }
  305: 	  }
  306:        }
  307:        if ($allowed) {
  308: 	   $r->print('</form>'.
  309: 		     &Apache::lonhtmlcommon::htmlareaselectactive(@htmlids));
  310:        }
  311:        if ($target ne 'tex') {$r->print('</p>');} else {$r->print('\\\\');}
  312:     } else {
  313: 	if ($target ne 'tex') {$r->print('<p>');} else {$r->print('\par ');} 
  314: 	$r->print('No syllabus information provided.');
  315: 	if ($target ne 'tex') {$r->print('</p>');}
  316:     }
  317:     if ($target ne 'tex') {$r->print('</body></html>');} else {$r->print('\end{document}');}
  318:     return OK;
  319: } 
  320: 
  321: 1;
  322: __END__

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