Diff for /loncom/interface/lonsimplepage.pm between versions 1.18 and 1.43

version 1.18, 2004/05/11 18:43:21 version 1.43, 2006/07/07 21:25:02
Line 37  use Apache::lonfeedback; Line 37  use Apache::lonfeedback;
 use Apache::lonlocal;  use Apache::lonlocal;
 use Apache::lonprintout;  use Apache::lonprintout;
 use Apache::lonxml;  use Apache::lonxml;
   use Apache::longroup;
   
 sub handler {  sub handler {
     my $r = shift;      my $r = shift;
     $r->content_type('text/html');      &Apache::loncommon::content_type($r,'text/html');
     $r->send_http_header;      $r->send_http_header;
     return OK if $r->header_only;      return OK if $r->header_only;
     my $target=$ENV{'form.grade_target'};      my $target=$env{'form.grade_target'};
 # ------------------------------------------------------------ Print the screen  # ------------------------------------------------------------ Print the screen
     if ($target ne 'tex') {      if ($target eq 'tex') {
  $r->print(<<ENDDOCUMENT);   $r->print(&Apache::lonprintout::print_latex_header($env{'form.latex_type'}));
 <html>  
 <head>  
 <title>The LearningOnline Network with CAPA</title>  
 ENDDOCUMENT  
     } else {  
  $r->print(&Apache::lonprintout::print_latex_header($ENV{'form.latex_type'}));  
     }       } 
     my (undef,undef,undef,undef,$marker)=split(/\//,$r->uri);      my (undef,undef,$udom,$uname,$marker,$caller)=split(/\//,$r->uri);
 # Is this even in a course?  # Is this even in a course?
     unless ($ENV{'request.course.id'}) {      unless ($env{'request.course.id'}) {
  if ($target ne 'tex') {   if ($target ne 'tex') {
     $r->print('</head><body>Not in a course</body></html>');      &Apache::loncommon::simple_error_page($r,'','Not in a course');
     return OK;  
  } else {   } else {
     $r->print('\textbf{Not in a course}\end{document}');      $r->print('\textbf{Not in a course}\end{document}');
  }   }
    return OK;
     }      }
   
     $marker=~s/\D//g;      my $dom = $env{'course.'.$env{'request.course.id'}.'.domain'};
       my $crs = $env{'course.'.$env{'request.course.id'}.'.num'};
     unless ($marker) {      my $grp_view_permission = &Apache::lonnet::allowed('vcg',
  $r->print('<body>Invalid call</body>');                                                     $env{'request.course.id'});
         return OK;      my $namespace;
       my $group;
   
       my %curr_group = ();
       my %groupinfo = ();
       if ($dom && $crs && ($udom eq $dom) && ($uname eq $crs)) {
           $marker =~ s/\W//g;
           $group = $marker;
           my %curr_groups = &Apache::longroup::coursegroups($dom,$crs,$group);
           if (!%curr_groups) {
       &Apache::loncommon::simple_error_page($r,'','Invalid group name');
       return OK;
           }
           %groupinfo = 
       &Apache::longroup::get_group_settings($curr_groups{$group});
           $namespace = 'grppage_'.$group;
       } else {
           $marker=~s/\D//g;
           $namespace = 'smppage_'.$marker;
     }      }
   
     my $dom = $ENV{'course.'.$ENV{'request.course.id'}.'.domain'};      if (!$marker) {
     my $crs = $ENV{'course.'.$ENV{'request.course.id'}.'.num'};   &Apache::loncommon::simple_error_page($r,'','Invalid call');
    return OK;
       }
   
 # --------------------------------------------------------- The syllabus fields  # --------------------------------------------------------- The syllabus fields
     my %syllabusfields=&Apache::lonlocal::texthash(      my %syllabusfields=&Apache::lonlocal::texthash(
        'aaa_title'         => 'Page Title',         'aaa_title'         => 'Page Title',
        'bbb_content'       => 'Content',         'bbb_content'       => 'Content',
        'ccc_webreferences' => 'Web References');         'ccc_webreferences' => 'Web References');
       if ($group ne '') {
           $syllabusfields{'abb_links'} = &mt('Functionality');
       }
   
   
 # ------------------------------------------------------------ Get query string  # ------------------------------------------------------------ Get query string
     &Apache::loncommon::get_unprocessed_cgi      &Apache::loncommon::get_unprocessed_cgi
                         ($ENV{'QUERY_STRING'},['forcestudent','forceedit','register']);                          ($ENV{'QUERY_STRING'},['forcestudent','forceedit','register']);
 # ----------------------------------------------------- Force menu registration  
     my $addentries='';  
     if ($ENV{'form.register'}) {  
        $addentries=' onLoad="'.&Apache::lonmenu::loadevents().  
    '" onUnload="'.&Apache::lonmenu::unloadevents().'"';  
        $r->print(&Apache::lonmenu::registerurl(1));  
     }  
 # --------------------------------------------------------------- Force Student  # --------------------------------------------------------------- Force Student
     my $forcestudent='';      my $forcestudent='';
     if ($ENV{'form.forcestudent'} || $target eq 'tex' ) { $forcestudent='student'; };      if ($env{'form.forcestudent'} || $target eq 'tex' ) { $forcestudent='student'; };
      my $forceedit='';      my $forceedit='';
      if ($ENV{'form.forceedit'}) { $forceedit='edit'; }      if ($env{'form.forceedit'}) { $forceedit='edit'; }
   
   
     my %syllabus=&Apache::lonnet::dump('smppage_'.$marker,$dom,$crs);     
       my %syllabus=&Apache::lonnet::dump($namespace,$dom,$crs);
                 
 # --------------------------------------- There is such a user, get environment  # --------------------------------------- There is such a user, get environment
   
     if ($target ne 'tex') {      if ($target ne 'tex') {
  $r->print('</head>'.&Apache::loncommon::bodytag          my $title = 'Course Page';
   ("Course Page",$forcestudent,$addentries,'',$dom,$ENV{'form.register'}));          if ($group ne '') {
               $title = 'Group Page';
           }
    my $start_page = 
       &Apache::loncommon::start_page($title,undef,
      {'function'       => $forcestudent,
       'domain'         => $dom,
       'force_register' =>
    $env{'form.register'},});
    $r->print($start_page);
       }
   
       if ($group ne '') {
           if (($grp_view_permission) || 
                              (&Apache::longroup::check_group_access($caller))) {
               if ((!&Apache::lonnet::allowed('vgh',
                                         $env{'request.course.id'}.'/'.$marker))
                   && (!&Apache::lonnet::allowed('mdg',
                                         $env{'request.course.id'}.'/'.$marker))) {
                   &display_group_links($r,$target,$marker,'view',%groupinfo);
                   return OK;
               }
           } else {
       my $msg = 
    &mt('You do not currently have rights to view this group.');
               if ($target ne 'tex') {
                   $r->print("<p>$msg</p>".
     &Apache::loncommon::end_page());
               } else {
                   $r->print('\textbf{'.$msg.'}\end{document}');
               }
       return OK;
           }
     }      }
   
     my $allowed=&Apache::lonnet::allowed('mdc',$ENV{'request.course.id'});      my $allowed;
       if ($group ne '') {
           $allowed  = &Apache::lonnet::allowed('mdg',$env{'request.course.id'});
           if (!$allowed) {
               $allowed = &Apache::lonnet::allowed('mgh',$env{'request.course.id'}.
                                                                     '/'.$marker);
           }
       } else { 
           $allowed=&Apache::lonnet::allowed('mdc',$env{'request.course.id'});
       }
     my $privileged=$allowed;      my $privileged=$allowed;
     if (($syllabus{'uploaded.lastmodified'}) && (!$forceedit)) {      if (($syllabus{'uploaded.lastmodified'}) && (!$forceedit)) {
  $forcestudent='student';   $forcestudent='student';
Line 123  ENDDOCUMENT Line 175  ENDDOCUMENT
     } elsif ($privileged and $target ne 'tex') {      } elsif ($privileged and $target ne 'tex') {
  $r->print('<a href="'.$r->uri.'?forceedit=edit"><font size="+1">'.&mt('Edit').'</font></a>');   $r->print('<a href="'.$r->uri.'?forceedit=edit"><font size="+1">'.&mt('Edit').'</font></a>');
     }       } 
     if (($ENV{'form.uploaddoc.filename'} and $target ne 'tex') &&      if (($env{'form.uploaddoc.filename'} and $target ne 'tex') &&
  ($ENV{'form.storeupl'}) && ($allowed)) {   ($env{'form.storeupl'}) && ($allowed)) {
  if ($ENV{'form.uploaddoc.filename'}=~/\.(gif|jpg|png|jpeg)$/i) {   if ($env{'form.uploaddoc.filename'}=~/\.(gif|jpg|png|jpeg)$/i) {
     if ($syllabus{'uploaded.photourl'}) {      if ($syllabus{'uploaded.photourl'}) {
  &Apache::lonnet::removeuploadedurl($syllabus{'uploaded.photourl'});   &Apache::lonnet::removeuploadedurl($syllabus{'uploaded.photourl'});
     }      }
     $syllabus{'uploaded.photourl'}=              if ($caller eq 'grppage') {
  &Apache::lonnet::userfileupload('uploaddoc',1,'simplepage');                  $syllabus{'uploaded.photourl'}=&Apache::lonnet::userfileupload(
                                                 'uploaddoc',1,"grouppage/$marker");
               } else {
           $syllabus{'uploaded.photourl'}=
        &Apache::lonnet::userfileupload('uploaddoc',1,'simplepage');
               }
  }   }
  $syllabus{'uploaded.lastmodified'}=time;   $syllabus{'uploaded.lastmodified'}=time;
  &Apache::lonnet::put('smppage_'.$marker,\%syllabus,$dom,$crs);   &Apache::lonnet::put($namespace,\%syllabus,$dom,$crs);
     }      }
     if (($allowed) && ($ENV{'form.storesyl'})) {      if (($allowed) && ($env{'form.storesyl'})) {
  foreach (keys %syllabusfields) {   foreach (keys %syllabusfields) {
     my $field=$ENV{'form.'.$_};      my $field=$env{'form.'.$_};
       chomp($field);
     $field=~s/\s+$//s;      $field=~s/\s+$//s;
       $field=~s/^\s+//s;
       $field=~s/\<br\s*\/*\>$//s;
     $field=&Apache::lonfeedback::clear_out_html($field,1);      $field=&Apache::lonfeedback::clear_out_html($field,1);
     $syllabus{$_}=$field;      $syllabus{$_}=$field;
  }   }
  $syllabus{'uploaded.lastmodified'}=time;   $syllabus{'uploaded.lastmodified'}=time;
  &Apache::lonnet::put('smppage_'.$marker,\%syllabus,$dom,$crs);   &Apache::lonnet::put($namespace,\%syllabus,$dom,$crs);
     }      }
   
 # ---------------------------------------------------------------- Get syllabus  # ---------------------------------------------------------------- Get syllabus
     if (($syllabus{'uploaded.lastmodified'}) || ($allowed)) {      if (($syllabus{'uploaded.lastmodified'}) || ($allowed)) {
  if ($syllabus{'uploaded.photourl'}) {   if ($syllabus{'uploaded.photourl'}) {
     if ($target ne 'tex') {      &Apache::lonnet::allowuploaded('/adm/'.$caller,
  &Apache::lonnet::allowuploaded('/adm/smppg',     $syllabus{'uploaded.photourl'});
        $syllabus{'uploaded.photourl'});      
  $r->print('<img src="'.$syllabus{'uploaded.photourl'}.      my $image='<img src="'.$syllabus{'uploaded.photourl'}.'"
   '" align="right" />');                              align="right" />';
     } else {      if ($target eq 'tex') {
  &Apache::lonnet::allowuploaded('/adm/smppg',   $image=&Apache::lonxml::xmlparse($r,'tex',$image);
        $syllabus{'uploaded.photourl'});  
  $r->print(&Apache::lonxml::xmlparse($r,'tex','<img src="'.$syllabus{'uploaded.photourl'}.  
   '" align="right" />'));  
     }      }
       $r->print($image);
  }   }
  if ($allowed) {   if ($allowed) {
     $r->print(      $r->print(
Line 173  ENDDOCUMENT Line 231  ENDDOCUMENT
  foreach (sort keys %syllabusfields) {   foreach (sort keys %syllabusfields) {
     if (($syllabus{$_}) || ($allowed)) {      if (($syllabus{$_}) || ($allowed)) {
  my $message=$syllabus{$_};   my $message=$syllabus{$_};
  $message=~s/\n/\<br \/\>/g;   &Apache::lonfeedback::newline_to_br(\$message);
  $message   $message
     =~s/(https*\:\/\/[^\s]+)/\<a href=\"$1\"\>\<tt\>$1\<\/tt\>\<\/a\>/g;      =~s/(https*\:\/\/[^\s]+)/\<a href=\"$1\"\>\<tt\>$1\<\/tt\>\<\/a\>/g;
    if ($allowed) {
       $message=&Apache::lonspeller::markeduptext($message);
    }
  $message=&Apache::lontexconvert::msgtexconverted($message);   $message=&Apache::lontexconvert::msgtexconverted($message);
  unless ($_ eq 'aaa_title') {                  if ($_ eq 'abb_links' && $group ne '') {
                       $r->print('<br /><input type="hidden" name="'.$_.
                                             '" value="'.$syllabus{$_}.'" />');
                       &display_group_links($r,$target,$marker,'edit',%groupinfo);
                       $r->print('<br />');
                   } elsif ($_ eq 'aaa_title') {
                       if ($target ne 'tex') {
                           $r->print('<h1>'.$message.'</h1>');
                       } else {
                           my $safeinit;
                           $r->print(&Apache::lonxml::xmlparse($r,'tex','<h1>'.$message.'</h1>'));
                       }
                       if ($allowed) {
                           if ($env{'form.grade_target'} ne 'tex') {
                               $r->print(
                                         '<br />Title<br /><textarea cols="80" rows="2" name="'.$_.'">'.
                                         $syllabus{$_}.
                                         '</textarea><input type="submit" name="storesyl" value="Store" />');
                           } else {
                               my $safeinit;
                               $r->print(&Apache::lonxml::xmlparse($r,'tex',$syllabus{$_},$safeinit));
                           }
                       }
                   } else {
     if (($_ ne 'bbb_content') || ($allowed)) {      if (($_ ne 'bbb_content') || ($allowed)) {
  if ($target ne 'tex') {   if ($target ne 'tex') {
     $r->print('<h3>'.$syllabusfields{$_}.'</h3>');      $r->print('<h3>'.$syllabusfields{$_}.'</h3>');
Line 195  ENDDOCUMENT Line 279  ENDDOCUMENT
     }      }
     if ($allowed) {      if ($allowed) {
  if ($target ne 'tex') {   if ($target ne 'tex') {
     $r->print('<br /><textarea cols="80" rows="20" name="'.$_.'">'.      $r->print('<br /><textarea cols="80" rows="24" name="'.$_.'" id="'.$_.'">'.
       $syllabus{$_}.  
       '</textarea><input type="submit" name="storesyl" value="Store" />');  
  } else {  
     my $safeinit;  
     $r->print(&Apache::lonxml::xmlparse($r,'tex',$syllabus{$_},$safeinit));  
  }  
     }  
  } else {  
     if ($target ne 'tex') {  
  $r->print('<h1>'.$message.'</h1>');  
     } else {  
  my $safeinit;  
  $r->print(&Apache::lonxml::xmlparse($r,'tex','<h1>'.$message.'</h1>'));  
     }  
     if ($allowed) {  
  if ($ENV{'form.grade_target'} ne 'tex') {  
     $r->print(  
       '<br />Title<br /><textarea cols="80" rows="2" name="'.$_.'">'.  
       $syllabus{$_}.        $syllabus{$_}.
       '</textarea><input type="submit" name="storesyl" value="Store" />');        '</textarea><input type="submit" name="storesyl" value="Store" />');
  } else {   } else {
Line 224  ENDDOCUMENT Line 290  ENDDOCUMENT
  }   }
     }      }
  }   }
  if ($allowed && ($ENV{'form.grade_target'} ne 'tex')) {   if ($allowed && ($env{'form.grade_target'} ne 'tex')) {
     $r->print('</form>');      $r->print(&Apache::lonhtmlcommon::htmlareaselectactive
         ('bbb_content').'</form>');
  }   }
  if ($ENV{'form.grade_target'} ne 'tex') {$r->print('</p>');}   if ($env{'form.grade_target'} ne 'tex') {$r->print('</p>');}
     } else {      } else {
  $r->print('<p>No page information provided.</p>');   $r->print('<p>No page information provided.</p>');
     }      }
     if ($ENV{'form.grade_target'} ne 'tex') {      if ($env{'form.grade_target'} ne 'tex') {
  $r->print('</body></html>');   $r->print(&Apache::loncommon::end_page());
     } else {      } else {
  $r->print('\end{document}');   $r->print('\end{document}');
     }      }
     return OK;      return OK;
 }   }
   
   sub display_group_links {
       my ($r,$target,$marker,$context,%groupinfo) = @_;
       my @available = ();
       my %menu = ();
       %{$menu{'email'}} = (
                           text => 'Group e-mail',
                           href => '/adm/email?compose=group&group='.$marker,
                         );
       %{$menu{'discussion'}} = (
                           text => 'Discussion Boards',
                           href => '/adm/groupboards?group='.$marker,
                         );
       %{$menu{'chat'}} = (
                           text => 'Group chat',
                           href => "javascript:group_chat('$marker')",
                         );
       %{$menu{'files'}} = (
                           text => 'File repository',
                           href => '/adm/coursegrp_portfolio?group='.$marker,
                         );
       %{$menu{'roster'}} = (
                           text => 'Membership roster',
                           href => '/adm/grouproster?group='.$marker,
                         );
       foreach my $tool (sort(keys(%menu))) {
           if ($groupinfo{functions}{$tool} eq 'on') {
               push(@available,$tool);
           }
       }
       if (@available > 0) {
           my $output = '<table cellspacing="4" cellpadding="4"><tr>';
           foreach my $tool (@available) {
               if ($target eq 'tex') {
                   $output .= '<td>'.$menu{$tool}{text}.'</td>';
               } else {
                   $output .= '<td><a href="'.$menu{$tool}{href}.'">'.
                              $menu{$tool}{text}.'</a></td>';
               }
           }
           $output .= '</tr></table>';
           if ($target eq 'tex') {
               $r->print(&Apache::lonxml::xmlparse($r,'tex','Available functions<br /><br />'.$output));
           } else {
               $r->print('<h3>Functions</h3>'.$output);
           }
       } else {
           my $output;
           if ($context eq 'edit') {
               $output = 'No group functionality';
           } else {  
               $output = 'No group functionality (e.g., e-mail, discussion, chat or file upload) is currently available to you in this group: '.$marker;
           }
           if ($target eq 'tex') {
               $r->print(&Apache::lonxml::xmlparse($r,'tex',$output));
           } else {
               $r->print($output);
           }
       }
   }
    
   
 1;  1;
 __END__  __END__

Removed from v.1.18  
changed lines
  Added in v.1.43


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