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