Diff for /loncom/interface/lonsimplepage.pm between versions 1.50 and 1.57

version 1.50, 2007/05/02 01:33:49 version 1.57, 2008/10/20 16:29:59
Line 41  use Apache::longroup; Line 41  use Apache::longroup;
 use HTML::Entities();  use HTML::Entities();
 use LONCAPA;  use LONCAPA;
   
   sub get_db_name {
       my ($url) = @_;
       my ($udom,$uname,$marker)=(split(m{/},$url))[2,3,4];
       my $dom = $env{'course.'.$env{'request.course.id'}.'.domain'};
       my $crs = $env{'course.'.$env{'request.course.id'}.'.num'};
   
       my $db_name;
   
       if ($dom && $crs && ($udom eq $dom) && ($uname eq $crs)) {
    $marker =~ s/\W//g;
    $db_name = 'grppage_'.$marker;
       } else {
    $marker=~s/\D//g;
           $db_name = 'smppage_'.$marker;
       }
       return if (!defined($marker));
   
       return $db_name;
   }
   
 sub handler {  sub handler {
     my $r = shift;      my $r = shift;
     &Apache::loncommon::content_type($r,'text/html');      &Apache::loncommon::content_type($r,'text/html');
Line 51  sub handler { Line 71  sub handler {
     if ($target eq 'tex') {      if ($target eq 'tex') {
  $r->print(&Apache::lonprintout::print_latex_header($env{'form.latex_type'}));   $r->print(&Apache::lonprintout::print_latex_header($env{'form.latex_type'}));
     }       } 
     my (undef,undef,$udom,$uname,$marker)=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') {
Line 62  sub handler { Line 82  sub handler {
  return OK;   return OK;
     }      }
   
       my $db_name = &get_db_name($r->uri);
   
     my $dom = $env{'course.'.$env{'request.course.id'}.'.domain'};      my $dom = $env{'course.'.$env{'request.course.id'}.'.domain'};
     my $crs = $env{'course.'.$env{'request.course.id'}.'.num'};      my $crs = $env{'course.'.$env{'request.course.id'}.'.num'};
     my ($namespace,$group,$group_desc,$group_home_view,$group_home_edit,      my ($group,$group_desc,$group_home_view,$group_home_edit,
         $group_view_perm,$group_edit_perm);          $group_view_perm,$group_edit_perm);
     my %curr_group = ();      my %curr_group = ();
     my %groupinfo = ();      my %groupinfo = ();
     if ($dom && $crs && ($udom eq $dom) && ($uname eq $crs)) {      if ($db_name =~ /^grppage_/) {
         $marker =~ s/\W//g;          $group = (split(m{/},$r->uri))[4];
         $group = $marker;   $group =~ s/\W//g;
         my %curr_groups = &Apache::longroup::coursegroups($dom,$crs,$group);          my %curr_groups = &Apache::longroup::coursegroups($dom,$crs,$group);
         if (!%curr_groups) {          if (!%curr_groups) {
     &Apache::loncommon::simple_error_page($r,'','Invalid group name');      &Apache::loncommon::simple_error_page($r,'','Invalid group name');
Line 79  sub handler { Line 101  sub handler {
         %groupinfo =           %groupinfo = 
     &Apache::longroup::get_group_settings($curr_groups{$group});      &Apache::longroup::get_group_settings($curr_groups{$group});
         $group_desc = &unescape($groupinfo{'description'});          $group_desc = &unescape($groupinfo{'description'});
         $namespace = 'grppage_'.$group;  
     } else {  
         $marker=~s/\D//g;  
         $namespace = 'smppage_'.$marker;  
     }      }
   
     if (!$marker) {      if (!$db_name) {
  &Apache::loncommon::simple_error_page($r,'','Invalid call');   &Apache::loncommon::simple_error_page($r,'','Invalid call');
  return OK;   return OK;
     }      }
Line 115  sub handler { Line 133  sub handler {
         $refarg = '&ref='.$env{'form.ref'};          $refarg = '&ref='.$env{'form.ref'};
     }      }
         
     my %syllabus=&Apache::lonnet::dump($namespace,$dom,$crs);      my %syllabus=&Apache::lonnet::dump($db_name,$dom,$crs);
                 
 # --------------------------------------- There is such a user, get environment  # --------------------------------------- There is such a user, get environment
   
Line 198  sub handler { Line 216  sub handler {
   
     if ($allowed) {      if ($allowed) {
  $r->print('<p>'.   $r->print('<p>'.
   &Apache::loncommon::help_open_topic('Uploaded_Templates_TextBoxes','Help with filling in text boxes').'<br /><a href="'.$r->uri.'?forcestudent=1'.$refarg.'"><font size="+1">'.&mt('Show Student View').'</font></a>'.    &Apache::loncommon::help_open_topic('Uploaded_Templates_TextBoxes',&mt('Help with filling in text boxes'))
                    .'<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>');    &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');
Line 230  sub handler { Line 250  sub handler {
             }              }
  }   }
  $syllabus{'uploaded.lastmodified'}=time;   $syllabus{'uploaded.lastmodified'}=time;
  &Apache::lonnet::put($namespace,\%syllabus,$dom,$crs);   &Apache::lonnet::put($db_name,\%syllabus,$dom,$crs);
     }      }
     if (($allowed) && ($env{'form.storesyl'})) {      if (($allowed) && ($env{'form.storesyl'})) {
  foreach my $syl_field (keys(%syllabusfields)) {   foreach my $syl_field (keys(%syllabusfields)) {
Line 243  sub handler { Line 263  sub handler {
     $syllabus{$syl_field}=$field;      $syllabus{$syl_field}=$field;
  }   }
  $syllabus{'uploaded.lastmodified'}=time;   $syllabus{'uploaded.lastmodified'}=time;
  &Apache::lonnet::put($namespace,\%syllabus,$dom,$crs);   &Apache::lonnet::put($db_name,\%syllabus,$dom,$crs);
     }      }
   
 # ---------------------------------------------------------------- Get syllabus  # ---------------------------------------------------------------- Get syllabus
Line 265  sub handler { Line 285  sub handler {
     $r->print(      $r->print(
       '<form method="post" enctype="multipart/form-data">'.        '<form method="post" enctype="multipart/form-data">'.
       '<input type="hidden" name="forceedit" value="edit" />'.        '<input type="hidden" name="forceedit" value="edit" />'.
       '<h3>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="Upload" />'.        '<input type="submit" name="storeupl" value="'.&mt('Upload').'" />'.
       '</form><form method="post">');        '</form><form method="post">'.
                         '<input type="hidden" name="forceedit" value="edit" />');
  }   }
  foreach my $field (sort(keys(%syllabusfields))) {   foreach my $field (sort(keys(%syllabusfields))) {
     if (($syllabus{$field}) || ($allowed) ||       if (($syllabus{$field}) || ($allowed) || 
Line 280  sub handler { Line 301  sub handler {
  if ($allowed) {   if ($allowed) {
     $message=&Apache::lonspeller::markeduptext($message);      $message=&Apache::lonspeller::markeduptext($message);
  }   }
  $message=&Apache::lontexconvert::msgtexconverted($message);   if ($target ne 'tex') {
       $message=&Apache::lontexconvert::msgtexconverted($message);
    }
                 if ($field eq 'abb_links' && $group ne '') {                  if ($field eq 'abb_links' && $group ne '') {
                     $r->print('<br /><input type="hidden" name="'.$field.                      $r->print('<br /><input type="hidden" name="'.$field.
                                           '" value="'.$syllabus{$field}.'" />');                                            '" value="'.$syllabus{$field}.'" />');
Line 297  sub handler { Line 320  sub handler {
                     if ($allowed) {                      if ($allowed) {
                         if ($env{'form.grade_target'} ne 'tex') {                          if ($env{'form.grade_target'} ne 'tex') {
                             $r->print(                              $r->print(
                                       '<br />Title<br /><textarea cols="80" rows="2" name="'.$field.'">'.                                        '<br /><h3>'.&mt('Title').'</h3><textarea cols="80" rows="2" name="'.$field.'">'.
                                       &HTML::Entities::encode($syllabus{$field},'"&<>').                                        &HTML::Entities::encode($syllabus{$field},'"&<>').
                                       '</textarea><input type="submit" name="storesyl" value="Save" />');                                        '</textarea><input type="submit" name="storesyl" value="'.&mt('Save').'" />');
                         } 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 325  sub handler { Line 348  sub handler {
  if ($target ne 'tex') {   if ($target ne 'tex') {
     $r->print('<br /><textarea cols="80" rows="24" name="'.$field.'" id="'.$field.'">'.      $r->print('<br /><textarea cols="80" rows="24" name="'.$field.'" id="'.$field.'">'.
                                       &HTML::Entities::encode($syllabus{$field},'"&<>').                                        &HTML::Entities::encode($syllabus{$field},'"&<>').
       '</textarea><input type="submit" name="storesyl" value="Save" />');        '</textarea><input type="submit" name="storesyl" value="'.&mt('Save').'" />');
  } 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 392  sub display_group_links { Line 415  sub display_group_links {
                 $output .= '<td>'.&mt($menu{$tool}{text}).'</td>';                  $output .= '<td>'.&mt($menu{$tool}{text}).'</td>';
             } else {              } else {
                 $output .= '<td><a href="'.$menu{$tool}{href}.'">'.                  $output .= '<td><a href="'.$menu{$tool}{href}.'">'.
                            $menu{$tool}{text}.'</a></td>';                             &mt($menu{$tool}{text}).'</a></td>';
             }              }
         }          }
         $output .= '</tr></table>';          $output .= '</tr></table>';
Line 406  sub display_group_links { Line 429  sub display_group_links {
         if ($context eq 'edit') {          if ($context eq 'edit') {
             $output = &mt('No group functionality.');              $output = &mt('No group functionality.');
         } else {            } else {  
             $output = &mt('No group functionality (e.g., e-mail, discussion, chat or file upload) is currently available to you in this group: <b>[_1]</b>.',&unescape($groupinfo{'description'}));              $output = &mt('No group functionality (e.g., e-mail, discussion, chat or file upload) is currently available to you in this group: [_1].','<b>'.&unescape($groupinfo{'description'}).'</b>');
         }          }
         if ($target eq 'tex') {          if ($target eq 'tex') {
             $r->print(&Apache::lonxml::xmlparse($r,'tex',$output));              $r->print(&Apache::lonxml::xmlparse($r,'tex',$output));

Removed from v.1.50  
changed lines
  Added in v.1.57


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