Diff for /loncom/interface/lonsyllabus.pm between versions 1.68 and 1.70

version 1.68, 2008/10/22 08:56:35 version 1.70, 2008/11/19 11:51:49
Line 29 Line 29
 package Apache::lonsyllabus;  package Apache::lonsyllabus;
   
 use strict;  use strict;
   use Apache::lontemplate;
 use Apache::Constants qw(:common);  use Apache::Constants qw(:common);
 use Apache::loncommon;  use Apache::loncommon;
 use Apache::lonnet;  use Apache::lonnet;
Line 183  ENDSCRIPT Line 184  ENDSCRIPT
     } else {      } else {
  $r->print('\begin{tabular}{|p{0.45\textwidth}|p{0.45\textwidth}|}\hline');   $r->print('\begin{tabular}{|p{0.45\textwidth}|p{0.45\textwidth}|}\hline');
     }      }
     foreach my $element (sort keys %coursepersonnel) {      my @personnel=sort keys %coursepersonnel;
       my $lastpers=$personnel[$#personnel];
       foreach my $element (@personnel) {
  if ($target ne 'tex') {   if ($target ne 'tex') {
     $r->print(&Apache::lonhtmlcommon::row_title($element));      $r->print(&Apache::lonhtmlcommon::row_title($element));
  } else {   } else {
Line 206  ENDSCRIPT Line 209  ENDSCRIPT
     }      }
  }   }
  if ($target ne 'tex') {   if ($target ne 'tex') {
     $r->print(&Apache::lonhtmlcommon::row_closure());              my $lastclose=$element eq $lastpers?1:0;
               $r->print(&Apache::lonhtmlcommon::row_closure($lastclose));
  } else {   } else {
     $r->print('\\\\ \hline');      $r->print('\\\\ \hline');
  }   }
Line 350  ENDSCRIPT Line 354  ENDSCRIPT
    }     }
    if ($allowed) {     if ($allowed) {
        $r->print('<h3>'.$syllabusfields{$field}.         $r->print('<h3>'.$syllabusfields{$field}.
  &Apache::loncommon::help_open_topic('Syllabus_URLs').'</h3>'.   &Apache::loncommon::help_open_topic('Syllabus_URLs').'</h3>'.
  '<p><a href="'.$r->uri.'?forcestudent=1"><font size="+1">'.&mt('Show Public View').'</font></a>'.   '<p><a href="'.$r->uri.'?forcestudent=1"><font size="+1">'.&mt('Show Public View').'</font></a>'.
  &Apache::loncommon::help_open_topic('Uploaded_Templates_PublicView').'</p>');   &Apache::loncommon::help_open_topic('Uploaded_Templates_PublicView').'</p>');
    } else {     } else {
        $r->print($message);         $r->print($message);
Line 364  ENDSCRIPT Line 368  ENDSCRIPT
    }     }
    $message=&Apache::lontexconvert::msgtexconverted($message);     $message=&Apache::lontexconvert::msgtexconverted($message);
    if ($target ne 'tex') {     if ($target ne 'tex') {
        $r->print('<h3>'.$syllabusfields{$field}.'</h3><blockquote>'.   &Apache::lontemplate::print_template($r, $syllabusfields{$field}, $message);
  $message.'</blockquote>');  #       $r->print('<h3>'.$syllabusfields{$field}.'</h3><blockquote>'.
   # $message.'</blockquote>');
    } else {     } else {
        $r->print('\\\\\textbf{'.$syllabusfields{$field}.'}\\\\'.         $r->print('\\\\\textbf{'.$syllabusfields{$field}.'}\\\\'.
  &Apache::lonxml::xmlparse($r,'tex',$message).'\\\\');   &Apache::lonxml::xmlparse($r,'tex',$message).'\\\\');
Line 373  ENDSCRIPT Line 378  ENDSCRIPT
    push(@htmlids,$field);     push(@htmlids,$field);
        }         }
        if ($allowed) {         if ($allowed) {
    $r->print('<br /><textarea cols="80" rows="12" name="'.$field.'" id="'.$field.'">'.   &Apache::lontemplate::print_editbox_template($r, $syllabus{$field}, $field);
      &HTML::Entities::encode($syllabus{$field},'"&<>').  #   $r->print('<br /><textarea cols="80" rows="12" name="'.$field.'" id="'.$field.'">'.
      '</textarea> <input type="submit" name="storesyl" value="'.&mt('Save').'" />');   #     &HTML::Entities::encode($syllabus{$field},'"&<>').
    #     '</textarea> <input type="submit" name="storesyl" value="'.&mt('Save').'" />');
        }         }
    }     }
        }         }

Removed from v.1.68  
changed lines
  Added in v.1.70


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