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

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

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