Diff for /loncom/interface/lonsyllabus.pm between versions 1.69 and 1.75

version 1.69, 2008/11/07 18:06:19 version 1.75, 2008/12/24 07:55:54
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');
     }      }
     my @personnel=sort keys %coursepersonnel;      my @personnel=sort(keys(%coursepersonnel));
     my $lastpers=$personnel[$#personnel];      my $lastpers=$personnel[$#personnel];
     foreach my $element (@personnel) {      foreach my $element (@personnel) {
  if ($target ne 'tex') {   if ($target ne 'tex') {
Line 239  ENDSCRIPT Line 240  ENDSCRIPT
           if ($forcestudent or $target eq 'tex') { $allowed=0; }            if ($forcestudent or $target eq 'tex') { $allowed=0; }
        }         }
        if ($allowed) {         if ($allowed) {
           $r->print('<p>'.            my $protocol = $Apache::lonnet::protocol{$homeserver};
             $protocol = 'http' if ($protocol ne 'https');
             $r->print('<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><p>'.
 &Apache::loncommon::help_open_topic('Uploaded_Templates_TextBoxes',&mt('Help with filling in text boxes')).'</p><p>'.&mt('This syllabus can be publicly viewed at')  &Apache::loncommon::help_open_topic('Uploaded_Templates_TextBoxes',&mt('Help with filling in text boxes')).'</p><p>'.&mt('This syllabus can be publicly viewed at')
     .' <tt>http://'.      .' <tt>'.$protocol.'://'.
     &Apache::lonnet::hostname($homeserver).$r->uri.'</tt>'.      &Apache::lonnet::hostname($homeserver).$r->uri.'</tt>'.
                &Apache::loncommon::help_open_topic('Syllabus_ExtLink').'</p>'.                 &Apache::loncommon::help_open_topic('Syllabus_ExtLink').'</p>'.
           '<p>'.&mt('You can specify an external URL as Syllabus in the [_1].','<a href="/adm/parmset?action=crsenv">'.&mt('Course Parameters').'</a>').'</p>'.            '<p>'.&mt('You can specify an external URL as Syllabus in the [_1].','<a href="/adm/parmset?action=crsenv">'.&mt('Course Parameters').'</a>').'</p>');
   '<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>');  
       } elsif ($privileged) {        } elsif ($privileged) {
   if ($target ne 'tex') {    if ($target ne 'tex') {
       $r->print('<p><a href="'.$r->uri.'?forceedit=1"><font size="+1">'.        $r->print('<p><a href="'.$r->uri.'?forceedit=1"><font size="+1">'.
Line 271  ENDSCRIPT Line 273  ENDSCRIPT
 # get rid of leading and trailing spaces  # get rid of leading and trailing spaces
                       $url=~s/^\s+//;                        $url=~s/^\s+//;
                       $url=~s/\s+$//;                        $url=~s/\s+$//;
                       if ($url=~m|^http://([^/]+)/(.+)$|) {                        if ($url=~m|^https?\://([^/]+)/(.+)$|) {
   my $host = $1;    my $host = $1;
                           my $remainder=$2;                            my $remainder=$2;
 # remove the hostname from internal URLs  # remove the hostname from internal URLs
Line 284  ENDSCRIPT Line 286  ENDSCRIPT
           }            }
       }        }
 # norm internal URLs  # norm internal URLs
                       unless ($url=~/^http\:/) {                        unless ($url=~/^https?\:/) {
           $url=&Apache::lonnet::clutter($url);            $url=&Apache::lonnet::clutter($url);
                       }                        }
 # re-assemble field  # re-assemble field
Line 327  ENDSCRIPT Line 329  ENDSCRIPT
      '<input type="hidden" name="forceedit" value="edit" />');       '<input type="hidden" name="forceedit" value="edit" />');
        }         }
        my @htmlids=();         my @htmlids=();
        foreach my $field (sort(keys(%syllabusfields))) {   &Apache::lontemplate::start_columnSection($r);
    &Apache::lontemplate::start_ContentBox($r, $allowed);
    foreach my $field (sort(keys(%syllabusfields))) {
    if (($syllabus{$field}=~/\w/) || ($allowed)) {     if (($syllabus{$field}=~/\w/) || ($allowed)) {
        my $message=$syllabus{$field};         my $message=$syllabus{$field};
        if ($field eq 'lll_includeurl') { # this is the "included" field         if ($field eq 'lll_includeurl') { # this is the "included" field
Line 353  ENDSCRIPT Line 357  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>'.  
  &Apache::loncommon::help_open_topic('Uploaded_Templates_PublicView').'</p>');  
    } else {     } else {
        $r->print($message);         $r->print($message);
    }      } 
        } else {         } else {
    &Apache::lonfeedback::newline_to_br(\$message);     &Apache::lonfeedback::newline_to_br(\$message);
    $message =~s|(https*://[^\s]+)|<a href="$1"><tt>$1</tt></a>|g;     $message =~s|(https?\://[^\s]+)|<a href="$1"><tt>$1</tt></a>|g;
    if ($allowed) {     if ($allowed) {
        $message=&Apache::lonspeller::markeduptext($message);         $message=&Apache::lonspeller::markeduptext($message);
    }     }
    $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>'.   if($allowed){
  $message.'</blockquote>');   $r->print('<p>');
    }
    &Apache::lontemplate::print_template($r, $syllabusfields{$field}, $message);
    } 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 376  ENDSCRIPT Line 380  ENDSCRIPT
    push(@htmlids,$field);     push(@htmlids,$field);
        }         }
        if ($allowed) {         if ($allowed) {
    $r->print('<br /><textarea cols="80" rows="12" name="'.$field.'" id="'.$field.'">'.   if($target ne 'tex'){
      &HTML::Entities::encode($syllabus{$field},'"&<>').   $r->print('</p>');
      '</textarea> <input type="submit" name="storesyl" value="'.&mt('Save').'" />');   }
    &Apache::lontemplate::print_editbox_template($r, $syllabus{$field}, $field);
        }         }
    }     }
        }         }
           if ($allowed) {
                   $r->print('<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::lontemplate::end_ContentBox($r);
    &Apache::lontemplate::end_columnSection($r);
        if ($allowed) {         if ($allowed) {
    $r->print('</form>'.     $r->print('</form>'.
      &Apache::lonhtmlcommon::htmlareaselectactive(@htmlids));       &Apache::lonhtmlcommon::htmlareaselectactive(@htmlids));

Removed from v.1.69  
changed lines
  Added in v.1.75


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