Diff for /loncom/interface/lonsimplepage.pm between versions 1.87 and 1.88

version 1.87, 2009/12/07 19:47:56 version 1.88, 2009/12/08 12:20:49
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('<p>');
               }
               $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');
                   $r->print('</p>');
               } 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',
Line 313  sub handler { Line 338  sub handler {
   
         if ($allowed) {          if ($allowed) {
             $r->print(              $r->print(
                   '<form method="post" action="" enctype="multipart/form-data">'.  
                   '<input type="hidden" name="forceedit" value="edit" />'.                    '<input type="hidden" name="forceedit" value="edit" />'.
                   '<h3>'.&mt('Upload a Photo').'</h3>'.                    '<h3>'.&mt('Upload a Photo').'</h3>'.
                   '<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" action="">'.  
                   '<input type="hidden" name="forceedit" value="edit" />');                    '<input type="hidden" name="forceedit" value="edit" />');
 #            if ($syllabus{'uploaded.photourl'}) {  #            if ($syllabus{'uploaded.photourl'}) {
 #                $r->print('<input type="submit" name="delupl"'  #                $r->print('<input type="submit" name="delupl"'
Line 328  sub handler { Line 351  sub handler {
         if ($allowed) {          if ($allowed) {
             $r->print($image.'<div class="LC_footer_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) ||
Line 350  sub handler { Line 374  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) {

Removed from v.1.87  
changed lines
  Added in v.1.88


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