Diff for /loncom/interface/lonsyllabus.pm between versions 1.81 and 1.84

version 1.81, 2009/03/01 13:23:12 version 1.84, 2009/03/27 15:46:38
Line 238  if ($target ne 'tex') { Line 238  if ($target ne 'tex') {
 #--------Functions  #--------Functions
 if ($target ne 'tex') {  if ($target ne 'tex') {
  if($allowed || $privileged){   if($allowed || $privileged){
  &Apache::lontemplate::print_start_page_functions($r);                  $r->print(&Apache::lontemplate::start_functionslist());
  if($allowed){   if($allowed){
  &Apache::lontemplate::print_functions_content($r,'<a href="'.$r->uri.'?forcestudent=1">'.&mt('Show Public View').'</a>'.&Apache::loncommon::help_open_topic('Uploaded_Templates_PublicView'));                            $r->print(&Apache::lontemplate::item_functionslist(
                           '<a href="'.$r->uri.'?forcestudent=1">'.&mt('Show Public View').'</a>'
                          .&Apache::loncommon::help_open_topic('Uploaded_Templates_PublicView')));
  }elsif($privileged){   }elsif($privileged){
  &Apache::lontemplate::print_functions_content($r,'<a href="'.$r->uri.'?forceedit=1">'.&mt('Edit').'</a>');                       $r->print(&Apache::lontemplate::item_functionslist(
                           '<a href="'.$r->uri.'?forceedit=1">'.&mt('Edit').'</a>'));
  }   }
  &Apache::lontemplate::print_end_page_functions($r);                  $r->print(&Apache::lontemplate::end_functionslist());
  }   }
  }   }
 #----------------------------Print Headtitle  #----------------------------Print Headtitle
Line 328  if( ($allowed) && ($target ne 'tex') ) { Line 331  if( ($allowed) && ($target ne 'tex') ) {
     my $day = &Apache::lonannounce::showday(time,2,      my $day = &Apache::lonannounce::showday(time,2,
  &Apache::lonannounce::readcalendar($cdom.'_'.$cnum));   &Apache::lonannounce::readcalendar($cdom.'_'.$cnum));
     if ($target ne 'tex') {      if ($target ne 'tex') {
  if($allowed){   if($allowed){
  &Apache::lontemplate::print_template($r,'RSS Feeds and Blogs',&Apache::lonrss::advertisefeeds($cnum,$cdom,$forceedit),1,'LC_ContentBoxSpecial');   &Apache::lontemplate::print_start_template($r,'RSS Feeds and Blogs','LC_ContentBoxSpecial');
    $r->print(&Apache::lonrss::advertisefeeds($cnum,$cdom,$forceedit));
    &Apache::lontemplate::print_end_template($r);
  }   }
  elsif(&Apache::lonrss::advertisefeeds($cnum,$cdom) ne ''){   elsif(&Apache::lonrss::advertisefeeds($cnum,$cdom) ne ''){
  &Apache::lontemplate::print_template($r,'RSS Feeds and Blogs',&Apache::lonrss::advertisefeeds($cnum,$cdom,$forceedit),1,'LC_ContentBoxSpecial');   &Apache::lontemplate::print_start_template($r,'RSS Feeds and Blogs','LC_ContentBoxSpecial');
    $r->print(&Apache::lonrss::advertisefeeds($cnum,$cdom,$forceedit));
    &Apache::lontemplate::print_end_template($r);
  }   }
   
     } else {      } else {

Removed from v.1.81  
changed lines
  Added in v.1.84


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