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

version 1.83, 2009/06/08 18:04:45 version 1.84, 2009/06/11 16:48:33
Line 182  sub handler { Line 182  sub handler {
             my $msg =              my $msg =
             &mt('You do not currently have rights to view this group.');              &mt('You do not currently have rights to view this group.');
             if ($target ne 'tex') {              if ($target ne 'tex') {
                 $r->print("<p>$msg</p>".                  $r->print('<p class="LC_warning">'.$msg.'</p>'.
                 &Apache::loncommon::end_page());                  &Apache::loncommon::end_page());
             } else {              } else {
                 $r->print('\textbf{'.$msg.'}\end{document}');                  $r->print('\textbf{'.$msg.'}\end{document}');
Line 253  sub handler { Line 253  sub handler {
         &Apache::lonnet::put($db_name,\%syllabus,$dom,$crs);          &Apache::lonnet::put($db_name,\%syllabus,$dom,$crs);
     }      }
   
 #---Print help Text  
     if($target ne 'tex'){  
         if ($allowed) {  
             $r->print(&Apache::loncommon::help_open_topic('Uploaded_Templates_TextBoxes',&mt('Help with filling in text boxes')));  
         }  
     }  
 #---Print Function  #---Print Function
     if ($target ne 'tex') {      if ($target ne 'tex') {
         if ($allowed || $privileged) {          if ($allowed || $privileged) {
             $r->print(&Apache::lontemplate::start_functionslist());              my $functions=&Apache::lonhtmlcommon::start_funclist();
             if ($allowed) {              if ($allowed) {
                 $r->print(&Apache::lontemplate::item_functionslist(                  $functions.=&Apache::lonhtmlcommon::add_item_funclist(
                 '<a href="'.$r->uri.'?forcestudent=1">'.&mt('Show Student View').'</a>'                                  '<a href="'.$r->uri.'?forcestudent=1">'
                 .&Apache::loncommon::help_open_topic('Uploaded_Templates_PublicView')));                                 .&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');
                 }                  }
                 $r->print(&Apache::lontemplate::item_functionslist(                  $functions.=&Apache::lonhtmlcommon::add_item_funclist(
                 '<a href="'.$r->uri.'?forceedit=edit'.$refarg.'">'.$edittext.'</a>'));                                  '<a href="'.$r->uri.'?forceedit=edit'.$refarg.'">'
                                  .$edittext.'</a>');
                 if ($group ne '') {                  if ($group ne '') {
                     if ($group_edit_perm) {                      if ($group_edit_perm) {
                         $r->print(&Apache::lontemplate::item_functionslist(                          $functions.=&Apache::lonhtmlcommon::add_item_funclist(
                         '<a href="/adm/coursegroups?action=modify&amp;refpage=grouplist'                                          '<a href="/adm/coursegroups'
                         .'&amp;state=pick_task&amp;groupname='.$group.'">'                                         .'?action=modify&amp;refpage=grouplist'
                         .&mt('Edit Group Settings').'</a>'));                                         .'&amp;state=pick_task&amp;groupname='
                                          .$group.'">'
                                          .&mt('Edit Group Settings')
                                          .'</a>');
                        }                         }
                     }                      }
             }              }
             $r->print(&Apache::lontemplate::end_functionslist());              $functions.=&Apache::lonhtmlcommon::end_funclist();
               $r->print(&Apache::loncommon::head_subbox($functions));
           }
       }
   
   #---Print help Text
       if($target ne 'tex'){
           if ($allowed) {
               $r->print(&Apache::loncommon::help_open_topic('Uploaded_Templates_TextBoxes',&mt('Help with filling in text boxes')));
         }          }
     }      }
   
Line 392  sub handler { Line 400  sub handler {
         if ($group ne '') {          if ($group ne '') {
             &display_group_links($r,$target,$group,'view',$refarg,%groupinfo);              &display_group_links($r,$target,$group,'view',$refarg,%groupinfo);
         } else {          } else {
             $r->print('<p>'.&mt('No page information provided.').'</p>');              my $text=&mt('No page information provided.');
               if ($target ne 'tex') {
                   $r->print('<p class="LC_info">'.$text.'</p>');
               } else {
               $r->print($text)
               }
         }          }
     }      }
     if ($env{'form.grade_target'} ne 'tex') {      if ($env{'form.grade_target'} ne 'tex') {

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


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