File:  [LON-CAPA] / loncom / interface / lonmenu.pm
Revision 1.148: download - view: text, annotated - select for diffs
Fri Feb 18 21:23:12 2005 UTC (19 years, 3 months ago) by albertel
Branches: MAIN
CVS tags: HEAD
- fixing CSTR dir viewing sans remote

    1: # The LearningOnline Network with CAPA
    2: # Routines to control the menu
    3: #
    4: # $Id: lonmenu.pm,v 1.148 2005/02/18 21:23:12 albertel 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::lonenc();
   47: use Apache::lonlocal;
   48: 
   49: use vars qw(@desklines $readdesk);
   50: 
   51: 
   52: my @inlineremote;
   53: my $font;
   54: my $tabbg;
   55: my $pgbg;
   56: 
   57: # ================================================================ Little texts
   58: 
   59: sub initlittle {
   60:     return &Apache::lonlocal::texthash('ret' => 'Return to Last Location',
   61: 				       'nav' => 'Navigate Contents',
   62: 				       'main' => 'Main Menu',
   63: 				       'launch' => 'Launch Remote Control');
   64: }
   65: 
   66: # ============================= This gets called at the top of the body section
   67: 
   68: sub menubuttons {
   69:     my $forcereg=shift;
   70:     my $target  =shift;
   71:     my $registration=shift;
   72:     my $titletable=shift;
   73:     &Apache::loncommon::get_unprocessed_cgi($ENV{'QUERY_STRING'},
   74: 					    ['inhibitmenu']);
   75:     if ($ENV{'form.inhibitmenu'} eq 'yes') { return ''; }
   76: 
   77:     my $navmaps='';
   78:     my $reloadlink='';
   79:     my $escurl=&Apache::lonnet::escape(&Apache::lonenc::check_encrypt($ENV{'request.noversionuri'}));
   80:     my $escsymb=&Apache::lonnet::escape(&Apache::lonenc::check_encrypt($ENV{'request.symb'}));
   81:     if ($ENV{'request.state'} eq 'construct') {
   82:         if (($ENV{'request.noversionuri'} eq '') || (!defined($ENV{'request.noversionuri'}))) {
   83:             my $returnurl = $ENV{'request.filename'};
   84:             $returnurl =~ s:^/home/([^/]+)/public_html/(.*)$:/priv/$1/$2:;
   85:             $escurl = &Apache::lonnet::escape($returnurl);
   86:         }
   87:     }
   88:     if ($ENV{'browser.interface'} eq 'textual') {
   89: # Textual display only
   90: 	my %lt=&initlittle();
   91:         $pgbg='#FFFFFF';
   92:         $tabbg='#FFFFFF';
   93: 	$font='#000000';
   94:         if ($ENV{'request.course.id'}) {
   95: 	    $navmaps=(<<ENDNAV);
   96: <a href="/adm/navmaps?postdata=$escurl&postsymb=$escsymb" target="_top">$lt{'nav'}</a>
   97: ENDNAV
   98:             if (($ENV{'request.noversionuri'}=~/^\/adm\//) &&
   99:          ($ENV{'request.noversionuri'}!~/^\/adm\/wrapper\//) &&
  100:          ($ENV{'request.noversionuri'}!~/^\/adm\/.*\/(smppg|bulletinboard|aboutme)(\?|$)/)) {
  101:                 my $escreload=&Apache::lonnet::escape('return:');
  102:                 $reloadlink=(<<ENDRELOAD);
  103: <a href="/adm/flip?postdata=$escreload" target="_top"><font color="$font">$lt{'ret'}</font></a>
  104: ENDRELOAD
  105:             }
  106:         }
  107:         my $form=&serverform();
  108:         my $utility=&utilityfunctions();
  109: 	my $output=(<<ENDMAINMENU);
  110: <script type="text/javascript">
  111: <!-- // BEGIN LON-CAPA Internal
  112: $utility
  113: -->
  114: </script>
  115: <a href="/adm/menu" target="_top">$lt{'main'}</a>
  116: $reloadlink $navmaps<br />
  117: <script type="text/javascript">
  118: // END LON-CAPA Internal
  119: </script>
  120: $form
  121: ENDMAINMENU
  122:         if ($registration) { $output.=&innerregister($forcereg,$target); }
  123: 	return $output."<hr />";
  124:     } elsif ($ENV{'environment.remote'} eq 'off') {
  125: # Remote Control is switched off
  126: # figure out colors
  127: 	my %lt=&initlittle();
  128: 	my $function='student';
  129:         if ($ENV{'request.role'}=~/^(cc|in|ta|ep)/) {
  130: 	    $function='coordinator';
  131:         }
  132: 	if ($ENV{'request.role'}=~/^(su|dc|ad|li)/) {
  133:             $function='admin';
  134:         }
  135:         if (($ENV{'request.role'}=~/^(au|ca)/) ||
  136:             ($ENV{'request.noversionuri'}=~/^(\/priv|\~)/)) {
  137:             $function='author';
  138:         }
  139:         my $domain=&Apache::loncommon::determinedomain();
  140:         $pgbg=&Apache::loncommon::designparm($function.'.pgbg',$domain);
  141:         $tabbg=&Apache::loncommon::designparm($function.'.tabbg',$domain);
  142:         $font=&Apache::loncommon::designparm($function.'.font',$domain);
  143:         my $link=&Apache::loncommon::designparm($function.'.link',$domain);
  144:         my $alink=&Apache::loncommon::designparm($function.'.alink',$domain);
  145:         my $vlink=&Apache::loncommon::designparm($function.'.vlink',$domain);
  146:         my $sidebg=&Apache::loncommon::designparm($function.'.sidebg',$domain);
  147: # Do we have a NAV link?
  148:         if ($ENV{'request.course.id'}) {
  149: 	    my $link='/adm/navmaps?postdata='.$escurl.'&amp;postsymb='.
  150: 		$escsymb;
  151: 	    if ($ENV{'environment.remotenavmap'} eq 'on') {
  152: 		$link="javascript:gonav('".$link."')";
  153: 	    }
  154: 	    $navmaps=(<<ENDNAV);
  155: <td bgcolor="$tabbg">
  156: <a href="$link"><font color="$font">$lt{'nav'}</font></a></td>
  157: ENDNAV
  158: 	    if (
  159: 		($ENV{'request.noversionuri'}=~m[^/(res|public)/] &&
  160: 		 $ENV{'request.symb'} eq '')
  161: 		||
  162: 		(($ENV{'request.noversionuri'}=~/^\/adm\//) &&
  163: 		 ($ENV{'request.noversionuri'}!~/^\/adm\/wrapper\//) &&
  164: 		 ($ENV{'request.noversionuri'}!~
  165: 		        m[^/adm/.*/(smppg|bulletinboard|aboutme)($|\?)])
  166: 		  )
  167: 		 ) {
  168:                 my $escreload=&Apache::lonnet::escape('return:');
  169:                 $reloadlink=(<<ENDRELOAD);
  170: <td bgcolor="$tabbg">
  171: <a href="/adm/flip?postdata=$escreload" target="_top"><font color="$font">$lt{'ret'}</font></a></td>
  172: ENDRELOAD
  173:             }
  174:         }
  175:         my $reg='';
  176:         if ($registration) {
  177:            $reg=&innerregister($forcereg,$target,$titletable);
  178:         }
  179:         my $form=&serverform();
  180: 	my $utility=&utilityfunctions();
  181: 	my $logo=&Apache::loncommon::lonhttpdurl("/adm/lonIcons/minilogo.gif");
  182: 	return (<<ENDINLINEMENU);
  183: <script type="text/javascript">
  184: <!-- // BEGIN LON-CAPA Internal
  185: $utility
  186: -->
  187: </script>
  188: <font face="Arial,Helvetica,sans-serif"><table bgcolor="$pgbg" width="100%" border="0" cellpadding="1" cellspacing="1">
  189: <tr>
  190: <td bgcolor="$tabbg">
  191: <a href="/adm/menu" target="_top"><font color="$font">$lt{'main'}</font></a>
  192: </td>
  193: $reloadlink
  194: $navmaps
  195: <td bgcolor="$tabbg">
  196: <a href="/adm/remote?action=launch&amp;url=$escurl" target="_top">
  197: <font color="$font">$lt{'launch'}</font></a></td>
  198: <td bgcolor="$tabbg">
  199: <img align="right" src="$logo" />
  200: <b>LON-CAPA</b></td>
  201: $form
  202: </tr>
  203: </table>
  204: </font>
  205: <script type="text/javascript">
  206: // END LON-CAPA Internal
  207: </script>
  208: $reg
  209: ENDINLINEMENU
  210:     } else {
  211: 	return '';
  212:     }
  213: }
  214: 
  215: # ====================================== This gets called in the header section
  216: 
  217: sub registerurl {
  218:     my $forcereg=shift;
  219:     my $target = shift;
  220:     my $result = '';
  221:     if ($ENV{'request.noversionuri'} eq '/res/adm/pages/menu.html') { return ''; }
  222:     my $force_title='';
  223:     if ($ENV{'request.state'} eq 'construct') {
  224: 	$force_title=&Apache::lonxml::display_title();
  225:     }
  226:     if ($target eq 'edit') {
  227:         $result .="<script type=\"text/javascript\">\n".
  228:             "if (typeof swmenu != 'undefined') {swmenu.currentURL=null;}\n".
  229:             &Apache::loncommon::browser_and_searcher_javascript().
  230:                 "\n</script>\n";
  231:     }
  232:     if (($ENV{'browser.interface'} eq 'textual') ||
  233:         ($ENV{'environment.remote'} eq 'off') ||
  234:         ((($ENV{'request.publicaccess'}) || 
  235:          (!&Apache::lonnet::is_on_map(
  236: 	   &Apache::lonnet::unescape($ENV{'request.noversionuri'})))) &&
  237:         (!$forcereg))) {
  238:  	return $result.
  239:           '<script type="text/javascript">function LONCAPAreg(){;} function LONCAPAstale(){}</script>'.$force_title;
  240:     }
  241: # Graphical display after login only
  242:     if ($Apache::lonxml::registered && !$forcereg) { return ''; }
  243:     if ($target ne 'edit') {
  244: 	$result.=&innerregister($forcereg,$target);
  245:     }
  246:     return $result.$force_title;
  247: }
  248: 
  249: # =========== This gets called in order to register a URL, both with the Remote
  250: # =========== and in the body of the document
  251: 
  252: sub innerregister {
  253:     my $forcereg=shift;
  254:     my $target = shift;
  255:     my $titletable = shift;
  256:     my $result = '';
  257:     my ($uname,$thisdisfn);
  258:     my $const_space = ($ENV{'request.state'} eq 'construct');
  259:     my $is_const_dir = 0;
  260: 
  261:     if ($ENV{'request.noversionuri'} eq '/res/adm/pages/menu.html') { return ''; }
  262: 
  263:     $Apache::lonxml::registered=1;
  264: 
  265:     my $textinter=($ENV{'browser.interface'} eq 'textual');
  266:     my $noremote=($ENV{'environment.remote'} eq 'off');
  267:     
  268:     my $textual=($textinter || $noremote);
  269: 
  270:     @inlineremote=();
  271:     undef @inlineremote;
  272: 
  273:     my $reopen=&Apache::lonmenu::reopenmenu();
  274: 
  275:     my $newmail='';
  276:     if ($noremote) {
  277: 	$newmail='<font face="Arial,Helvetica,sans-serif"><table bgcolor="'.$pgbg.'" border="0" cellspacing="1" cellpadding="1" width="100%"><tr><td bgcolor="'.$tabbg.'">';
  278:     }
  279:     if (($textual) && ($ENV{'request.symb'}) && ($ENV{'request.course.id'})) {
  280: 	my ($mapurl,$rid,$resurl)=&Apache::lonnet::decode_symb($ENV{'request.symb'});
  281:         $newmail.=$ENV{'course.'.$ENV{'request.course.id'}.'.description'};
  282:         my $maptitle=&Apache::lonnet::gettitle($mapurl);
  283: 	my $restitle=&Apache::lonnet::gettitle($resurl);
  284:         if ($maptitle && $maptitle ne 'default.sequence') {
  285: 	    $newmail.=', '.$maptitle;
  286:         }
  287:         if ($restitle) {
  288: 	    $newmail.=': '.$restitle;
  289:         }
  290:         $newmail.='&nbsp;&nbsp;&nbsp;';
  291:     }
  292:     if (&Apache::lonmsg::newmail()) { 
  293:        $newmail=($textual?
  294:  '<b><a href="/adm/communicate" target="_top">You have new messages</a></b><br />':
  295:                           'swmenu.setstatus("you have","messages");');
  296:     }
  297:     if ($ENV{'request.state'} eq 'construct') {
  298:         $newmail = $titletable;
  299:     }
  300:     if ($noremote) {
  301: 	$newmail.='</td></tr></table></font>';
  302:     }
  303:     my $timesync=($textual?'':'swmenu.syncclock(1000*'.time.');');
  304:     my $tablestart=($noremote?'<font face="Arial,Helvetica,sans-serif"><table bgcolor="'.$pgbg.'" border="0" cellspacing="1" cellpadding="1" width="100%">':'').($textinter?'<br /><a href="#content">'.&mt('Skip to Content').'</a><br />':'');
  305:     my $tableend=($noremote?'</table></font>':'').($textinter?'<a name="content" />':'');
  306: # =============================================================================
  307: # ============================ This is for URLs that actually can be registered
  308:     if (($ENV{'request.noversionuri'}!~m|^/(res/)*adm/|) || ($forcereg)) {
  309: # -- This applies to homework problems for users with grading privileges
  310: 	my $crs='/'.$ENV{'request.course.id'};
  311: 	if ($ENV{'request.course.sec'}) {
  312: 	    $crs.='_'.$ENV{'request.course.sec'};
  313: 	}
  314: 	$crs=~s/\_/\//g;
  315: 
  316:         my $hwkadd='';
  317:         if ($ENV{'request.symb'} ne '' &&
  318: 	    $ENV{'request.filename'}=~/\.(problem|exam|quiz|assess|survey|form)$/) {
  319: 	    if (&Apache::lonnet::allowed('vgr',$crs)) {
  320: 		$hwkadd.=&switch('','',7,1,'subm.gif','view sub-[_1]','missions[_1]',
  321:                        "gocmd('/adm/grades','submission')",
  322: 		       'View user submissions for this assessment resource');
  323:             }
  324: 	    if (&Apache::lonnet::allowed('mgr',$crs)) {
  325: 		$hwkadd.=&switch('','',7,2,'pgrd.gif','problem[_1]','grades[_3]',
  326:                        "gocmd('/adm/grades','gradingmenu')",
  327:                        'Modify user grades for this assessment resource');
  328:             }
  329: 	}
  330: 	if ($ENV{'request.symb'} ne '' &&
  331: 	    &Apache::lonnet::allowed('opa',$crs)) {
  332: 	    $hwkadd.=&switch('','',7,3,'pparm.gif','problem[_2]','parms[_2]',
  333: 			     "gocmd('/adm/parmset','set')",
  334: 			     'Modify deadlines, etc, for this resource');
  335: 	}
  336: # -- End Homework
  337:         ###
  338:         ### Determine whether or not to display the 'cstr' button for this
  339:         ### resource
  340:         ###
  341:         my $editbutton = '';
  342:         if ($ENV{'user.author'}) {
  343:             if ($ENV{'request.role'}=~/^(ca|au)/) {
  344:                 # Set defaults for authors
  345:                 my ($top,$bottom) = ('con-','struct');
  346:                 my $action = "go('/priv/".$ENV{'user.name'}."');";
  347:                 my $cadom  = $ENV{'request.role.domain'};
  348:                 my $caname = $ENV{'user.name'};
  349:                 my $desc = "Enter my resource construction space";
  350:                 # Set defaults for co-authors
  351:                 if ($ENV{'request.role'} =~ /^ca/) { 
  352:                     ($cadom,$caname)=($ENV{'request.role'}=~/(\w+)\/(\w+)$/);
  353:                     ($top,$bottom) = ('co con-','struct');
  354:                     $action = "go('/priv/".$caname."');";
  355:                     $desc = "Enter construction space as co-author";
  356:                 }
  357:                 # Check that we are on the correct machine
  358:                 my $home = &Apache::lonnet::homeserver($caname,$cadom);
  359: 		my $allowed=0;
  360: 		my @ids=&Apache::lonnet::current_machine_ids();
  361: 		foreach my $id (@ids) { if ($id eq $home) { $allowed=1; } }
  362: 		if (!$allowed) {
  363: 		    $editbutton=&switch('','',6,1,$top,,$bottom,$action,$desc);
  364:                 }
  365:             }
  366:             ##
  367:             ## Determine if user can edit url.
  368:             ##
  369:             my $cfile='';
  370:             my $cfuname='';
  371:             my $cfudom='';
  372:             if ($ENV{'request.filename'}) {
  373:                 my $file=&Apache::lonnet::declutter($ENV{'request.filename'});
  374:                 $file=~s/^(\w+)\/(\w+)/\/priv\/$2/;
  375:                 # Check that the user has permission to edit this resource
  376:                 ($cfuname,$cfudom)=&Apache::loncacc::constructaccess($file,$1);
  377:                 if (defined($cfudom)) {
  378: 		    my $home=&Apache::lonnet::homeserver($cfuname,$cfudom);
  379: 		    my $allowed=0;
  380: 		    my @ids=&Apache::lonnet::current_machine_ids();
  381: 		    foreach my $id (@ids) { if ($id eq $home) { $allowed=1; } }
  382: 		    if ($allowed) {
  383:                         $cfile=$file;
  384:                     }
  385:                 }
  386:             }        
  387:             # Finally, turn the button on or off
  388:             if ($cfile && !$const_space) {
  389:                 $editbutton=&switch
  390:                     ('','',6,1,'cstr.gif','edit[_1]','resource[_2]',
  391:                      "go('".$cfile."');","Edit this resource");
  392:             } elsif ($editbutton eq '') {
  393:                 $editbutton=&clear(6,1);
  394:             }
  395:         }
  396:         ###
  397:         ###
  398: # Prepare the rest of the buttons
  399:         my $menuitems;
  400:         if ($const_space) {
  401: 	    my ($uname,$thisdisfn) =
  402: 		($ENV{'request.filename'}=~m|^/home/([^/]+)/public_html/(.*)|);
  403:             my $currdir = '/priv/'.$uname.'/'.$thisdisfn;
  404:             if ($currdir =~ m-/$-) {
  405:                 $is_const_dir = 1;
  406:             } else {
  407:                 $currdir =~ s#[^/]+$##;
  408:                 $menuitems=(<<ENDMENUITEMS);
  409: s&6&1&list.gif&list[_1]&dir[_1]&golist('$currdir')&List current directory
  410: s&6&2&rtrv.gif&retrieve[_1]&version[_1]&gocstr('/adm/retrieve','/~$uname/$thisdisfn')&Retrieve old version
  411: s&6&3&pub.gif&publish[_1]&resource[_1]&gocstr('/adm/publish','/~$uname/$thisdisfn')&Publish this resource
  412: s&7&1&del.gif&delete[_1]&resource[_2]&gocstr('/adm/cfile?action=delete','/~$uname/$thisdisfn')&Delete this resource
  413: s&7&2&prt.gif&prepare[_1]&printout[_1]&gocstr('/adm/printout','/~$uname/$thisdisfn')&Prepare a printable document
  414: ENDMENUITEMS
  415:             }
  416:         } elsif (defined($ENV{'request.course.id'}) && 
  417: 		 $ENV{'request.symb'} ne '') {
  418: 	    $menuitems=(<<ENDMENUITEMS);
  419: c&3&1
  420: s&2&1&back.gif&backward[_1]&&gopost('/adm/flip','back:'+currentURL)&Go to the previous resource in the course sequence&1
  421: s&2&3&forw.gif&forward[_1]&&gopost('/adm/flip','forward:'+currentURL)&Go to the next resource in the course sequence&3
  422: c&6&3
  423: c&8&1
  424: c&8&2
  425: s&8&3&prt.gif&prepare[_1]&printout[_1]&gopost('/adm/printout',currentURL)&Prepare a printable document
  426: s&9&1&sbkm.gif&set[_1]&bookmark[_2]&set_bookmark()&Set a bookmark for this resource&2
  427: s&9&3&anot.gif&anno-[_1]&tations[_1]&annotate()&Make notes and annotations about this resource&2
  428: ENDMENUITEMS
  429:             unless ($ENV{'request.noversionuri'}=~/\/(bulletinboard|smppg|navmaps|syllabus|aboutme)(\?|$)/) {
  430: 	        $menuitems.=(<<ENDREALRES);
  431: s&6&3&catalog.gif&catalog[_1]&info[_1]&catalog_info()&Show catalog information
  432: s&8&1&eval.gif&evaluate[_1]&this[_1]&gopost('/adm/evaluate',currentURL,1)&Provide my evaluation of this resource
  433: s&8&2&fdbk.gif&feedback[_1]&discuss[_1]&gopost('/adm/feedback',currentURL,1)&Provide feedback messages or contribute to the course discussion about this resource
  434: ENDREALRES
  435: 	    }
  436:         }
  437:         my $buttons='';
  438:         foreach (split(/\n/,$menuitems)) {
  439: 	    my ($command,@rest)=split(/\&/,$_);
  440:             if ($command eq 's') {
  441: 		$buttons.=&switch('','',@rest);
  442:             } else {
  443:                 $buttons.=&clear(@rest);
  444:             }
  445:         }
  446: 
  447:         if ($textual) {
  448: 	    my $addremote=0;
  449: 	    foreach (@inlineremote) { if ($_ ne '') { $addremote=1; } }
  450: 	    my $inlinebuttons='';
  451: 	    if ($addremote) {
  452: # Registered, textual output
  453: 
  454: 		if ($ENV{'browser.interface'} eq 'textual') {
  455: 		    $inlinebuttons=
  456:                         join('',map { (defined($_)?$_:'') } @inlineremote);
  457: 		} else {
  458: 		    $inlinebuttons=(<<ENDINLINE);
  459: <tr><td>$inlineremote[21]</td><td>&nbsp;</td><td>$inlineremote[23]</td></tr>
  460: <tr><td>$inlineremote[61]</td><td>$inlineremote[62]</td><td>$inlineremote[63]</td></tr>
  461: <tr><td>$inlineremote[71]</td><td>$inlineremote[72]</td><td>$inlineremote[73]</td></tr>
  462: <tr><td>$inlineremote[81]</td><td>$inlineremote[82]</td><td>$inlineremote[83]</td></tr>
  463: <tr><td>$inlineremote[91]</td><td>$inlineremote[92]</td><td>$inlineremote[93]</td></tr>
  464: ENDINLINE
  465:                 }
  466: 	    }
  467: 	    $result =(<<ENDREGTEXT);
  468: <script type="text/javascript">
  469: // BEGIN LON-CAPA Internal
  470: </script>
  471: $timesync
  472: $newmail
  473: $tablestart
  474: $inlinebuttons
  475: $tableend
  476: <script type="text/javascript">
  477: // END LON-CAPA Internal
  478: </script>
  479: 
  480: ENDREGTEXT
  481: # Registered, graphical output
  482:         } else {
  483: 	    my $requri=&Apache::lonnet::clutter(&Apache::lonnet::fixversion((split(/\?/,$ENV{'request.noversionuri'}))[0]));
  484: 	    $requri=&Apache::lonenc::check_encrypt(&Apache::lonnet::unescape($requri));
  485: 	    my $cursymb=&Apache::lonenc::check_encrypt($ENV{'request.symb'});
  486: 	    my $navstatus=&get_nav_status();
  487: 	    my $clearcstr;
  488: 
  489: 	    if ($ENV{'user.adv'}) { $clearcstr='clearbut(6,1)'; }
  490: 	    $result = (<<ENDREGTHIS);
  491:      
  492: <script type="text/javascript">
  493: // <!-- BEGIN LON-CAPA Internal
  494: var swmenu=null;
  495: 
  496:     function LONCAPAreg() {
  497: 	  swmenu=$reopen;
  498:           swmenu.clearTimeout(swmenu.menucltim);
  499:           $timesync
  500:           $newmail
  501:           $buttons
  502: 	  swmenu.currentURL="$requri";
  503:           swmenu.reloadURL=swmenu.currentURL+window.location.search;
  504:           swmenu.currentSymb="$cursymb";
  505:           swmenu.reloadSymb="$cursymb";
  506:           swmenu.currentStale=0;
  507: 	  $navstatus
  508:           $hwkadd
  509:           $editbutton
  510:     }
  511: 
  512:     function LONCAPAstale() {
  513: 	  swmenu=$reopen
  514:           swmenu.currentStale=1;
  515:           if (swmenu.reloadURL!='' && swmenu.reloadURL!= null) { 
  516:              swmenu.switchbutton
  517:              (3,1,'reload.gif','return','location','go(reloadURL)','Return to the last known location in the course sequence');
  518: 	  }
  519:           swmenu.clearbut(7,1);
  520:           swmenu.clearbut(7,2);
  521:           swmenu.clearbut(7,3);
  522:           swmenu.menucltim=swmenu.setTimeout(
  523:  'clearbut(2,1);clearbut(2,3);clearbut(8,1);clearbut(8,2);clearbut(8,3);'+
  524:  'clearbut(9,1);clearbut(9,3);clearbut(6,3);$clearcstr',
  525: 			  2000);
  526:       }
  527: 
  528: // END LON-CAPA Internal -->
  529: </script>
  530: ENDREGTHIS
  531:         }
  532: # =============================================================================
  533:     } else {
  534: # ========================================== This can or will not be registered
  535:         if ($textual) {
  536: # Not registered, textual
  537: 	    $result= (<<ENDDONOTREGTEXT);
  538: ENDDONOTREGTEXT
  539:         } else {
  540: # Not registered, graphical
  541:            $result = (<<ENDDONOTREGTHIS);
  542: 
  543: <script type="text/javascript">
  544: // BEGIN LON-CAPA Internal
  545: var swmenu=null;
  546: 
  547:     function LONCAPAreg() {
  548: 	  swmenu=$reopen
  549:           $timesync
  550:           swmenu.currentStale=1;
  551:           swmenu.clearbut(2,1);
  552:           swmenu.clearbut(2,3);
  553:           swmenu.clearbut(8,1);
  554:           swmenu.clearbut(8,2);
  555:           swmenu.clearbut(8,3);
  556:           if (swmenu.currentURL) {
  557:              swmenu.switchbutton
  558:               (3,1,'reload.gif','return','location','go(currentURL)');
  559:  	  } else {
  560: 	      swmenu.clearbut(3,1);
  561:           }
  562:     }
  563: 
  564:     function LONCAPAstale() {
  565:     }
  566: 
  567: // END LON-CAPA Internal
  568: </script>
  569: ENDDONOTREGTHIS
  570:        }
  571: # =============================================================================
  572:     }
  573:     return $result;
  574: }
  575: 
  576: sub loadevents() {
  577:     if ($ENV{'request.state'} eq 'construct' ||
  578: 	$ENV{'request.noversionuri'} eq '/res/adm/pages/menu.html') { return ''; }
  579:     return 'LONCAPAreg();';
  580: }
  581: 
  582: sub unloadevents() {
  583:     if ($ENV{'request.state'} eq 'construct' ||
  584: 	$ENV{'request.noversionuri'} eq '/res/adm/pages/menu.html') { return ''; }
  585:     return 'LONCAPAstale();';
  586: }
  587: 
  588: # ============================================================= Start up remote
  589: 
  590: sub startupremote {
  591:     my ($lowerurl)=@_;
  592:     if (($ENV{'browser.interface'} eq 'textual') ||
  593:         ($ENV{'environment.remote'} eq 'off')) {
  594:      return ('<meta HTTP-EQUIV="Refresh" CONTENT="0.5; url='.$lowerurl.'" />');
  595:     }
  596: #
  597: # The Remote actually gets launched!
  598: #
  599:     my $configmenu=&rawconfig();
  600:     my $esclowerurl=&Apache::lonnet::escape($lowerurl);
  601:     my $message=&mt('"Waiting for Remote Control window to load: "+[_1]','waited');
  602:     return(<<ENDREMOTESTARTUP);
  603: <script type="text/javascript">
  604: var timestart;
  605: function wheelswitch() {
  606:     if (typeof(document.wheel) != 'undefined') {
  607: 	if (typeof(document.wheel.spin) != 'undefined') {
  608: 	    var date=new Date();
  609: 	    var waited=Math.round(30-((date.getTime()-timestart)/1000));
  610: 	    document.wheel.spin.value=$message;
  611: 	}
  612:     }
  613:    if (window.status=='|') { 
  614:       window.status='/'; 
  615:    } else {
  616:       if (window.status=='/') {
  617:          window.status='-';
  618:       } else {
  619:          if (window.status=='-') { 
  620:             window.status='\\\\'; 
  621:          } else {
  622:             if (window.status=='\\\\') { window.status='|'; }
  623:          }
  624:       }
  625:    } 
  626: }
  627: 
  628: // ---------------------------------------------------------- The wait function
  629: var canceltim;
  630: function wait() {
  631:    if ((menuloaded==1) || (tim==1)) {
  632:       window.status='Done.';
  633:       if (tim==0) {
  634:          clearTimeout(canceltim);
  635:          $configmenu
  636:          window.location='$lowerurl';  
  637:       } else {
  638: 	  window.location='/adm/remote?action=collapse&url=$esclowerurl';
  639:       }
  640:    } else {
  641:       wheelswitch();
  642:       setTimeout('wait();',200);
  643:    }
  644: }
  645: 
  646: function main() {
  647:    canceltim=setTimeout('tim=1;',30000);
  648:    window.status='-';
  649:    var date=new Date();
  650:    timestart=date.getTime();
  651:    wait();
  652: }
  653: 
  654: </script>
  655: ENDREMOTESTARTUP
  656: }
  657: 
  658: sub setflags() {
  659:     return(<<ENDSETFLAGS);
  660: <script type="text/javascript">
  661:     menuloaded=0;
  662:     tim=0;
  663: </script>
  664: ENDSETFLAGS
  665: }
  666: 
  667: sub maincall() {
  668:     if (($ENV{'browser.interface'} eq 'textual') ||
  669:         ($ENV{'environment.remote'} eq 'off')) { return ''; }
  670:     return(<<ENDMAINCALL);
  671: <script type="text/javascript">
  672:     main();
  673: </script>
  674: ENDMAINCALL
  675: }
  676: 
  677: sub load_remote_msg {
  678:     my ($lowerurl)=@_;
  679: 
  680:     if (($ENV{'browser.interface'} eq 'textual') ||
  681:         ($ENV{'environment.remote'} eq 'off')) { return ''; }
  682: 
  683:     my $esclowerurl=&Apache::lonnet::escape($lowerurl);
  684:     my $link=&mt('<a href="[_1]">Continue</a> on in Inline Menu mode',
  685: 		    "/adm/remote?action=collapse?url=$esclowerurl");
  686:     return(<<ENDREMOTEFORM);
  687: <p>
  688: <form name="wheel">
  689: <input name="spin" type="text" size="60" />
  690: </form>
  691: </p>
  692: <p>$link</p>
  693: ENDREMOTEFORM
  694: }
  695: # ================================================================= Reopen menu
  696: 
  697: sub reopenmenu {
  698:    if (($ENV{'browser.interface'} eq 'textual') ||
  699:        ($ENV{'environment.remote'} eq 'off')) { return ''; }
  700:    my $menuname='LCmenu'.$Apache::lonnet::perlvar{'lonHostID'};
  701:    my $nothing = &Apache::lonhtmlcommon::javascript_nothing();
  702:    return('window.open('.$nothing.',"'.$menuname.'","",false);');
  703: } 
  704: 
  705: # =============================================================== Open the menu
  706: 
  707: sub open {
  708:     my $returnval='';
  709:     if (($ENV{'browser.interface'} eq 'textual') ||
  710:         ($ENV{'environment.remote'} eq 'off')) { 
  711: 	return '<script type="text/javascript">self.name="loncapaclient";</script>';
  712:     }
  713:     my $menuname='LCmenu'.$Apache::lonnet::perlvar{'lonHostID'};
  714:     unless (shift eq 'unix') {
  715: # resizing does not work on linux because of virtual desktop sizes
  716:        $returnval.=(<<ENDRESIZE);
  717: if (window.screen) {
  718:     self.resizeTo(screen.availWidth-215,screen.availHeight-55);
  719:     self.moveTo(190,15);
  720: }
  721: ENDRESIZE
  722:     }
  723:     $returnval.=(<<ENDOPEN);
  724: window.status='Opening LON-CAPA Remote Control';
  725: var menu=window.open("/res/adm/pages/menu.html","$menuname",
  726: "height=350,width=150,scrollbars=no,menubar=no,top=5,left=5,screenX=5,screenY=5");
  727: self.name='loncapaclient';
  728: ENDOPEN
  729:     return '<script type="text/javascript">'.$returnval.'</script>';
  730: }
  731: 
  732: 
  733: # ================================================================== Raw Config
  734: 
  735: sub clear {
  736:     my ($row,$col)=@_;
  737:     unless (($ENV{'browser.interface'} eq 'textual') ||
  738:             ($ENV{'environment.remote'} eq 'off')) {
  739:        return "\n".qq(window.status+='.';swmenu.clearbut($row,$col););
  740:    } else { 
  741:        $inlineremote[10*$row+$col]='';
  742:        return ''; 
  743:    }
  744: }
  745: 
  746: # ============================================ Switch a button or create a link
  747: # Switch acts on the javascript that is executed when a button is clicked.  
  748: # The javascript is usually similar to "go('/adm/roles')" or "cstrgo(..)".
  749: 
  750: sub switch {
  751:     my ($uname,$udom,$row,$col,$img,$top,$bot,$act,$desc,$nobreak)=@_;
  752:     $act=~s/\$uname/$uname/g;
  753:     $act=~s/\$udom/$udom/g;
  754:     $top=&mt($top);
  755:     $bot=&mt($bot);
  756:     $desc=&mt($desc);
  757:     $img=&mt($img);
  758:     unless (($ENV{'browser.interface'} eq 'textual')  ||
  759:             ($ENV{'environment.remote'} eq 'off')) {
  760: # Remote
  761:        return "\n".
  762:  qq(window.status+='.';swmenu.switchbutton($row,$col,"$img","$top","$bot","$act","$desc"););
  763:    } elsif ($ENV{'browser.interface'} eq 'textual') {
  764: # Accessibility
  765:        if ($nobreak==2) { return ''; }
  766:        my $text=$top.' '.$bot;
  767:        $text=~s/\s*\-\s*//gs;
  768:        if ($nobreak) {
  769: 	   $inlineremote[10*$row+$col]=
  770: 	       '<a href="javascript:'.$act.';">'.$text.'</a>';
  771:        } else {
  772: 	   $inlineremote[10*$row+$col]="\n<br />".
  773: 	       $desc.' <a href="javascript:'.$act.';">'.$text.'</a>';
  774:        }
  775:    } else {
  776: # Inline Remote
  777:        if ($nobreak==2) { return ''; }
  778:        my $text=$top.' '.$bot;
  779:        $text=~s/\s*\-\s*//gs;
  780: 
  781:        my $lonhttpdPort=$Apache::lonnet::perlvar{'lonhttpdPort'};
  782:        if (!defined($lonhttpdPort)) { $lonhttpdPort='8080'; }
  783:        my $pic=
  784: 	   '<img border="0" alt="'.$text.'" src="http://'.$ENV{'HTTP_HOST'}.
  785: 	   ':'.$lonhttpdPort.'/res/adm/pages/'.$img.'" align="'.
  786: 	   ($nobreak==3?'right':'left').'" />';
  787:        if (($ENV{'browser.interface'} eq 'textual') || ($ENV{'browser.interface'} eq 'faketextual')) {
  788: # Accessibility
  789: 	   if ($nobreak==3) {
  790: 	       $inlineremote[10*$row+$col]="\n".
  791: 		   '<td width="40%" align="right"><font color="'.$font.'" size="+1">'.$text.
  792: 		   '</font></td><td width="10%" align="right" bgcolor="'.$tabbg.'">'.
  793: 		   '<a href="javascript:'.$act.';">'.$pic.'</a></td></tr>';
  794: 	   } elsif ($nobreak) {
  795: 	       $inlineremote[10*$row+$col]="\n<tr>".
  796: 		   '<td width="10%" align="left" bgcolor="'.$tabbg.'">'.
  797: 		   '<a href="javascript:'.$act.';">'.$pic.
  798: 		   '</a></td><td width="40%" align="left"><font color="'.$font.'" size="+1">'.$text.'</font></td>';
  799: 	   } else {
  800: 	       $inlineremote[10*$row+$col]="\n<tr>".
  801: 		   '<td width="10%" align="left" bgcolor="'.$tabbg.'">'.
  802: 		   '<a href="javascript:'.$act.';">'.$pic.
  803: 		   '</a></td><td colspan="3"><font color="'.$font.'">'.$desc.
  804: 		   '</font></td></tr>';       
  805: 	   }
  806:        } else {
  807: # Inline Menu
  808: 	   $inlineremote[10*$row+$col]=
  809: 		   '<a href="javascript:'.$act.';">'.$pic.
  810: 		   '</a><font color="'.$font.'" size="2">'.$desc.
  811: 		   '</font>';
  812:        }
  813:    }
  814:     return '';
  815: }
  816: 
  817: sub secondlevel {
  818:     my $output='';
  819:     my 
  820:     ($uname,$udom,$rol,$crs,$pub,$con,$row,$col,$prt,$img,$top,$bot,$act,$desc)=@_;
  821:     if ($prt eq 'any') {
  822: 	   $output.=switch($uname,$udom,$row,$col,$img,$top,$bot,$act,$desc);
  823:     } elsif ($prt=~/^r(\w+)/) {
  824:         if ($rol eq $1) {
  825:            $output.=switch($uname,$udom,$row,$col,$img,$top,$bot,$act,$desc);
  826:         }
  827:     }
  828:     return $output;
  829: }
  830: 
  831: sub openmenu {
  832:     my $menuname='LCmenu'.$Apache::lonnet::perlvar{'lonHostID'};
  833:     if (($ENV{'browser.interface'} eq 'textual') ||
  834:         ($ENV{'environment.remote'} eq 'off')) { return ''; }
  835:     my $nothing = &Apache::lonhtmlcommon::javascript_nothing();
  836:     return "window.open(".$nothing.",'".$menuname."');";
  837: }
  838: 
  839: sub inlinemenu {
  840:     @inlineremote=();
  841:     undef @inlineremote;
  842:     &rawconfig(1);
  843:     return join('',map { (defined($_)?$_:'') } @inlineremote);
  844: }
  845: 
  846: sub rawconfig {
  847:     my $textualoverride=shift;
  848:     my $output='';
  849:     unless (($ENV{'browser.interface'} eq 'textual') ||
  850:             ($ENV{'environment.remote'} eq 'off')) {
  851:        $output.=
  852:  "window.status='Opening Remote Control';var swmenu=".&openmenu().
  853: "\nwindow.status='Configuring Remote Control ';";
  854:     } else {
  855:        unless ($textualoverride) { return ''; }
  856:     }
  857:     my $uname=$ENV{'user.name'};
  858:     my $udom=$ENV{'user.domain'};
  859:     my $adv=$ENV{'user.adv'};
  860:     my $author=$ENV{'user.author'};
  861:     my $crs='';
  862:     if ($ENV{'request.course.id'}) {
  863:        $crs='/'.$ENV{'request.course.id'};
  864:        if ($ENV{'request.course.sec'}) {
  865: 	   $crs.='_'.$ENV{'request.course.sec'};
  866:        }
  867:        $crs=~s/\_/\//g;
  868:     }
  869:     my $pub=($ENV{'request.state'} eq 'published');
  870:     my $con=($ENV{'request.state'} eq 'construct');
  871:     my $rol=$ENV{'request.role'};
  872:     my $requested_domain = $ENV{'request.role.domain'};
  873:     foreach (@desklines) {
  874:         my ($row,$col,$pro,$prt,$img,$top,$bot,$act,$desc)=split(/\:/,$_);
  875:         $prt=~s/\$uname/$uname/g;
  876:         $prt=~s/\$udom/$udom/g;
  877:         $prt=~s/\$crs/$crs/g; 
  878:         $prt=~s/\$requested_domain/$requested_domain/g;
  879:         if ($pro eq 'clear') {
  880: 	    $output.=&clear($row,$col);
  881:         } elsif ($pro eq 'any') {
  882:                $output.=&secondlevel(
  883: 	  $uname,$udom,$rol,$crs,$pub,$con,$row,$col,$prt,$img,$top,$bot,$act,$desc);
  884: 	} elsif ($pro eq 'smp') {
  885:             unless ($adv) {
  886:                $output.=&secondlevel(
  887:           $uname,$udom,$rol,$crs,$pub,$con,$row,$col,$prt,$img,$top,$bot,$act,$desc);
  888:             }
  889:         } elsif ($pro eq 'adv') {
  890:             if ($adv) {
  891:                $output.=&secondlevel(
  892: 	  $uname,$udom,$rol,$crs,$pub,$con,$row,$col,$prt,$img,$top,$bot,$act,$desc);
  893:             }
  894:         } elsif (($pro=~/^p(\w+)/) && ($prt)) {
  895: 	    if (&Apache::lonnet::allowed($1,$prt)) {
  896:                $output.=switch($uname,$udom,$row,$col,$img,$top,$bot,$act,$desc);
  897:             }
  898:         } elsif ($pro eq 'course') {
  899:             if ($ENV{'request.course.fn'}) {
  900:                $output.=switch($uname,$udom,$row,$col,$img,$top,$bot,$act,$desc);
  901: 	    }
  902:         } elsif ($pro =~ /^courseenv_(.*)$/) {
  903:             my $key = $1;
  904:             if ($ENV{'course.'.$ENV{'request.course.id'}.'.'.$key}) {
  905:                 $output.=switch($uname,$udom,$row,$col,$img,$top,$bot,$act,$desc);
  906:             }
  907:         } elsif ($pro =~ /^course_(.*)$/) {
  908:             # Check for permissions inside of a course
  909:             if (($ENV{'request.course.id'}) &&
  910:                 (&Apache::lonnet::allowed($1,$ENV{'request.course.id'}.
  911:             ($ENV{'request.course.sec'}?'/'.$ENV{'request.course.sec'}:''))
  912:                  )) {
  913:                 $output.=switch($uname,$udom,$row,$col,$img,$top,$bot,$act,$desc);
  914: 	    }
  915:         } elsif ($pro eq 'author') {
  916:             if ($author) {
  917:                 if ((($prt eq 'rca') && ($ENV{'request.role'}=~/^ca/)) ||
  918:                     (($prt eq 'rau') && ($ENV{'request.role'}=~/^au/))) {
  919:                     # Check that we are on the correct machine
  920:                     my $cadom=$requested_domain;
  921:                     my $caname=$ENV{'user.name'};
  922:                     if ($prt eq 'rca') {
  923: 		       ($cadom,$caname)=
  924:                                ($ENV{'request.role'}=~/(\w+)\/(\w+)$/);
  925:                     }                       
  926:                     $act =~ s/\$caname/$caname/g;
  927:                     my $home = &Apache::lonnet::homeserver($caname,$cadom);
  928: 		    my $allowed=0;
  929: 		    my @ids=&Apache::lonnet::current_machine_ids();
  930: 		    foreach my $id (@ids) { if ($id eq $home) { $allowed=1; } }
  931: 		    if ($allowed) {
  932:                         $output.=switch($caname,$cadom,
  933:                                         $row,$col,$img,$top,$bot,$act,$desc);
  934:                     }
  935:                 }
  936:             }
  937:         }
  938:     }
  939:     unless (($ENV{'browser.interface'} eq 'textual') ||
  940:             ($ENV{'environment.remote'} eq 'off')) {
  941:        $output.="\nwindow.status='Synchronizing Time';swmenu.syncclock(1000*".time.");\nwindow.status='Remote Control Configured.';";
  942:        if (&Apache::lonmsg::newmail()) { 
  943: 	   $output.='swmenu.setstatus("you have","messages");';
  944:        }
  945:     }
  946: 
  947:     return $output;
  948: }
  949: 
  950: # ======================================================================= Close
  951: 
  952: sub close {
  953:     if (($ENV{'browser.interface'} eq 'textual') ||
  954:         ($ENV{'environment.remote'} eq 'off')) { return ''; }
  955:     my $menuname='LCmenu'.$Apache::lonnet::perlvar{'lonHostID'};
  956:     return(<<ENDCLOSE);
  957: <script type="text/javascript">
  958: window.status='Accessing Remote Control';
  959: menu=window.open("/adm/rat/empty.html","$menuname",
  960:                  "height=350,width=150,scrollbars=no,menubar=no");
  961: window.status='Disabling Remote Control';
  962: menu.active=0;
  963: menu.autologout=0;
  964: window.status='Closing Remote Control';
  965: menu.close();
  966: window.status='Done.';
  967: </script>
  968: ENDCLOSE
  969: }
  970: 
  971: # ====================================================================== Footer
  972: 
  973: sub footer {
  974: 
  975: }
  976: 
  977: sub nav_control_js {
  978:     my $nav=($ENV{'environment.remotenavmap'} eq 'on');
  979:     return (<<NAVCONTROL);
  980:     var w_loncapanav_flag="$nav";
  981: 
  982: 
  983: function gonav(url) {
  984:    if (w_loncapanav_flag != 1) {
  985:       gopost(url,'');
  986:    }  else {
  987:       navwindow=window.open(url,
  988:                   "loncapanav","height=600,width=400,scrollbars=1"); 
  989:    }
  990: }
  991: NAVCONTROL
  992: }
  993: 
  994: sub utilityfunctions {
  995:     my $caller = shift;
  996:     unless (($ENV{'browser.interface'} eq 'textual')  ||
  997:         ($ENV{'environment.remote'} eq 'off') || ($caller eq '/adm/menu')) { return ''; }
  998:     my $currenturl=&Apache::lonnet::clutter(&Apache::lonnet::fixversion((split(/\?/,$ENV{'request.noversionuri'}))[0]));
  999:     $currenturl=&Apache::lonenc::check_encrypt(&Apache::lonnet::unescape($currenturl));
 1000:     
 1001:     my $currentsymb=&Apache::lonenc::check_encrypt($ENV{'request.symb'});
 1002:     my $nav_control=&nav_control_js();
 1003: return (<<ENDUTILITY)
 1004: 
 1005:     var currentURL="$currenturl";
 1006:     var reloadURL="$currenturl";
 1007:     var currentSymb="$currentsymb";
 1008: 
 1009: $nav_control
 1010: 
 1011: function go(url) {
 1012:    if (url!='' && url!= null) {
 1013:        currentURL = null;
 1014:        currentSymb= null;
 1015:        window.location.href=url;
 1016:    }
 1017: }
 1018: 
 1019: function gopost(url,postdata) {
 1020:    if (url!='') {
 1021:       this.document.server.action=url;
 1022:       this.document.server.postdata.value=postdata;
 1023:       this.document.server.command.value='';
 1024:       this.document.server.url.value='';
 1025:       this.document.server.symb.value='';
 1026:       this.document.server.submit();
 1027:    }
 1028: }
 1029: 
 1030: function gocmd(url,cmd) {
 1031:    if (url!='') {
 1032:       this.document.server.action=url;
 1033:       this.document.server.postdata.value='';
 1034:       this.document.server.command.value=cmd;
 1035:       this.document.server.url.value=currentURL;
 1036:       this.document.server.symb.value=currentSymb;
 1037:       this.document.server.submit();
 1038:    }
 1039: }
 1040: 
 1041: function gocstr(url,filename) {
 1042:     if (url == '/adm/cfile?action=delete') {
 1043:         this.document.cstrdelete.filename.value = filename
 1044:         this.document.cstrdelete.submit();
 1045:         return;
 1046:     }
 1047:     if (url == '/adm/printout') {
 1048:         this.document.cstrprint.postdata.value = filename
 1049:         this.document.cstrprint.curseed.value = 0;
 1050:         this.document.cstrprint.problemtype.value = 0;
 1051:         if (this.document.lonhomework) {
 1052:             if ((this.document.lonhomework.rndseed) && (this.document.lonhomework.rndseed.value != null) && (this.document.lonhomework.rndseed.value != '')) {
 1053:                 this.document.cstrprint.curseed.value = this.document.lonhomework.rndseed.value
 1054:             }
 1055:             if (this.document.lonhomework.problemtype) {
 1056:                 for (var i=0; i<this.document.lonhomework.problemtype.options.length; i++) {
 1057:                     if (this.document.lonhomework.problemtype.options[i].selected) {
 1058:                         if (this.document.lonhomework.problemtype.options[i].value != null && this.document.lonhomework.problemtype.options[i].value != '') { 
 1059:                             this.document.cstrprint.problemtype.value = this.document.lonhomework.problemtype.options[i].value
 1060:                         }
 1061:                     }
 1062:                 }
 1063:             }
 1064:         }
 1065:         this.document.cstrprint.submit();
 1066:         return;
 1067:     }
 1068:     if (url !='') {
 1069:         this.document.constspace.filename.value = filename;
 1070:         this.document.constspace.action = url;
 1071:         this.document.constspace.submit();
 1072:     }
 1073: }
 1074: 
 1075: function golist(url) {
 1076:    if (url!='' && url!= null) {
 1077:        currentURL = null;
 1078:        currentSymb= null;
 1079:        top.location.href=url;
 1080:    }
 1081: }
 1082: 
 1083: 
 1084: 
 1085: function catalog_info() {
 1086:    loncatinfo=window.open(window.location.pathname+'.meta',"LONcatInfo",'height=320,width=280,resizable=yes,scrollbars=yes,location=no,menubar=no,toolbar=no');
 1087: }
 1088: 
 1089: function chat_win() {
 1090:    lonchat=window.open('/res/adm/pages/chatroom.html',"LONchat",'height=320,width=280,resizable=yes,location=no,menubar=no,toolbar=no');
 1091: }
 1092: ENDUTILITY
 1093: }
 1094: 
 1095: sub serverform {
 1096:     return(<<ENDSERVERFORM);
 1097: 
 1098: <form name="server" action="/adm/logout" method="post" target="_top">
 1099: <input type="hidden" name="postdata" value="none" />
 1100: <input type="hidden" name="command" value="none" />
 1101: <input type="hidden" name="url" value="none" />
 1102: <input type="hidden" name="symb" value="none" />
 1103: </form>
 1104: ENDSERVERFORM
 1105: }
 1106: 
 1107: sub constspaceform {
 1108:     return(<<ENDCONSTSPACEFORM);
 1109: <form name="constspace" action="/adm/logout" method="post" target="_top">
 1110: <input type="hidden" name="filename" value="" />
 1111: </form>
 1112: <form name="cstrdelete" action="/adm/cfile" method="post" target="_top">
 1113: <input type="hidden" name="action" value="delete" /> 
 1114: <input type="hidden" name="filename" value="" />
 1115: </form>
 1116: <form name="cstrprint" action="/adm/printout" target="_parent" method="post">
 1117: <input type="hidden" name="postdata" value="" />
 1118: <input type="hidden" name="curseed" value="" />
 1119: <input type="hidden" name="problemtype" value="" />
 1120: </form>
 1121: 
 1122: ENDCONSTSPACEFORM
 1123: }
 1124: 
 1125: 
 1126: sub get_nav_status {
 1127:     my $navstatus="swmenu.w_loncapanav_flag=";
 1128:     if ($ENV{'environment.remotenavmap'} eq 'on') {
 1129: 	$navstatus.="1";
 1130:     } else {
 1131: 	$navstatus.="-1";
 1132:     }
 1133:     return $navstatus;
 1134: }
 1135: 
 1136: # ================================================ Handler when called directly
 1137: 
 1138: 
 1139: sub handler {
 1140:     my $r = shift;
 1141:     &Apache::loncommon::content_type($r,'text/html');
 1142:     $r->send_http_header;
 1143:     return OK if $r->header_only;
 1144: 
 1145:     my $form;
 1146:     if ($ENV{'environment.remote'} ne 'off' &&
 1147: 	$ENV{'browser.interface'} ne 'textual') {
 1148: 	$form=&serverform();
 1149:     }
 1150:     my $bodytag=&Apache::loncommon::bodytag('Main Menu');
 1151:     my $function='student';
 1152:     if ($ENV{'request.role'}=~/^(cc|in|ta|ep)/) {
 1153: 	$function='coordinator';
 1154:     }
 1155:     if ($ENV{'request.role'}=~/^(su|dc|ad|li)/) {
 1156: 	$function='admin';
 1157:     }
 1158:     if (($ENV{'request.role'}=~/^(au|ca)/) ||
 1159: 	($ENV{'request.noversionuri'}=~/^(\/priv|\~)/)) {
 1160: 	$function='author';
 1161:     }
 1162:     my $domain=&Apache::loncommon::determinedomain();
 1163:     $pgbg=&Apache::loncommon::designparm($function.'.pgbg',$domain);
 1164:     $tabbg=&Apache::loncommon::designparm($function.'.tabbg',$domain);
 1165:     $font=&Apache::loncommon::designparm($function.'.font',$domain);
 1166:     my $script_tag;
 1167:     if ($ENV{'environment.remote'} ne 'off') {
 1168:         my $utility=&utilityfunctions('/adm/menu');
 1169:         $script_tag=(<<ENDSCRIPT);
 1170: <script type="text/javascript">
 1171: $utility
 1172: </script>
 1173: ENDSCRIPT
 1174:     }
 1175: # ---- Print the screen, pretend to be in text mode to generate text-based menu
 1176:     unless ($ENV{'browser.interface'} eq 'textual') {
 1177: 	$ENV{'browser.interface'}='faketextual';
 1178: 	$ENV{'environment.remote'}='off';
 1179:     }
 1180:     my $html=&Apache::lonxml::xmlbegin();
 1181:     $r->print(<<ENDHEADER);
 1182: $html
 1183: <head>
 1184: <title>LON-CAPA Main Menu</title>
 1185: $script_tag
 1186: </head>
 1187: $bodytag
 1188: ENDHEADER
 1189:     $r->print('<table>'.&inlinemenu().'</table>'.$form);
 1190:     $r->print('</body></html>');
 1191:     return OK;
 1192: }
 1193: 
 1194: # ================================================================ Main Program
 1195: 
 1196: BEGIN {
 1197:   if (! defined($readdesk)) {
 1198:    {
 1199:     my $tabfile = $Apache::lonnet::perlvar{'lonTabDir'}.'/mydesk.tab';
 1200:     if ( CORE::open( my $config,"<$tabfile") ) {
 1201:         while (my $configline=<$config>) {
 1202:             $configline=(split(/\#/,$configline))[0];
 1203:             $configline=~s/^\s+//;
 1204:             chomp($configline);
 1205:             if ($configline) {
 1206:                 $desklines[$#desklines+1]=$configline;
 1207:             }
 1208:         }
 1209:         CORE::close($config);
 1210:     }
 1211:    }
 1212:    $readdesk='done';
 1213:   }
 1214: }
 1215: 
 1216: 1;
 1217: __END__
 1218: 
 1219: 
 1220: 
 1221: 
 1222: 
 1223: 
 1224: 

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