File:  [LON-CAPA] / loncom / interface / lonmenu.pm
Revision 1.70: download - view: text, annotated - select for diffs
Fri May 23 23:58:53 2003 UTC (21 years ago) by www
Branches: MAIN
CVS tags: HEAD
Even before all of this started, the Remote had double definitions of
LONCAPAstale and LONCAPAreg. It still has double <head></head>

    1: # The LearningOnline Network with CAPA
    2: # Routines to control the menu
    3: #
    4: # $Id: lonmenu.pm,v 1.70 2003/05/23 23:58:53 www Exp $
    5: #
    6: # Copyright Michigan State University Board of Trustees
    7: #
    8: # This file is part of the LearningOnline Network with CAPA (LON-CAPA).
    9: #
   10: # LON-CAPA is free software; you can redistribute it and/or modify
   11: # it under the terms of the GNU General Public License as published by
   12: # the Free Software Foundation; either version 2 of the License, or
   13: # (at your option) any later version.
   14: #
   15: # LON-CAPA is distributed in the hope that it will be useful,
   16: # but WITHOUT ANY WARRANTY; without even the implied warranty of
   17: # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
   18: # GNU General Public License for more details.
   19: #
   20: # You should have received a copy of the GNU General Public License
   21: # along with LON-CAPA; if not, write to the Free Software
   22: # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
   23: #
   24: # /home/httpd/html/adm/gpl.txt
   25: #
   26: # http://www.lon-capa.org/
   27: #
   28: #
   29: # There are two parameters controlling the action of this module:
   30: #
   31: # browser.interface - if this is 'textual', it overrides the second parameter
   32: # and goes to screen reader PDA mode
   33: #
   34: # environment.remote - if this is 'on', the routines controll the remote
   35: # control, otherwise they render the main window controls; ignored it
   36: # browser.interface is 'textual'
   37: #
   38: 
   39: package Apache::lonmenu;
   40: 
   41: use strict;
   42: use Apache::lonnet;
   43: use Apache::Constants qw(:common);
   44: use Apache::lonhtmlcommon();
   45: use Apache::loncommon;
   46: use Apache::File;
   47: use vars qw(@desklines $readdesk);
   48: my @inlineremote;
   49: my $font;
   50: my $tabbg;
   51: my $pgbg;
   52: 
   53: # ============================= This gets called at the top of the body section
   54: 
   55: sub menubuttons {
   56:     my $forcereg=shift;
   57:     my $target  =shift;
   58:     my $registration=shift;
   59:     my $navmaps='';
   60:     my $reloadlink='';
   61:     my $escurl=&Apache::lonnet::escape($ENV{'REQUEST_URI'});
   62:     my $escsymb=&Apache::lonnet::escape($ENV{'request.symb'});
   63:     if ($ENV{'browser.interface'} eq 'textual') {
   64: # Textual display only
   65:         if ($ENV{'request.course.id'}) {
   66: 	    $navmaps=(<<ENDNAV);
   67: <a href="/adm/navmaps?postdata=$escurl&postsymb=$escsymb" target="_top">Navigate Contents</a>
   68: ENDNAV
   69:             if (($ENV{'REQUEST_URI'}=~/^\/adm\//) &&
   70:          ($ENV{'REQUEST_URI'}!~/^\/adm\/wrapper\//) &&
   71:          ($ENV{'REQUEST_URI'}!~/^\/adm\/.*\/(smppg|bulletinboard|aboutme)(\?|$)/)) {
   72:                 my $escreload=&Apache::lonnet::escape('return:');
   73:                 $reloadlink=(<<ENDRELOAD);
   74: <a href="/adm/flip?postdata=$escreload" target="_top"><font color="$font">Return to Last Location</font></a>
   75: ENDRELOAD
   76:             }
   77:         }
   78: 	my $output=(<<ENDMAINMENU);
   79: <script>
   80: // BEGIN LON-CAPA Internal
   81: </script>
   82: <a href="/adm/menu" target="_top">Main Menu</a>
   83: $reloadlink $navmaps<br />
   84: <script>
   85: // END LON-CAPA Internal
   86: </script>
   87: ENDMAINMENU
   88:         if ($registration) { $output.=&innerregister($forcereg,$target); }
   89: 	return $output."<hr />";
   90:     } elsif ($ENV{'environment.remote'} eq 'off') {
   91: # Remote Control is switched off
   92: # figure out colors
   93: 	my $function='student';
   94:         if ($ENV{'request.role'}=~/^(cc|in|ta|ep)/) {
   95: 	    $function='coordinator';
   96:         }
   97: 	if ($ENV{'request.role'}=~/^(su|dc|ad|li)/) {
   98:             $function='admin';
   99:         }
  100:         if (($ENV{'request.role'}=~/^(au|ca)/) ||
  101:             ($ENV{'REQUEST_URI'}=~/^(\/priv|\~)/)) {
  102:             $function='author';
  103:         }
  104:         my $domain=&Apache::loncommon::determinedomain();
  105:         $pgbg=&Apache::loncommon::designparm($function.'.pgbg',$domain);
  106:         $tabbg=&Apache::loncommon::designparm($function.'.tabbg',$domain);
  107:         $font=&Apache::loncommon::designparm($function.'.font',$domain);
  108:         my $link=&Apache::loncommon::designparm($function.'.link',$domain);
  109:         my $alink=&Apache::loncommon::designparm($function.'.alink',$domain);
  110:         my $vlink=&Apache::loncommon::designparm($function.'.vlink',$domain);
  111:         my $sidebg=&Apache::loncommon::designparm($function.'.sidebg',$domain);
  112: # Do we have a NAV link?
  113:         if ($ENV{'request.course.id'}) {
  114: 	    $navmaps=(<<ENDNAVREM);
  115: <td bgcolor="$tabbg">
  116: <a href="/adm/navmaps?postdata=$escurl&postsymb=$escsymb" target="_top"><font color="$font">Navigate Contents</font></a></td>
  117: ENDNAVREM
  118:             if (($ENV{'REQUEST_URI'}=~/^\/adm\//) &&
  119:                 ($ENV{'REQUEST_URI'}!~/^\/adm\/wrapper\//) &&
  120:          ($ENV{'REQUEST_URI'}!~/^\/adm\/.*\/(smppg|bulletinboard|aboutme)(\?|$)/)) {
  121:                 my $escreload=&Apache::lonnet::escape('return:');
  122:                 $reloadlink=(<<ENDRELOAD);
  123: <td bgcolor="$tabbg">
  124: <a href="/adm/flip?postdata=$escreload" target="_top"><font color="$font">Return to Last Location</font></a></td>
  125: ENDRELOAD
  126:             }
  127:         }
  128:         my $reg='';
  129:         if ($registration) {
  130:            $reg=&innerregister($forcereg,$target);
  131:         }
  132: 	return (<<ENDINLINEMENU);
  133: <script>
  134: // BEGIN LON-CAPA Internal
  135: </script>
  136: <table bgcolor="$pgbg" width="100%" border="0" cellpadding="3" cellspacing="3">
  137: <tr>
  138: <td bgcolor="$tabbg">
  139: <a href="/adm/menu" target="_top"><font color="$font">Main Menu</font></a>
  140: </td>
  141: $reloadlink
  142: $navmaps
  143: <td bgcolor="$tabbg">
  144: <a href="/adm/remote?action=launch&url=$escurl" target="_top">
  145: <font color="$font">Launch Remote Control</font></a></td>
  146: <td bgcolor="$tabbg">
  147: <img align="right" src="/adm/lonIcons/minilogo.gif" />
  148: <b>LON-CAPA</b></td>
  149: </tr>
  150: </table>
  151: <script>
  152: // END LON-CAPA Internal
  153: </script>
  154: $reg
  155: ENDINLINEMENU
  156:     } else {
  157: 	return '';
  158:     }
  159: }
  160: 
  161: # ====================================== This gets called in the header section
  162: 
  163: sub registerurl {
  164:     my $forcereg=shift;
  165:     my $target = shift;
  166:     my $result = '';
  167:     if ($ENV{'REQUEST_URI'} eq '/res/adm/pages/menu.html') { return ''; }
  168:     my $force_title='';
  169:     if ($ENV{'request.state'} eq 'construct') {
  170: 	$force_title=&Apache::lonxml::display_title();
  171:     }
  172:     if ($target eq 'edit') {
  173:         $result .="<script type=\"text/javascript\">\n".
  174:             "if (typeof swmenu != 'undefined') {swmenu.currentURL=null;}\n".
  175:             &Apache::loncommon::browser_and_searcher_javascript().
  176:                 "\n</script>\n";
  177:     }
  178:     if (($ENV{'browser.interface'} eq 'textual') ||
  179:         ($ENV{'environment.remote'} eq 'off') ||
  180:         ((($ENV{'request.publicaccess'}) || 
  181:          (!&Apache::lonnet::is_on_map($ENV{'REQUEST_URI'}))) &&
  182:         (!$forcereg))) {
  183:         my $loadfunction='';
  184:         my $unloadfunction='';
  185:         unless (($ENV{'browser.interface'} eq 'textual') ||
  186:                 ($ENV{'environment.remote'} eq 'off') ||
  187:                 ($ENV{'request.publicaccess'})) {
  188: 	    my $reopen=&Apache::lonmenu::reopenmenu();
  189:  	    $loadfunction='swmenu='.$reopen.'swmenu.noclient=0;';
  190:  	    $unloadfunction='swmenu='.$reopen.'swmenu.noclient=1;';
  191:         } 
  192: 	return $result.(<<ENDFUNCTIONS);
  193: <script type="text/javascript">
  194: function LONCAPAreg() {
  195:    $loadfunction
  196: } 
  197: 
  198: function LONCAPAstale() {
  199:    $unloadfunction
  200: }
  201: </script>
  202: $force_title
  203: ENDFUNCTIONS
  204:     }
  205: # Graphical display after login only
  206:     if ($Apache::lonxml::registered && !$forcereg) { return ''; }
  207:     $result.=&innerregister($forcereg,$target);
  208:     return $result.$force_title;
  209: }
  210: 
  211: # =========== This gets called in order to register a URL, both with the Remote
  212: # =========== and in the body of the document
  213: 
  214: sub innerregister {
  215:     my $forcereg=shift;
  216:     my $target = shift;
  217:     my $result = '';
  218:     if ($ENV{'REQUEST_URI'} eq '/res/adm/pages/menu.html') { return ''; }
  219: 
  220:     $Apache::lonxml::registered=1;
  221: 
  222:     my $textinter=($ENV{'browser.interface'} eq 'textual');
  223:     my $noremote=($ENV{'environment.remote'} eq 'off');
  224:     
  225:     my $textual=($textinter || $noremote);
  226: 
  227:     @inlineremote=();
  228:     undef @inlineremote;
  229: 
  230:     my $reopen=&Apache::lonmenu::reopenmenu();
  231: 
  232:     my $newmail='';
  233:     if ($noremote) {
  234: 	$newmail='<table bgcolor="'.$pgbg.'" border="0" cellspacing="3" cellpadding="3" width="100%"><tr><td bgcolor="'.$tabbg.'">';
  235:     }
  236:     if (($textual) && ($ENV{'request.symb'}) && ($ENV{'request.course.id'})) {
  237: 	my ($mapurl,$rid,$resurl)=split(/\_\_\_/,$ENV{'request.symb'});
  238:         $newmail.=$ENV{'course.'.$ENV{'request.course.id'}.'.description'};
  239:         my $maptitle=&Apache::lonnet::gettitle($mapurl);
  240: 	my $restitle=&Apache::lonnet::gettitle($resurl);
  241:         if ($maptitle) {
  242: 	    $newmail.=', '.$maptitle;
  243:         }
  244:         if ($restitle) {
  245: 	    $newmail.=': '.$restitle;
  246:         }
  247:         $newmail.='&nbsp;&nbsp;&nbsp;';
  248:     }
  249:     if (&Apache::lonmsg::newmail()) { 
  250:        $newmail=($textual?
  251:  '<b><a href="/adm/communicate">You have new messages</a></b><br />':
  252:                           'swmenu.setstatus("you have","messages");');
  253:     }
  254:     if ($noremote) {
  255: 	$newmail.='</td></tr></table>';
  256:     }
  257:     my $timesync=($textual?'':'swmenu.syncclock(1000*'.time.');');
  258:     my $tablestart=($noremote?'<table bgcolor="'.$pgbg.'" border="0" cellspacing="3" cellpadding="3" width="100%">':'');
  259:     my $tableend=($noremote?'</table>':'');
  260: # =============================================================================
  261: # ============================ This is for URLs that actually can be registered
  262:     if (($ENV{'REQUEST_URI'}!~/^\/(res\/)*adm\//) || ($forcereg)) {
  263: # -- This applies to homework problems for users with grading privileges
  264:         my $hwkadd='';
  265:         if 
  266:       ($ENV{'request.filename'}=~/\.(problem|exam|quiz|assess|survey|form)$/) {
  267: 	    if (&Apache::lonnet::allowed('vgr',$ENV{'request.course.id'})) {
  268: 		$hwkadd.=&switch('','',7,1,'subm.gif','view sub','missions',
  269:                        "gocmd('/adm/grades','submission')",
  270: 		       'View user submissions for this assessment resource');
  271:             }
  272: 	    if (&Apache::lonnet::allowed('mgr',$ENV{'request.course.id'})) {
  273: 		$hwkadd.=&switch('','',7,2,'pgrd.gif','problem','grades',
  274:                        "gocmd('/adm/grades','gradingmenu')",
  275:                        'Modify user grades for this assessment resource');
  276:             }
  277: 	    if (&Apache::lonnet::allowed('opa',$ENV{'request.course.id'})) {
  278: 		$hwkadd.=&switch('','',7,3,'pparm.gif','problem','parms',
  279:                        "gocmd('/adm/parmset','set')",
  280:                        'Modify deadlines, etc, for this assessment resource');
  281:             }
  282: 	}
  283: # -- End Homework
  284:         ###
  285:         ### Determine whether or not to display the 'cstr' button for this
  286:         ### resource
  287:         ###
  288:         my $editbutton = '';
  289:         if ($ENV{'user.author'}) {
  290:             if ($ENV{'request.role'}=~/^(ca|au)/) {
  291:                 # Set defaults for authors
  292:                 my ($top,$bottom) = ('con-','struct');
  293:                 my $action = "go('/priv/".$ENV{'user.name'}."');";
  294:                 my $cadom  = $ENV{'request.role.domain'};
  295:                 my $caname = $ENV{'user.name'};
  296:                 my $desc = "Enter my resource construction space";
  297:                 # Set defaults for co-authors
  298:                 if ($ENV{'request.role'} =~ /^ca/) { 
  299:                     ($cadom,$caname)=($ENV{'request.role'}=~/(\w+)\/(\w+)$/);
  300:                     ($top,$bottom) = ('co con-','struct');
  301:                     $action = "go('/priv/".$caname."');";
  302:                     $desc = "Enter construction space as co-author";
  303:                 }
  304:                 # Check that we are on the correct machine
  305:                 my $home = &Apache::lonnet::homeserver($caname,$cadom);
  306:                 if ($home eq $Apache::lonnet::perlvar{'lonHostID'}) {
  307:                     $editbutton=&switch
  308:                         ('','',6,1,$top,,$bottom,$action,$desc);
  309:                 }
  310:             }
  311:             ##
  312:             ## Determine if user can edit url.
  313:             ##
  314:             my $cfile='';
  315:             my $cfuname='';
  316:             my $cfudom='';
  317:             if ($ENV{'request.filename'}) {
  318:                 my $file=&Apache::lonnet::declutter($ENV{'request.filename'});
  319:                 $file=~s/^(\w+)\/(\w+)/\/priv\/$2/;
  320:                 # Chech that the user has permission to edit this resource
  321:                 ($cfuname,$cfudom)=&Apache::loncacc::constructaccess($file,$1);
  322:                 if (defined($cfudom)) {
  323:                     if (&Apache::lonnet::homeserver($cfuname,$cfudom) 
  324:                         eq $Apache::lonnet::perlvar{'lonHostID'}) {
  325:                         $cfile=$file;
  326:                     }
  327:                 }
  328:             }        
  329:             # Finally, turn the button on or off
  330:             if ($cfile) {
  331:                 $editbutton=&switch
  332:                     ('','',6,1,'cstr.gif','edit','resource',
  333:                      "go('".$cfile."');","Edit this resource");
  334:             } elsif ($editbutton eq '') {
  335:                 $editbutton=&clear(6,1);
  336:             }
  337:         }
  338:         ###
  339:         ###
  340: # Prepare the rest of the buttons
  341: 	my $menuitems=(<<ENDMENUITEMS);
  342: c&3&1
  343: s&2&1&back.gif&backward&&gopost('/adm/flip','back:'+currentURL)&Go to the previous resource in the course sequence&1
  344: s&2&3&forw.gif&forward&&gopost('/adm/flip','forward:'+currentURL)&Go to the next resource in the course sequence&3
  345: s&6&3&catalog.gif&catalog&info&catalog_info()&Show catalog information
  346: s&8&1&eval.gif&evaluate&this&gopost('/adm/evaluate',currentURL)&Provide my evaluation of this resource
  347: s&8&2&fdbk.gif&feedback&discuss&gopost('/adm/feedback',currentURL)&Provide feedback messages or contribute to the course discussion about this resource
  348: s&8&3&prt.gif&prepare&printout&gopost('/adm/printout',currentURL)&Prepare a printable document
  349: s&9&1&sbkm.gif&set&bookmark&set_bookmark()&Set a bookmark for this resource&2
  350: s&9&2&vbkm.gif&view&bookmark&edit_bookmarks()&Use or edit my bookmark collection&2
  351: s&9&3&anot.gif&anno-&tations&annotate()&Make notes and annotations about this resource&2
  352: ENDMENUITEMS
  353:         my $buttons='';
  354:         foreach (split(/\n/,$menuitems)) {
  355: 	    my ($command,@rest)=split(/\&/,$_);
  356:             if ($command eq 's') {
  357: 		$buttons.=&switch('','',@rest);
  358:             } else {
  359:                 $buttons.=&clear(@rest);
  360:             }
  361:         }
  362:         if ($textual) {
  363: # Registered, textual output
  364:             my $utility=&utilityfunctions();
  365:             my $form=&serverform();
  366:             my $inlinebuttons=
  367:                         join('',map { (defined($_)?$_:'') } @inlineremote);
  368: 	    $result =(<<ENDREGTEXT);
  369: <script>
  370: // BEGIN LON-CAPA Internal
  371: $utility
  372: </script>
  373: $timesync
  374: $newmail
  375: $tablestart
  376: $inlinebuttons
  377: $tableend
  378: $form
  379: <script>
  380: // END LON-CAPA Internal
  381: </script>
  382: 
  383: ENDREGTEXT
  384: # Registered, graphical output
  385:         } else {
  386: 	    $result = (<<ENDREGTHIS);
  387:      
  388: <script language="JavaScript">
  389: // BEGIN LON-CAPA Internal
  390: var swmenu=null;
  391: 
  392:     function LONCAPAreg() {
  393: 	  swmenu=$reopen;
  394:           swmenu.noclient=0;
  395:           swmenu.clearTimeout(swmenu.menucltim);
  396:           $timesync
  397:           $newmail
  398:           $buttons
  399: 	  swmenu.currentURL=window.location.pathname;
  400:           swmenu.reloadURL=window.location.pathname+window.location.search;
  401:           swmenu.currentSymb="$ENV{'request.symb'}";
  402:           swmenu.reloadSymb="$ENV{'request.symb'}";
  403:           swmenu.currentStale=0;
  404:           $hwkadd
  405:           $editbutton
  406:     }
  407: 
  408:     function LONCAPAstale() {
  409: 	  swmenu=$reopen
  410:           swmenu.currentStale=1;
  411:           if (swmenu.reloadURL!='' && swmenu.reloadURL!= null) { 
  412:              swmenu.switchbutton
  413:              (3,1,'reload.gif','return','location','go(reloadURL)','Return to the last known location in the course sequence');
  414: 	  }
  415:           swmenu.clearbut(7,1);
  416:           swmenu.clearbut(7,2);
  417:           swmenu.clearbut(7,3);
  418:           swmenu.menucltim=swmenu.setTimeout(
  419:  'clearbut(2,1);clearbut(2,3);clearbut(8,1);clearbut(8,2);clearbut(8,3);'+
  420:  'clearbut(9,1);clearbut(9,2);clearbut(9,3);clearbut(6,3);clearbut(6,1)',
  421: 			  2000);
  422:           swmenu.noclient=1;
  423:       }
  424: 
  425: // END LON-CAPA Internal
  426: </script>
  427: ENDREGTHIS
  428:         }
  429: # =============================================================================
  430:     } else {
  431: # ========================================== This can or will not be registered
  432:         if ($textual) {
  433: # Not registered, textual
  434: 	    $result= (<<ENDDONOTREGTEXT);
  435: ENDDONOTREGTEXT
  436:         } else {
  437: # Not registered, graphical
  438:            $result = (<<ENDDONOTREGTHIS);
  439: 
  440: <script language="JavaScript">
  441: // BEGIN LON-CAPA Internal
  442: var swmenu=null;
  443: 
  444:     function LONCAPAreg() {
  445: 	  swmenu=$reopen
  446: 	  swmenu.noclient=0;
  447:           $timesync
  448:           swmenu.currentStale=1;
  449:           swmenu.clearbut(2,1);
  450:           swmenu.clearbut(2,3);
  451:           swmenu.clearbut(8,1);
  452:           swmenu.clearbut(8,2);
  453:           swmenu.clearbut(8,3);
  454:           if (swmenu.currentURL) {
  455:              swmenu.switchbutton
  456:               (3,1,'reload.gif','return','location','go(currentURL)');
  457:  	  } else {
  458: 	      swmenu.clearbut(3,1);
  459:           }
  460:     }
  461: 
  462:     function LONCAPAstale() {
  463:  	  swmenu=$reopen
  464: 	  swmenu.noclient=1;  
  465:     }
  466: 
  467: // END LON-CAPA Internal
  468: </script>
  469: ENDDONOTREGTHIS
  470:        }
  471: # =============================================================================
  472:     }
  473:     return $result;
  474: }
  475: 
  476: sub loadevents() {
  477:     if ($ENV{'REQUEST_URI'} eq '/res/adm/pages/menu.html') { return ''; }
  478:     return 'LONCAPAreg();';
  479: }
  480: 
  481: sub unloadevents() {
  482:     if ($ENV{'REQUEST_URI'} eq '/res/adm/pages/menu.html') { return ''; }
  483:     return 'LONCAPAstale();';
  484: }
  485: 
  486: # ============================================================= Start up remote
  487: 
  488: sub startupremote {
  489:     my ($lowerurl)=@_;
  490:     if (($ENV{'browser.interface'} eq 'textual') ||
  491:         ($ENV{'environment.remote'} eq 'off')) {
  492:      return ('<meta HTTP-EQUIV="Refresh" CONTENT="0.5; url='.$lowerurl.'" />');
  493:     }
  494: #
  495: # The Remote actually gets launched!
  496: #
  497:     my $configmenu=&rawconfig();
  498:     my $esclowerurl=&Apache::lonnet::escape($lowerurl);
  499: 
  500:     return(<<ENDREMOTESTARTUP);
  501: <script>
  502: 
  503: function wheelswitch() {
  504:    if (window.status=='|') { 
  505:       window.status='/'; 
  506:    } else {
  507:       if (window.status=='/') {
  508:          window.status='-';
  509:       } else {
  510:          if (window.status=='-') { 
  511:             window.status='\\\\'; 
  512:          } else {
  513:             if (window.status=='\\\\') { window.status='|'; }
  514:          }
  515:       }
  516:    } 
  517: }
  518: 
  519: // ---------------------------------------------------------- The wait function
  520: var canceltim;
  521: function wait() {
  522:    if ((menuloaded==1) || (tim==1)) {
  523:       window.status='Done.';
  524:       if (tim==0) {
  525:          clearTimeout(canceltim);
  526:          $configmenu
  527:          window.location='$lowerurl';  
  528:       } else {
  529: 	  window.location='/adm/remote?action=collapse&url=$esclowerurl';
  530:       }
  531:    } else {
  532:       wheelswitch();
  533:       setTimeout('wait();',200);
  534:    }
  535: }
  536: 
  537: function main() {
  538:    canceltim=setTimeout('tim=1;',30000);
  539:    window.status='-';
  540:    wait();
  541: }
  542: 
  543: </script>
  544: ENDREMOTESTARTUP
  545: }
  546: 
  547: sub setflags() {
  548:     return(<<ENDSETFLAGS);
  549: <script>
  550:     menuloaded=0;
  551:     tim=0;
  552: </script>
  553: ENDSETFLAGS
  554: }
  555: 
  556: sub maincall() {
  557:     if (($ENV{'browser.interface'} eq 'textual') ||
  558:         ($ENV{'environment.remote'} eq 'off')) { return ''; }
  559:     return(<<ENDMAINCALL);
  560: <script>
  561:     main();
  562: </script>
  563: ENDMAINCALL
  564: }
  565: # ================================================================= Reopen menu
  566: 
  567: sub reopenmenu {
  568:    if (($ENV{'browser.interface'} eq 'textual') ||
  569:        ($ENV{'environment.remote'} eq 'off')) { return ''; }
  570:    my $menuname='LCmenu'.$Apache::lonnet::perlvar{'lonHostID'};
  571:    my $nothing = &Apache::lonhtmlcommon::javascript_nothing();
  572:    return('window.open('.$nothing.',"'.$menuname.'","",false);');
  573: } 
  574: 
  575: # =============================================================== Open the menu
  576: 
  577: sub open {
  578:     my $returnval='';
  579:     if (($ENV{'browser.interface'} eq 'textual') ||
  580:         ($ENV{'environment.remote'} eq 'off')) { return ''; }
  581:     my $menuname='LCmenu'.$Apache::lonnet::perlvar{'lonHostID'};
  582:     unless (shift eq 'unix') {
  583: # resizing does not work on linux because of virtual desktop sizes
  584:        $returnval.=(<<ENDRESIZE);
  585: if (window.screen) {
  586:     self.resizeTo(screen.availWidth-215,screen.availHeight-55);
  587:     self.moveTo(190,15);
  588: }
  589: ENDRESIZE
  590:     }
  591:     $returnval.=(<<ENDOPEN);
  592: window.status='Opening LON-CAPA Remote Control';
  593: var menu=window.open("/res/adm/pages/menu.html","$menuname",
  594: "height=350,width=150,scrollbars=no,menubar=no,top=5,left=5,screenX=5,screenY=5");
  595: ENDOPEN
  596:     return '<script>'.$returnval.'</script>';
  597: }
  598: 
  599: 
  600: # ================================================================== Raw Config
  601: 
  602: sub clear {
  603:     my ($row,$col)=@_;
  604:     unless (($ENV{'browser.interface'} eq 'textual') ||
  605:             ($ENV{'environment.remote'} eq 'off')) {
  606:        return "\n".qq(window.status+='.';swmenu.clearbut($row,$col););
  607:    } else { 
  608:        $inlineremote[10*$row+$col]='';
  609:        return ''; 
  610:    }
  611: }
  612: 
  613: # ============================================ Switch a button or create a link
  614: # Switch acts on the javascript that is executed when a button is clicked.  
  615: # The javascript is usually similar to "go('/adm/roles')" or "cstrgo(..)".
  616: 
  617: sub switch {
  618:     my ($uname,$udom,$row,$col,$img,$top,$bot,$act,$desc,$nobreak)=@_;
  619:     $act=~s/\$uname/$uname/g;
  620:     $act=~s/\$udom/$udom/g;
  621:     unless (($ENV{'browser.interface'} eq 'textual')  ||
  622:             ($ENV{'environment.remote'} eq 'off')) {
  623: # Remote
  624:        return "\n".
  625:  qq(window.status+='.';swmenu.switchbutton($row,$col,"$img","$top","$bot","$act","$desc"););
  626:    } elsif ($ENV{'browser.interface'} eq 'textual') {
  627: # Accessibility
  628:        if ($nobreak==2) { return ''; }
  629:        my $text=$top.' '.$bot;
  630:        $text=~s/\- //;
  631:        $inlineremote[10*$row+$col]="\n".($nobreak?' ':'<br />').
  632:         '<a href="javascript:'.$act.';">'.$text.'</a> '.
  633:         ($nobreak?'':$desc);
  634:    } else {
  635: # Inline Remote
  636:        if ($nobreak==2) { return ''; }
  637:        my $text=$top.' '.$bot;
  638:        $text=~s/\- //;
  639:        $inlineremote[10*$row+$col]="\n".
  640:          ($nobreak==3?'<td width="50%" colspan="2" align="right"':'<tr><td').
  641:          ' bgcolor="'.$tabbg.'"'.($nobreak==1?' width="50%" colspan="2"':'').
  642:      '"><a href="javascript:'.$act.';"><font color="'.$font.'"'.
  643:           ($nobreak?' size="+1"':'').
  644:      '>'.$text.'</font></a></td>'.
  645:      ($nobreak?'':'<td colspan="3" width="80%"><font color="'.$font.'" size="-1">'.$desc.'</font>').($nobreak!=1?'</tr>':'');
  646:    }
  647:     return '';
  648: }
  649: 
  650: sub secondlevel {
  651:     my $output='';
  652:     my 
  653:     ($uname,$udom,$rol,$crs,$pub,$con,$row,$col,$prt,$img,$top,$bot,$act,$desc)=@_;
  654:     if ($prt eq 'any') {
  655: 	   $output.=switch($uname,$udom,$row,$col,$img,$top,$bot,$act,$desc);
  656:     } elsif ($prt=~/^r(\w+)/) {
  657:         if ($rol eq $1) {
  658:            $output.=switch($uname,$udom,$row,$col,$img,$top,$bot,$act,$desc);
  659:         }
  660:     }
  661:     return $output;
  662: }
  663: 
  664: sub openmenu {
  665:     my $menuname='LCmenu'.$Apache::lonnet::perlvar{'lonHostID'};
  666:     if (($ENV{'browser.interface'} eq 'textual') ||
  667:         ($ENV{'environment.remote'} eq 'off')) { return ''; }
  668:     my $nothing = &Apache::lonhtmlcommon::javascript_nothing();
  669:     return "window.open(".$nothing.",'".$menuname."');";
  670: }
  671: 
  672: sub inlinemenu {
  673:     @inlineremote=();
  674:     undef @inlineremote;
  675:     &rawconfig(1);
  676:     return join('',map { (defined($_)?$_:'') } @inlineremote);
  677: }
  678: 
  679: sub rawconfig {
  680:     my $textualoverride=shift;
  681:     my $output='';
  682:     unless (($ENV{'browser.interface'} eq 'textual') ||
  683:             ($ENV{'environment.remote'} eq 'off')) {
  684:        $output.=
  685:  "window.status='Opening Remote Control';var swmenu=".&openmenu().
  686: "\nwindow.status='Configuring Remote Control ';";
  687:     } else {
  688:        unless ($textualoverride) { return ''; }
  689:     }
  690:     my $uname=$ENV{'user.name'};
  691:     my $udom=$ENV{'user.domain'};
  692:     my $adv=$ENV{'user.adv'};
  693:     my $author=$ENV{'user.author'};
  694:     my $crs='';
  695:     if ($ENV{'request.course.id'}) {
  696:        $crs='/'.$ENV{'request.course.id'};
  697:        if ($ENV{'request.course.sec'}) {
  698: 	   $crs.='_'.$ENV{'request.course.sec'};
  699:        }
  700:        $crs=~s/\_/\//g;
  701:     }
  702:     my $pub=($ENV{'request.state'} eq 'published');
  703:     my $con=($ENV{'request.state'} eq 'construct');
  704:     my $rol=$ENV{'request.role'};
  705:     my $requested_domain = $ENV{'request.role.domain'};
  706:     foreach (@desklines) {
  707:         my ($row,$col,$pro,$prt,$img,$top,$bot,$act,$desc)=split(/\:/,$_);
  708:         $prt=~s/\$uname/$uname/g;
  709:         $prt=~s/\$udom/$udom/g;
  710:         $prt=~s/\$crs/$crs/g; 
  711:         $prt=~s/\$requested_domain/$requested_domain/g;
  712:         if ($pro eq 'clear') {
  713: 	    $output.=&clear($row,$col);
  714:         } elsif ($pro eq 'any') {
  715:                $output.=&secondlevel(
  716: 	  $uname,$udom,$rol,$crs,$pub,$con,$row,$col,$prt,$img,$top,$bot,$act,$desc);
  717: 	} elsif ($pro eq 'smp') {
  718:             unless ($adv) {
  719:                $output.=&secondlevel(
  720:           $uname,$udom,$rol,$crs,$pub,$con,$row,$col,$prt,$img,$top,$bot,$act,$desc);
  721:             }
  722:         } elsif ($pro eq 'adv') {
  723:             if ($adv) {
  724:                $output.=&secondlevel(
  725: 	  $uname,$udom,$rol,$crs,$pub,$con,$row,$col,$prt,$img,$top,$bot,$act,$desc);
  726:             }
  727:         } elsif (($pro=~/p(\w+)/) && ($prt)) {
  728: 	    if (&Apache::lonnet::allowed($1,$prt)) {
  729:                $output.=switch($uname,$udom,$row,$col,$img,$top,$bot,$act,$desc);
  730:             }
  731:         } elsif ($pro eq 'course') {
  732:             if ($ENV{'request.course.fn'}) {
  733:                $output.=switch($uname,$udom,$row,$col,$img,$top,$bot,$act,$desc);
  734: 	    }
  735:         } elsif ($pro eq 'author') {
  736:             if ($author) {
  737:                 if ((($prt eq 'rca') && ($ENV{'request.role'}=~/^ca/)) ||
  738:                     (($prt eq 'rau') && ($ENV{'request.role'}=~/^au/))) {
  739:                     # Check that we are on the correct machine
  740:                     my $cadom=$requested_domain;
  741:                     my $caname=$ENV{'user.name'};
  742:                     if ($prt eq 'rca') {
  743: 		       ($cadom,$caname)=
  744:                                ($ENV{'request.role'}=~/(\w+)\/(\w+)$/);
  745:                     }                       
  746:                     $act =~ s/\$caname/$caname/g;
  747:                     my $home = &Apache::lonnet::homeserver($caname,$cadom);
  748:                     if ($home eq $Apache::lonnet::perlvar{'lonHostID'}) {
  749:                         $output.=switch($caname,$cadom,
  750:                                         $row,$col,$img,$top,$bot,$act,$desc);
  751:                     }
  752:                 }
  753:             }
  754:         }
  755:     }
  756:     unless (($ENV{'browser.interface'} eq 'textual') ||
  757:             ($ENV{'environment.remote'} eq 'off')) {
  758:        $output.="\nwindow.status='Synchronizing Time';swmenu.syncclock(1000*".time.");\nwindow.status='Remote Control Configured.';";
  759:     }
  760:     return $output;
  761: }
  762: 
  763: # ======================================================================= Close
  764: 
  765: sub close {
  766:     if (($ENV{'browser.interface'} eq 'textual') ||
  767:         ($ENV{'environment.remote'} eq 'off')) { return ''; }
  768:     my $menuname='LCmenu'.$Apache::lonnet::perlvar{'lonHostID'};
  769:     return(<<ENDCLOSE);
  770: <script>
  771: window.status='Accessing Remote Control';
  772: menu=window.open("/adm/rat/empty.html","$menuname",
  773:                  "height=350,width=150,scrollbars=no,menubar=no");
  774: window.status='Disabling Remote Control';
  775: menu.active=0;
  776: menu.autologout=0;
  777: window.status='Closing Remote Control';
  778: menu.close();
  779: window.status='Done.';
  780: </script>
  781: ENDCLOSE
  782: }
  783: 
  784: # ====================================================================== Footer
  785: 
  786: sub footer {
  787: 
  788: }
  789: 
  790: sub utilityfunctions {
  791:     unless (($ENV{'browser.interface'} eq 'textual')  ||
  792:         ($ENV{'environment.remote'} eq 'off')) { return ''; }
  793:     my $currenturl=$ENV{'REQUEST_URI'};
  794:     my $currentsymb=$ENV{'request.symb'};
  795: return (<<ENDUTILITY)
  796: 
  797:     var currentURL="$currenturl";
  798:     var reloadURL="$currenturl";
  799:     var currentSymb="$currentsymb";
  800: 
  801: function go(url) {
  802:    if (url!='' && url!= null) {
  803:        currentURL = null;
  804:        currentSymb= null;
  805:        window.location.href=url;
  806:    }
  807: }
  808: 
  809: function gopost(url,postdata) {
  810:    if (url!='') {
  811:       this.document.server.action=url;
  812:       this.document.server.postdata.value=postdata;
  813:       this.document.server.command.value='';
  814:       this.document.server.url.value='';
  815:       this.document.server.symb.value='';
  816:       this.document.server.submit();
  817:    }
  818: }
  819: 
  820: function gocmd(url,cmd) {
  821:    if (url!='') {
  822:       this.document.server.action=url;
  823:       this.document.server.postdata.value='';
  824:       this.document.server.command.value=cmd;
  825:       this.document.server.url.value=currentURL;
  826:       this.document.server.symb.value=currentSymb;
  827:       this.document.server.submit();
  828:    }
  829: }
  830: 
  831: function catalog_info() {
  832:    loncatinfo=window.open(window.location.pathname+'.meta',"LONcatInfo",'height=320,width=280,resizeable=yes,scrollbars=yes,location=no,menubar=no,toolbar=no');
  833: }
  834: 
  835: function chat_win() {
  836:    lonchat=window.open('/res/adm/pages/chatroom.html',"LONchat",'height=320,width=280,resizeable=yes,location=no,menubar=no,toolbar=no');
  837: }
  838: ENDUTILITY
  839: }
  840: 
  841: sub serverform {
  842:     return(<<ENDSERVERFORM);
  843: 
  844: <form name="server" action="/adm/logout" method="post" target="_top">
  845: <input type="hidden" name="postdata" value="none" />
  846: <input type="hidden" name="command" value="none" />
  847: <input type="hidden" name="url" value="none" />
  848: <input type="hidden" name="symb" value="none" />
  849: </form>
  850: ENDSERVERFORM
  851: }
  852: # ================================================ Handler when called directly
  853: 
  854: 
  855: sub handler {
  856:     my $r = shift;
  857:     $r->content_type('text/html');
  858:     $r->send_http_header;
  859:     return OK if $r->header_only;
  860: 
  861:     my $form=&serverform();
  862:     my $bodytag=&Apache::loncommon::bodytag('Main Menu');
  863:     my $function='student';
  864:     if ($ENV{'request.role'}=~/^(cc|in|ta|ep)/) {
  865: 	$function='coordinator';
  866:     }
  867:     if ($ENV{'request.role'}=~/^(su|dc|ad|li)/) {
  868: 	$function='admin';
  869:     }
  870:     if (($ENV{'request.role'}=~/^(au|ca)/) ||
  871: 	($ENV{'REQUEST_URI'}=~/^(\/priv|\~)/)) {
  872: 	$function='author';
  873:     }
  874:     my $domain=&Apache::loncommon::determinedomain();
  875:     $pgbg=&Apache::loncommon::designparm($function.'.pgbg',$domain);
  876:     $tabbg=&Apache::loncommon::designparm($function.'.tabbg',$domain);
  877:     $font=&Apache::loncommon::designparm($function.'.font',$domain);
  878: # ---- Print the screen, pretent to be in text mode to generate text-based menu
  879:     unless ($ENV{'brower.interface'} eq 'textual') {
  880: 	$ENV{'environment.remote'}='off';
  881:     }
  882:     my $utility=&utilityfunctions();
  883:     $r->print(<<ENDHEADER);
  884: <html><head>
  885: <title>LON-CAPA Main Menu</title>
  886: <script>
  887: $utility
  888: </script>
  889: </head>
  890: $bodytag
  891: ENDHEADER
  892:     $r->print('<table>'.&inlinemenu().'</table>'.$form);
  893:     $r->print('</body></html>');
  894:     return OK;
  895: }
  896: 
  897: # ================================================================ Main Program
  898: 
  899: BEGIN {
  900:   if (! defined($readdesk)) {
  901:    {
  902:     my $config=Apache::File->new($Apache::lonnet::perlvar{'lonTabDir'}.
  903: 				  '/mydesk.tab');
  904:     while (my $configline=<$config>) {
  905:        $configline=(split(/\#/,$configline))[0];
  906:        $configline=~s/^\s+//;
  907:        chomp($configline);
  908:        if ($configline) {
  909:           $desklines[$#desklines+1]=$configline;
  910:        }
  911:     }
  912:    }
  913:    $readdesk='done';
  914:   }
  915: }
  916: 
  917: 1;
  918: __END__
  919: 
  920: 
  921: 
  922: 
  923: 
  924: 
  925: 

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