Diff for /loncom/publisher/lonunauthorized.pm between versions 1.2 and 1.5

version 1.2, 2003/09/22 15:39:53 version 1.5, 2006/04/06 22:15:19
Line 42  sub handler { Line 42  sub handler {
     return OK if $r->header_only;      return OK if $r->header_only;
   
 # ------------------------------------------------------------ Print the screen  # ------------------------------------------------------------ Print the screen
     $r->print(<<ENDDOCUMENT);  
 <html>  
 <head>  
 <title>The LearningOnline Network with CAPA</title>  
 </head>  
 ENDDOCUMENT  
 # Figure out who the user is and what they wanted to access  # Figure out who the user is and what they wanted to access
   
     my ($ownername,$ownerdomain)=      my ($ownername,$ownerdomain)=
      &Apache::loncacc::constructaccess($ENV{'request.editurl'},$r->dir_config('lonDefDomain'));       &Apache::loncacc::constructaccess($env{'request.editurl'},$r->dir_config('lonDefDomain'));
 # print header  # print header
     $r->print(&Apache::loncommon::bodytag      $r->print(&Apache::loncommon::start_page("Failed Access to Construction Space",
            ("Failed Access to Construction Space",'','','',$ownerdomain));       undef,
        {'domain' => $ownerdomain,}));
 # figure out what went wrong  # figure out what went wrong
   
     if ($ownerdomain) {      if ($ownerdomain) {
Line 71  ENDDOCUMENT Line 66  ENDDOCUMENT
         $r->print(          $r->print(
             "<h1>".              "<h1>".
  &mt("You do not have authoring privileges for this resource")."</h1>");   &mt("You do not have authoring privileges for this resource")."</h1>");
         my ($realownername)=($ENV{'request.editurl'}=~/\/(?:\~|priv\/|home\/)(\w+)/);          my ($realownername)=($env{'request.editurl'}=~/\/(?:\~|priv\/|home\/)(\w+)/);
         my $realownerhome=          my $realownerhome=
       &Apache::lonnet::homeserver(        &Apache::lonnet::homeserver(
         $realownername,$r->dir_config('lonDefDomain'));          $realownername,$r->dir_config('lonDefDomain'));
Line 79  ENDDOCUMENT Line 74  ENDDOCUMENT
            $r->print("<p>".&mt('Contact')." ".             $r->print("<p>".&mt('Contact')." ".
     &Apache::loncommon::aboutmewrapper(      &Apache::loncommon::aboutmewrapper(
      &Apache::loncommon::plainname($realownername,       &Apache::loncommon::plainname($realownername,
                                $r->dir_config('lonDefDomain')).'('.                                 $r->dir_config('lonDefDomain')).' ('.
                                $realownername.&mt(' at ').                                 $realownername.&mt(' at ').
                                $r->dir_config('lonDefDomain').')',                                 $r->dir_config('lonDefDomain').')',
        $realownername,$r->dir_config('lonDefDomain')).         $realownername,$r->dir_config('lonDefDomain')).
Line 87  ENDDOCUMENT Line 82  ENDDOCUMENT
         }          }
     }      }
           
     $r->print('</body></html>');      $r->print(&Apache::loncommon::end_page());
     return OK;      return OK;
 }   } 
   

Removed from v.1.2  
changed lines
  Added in v.1.5


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