--- loncom/interface/lonmanagekeys.pm 2003/09/23 00:26:10 1.13 +++ loncom/interface/lonmanagekeys.pm 2004/05/08 02:07:16 1.14 @@ -1,7 +1,7 @@ # The LearningOnline Network with CAPA # Handler to manage course access keys # -# $Id: lonmanagekeys.pm,v 1.13 2003/09/23 00:26:10 www Exp $ +# $Id: lonmanagekeys.pm,v 1.14 2004/05/08 02:07:16 www Exp $ # # Copyright Michigan State University Board of Trustees # @@ -191,8 +191,18 @@ sub handler { return HTTP_NOT_ACCEPTABLE; } if ($ENV{'form.cid'}) { - my %cenv=&Apache::lonnet::coursedescription($ENV{'form.cid'}); - if ($ENV{'form.listkeyscsv'}) { + my %cenv=&Apache::lonnet::coursedescription($ENV{'form.cid'}); + my $keytype=''; + if ($cenv{'url'} eq '/res/') { + ($cenv{'num'},$cenv{'domain'})=split(/\_/,$ENV{'form.cid'}); + $keytype='auth'; + } elsif ($cenv{'keyauth'}) { + ($cenv{'num'},$cenv{'domain'})=split(/\W/,$cenv{'keyauth'}); + $keytype='auth'; + } else { + $keytype='course'; + } + if ($ENV{'form.listkeyscsv'}) { # # CSV Output # @@ -233,12 +243,17 @@ sub handler { &addcom(%cenv); } # --- Menu - $r->print('

'.&mt('Key Access').'

'); - if ($cenv{'keyaccess'} eq 'yes') { - $r->print(&mt('Access to this course is key controlled.'). + if ($keytype eq 'course') { + $r->print('

'.&mt('Key Access').'

'); + if ($cenv{'keyaccess'} eq 'yes') { + $r->print(&mt('Access to this course is key controlled.'). '
') } else { $r->print(&mt('Access to this course is open, no access keys').'
'); + } + } else { + $r->print('

'.&mt('Key Authority'). + ' '.$cenv{'num'}.'@'.$cenv{'domain'}.'

'); } $r->print(<

Generate New Keys

@@ -261,7 +276,7 @@ ENDKEYMENU $r->send_http_header; $r->print(&header().&Apache::loncommon::coursebrowser_javascript()); $r->print( - &mt('Course ID').': '); + &mt('Course ID of Key Authority').': '); $r->print(&mt('Domain').': '.&Apache::loncommon::select_dom_form( $ENV{'request.role.domain'},'domain')); $r->print(&Apache::loncommon::selectcourse_link(