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

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

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