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