Diff for /loncom/interface/lonsimplepage.pm between versions 1.60 and 1.63

version 1.60, 2008/12/16 19:01:45 version 1.63, 2008/12/22 00:00:51
Line 221  sub handler { Line 221  sub handler {
                   &Apache::loncommon::help_open_topic('Uploaded_Templates_PublicView').                    &Apache::loncommon::help_open_topic('Uploaded_Templates_PublicView').
   &Apache::loncommon::help_open_topic('Uploaded_Templates_TextBoxes',&mt('Help with filling in text boxes'))    &Apache::loncommon::help_open_topic('Uploaded_Templates_TextBoxes',&mt('Help with filling in text boxes'))
   .'</p>');                    .'</p>');                
 # .'<br /><a href="'.$r->uri.'?forcestudent=1'.$refarg.'">'  
  #                .'<font size="+1">'.&mt('Show Student View').'</font></a>'.  
 #  &Apache::loncommon::help_open_topic('Uploaded_Templates_PublicView').'</p>');  
     } elsif ($privileged and $target ne 'tex') {      } elsif ($privileged and $target ne 'tex') {
         my $edittext = &mt('Edit');          my $edittext = &mt('Edit');
         if ($group ne '') {          if ($group ne '') {
Line 256  sub handler { Line 253  sub handler {
  $syllabus{'uploaded.lastmodified'}=time;   $syllabus{'uploaded.lastmodified'}=time;
  &Apache::lonnet::put($db_name,\%syllabus,$dom,$crs);   &Apache::lonnet::put($db_name,\%syllabus,$dom,$crs);
     }      }
       if ($allowed && $env{'form.delupl'}) {
           if ($syllabus{'uploaded.photourl'}) {
               &Apache::lonnet::removeuploadedurl($syllabus{'uploaded.photourl'});
               delete($syllabus{'uploaded.photourl'});
               &Apache::lonnet::del('simplepage',['uploaded.photourl']);
           }
       }
     if (($allowed) && ($env{'form.storesyl'})) {      if (($allowed) && ($env{'form.storesyl'})) {
  foreach my $syl_field (keys(%syllabusfields)) {   foreach my $syl_field (keys(%syllabusfields)) {
     my $field=$env{'form.'.$syl_field};      my $field=$env{'form.'.$syl_field};
Line 293  sub handler { Line 297  sub handler {
       '<input type="file" name="uploaddoc" size="50" />'.        '<input type="file" name="uploaddoc" size="50" />'.
       '<input type="submit" name="storeupl" value="'.&mt('Upload').'" />'.        '<input type="submit" name="storeupl" value="'.&mt('Upload').'" />'.
       '</form><form method="post">'.        '</form><form method="post">'.
                       '<input type="hidden" name="forceedit" value="edit" />');                        '<input type="hidden" name="forceedit" value="edit" />'.
         '<form method="post"><input type="submit" name="delupl" value="'.&mt('Delete Photo').'" />' );
  }   }
  &Apache::lontemplate::start_columnSection($r);   &Apache::lontemplate::start_columnSection($r);
  if($allowed){   if($allowed){
                 $r->print($image.'<div class="clear">&nbsp;</div>');                  $r->print($image.'<div class="clear">&nbsp;</div>');
 #'<br style="clear: both;" />');  
         }          }
  &Apache::lontemplate::start_ContentBox($r,$allowed);   &Apache::lontemplate::start_ContentBox($r,$allowed);
  foreach my $field (sort(keys(%syllabusfields))) {   foreach my $field (sort(keys(%syllabusfields))) {
Line 322  sub handler { Line 326  sub handler {
                     $r->print('<br />');                      $r->print('<br />');
                 } elsif ($field eq 'aaa_title') {                  } elsif ($field eq 'aaa_title') {
                     if ($target ne 'tex') {                      if ($target ne 'tex') {
    if($allowed){
    $r->print('<p>');
    }
                         $r->print('<h1>'.$message.'</h1>');                          $r->print('<h1>'.$message.'</h1>');
                     } else {                      } else {
                         my $safeinit;                          my $safeinit;
Line 331  sub handler { Line 338  sub handler {
                         if ($env{'form.grade_target'} ne 'tex') {                          if ($env{'form.grade_target'} ne 'tex') {
                             $r->print('<br /><h3>'.&mt('Title').'</h3>');                              $r->print('<br /><h3>'.&mt('Title').'</h3>');
     &Apache::lontemplate::print_editbox_template($r,$syllabus{$field},$field);      &Apache::lontemplate::print_editbox_template($r,$syllabus{$field},$field);
       $r->print('</p>');
                         } else {                          } else {
                             my $safeinit;                              my $safeinit;
                             $r->print(&Apache::lonxml::xmlparse($r,'tex',$syllabus{$field},$safeinit));                              $r->print(&Apache::lonxml::xmlparse($r,'tex',$syllabus{$field},$safeinit));
Line 338  sub handler { Line 346  sub handler {
                     }                      }
                 } else {                  } else {
     if ($target ne 'tex') {      if ($target ne 'tex') {
    if($allowed){
    $r->print('<p>');
    }
  &Apache::lontemplate::print_template($r,$syllabusfields{$field},$message,$allowed);   &Apache::lontemplate::print_template($r,$syllabusfields{$field},$message,$allowed);
     } else {      } else {
  my $safeinit;   my $safeinit;
Line 347  sub handler { Line 358  sub handler {
     if ($allowed) {      if ($allowed) {
  if ($target ne 'tex') {   if ($target ne 'tex') {
     &Apache::lontemplate::print_editbox_template($r,$syllabus{$field},$field);      &Apache::lontemplate::print_editbox_template($r,$syllabus{$field},$field);
       $r->print('</p>');
  } else {   } else {
     my $safeinit;      my $safeinit;
     $r->print(&Apache::lonxml::xmlparse($r,'tex',$syllabus{$field},$safeinit));      $r->print(&Apache::lonxml::xmlparse($r,'tex',$syllabus{$field},$safeinit));

Removed from v.1.60  
changed lines
  Added in v.1.63


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