Diff for /loncom/publisher/lonrights.pm between versions 1.10 and 1.15

version 1.10, 2003/09/22 15:39:53 version 1.15, 2004/05/20 13:42:35
Line 41  use Apache::lonlocal; Line 41  use Apache::lonlocal;
 sub handler {  sub handler {
   
   my $r=shift;    my $r=shift;
     my $target = $ENV{'form.grade_target'};
     if ($target eq 'meta') {
         &Apache::loncommon::content_type($r,'text/html');
         $r->send_http_header;
         $ENV{'request.uri'}=$r->uri;
         my $file = &Apache::lonnet::filelocation("",$r->uri);
         my $content=&Apache::lonnet::getfile($file);
         my $result=&Apache::lonxml::xmlparse(undef,'meta',$content);
         $r->print($result);
         return OK;
     }
   &Apache::loncommon::content_type($r,'text/html');    &Apache::loncommon::content_type($r,'text/html');
   $r->send_http_header;    $r->send_http_header;
   
Line 163  sub handler { Line 174  sub handler {
   my $token;    my $token;
   my $rulecounter=0;    my $rulecounter=0;
   my $colzero=&mt($constructmode?'Edit action':'Rule');    my $colzero=&mt($constructmode?'Edit action':'Rule');
 my %lt=&Apache::loncommon::texthash('ef' => 'Effect',    my %lt=&Apache::lonlocal::texthash('ef' => 'Effect',
     'do' => 'Domain',       'do' => 'Domain',
     'co' => 'Course',       'co' => 'Course',
     'se' => 'Section/Group',       'se' => 'Section/Group',
     'ro' => 'Role');       'ro' => 'Role');
 # ---------------------------------------------------------- Start table output  # ---------------------------------------------------------- Start table output
   $r->print(<<ENDSTARTTABLE);    $r->print(<<ENDSTARTTABLE);
 <table border="2">  <table border="2">
Line 283  ENDSTARTTABLE Line 294  ENDSTARTTABLE
                  &Apache::lonnet::coursedescription($rdom.'_'.$rcourse);                   &Apache::lonnet::coursedescription($rdom.'_'.$rcourse);
               $r->print($descript{'description'}.'&nbsp;&nbsp;&nbsp;');                $r->print($descript{'description'}.'&nbsp;&nbsp;&nbsp;');
           }            }
           $r->print(&Apache::loncommon::selectcourse_link('rules',    if ($constructmode) {
     'course_'.$rulecounter,'domain_'.$rulecounter));        $r->print(&Apache::loncommon::selectcourse_link('rules',
           'course_'.$rulecounter,'domain_'.$rulecounter));
     }
 # close row  # close row
           $r->print('</td></tr>');            $r->print('</td></tr>');
      }                                              }                                       

Removed from v.1.10  
changed lines
  Added in v.1.15


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