Diff for /loncom/interface/lonsimplepage.pm between versions 1.84 and 1.90

version 1.84, 2009/06/11 16:48:33 version 1.90, 2009/12/15 20:48:53
Line 232  sub handler { Line 232  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 ($allowed && $env{'form.delupl'}) {
         if ($syllabus{'uploaded.photourl'}) {  #        if ($syllabus{'uploaded.photourl'}) {
             &Apache::lonnet::removeuploadedurl($syllabus{'uploaded.photourl'});  #            &Apache::lonnet::removeuploadedurl($syllabus{'uploaded.photourl'});
             delete($syllabus{'uploaded.photourl'});  #            delete($syllabus{'uploaded.photourl'});
             &Apache::lonnet::del('simplepage',['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 299  sub handler { Line 299  sub handler {
     if ((($syllabus{'uploaded.lastmodified'}) &&      if ((($syllabus{'uploaded.lastmodified'}) &&
          (($group ne '' && ($group_home_view || $group_edit_perm ||           (($group ne '' && ($group_home_view || $group_edit_perm ||
            $group_view_perm)) || ($group eq ''))) || ($allowed)) {             $group_view_perm)) || ($group eq ''))) || ($allowed)) {
           #Print the title
           my $titletext=$syllabus{'aaa_title'};
           if ($target ne 'tex') {
               if ($allowed) {
               }
               $r->print('<h2>'.$titletext.'</h2>');
           } else {
               my $safeinit;
               $r->print(&Apache::lonxml::xmlparse($r,'tex','<h1>'.$titletext.'</h1>'));
           }
           if ($allowed) {
               if ($env{'form.grade_target'} ne 'tex') {
                   #editbox for title
                   $r->print('<form method="post" action="" enctype="multipart/form-data">');
                   &Apache::lontemplate::print_template($r, &mt('Title'), $titletext, $allowed, 'LC_Box');
                   &Apache::lontemplate::print_editbox_template($r,$syllabus{'aaa_title'},'aaa_title');
               } else {
                   my $safeinit;
                   $r->print(&Apache::lonxml::xmlparse($r,'tex',$syllabus{'aaa_title'},$safeinit));
               }
           }
   
           #print the image
         my $image;          my $image;
         if ($syllabus{'uploaded.photourl'}) {          if ($syllabus{'uploaded.photourl'}) {
             &Apache::lonnet::allowuploaded('/adm/smppg',              &Apache::lonnet::allowuploaded('/adm/smppg',
                     $syllabus{'uploaded.photourl'});                      $syllabus{'uploaded.photourl'});
   
             $image='<img src="'.$syllabus{'uploaded.photourl'}.'"              $image='<img src="'.$syllabus{'uploaded.photourl'}
                             />';                    .'" alt="'.&mt('Image').'" />';
             if ($target eq 'tex') {              if ($target eq 'tex') {
                 $image=&Apache::lonxml::xmlparse($r,'tex',$image);                  $image=&Apache::lonxml::xmlparse($r,'tex',$image);
             }              }
         }          }
   
         if ($allowed) {          if ($allowed) {
             $r->print(              $r->print('<input type="hidden" name="forceedit" value="edit" />');
                   '<form method="post" enctype="multipart/form-data">'.              my $upload_photo_label = &mt('Upload a Photo');
                   '<input type="hidden" name="forceedit" value="edit" />'.              my $upload_button_label = &mt('Upload');
                   '<h3>'.&mt('Upload a Photo').'</h3>'.  
                   '<input type="file" name="uploaddoc" size="50" />'.              my $content_for_upload_photo=<<"UPLOAD_PHOTO";
                   '<input type="submit" name="storeupl" value="'.&mt('Upload').'" />'.                    <input type="file" name="uploaddoc" size="50" />
                   '</form><form method="post">'.                    <input type="submit" name="storeupl" value="$upload_button_label" />
                   '<input type="hidden" name="forceedit" value="edit" />');                    <input type="hidden" name="forceedit" value="edit" />
             if ($syllabus{'uploaded.photourl'}) {  UPLOAD_PHOTO
                 $r->print('<form method="post"><input type="submit" name="delupl" value="'.&mt('Delete Photo').'" />' );              &Apache::lontemplate::print_template($r, $upload_photo_label,$content_for_upload_photo,$allowed, 'LC_Box');
             }  
   #            if ($syllabus{'uploaded.photourl'}) {
   #                $r->print('<input type="submit" name="delupl"'
   #                         .' value="'.&mt('Delete Photo').'" />');
   #            }
         }          }
         if ($allowed) {          if ($allowed) {
             $r->print($image.'<div class="clear">&nbsp;</div>');              $r->print($image.'<div class="LC_footer_clear">&nbsp;</div>');
         }          }
           if (!$allowed) {$r->print($image); }
   
         foreach my $field (sort(keys(%syllabusfields))) {          foreach my $field (sort(keys(%syllabusfields))) {
             if (($syllabus{$field}) || ($allowed) ||              if (($syllabus{$field}) || ($allowed) ||
                 ($field eq 'abb_links' && $group ne '')) {                  ($field eq 'abb_links' && $group ne '')) {
                 my $message=$syllabus{$field};                  my $message=$syllabus{$field};
                 &Apache::lonfeedback::newline_to_br(\$message);                  if (!&Apache::lonfeedback::contains_block_html($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);
Line 347  sub handler { Line 377  sub handler {
                                     %groupinfo);                                      %groupinfo);
                     $r->print('<br />');                      $r->print('<br />');
                 } elsif ($field eq 'aaa_title') {                  } elsif ($field eq 'aaa_title') {
                     if ($target ne 'tex') {                      next;
                         if ($allowed) {  
                             $r->print('<p>');  
                         }  
                         $r->print('<h2>'.$message.'</h2>');  
                     } else {  
                         my $safeinit;  
                         $r->print(&Apache::lonxml::xmlparse($r,'tex','<h1>'.$message.'</h1>'));  
                     }  
                     if ($allowed) {  
                         if ($env{'form.grade_target'} ne 'tex') {  
                             &Apache::lontemplate::print_template($r, &mt('Title'), $message, $allowed, 'LC_Box');  
                             &Apache::lontemplate::print_editbox_template($r,$syllabus{$field},$field);  
                             $r->print('</p>');  
                         } else {  
                             my $safeinit;  
                             $r->print(&Apache::lonxml::xmlparse($r,'tex',$syllabus{$field},$safeinit));  
                         }  
                     }  
                     if (!$allowed) {$r->print($image); }  
                 } else {                  } else {
                     if ($target ne 'tex') {                      if ($target ne 'tex') {
                         if ($allowed) {                          if ($allowed) {
                             $r->print('<p>');  
                         }                          }
                         &Apache::lontemplate::print_template($r,$syllabusfields{$field},$message,$allowed,'LC_Box');                          &Apache::lontemplate::print_template($r,$syllabusfields{$field},$message,$allowed,'LC_Box');
                     } else {                      } else {
Line 381  sub handler { Line 391  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));
Line 394  sub handler { Line 403  sub handler {
             $r->print(&Apache::lonhtmlcommon::htmlareaselectactive              $r->print(&Apache::lonhtmlcommon::htmlareaselectactive
                 ('bbb_content').'</form>');                  ('bbb_content').'</form>');
         }          }
         if ($env{'form.grade_target'} ne 'tex') {$r->print('</p>');}  
   
     } else {      } else {
         if ($group ne '') {          if ($group ne '') {

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


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