Annotation of loncom/interface/lonmenu.pm, revision 1.244.2.15
1.1 www 1: # The LearningOnline Network with CAPA
2: # Routines to control the menu
3: #
1.244.2.15! raeburn 4: # $Id: lonmenu.pm,v 1.244.2.14 2010/01/19 16:53:10 raeburn 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:
1.244 jms 39: =head1 NAME
40:
41: Apache::lonmenu
42:
43: =head1 SYNOPSIS
44:
45: Coordinates the response to clicking an image.
46:
47: This is part of the LearningOnline Network with CAPA project
48: described at http://www.lon-capa.org.
49:
50: =head1 SUBROUTINES
51:
52: =over
53:
54: =item show_course()
55:
56: Little texts
57:
58: =item initlittle()
59:
60: =item menubuttons()
61:
62: This gets called at the top of the body section
63:
64: =item show_return_link()
65:
66: =item registerurl()
67:
68: This gets called in the header section
69:
70: =item innerregister()
71:
72: This gets called in order to register a URL, both with the Remote
73: and in the body of the document
74:
75: =item loadevents()
76:
77: =item unloadevents()
78:
79: =item startupremote()
80:
81: =item setflags()
82:
83: =item maincall()
84:
85: =item load_remote_msg()
86:
87: =item get_menu_name()
88:
89: =item reopenmenu()
90:
91: =item open()
92:
93: Open the menu
94:
95: =item clear()
96:
97: =item switch()
98:
99: Switch a button or create a link
100: Switch acts on the javascript that is executed when a button is clicked.
101: The javascript is usually similar to "go('/adm/roles')" or "cstrgo(..)".
102:
103: =item secondlevel()
104:
105: =item openmenu()
106:
107: =item inlinemenu()
108:
109: =item rawconfig()
110:
111: =item close()
112:
113: =item footer()
114:
115: =item utilityfunctions()
116:
117: =item serverform()
118:
119: =item constspaceform()
120:
121: =item get_nav_status()
122:
123: =item hidden_button_check()
124:
125: =item roles_selector()
126:
127: =item jump_to_role()
128:
129: =back
130:
131: =cut
132:
1.1 www 133: package Apache::lonmenu;
134:
135: use strict;
1.152 albertel 136: use Apache::lonnet;
1.47 matthew 137: use Apache::lonhtmlcommon();
1.115 albertel 138: use Apache::loncommon();
1.127 albertel 139: use Apache::lonenc();
1.88 www 140: use Apache::lonlocal;
1.207 foxr 141: use LONCAPA qw(:DEFAULT :match);
1.244.2.8 raeburn 142: use HTML::Entities();
1.88 www 143:
1.209 www 144: use vars qw(@desklines %category_names %category_members %category_positions $readdesk);
1.88 www 145:
146:
1.56 www 147: my @inlineremote;
1.38 www 148:
1.203 foxr 149:
150:
1.231 albertel 151: sub show_course {
152: my $course = !$env{'user.adv'};
153: if (!$env{'user.adv'}) {
154: foreach my $env (keys(%env)) {
155: next if ($env !~ m/^user\.priv\./);
156: if ($env !~ m/^user\.priv\.(?:st|cm)/) {
157: $course = 0;
158: last;
159: }
160: }
161: }
162: return $course;
163: }
1.88 www 164:
165: sub initlittle {
1.244.2.15! raeburn 166: my %lt=&Apache::lonlocal::texthash('ret' => 'Return to Last Location',
! 167: 'nav' => 'Course Contents',
1.88 www 168: 'main' => 'Main Menu',
1.244.2.1 raeburn 169: 'roles' => (&Apache::loncommon::show_course()?
1.231 albertel 170: 'Courses':'Roles'),
1.235 raeburn 171: 'other' => 'Other Roles',
1.219 albertel 172: 'docs' => 'Edit Course',
1.244.2.1 raeburn 173: 'exit' => 'Logout',
1.202 albertel 174: 'login' => 'Log In',
1.165 raeburn 175: 'launch' => 'Launch Remote Control',
1.188 albertel 176: 'groups' => 'Groups',
1.244.2.9 raeburn 177: 'gdoc' => 'Community Documents',
1.184 raeburn 178: );
1.244.2.15! raeburn 179: if (&Apache::loncommon::course_type() eq 'Community') {
! 180: $lt{'nav'} = &mt('Community Contents');
! 181: $lt{'docs'} = &mt('Edit Community');
! 182: }
! 183: return %lt;
1.88 www 184: }
185:
1.38 www 186: sub menubuttons {
187: my $forcereg=shift;
1.40 www 188: my $registration=shift;
1.131 raeburn 189: my $titletable=shift;
1.112 albertel 190: &Apache::loncommon::get_unprocessed_cgi($ENV{'QUERY_STRING'},
191: ['inhibitmenu']);
1.152 albertel 192: if (($env{'form.inhibitmenu'} eq 'yes') ||
1.149 www 193: ($ENV{'REQUEST_URI'} eq '/adm/logout')) { return ''; }
1.175 albertel 194:
195: if ($env{'request.noversionuri'} =~ m{^/res/adm/pages/}) { return ''; }
196:
1.163 www 197: my %lt=&initlittle();
1.55 www 198: my $navmaps='';
1.59 www 199: my $reloadlink='';
1.151 www 200: my $docs='';
1.165 raeburn 201: my $groups='';
1.235 raeburn 202: my $roles='<a href="/adm/roles" target="_top">'.$lt{'roles'}.'</a>';
203: my $role_selector;
1.165 raeburn 204: my $showgroups=0;
1.235 raeburn 205: my ($cnum,$cdom);
1.183 www 206: my $escurl=&escape(&Apache::lonenc::check_encrypt($env{'request.noversionuri'}));
207: my $escsymb=&escape(&Apache::lonenc::check_encrypt($env{'request.symb'}));
1.176 albertel 208:
1.199 albertel 209: my $logo=&Apache::loncommon::lonhttpdurl("/adm/lonIcons/minilogo.gif");
210: $logo = '<td class="LC_top_nav_logo"><a href="/adm/about.html"><img src="'.
211: $logo.'" alt="LON-CAPA Logo" /></a></td>';
212:
1.152 albertel 213: if ($env{'request.state'} eq 'construct') {
214: if (($env{'request.noversionuri'} eq '') || (!defined($env{'request.noversionuri'}))) {
215: my $returnurl = $env{'request.filename'};
1.134 raeburn 216: $returnurl =~ s:^/home/([^/]+)/public_html/(.*)$:/priv/$1/$2:;
1.183 www 217: $escurl = &escape($returnurl);
1.134 raeburn 218: }
219: }
1.165 raeburn 220: if ($env{'request.course.id'}) {
1.235 raeburn 221: $cnum = $env{'course.'.$env{'request.course.id'}.'.num'};
222: $cdom = $env{'course.'.$env{'request.course.id'}.'.domain'};
1.165 raeburn 223: my %coursegroups;
1.188 albertel 224: my $viewgrps_permission =
1.197 raeburn 225: &Apache::lonnet::allowed('vcg',$env{'request.course.id'}.($env{'request.course.sec'}?'/'.$env{'request.course.sec'}:''));
1.165 raeburn 226: if (!$viewgrps_permission) {
1.235 raeburn 227: %coursegroups = &Apache::lonnet::get_active_groups($env{'user.domain'},$env{'user.name'},$cdom,$cnum);
1.188 albertel 228: }
1.165 raeburn 229: if ((keys(%coursegroups) > 0) || ($viewgrps_permission)) {
230: $showgroups = 1;
231: }
1.235 raeburn 232: $role_selector = &roles_selector($cdom,$cnum);
233: if ($role_selector) {
234: $roles = '<span class="LC_nobreak">'.$role_selector.' <a href="/adm/roles" target="_top">'.$lt{'other'}.'</a></span>';
235: }
1.165 raeburn 236: }
237:
1.152 albertel 238: if ($env{'browser.interface'} eq 'textual') {
1.41 www 239: # Textual display only
1.152 albertel 240: if ($env{'request.course.id'}) {
1.55 www 241: $navmaps=(<<ENDNAV);
1.181 albertel 242: <a href="/adm/navmaps?postdata=$escurl&postsymb=$escsymb" target="_top">$lt{'nav'}</a>
1.55 www 243: ENDNAV
1.228 albertel 244: if (&show_return_link()) {
1.183 www 245: my $escreload=&escape('return:');
1.59 www 246: $reloadlink=(<<ENDRELOAD);
1.176 albertel 247: <a href="/adm/flip?postdata=$escreload" target="_top">$lt{'ret'}</a>
1.59 www 248: ENDRELOAD
249: }
1.244.2.9 raeburn 250: my $is_community =
251: (&Apache::loncommon::course_type() eq 'Community');
252: if (&Apache::lonnet::allowed('mdc',$env{'request.course.id'})) {
253: my $text = ($is_community) ? $lt{'gdoc'} : $lt{'docs'};
254: $docs=(<<ENDDOCS);
255: <a href="/adm/coursedocs" target="_top">$text</a>
1.151 www 256: ENDDOCS
257: }
1.197 raeburn 258: if ($showgroups) {
259: $groups =(<<ENDGROUPS);
260: <a href="/adm/coursegroups" target="_top">$lt{'groups'}</a>
261: ENDGROUPS
262: }
1.194 banghart 263: }
1.130 albertel 264: my $form=&serverform();
1.116 albertel 265: my $utility=&utilityfunctions();
1.48 www 266: my $output=(<<ENDMAINMENU);
1.129 albertel 267: <script type="text/javascript">
1.150 albertel 268: // BEGIN LON-CAPA Internal
1.116 albertel 269: $utility
1.44 www 270: </script>
1.176 albertel 271: <div id="LC_top_nav">
1.88 www 272: <a href="/adm/menu" target="_top">$lt{'main'}</a>
1.235 raeburn 273: $reloadlink $navmaps $docs $groups $roles
1.176 albertel 274: <a href="/adm/logout" target="_top">$lt{'exit'}</a>
275: </div>
1.149 www 276: <br />
1.129 albertel 277: <script type="text/javascript">
1.44 www 278: // END LON-CAPA Internal
279: </script>
1.130 albertel 280: $form
1.44 www 281: ENDMAINMENU
1.173 albertel 282: if ($registration) { $output.=&innerregister($forcereg); }
1.48 www 283: return $output."<hr />";
1.152 albertel 284: } elsif ($env{'environment.remote'} eq 'off') {
1.48 www 285: # Remote Control is switched off
1.58 www 286: # figure out colors
1.88 www 287: my %lt=&initlittle();
1.172 albertel 288:
1.58 www 289: my $domain=&Apache::loncommon::determinedomain();
1.172 albertel 290: my $function =&Apache::loncommon::get_users_function();
1.58 www 291: my $link=&Apache::loncommon::designparm($function.'.link',$domain);
292: my $alink=&Apache::loncommon::designparm($function.'.alink',$domain);
293: my $vlink=&Apache::loncommon::designparm($function.'.vlink',$domain);
294: my $sidebg=&Apache::loncommon::designparm($function.'.sidebg',$domain);
1.156 albertel 295: if ($env{'user.name'} eq 'public' && $env{'user.domain'} eq 'public') {
296: return (<<ENDINLINEMENU);
1.176 albertel 297: <table id="LC_top_nav">
1.156 albertel 298: <tr>
1.199 albertel 299: $logo
300: <td></td>
1.202 albertel 301: <td class="LC_top_nav_login">
302: <a href="/adm/roles" target="_top">$lt{'login'}</a>
1.156 albertel 303: </td>
1.189 albertel 304: </tr>
1.156 albertel 305: </table>
306: </font>
307: ENDINLINEMENU
308: }
1.235 raeburn 309: $roles = '<td><a href="/adm/roles" target="_top">'.$lt{'roles'}.'</a></td>';
1.58 www 310: # Do we have a NAV link?
1.152 albertel 311: if ($env{'request.course.id'}) {
1.141 albertel 312: my $link='/adm/navmaps?postdata='.$escurl.'&postsymb='.
313: $escsymb;
1.152 albertel 314: if ($env{'environment.remotenavmap'} eq 'on') {
1.141 albertel 315: $link="javascript:gonav('".$link."')";
316: }
317: $navmaps=(<<ENDNAV);
1.176 albertel 318: <td><a href="$link" target="_top">$lt{'nav'}</a></td>
1.114 albertel 319: ENDNAV
1.244.2.9 raeburn 320: my $is_community =
321: (&Apache::loncommon::course_type() eq 'Community');
1.152 albertel 322: if (&Apache::lonnet::allowed('mdc',$env{'request.course.id'})) {
1.244.2.9 raeburn 323: my $text = ($is_community) ? $lt{'gdoc'} : $lt{'docs'};
1.151 www 324: $docs=(<<ENDDOCS);
1.184 raeburn 325: <td><a href="/adm/coursedocs" target="_top">$text</a></td>
1.151 www 326: ENDDOCS
327: }
1.197 raeburn 328: if ($showgroups) {
329: $groups =(<<ENDGROUPS);
330: <td><a href="/adm/coursegroups" target="_top">$lt{'groups'}</a></td>
331: ENDGROUPS
332: }
1.228 albertel 333: if (&show_return_link()) {
1.183 www 334: my $escreload=&escape('return:');
1.59 www 335: $reloadlink=(<<ENDRELOAD);
1.176 albertel 336: <td><a href="/adm/flip?postdata=$escreload" target="_top">$lt{'ret'}</a></td>
1.59 www 337: ENDRELOAD
338: }
1.235 raeburn 339: if ($role_selector) {
340: $roles = '<td>'.$role_selector.'</td><td><a href="/adm/roles" target="_top">'.$lt{'other'}.'</a></td>';
341: }
1.55 www 342: }
1.163 www 343: if (($env{'request.state'} eq 'construct') && ($env{'request.course.id'})) {
1.183 www 344: my $escreload=&escape('return:');
1.163 www 345: $reloadlink=(<<ENDCRELOAD);
1.176 albertel 346: <td><a href="/adm/flip?postdata=$escreload" target="_top">$lt{'ret'}</a></td>
1.163 www 347: ENDCRELOAD
348: }
1.58 www 349: my $reg='';
350: if ($registration) {
1.173 albertel 351: $reg=&innerregister($forcereg,$titletable);
1.58 www 352: }
1.130 albertel 353: my $form=&serverform();
1.116 albertel 354: my $utility=&utilityfunctions();
1.198 albertel 355:
356: my $helplink=&Apache::loncommon::top_nav_help('Help');
1.58 www 357: return (<<ENDINLINEMENU);
1.129 albertel 358: <script type="text/javascript">
1.150 albertel 359: // <![CDATA[
1.244.2.3 raeburn 360: // BEGIN LON-CAPA Internal
1.116 albertel 361: $utility
1.150 albertel 362: // ]]>
1.48 www 363: </script>
1.176 albertel 364: <table id="LC_top_nav">
1.58 www 365: <tr>
1.199 albertel 366: $logo
1.176 albertel 367: <td><a href="/adm/menu" target="_top">$lt{'main'}</a></td>
1.59 www 368: $reloadlink
1.55 www 369: $navmaps
1.151 www 370: $docs
1.165 raeburn 371: $groups
1.235 raeburn 372: $roles
1.199 albertel 373: <td class="LC_top_nav_help">$helplink</td>
374: <td class="LC_top_nav_exit"><a href="/adm/logout" target="_top">$lt{'exit'}</a></td>
1.58 www 375: </tr>
376: </table>
1.168 albertel 377: $form
1.129 albertel 378: <script type="text/javascript">
1.48 www 379: // END LON-CAPA Internal
380: </script>
1.58 www 381: $reg
1.48 www 382: ENDINLINEMENU
383: } else {
384: return '';
385: }
1.72 www 386: }
387:
1.228 albertel 388: sub show_return_link {
389: return (($env{'request.noversionuri'}=~m{^/(res|public)/} &&
390: $env{'request.symb'} eq '')
391: ||
392: ($env{'request.noversionuri'}=~ m{^/cgi-bin/printout.pl})
393: ||
394: (($env{'request.noversionuri'}=~/^\/adm\//) &&
395: ($env{'request.noversionuri'}!~/^\/adm\/wrapper\//) &&
396: ($env{'request.noversionuri'}!~
397: m[^/adm/.*/(smppg|bulletinboard|aboutme)($|\?)])
398: ));
399: }
400:
1.38 www 401:
402: sub registerurl {
1.173 albertel 403: my ($forcereg) = @_;
1.38 www 404: my $result = '';
1.175 albertel 405: if ($env{'request.noversionuri'} =~ m{^/res/adm/pages/}) { return ''; }
1.66 albertel 406: my $force_title='';
1.152 albertel 407: if ($env{'request.state'} eq 'construct') {
1.66 albertel 408: $force_title=&Apache::lonxml::display_title();
409: }
1.152 albertel 410: if (($env{'browser.interface'} eq 'textual') ||
411: ($env{'environment.remote'} eq 'off') ||
412: ((($env{'request.publicaccess'}) ||
1.83 www 413: (!&Apache::lonnet::is_on_map(
1.183 www 414: &unescape($env{'request.noversionuri'})))) &&
1.38 www 415: (!$forcereg))) {
1.76 www 416: return $result.
1.244.2.3 raeburn 417: '<script type="text/javascript">'."\n".
418: 'function LONCAPAreg(){;} function LONCAPAstale(){}'."\n".
419: '</script>'.$force_title;
1.38 www 420: }
1.41 www 421: # Graphical display after login only
1.174 albertel 422: if ($env{'request.registered'} && !$forcereg) { return ''; }
1.173 albertel 423: $result.=&innerregister($forcereg);
1.66 albertel 424: return $result.$force_title;
1.40 www 425: }
426:
427: sub innerregister {
1.173 albertel 428: my ($forcereg, $titletable) = @_;
1.40 www 429: my $result = '';
1.120 raeburn 430: my ($uname,$thisdisfn);
1.152 albertel 431: my $const_space = ($env{'request.state'} eq 'construct');
1.131 raeburn 432: my $is_const_dir = 0;
1.120 raeburn 433:
1.175 albertel 434: if ($env{'request.noversionuri'} =~ m{^/res/adm/pages/}) { return ''; }
1.40 www 435:
1.174 albertel 436: $env{'request.registered'} = 1;
1.40 www 437:
1.152 albertel 438: my $textinter=($env{'browser.interface'} eq 'textual');
439: my $noremote=($env{'environment.remote'} eq 'off');
1.49 www 440:
441: my $textual=($textinter || $noremote);
442:
1.177 albertel 443: undef(@inlineremote);
1.56 www 444:
1.38 www 445: my $reopen=&Apache::lonmenu::reopenmenu();
1.40 www 446:
1.38 www 447: my $newmail='';
1.65 www 448: if ($noremote) {
1.177 albertel 449: $newmail='<table id="LC_nav_location"><tr>';
1.65 www 450: }
1.177 albertel 451: if (&Apache::lonmsg::newmail()) {
452: if ($textual) {
453: $newmail.= '<td class="LC_new_mail">
454: <a href="/adm/communicate" target="_top">'.
455: &mt('You have new messages').'</a></td>';
456: } else {
457: $newmail= 'swmenu.setstatus("you have","messages");';
458: }
1.233 www 459: }
460: if (($textual)
1.177 albertel 461: && ($env{'request.symb'})
462: && ($env{'request.course.id'})) {
463: $newmail.= '<td class="LC_current_location">';
1.153 albertel 464: my ($mapurl,$rid,$resurl)=
465: &Apache::lonnet::decode_symb(&Apache::lonnet::symbread());
1.233 www 466: my $coursetitle=$env{'course.'.$env{'request.course.id'}.'.description'};
467: $newmail.=$coursetitle;
1.61 www 468: my $maptitle=&Apache::lonnet::gettitle($mapurl);
1.153 albertel 469: my $restitle=&Apache::lonnet::gettitle(&Apache::lonnet::symbread());
1.233 www 470: if ($maptitle && ($maptitle ne 'default.sequence') && ($maptitle ne $coursetitle)) {
1.61 www 471: $newmail.=', '.$maptitle;
472: }
473: if ($restitle) {
474: $newmail.=': '.$restitle;
475: }
1.177 albertel 476: $newmail.=' </td>';
1.65 www 477: }
1.152 albertel 478: if ($env{'request.state'} eq 'construct') {
1.131 raeburn 479: $newmail = $titletable;
1.150 albertel 480: } else {
481: if ($noremote) {
1.181 albertel 482: $newmail.='</tr></table>';
1.150 albertel 483: }
1.38 www 484: }
1.40 www 485: my $timesync=($textual?'':'swmenu.syncclock(1000*'.time.');');
1.177 albertel 486: my $tablestart=($noremote?'<table id="LC_menubuttons">':'').
487: ($textinter?'<br /><a href="#content">'.&mt('Skip to Content').'</a><br />':'');
488: my $tableend=($noremote?'</table>':'').($textinter?'<a name="content" />':'');
1.41 www 489: # =============================================================================
490: # ============================ This is for URLs that actually can be registered
1.152 albertel 491: if (($env{'request.noversionuri'}!~m|^/(res/)*adm/|) || ($forcereg)) {
1.40 www 492: # -- This applies to homework problems for users with grading privileges
1.152 albertel 493: my $crs='/'.$env{'request.course.id'};
494: if ($env{'request.course.sec'}) {
495: $crs.='_'.$env{'request.course.sec'};
1.107 albertel 496: }
497: $crs=~s/\_/\//g;
498:
1.38 www 499: my $hwkadd='';
1.152 albertel 500: if ($env{'request.symb'} ne '' &&
1.161 albertel 501: $env{'request.filename'}=~/\.(problem|exam|quiz|assess|survey|form|task)$/) {
1.79 www 502: if (&Apache::lonnet::allowed('mgr',$crs)) {
1.244.2.1 raeburn 503: $hwkadd.=&switch('','',7,2,'pgrd.gif','problem[_1]','grades[_4]',
1.40 www 504: "gocmd('/adm/grades','gradingmenu')",
505: 'Modify user grades for this assessment resource');
1.154 www 506: } elsif (&Apache::lonnet::allowed('vgr',$crs)) {
507: $hwkadd.=&switch('','',7,2,'subm.gif','view sub-[_1]','missions[_1]',
508: "gocmd('/adm/grades','submission')",
509: 'View user submissions for this assessment resource');
1.38 www 510: }
1.107 albertel 511: }
1.152 albertel 512: if ($env{'request.symb'} ne '' &&
1.145 albertel 513: &Apache::lonnet::allowed('opa',$crs)) {
1.107 albertel 514: $hwkadd.=&switch('','',7,3,'pparm.gif','problem[_2]','parms[_2]',
515: "gocmd('/adm/parmset','set')",
1.196 www 516: 'Modify parameter settings for this resource');
1.38 www 517: }
1.40 www 518: # -- End Homework
1.38 www 519: ###
520: ### Determine whether or not to display the 'cstr' button for this
521: ### resource
522: ###
523: my $editbutton = '';
1.244.2.1 raeburn 524: my $noeditbutton = 1;
525: my ($cnum,$cdom);
526: if ($env{'request.course.id'}) {
527: $cnum = $env{'course.'.$env{'request.course.id'}.'.num'};
528: $cdom = $env{'course.'.$env{'request.course.id'}.'.domain'};
529: }
1.152 albertel 530: if ($env{'user.author'}) {
1.234 raeburn 531: if ($env{'request.role'}=~/^(aa|ca|au)/) {
1.38 www 532: # Set defaults for authors
533: my ($top,$bottom) = ('con-','struct');
1.152 albertel 534: my $action = "go('/priv/".$env{'user.name'}."');";
535: my $cadom = $env{'request.role.domain'};
536: my $caname = $env{'user.name'};
1.236 bisitz 537: my $desc = "Enter my construction space";
1.38 www 538: # Set defaults for co-authors
1.152 albertel 539: if ($env{'request.role'} =~ /^ca/) {
1.206 albertel 540: ($cadom,$caname)=($env{'request.role'}=~/($match_domain)\/($match_username)$/);
1.38 www 541: ($top,$bottom) = ('co con-','struct');
542: $action = "go('/priv/".$caname."');";
543: $desc = "Enter construction space as co-author";
1.234 raeburn 544: } elsif ($env{'request.role'} =~ /^aa/) {
545: ($cadom,$caname)=($env{'request.role'}=~/($match_domain)\/($match_username)$/);
546: ($top,$bottom) = ('co con-','struct');
547: $action = "go('/priv/".$caname."');";
548: $desc = "Enter construction space as assistant co-author";
1.38 www 549: }
550: # Check that we are on the correct machine
551: my $home = &Apache::lonnet::homeserver($caname,$cadom);
1.109 albertel 552: my $allowed=0;
553: my @ids=&Apache::lonnet::current_machine_ids();
554: foreach my $id (@ids) { if ($id eq $home) { $allowed=1; } }
555: if (!$allowed) {
556: $editbutton=&switch('','',6,1,$top,,$bottom,$action,$desc);
1.244.2.1 raeburn 557: $noeditbutton = 0;
1.38 www 558: }
559: }
560: ##
561: ## Determine if user can edit url.
562: ##
563: my $cfile='';
564: my $cfuname='';
565: my $cfudom='';
1.244.2.1 raeburn 566: my $uploaded;
1.152 albertel 567: if ($env{'request.filename'}) {
568: my $file=&Apache::lonnet::declutter($env{'request.filename'});
1.206 albertel 569: $file=~s/^($match_domain)\/($match_username)/\/priv\/$2/;
1.109 albertel 570: # Check that the user has permission to edit this resource
1.38 www 571: ($cfuname,$cfudom)=&Apache::loncacc::constructaccess($file,$1);
572: if (defined($cfudom)) {
1.109 albertel 573: my $home=&Apache::lonnet::homeserver($cfuname,$cfudom);
574: my $allowed=0;
575: my @ids=&Apache::lonnet::current_machine_ids();
576: foreach my $id (@ids) { if ($id eq $home) { $allowed=1; } }
577: if ($allowed) {
1.38 www 578: $cfile=$file;
579: }
580: }
581: }
582: # Finally, turn the button on or off
1.120 raeburn 583: if ($cfile && !$const_space) {
1.244.2.13 raeburn 584: my $nocrsedit;
585: # Suppress display where CC has switched to student role.
586: if ($env{'request.course.id'}) {
587: unless(&Apache::lonnet::allowed('mdc',
588: $env{'request.course.id'})) {
589: $nocrsedit = 1;
590: }
591: }
592: if ($nocrsedit) {
593: $editbutton=&clear(6,1);
594: } else {
595: $editbutton=&switch
596: ('','',6,1,'pcstr.gif','edit[_1]','resource[_2]',
1.38 www 597: "go('".$cfile."');","Edit this resource");
1.244.2.13 raeburn 598: $noeditbutton = 0;
599: }
1.38 www 600: } elsif ($editbutton eq '') {
1.191 www 601: $editbutton=&clear(6,1);
1.38 www 602: }
603: }
1.244.2.1 raeburn 604: if (($noeditbutton) && ($env{'request.filename'})) {
605: if (&Apache::lonnet::allowed('mdc',$env{'request.course.id'})) {
606: my $file=&Apache::lonnet::declutter($env{'request.filename'});
607: if (defined($cnum) && defined($cdom)) {
608: if (&is_course_upload($file,$cnum,$cdom)) {
609: my $cfile = &edit_course_upload($file,$cnum,$cdom);
610: if ($cfile) {
611: $editbutton=&switch
612: ('','',6,1,'pcstr.gif','edit[_1]',
613: 'resource[_2]',"go('".$cfile."');",
614: 'Edit this resource');
615: }
616: }
617: }
618: }
619: }
1.38 www 620: ###
621: ###
1.41 www 622: # Prepare the rest of the buttons
1.120 raeburn 623: my $menuitems;
624: if ($const_space) {
1.128 albertel 625: my ($uname,$thisdisfn) =
1.152 albertel 626: ($env{'request.filename'}=~m|^/home/([^/]+)/public_html/(.*)|);
1.121 raeburn 627: my $currdir = '/priv/'.$uname.'/'.$thisdisfn;
1.131 raeburn 628: if ($currdir =~ m-/$-) {
629: $is_const_dir = 1;
630: } else {
631: $currdir =~ s#[^/]+$##;
1.200 foxr 632: my $cleandisfn = &Apache::loncommon::escape_single($thisdisfn);
1.208 albertel 633: my $esc_currdir = &Apache::loncommon::escape_single($currdir);
1.131 raeburn 634: $menuitems=(<<ENDMENUITEMS);
1.208 albertel 635: s&6&1&list.gif&list[_1]&dir[_1]&golist('$esc_currdir')&List current directory
1.200 foxr 636: s&6&2&rtrv.gif&retrieve[_1]&version[_1]&gocstr('/adm/retrieve','/~$uname/$cleandisfn')&Retrieve old version
1.244.2.1 raeburn 637: s&6&3&pub.gif&publish[_1]&resource[_3]&gocstr('/adm/publish','/~$uname/$cleandisfn')&Publish this resource
1.200 foxr 638: s&7&1&del.gif&delete[_1]&resource[_2]&gocstr('/adm/cfile?action=delete','/~$uname/$cleandisfn')&Delete this resource
639: s&7&2&prt.gif&prepare[_1]&printout[_1]&gocstr('/adm/printout','/~$uname/$cleandisfn')&Prepare a printable document
1.120 raeburn 640: ENDMENUITEMS
1.131 raeburn 641: }
1.203 foxr 642: } elsif ( defined($env{'request.course.id'}) &&
643: $env{'request.symb'} ne '' ) {
1.120 raeburn 644: $menuitems=(<<ENDMENUITEMS);
1.41 www 645: c&3&1
1.209 www 646: s&2&1&back.gif&backward[_1]&&gopost('/adm/flip','back:'+currentURL)&Go to the previous resource in the course sequence&&1
647: 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 648: c&6&3
649: c&8&1
650: c&8&2
1.106 www 651: s&8&3&prt.gif&prepare[_1]&printout[_1]&gopost('/adm/printout',currentURL)&Prepare a printable document
1.209 www 652: s&9&1&sbkm.gif&set[_1]&bookmark[_2]&set_bookmark()&Set a bookmark for this resource&&1
1.41 www 653: ENDMENUITEMS
1.216 albertel 654:
1.243 tempelho 655: my $currentURL = &Apache::loncommon::get_symb();
656: my ($symb_old,$symb_old_enc) = &Apache::loncommon::clean_symb($currentURL);
657: my $annotation = &Apache::loncommon::get_annotation($symb_old,$symb_old_enc);
658: $menuitems.="s&9&3&";
659: if(length($annotation) > 0){
660: $menuitems.="anot2.gif";
661: }else{
662: $menuitems.="anot.gif";
663: }
664: $menuitems.="&anno-[_1]&tations[_1]&annotate()&";
665: $menuitems.="Make notes and annotations about this resource&&1\n";
666:
1.244.2.4 raeburn 667: unless ($noremote) {
668: my $showreqcrs = &check_for_rcrs();
669: if ($showreqcrs) {
670: $menuitems.="s&8&1&rcrs.gif&request[_1]&course[_16]".
671: "&go('/adm/requestcourse')&Course requests\n";
672: }
673: }
1.193 raeburn 674: unless ($env{'request.noversionuri'}=~/\/(bulletinboard|smppg|navmaps|syllabus|aboutme)(\?|$)/) {
1.244.2.11 raeburn 675: if ((!$env{'request.enc'}) && ($env{'request.noversionuri'} !~ m{^/adm/wrapper/ext/})) {
1.216 albertel 676: $menuitems.=(<<ENDREALRES);
1.244.2.1 raeburn 677: s&6&3&catalog.gif&catalog[_2]&info[_1]&catalog_info()&Show Metadata
1.216 albertel 678: ENDREALRES
679: }
1.120 raeburn 680: $menuitems.=(<<ENDREALRES);
1.106 www 681: s&8&1&eval.gif&evaluate[_1]&this[_1]&gopost('/adm/evaluate',currentURL,1)&Provide my evaluation of this resource
682: 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 683: ENDREALRES
1.120 raeburn 684: }
685: }
1.203 foxr 686: if ($env{'request.uri'} =~ /^\/res/) {
687: $menuitems .= (<<ENDMENUITEMS);
688: s&8&3&prt.gif&prepare[_1]&printout[_1]&gopost('/adm/printout',currentURL)&Prepare a printable document
689: ENDMENUITEMS
690: }
1.41 www 691: my $buttons='';
692: foreach (split(/\n/,$menuitems)) {
693: my ($command,@rest)=split(/\&/,$_);
1.220 raeburn 694: my $idx=10*$rest[0]+$rest[1];
695: if (&hidden_button_check() eq 'yes') {
696: if ($idx == 21 ||$idx == 23) {
697: $buttons.=&switch('','',@rest);
698: } else {
699: $buttons.=&clear(@rest);
700: }
701: } else {
702: if ($command eq 's') {
703: $buttons.=&switch('','',@rest);
704: } else {
705: $buttons.=&clear(@rest);
706: }
1.41 www 707: }
708: }
1.148 albertel 709:
710: if ($textual) {
711: my $addremote=0;
712: foreach (@inlineremote) { if ($_ ne '') { $addremote=1; } }
713: my $inlinebuttons='';
714: if ($addremote) {
1.41 www 715: # Registered, textual output
1.152 albertel 716: if ($env{'browser.interface'} eq 'textual') {
1.148 albertel 717: $inlinebuttons=
1.56 www 718: join('',map { (defined($_)?$_:'') } @inlineremote);
1.148 albertel 719: } else {
1.218 www 720: if ($env{'environment.icons'} eq 'iconsonly') {
1.220 raeburn 721: $inlinebuttons=(<<ENDARROWSINLINE);
1.218 www 722: <tr><td>
723: $inlineremote[21] $inlineremote[23]
1.220 raeburn 724: ENDARROWSINLINE
725: if (&hidden_button_check() ne 'yes') {
726: $inlinebuttons .= (<<ENDINLINEICONS);
1.218 www 727: $inlineremote[61] $inlineremote[63]
728: $inlineremote[71] $inlineremote[72] $inlineremote[73]
729: $inlineremote[81] $inlineremote[82] $inlineremote[83]
730: $inlineremote[91] $inlineremote[92] $inlineremote[93]</td></tr>
731: ENDINLINEICONS
1.220 raeburn 732: }
1.218 www 733: } else {
1.223 albertel 734: if ($inlineremote[21] ne '' || $inlineremote[23] ne '') {
735: $inlinebuttons=(<<ENDFIRSTLINE);
1.129 albertel 736: <tr><td>$inlineremote[21]</td><td> </td><td>$inlineremote[23]</td></tr>
1.220 raeburn 737: ENDFIRSTLINE
1.223 albertel 738: }
1.220 raeburn 739: if (&hidden_button_check() ne 'yes') {
1.223 albertel 740: foreach my $row (6..9) {
741: if ($inlineremote[${row}.'1'] ne ''
742: || $inlineremote[$row.'2'] ne ''
743: || $inlineremote[$row.'3'] ne '') {
744: $inlinebuttons .= <<"ENDLINE";
745: <tr><td>$inlineremote["${row}1"]</td><td>$inlineremote["${row}2"]</td><td>$inlineremote["${row}3"]</td></tr>
746: ENDLINE
747: }
748: }
749: }
750: }
751: }
1.103 www 752: }
1.41 www 753: $result =(<<ENDREGTEXT);
1.129 albertel 754: <script type="text/javascript">
1.42 www 755: // BEGIN LON-CAPA Internal
756: </script>
1.41 www 757: $timesync
1.58 www 758: $tablestart
1.56 www 759: $inlinebuttons
1.227 albertel 760: $tableend
1.224 albertel 761: $newmail
1.129 albertel 762: <script type="text/javascript">
1.64 www 763: // END LON-CAPA Internal
1.42 www 764: </script>
765:
1.41 www 766: ENDREGTEXT
767: # Registered, graphical output
768: } else {
1.152 albertel 769: my $requri=&Apache::lonnet::clutter(&Apache::lonnet::fixversion((split(/\?/,$env{'request.noversionuri'}))[0]));
1.183 www 770: $requri=&Apache::lonenc::check_encrypt(&unescape($requri));
1.152 albertel 771: my $cursymb=&Apache::lonenc::check_encrypt($env{'request.symb'});
1.113 albertel 772: my $navstatus=&get_nav_status();
1.140 albertel 773: my $clearcstr;
1.148 albertel 774:
1.152 albertel 775: if ($env{'user.adv'}) { $clearcstr='clearbut(6,1)'; }
1.41 www 776: $result = (<<ENDREGTHIS);
1.38 www 777:
1.129 albertel 778: <script type="text/javascript">
1.244.2.3 raeburn 779: // <![CDATA[
1.150 albertel 780: // BEGIN LON-CAPA Internal
1.42 www 781: var swmenu=null;
1.38 www 782:
783: function LONCAPAreg() {
784: swmenu=$reopen;
785: swmenu.clearTimeout(swmenu.menucltim);
786: $timesync
787: $newmail
1.41 www 788: $buttons
1.84 www 789: swmenu.currentURL="$requri";
1.85 www 790: swmenu.reloadURL=swmenu.currentURL+window.location.search;
1.125 albertel 791: swmenu.currentSymb="$cursymb";
792: swmenu.reloadSymb="$cursymb";
1.38 www 793: swmenu.currentStale=0;
1.113 albertel 794: $navstatus
1.38 www 795: $hwkadd
796: $editbutton
797: }
798:
799: function LONCAPAstale() {
800: swmenu=$reopen
801: swmenu.currentStale=1;
802: if (swmenu.reloadURL!='' && swmenu.reloadURL!= null) {
803: swmenu.switchbutton
804: (3,1,'reload.gif','return','location','go(reloadURL)','Return to the last known location in the course sequence');
805: }
806: swmenu.clearbut(7,2);
807: swmenu.clearbut(7,3);
808: swmenu.menucltim=swmenu.setTimeout(
809: 'clearbut(2,1);clearbut(2,3);clearbut(8,1);clearbut(8,2);clearbut(8,3);'+
1.140 albertel 810: 'clearbut(9,1);clearbut(9,3);clearbut(6,3);$clearcstr',
1.38 www 811: 2000);
812: }
813:
1.150 albertel 814: // END LON-CAPA Internal
1.244.2.3 raeburn 815: // ]]>
1.38 www 816: </script>
817: ENDREGTHIS
1.41 www 818: }
819: # =============================================================================
1.38 www 820: } else {
1.41 www 821: # ========================================== This can or will not be registered
822: if ($textual) {
823: # Not registered, textual
824: $result= (<<ENDDONOTREGTEXT);
825: ENDDONOTREGTEXT
826: } else {
827: # Not registered, graphical
828: $result = (<<ENDDONOTREGTHIS);
1.38 www 829:
1.129 albertel 830: <script type="text/javascript">
1.244.2.3 raeburn 831: // <![CDATA[
1.38 www 832: // BEGIN LON-CAPA Internal
1.42 www 833: var swmenu=null;
1.38 www 834:
835: function LONCAPAreg() {
836: swmenu=$reopen
837: $timesync
838: swmenu.currentStale=1;
839: swmenu.clearbut(2,1);
840: swmenu.clearbut(2,3);
841: swmenu.clearbut(8,1);
842: swmenu.clearbut(8,2);
843: swmenu.clearbut(8,3);
844: if (swmenu.currentURL) {
845: swmenu.switchbutton
846: (3,1,'reload.gif','return','location','go(currentURL)');
847: } else {
848: swmenu.clearbut(3,1);
849: }
850: }
851:
852: function LONCAPAstale() {
853: }
854:
855: // END LON-CAPA Internal
1.244.2.3 raeburn 856: // ]]>
1.38 www 857: </script>
858: ENDDONOTREGTHIS
1.41 www 859: }
860: # =============================================================================
1.38 www 861: }
862: return $result;
863: }
864:
1.244.2.1 raeburn 865: sub is_course_upload {
866: my ($file,$cnum,$cdom) = @_;
867: my $uploadpath = &LONCAPA::propath($cdom,$cnum);
868: $uploadpath =~ s{^\/}{};
869: if (($file =~ m{^\Q$uploadpath\E/userfiles/docs/}) ||
870: ($file =~ m{^userfiles/\Q$cdom\E/\Q$cnum\E/docs/})) {
871: return 1;
872: }
873: return;
874: }
875:
876: sub edit_course_upload {
877: my ($file,$cnum,$cdom) = @_;
878: my $cfile;
879: if ($file =~/\.(htm|html|css|js|txt)$/) {
880: my $ext = $1;
881: my $url = &Apache::lonnet::hreflocation('',$file);
882: my $home = &Apache::lonnet::homeserver($cnum,$cdom);
883: my @ids=&Apache::lonnet::current_machine_ids();
884: my $dest;
885: if ($home && grep(/^\Q$home\E$/,@ids)) {
886: $dest = $url.'?forceedit=1';
887: } else {
888: unless (&Apache::lonnet::get_locks()) {
889: $dest = '/adm/switchserver?otherserver='.
890: $home.'&role='.$env{'request.role'}.
891: '&url='.$url.'&forceedit=1';
892: }
893: }
894: if ($dest) {
895: $cfile = &HTML::Entities::encode($dest,'"<>&');
896: }
897: }
898: return $cfile;
899: }
900:
1.38 www 901: sub loadevents() {
1.152 albertel 902: if ($env{'request.state'} eq 'construct' ||
1.175 albertel 903: $env{'request.noversionuri'} =~ m{^/res/adm/pages/}) { return ''; }
1.38 www 904: return 'LONCAPAreg();';
905: }
906:
907: sub unloadevents() {
1.152 albertel 908: if ($env{'request.state'} eq 'construct' ||
1.175 albertel 909: $env{'request.noversionuri'} =~ m{^/res/adm/pages/}) { return ''; }
1.38 www 910: return 'LONCAPAstale();';
911: }
1.30 www 912:
1.32 www 913:
914: sub startupremote {
915: my ($lowerurl)=@_;
1.152 albertel 916: if (($env{'browser.interface'} eq 'textual') ||
917: ($env{'environment.remote'} eq 'off')) {
1.34 www 918: return ('<meta HTTP-EQUIV="Refresh" CONTENT="0.5; url='.$lowerurl.'" />');
919: }
1.49 www 920: #
921: # The Remote actually gets launched!
922: #
1.32 www 923: my $configmenu=&rawconfig();
1.183 www 924: my $esclowerurl=&escape($lowerurl);
1.119 www 925: my $message=&mt('"Waiting for Remote Control window to load: "+[_1]','waited');
1.32 www 926: return(<<ENDREMOTESTARTUP);
1.129 albertel 927: <script type="text/javascript">
1.244.2.3 raeburn 928: // <![CDATA[
1.118 albertel 929: var timestart;
1.35 www 930: function wheelswitch() {
1.118 albertel 931: if (typeof(document.wheel) != 'undefined') {
932: if (typeof(document.wheel.spin) != 'undefined') {
933: var date=new Date();
934: var waited=Math.round(30-((date.getTime()-timestart)/1000));
935: document.wheel.spin.value=$message;
936: }
937: }
1.35 www 938: if (window.status=='|') {
939: window.status='/';
940: } else {
941: if (window.status=='/') {
942: window.status='-';
943: } else {
944: if (window.status=='-') {
945: window.status='\\\\';
946: } else {
947: if (window.status=='\\\\') { window.status='|'; }
948: }
949: }
950: }
951: }
952:
1.32 www 953: // ---------------------------------------------------------- The wait function
954: var canceltim;
955: function wait() {
956: if ((menuloaded==1) || (tim==1)) {
1.35 www 957: window.status='Done.';
1.32 www 958: if (tim==0) {
959: clearTimeout(canceltim);
960: $configmenu
961: window.location='$lowerurl';
962: } else {
1.52 www 963: window.location='/adm/remote?action=collapse&url=$esclowerurl';
1.32 www 964: }
965: } else {
1.35 www 966: wheelswitch();
967: setTimeout('wait();',200);
1.32 www 968: }
969: }
970:
971: function main() {
1.52 www 972: canceltim=setTimeout('tim=1;',30000);
1.35 www 973: window.status='-';
1.118 albertel 974: var date=new Date();
975: timestart=date.getTime();
1.32 www 976: wait();
977: }
1.244.2.3 raeburn 978: // ]]>
1.32 www 979: </script>
980: ENDREMOTESTARTUP
981: }
982:
983: sub setflags() {
984: return(<<ENDSETFLAGS);
1.129 albertel 985: <script type="text/javascript">
1.244.2.3 raeburn 986: // <![CDATA[
1.32 www 987: menuloaded=0;
988: tim=0;
1.244.2.3 raeburn 989: // ]]>
1.32 www 990: </script>
991: ENDSETFLAGS
992: }
993:
994: sub maincall() {
1.152 albertel 995: if (($env{'browser.interface'} eq 'textual') ||
996: ($env{'environment.remote'} eq 'off')) { return ''; }
1.32 www 997: return(<<ENDMAINCALL);
1.129 albertel 998: <script type="text/javascript">
1.244.2.3 raeburn 999: // <![CDATA[
1.32 www 1000: main();
1.244.2.3 raeburn 1001: // ]]>
1.32 www 1002: </script>
1003: ENDMAINCALL
1004: }
1.118 albertel 1005:
1006: sub load_remote_msg {
1007: my ($lowerurl)=@_;
1008:
1.152 albertel 1009: if (($env{'browser.interface'} eq 'textual') ||
1010: ($env{'environment.remote'} eq 'off')) { return ''; }
1.118 albertel 1011:
1.183 www 1012: my $esclowerurl=&escape($lowerurl);
1.244.2.1 raeburn 1013: my $link=&mt('[_1]Continue[_2] on in Inline Menu mode',
1014: '<a href="/adm/remote?action=collapse&url='.$esclowerurl.'">',
1015: '</a>');
1.118 albertel 1016: return(<<ENDREMOTEFORM);
1017: <p>
1018: <form name="wheel">
1.119 www 1019: <input name="spin" type="text" size="60" />
1.118 albertel 1020: </form>
1021: </p>
1022: <p>$link</p>
1023: ENDREMOTEFORM
1024: }
1.230 albertel 1025:
1026: sub get_menu_name {
1027: my $hostid = $Apache::lonnet::perlvar{'lonHostID'};
1028: $hostid =~ s/\W//g;
1029: return 'LCmenu'.$hostid;
1030: }
1031:
1.30 www 1032:
1033: sub reopenmenu {
1.152 albertel 1034: if (($env{'browser.interface'} eq 'textual') ||
1035: ($env{'environment.remote'} eq 'off')) { return ''; }
1.230 albertel 1036: my $menuname = &get_menu_name();
1.47 matthew 1037: my $nothing = &Apache::lonhtmlcommon::javascript_nothing();
1038: return('window.open('.$nothing.',"'.$menuname.'","",false);');
1.30 www 1039: }
1040:
1.1 www 1041:
1042: sub open {
1.22 www 1043: my $returnval='';
1.152 albertel 1044: if (($env{'browser.interface'} eq 'textual') ||
1045: ($env{'environment.remote'} eq 'off')) {
1.244.2.3 raeburn 1046: return
1047: '<script type="text/javascript">'."\n".
1.244.2.5 raeburn 1048: '// <![CDATA['."\n".
1.244.2.3 raeburn 1049: 'self.name="loncapaclient";'."\n".
1.244.2.5 raeburn 1050: '// ]]>'."\n".
1.244.2.3 raeburn 1051: '</script>';
1.111 albertel 1052: }
1.230 albertel 1053: my $menuname = &get_menu_name();
1.222 albertel 1054:
1055: # unless (shift eq 'unix') {
1.22 www 1056: # resizing does not work on linux because of virtual desktop sizes
1.222 albertel 1057: # $returnval.=(<<ENDRESIZE);
1058: #if (window.screen) {
1059: # self.resizeTo(screen.availWidth-215,screen.availHeight-55);
1060: # self.moveTo(190,15);
1061: #}
1062: #ENDRESIZE
1063: # }
1.244.2.3 raeburn 1064: $returnval=(<<ENDOPEN);
1065: // <![CDATA[
1.35 www 1066: window.status='Opening LON-CAPA Remote Control';
1.30 www 1067: var menu=window.open("/res/adm/pages/menu.html","$menuname",
1.191 www 1068: "height=375,width=150,scrollbars=no,menubar=no,top=5,left=5,screenX=5,screenY=5");
1.71 www 1069: self.name='loncapaclient';
1.244.2.3 raeburn 1070: // ]]>
1.1 www 1071: ENDOPEN
1.129 albertel 1072: return '<script type="text/javascript">'.$returnval.'</script>';
1.1 www 1073: }
1074:
1.2 www 1075:
1076: # ================================================================== Raw Config
1077:
1.3 www 1078: sub clear {
1079: my ($row,$col)=@_;
1.152 albertel 1080: unless (($env{'browser.interface'} eq 'textual') ||
1081: ($env{'environment.remote'} eq 'off')) {
1.35 www 1082: return "\n".qq(window.status+='.';swmenu.clearbut($row,$col););
1.56 www 1083: } else {
1084: $inlineremote[10*$row+$col]='';
1085: return '';
1086: }
1.3 www 1087: }
1088:
1.40 www 1089: # ============================================ Switch a button or create a link
1.25 matthew 1090: # Switch acts on the javascript that is executed when a button is clicked.
1091: # The javascript is usually similar to "go('/adm/roles')" or "cstrgo(..)".
1.40 www 1092:
1.2 www 1093: sub switch {
1.209 www 1094: my ($uname,$udom,$row,$col,$img,$top,$bot,$act,$desc,$cat,$nobreak)=@_;
1.2 www 1095: $act=~s/\$uname/$uname/g;
1096: $act=~s/\$udom/$udom/g;
1.88 www 1097: $top=&mt($top);
1098: $bot=&mt($bot);
1099: $desc=&mt($desc);
1.238 www 1100: if (($env{'environment.remote'} ne 'off') || ($env{'environment.icons'} eq 'classic')) {
1101: $img=&mt($img);
1102: }
1.209 www 1103: my $idx=10*$row+$col;
1104: $category_members{$cat}.=':'.$idx;
1105:
1.152 albertel 1106: unless (($env{'browser.interface'} eq 'textual') ||
1107: ($env{'environment.remote'} eq 'off')) {
1.50 www 1108: # Remote
1.34 www 1109: return "\n".
1.35 www 1110: qq(window.status+='.';swmenu.switchbutton($row,$col,"$img","$top","$bot","$act","$desc"););
1.152 albertel 1111: } elsif ($env{'browser.interface'} eq 'textual') {
1.50 www 1112: # Accessibility
1113: if ($nobreak==2) { return ''; }
1114: my $text=$top.' '.$bot;
1.78 www 1115: $text=~s/\s*\-\s*//gs;
1.94 www 1116: if ($nobreak) {
1.209 www 1117: $inlineremote[$idx]=
1.94 www 1118: '<a href="javascript:'.$act.';">'.$text.'</a>';
1119: } else {
1.209 www 1120: $inlineremote[$idx]="\n<br />".
1.100 www 1121: $desc.' <a href="javascript:'.$act.';">'.$text.'</a>';
1.94 www 1122: }
1.34 www 1123: } else {
1.50 www 1124: # Inline Remote
1.213 www 1125: if ($env{'environment.icons'} ne 'classic') {
1126: $img=~s/\.gif$/\.png/;
1127: }
1.41 www 1128: if ($nobreak==2) { return ''; }
1.34 www 1129: my $text=$top.' '.$bot;
1.78 www 1130: $text=~s/\s*\-\s*//gs;
1.105 www 1131:
1.99 www 1132: my $pic=
1.225 albertel 1133: '<img alt="'.$text.'" src="'.
1134: &Apache::loncommon::lonhttpdurl('/res/adm/pages/'.$img).
1135: '" align="'.($nobreak==3?'right':'left').'" />';
1.177 albertel 1136: if ($env{'browser.interface'} eq 'faketextual') {
1.103 www 1137: # Accessibility
1138: if ($nobreak==3) {
1.209 www 1139: $inlineremote[$idx]="\n".
1.177 albertel 1140: '<td class="LC_menubuttons_text" align="right">'.$text.
1141: '</td><td class="LC_menubuttons_img" align="left">'.
1.103 www 1142: '<a href="javascript:'.$act.';">'.$pic.'</a></td></tr>';
1143: } elsif ($nobreak) {
1.209 www 1144: $inlineremote[$idx]="\n<tr>".
1.177 albertel 1145: '<td class="LC_menubuttons_img" align="left">'.
1146: '<a href="javascript:'.$act.';">'.$pic.'</a></td>
1.215 www 1147: <td class="LC_menubuttons_text" align="left"><a class="LC_menubuttons_link" href="javascript:'.$act.';"><span class="LC_menubuttons_inline_text">'.$text.'</span></a></td>';
1.103 www 1148: } else {
1.209 www 1149: $inlineremote[$idx]="\n<tr>".
1.177 albertel 1150: '<td class="LC_menubuttons_img" align="left">'.
1.103 www 1151: '<a href="javascript:'.$act.';">'.$pic.
1.177 albertel 1152: '</a></td><td class="LC_menubuttons_text" colspan="3">'.
1.215 www 1153: '<a class="LC_menubuttons_link" href="javascript:'.$act.';"><span class="LC_menubuttons_inline_text">'.$desc.'</span></a></td></tr>';
1.103 www 1154: }
1.94 www 1155: } else {
1.103 www 1156: # Inline Menu
1.218 www 1157: if ($env{'environment.icons'} eq 'iconsonly') {
1158: $inlineremote[$idx]='<a title="'.$desc.'" href="javascript:'.$act.';">'.$pic.'</a>';
1159: } else {
1160: $inlineremote[$idx]=
1.215 www 1161: '<a class="LC_menubuttons_link" href="javascript:'.$act.';">'.$pic.
1162: '<span class="LC_menubuttons_inline_text">'.$desc.'</span></a>';
1.218 www 1163: }
1.94 www 1164: }
1.34 www 1165: }
1.56 www 1166: return '';
1.2 www 1167: }
1168:
1169: sub secondlevel {
1170: my $output='';
1171: my
1.209 www 1172: ($uname,$udom,$rol,$crs,$pub,$con,$row,$col,$prt,$img,$top,$bot,$act,$desc,$cat)=@_;
1.2 www 1173: if ($prt eq 'any') {
1.209 www 1174: $output.=&switch($uname,$udom,$row,$col,$img,$top,$bot,$act,$desc,$cat);
1.2 www 1175: } elsif ($prt=~/^r(\w+)/) {
1176: if ($rol eq $1) {
1.209 www 1177: $output.=&switch($uname,$udom,$row,$col,$img,$top,$bot,$act,$desc,$cat);
1.2 www 1178: }
1179: }
1180: return $output;
1181: }
1182:
1.18 www 1183: sub openmenu {
1.230 albertel 1184: my $menuname = &get_menu_name();
1.152 albertel 1185: if (($env{'browser.interface'} eq 'textual') ||
1186: ($env{'environment.remote'} eq 'off')) { return ''; }
1.47 matthew 1187: my $nothing = &Apache::lonhtmlcommon::javascript_nothing();
1188: return "window.open(".$nothing.",'".$menuname."');";
1.18 www 1189: }
1190:
1.56 www 1191: sub inlinemenu {
1.210 albertel 1192: undef(@inlineremote);
1193: undef(%category_members);
1.56 www 1194: &rawconfig(1);
1.214 albertel 1195: my $output='<table id="LC_mainmenu"><tr>';
1.209 www 1196: for (my $col=1; $col<=2; $col++) {
1.241 riegler 1197: $output.='<td class="LC_mainmenu_col_fieldset">';
1.209 www 1198: for (my $row=1; $row<=8; $row++) {
1199: foreach my $cat (keys(%category_members)) {
1200: if ($category_positions{$cat} ne "$col,$row") { next; }
1.241 riegler 1201: #$output.='<table id="LC_menubuttons_mainmenu"><tr><td colspan="4" class="LC_menubuttons_category">'.&mt($category_names{$cat}).'</td></tr>';
1202: $output.='<fieldset id="LC_mainmenu_fieldset">';
1203: $output.='<legend class="LC_mainmenu_fieldset_category">'.&mt($category_names{$cat}).'</legend>';
1204: $output.='<table id="LC_menubuttons_mainmenu">';
1.240 riegler 1205: my %active=();
1206: foreach my $menu_item (split(/\:/,$category_members{$cat})) {
1207: if ($inlineremote[$menu_item]) {
1208: $active{$menu_item}=1;
1209: }
1210: }
1211: foreach my $item (sort(keys(%active))) {
1212: $output.=$inlineremote[$item];
1213: }
1214: $output.='</table>';
1.241 riegler 1215: $output.='</fieldset>';
1.240 riegler 1216: }
1217: }
1218: $output.="</td>";
1219: }
1220: $output.="</tr></table>";
1221: return $output;
1222: }
1223:
1.2 www 1224: sub rawconfig {
1.34 www 1225: my $textualoverride=shift;
1226: my $output='';
1.152 albertel 1227: unless (($env{'browser.interface'} eq 'textual') ||
1228: ($env{'environment.remote'} eq 'off')) {
1.35 www 1229: $output.=
1230: "window.status='Opening Remote Control';var swmenu=".&openmenu().
1231: "\nwindow.status='Configuring Remote Control ';";
1.34 www 1232: } else {
1233: unless ($textualoverride) { return ''; }
1234: }
1.152 albertel 1235: my $uname=$env{'user.name'};
1236: my $udom=$env{'user.domain'};
1237: my $adv=$env{'user.adv'};
1.244.2.1 raeburn 1238: my $show_course=&Apache::loncommon::show_course();
1.152 albertel 1239: my $author=$env{'user.author'};
1.5 www 1240: my $crs='';
1.244.2.12 raeburn 1241: my $crstype='';
1.152 albertel 1242: if ($env{'request.course.id'}) {
1243: $crs='/'.$env{'request.course.id'};
1244: if ($env{'request.course.sec'}) {
1245: $crs.='_'.$env{'request.course.sec'};
1.7 www 1246: }
1.8 www 1247: $crs=~s/\_/\//g;
1.244.2.12 raeburn 1248: $crstype = &Apache::loncommon::course_type();
1.5 www 1249: }
1.152 albertel 1250: my $pub=($env{'request.state'} eq 'published');
1251: my $con=($env{'request.state'} eq 'construct');
1252: my $rol=$env{'request.role'};
1253: my $requested_domain = $env{'request.role.domain'};
1.184 raeburn 1254: foreach my $line (@desklines) {
1.209 www 1255: my ($row,$col,$pro,$prt,$img,$top,$bot,$act,$desc,$cat)=split(/\:/,$line);
1.3 www 1256: $prt=~s/\$uname/$uname/g;
1257: $prt=~s/\$udom/$udom/g;
1.244.2.12 raeburn 1258: $prt=~s/\$crs/$crs/g;
1259: if ($prt =~ /\$crs/) {
1260: next unless ($env{'request.course.id'});
1261: next if ($crstype eq 'Community');
1262: $prt=~s/\$crs/$crs/g;
1263: } elsif ($prt =~ /\$cmty/) {
1264: next unless ($env{'request.course.id'});
1265: next if ($crstype ne 'Community');
1266: $prt=~s/\$cmty/$crs/g;
1267: }
1.25 matthew 1268: $prt=~s/\$requested_domain/$requested_domain/g;
1.211 www 1269: if ($category_names{$cat}!~/\w/) { $cat='oth'; }
1.3 www 1270: if ($pro eq 'clear') {
1.4 www 1271: $output.=&clear($row,$col);
1.3 www 1272: } elsif ($pro eq 'any') {
1.2 www 1273: $output.=&secondlevel(
1.209 www 1274: $uname,$udom,$rol,$crs,$pub,$con,$row,$col,$prt,$img,$top,$bot,$act,$desc,$cat);
1.2 www 1275: } elsif ($pro eq 'smp') {
1276: unless ($adv) {
1277: $output.=&secondlevel(
1.209 www 1278: $uname,$udom,$rol,$crs,$pub,$con,$row,$col,$prt,$img,$top,$bot,$act,$desc,$cat);
1.2 www 1279: }
1280: } elsif ($pro eq 'adv') {
1281: if ($adv) {
1282: $output.=&secondlevel(
1.209 www 1283: $uname,$udom,$rol,$crs,$pub,$con,$row,$col,$prt,$img,$top,$bot,$act,$desc,$cat);
1.2 www 1284: }
1.231 albertel 1285: } elsif ($pro eq 'shc') {
1286: if ($show_course) {
1287: $output.=&secondlevel(
1288: $uname,$udom,$rol,$crs,$pub,$con,$row,$col,$prt,$img,$top,$bot,$act,$desc,$cat);
1289: }
1290: } elsif ($pro eq 'nsc') {
1291: if (!$show_course) {
1292: $output.=&secondlevel(
1293: $uname,$udom,$rol,$crs,$pub,$con,$row,$col,$prt,$img,$top,$bot,$act,$desc,$cat);
1294: }
1.81 matthew 1295: } elsif (($pro=~/^p(\w+)/) && ($prt)) {
1.244.2.12 raeburn 1296: my $priv = $1;
1297: if ($priv =~ /^mdc(Course|Community)/) {
1298: if ($crstype eq $1) {
1299: $priv = 'mdc';
1300: } else {
1301: next;
1302: }
1303: }
1304: if (&Apache::lonnet::allowed($priv,$prt)) {
1.209 www 1305: $output.=&switch($uname,$udom,$row,$col,$img,$top,$bot,$act,$desc,$cat);
1.4 www 1306: }
1.244.2.12 raeburn 1307: } elsif ($pro eq 'course') {
1308: if (($env{'request.course.fn'}) && ($crstype ne 'Community')) {
1.209 www 1309: $output.=&switch($uname,$udom,$row,$col,$img,$top,$bot,$act,$desc,$cat);
1.244.2.12 raeburn 1310: }
1311: } elsif ($pro eq 'community') {
1312: if (($env{'request.course.fn'}) && ($crstype eq 'Community')) {
1313: $output.=&switch($uname,$udom,$row,$col,$img,$top,$bot,$act,$desc,$cat);
1314: }
1.124 matthew 1315: } elsif ($pro =~ /^courseenv_(.*)$/) {
1316: my $key = $1;
1.244.2.12 raeburn 1317: if ($crstype ne 'Community') {
1318: my $coursepref = $env{'course.'.$env{'request.course.id'}.'.'.$key};
1319: if ($key eq 'canuse_pdfforms') {
1320: if ($env{'request.course.id'} && $coursepref eq '') {
1321: my %domdefs = &Apache::lonnet::get_domain_defaults($env{'course.'.$env{'request.course.id'}.'.domain'});
1322: $coursepref = $domdefs{'canuse_pdfforms'};
1323: }
1324: }
1325: if ($coursepref) {
1326: $output.=&switch($uname,$udom,$row,$col,$img,$top,$bot,$act,$desc,$cat);
1327: }
1328: }
1329: } elsif ($pro =~ /^communityenv_(.*)$/) {
1330: my $key = $1;
1331: if ($crstype eq 'Community') {
1332: my $coursepref = $env{'course.'.$env{'request.course.id'}.'.'.$key};
1333: if ($key eq 'canuse_pdfforms') {
1334: if ($env{'request.course.id'} && $coursepref eq '') {
1335: my %domdefs = &Apache::lonnet::get_domain_defaults($env{'course.'.$env{'request.course.id'}.'.domain'});
1336: $coursepref = $domdefs{'canuse_pdfforms'};
1337: }
1338: }
1339: if ($coursepref) {
1340: $output.=&switch($uname,$udom,$row,$col,$img,$top,$bot,$act,$desc,$cat);
1341: }
1.124 matthew 1342: }
1.81 matthew 1343: } elsif ($pro =~ /^course_(.*)$/) {
1344: # Check for permissions inside of a course
1.244.2.12 raeburn 1345: if (($env{'request.course.id'}) && ($crstype ne 'Community') &&
1.152 albertel 1346: (&Apache::lonnet::allowed($1,$env{'request.course.id'}.
1347: ($env{'request.course.sec'}?'/'.$env{'request.course.sec'}:''))
1.81 matthew 1348: )) {
1.209 www 1349: $output.=&switch($uname,$udom,$row,$col,$img,$top,$bot,$act,$desc,$cat);
1.244.2.12 raeburn 1350: }
1351: } elsif ($pro =~ /^community_(.*)$/) {
1352: # Check for permissions inside of a community
1353: if (($env{'request.course.id'}) && ($crstype eq 'Community') &&
1354: (&Apache::lonnet::allowed($1,$env{'request.course.id'}.
1355: ($env{'request.course.sec'}?'/'.$env{'request.course.sec'}:''))
1356: )) {
1357: $output.=&switch($uname,$udom,$row,$col,$img,$top,$bot,$act,$desc,$cat);
1358: }
1.4 www 1359: } elsif ($pro eq 'author') {
1360: if ($author) {
1.152 albertel 1361: if ((($prt eq 'rca') && ($env{'request.role'}=~/^ca/)) ||
1.234 raeburn 1362: (($prt eq 'raa') && ($env{'request.role'}=~/^aa/)) ||
1.152 albertel 1363: (($prt eq 'rau') && ($env{'request.role'}=~/^au/))) {
1.19 matthew 1364: # Check that we are on the correct machine
1.29 matthew 1365: my $cadom=$requested_domain;
1.152 albertel 1366: my $caname=$env{'user.name'};
1.234 raeburn 1367: if (($prt eq 'rca') || ($prt eq 'raa')) {
1.29 matthew 1368: ($cadom,$caname)=
1.206 albertel 1369: ($env{'request.role'}=~/($match_domain)\/($match_username)$/);
1.29 matthew 1370: }
1371: $act =~ s/\$caname/$caname/g;
1.19 matthew 1372: my $home = &Apache::lonnet::homeserver($caname,$cadom);
1.109 albertel 1373: my $allowed=0;
1374: my @ids=&Apache::lonnet::current_machine_ids();
1375: foreach my $id (@ids) { if ($id eq $home) { $allowed=1; } }
1376: if ($allowed) {
1.209 www 1377: $output.=&switch($caname,$cadom,
1378: $row,$col,$img,$top,$bot,$act,$desc,$cat);
1.19 matthew 1379: }
1.6 www 1380: }
1.2 www 1381: }
1.244.2.1 raeburn 1382: } elsif ($pro eq 'tools') {
1383: my @tools = ('aboutme','blog','portfolio');
1384: if (grep(/^\Q$prt\E$/,@tools)) {
1385: if (!&Apache::lonnet::usertools_access($env{'user.name'},
1386: $env{'user.domain'},
1387: $prt,undef,'tools')) {
1388: $output.=&clear($row,$col);
1389: next;
1390: }
1.244.2.4 raeburn 1391: } elsif (($prt eq 'reqcrsnsc') || ($prt eq 'reqcrsshc')) {
1392: if (($prt eq 'reqcrsnsc') && ($show_course)) {
1393: next;
1394: }
1395: if (($prt eq 'reqcrsshc') && (!$show_course)) {
1396: next;
1.244.2.1 raeburn 1397: }
1.244.2.4 raeburn 1398: my $showreqcrs = &check_for_rcrs();
1.244.2.1 raeburn 1399: if (!$showreqcrs) {
1400: $output.=&clear($row,$col);
1401: next;
1402: }
1403: }
1404: $prt='any';
1405: $output.=&secondlevel(
1406: $uname,$udom,$rol,$crs,$pub,$con,$row,$col,$prt,$img,$top,$bot,$act,$desc,$cat);
1407:
1.2 www 1408: }
1.13 harris41 1409: }
1.152 albertel 1410: unless (($env{'browser.interface'} eq 'textual') ||
1411: ($env{'environment.remote'} eq 'off')) {
1.35 www 1412: $output.="\nwindow.status='Synchronizing Time';swmenu.syncclock(1000*".time.");\nwindow.status='Remote Control Configured.';";
1.123 www 1413: if (&Apache::lonmsg::newmail()) {
1414: $output.='swmenu.setstatus("you have","messages");';
1415: }
1.34 www 1416: }
1.123 www 1417:
1.2 www 1418: return $output;
1419: }
1420:
1.244.2.4 raeburn 1421: sub check_for_rcrs {
1422: my $showreqcrs = 0;
1.244.2.7 raeburn 1423: my @reqtypes = ('official','unofficial','community');
1424: foreach my $type (@reqtypes) {
1.244.2.4 raeburn 1425: if (&Apache::lonnet::usertools_access($env{'user.name'},
1426: $env{'user.domain'},
1427: $type,undef,'requestcourses')) {
1428: $showreqcrs = 1;
1429: last;
1430: }
1431: }
1.244.2.7 raeburn 1432: if (!$showreqcrs) {
1433: foreach my $type (@reqtypes) {
1434: if ($env{'environment.reqcrsotherdom.'.$type} ne '') {
1435: $showreqcrs = 1;
1436: last;
1437: }
1438: }
1439: }
1.244.2.4 raeburn 1440: return $showreqcrs;
1441: }
1442:
1.2 www 1443: # ======================================================================= Close
1.1 www 1444:
1445: sub close {
1.152 albertel 1446: if (($env{'browser.interface'} eq 'textual') ||
1447: ($env{'environment.remote'} eq 'off')) { return ''; }
1.230 albertel 1448: my $menuname = &get_menu_name();
1.1 www 1449: return(<<ENDCLOSE);
1.129 albertel 1450: <script type="text/javascript">
1.244.2.3 raeburn 1451: // <![CDATA[
1.35 www 1452: window.status='Accessing Remote Control';
1.30 www 1453: menu=window.open("/adm/rat/empty.html","$menuname",
1.1 www 1454: "height=350,width=150,scrollbars=no,menubar=no");
1.35 www 1455: window.status='Disabling Remote Control';
1456: menu.active=0;
1.31 www 1457: menu.autologout=0;
1.35 www 1458: window.status='Closing Remote Control';
1.1 www 1459: menu.close();
1.35 www 1460: window.status='Done.';
1.244.2.3 raeburn 1461: // ]]>
1.1 www 1462: </script>
1463: ENDCLOSE
1464: }
1465:
1466: # ====================================================================== Footer
1467:
1468: sub footer {
1469:
1.33 www 1470: }
1471:
1.122 albertel 1472: sub nav_control_js {
1.152 albertel 1473: my $nav=($env{'environment.remotenavmap'} eq 'on');
1.122 albertel 1474: return (<<NAVCONTROL);
1475: var w_loncapanav_flag="$nav";
1476:
1477:
1478: function gonav(url) {
1479: if (w_loncapanav_flag != 1) {
1480: gopost(url,'');
1481: } else {
1482: navwindow=window.open(url,
1483: "loncapanav","height=600,width=400,scrollbars=1");
1484: }
1485: }
1486: NAVCONTROL
1487: }
1488:
1.42 www 1489: sub utilityfunctions {
1.132 raeburn 1490: my $caller = shift;
1.152 albertel 1491: unless (($env{'browser.interface'} eq 'textual') ||
1492: ($env{'environment.remote'} eq 'off') || ($caller eq '/adm/menu')) { return ''; }
1493: my $currenturl=&Apache::lonnet::clutter(&Apache::lonnet::fixversion((split(/\?/,$env{'request.noversionuri'}))[0]));
1.244.2.10 raeburn 1494: if ($currenturl =~ m{^/adm/wrapper/ext/}) {
1495: if ($env{'request.external.querystring'}) {
1496: $currenturl .= ($currenturl=~/\?/)?'&':'?'.$env{'request.external.querystring'};
1497: }
1498: }
1.183 www 1499: $currenturl=&Apache::lonenc::check_encrypt(&unescape($currenturl));
1.125 albertel 1500:
1.152 albertel 1501: my $currentsymb=&Apache::lonenc::check_encrypt($env{'request.symb'});
1.122 albertel 1502: my $nav_control=&nav_control_js();
1.175 albertel 1503:
1504: my $start_page_annotate =
1505: &Apache::loncommon::start_page('Annotator',undef,
1506: {'only_body' => 1,
1507: 'js_ready' => 1,
1508: 'bgcolor' => '#BBBBBB',
1509: 'add_entries' => {
1510: 'onload' => 'javascript:document.goannotate.submit();'}});
1511:
1.205 albertel 1512: my $end_page_annotate =
1513: &Apache::loncommon::end_page({'js_ready' => 1});
1514:
1.175 albertel 1515: my $start_page_bookmark =
1516: &Apache::loncommon::start_page('Bookmarks',undef,
1517: {'only_body' => 1,
1518: 'js_ready' => 1,
1519: 'bgcolor' => '#BBBBBB',});
1520:
1.205 albertel 1521: my $end_page_bookmark =
1.175 albertel 1522: &Apache::loncommon::end_page({'js_ready' => 1});
1523:
1.42 www 1524: return (<<ENDUTILITY)
1525:
1526: var currentURL="$currenturl";
1527: var reloadURL="$currenturl";
1528: var currentSymb="$currentsymb";
1529:
1.114 albertel 1530: $nav_control
1531:
1.42 www 1532: function go(url) {
1533: if (url!='' && url!= null) {
1534: currentURL = null;
1535: currentSymb= null;
1536: window.location.href=url;
1537: }
1538: }
1539:
1540: function gopost(url,postdata) {
1541: if (url!='') {
1542: this.document.server.action=url;
1543: this.document.server.postdata.value=postdata;
1544: this.document.server.command.value='';
1545: this.document.server.url.value='';
1546: this.document.server.symb.value='';
1547: this.document.server.submit();
1548: }
1549: }
1550:
1551: function gocmd(url,cmd) {
1552: if (url!='') {
1553: this.document.server.action=url;
1554: this.document.server.postdata.value='';
1555: this.document.server.command.value=cmd;
1556: this.document.server.url.value=currentURL;
1557: this.document.server.symb.value=currentSymb;
1558: this.document.server.submit();
1559: }
1.57 www 1560: }
1561:
1.121 raeburn 1562: function gocstr(url,filename) {
1563: if (url == '/adm/cfile?action=delete') {
1564: this.document.cstrdelete.filename.value = filename
1565: this.document.cstrdelete.submit();
1566: return;
1567: }
1.137 raeburn 1568: if (url == '/adm/printout') {
1569: this.document.cstrprint.postdata.value = filename
1570: this.document.cstrprint.curseed.value = 0;
1571: this.document.cstrprint.problemtype.value = 0;
1.138 raeburn 1572: if (this.document.lonhomework) {
1573: if ((this.document.lonhomework.rndseed) && (this.document.lonhomework.rndseed.value != null) && (this.document.lonhomework.rndseed.value != '')) {
1574: this.document.cstrprint.curseed.value = this.document.lonhomework.rndseed.value
1575: }
1576: if (this.document.lonhomework.problemtype) {
1.164 albertel 1577: if (this.document.lonhomework.problemtype.value) {
1578: this.document.cstrprint.problemtype.value =
1579: this.document.lonhomework.problemtype.value;
1580: } else if (this.document.lonhomework.problemtype.options) {
1581: for (var i=0; i<this.document.lonhomework.problemtype.options.length; i++) {
1582: if (this.document.lonhomework.problemtype.options[i].selected) {
1583: if (this.document.lonhomework.problemtype.options[i].value != null && this.document.lonhomework.problemtype.options[i].value != '') {
1584: this.document.cstrprint.problemtype.value = this.document.lonhomework.problemtype.options[i].value
1585: }
1586: }
1587: }
1588: }
1589: }
1590: }
1.137 raeburn 1591: this.document.cstrprint.submit();
1592: return;
1593: }
1.121 raeburn 1594: if (url !='') {
1595: this.document.constspace.filename.value = filename;
1596: this.document.constspace.action = url;
1597: this.document.constspace.submit();
1598: }
1599: }
1600:
1.131 raeburn 1601: function golist(url) {
1602: if (url!='' && url!= null) {
1603: currentURL = null;
1604: currentSymb= null;
1605: top.location.href=url;
1606: }
1607: }
1608:
1609:
1.121 raeburn 1610:
1.57 www 1611: function catalog_info() {
1.102 albertel 1612: 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 1613: }
1614:
1615: function chat_win() {
1.102 albertel 1616: lonchat=window.open('/res/adm/pages/chatroom.html',"LONchat",'height=320,width=280,resizable=yes,location=no,menubar=no,toolbar=no');
1.42 www 1617: }
1.169 raeburn 1618:
1619: function group_chat(group) {
1620: var url = '/adm/groupchat?group='+group;
1621: var winName = 'LONchat_'+group;
1622: grpchat=window.open(url,winName,'height=320,width=280,resizable=yes,location=no,menubar=no,toolbar=no');
1623: }
1.175 albertel 1624:
1625: function edit_bookmarks() {
1626: go('');
1627: w_BookmarkPal_flag=1;
1628: bookmarkpal=window.open("/adm/bookmarks",
1629: "BookmarkPal", "width=400,height=505,scrollbars=0");
1630: }
1631:
1632: function annotate() {
1633: w_Annotator_flag=1;
1634: annotator=window.open('','Annotator','width=365,height=265,scrollbars=0');
1635: annotator.document.write(
1636: '$start_page_annotate'
1637: +"<form name='goannotate' target='Annotator' method='post' "
1638: +"action='/adm/annotations'>"
1.217 albertel 1639: +"<input type='hidden' name='symbnew' value='"+currentSymb+"' />"
1.181 albertel 1640: +"<\\/form>"
1.205 albertel 1641: +'$end_page_annotate');
1.175 albertel 1642: annotator.document.close();
1643: }
1644:
1645: function set_bookmark() {
1646: go('');
1647: clienttitle=document.title;
1648: clienthref=location.pathname;
1649: w_bmquery_flag=1;
1650: bmquery=window.open('','bmquery','width=365,height=165,scrollbars=0');
1651: bmquery.document.write(
1652: '$start_page_bookmark'
1.244.2.1 raeburn 1653: +'<center><form method="post"'
1654: +' name="newlink" action="/adm/bookmarks" target="bmquery" '
1655: +'> <table width="340" height="150" '
1656: +'bgcolor="ffffff" align="center"><tr><td>Link Name:<br /><input '
1657: +'type="text" name="title" size="45" value="'+clienttitle+'" />'
1658: +'<br />Address:<br /><input type="text" name="address" size="45" '
1659: +'value="'+clienthref+'" /><br /><center><input type="submit" '
1660: +'value="Save" /> <input type="button" value="Close" '
1661: +'onclick="javascript:window.close();" /></center></td>'
1662: +'</tr></table></form></center>'
1.205 albertel 1663: +'$end_page_bookmark' );
1.175 albertel 1664: bmquery.document.close();
1665: }
1666:
1.42 www 1667: ENDUTILITY
1668: }
1669:
1670: sub serverform {
1671: return(<<ENDSERVERFORM);
1.181 albertel 1672: <form name="server" action="/adm/logout" method="post" target="_top">
1.42 www 1673: <input type="hidden" name="postdata" value="none" />
1674: <input type="hidden" name="command" value="none" />
1675: <input type="hidden" name="url" value="none" />
1676: <input type="hidden" name="symb" value="none" />
1677: </form>
1678: ENDSERVERFORM
1679: }
1.113 albertel 1680:
1.121 raeburn 1681: sub constspaceform {
1682: return(<<ENDCONSTSPACEFORM);
1.181 albertel 1683: <form name="constspace" action="/adm/logout" method="post" target="_top">
1.121 raeburn 1684: <input type="hidden" name="filename" value="" />
1685: </form>
1.181 albertel 1686: <form name="cstrdelete" action="/adm/cfile" method="post" target="_top">
1.121 raeburn 1687: <input type="hidden" name="action" value="delete" />
1688: <input type="hidden" name="filename" value="" />
1689: </form>
1.181 albertel 1690: <form name="cstrprint" action="/adm/printout" target="_parent" method="post">
1.137 raeburn 1691: <input type="hidden" name="postdata" value="" />
1692: <input type="hidden" name="curseed" value="" />
1693: <input type="hidden" name="problemtype" value="" />
1694: </form>
1695:
1.121 raeburn 1696: ENDCONSTSPACEFORM
1697: }
1698:
1699:
1.113 albertel 1700: sub get_nav_status {
1701: my $navstatus="swmenu.w_loncapanav_flag=";
1.152 albertel 1702: if ($env{'environment.remotenavmap'} eq 'on') {
1.113 albertel 1703: $navstatus.="1";
1704: } else {
1705: $navstatus.="-1";
1706: }
1707: return $navstatus;
1708: }
1709:
1.220 raeburn 1710: sub hidden_button_check {
1711: my $hidden;
1712: if ($env{'request.course.id'} eq '') {
1713: return;
1714: }
1715: if ($env{'request.role.adv'}) {
1716: return;
1717: }
1.232 raeburn 1718: my $buttonshide = &Apache::lonnet::EXT('resource.0.buttonshide');
1719: return $buttonshide;
1.220 raeburn 1720: }
1.184 raeburn 1721:
1.235 raeburn 1722: sub roles_selector {
1723: my ($cdom,$cnum) = @_;
1.244.2.9 raeburn 1724: my $crstype = &Apache::loncommon::course_type();
1.235 raeburn 1725: my $now = time;
1.244.2.1 raeburn 1726: my (%courseroles,%seccount);
1.235 raeburn 1727: my $is_cc;
1728: my $role_selector;
1.244.2.14 raeburn 1729: my $ccrole;
1.244.2.9 raeburn 1730: if ($crstype eq 'Community') {
1731: $ccrole = 'co';
1732: } else {
1733: $ccrole = 'cc';
1734: }
1735: if ($env{'user.role.'.$ccrole.'./'.$cdom.'/'.$cnum}) {
1736: my ($start,$end) = split(/\./,$env{'user.role.'.$ccrole.'./'.$cdom.'/'.$cnum});
1.235 raeburn 1737: if ((($start) && ($start<0)) ||
1738: (($end) && ($end<$now)) ||
1739: (($start) && ($now<$start))) {
1740: $is_cc = 0;
1741: } else {
1742: $is_cc = 1;
1743: }
1744: }
1745: if ($is_cc) {
1.244.2.1 raeburn 1746: &get_all_courseroles($cdom,$cnum,\%courseroles,\%seccount);
1.235 raeburn 1747: } else {
1.244.2.1 raeburn 1748: my %gotnosection;
1.235 raeburn 1749: foreach my $item (keys(%env)) {
1.239 raeburn 1750: if ($item =~ m-^user\.role\.([^.]+)\./\Q$cdom\E/\Q$cnum\E/?(\w*)$-) {
1.235 raeburn 1751: my $role = $1;
1752: my $sec = $2;
1753: next if ($role eq 'gr');
1754: my ($start,$end) = split(/\./,$env{$item});
1755: next if (($start && $start > $now) || ($end && $end < $now));
1756: if ($sec eq '') {
1.239 raeburn 1757: if (!$gotnosection{$role}) {
1758: $seccount{$role} ++;
1759: $gotnosection{$role} = 1;
1760: }
1.235 raeburn 1761: }
1762: if (ref($courseroles{$role}) eq 'ARRAY') {
1.239 raeburn 1763: if ($sec ne '') {
1764: if (!grep(/^Q$sec\E$/,@{$courseroles{$role}})) {
1765: push(@{$courseroles{$role}},$sec);
1766: $seccount{$role} ++;
1767: }
1768: }
1769: } else {
1770: @{$courseroles{$role}} = ();
1771: if ($sec ne '') {
1772: $seccount{$role} ++;
1.235 raeburn 1773: push(@{$courseroles{$role}},$sec);
1774: }
1775: }
1776: }
1777: }
1778: }
1.244.2.9 raeburn 1779: my $switchtext;
1780: if ($crstype eq 'Community') {
1781: $switchtext = &mt('Switch community role to...')
1782: } else {
1783: $switchtext = &mt('Switch course role to...')
1784: }
1785:
1786: my @roles_order = ($ccrole,'in','ta','ep','ad','st');
1.235 raeburn 1787: if (keys(%courseroles) > 1) {
1.239 raeburn 1788: $role_selector = &jump_to_role($cdom,$cnum,\%seccount,\%courseroles);
1.235 raeburn 1789: $role_selector .= '<form name="rolechooser" method="post" action="/adm/roles">
1790: <select name="switchrole" onchange="javascript:adhocRole('."'switchrole'".')">';
1.244.2.9 raeburn 1791: $role_selector .= '<option value="">'.$switchtext.'</option>';
1.235 raeburn 1792: foreach my $role (@roles_order) {
1793: if (defined($courseroles{$role})) {
1.244.2.9 raeburn 1794: $role_selector .= "\n".'<option value="'.$role.'">'.&Apache::lonnet::plaintext($role,$crstype).'</option>';
1.235 raeburn 1795: }
1796: }
1797: foreach my $role (sort(keys(%courseroles))) {
1798: if ($role =~ /^cr/) {
1799: $role_selector .= "\n".'<option value="'.$role.'">'.&Apache::lonnet::plaintext($role).'</option>';
1800: }
1801: }
1802: $role_selector .= '</select>'."\n".
1803: '<input type="hidden" name="destinationurl" value="'.
1.244.2.8 raeburn 1804: &HTML::Entities::encode($ENV{'REQUEST_URI'},'"<>&').'" />'."\n".
1.235 raeburn 1805: '<input type="hidden" name="gotorole" value="1" />'."\n".
1806: '<input type="hidden" name="selectrole" value="" />'."\n".
1807: '<input type="hidden" name="switch" value="1" />'."\n".
1808: '</form>';
1809: }
1810: return $role_selector;
1811: }
1812:
1.244.2.1 raeburn 1813: sub get_all_courseroles {
1814: my ($cdom,$cnum,$courseroles,$seccount) = @_;
1815: unless ((ref($courseroles) eq 'HASH') && (ref($seccount) eq 'HASH')) {
1816: return;
1817: }
1818: my ($result,$cached) =
1819: &Apache::lonnet::is_cached_new('getcourseroles',$cdom.'_'.$cnum);
1820: if (defined($cached)) {
1821: if (ref($result) eq 'HASH') {
1822: if ((ref($result->{'roles'}) eq 'HASH') &&
1823: (ref($result->{'seccount'}) eq 'HASH')) {
1824: %{$courseroles} = %{$result->{'roles'}};
1825: %{$seccount} = %{$result->{'seccount'}};
1826: return;
1827: }
1828: }
1829: }
1830: my %gotnosection;
1831: my %adv_roles =
1832: &Apache::lonnet::get_course_adv_roles($env{'request.course.id'},1);
1833: foreach my $role (keys(%adv_roles)) {
1834: my ($urole,$usec) = split(/:/,$role);
1835: if (!$gotnosection{$urole}) {
1836: $seccount->{$urole} ++;
1837: $gotnosection{$urole} = 1;
1838: }
1839: if (ref($courseroles->{$urole}) eq 'ARRAY') {
1840: if ($usec ne '') {
1841: if (!grep(/^\Q$usec\E$/,@{$courseroles->{$urole}})) {
1842: push(@{$courseroles->{$urole}},$usec);
1843: $seccount->{$urole} ++;
1844: }
1845: }
1846: } else {
1847: @{$courseroles->{$urole}} = ();
1848: if ($usec ne '') {
1849: $seccount->{$urole} ++;
1850: push(@{$courseroles->{$urole}},$usec);
1851: }
1852: }
1853: }
1854: my %sections_count = &Apache::loncommon::get_sections($cdom,$cnum,['st']);
1855: @{$courseroles->{'st'}} = ();
1856: if (keys(%sections_count) > 0) {
1857: push(@{$courseroles->{'st'}},keys(%sections_count));
1858: $seccount->{'st'} = scalar(keys(%sections_count));
1859: }
1860: my $rolehash = {
1861: 'roles' => $courseroles,
1862: 'seccount' => $seccount,
1863: };
1864: &Apache::lonnet::do_cache_new('getcourseroles',$cdom.'_'.$cnum,$rolehash);
1865: return;
1866: }
1867:
1.235 raeburn 1868: sub jump_to_role {
1.239 raeburn 1869: my ($cdom,$cnum,$seccount,$courseroles) = @_;
1870: my %lt = &Apache::lonlocal::texthash(
1871: this => 'This role has section(s) associated with it.',
1872: ente => 'Enter a specific section.',
1873: orlb => 'Enter a specific section, or leave blank for no section.',
1874: avai => 'Available sections are:',
1875: youe => 'You entered an invalid section choice:',
1876: plst => 'Please try again',
1877: );
1878: my $js;
1879: if (ref($courseroles) eq 'HASH') {
1880: $js = ' var secpick = new Array("'.$lt{'ente'}.'","'.$lt{'orlb'}.'");'."\n".
1881: ' var numsec = new Array();'."\n".
1882: ' var rolesections = new Array();'."\n".
1883: ' var rolenames = new Array();'."\n".
1884: ' var roleseclist = new Array();'."\n";
1885: my @items = keys(%{$courseroles});
1886: for (my $i=0; $i<@items; $i++) {
1887: $js .= ' rolenames['.$i.'] = "'.$items[$i].'";'."\n";
1888: my ($secs,$secstr);
1889: if (ref($courseroles->{$items[$i]}) eq 'ARRAY') {
1890: my @sections = sort { $a <=> $b } @{$courseroles->{$items[$i]}};
1891: $secs = join('","',@sections);
1892: $secstr = join(', ',@sections);
1893: }
1894: $js .= ' rolesections['.$i.'] = new Array("'.$secs.'");'."\n".
1895: ' roleseclist['.$i.'] = "'.$secstr.'";'."\n".
1896: ' numsec['.$i.'] = "'.$seccount->{$items[$i]}.'";'."\n";
1897: }
1898: }
1.244.2.2 raeburn 1899: return <<"END";
1.235 raeburn 1900: <script type="text/javascript">
1.244.2.2 raeburn 1901: //<![CDATA[
1.235 raeburn 1902: function adhocRole(roleitem) {
1.239 raeburn 1903: $js
1.235 raeburn 1904: var newrole = document.rolechooser.elements[roleitem].options[document.rolechooser.elements[roleitem].selectedIndex].value;
1905: if (newrole == '') {
1906: return;
1907: }
1.239 raeburn 1908: var fullrole = newrole+'./$cdom/$cnum';
1909: var selidx = '';
1910: for (var i=0; i<rolenames.length; i++) {
1911: if (rolenames[i] == newrole) {
1912: selidx = i;
1913: }
1914: }
1915: var secok = 1;
1916: var secchoice = '';
1917: if (selidx >= 0) {
1918: if (numsec[selidx] > 1) {
1919: secok = 0;
1920: var numrolesec = rolesections[selidx].length;
1921: var msgidx = numsec[selidx] - numrolesec;
1922: secchoice = prompt("$lt{'this'}\\n"+secpick[msgidx]+"\\n$lt{'avai'} "+roleseclist[selidx],"");
1923: if (secchoice == '') {
1924: if (msgidx > 0) {
1925: secok = 1;
1926: }
1927: } else {
1928: for (var j=0; j<rolesections[selidx].length; j++) {
1929: if (rolesections[selidx][j] == secchoice) {
1930: secok = 1;
1931: }
1932: }
1933: }
1934: } else {
1935: if (rolesections[selidx].length == 1) {
1936: secchoice = rolesections[selidx][0];
1937: }
1938: }
1939: }
1940: if (secok == 1) {
1941: if (secchoice != '') {
1942: fullrole += '/'+secchoice;
1943: }
1944: } else {
1945: document.rolechooser.elements[roleitem].selectedIndex = 0;
1946: if (secchoice != null) {
1947: alert("$lt{'youe'} \\""+secchoice+"\\".\\n $lt{'plst'}");
1948: }
1949: return;
1950: }
1951: if (fullrole == "$env{'request.role'}") {
1.235 raeburn 1952: return;
1953: }
1954: itemid = retrieveIndex('gotorole');
1955: if (itemid != -1) {
1.239 raeburn 1956: document.rolechooser.elements[itemid].name = fullrole;
1.235 raeburn 1957: }
1.239 raeburn 1958: document.rolechooser.elements[roleitem].options[document.rolechooser.elements[roleitem].selectedIndex].value = fullrole;
1.235 raeburn 1959: document.rolechooser.selectrole.value = '1';
1960: document.rolechooser.submit();
1961: return;
1962: }
1963:
1964: function retrieveIndex(item) {
1965: for (var i=0;i<document.rolechooser.elements.length;i++) {
1966: if (document.rolechooser.elements[i].name == item) {
1967: return i;
1968: }
1969: }
1970: return -1;
1971: }
1.244.2.2 raeburn 1972: // ]]>
1.235 raeburn 1973: </script>
1974: END
1975: }
1976:
1977:
1.2 www 1978: # ================================================================ Main Program
1979:
1.16 harris41 1980: BEGIN {
1.166 albertel 1981: if (! defined($readdesk)) {
1982: {
1983: my $tabfile = $Apache::lonnet::perlvar{'lonTabDir'}.'/mydesk.tab';
1984: if ( CORE::open( my $config,"<$tabfile") ) {
1985: while (my $configline=<$config>) {
1986: $configline=(split(/\#/,$configline))[0];
1987: $configline=~s/^\s+//;
1988: chomp($configline);
1.209 www 1989: if ($configline=~/^cat\:/) {
1990: my @entries=split(/\:/,$configline);
1991: $category_positions{$entries[2]}=$entries[1];
1992: $category_names{$entries[2]}=$entries[3];
1993: } elsif ($configline) {
1.166 albertel 1994: push(@desklines,$configline);
1995: }
1996: }
1997: CORE::close($config);
1998: }
1999: }
2000: $readdesk='done';
1.2 www 2001: }
2002: }
1.30 www 2003:
1.1 www 2004: 1;
2005: __END__
2006:
2007:
2008:
2009:
2010:
2011:
2012:
FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>