Annotation of loncom/interface/lonmenu.pm, revision 1.120

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

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