Diff for /loncom/interface/lonsimplepage.pm between versions 1.76 and 1.77

version 1.76, 2009/03/27 13:50:36 version 1.77, 2009/03/27 15:46:38
Line 262  if($target ne 'tex'){ Line 262  if($target ne 'tex'){
 #---Print Function  #---Print Function
  if ($target ne 'tex') {   if ($target ne 'tex') {
  if($allowed || $privileged){   if($allowed || $privileged){
  &Apache::lontemplate::start_functionslist($r);                          $r->print(&Apache::lontemplate::start_functionslist());
  if($allowed){   if($allowed){
  &Apache::lontemplate::item_functionslist($r,'<a href="'.$r->uri.'?forcestudent=1">'.&mt('Show Student View').'</a>'.&Apache::loncommon::help_open_topic('Uploaded_Templates_PublicView'));                                        $r->print(&Apache::lontemplate::item_functionslist(
                                       '<a href="'.$r->uri.'?forcestudent=1">'.&mt('Show Student View').'</a>'
                                      .&Apache::loncommon::help_open_topic('Uploaded_Templates_PublicView')));
  }elsif($privileged){   }elsif($privileged){
  my $edittext = &mt('Edit');   my $edittext = &mt('Edit');
         if ($group ne '') {          if ($group ne '') {
             $edittext = &mt('Edit Group Homepage');              $edittext = &mt('Edit Group Homepage');
         }          }
  &Apache::lontemplate::item_functionslist($r,'<a href="'.$r->uri.'?forceedit=edit'.$refarg.'">'.$edittext.'</a>');                                  $r->print(&Apache::lontemplate::item_functionslist(
                                       '<a href="'.$r->uri.'?forceedit=edit'.$refarg.'">'.$edittext.'</a>'));
         if ($group ne '') {          if ($group ne '') {
             if ($group_edit_perm) {              if ($group_edit_perm) {
                 &Apache::lontemplate::item_functionslist($r,'&nbsp;&nbsp;&nbsp;'.                                                  $r->print(&Apache::lontemplate::item_functionslist(
                 '<a href="/adm/coursegroups?action=modify&amp;refpage=grouplist'.                                                      '<a href="/adm/coursegroups?action=modify&amp;refpage=grouplist'
                 '&amp;state=pick_task&amp;groupname='.$group.'">'.                                                     .'&amp;state=pick_task&amp;groupname='.$group.'">'
                 &mt('Edit Group Settings').'</a>');                                                     .&mt('Edit Group Settings').'</a>'));
             }              }
       }            }
  }   }
  &Apache::lontemplate::end_functionslist($r);                          $r->print(&Apache::lontemplate::end_functionslist());
  }   }
   }    }
   

Removed from v.1.76  
changed lines
  Added in v.1.77


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