Annotation of loncom/interface/lonmenu.pm, revision 1.369.2.53
1.1 www 1: # The LearningOnline Network with CAPA
2: # Routines to control the menu
3: #
1.369.2.53! raeburn 4: # $Id: lonmenu.pm,v 1.369.2.52 2014/06/22 19:48:05 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: #
29:
1.244 jms 30: =head1 NAME
31:
32: Apache::lonmenu
33:
34: =head1 SYNOPSIS
35:
1.369.2.3 raeburn 36: Loads contents of /home/httpd/lonTabs/mydesk.tab,
37: used to generate inline menu, and Main Menu page.
1.244 jms 38:
39: This is part of the LearningOnline Network with CAPA project
40: described at http://www.lon-capa.org.
41:
1.314 droeschl 42: =head1 GLOBAL VARIABLES
43:
44: =over
45:
46: =item @desklines
47:
48: Each element of this array contains a line of mydesk.tab that doesn't start with
49: cat, prim or scnd.
50: It gets filled in the BEGIN block of this module.
51:
52: =item %category_names
53:
54: The keys of this hash are the abbreviations used in mydesk.tab in those lines that
55: start with cat, the values are strings representing titles.
56: It gets filled in the BEGIN block of this module.
57:
58: =item %category_members
59:
60: TODO
61:
62: =item %category_positions
63:
64: The keys of this hash are the abbreviations used in mydesk.tab in those lines that
65: start with cat, its values are position vectors (column, row).
66: It gets filled in the BEGIN block of this module.
67:
68: =item $readdesk
69:
70: Indicates that mydesk.tab has been read.
71: It is set to 'done' in the BEGIN block of this module.
72:
73: =item @primary_menu
74:
75: The elements of this array reference arrays that are made up of the components
1.369.2.3 raeburn 76: of those lines of mydesk.tab that start with prim:.
1.314 droeschl 77: It is used by primary_menu() to generate the corresponding menu.
78: It gets filled in the BEGIN block of this module.
79:
1.369.2.3 raeburn 80: =item %primary_sub_menu
81:
82: The keys of this hash reference are the names of items in the primary_menu array
83: which have sub-menus. For each key, the corresponding value is a reference to
84: an array containing components extracted from lines in mydesk.tab which begin
85: with primsub:.
86: This hash, which is used by primary_menu to generate sub-menus, is populated in
87: the BEGIN block.
88:
1.314 droeschl 89: =item @secondary_menu
90:
91: The elements of this array reference arrays that are made up of the components
92: of those lines of mydesk.tab that start with scnd.
93: It is used by secondary_menu() to generate the corresponding menu.
94: It gets filled in the BEGIN block of this module.
95:
96: =back
97:
1.244 jms 98: =head1 SUBROUTINES
99:
100: =over
101:
1.314 droeschl 102: =item prep_menuitems(\@menuitem)
103:
104: This routine wraps a menuitem in proper HTML. It is used by primary_menu() and
105: secondary_menu().
106:
107: =item primary_menu()
108:
1.369.2.42 raeburn 109: This routine evaluates @primary_menu and returns a two item array,
110: with the array elements containing XHTML for the left and right sides of
111: the menu that contains the following links: About, Message, Roles, Help, Logout
1.314 droeschl 112: @primary_menu is filled within the BEGIN block of this module with
1.369.2.42 raeburn 113: entries from mydesk.tab
1.314 droeschl 114:
115: =item secondary_menu()
116:
117: Same as primary_menu() but operates on @secondary_menu.
118:
1.369.2.6 raeburn 119: =item create_submenu()
120:
121: Creates XHTML for unordered list of sub-menu items which belong to a
122: particular top-level menu item. Uses hover pseudo class in css to display
123: dropdown list when mouse hovers over top-level item. Support for IE6
124: (no hover psuedo class) via LC_hoverable class for <li> tag for top-
125: level item, which employs jQuery to handle behavior on mouseover.
126:
127: Inputs: 4 - (a) link and (b) target for anchor href in top level item,
128: (c) title for text wrapped by anchor tag in top level item.
129: (d) reference to array of arrays of sub-menu items.
130:
1.244 jms 131: =item innerregister()
132:
1.320 droeschl 133: This gets called in order to register a URL in the body of the document
1.244 jms 134:
1.369.2.17 raeburn 135: =item loadevents()
136:
137: =item unloadevents()
138:
139: =item startupremote()
140:
141: =item setflags()
142:
143: =item maincall()
144:
145: =item load_remote_msg()
146:
147: =item get_menu_name()
148:
149: =item reopenmenu()
150:
151: =item open()
152:
153: Open the menu
154:
1.244 jms 155: =item clear()
156:
157: =item switch()
158:
159: Switch a button or create a link
160: Switch acts on the javascript that is executed when a button is clicked.
161: The javascript is usually similar to "go('/adm/roles')" or "cstrgo(..)".
162:
163: =item secondlevel()
164:
165: =item openmenu()
166:
167: =item inlinemenu()
168:
169: =item rawconfig()
170:
171: =item utilityfunctions()
172:
1.369.2.6 raeburn 173: Output from this routine is a number of javascript functions called by
174: items in the inline menu, and in some cases items in the Main Menu page.
175:
1.244 jms 176: =item serverform()
177:
178: =item constspaceform()
179:
180: =item get_nav_status()
181:
182: =item hidden_button_check()
183:
184: =item roles_selector()
185:
186: =item jump_to_role()
187:
188: =back
189:
190: =cut
191:
1.1 www 192: package Apache::lonmenu;
193:
194: use strict;
1.152 albertel 195: use Apache::lonnet;
1.47 matthew 196: use Apache::lonhtmlcommon();
1.115 albertel 197: use Apache::loncommon();
1.127 albertel 198: use Apache::lonenc();
1.88 www 199: use Apache::lonlocal;
1.361 raeburn 200: use Apache::lonmsg();
1.207 foxr 201: use LONCAPA qw(:DEFAULT :match);
1.282 amueller 202: use HTML::Entities();
1.369.2.8 raeburn 203: use Apache::lonwishlist();
1.88 www 204:
1.283 droeschl 205: use vars qw(@desklines %category_names %category_members %category_positions
1.369.2.5 raeburn 206: $readdesk @primary_menu %primary_submenu @secondary_menu %secondary_submenu);
1.88 www 207:
1.56 www 208: my @inlineremote;
1.38 www 209:
1.283 droeschl 210: sub prep_menuitem {
1.291 raeburn 211: my ($menuitem) = @_;
212: return '' unless(ref($menuitem) eq 'ARRAY');
1.283 droeschl 213: my $link;
214: if ($$menuitem[1]) { # graphical Link
215: $link = "<img class=\"LC_noBorder\""
1.291 raeburn 216: . " src=\"" . &Apache::loncommon::lonhttpdurl($$menuitem[1]) . "\""
217: . " alt=\"" . &mt($$menuitem[2]) . "\" />";
1.283 droeschl 218: } else { # textual Link
1.291 raeburn 219: $link = &mt($$menuitem[3]);
220: }
1.316 droeschl 221: return '<li><a'
222: # highlighting for new messages
223: . ( $$menuitem[4] eq 'newmsg' ? ' class="LC_new_message"' : '')
1.325 droeschl 224: . qq| href="$$menuitem[0]" target="_top">$link</a></li>|;
1.283 droeschl 225: }
226:
1.369.2.42 raeburn 227: # primary_menu() evaluates @primary_menu and returns a two item array,
228: # with the array elements containing XHTML for the left and right sides of
229: # the menu that contains the following links:
230: # Personal, About, Message, Roles, Help, Logout
1.283 droeschl 231: # @primary_menu is filled within the BEGIN block of this module with
232: # entries from mydesk.tab
233: sub primary_menu {
1.369.2.42 raeburn 234: my %menu;
1.283 droeschl 235: # each element of @primary contains following array:
1.369.2.42 raeburn 236: # (link url, icon path, alt text, link text, condition, position)
1.319 raeburn 237: my $public;
238: if ((($env{'user.name'} eq 'public') && ($env{'user.domain'} eq 'public'))
239: || (($env{'user.name'} eq '') && ($env{'user.domain'} eq ''))) {
240: $public = 1;
241: }
1.283 droeschl 242: foreach my $menuitem (@primary_menu) {
243: # evaluate conditions
1.296 droeschl 244: next if ref($menuitem) ne 'ARRAY'; #
1.283 droeschl 245: next if $$menuitem[4] eq 'nonewmsg' # show links depending on
1.291 raeburn 246: && &Apache::lonmsg::mynewmail(); # whether a new msg
1.283 droeschl 247: next if $$menuitem[4] eq 'newmsg' # arrived or not
1.291 raeburn 248: && !&Apache::lonmsg::mynewmail(); #
1.319 raeburn 249: next if $$menuitem[4] !~ /public/ ##we've a public user,
250: && $public; ##who should not see all
251: ##links
1.283 droeschl 252: next if $$menuitem[4] eq 'onlypublic'# hide links which are
1.319 raeburn 253: && !$public; # only visible to public
254: # users
1.283 droeschl 255: next if $$menuitem[4] eq 'roles' ##show links depending on
1.291 raeburn 256: && &Apache::loncommon::show_course(); ##term 'Courses' or
1.283 droeschl 257: next if $$menuitem[4] eq 'courses' ##'Roles' wanted
1.291 raeburn 258: && !&Apache::loncommon::show_course(); ##
259:
1.369.2.3 raeburn 260: my $title = $menuitem->[3];
1.369.2.42 raeburn 261: my $position = $menuitem->[5];
262: if ($position eq '') {
263: $position = 'right';
264: }
1.369.2.3 raeburn 265: if (defined($primary_submenu{$title})) {
1.369.2.6 raeburn 266: my ($link,$target);
1.369.2.3 raeburn 267: if ($menuitem->[0] ne '') {
268: $link = $menuitem->[0];
269: $target = '_top';
270: } else {
271: $link = '#';
272: }
1.369.2.6 raeburn 273: my @primsub;
1.369.2.3 raeburn 274: if (ref($primary_submenu{$title}) eq 'ARRAY') {
1.369.2.6 raeburn 275: foreach my $item (@{$primary_submenu{$title}}) {
1.369.2.16 raeburn 276: next if (($item->[2] eq 'wishlist') && (!$env{'user.adv'}));
1.369.2.6 raeburn 277: next if ((($item->[2] eq 'portfolio') ||
278: ($item->[2] eq 'blog')) &&
279: (!&Apache::lonnet::usertools_access('','',$item->[2],
280: undef,'tools')));
281: push(@primsub,$item);
282: }
283: if (@primsub > 0) {
1.369.2.46 raeburn 284: $menu{$position} .= &create_submenu($link,$target,$title,\@primsub,1);
1.369.2.6 raeburn 285: } elsif ($link) {
1.369.2.42 raeburn 286: $menu{$position} .= '<li><a href="'.$link.'" target="'.$target.'">'.&mt($title).'</a></li>';
1.369.2.3 raeburn 287: }
288: }
289: } elsif ($$menuitem[3] eq 'Help') { # special treatment for helplink
1.340 raeburn 290: if ($public) {
291: my $origmail = $Apache::lonnet::perlvar{'lonSupportEMail'};
292: my $defdom = &Apache::lonnet::default_login_domain();
293: my $to = &Apache::loncommon::build_recipient_list(undef,
294: 'helpdeskmail',
295: $defdom,$origmail);
296: if ($to ne '') {
1.369.2.42 raeburn 297: $menu{$position} .= &prep_menuitem($menuitem);
1.340 raeburn 298: }
299: } else {
1.369.2.42 raeburn 300: $menu{$position} .= '<li>'.&Apache::loncommon::top_nav_help('Help').'</li>';
1.340 raeburn 301: }
1.283 droeschl 302: } else {
1.369.2.42 raeburn 303: $menu{$position} .= prep_menuitem($menuitem);
1.283 droeschl 304: }
1.291 raeburn 305: }
1.369.2.48 raeburn 306: my @output = ('','');
307: if ($menu{'left'} ne '') {
308: $output[0] = "<ol class=\"LC_primary_menu LC_floatleft\">$menu{'left'}</ol>";
309: }
310: if ($menu{'right'} ne '') {
311: $output[1] = "<ol class=\"LC_primary_menu LC_floatright LC_right\">$menu{'right'}</ol>";
312: }
313: return @output;
1.283 droeschl 314: }
315:
1.329 droeschl 316: #returns hashref {user=>'',dom=>''} containing:
317: # own name, domain if user is au
318: # name, domain of parent author if user is ca or aa
319: #empty return if user is not an author or not on homeserver
320: #
321: #TODO this should probably be moved somewhere more central
322: #since it can be used by different parts of the system
323: sub getauthor{
324: return unless $env{'request.role'}=~/^(ca|aa|au)/; #nothing to do if user isn't some kind of author
325:
326: #co- or assistent author?
327: my ($dom, $user) = ($env{'request.role'} =~ /^(?:ca|aa)\.\/($match_domain)\/($match_username)$/)
328: ? ($1, $2) #domain, username of the parent author
329: : @env{ ('request.role.domain', 'user.name') }; #own domain, username
330:
331: # current server == home server?
332: my $home = &Apache::lonnet::homeserver($user,$dom);
333: foreach (&Apache::lonnet::current_machine_ids()){
334: return {user => $user, dom => $dom} if $_ eq $home;
335: }
336:
337: # if wrong server
338: return;
339: }
1.283 droeschl 340:
341: sub secondary_menu {
1.369.2.47 raeburn 342: my ($httphost) = @_;
1.283 droeschl 343: my $menu;
344:
1.286 raeburn 345: my $crstype = &Apache::loncommon::course_type();
1.327 droeschl 346: my $crs_sec = $env{'request.course.id'} . ($env{'request.course.sec'}
347: ? "/$env{'request.course.sec'}"
348: : '');
349: my $canedit = &Apache::lonnet::allowed('mdc', $env{'request.course.id'});
1.369.2.5 raeburn 350: my $canviewroster = $env{'course.'.$env{'request.course.id'}.'.student_classlist_view'};
1.369.2.44 raeburn 351: if ($canviewroster eq 'disabled') {
352: undef($canviewroster);
353: }
1.369.2.5 raeburn 354: my $canviewgrps = &Apache::lonnet::allowed('vcg', $crs_sec);
355: my $canmodifyuser = &Apache::lonnet::allowed('cst', $crs_sec);
356: my $canviewwnew = &Apache::lonnet::allowed('whn', $crs_sec);
1.341 www 357: my $canmodpara = &Apache::lonnet::allowed('opa', $crs_sec);
1.343 www 358: my $canvgr = &Apache::lonnet::allowed('vgr', $crs_sec);
1.369.2.5 raeburn 359: my $canmgr = &Apache::lonnet::allowed('mgr', $crs_sec);
1.343 www 360: my $author = &getauthor();
1.327 droeschl 361:
1.369.2.45 raeburn 362: my ($cdom,$cnum,$showsyllabus,$showfeeds,$showresv);
1.369.2.39 raeburn 363: if ($env{'request.course.id'}) {
364: $cdom = $env{'course.'.$env{'request.course.id'}.'.domain'};
365: $cnum = $env{'course.'.$env{'request.course.id'}.'.num'};
1.369.2.41 raeburn 366: unless ($canedit) {
1.369.2.39 raeburn 367: unless (&Apache::lonnet::is_on_map("public/$cdom/$cnum/syllabus")) {
368: if (($env{'course.'.$env{'request.course.id'}.'.externalsyllabus'}) ||
369: ($env{'course.'.$env{'request.course.id'}.'.uploadedsyllabus'}) ||
370: ($env{'course.'.$env{'request.course.id'}.'.updatedsyllabus'}) ||
371: ($env{'request.course.syllabustime'})) {
372: $showsyllabus = 1;
373: }
374: }
375: if ($env{'request.course.feeds'}) {
376: $showfeeds = 1;
377: }
378: }
1.369.2.45 raeburn 379: unless ($canmgr) {
380: my %slots = &Apache::lonnet::get_course_slots($cnum,$cdom);
381: if (keys(%slots) > 0) {
382: $showresv = 1;
383: }
384: }
1.369.2.39 raeburn 385: }
386:
1.369.2.31 raeburn 387: my ($canmodifycoauthor);
388: if ($env{'request.role'} eq "au./$env{'user.domain'}/") {
389: my $extent = "$env{'user.domain'}/$env{'user.name'}";
390: if ((&Apache::lonnet::allowed('cca',$extent)) ||
391: (&Apache::lonnet::allowed('caa',$extent))) {
392: $canmodifycoauthor = 1;
393: }
394: }
395:
1.286 raeburn 396: my %groups = &Apache::lonnet::get_active_groups(
397: $env{'user.domain'}, $env{'user.name'},
398: $env{'course.' . $env{'request.course.id'} . '.domain'},
399: $env{'course.' . $env{'request.course.id'} . '.num'});
1.327 droeschl 400:
1.369.2.30 raeburn 401: my ($roleswitcher_js,$roleswitcher_form);
402:
1.283 droeschl 403: foreach my $menuitem (@secondary_menu) {
404: # evaluate conditions
1.296 droeschl 405: next if ref($menuitem) ne 'ARRAY';
1.283 droeschl 406: next if $$menuitem[4] ne 'always'
1.369.2.31 raeburn 407: && ($$menuitem[4] ne 'author' && $$menuitem[4] ne 'cca')
1.283 droeschl 408: && !$env{'request.course.id'};
409: next if $$menuitem[4] =~ /^mdc/
1.286 raeburn 410: && !$canedit;
1.369.2.5 raeburn 411: next if $$menuitem[4] eq 'mdcCourse'
412: && ($crstype eq 'Community');
413: next if $$menuitem[4] eq 'mdcCommunity'
414: && ($crstype eq 'Course');
1.341 www 415: next if $$menuitem[4] eq 'nvgr'
416: && $canvgr;
417: next if $$menuitem[4] eq 'vgr'
418: && !$canvgr;
1.327 droeschl 419: next if $$menuitem[4] eq 'cst'
420: && !$canmodifyuser;
1.343 www 421: next if $$menuitem[4] eq 'ncst'
1.369.2.5 raeburn 422: && ($canmodifyuser || !$canviewroster);
1.343 www 423: next if $$menuitem[4] eq 'mgr'
424: && !$canmgr;
1.369.2.45 raeburn 425: next if $$menuitem[4] eq 'showresv'
426: && !$showresv;
1.327 droeschl 427: next if $$menuitem[4] eq 'whn'
428: && !$canviewwnew;
429: next if $$menuitem[4] eq 'opa'
430: && !$canmodpara;
1.369.2.5 raeburn 431: next if $$menuitem[4] eq 'nvcg'
432: && ($canviewgrps || !%groups);
1.369.2.39 raeburn 433: next if $$menuitem[4] eq 'showsyllabus'
434: && !$showsyllabus;
435: next if $$menuitem[4] eq 'showfeeds'
436: && !$showfeeds;
1.329 droeschl 437: next if $$menuitem[4] eq 'author'
438: && !$author;
1.369.2.31 raeburn 439: next if $$menuitem[4] eq 'cca'
440: && !$canmodifycoauthor;
1.283 droeschl 441:
1.369.2.5 raeburn 442: my $title = $menuitem->[3];
443: if (defined($secondary_submenu{$title})) {
1.369.2.6 raeburn 444: my ($link,$target);
1.369.2.5 raeburn 445: if ($menuitem->[0] ne '') {
446: $link = $menuitem->[0];
447: $target = '_top';
448: } else {
449: $link = '#';
450: }
1.369.2.43 raeburn 451: my @scndsub;
1.369.2.5 raeburn 452: if (ref($secondary_submenu{$title}) eq 'ARRAY') {
453: foreach my $item (@{$secondary_submenu{$title}}) {
454: if (ref($item) eq 'ARRAY') {
455: next if ($item->[2] eq 'vgr' && !$canvgr);
456: next if ($item->[2] eq 'opa' && !$canmodpara);
457: next if ($item->[2] eq 'cst' && !$canmodifyuser);
458: next if ($item->[2] eq 'mgr' && !$canmgr);
459: next if ($item->[2] eq 'vcg' && !$canviewgrps);
1.369.2.41 raeburn 460: next if ($item->[2] eq 'mdc' && !$canedit);
1.369.2.5 raeburn 461: push(@scndsub,$item);
462: }
463: }
1.369.2.6 raeburn 464: if (@scndsub > 0) {
1.369.2.46 raeburn 465: $menu .= &create_submenu($link,$target,$title,\@scndsub,1);
1.369.2.41 raeburn 466: } elsif ($link ne '#') {
1.369.2.7 raeburn 467: $menu .= '<li><a href="'.$link.'" target="'.$target.'">'.&mt($title).'</a></li>';
1.369.2.5 raeburn 468: }
469: }
470: } elsif ($$menuitem[3] eq 'Roles' && $env{'request.course.id'}) {
1.283 droeschl 471: # special treatment for role selector
1.369.2.30 raeburn 472: ($roleswitcher_js,$roleswitcher_form,my $switcher) =
473: &roles_selector(
1.283 droeschl 474: $env{'course.' . $env{'request.course.id'} . '.domain'},
1.369.2.47 raeburn 475: $env{'course.' . $env{'request.course.id'} . '.num'},
476: $httphost
1.369.2.30 raeburn 477: );
478: $menu .= $switcher;
1.296 droeschl 479: } else {
1.369.2.39 raeburn 480: if ($$menuitem[3] eq 'Syllabus' && $env{'request.course.id'}) {
481: my $url = $$menuitem[0];
482: $url =~ s{\[cdom\]/\[cnum\]}{$cdom/$cnum};
483: if (&Apache::lonnet::is_on_map($url)) {
484: unless ($$menuitem[0] =~ /\?register=1/) {
485: $$menuitem[0] .= '?register=1';
486: }
487: } else {
488: $$menuitem[0] =~ s{\?register=1}{};
489: }
490: }
1.296 droeschl 491: $menu .= &prep_menuitem(\@$menuitem);
1.283 droeschl 492: }
493: }
494: if ($menu =~ /\[url\].*\[symb\]/) {
1.291 raeburn 495: my $escurl = &escape( &Apache::lonenc::check_encrypt(
496: $env{'request.noversionuri'}));
1.283 droeschl 497:
1.291 raeburn 498: my $escsymb = &escape( &Apache::lonenc::check_encrypt(
499: $env{'request.symb'}));
1.283 droeschl 500:
501: if ( $env{'request.state'} eq 'construct'
502: and ( $env{'request.noversionuri'} eq ''
503: || !defined($env{'request.noversionuri'})))
504: {
1.359 raeburn 505: my $londocroot = $Apache::lonnet::perlvar{'lonDocRoot'};
506: ($escurl = $env{'request.filename'}) =~ s{^\Q$londocroot\E}{};
1.291 raeburn 507: $escurl = &escape($escurl);
1.283 droeschl 508: }
509: $menu =~ s/\[url\]/$escurl/g;
510: $menu =~ s/\[symb\]/$escsymb/g;
511: }
1.329 droeschl 512: $menu =~ s/\[uname\]/$$author{user}/g;
513: $menu =~ s/\[udom\]/$$author{dom}/g;
1.369.2.41 raeburn 514: if ($env{'request.course.id'}) {
1.369.2.40 raeburn 515: $menu =~ s/\[cnum\]/$cnum/g;
516: $menu =~ s/\[cdom\]/$cdom/g;
517: }
1.369.2.22 raeburn 518: if ($menu) {
519: $menu = "<ul id=\"LC_secondary_menu\">$menu</ul>";
520: }
1.369.2.30 raeburn 521: if ($roleswitcher_form) {
522: $menu .= "\n$roleswitcher_js\n$roleswitcher_form";
523: }
1.369.2.22 raeburn 524: return $menu;
1.283 droeschl 525: }
526:
1.369.2.6 raeburn 527: sub create_submenu {
1.369.2.46 raeburn 528: my ($link,$target,$title,$submenu,$translate) = @_;
1.369.2.6 raeburn 529: return unless (ref($submenu) eq 'ARRAY');
1.369.2.11 raeburn 530: my $disptarget;
531: if ($target ne '') {
532: $disptarget = ' target="'.$target.'"';
533: }
1.369.2.42 raeburn 534: my $name;
535: if ($title eq 'Personal') {
536: if ($env{'user.name'} && $env{'user.domain'}) {
537: $name = &Apache::loncommon::plainname($env{'user.name'},$env{'user.domain'});
538: } else {
539: $name = &mt($title);
540: }
541: } else {
542: $name = &mt($title);
543: }
1.369.2.6 raeburn 544: my $menu = '<li class="LC_hoverable">'.
1.369.2.42 raeburn 545: '<a href="'.$link.'"'.$disptarget.'>'.
546: '<span class="LC_nobreak">'.$name.
1.369.2.6 raeburn 547: '<span class="LC_fontsize_small" style="font-weight:normal;">'.
548: ' ▼</span></span></a>'.
549: '<ul>';
550: my $count = 0;
551: my $numsub = scalar(@{$submenu});
552: foreach my $item (@{$submenu}) {
553: $count ++;
554: if (ref($item) eq 'ARRAY') {
1.369.2.43 raeburn 555: my $href = $item->[0];
556: if ($href =~ /(aboutme|rss\.html)$/) {
557: next unless (($env{'user.name'} ne '') && ($env{'user.domain'} ne ''));
558: $href =~ s/\[domain\]/$env{'user.domain'}/g;
559: $href =~ s/\[user\]/$env{'user.name'}/g;
560: }
1.369.2.6 raeburn 561: my $borderbot;
562: if ($count == $numsub) {
563: $borderbot = 'border-bottom:1px solid black;';
564: }
1.369.2.50 raeburn 565: unless (($href eq '') || ($href =~ /^\#/)) {
566: $target = ' target="_top"';
567: }
1.369.2.6 raeburn 568: $menu .= '<li style="margin:0;padding:0;'.
1.369.2.50 raeburn 569: $borderbot.'"><a href="'.$href.'"'.$target.'>';
1.369.2.46 raeburn 570: if ($translate) {
571: $menu .= &mt($item->[1]);
572: } else {
573: $menu .= $item->[1];
574: }
575: $menu .= '</a></li>';
1.369.2.6 raeburn 576: }
577: }
578: $menu .= '</ul></li>';
579: return $menu;
580: }
581:
1.369.2.17 raeburn 582: sub registerurl {
583: my ($forcereg) = @_;
584: my $result = '';
585: if ($env{'request.noversionuri'} =~ m{^/res/adm/pages/}) { return ''; }
586: my $force_title='';
587: if ($env{'request.state'} eq 'construct') {
588: $force_title=&Apache::lonxml::display_title();
589: }
1.369.2.25 raeburn 590: if (($env{'environment.remote'} ne 'on') ||
1.369.2.17 raeburn 591: ((($env{'request.publicaccess'}) ||
592: (!&Apache::lonnet::is_on_map(
593: &unescape($env{'request.noversionuri'})))) &&
594: (!$forcereg))) {
595: return
596: $result
597: .'<script type="text/javascript">'."\n"
598: .'// <![CDATA['."\n"
599: .'function LONCAPAreg(){;} function LONCAPAstale(){}'."\n"
600: .'// ]]>'."\n"
601: .'</script>'
602: .$force_title;
603: }
604: # Graphical display after login only
605: if ($env{'request.registered'} && !$forcereg) { return ''; }
606: $result.=&innerregister($forcereg);
607: return $result.$force_title;
608: }
609:
1.40 www 610: sub innerregister {
1.369.2.26 raeburn 611: my ($forcereg,$bread_crumbs,$group) = @_;
1.152 albertel 612: my $const_space = ($env{'request.state'} eq 'construct');
1.131 raeburn 613: my $is_const_dir = 0;
1.120 raeburn 614:
1.175 albertel 615: if ($env{'request.noversionuri'} =~ m{^/res/adm/pages/}) { return ''; }
1.40 www 616:
1.174 albertel 617: $env{'request.registered'} = 1;
1.40 www 618:
1.369.2.25 raeburn 619: my $noremote = ($env{'environment.remote'} ne 'on');
1.369.2.17 raeburn 620:
1.177 albertel 621: undef(@inlineremote);
1.56 www 622:
1.369.2.17 raeburn 623: my $reopen=&Apache::lonmenu::reopenmenu();
624:
625: my $newmail='';
626:
627: if (&Apache::lonmsg::newmail() && !$noremote) {
628: # We have new mail and remote is up
629: $newmail= 'swmenu.setstatus("you have","messages");';
630: }
631:
1.369.2.27 raeburn 632: my ($mapurl,$resurl);
1.369.2.26 raeburn 633:
1.369.2.27 raeburn 634: if ($env{'request.course.id'}) {
635: if ($env{'request.symb'}) {
636: ($mapurl, my $rid, $resurl) = &Apache::lonnet::decode_symb(&Apache::lonnet::symbread());
637: my $coursetitle = $env{'course.'.$env{'request.course.id'}.'.description'};
1.267 droeschl 638:
1.369.2.27 raeburn 639: my $maptitle = &Apache::lonnet::gettitle($mapurl);
640: my $restitle = &Apache::lonnet::gettitle(&Apache::lonnet::symbread());
1.267 droeschl 641:
1.318 droeschl 642:
643: #SD
644: #course_type only Course and Community?
645: #
1.369.2.27 raeburn 646: my @crumbs;
647: unless (($forcereg) &&
648: ($env{'request.noversionuri'} eq '/adm/navmaps') &&
649: ($mapurl eq $env{'course.'.$env{'request.course.id'}.'.url'})) {
650: @crumbs = ({text => Apache::loncommon::course_type()
651: . ' Contents',
652: href => "Javascript:gopost('/adm/navmaps','')"});
653: }
654: if ($mapurl ne $env{'course.'.$env{'request.course.id'}.'.url'}) {
655: push(@crumbs, {text => '...',
656: no_mt => 1});
657: }
658:
659: push @crumbs, {text => $maptitle, no_mt => 1} if ($maptitle
660: && $maptitle ne 'default.sequence'
661: && $maptitle ne $coursetitle);
662:
663: push @crumbs, {text => $restitle, no_mt => 1} if $restitle;
664: &Apache::lonhtmlcommon::clear_breadcrumbs();
665: &Apache::lonhtmlcommon::add_breadcrumb(@crumbs);
666: } else {
667: $resurl = $env{'request.noversionuri'};
668: my $courseurl = &Apache::lonnet::courseid_to_courseurl($env{'request.course.id'});
669: my $crstype = &Apache::loncommon::course_type();
670: my $title = &mt('View Resource');
671: if ($resurl =~ m{^\Q/uploaded$courseurl/supplemental/\E(default|\d+)/}) {
672: &Apache::loncommon::get_unprocessed_cgi($ENV{'QUERY_STRING'},['folderpath','title']);
673: &Apache::lonhtmlcommon::clear_breadcrumbs();
674: if ($env{'form.title'}) {
675: $title = $env{'form.title'};
676: }
677: my $trail;
678: if ($env{'form.folderpath'}) {
1.369.2.29 raeburn 679: &prepare_functions($resurl,$forcereg,$group,undef,undef,1);
1.369.2.27 raeburn 680: ($trail) =
681: &Apache::lonhtmlcommon::docs_breadcrumbs(undef,$crstype,undef,$title,1);
682: } else {
683: &Apache::lonhtmlcommon::add_breadcrumb(
684: {text => "Supplemental $crstype Content",
685: href => "javascript:gopost('/adm/supplemental','')"});
686: $title = &mt('View Resource');
687: ($trail) =
688: &Apache::lonhtmlcommon::docs_breadcrumbs(undef,$crstype,undef,$title,1);
689: }
690: return $trail;
1.369.2.39 raeburn 691: } elsif ($resurl =~ m{^\Q/uploaded$courseurl/portfolio/syllabus/}) {
692: &Apache::lonhtmlcommon::clear_breadcrumbs();
693: &prepare_functions('/public'.$courseurl."/syllabus",
694: $forcereg,$group,undef,undef,1);
695: $title = &mt('Syllabus File');
696: my ($trail) =
697: &Apache::lonhtmlcommon::docs_breadcrumbs(undef,$crstype,undef,$title,1);
698: return $trail;
1.369.2.27 raeburn 699: }
700: unless ($env{'request.state'} eq 'construct') {
701: &Apache::lonhtmlcommon::clear_breadcrumbs();
702: &Apache::lonhtmlcommon::add_breadcrumb({text => 'View Resource'});
703: }
704: }
1.369.2.26 raeburn 705: } elsif (! $const_space){
1.328 droeschl 706: #a situation when we're looking at a resource outside of context of a
707: #course or construction space (e.g. with cumulative rights)
708: &Apache::lonhtmlcommon::clear_breadcrumbs();
1.369.2.26 raeburn 709: unless ($env{'request.noversionuri'} =~ m{^/adm/$match_domain/$match_username/aboutme$}) {
710: &Apache::lonhtmlcommon::add_breadcrumb({text => 'View Resource'});
711: }
1.65 www 712: }
1.369.2.17 raeburn 713: my $timesync = ( $noremote ? '' : 'swmenu.syncclock(1000*'.time.');' );
1.41 www 714: # =============================================================================
715: # ============================ This is for URLs that actually can be registered
1.369.2.18 raeburn 716: if ( ($env{'request.noversionuri'}!~m{^/(res/)*adm/})
1.369.2.17 raeburn 717: || ($forcereg)) {
1.369.2.28 raeburn 718:
719: my %swtext;
720: if ($noremote) {
721: %swtext = &get_inline_text();
722: } else {
723: %swtext = &get_rc_text();
724: }
725: my $hwkadd='';
726:
727: my ($cdom,$cnum,%perms,$cfile,$switchserver,$home,$forceedit,
728: $forceview,$editbutton);
729: if (($resurl =~ m{^/adm/($match_domain)/($match_username)/aboutme$}) ||
730: ($env{'request.role'} !~/^(aa|ca|au)/)) {
1.369.2.37 raeburn 731: if (($env{'environment.remote'} eq 'on') && ($env{'request.symb'})) {
732: &Apache::lonhtmlcommon::clear_breadcrumbs();
733: }
1.369.2.28 raeburn 734: $editbutton = &prepare_functions($resurl,$forcereg,$group);
735: }
736: if ($editbutton eq '') {
1.369.2.29 raeburn 737: $editbutton = &clear(6,1);
1.369.2.28 raeburn 738: }
1.369.2.26 raeburn 739:
740: #
741: # This applies in course context
742: #
1.369.2.28 raeburn 743: if ($env{'request.course.id'}) {
744: $cnum = $env{'course.'.$env{'request.course.id'}.'.num'};
745: $cdom = $env{'course.'.$env{'request.course.id'}.'.domain'};
746: $perms{'mdc'} = &Apache::lonnet::allowed('mdc',$env{'request.course.id'});
747: my @privs;
748: if ($env{'request.symb'} ne '') {
749: if ($env{'request.filename'}=~/$LONCAPA::assess_re/) {
750: push(@privs,('mgr','vgr'));
751: }
752: push(@privs,'opa');
753: }
754: foreach my $priv (@privs) {
755: $perms{$priv} = &Apache::lonnet::allowed($priv,$env{'request.course.id'});
756: if (!$perms{$priv} && $env{'request.course.sec'} ne '') {
757: $perms{$priv} =
758: &Apache::lonnet::allowed($priv,"$env{'request.course.id'}/$env{'request.course.sec'}");
759: }
1.258 raeburn 760: }
1.369.2.26 raeburn 761: #
762: # Determine whether or not to show Grades and Submissions buttons
763: #
1.369.2.28 raeburn 764: if ($env{'request.symb'} ne '' &&
765: $env{'request.filename'}=~/$LONCAPA::assess_re/) {
766: if ($perms{'mgr'}) {
767: $hwkadd.= &switch('','',7,2,'pgrd.png','Content Grades',
768: 'grades[_4]',
769: "gocmd('/adm/grades','gradingmenu')",
770: 'Content Grades');
771: } elsif ($perms{'vgr'}) {
772: $hwkadd .= &switch('','',7,2,'subm.png','Content Submissions',
773: 'missions[_1]',
774: "gocmd('/adm/grades','submission')",
775: 'Content Submissions');
776: }
777: }
778: if (($env{'request.symb'} ne '') && ($perms{'opa'})) {
779: $hwkadd .= &switch('','',7,3,'pparm.png','Content Settings',
780: 'parms[_2]',"gocmd('/adm/parmset','set')",
781: 'Content Settings');
782: }
1.369.2.26 raeburn 783: # End grades/submissions check
784:
785: #
786: # This applies to items inside a folder/page modifiable in the course.
787: #
1.369.2.28 raeburn 788: if (($env{'request.symb'}=~/^uploaded/) && ($perms{'mdc'})) {
789: my $text = 'Edit Folder';
790: if (($mapurl =~ /\.page$/) ||
791: ($env{'request.symb'}=~
792: m{uploaded/$cdom/$cnum/default_\d+\.page$})) {
793: $text = 'Edit Page';
794: }
795: $hwkadd .= &switch('','',7,4,'docs-22x22.png',$text,'parms[_2]',
796: "gocmd('/adm/coursedocs','direct')",
797: 'Folder/Page Content');
798: }
1.369.2.26 raeburn 799: # End modifiable folder/page container check
1.369.2.28 raeburn 800: }
1.369.2.26 raeburn 801: # End course context
802:
1.41 www 803: # Prepare the rest of the buttons
1.369.2.21 raeburn 804: my ($menuitems,$got_prt,$got_wishlist,$cstritems);
1.120 raeburn 805: if ($const_space) {
1.274 www 806: #
807: # We are in construction space
808: #
1.353 www 809:
1.355 raeburn 810: my $londocroot = $Apache::lonnet::perlvar{'lonDocRoot'};
1.353 www 811: my ($udom,$uname,$thisdisfn) =
1.355 raeburn 812: ($env{'request.filename'}=~m{^\Q$londocroot/priv/\E([^/]+)/([^/]+)/(.*)$});
1.353 www 813: my $currdir = '/priv/'.$udom.'/'.$uname.'/'.$thisdisfn;
1.131 raeburn 814: if ($currdir =~ m-/$-) {
815: $is_const_dir = 1;
816: } else {
1.267 droeschl 817: $currdir =~ s|[^/]+$||;
1.200 foxr 818: my $cleandisfn = &Apache::loncommon::escape_single($thisdisfn);
1.208 albertel 819: my $esc_currdir = &Apache::loncommon::escape_single($currdir);
1.274 www 820: #
821: # Probably should be in mydesk.tab
822: #
1.131 raeburn 823: $menuitems=(<<ENDMENUITEMS);
1.369.2.21 raeburn 824: s&6&1&list.png&Directory&dir[_1]&golist('$esc_currdir')&List current directory
825: s&6&2&rtrv.png&Retrieve&version[_1]&gocstr('/adm/retrieve','/priv/$udom/$uname/$cleandisfn')&Retrieve old version
826: s&6&3&pub.png&Publish&resource[_3]&gocstr('/adm/publish','/priv/$udom/$uname/$cleandisfn')&Publish this resource
827: s&7&1&del.png&Delete&resource[_2]&gocstr('/adm/cfile?action=delete','/priv/$udom/$uname/$cleandisfn')&Delete this resource
828: s&7&2&prt.png&Print&printout[_1]&gocstr('/adm/printout','/priv/$udom/$uname/$cleandisfn')&Prepare a printable document
1.120 raeburn 829: ENDMENUITEMS
1.369.2.21 raeburn 830: unless ($noremote) {
831: $cstritems = $menuitems;
832: undef($menuitems);
833: }
1.131 raeburn 834: }
1.369.2.28 raeburn 835: if (ref($bread_crumbs) eq 'ARRAY') {
836: &Apache::lonhtmlcommon::clear_breadcrumbs();
837: foreach my $crumb (@{$bread_crumbs}){
838: &Apache::lonhtmlcommon::add_breadcrumb($crumb);
1.308 raeburn 839: }
1.369.2.28 raeburn 840: }
1.203 foxr 841: } elsif ( defined($env{'request.course.id'}) &&
842: $env{'request.symb'} ne '' ) {
1.274 www 843: #
1.369.2.16 raeburn 844: # We are in a course and looking at a registered URL
1.274 www 845: # Should probably be in mydesk.tab
846: #
1.369.2.19 raeburn 847:
1.120 raeburn 848: $menuitems=(<<ENDMENUITEMS);
1.41 www 849: c&3&1
1.369.2.19 raeburn 850: s&2&1&back.png&$swtext{'back'}&&gopost('/adm/flip','back:'+currentURL)&Previous content resource&&1
851: s&2&3&forw.png&$swtext{'forw'}&&gopost('/adm/flip','forward:'+currentURL)&Next content resource&&3
1.77 www 852: c&6&3
853: c&8&1
854: c&8&2
1.369.2.19 raeburn 855: s&8&3&prt.png&$swtext{'prt'}&printout[_1]&gopost('/adm/printout',currentURL)&Prepare a printable document
1.41 www 856: ENDMENUITEMS
1.369.2.16 raeburn 857: $got_prt = 1;
858: if (($env{'user.adv'}) && ($env{'request.uri'} =~ /^\/res/)
859: && (!$env{'request.enc'})) {
1.369.2.8 raeburn 860: # wishlist is only available for users with access to resource-pool
861: # and links can only be set for resources within the resource-pool
862: $menuitems .= (<<ENDMENUITEMS);
1.369.2.48 raeburn 863: s&9&1&alnk.png&$swtext{'alnk'}&linkstor[_1]&set_wishlistlink()&Save a link for this resource in my personal Stored Links repository&&1
1.369.2.8 raeburn 864: ENDMENUITEMS
1.369.2.16 raeburn 865: $got_wishlist = 1;
1.369.2.8 raeburn 866: }
1.216 albertel 867:
1.243 tempelho 868: my $currentURL = &Apache::loncommon::get_symb();
869: my ($symb_old,$symb_old_enc) = &Apache::loncommon::clean_symb($currentURL);
870: my $annotation = &Apache::loncommon::get_annotation($symb_old,$symb_old_enc);
871: $menuitems.="s&9&3&";
872: if(length($annotation) > 0){
1.317 droeschl 873: $menuitems.="anot2.png";
1.243 tempelho 874: }else{
1.317 droeschl 875: $menuitems.="anot.png";
1.243 tempelho 876: }
1.369.2.19 raeburn 877: $menuitems.="&$swtext{'anot'}&tations[_1]&annotate()&";
1.243 tempelho 878: $menuitems.="Make notes and annotations about this resource&&1\n";
1.369.2.52 raeburn 879: my $is_mobile;
880: if ($env{'browser.mobile'}) {
881: $is_mobile = 1;
882: }
1.243 tempelho 883:
1.323 raeburn 884: unless ($env{'request.noversionuri'}=~/\/(bulletinboard|smppg|navmaps|syllabus|aboutme|viewclasslist|portfolio)(\?|$)/) {
1.369.2.15 raeburn 885: if ((!$env{'request.enc'}) && ($env{'request.noversionuri'} !~ m{^/adm/wrapper/ext/}) && ($env{'request.noversionuri'} !~ m{^/uploaded/$match_domain/$match_courseid/docs/})) {
1.216 albertel 886: $menuitems.=(<<ENDREALRES);
1.369.2.52 raeburn 887: s&6&3&catalog.png&$swtext{'catalog'}&info[_1]&catalog_info('$is_mobile')&Show Metadata
1.216 albertel 888: ENDREALRES
889: }
1.369.2.48 raeburn 890: unless (($env{'request.noversionuri'} =~ m{^/uploaded/$match_domain/$match_courseid/docs/}) ||
891: ($env{'request.noversionuri'} =~ m{^\Q/adm/wrapper/\E(ext|uploaded)/})) {
1.369.2.14 raeburn 892: $menuitems.=(<<ENDREALRES);
1.369.2.19 raeburn 893: s&8&1&eval.png&$swtext{'eval'}&this[_1]&gopost('/adm/evaluate',currentURL,1)&Provide my evaluation of this resource
1.369.2.14 raeburn 894: ENDREALRES
895: }
1.369.2.48 raeburn 896: unless ($env{'request.noversionuri'} =~ m{^\Q/adm/wrapper/\E(ext|uploaded)/}) {
897: $menuitems.=(<<ENDREALRES);
1.369.2.19 raeburn 898: s&8&2&fdbk.png&$swtext{'fdbk'}&discuss[_1]&gopost('/adm/feedback',currentURL,1)&Provide feedback messages or contribute to the course discussion about this resource
1.77 www 899: ENDREALRES
1.369.2.48 raeburn 900: }
1.120 raeburn 901: }
902: }
1.203 foxr 903: if ($env{'request.uri'} =~ /^\/res/) {
1.369.2.16 raeburn 904: unless ($got_prt) {
905: $menuitems .= (<<ENDMENUITEMS);
1.369.2.19 raeburn 906: s&8&3&prt.png&$swtext{'prt'}&printout[_1]&gopost('/adm/printout',currentURL)&Prepare a printable document
1.203 foxr 907: ENDMENUITEMS
1.369.2.16 raeburn 908: $got_prt = 1;
909: }
910: unless ($got_wishlist) {
911: if (($env{'user.adv'}) && (!$env{'request.enc'})) {
912: # wishlist is only available for users with access to resource-pool
913: $menuitems .= (<<ENDMENUITEMS);
1.369.2.19 raeburn 914: s&9&1&alnk.png&$swtext{'alnk'}&linkstor[_1]&set_wishlistlink()&Save a link for this resource in your personal Stored Links repository&&1
1.369.2.8 raeburn 915: ENDMENUITEMS
1.369.2.16 raeburn 916: $got_wishlist = 1;
1.369.2.17 raeburn 917: }
1.369.2.8 raeburn 918: }
1.203 foxr 919: }
1.369.2.20 raeburn 920: unless ($got_prt) {
921: $menuitems .= (<<ENDMENUITEMS);
922: c&8&3
923: ENDMENUITEMS
924: }
925: unless ($got_wishlist) {
926: $menuitems .= (<<ENDMENUITEMS);
927: c&9&1
928: ENDMENUITEMS
929: }
1.41 www 930: my $buttons='';
931: foreach (split(/\n/,$menuitems)) {
932: my ($command,@rest)=split(/\&/,$_);
1.220 raeburn 933: my $idx=10*$rest[0]+$rest[1];
934: if (&hidden_button_check() eq 'yes') {
935: if ($idx == 21 ||$idx == 23) {
936: $buttons.=&switch('','',@rest);
937: } else {
938: $buttons.=&clear(@rest);
939: }
940: } else {
941: if ($command eq 's') {
942: $buttons.=&switch('','',@rest);
943: } else {
944: $buttons.=&clear(@rest);
945: }
1.41 www 946: }
947: }
1.369.2.17 raeburn 948: if ($noremote) {
1.148 albertel 949: my $addremote=0;
1.267 droeschl 950: foreach (@inlineremote) { if ($_ ne '') { $addremote=1; last;} }
1.369.2.17 raeburn 951: if ($addremote) {
1.301 droeschl 952:
1.369.2.17 raeburn 953: &Apache::lonhtmlcommon::clear_breadcrumb_tools();
1.301 droeschl 954:
1.369.2.17 raeburn 955: &Apache::lonhtmlcommon::add_breadcrumb_tool(
956: 'navigation', @inlineremote[21,23]);
957:
958: my $countdown = &countdown_timer();
959: if (&hidden_button_check() eq 'yes') {
960: if ($countdown) {
961: &Apache::lonhtmlcommon::add_breadcrumb_tool('tools',$countdown);
962: }
963: } else {
964: my @tools = @inlineremote[93,91,81,82,83];
965: if ($countdown) {
966: unshift(@tools,$countdown);
967: }
968: &Apache::lonhtmlcommon::add_breadcrumb_tool(
969: 'tools',@tools);
1.312 droeschl 970:
1.369.2.17 raeburn 971: #publish button in construction space
972: if ($env{'request.state'} eq 'construct'){
973: &Apache::lonhtmlcommon::add_breadcrumb_tool(
974: 'advtools', $inlineremote[63]);
975: } else {
976: &Apache::lonhtmlcommon::add_breadcrumb_tool(
977: 'tools', $inlineremote[63]);
978: }
1.369.2.26 raeburn 979: &advtools_crumbs(@inlineremote);
1.369.2.17 raeburn 980: }
1.369.2.10 raeburn 981: }
1.369.2.18 raeburn 982: return &Apache::lonhtmlcommon::scripttag('', 'start')
983: . &Apache::lonhtmlcommon::breadcrumbs(undef,undef,0)
984: . &Apache::lonhtmlcommon::scripttag('', 'end');
985:
1.369.2.10 raeburn 986: } else {
1.369.2.21 raeburn 987: my $cstrcrumbs;
988: if ($const_space) {
989: foreach (split(/\n/,$cstritems)) {
990: my ($command,@rest)=split(/\&/,$_);
991: my $idx=10*$rest[0]+$rest[1];
992: &switch('','',@rest);
993: }
994: &Apache::lonhtmlcommon::add_breadcrumb_tool('advtools',
995: @inlineremote[63,61,71,72]);
996:
997: $cstrcrumbs = &Apache::lonhtmlcommon::scripttag('', 'start')
998: .&Apache::lonhtmlcommon::breadcrumbs(undef,undef,0)
999: .&Apache::lonhtmlcommon::scripttag('', 'end');
1000: }
1.369.2.17 raeburn 1001: my $requri=&Apache::lonnet::clutter(&Apache::lonnet::fixversion((split(/\?/,$env{'request.noversionuri'}))[0]));
1002: $requri=&Apache::lonenc::check_encrypt(&unescape($requri));
1003: my $cursymb=&Apache::lonenc::check_encrypt($env{'request.symb'});
1004: my $navstatus=&get_nav_status();
1005: my $clearcstr;
1.313 droeschl 1006:
1.369.2.17 raeburn 1007: if ($env{'user.adv'}) { $clearcstr='clearbut(6,1)'; }
1008: return <<ENDREGTHIS;
1009:
1010: <script type="text/javascript">
1011: // <![CDATA[
1012: // BEGIN LON-CAPA Internal
1013: var swmenu=null;
1014:
1015: function LONCAPAreg() {
1016: swmenu=$reopen;
1017: swmenu.clearTimeout(swmenu.menucltim);
1018: $timesync
1019: $newmail
1020: $buttons
1021: swmenu.currentURL="$requri";
1022: swmenu.reloadURL=swmenu.currentURL+window.location.search;
1023: swmenu.currentSymb="$cursymb";
1024: swmenu.reloadSymb="$cursymb";
1025: swmenu.currentStale=0;
1026: $navstatus
1027: $hwkadd
1028: $editbutton
1029: }
1030:
1031: function LONCAPAstale() {
1032: swmenu=$reopen
1033: swmenu.currentStale=1;
1034: if (swmenu.reloadURL!='' && swmenu.reloadURL!= null) {
1035: swmenu.switchbutton
1036: (3,1,'reload.gif','return','location','go(reloadURL)','Return to the last known location in the course sequence');
1037: }
1038: swmenu.clearbut(7,2);
1039: swmenu.clearbut(7,3);
1040: swmenu.menucltim=swmenu.setTimeout(
1041: 'clearbut(2,1);clearbut(2,3);clearbut(8,1);clearbut(8,2);clearbut(8,3);'+
1042: 'clearbut(9,1);clearbut(9,3);clearbut(6,3);$clearcstr',
1043: 2000);
1044: }
1045:
1046: // END LON-CAPA Internal
1047: // ]]>
1048: </script>
1.369.2.21 raeburn 1049:
1050: $cstrcrumbs
1.369.2.17 raeburn 1051: ENDREGTHIS
1.301 droeschl 1052: }
1.369.2.18 raeburn 1053: } else {
1054: unless ($noremote) {
1055: # Not registered, graphical
1056: return (<<ENDDONOTREGTHIS);
1057:
1058: <script type="text/javascript">
1059: // <![CDATA[
1060: // BEGIN LON-CAPA Internal
1061: var swmenu=null;
1.38 www 1062:
1.369.2.18 raeburn 1063: function LONCAPAreg() {
1064: swmenu=$reopen
1065: $timesync
1066: swmenu.currentStale=1;
1067: swmenu.clearbut(2,1);
1068: swmenu.clearbut(2,3);
1069: swmenu.clearbut(8,1);
1070: swmenu.clearbut(8,2);
1071: swmenu.clearbut(8,3);
1.369.2.20 raeburn 1072: swmenu.clearbut(9,1);
1.369.2.18 raeburn 1073: if (swmenu.currentURL) {
1074: swmenu.switchbutton
1075: (3,1,'reload.gif','return','location','go(currentURL)');
1076: } else {
1077: swmenu.clearbut(3,1);
1078: }
1079: }
1080:
1081: function LONCAPAstale() {
1082: }
1083:
1084: // END LON-CAPA Internal
1085: // ]]>
1086: </script>
1087: ENDDONOTREGTHIS
1088:
1089: }
1090: return '';
1091: }
1.38 www 1092: }
1093:
1.369.2.19 raeburn 1094: sub get_inline_text {
1095: my %text = (
1096: pgrd => 'Content Grades',
1097: subm => 'Content Submissions',
1098: pparm => 'Content Settings',
1099: docs => 'Folder/Page Content',
1100: pcstr => 'Edit',
1101: prt => 'Print',
1102: alnk => 'Stored Links',
1103: anot => 'Notes',
1104: catalog => 'Info',
1105: eval => 'Evaluate',
1106: fdbk => 'Feedback',
1107: );
1108: return %text;
1109: }
1110:
1111: sub get_rc_text {
1112: my %text = (
1113: pgrd => 'problem[_1]',
1114: subm => 'view sub-[_1]',
1115: pparm => 'problem[_2]',
1116: pcstr => 'edit[_1]',
1117: prt => 'prepare[_1]',
1118: back => 'backward[_1]',
1119: forw => 'forward[_1]',
1120: alnk => 'add to[_1]',
1121: anot => 'anno-[_1]',
1122: catalog => 'catalog[_2]',
1123: eval => 'evaluate[_1]',
1124: fdbk => 'feedback[_1]',
1125: );
1126: return %text;
1127: }
1128:
1.369.2.17 raeburn 1129: sub loadevents() {
1130: if ($env{'request.state'} eq 'construct' ||
1131: $env{'request.noversionuri'} =~ m{^/res/adm/pages/}) { return ''; }
1132: return 'LONCAPAreg();';
1133: }
1134:
1135: sub unloadevents() {
1136: if ($env{'request.state'} eq 'construct' ||
1137: $env{'request.noversionuri'} =~ m{^/res/adm/pages/}) { return ''; }
1138: return 'LONCAPAstale();';
1139: }
1140:
1.369.2.1 raeburn 1141: sub startupremote {
1142: my ($lowerurl)=@_;
1.369.2.17 raeburn 1143: unless ($env{'environment.remote'} eq 'on') {
1144: return ('<meta HTTP-EQUIV="Refresh" CONTENT="0.5; url='.$lowerurl.'" />');
1.369.2.1 raeburn 1145: }
1146: #
1147: # The Remote actually gets launched!
1148: #
1149: my $configmenu=&rawconfig();
1150: my $esclowerurl=&escape($lowerurl);
1151: my $message=&mt('"Waiting for Remote Control window to load: "+[_1]','waited');
1152: return(<<ENDREMOTESTARTUP);
1153: <script type="text/javascript">
1154: // <![CDATA[
1155: var timestart;
1156: function wheelswitch() {
1157: if (typeof(document.wheel) != 'undefined') {
1158: if (typeof(document.wheel.spin) != 'undefined') {
1159: var date=new Date();
1160: var waited=Math.round(30-((date.getTime()-timestart)/1000));
1161: document.wheel.spin.value=$message;
1162: }
1163: }
1164: if (window.status=='|') {
1165: window.status='/';
1166: } else {
1167: if (window.status=='/') {
1168: window.status='-';
1169: } else {
1170: if (window.status=='-') {
1171: window.status='\\\\';
1172: } else {
1173: if (window.status=='\\\\') { window.status='|'; }
1174: }
1175: }
1176: }
1177: }
1178:
1179: // ---------------------------------------------------------- The wait function
1180: var canceltim;
1181: function wait() {
1182: if ((menuloaded==1) || (tim==1)) {
1183: window.status='Done.';
1184: if (tim==0) {
1185: clearTimeout(canceltim);
1186: $configmenu
1187: window.location='$lowerurl';
1188: } else {
1189: window.location='/adm/remote?action=collapse&url=$esclowerurl';
1190: }
1191: } else {
1192: wheelswitch();
1193: setTimeout('wait();',200);
1194: }
1195: }
1196:
1197: function main() {
1198: canceltim=setTimeout('tim=1;',30000);
1199: window.status='-';
1200: var date=new Date();
1201: timestart=date.getTime();
1202: wait();
1203: }
1204:
1205: // ]]>
1206: </script>
1207: ENDREMOTESTARTUP
1208: }
1209:
1210: sub setflags() {
1211: return(<<ENDSETFLAGS);
1212: <script type="text/javascript">
1213: // <![CDATA[
1214: menuloaded=0;
1215: tim=0;
1216: // ]]>
1217: </script>
1218: ENDSETFLAGS
1219: }
1220:
1221: sub maincall() {
1.369.2.17 raeburn 1222: unless ($env{'environment.remote'} eq 'on') { return ''; }
1.369.2.1 raeburn 1223: return(<<ENDMAINCALL);
1224: <script type="text/javascript">
1225: // <![CDATA[
1226: main();
1227: // ]]>
1228: </script>
1229: ENDMAINCALL
1230: }
1231:
1232: sub load_remote_msg {
1233: my ($lowerurl)=@_;
1234:
1.369.2.17 raeburn 1235: unless ($env{'environment.remote'} eq 'on') { return ''; }
1.369.2.1 raeburn 1236:
1237: my $esclowerurl=&escape($lowerurl);
1238: my $link=&mt('[_1]Continue[_2] on in Inline Menu mode'
1239: ,'<a href="/adm/remote?action=collapse&url='.$esclowerurl.'">'
1240: ,'</a>');
1241: return(<<ENDREMOTEFORM);
1242: <p>
1243: <form name="wheel">
1244: <input name="spin" type="text" size="60" />
1245: </form>
1246: </p>
1247: <p>$link</p>
1248: ENDREMOTEFORM
1249: }
1250:
1251: sub get_menu_name {
1252: my $hostid = $Apache::lonnet::perlvar{'lonHostID'};
1253: $hostid =~ s/\W//g;
1254: return 'LCmenu'.$hostid;
1255: }
1256:
1257:
1258: sub reopenmenu {
1.369.2.17 raeburn 1259: unless ($env{'environment.remote'} eq 'on') { return ''; }
1.369.2.1 raeburn 1260: my $menuname = &get_menu_name();
1261: my $nothing = &Apache::lonhtmlcommon::javascript_nothing();
1262: return('window.open('.$nothing.',"'.$menuname.'","",false);');
1263: }
1264:
1265:
1266: sub open {
1267: my $returnval='';
1.369.2.17 raeburn 1268: unless ($env{'environment.remote'} eq 'on') {
1.369.2.1 raeburn 1269: return
1270: '<script type="text/javascript">'."\n"
1271: .'// <![CDATA['."\n"
1272: .'self.name="loncapaclient";'."\n"
1273: .'// ]]>'."\n"
1274: .'</script>';
1275: }
1276: my $menuname = &get_menu_name();
1277:
1278: # unless (shift eq 'unix') {
1279: # resizing does not work on linux because of virtual desktop sizes
1280: # $returnval.=(<<ENDRESIZE);
1281: #if (window.screen) {
1282: # self.resizeTo(screen.availWidth-215,screen.availHeight-55);
1283: # self.moveTo(190,15);
1284: #}
1285: #ENDRESIZE
1286: # }
1287: $returnval=(<<ENDOPEN);
1288: // <![CDATA[
1289: window.status='Opening LON-CAPA Remote Control';
1290: var menu=window.open("/res/adm/pages/menu.html?inhibitmenu=yes","$menuname",
1291: "height=375,width=150,scrollbars=no,menubar=no,top=5,left=5,screenX=5,screenY=5");
1292: self.name='loncapaclient';
1293: // ]]>
1294: ENDOPEN
1295: return '<script type="text/javascript">'.$returnval.'</script>';
1296: }
1297:
1.369.2.26 raeburn 1298: sub get_editbutton {
1299: my ($cfile,$home,$switchserver,$forceedit,$forceview,$forcereg) = @_;
1.369.2.27 raeburn 1300: my $jscall;
1301: if (($forceview) && ($env{'form.todocs'})) {
1302: my ($folderpath,$command);
1303: if ($env{'request.symb'}) {
1304: $folderpath = &Apache::loncommon::symb_to_docspath($env{'request.symb'});
1305: } elsif ($env{'form.folderpath'} =~ /^supplemental/) {
1306: $folderpath = $env{'form.folderpath'};
1307: $command = '&forcesupplement=1';
1308: }
1309: $folderpath = &escape(&HTML::Entities::encode(&escape($folderpath),'<>&"'));
1310: $jscall = "go('/adm/coursedocs?folderpath=$folderpath$command')";
1311: } else {
1312: $jscall = &Apache::lonhtmlcommon::jump_to_editres($cfile,$home,$switchserver,
1313: $forceedit,$forcereg,$env{'request.symb'},
1314: &escape($env{'form.folderpath'}),
1315: &escape($env{'form.title'}),$env{'form.idx'},
1316: &escape($env{'form.suppurl'},$env{'form.todocs'}));
1317: }
1.369.2.26 raeburn 1318: if ($jscall) {
1319: my $icon = 'pcstr.png';
1320: my $label = 'Edit';
1321: if ($forceview) {
1322: $icon = 'tolastloc.png';
1323: $label = 'Exit Editing';
1324: }
1.369.2.37 raeburn 1325: my $infunc = 1;
1326: my $clearbutton;
1327: if ($env{'environment.remote'} eq 'on') {
1328: if ($cfile =~ m{^/priv/}) {
1329: undef($infunc);
1330: $label = 'edit';
1331: } else {
1332: $clearbutton = 1;
1333: }
1334: }
1335: my $editor = &switch('','',6,1,$icon,$label,'resource[_2]',
1336: $jscall,"Edit this resource",'','',$infunc);
1337: if ($infunc) {
1338: return 1;
1339: } elsif ($clearbutton) {
1340: return &clear(6,1);
1341: } else {
1342: return $editor;
1343: }
1.369.2.26 raeburn 1344: }
1345: return;
1346: }
1347:
1348: sub prepare_functions {
1.369.2.37 raeburn 1349: my ($resurl,$forcereg,$group,$bread_crumbs,$advtools,$docscrumbs,$forbodytag) = @_;
1.369.2.26 raeburn 1350: unless ($env{'request.registered'}) {
1351: undef(@inlineremote);
1352: }
1353: my ($cdom,$cnum,%perms,$cfile,$switchserver,$home,$forceedit,
1354: $forceview);
1355:
1356: if ($env{'request.course.id'}) {
1357: $cnum = $env{'course.'.$env{'request.course.id'}.'.num'};
1358: $cdom = $env{'course.'.$env{'request.course.id'}.'.domain'};
1359: $perms{'mdc'} = &Apache::lonnet::allowed('mdc',$env{'request.course.id'});
1360: }
1361:
1362: my $editbutton = '';
1363: #
1364: # Determine whether or not to display 'Edit' icon/button
1365: #
1366: if ($resurl =~ m{^/?adm/($match_domain)/($match_username)/aboutme$}) {
1367: my $file=&Apache::lonnet::declutter($env{'request.filename'});
1.369.2.27 raeburn 1368: ($cfile,$home,$switchserver,$forceedit,$forceview) =
1369: &Apache::lonnet::can_edit_resource($file,$cnum,$cdom,
1370: &Apache::lonnet::clutter($resurl),$env{'request.symb'},$group);
1371: if (($cfile) && ($home ne '') && ($home ne 'no_host')) {
1372: $editbutton = &get_editbutton($cfile,$home,$switchserver,
1.369.2.26 raeburn 1373: $forceedit,$forceview,$forcereg);
1374: }
1.369.2.27 raeburn 1375: } elsif ((!$env{'request.course.id'}) &&
1.369.2.26 raeburn 1376: ($env{'user.author'}) && ($env{'request.filename'}) &&
1377: ($env{'request.role'} !~/^(aa|ca|au)/)) {
1378: #
1379: # Currently do not have the role of author or co-author.
1380: # Do we have authoring privileges for the resource?
1381: #
1382: my $file=&Apache::lonnet::declutter($env{'request.filename'});
1383: ($cfile,$home,$switchserver,$forceedit,$forceview) =
1384: &Apache::lonnet::can_edit_resource($file,$cnum,$cdom,
1385: &Apache::lonnet::clutter($resurl),$env{'request.symb'},$group);
1386: if (($cfile) && ($home ne '') && ($home ne 'no_host')) {
1387: $editbutton = &get_editbutton($cfile,$home,$switchserver,
1388: $forceedit,$forceview,$forcereg);
1389: }
1390: } elsif ($env{'request.course.id'}) {
1391: #
1392: # This applies in course context
1393: #
1.369.2.39 raeburn 1394: if (($perms{'mdc'}) &&
1395: (($resurl eq "/public/$cdom/$cnum/syllabus") ||
1396: ($resurl =~ m{^/uploaded/$cdom/$cnum/portfolio/syllabus/}))) {
1397: $cfile = $resurl;
1398: $home = &Apache::lonnet::homeserver($cnum,$cdom);
1399: if ($env{'form.forceedit'}) {
1400: $forceview = 1;
1.369.2.26 raeburn 1401: } else {
1.369.2.39 raeburn 1402: $forceedit = 1;
1.369.2.26 raeburn 1403: }
1.369.2.39 raeburn 1404: $editbutton = &get_editbutton($cfile,$home,$switchserver,
1405: $forceedit,$forceview,$forcereg);
1.369.2.27 raeburn 1406: } elsif (($resurl eq '/adm/extresedit') &&
1407: (($env{'form.symb'}) || ($env{'form.folderpath'}))) {
1408: ($cfile,$home,$switchserver,$forceedit,$forceview) =
1409: &Apache::lonnet::can_edit_resource($resurl,$cnum,$cdom,$resurl,
1410: $env{'form.symb'});
1411: if ($cfile ne '') {
1412: $editbutton = &get_editbutton($cfile,$home,$switchserver,
1413: $forceedit,$forceview,$forcereg,
1414: $env{'form.title'},$env{'form.suppurl'});
1415: }
1.369.2.32 raeburn 1416: } elsif (($resurl =~ m{^/?adm/viewclasslist$}) &&
1417: (&Apache::lonnet::allowed('opa',$env{'request.course.id'}))) {
1418: ($cfile,$home,$switchserver,$forceedit,$forceview) =
1419: &Apache::lonnet::can_edit_resource($resurl,$cnum,$cdom,$resurl,
1420: $env{'form.symb'});
1421: $editbutton = &get_editbutton($cfile,$home,$switchserver,
1422: $forceedit,$forceview,$forcereg);
1.369.2.31 raeburn 1423: } elsif (($resurl !~ m{^/?adm/($match_domain)/($match_username)/aboutme$}) &&
1424: ($resurl ne '/cgi-bin/printout.pl')) {
1.369.2.26 raeburn 1425: if ($env{'request.filename'}) {
1426: my $file=&Apache::lonnet::declutter($env{'request.filename'});
1427: ($cfile,$home,$switchserver,$forceedit,$forceview) =
1428: &Apache::lonnet::can_edit_resource($file,$cnum,$cdom,
1429: &Apache::lonnet::clutter($resurl),$env{'request.symb'},$group);
1430: if ($cfile ne '') {
1431: $editbutton = &get_editbutton($cfile,$home,$switchserver,
1432: $forceedit,$forceview,$forcereg);
1433: }
1434: }
1435: }
1436: }
1437: # End determination of 'Edit' icon/button display
1438:
1439: if ($env{'request.course.id'}) {
1.369.2.27 raeburn 1440: # This applies to about me page for users in a course
1.369.2.29 raeburn 1441: if ($resurl =~ m{^/?adm/($match_domain)/($match_username)/aboutme$}) {
1.369.2.26 raeburn 1442: my ($sdom,$sname) = ($1,$2);
1443: unless (&Apache::lonnet::is_course($sdom,$sname)) {
1444: &switch('','',6,4,'mail-message-new-22x22.png','Message to user',
1445: '',
1.369.2.42 raeburn 1446: "go('/adm/email?compose=individual&recname=$sname&recdom=$sdom')",
1.369.2.37 raeburn 1447: 'Send message to specific user','','',1);
1.369.2.26 raeburn 1448: }
1.369.2.27 raeburn 1449: my $hideprivileged = 1;
1450: if (&Apache::lonnet::in_course($sdom,$sname,$cdom,$cnum,undef,
1451: $hideprivileged)) {
1.369.2.26 raeburn 1452: foreach my $priv ('vsa','vgr','srm') {
1453: $perms{$priv} = &Apache::lonnet::allowed($priv,$env{'request.course.id'});
1454: if (!$perms{$priv} && $env{'request.course.sec'} ne '') {
1455: $perms{$priv} =
1456: &Apache::lonnet::allowed($priv,"$env{'request.course.id'}/$env{'request.course.sec'}");
1457: }
1458: }
1459: if ($perms{'vsa'}) {
1460: &switch('','',6,5,'trck-22x22.png','Activity',
1461: '',
1462: "go('/adm/trackstudent?selected_student=$sname:$sdom')",
1.369.2.37 raeburn 1463: 'View recent activity by this person','','',1);
1.369.2.26 raeburn 1464: }
1465: if ($perms{'vgr'}) {
1466: &switch('','',6,6,'rsrv-22x22.png','Reservations',
1467: '',
1.369.2.42 raeburn 1468: "go('/adm/slotrequest?command=showresv&origin=aboutme&uname=$sname&udom=$sdom')",
1.369.2.37 raeburn 1469: 'Slot reservation history','','',1);
1.369.2.26 raeburn 1470: }
1471: if ($perms{'srm'}) {
1472: &switch('','',6,7,'contact-new-22x22.png','Records',
1473: '',
1.369.2.42 raeburn 1474: "go('/adm/email?recordftf=retrieve&recname=$sname&recdom=$sdom')",
1.369.2.37 raeburn 1475: 'Add records','','',1);
1.369.2.26 raeburn 1476: }
1477: }
1.369.2.27 raeburn 1478: }
1479: if (($env{'form.folderpath'} =~ /^supplemental/) &&
1480: (&Apache::lonnet::allowed('mdc',$env{'request.course.id'})) &&
1481: (($resurl =~ m{^/adm/wrapper/ext/}) ||
1482: ($resurl =~ m{^/uploaded/$cdom/$cnum/supplemental/}) ||
1483: ($resurl eq '/adm/supplemental') ||
1484: ($resurl =~ m{^/public/$cdom/$cnum/syllabus$}) ||
1485: ($resurl =~ m{^/adm/$match_domain/$match_username/aboutme$}))) {
1486: my @folders=split('&',$env{'form.folderpath'});
1487: if ((@folders > 2) || ($resurl ne '/adm/supplemental')) {
1488: my $esc_path=&escape(&HTML::Entities::encode(&escape($env{'form.folderpath'}),'<>&"'));
1489: &switch('','',7,4,'docs-22x22.png','Edit Folder','parms[_2]',
1.369.2.42 raeburn 1490: "location.href='/adm/coursedocs?command=direct&forcesupplement=1&supppath=$esc_path'",
1.369.2.37 raeburn 1491: 'Folder/Page Content','','',1);
1.369.2.27 raeburn 1492: }
1.369.2.26 raeburn 1493: }
1494: }
1495:
1496: # End checking for items for about me page for users in a course
1.369.2.27 raeburn 1497: if ($docscrumbs) {
1498: &Apache::lonhtmlcommon::clear_breadcrumb_tools();
1499: &advtools_crumbs(@inlineremote);
1500: return $editbutton;
1.369.2.37 raeburn 1501: } elsif (($env{'request.registered'}) && (!ref($forbodytag))) {
1.369.2.26 raeburn 1502: return $editbutton;
1503: } else {
1504: if (ref($bread_crumbs) eq 'ARRAY') {
1505: if (@inlineremote > 0) {
1506: if (ref($advtools) eq 'ARRAY') {
1507: @{$advtools} = @inlineremote;
1508: }
1509: }
1510: return;
1511: } elsif (@inlineremote > 0) {
1512: &Apache::lonhtmlcommon::clear_breadcrumb_tools();
1513: &advtools_crumbs(@inlineremote);
1.369.2.37 raeburn 1514: if (ref($forbodytag)) {
1515: $$forbodytag =
1516: &Apache::lonhtmlcommon::scripttag('', 'start')
1517: .&Apache::lonhtmlcommon::breadcrumbs(undef,undef,0)
1518: .&Apache::lonhtmlcommon::scripttag('', 'end');
1519: }
1520: return;
1.369.2.26 raeburn 1521: }
1522: }
1523: }
1524:
1525: sub advtools_crumbs {
1526: my @funcs = @_;
1527: if ($env{'request.noversionuri'} =~ m{^/adm/$match_domain/$match_username/aboutme$}) {
1528: &Apache::lonhtmlcommon::add_breadcrumb_tool(
1529: 'advtools', @funcs[61,64,65,66,67,74]);
1530: } elsif ($env{'request.noversionuri'} !~ m{^/adm/(navmaps|viewclasslist)(\?|$)}) {
1531: &Apache::lonhtmlcommon::add_breadcrumb_tool(
1532: 'advtools', @funcs[61,71,72,73,74,92]);
1.369.2.27 raeburn 1533: } elsif ($env{'request.noversionuri'} eq '/adm/viewclasslist') {
1534: &Apache::lonhtmlcommon::add_breadcrumb_tool(
1.369.2.33 raeburn 1535: 'advtools', $funcs[61]);
1.369.2.26 raeburn 1536: }
1537: }
1.369.2.1 raeburn 1538:
1.2 www 1539: # ================================================================== Raw Config
1540:
1.3 www 1541: sub clear {
1542: my ($row,$col)=@_;
1.369.2.17 raeburn 1543: if ($env{'environment.remote'} eq 'on') {
1544: if (($row<1) || ($row>13)) { return ''; }
1545: return "\n".qq(window.status+='.';swmenu.clearbut($row,$col););
1546: } else {
1547: $inlineremote[10*$row+$col]='';
1548: return '';
1549: }
1.3 www 1550: }
1551:
1.40 www 1552: # ============================================ Switch a button or create a link
1.25 matthew 1553: # Switch acts on the javascript that is executed when a button is clicked.
1554: # The javascript is usually similar to "go('/adm/roles')" or "cstrgo(..)".
1.40 www 1555:
1.2 www 1556: sub switch {
1.369.2.37 raeburn 1557: my ($uname,$udom,$row,$col,$img,$top,$bot,$act,$desc,$cat,$nobreak,$infunc)=@_;
1.2 www 1558: $act=~s/\$uname/$uname/g;
1559: $act=~s/\$udom/$udom/g;
1.88 www 1560: $top=&mt($top);
1561: $bot=&mt($bot);
1562: $desc=&mt($desc);
1.209 www 1563: my $idx=10*$row+$col;
1564: $category_members{$cat}.=':'.$idx;
1565:
1.369.2.37 raeburn 1566: if (($env{'environment.remote'} eq 'on') && (!$infunc)) {
1.369.2.17 raeburn 1567: if (($row<1) || ($row>13)) { return ''; }
1.369.2.21 raeburn 1568: if ($env{'request.state'} eq 'construct') {
1569: my $text = $top.' '.$bot;
1570: $text=~s/\s*\-\s*//gs;
1571: my $pic = '<img alt="'.$text.'" src="'.
1572: &Apache::loncommon::lonhttpdurl('/res/adm/pages/'.$img).
1573: '" align="'.($nobreak==3?'right':'left').'" class="LC_icon" />';
1574: $inlineremote[$idx] =
1575: '<a title="'.$desc.'" class="LC_menubuttons_link" href="javascript:'.$act.';">'.
1576: $pic.'<span class="LC_menubuttons_inline_text">'.$top.' </span></a>';
1577: }
1.369.2.17 raeburn 1578: # Remote
1579: $img=~s/\.png$/\.gif/;
1580: return "\n".
1581: qq(window.status+='.';swmenu.switchbutton($row,$col,"$img","$top","$bot","$act","$desc"););
1582: }
1583:
1.320 droeschl 1584: # Inline Menu
1.317 droeschl 1585: if ($nobreak==2) { return ''; }
1586: my $text=$top.' '.$bot;
1587: $text=~s/\s*\-\s*//gs;
1.105 www 1588:
1.317 droeschl 1589: my $pic=
1.225 albertel 1590: '<img alt="'.$text.'" src="'.
1591: &Apache::loncommon::lonhttpdurl('/res/adm/pages/'.$img).
1.303 droeschl 1592: '" align="'.($nobreak==3?'right':'left').'" class="LC_icon" />';
1.317 droeschl 1593: if ($env{'browser.interface'} eq 'faketextual') {
1.274 www 1594: # Main Menu
1.103 www 1595: if ($nobreak==3) {
1.209 www 1596: $inlineremote[$idx]="\n".
1.177 albertel 1597: '<td class="LC_menubuttons_text" align="right">'.$text.
1.247 harmsja 1598: '</td><td align="left">'.
1.103 www 1599: '<a href="javascript:'.$act.';">'.$pic.'</a></td></tr>';
1600: } elsif ($nobreak) {
1.209 www 1601: $inlineremote[$idx]="\n<tr>".
1.247 harmsja 1602: '<td align="left">'.
1.177 albertel 1603: '<a href="javascript:'.$act.';">'.$pic.'</a></td>
1.215 www 1604: <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 1605: } else {
1.209 www 1606: $inlineremote[$idx]="\n<tr>".
1.247 harmsja 1607: '<td align="left">'.
1.103 www 1608: '<a href="javascript:'.$act.';">'.$pic.
1.177 albertel 1609: '</a></td><td class="LC_menubuttons_text" colspan="3">'.
1.215 www 1610: '<a class="LC_menubuttons_link" href="javascript:'.$act.';"><span class="LC_menubuttons_inline_text">'.$desc.'</span></a></td></tr>';
1.103 www 1611: }
1.317 droeschl 1612: } else {
1.103 www 1613: # Inline Menu
1.369.2.10 raeburn 1614: my @tools = (93,91,81,82,83);
1615: unless ($env{'request.state'} eq 'construct') {
1616: push(@tools,63);
1617: }
1618: if (($env{'environment.icons'} eq 'iconsonly') &&
1619: (grep(/^$idx$/,@tools))) {
1620: $inlineremote[$idx] =
1621: '<a title="'.$desc.'" class="LC_menubuttons_link" href="javascript:'.$act.';">'.$pic.'</a>';
1622: } else {
1623: $inlineremote[$idx] =
1.317 droeschl 1624: '<a title="'.$desc.'" class="LC_menubuttons_link" href="javascript:'.$act.';">'.$pic.
1.344 www 1625: '<span class="LC_menubuttons_inline_text">'.$top.' </span></a>';
1.369.2.10 raeburn 1626: }
1.317 droeschl 1627: }
1.56 www 1628: return '';
1.2 www 1629: }
1630:
1631: sub secondlevel {
1632: my $output='';
1633: my
1.209 www 1634: ($uname,$udom,$rol,$crs,$pub,$con,$row,$col,$prt,$img,$top,$bot,$act,$desc,$cat)=@_;
1.2 www 1635: if ($prt eq 'any') {
1.209 www 1636: $output.=&switch($uname,$udom,$row,$col,$img,$top,$bot,$act,$desc,$cat);
1.2 www 1637: } elsif ($prt=~/^r(\w+)/) {
1638: if ($rol eq $1) {
1.209 www 1639: $output.=&switch($uname,$udom,$row,$col,$img,$top,$bot,$act,$desc,$cat);
1.2 www 1640: }
1641: }
1642: return $output;
1643: }
1644:
1.369.2.17 raeburn 1645: sub openmenu {
1646: my $menuname = &get_menu_name();
1647: unless ($env{'environment.remote'} eq 'on') { return ''; }
1648: my $nothing = &Apache::lonhtmlcommon::javascript_nothing();
1649: return "window.open(".$nothing.",'".$menuname."');";
1650: }
1651:
1.56 www 1652: sub inlinemenu {
1.210 albertel 1653: undef(@inlineremote);
1654: undef(%category_members);
1.275 www 1655: # calling rawconfig with "1" will evaluate mydesk.tab, even if there is no active remote control
1.56 www 1656: &rawconfig(1);
1.309 bisitz 1657: my $output='<table><tr>';
1.209 www 1658: for (my $col=1; $col<=2; $col++) {
1.241 riegler 1659: $output.='<td class="LC_mainmenu_col_fieldset">';
1.209 www 1660: for (my $row=1; $row<=8; $row++) {
1661: foreach my $cat (keys(%category_members)) {
1662: if ($category_positions{$cat} ne "$col,$row") { next; }
1.247 harmsja 1663: #$output.='<table><tr><td colspan="4" class="LC_menubuttons_category">'.&mt($category_names{$cat}).'</td></tr>';
1.309 bisitz 1664: $output.='<div class="LC_Box LC_400Box">';
1665: $output.='<h3 class="LC_hcell">'.&mt($category_names{$cat}).'</h3>';
1.247 harmsja 1666: $output.='<table>';
1.240 riegler 1667: my %active=();
1668: foreach my $menu_item (split(/\:/,$category_members{$cat})) {
1669: if ($inlineremote[$menu_item]) {
1670: $active{$menu_item}=1;
1671: }
1672: }
1673: foreach my $item (sort(keys(%active))) {
1674: $output.=$inlineremote[$item];
1675: }
1676: $output.='</table>';
1.245 harmsja 1677: $output.='</div>';
1.240 riegler 1678: }
1679: }
1680: $output.="</td>";
1681: }
1682: $output.="</tr></table>";
1683: return $output;
1684: }
1685:
1.2 www 1686: sub rawconfig {
1.274 www 1687: #
1688: # This evaluates mydesk.tab
1689: # Need to add more positions and more privileges to deal with all
1690: # menu items.
1691: #
1.34 www 1692: my $textualoverride=shift;
1693: my $output='';
1.369.2.17 raeburn 1694: if ($env{'environment.remote'} eq 'on') {
1695: $output.=
1696: "window.status='Opening Remote Control';var swmenu=".&openmenu().
1697: "\nwindow.status='Configuring Remote Control ';";
1698: } else {
1699: unless ($textualoverride) { return ''; }
1700: }
1.152 albertel 1701: my $uname=$env{'user.name'};
1702: my $udom=$env{'user.domain'};
1703: my $adv=$env{'user.adv'};
1.266 raeburn 1704: my $show_course=&Apache::loncommon::show_course();
1.152 albertel 1705: my $author=$env{'user.author'};
1.5 www 1706: my $crs='';
1.295 raeburn 1707: my $crstype='';
1.152 albertel 1708: if ($env{'request.course.id'}) {
1709: $crs='/'.$env{'request.course.id'};
1710: if ($env{'request.course.sec'}) {
1711: $crs.='_'.$env{'request.course.sec'};
1.7 www 1712: }
1.8 www 1713: $crs=~s/\_/\//g;
1.295 raeburn 1714: $crstype = &Apache::loncommon::course_type();
1.5 www 1715: }
1.152 albertel 1716: my $pub=($env{'request.state'} eq 'published');
1717: my $con=($env{'request.state'} eq 'construct');
1718: my $rol=$env{'request.role'};
1.369.2.51 raeburn 1719: my $requested_domain;
1720: if ($rol) {
1721: $requested_domain = $env{'request.role.domain'};
1722: }
1.184 raeburn 1723: foreach my $line (@desklines) {
1.209 www 1724: my ($row,$col,$pro,$prt,$img,$top,$bot,$act,$desc,$cat)=split(/\:/,$line);
1.3 www 1725: $prt=~s/\$uname/$uname/g;
1726: $prt=~s/\$udom/$udom/g;
1.295 raeburn 1727: if ($prt =~ /\$crs/) {
1728: next unless ($env{'request.course.id'});
1729: next if ($crstype eq 'Community');
1730: $prt=~s/\$crs/$crs/g;
1731: } elsif ($prt =~ /\$cmty/) {
1732: next unless ($env{'request.course.id'});
1733: next if ($crstype ne 'Community');
1734: $prt=~s/\$cmty/$crs/g;
1735: }
1.369.2.51 raeburn 1736: if ($prt =~ m/\$requested_domain/) {
1737: if ((!$requested_domain) && ($pro eq 'pbre') && ($env{'user.adv'})) {
1738: $prt=~s/\$requested_domain/$env{'user.domain'}/g;
1739: } else {
1740: $prt=~s/\$requested_domain/$requested_domain/g;
1741: }
1742: }
1.211 www 1743: if ($category_names{$cat}!~/\w/) { $cat='oth'; }
1.3 www 1744: if ($pro eq 'clear') {
1.4 www 1745: $output.=&clear($row,$col);
1.3 www 1746: } elsif ($pro eq 'any') {
1.2 www 1747: $output.=&secondlevel(
1.209 www 1748: $uname,$udom,$rol,$crs,$pub,$con,$row,$col,$prt,$img,$top,$bot,$act,$desc,$cat);
1.2 www 1749: } elsif ($pro eq 'smp') {
1750: unless ($adv) {
1751: $output.=&secondlevel(
1.209 www 1752: $uname,$udom,$rol,$crs,$pub,$con,$row,$col,$prt,$img,$top,$bot,$act,$desc,$cat);
1.2 www 1753: }
1754: } elsif ($pro eq 'adv') {
1755: if ($adv) {
1756: $output.=&secondlevel(
1.209 www 1757: $uname,$udom,$rol,$crs,$pub,$con,$row,$col,$prt,$img,$top,$bot,$act,$desc,$cat);
1.2 www 1758: }
1.231 albertel 1759: } elsif ($pro eq 'shc') {
1760: if ($show_course) {
1761: $output.=&secondlevel(
1762: $uname,$udom,$rol,$crs,$pub,$con,$row,$col,$prt,$img,$top,$bot,$act,$desc,$cat);
1763: }
1764: } elsif ($pro eq 'nsc') {
1765: if (!$show_course) {
1766: $output.=&secondlevel(
1767: $uname,$udom,$rol,$crs,$pub,$con,$row,$col,$prt,$img,$top,$bot,$act,$desc,$cat);
1768: }
1.81 matthew 1769: } elsif (($pro=~/^p(\w+)/) && ($prt)) {
1.295 raeburn 1770: my $priv = $1;
1771: if ($priv =~ /^mdc(Course|Community)/) {
1772: if ($crstype eq $1) {
1773: $priv = 'mdc';
1774: } else {
1775: next;
1776: }
1777: }
1.369.2.51 raeburn 1778: if ((($priv eq 'bre') && (&Apache::lonnet::allowed($priv,$prt) eq 'F')) ||
1779: (($priv ne 'bre') && (&Apache::lonnet::allowed($priv,$prt)))) {
1780: $output.=&switch($uname,$udom,$row,$col,$img,$top,$bot,$act,$desc,$cat);
1.4 www 1781: }
1.295 raeburn 1782: } elsif ($pro eq 'course') {
1783: if (($env{'request.course.fn'}) && ($crstype ne 'Community')) {
1.209 www 1784: $output.=&switch($uname,$udom,$row,$col,$img,$top,$bot,$act,$desc,$cat);
1.81 matthew 1785: }
1.295 raeburn 1786: } elsif ($pro eq 'community') {
1787: if (($env{'request.course.fn'}) && ($crstype eq 'Community')) {
1788: $output.=&switch($uname,$udom,$row,$col,$img,$top,$bot,$act,$desc,$cat);
1789: }
1.124 matthew 1790: } elsif ($pro =~ /^courseenv_(.*)$/) {
1791: my $key = $1;
1.307 raeburn 1792: if ($crstype ne 'Community') {
1793: my $coursepref = $env{'course.'.$env{'request.course.id'}.'.'.$key};
1794: if ($key eq 'canuse_pdfforms') {
1795: if ($env{'request.course.id'} && $coursepref eq '') {
1796: my %domdefs = &Apache::lonnet::get_domain_defaults($env{'course.'.$env{'request.course.id'}.'.domain'});
1797: $coursepref = $domdefs{'canuse_pdfforms'};
1798: }
1799: }
1800: if ($coursepref) {
1801: $output.=&switch($uname,$udom,$row,$col,$img,$top,$bot,$act,$desc,$cat);
1802: }
1.295 raeburn 1803: }
1804: } elsif ($pro =~ /^communityenv_(.*)$/) {
1805: my $key = $1;
1.307 raeburn 1806: if ($crstype eq 'Community') {
1807: my $coursepref = $env{'course.'.$env{'request.course.id'}.'.'.$key};
1808: if ($key eq 'canuse_pdfforms') {
1809: if ($env{'request.course.id'} && $coursepref eq '') {
1810: my %domdefs = &Apache::lonnet::get_domain_defaults($env{'course.'.$env{'request.course.id'}.'.domain'});
1811: $coursepref = $domdefs{'canuse_pdfforms'};
1812: }
1813: }
1814: if ($coursepref) {
1815: $output.=&switch($uname,$udom,$row,$col,$img,$top,$bot,$act,$desc,$cat);
1816: }
1.124 matthew 1817: }
1.81 matthew 1818: } elsif ($pro =~ /^course_(.*)$/) {
1819: # Check for permissions inside of a course
1.295 raeburn 1820: if (($env{'request.course.id'}) && ($crstype ne 'Community') &&
1.152 albertel 1821: (&Apache::lonnet::allowed($1,$env{'request.course.id'}.
1822: ($env{'request.course.sec'}?'/'.$env{'request.course.sec'}:''))
1.81 matthew 1823: )) {
1.209 www 1824: $output.=&switch($uname,$udom,$row,$col,$img,$top,$bot,$act,$desc,$cat);
1.26 www 1825: }
1.295 raeburn 1826: } elsif ($pro =~ /^community_(.*)$/) {
1827: # Check for permissions inside of a community
1828: if (($env{'request.course.id'}) && ($crstype eq 'Community') &&
1829: (&Apache::lonnet::allowed($1,$env{'request.course.id'}.
1830: ($env{'request.course.sec'}?'/'.$env{'request.course.sec'}:''))
1831: )) {
1832: $output.=&switch($uname,$udom,$row,$col,$img,$top,$bot,$act,$desc,$cat);
1833: }
1.4 www 1834: } elsif ($pro eq 'author') {
1835: if ($author) {
1.152 albertel 1836: if ((($prt eq 'rca') && ($env{'request.role'}=~/^ca/)) ||
1.234 raeburn 1837: (($prt eq 'raa') && ($env{'request.role'}=~/^aa/)) ||
1.152 albertel 1838: (($prt eq 'rau') && ($env{'request.role'}=~/^au/))) {
1.19 matthew 1839: # Check that we are on the correct machine
1.29 matthew 1840: my $cadom=$requested_domain;
1.152 albertel 1841: my $caname=$env{'user.name'};
1.234 raeburn 1842: if (($prt eq 'rca') || ($prt eq 'raa')) {
1.29 matthew 1843: ($cadom,$caname)=
1.206 albertel 1844: ($env{'request.role'}=~/($match_domain)\/($match_username)$/);
1.29 matthew 1845: }
1846: $act =~ s/\$caname/$caname/g;
1.353 www 1847: $act =~ s/\$cadom/$cadom/g;
1.19 matthew 1848: my $home = &Apache::lonnet::homeserver($caname,$cadom);
1.109 albertel 1849: my $allowed=0;
1850: my @ids=&Apache::lonnet::current_machine_ids();
1851: foreach my $id (@ids) { if ($id eq $home) { $allowed=1; } }
1852: if ($allowed) {
1.209 www 1853: $output.=&switch($caname,$cadom,
1854: $row,$col,$img,$top,$bot,$act,$desc,$cat);
1.19 matthew 1855: }
1.6 www 1856: }
1.2 www 1857: }
1.248 raeburn 1858: } elsif ($pro eq 'tools') {
1859: my @tools = ('aboutme','blog','portfolio');
1860: if (grep(/^\Q$prt\E$/,@tools)) {
1.249 raeburn 1861: if (!&Apache::lonnet::usertools_access($env{'user.name'},
1.251 raeburn 1862: $env{'user.domain'},
1863: $prt,undef,'tools')) {
1864: $output.=&clear($row,$col);
1865: next;
1866: }
1.278 raeburn 1867: } elsif (($prt eq 'reqcrsnsc') || ($prt eq 'reqcrsshc')) {
1868: if (($prt eq 'reqcrsnsc') && ($show_course)) {
1869: next;
1870: }
1871: if (($prt eq 'reqcrsshc') && (!$show_course)) {
1872: next;
1873: }
1.279 raeburn 1874: my $showreqcrs = &check_for_rcrs();
1.251 raeburn 1875: if (!$showreqcrs) {
1.248 raeburn 1876: $output.=&clear($row,$col);
1877: next;
1878: }
1879: }
1880: $prt='any';
1881: $output.=&secondlevel(
1882: $uname,$udom,$rol,$crs,$pub,$con,$row,$col,$prt,$img,$top,$bot,$act,$desc,$cat);
1.2 www 1883: }
1.13 harris41 1884: }
1.369.2.17 raeburn 1885: if ($env{'environment.remote'} eq 'on') {
1886: $output.="\nwindow.status='Synchronizing Time';swmenu.syncclock(1000*".time.");\nwindow.status='Remote Control Configured.';";
1887: if (&Apache::lonmsg::newmail()) {
1888: $output.='swmenu.setstatus("you have","messages");';
1889: }
1890: }
1.2 www 1891: return $output;
1892: }
1893:
1.279 raeburn 1894: sub check_for_rcrs {
1895: my $showreqcrs = 0;
1.369.2.49 raeburn 1896: my @reqtypes = ('official','unofficial','community','textbook');
1.280 raeburn 1897: foreach my $type (@reqtypes) {
1.279 raeburn 1898: if (&Apache::lonnet::usertools_access($env{'user.name'},
1899: $env{'user.domain'},
1900: $type,undef,'requestcourses')) {
1901: $showreqcrs = 1;
1902: last;
1903: }
1904: }
1.280 raeburn 1905: if (!$showreqcrs) {
1906: foreach my $type (@reqtypes) {
1907: if ($env{'environment.reqcrsotherdom.'.$type} ne '') {
1908: $showreqcrs = 1;
1909: last;
1910: }
1911: }
1912: }
1.279 raeburn 1913: return $showreqcrs;
1914: }
1915:
1.369.2.1 raeburn 1916: # ======================================================================= Close
1917:
1918: sub close {
1.369.2.17 raeburn 1919: unless ($env{'environment.remote'} eq 'on') { return ''; }
1.369.2.1 raeburn 1920: my $menuname = &get_menu_name();
1921: return(<<ENDCLOSE);
1922: <script type="text/javascript">
1923: // <![CDATA[
1924: window.status='Accessing Remote Control';
1925: menu=window.open("/adm/rat/empty.html","$menuname",
1926: "height=350,width=150,scrollbars=no,menubar=no");
1927: window.status='Disabling Remote Control';
1928: menu.active=0;
1929: menu.autologout=0;
1930: window.status='Closing Remote Control';
1931: menu.close();
1932: window.status='Done.';
1933: // ]]>
1934: </script>
1935: ENDCLOSE
1936: }
1937:
1.306 raeburn 1938: sub dc_popup_js {
1939: my %lt = &Apache::lonlocal::texthash(
1940: more => '(More ...)',
1941: less => '(Less ...)',
1942: );
1943: return <<"END";
1944:
1945: function showCourseID() {
1946: document.getElementById('dccid').style.display='block';
1947: document.getElementById('dccid').style.textAlign='left';
1.307 raeburn 1948: document.getElementById('dccid').style.textFace='normal';
1.369 raeburn 1949: document.getElementById('dccidtext').innerHTML ='<a href="javascript:hideCourseID();" class="LC_menubuttons_link">$lt{'less'}</a>';
1.306 raeburn 1950: return;
1951: }
1952:
1953: function hideCourseID() {
1954: document.getElementById('dccid').style.display='none';
1.369 raeburn 1955: document.getElementById('dccidtext').innerHTML ='<a href="javascript:showCourseID()" class="LC_menubuttons_link">$lt{'more'}</a>';
1.306 raeburn 1956: return;
1957: }
1958:
1959: END
1960:
1961: }
1962:
1.369.2.10 raeburn 1963: sub countdown_toggle_js {
1964: return <<"END";
1965:
1966: function toggleCountdown() {
1967: var countdownid = document.getElementById('duedatecountdown');
1968: var currstyle = countdownid.style.display;
1969: if (currstyle == 'inline') {
1970: countdownid.style.display = 'none';
1971: document.getElementById('ddcountcollapse').innerHTML='';
1972: document.getElementById('ddcountexpand').innerHTML='◄ ';
1973: } else {
1974: countdownid.style.display = 'inline';
1975: document.getElementById('ddcountcollapse').innerHTML='► ';
1976: document.getElementById('ddcountexpand').innerHTML='';
1977: }
1978: return;
1979: }
1980:
1981: END
1982: }
1983:
1.42 www 1984: sub utilityfunctions {
1.369.2.47 raeburn 1985: my ($httphost) = @_;
1.152 albertel 1986: my $currenturl=&Apache::lonnet::clutter(&Apache::lonnet::fixversion((split(/\?/,$env{'request.noversionuri'}))[0]));
1.316 droeschl 1987: if ($currenturl =~ m{^/adm/wrapper/ext/}
1988: && $env{'request.external.querystring'} ) {
1.293 raeburn 1989: $currenturl .= ($currenturl=~/\?/)?'&':'?'.$env{'request.external.querystring'};
1990: }
1.183 www 1991: $currenturl=&Apache::lonenc::check_encrypt(&unescape($currenturl));
1.125 albertel 1992:
1.152 albertel 1993: my $currentsymb=&Apache::lonenc::check_encrypt($env{'request.symb'});
1.175 albertel 1994:
1.306 raeburn 1995: my $dc_popup_cid;
1996: if ($env{'user.adv'} && exists($env{'user.role.dc./'.
1997: $env{'course.'.$env{'request.course.id'}.
1998: '.domain'}.'/'})) {
1999: $dc_popup_cid = &dc_popup_js();
2000: }
2001:
1.175 albertel 2002: my $start_page_annotate =
2003: &Apache::loncommon::start_page('Annotator',undef,
2004: {'only_body' => 1,
2005: 'js_ready' => 1,
2006: 'bgcolor' => '#BBBBBB',
2007: 'add_entries' => {
2008: 'onload' => 'javascript:document.goannotate.submit();'}});
2009:
1.205 albertel 2010: my $end_page_annotate =
2011: &Apache::loncommon::end_page({'js_ready' => 1});
2012:
1.369.2.26 raeburn 2013: my $jumptores = &Apache::lonhtmlcommon::javascript_jumpto_resource();
1.336 raeburn 2014:
1.368 www 2015: my $esc_url=&escape($currenturl);
2016: my $esc_symb=&escape($currentsymb);
1.332 wenzelju 2017:
1.369.2.10 raeburn 2018: my $countdown = &countdown_toggle_js();
2019:
1.369.2.53! raeburn 2020: my $hostvar = '
! 2021: function setLCHost() {
! 2022: var lcHostname="";
! 2023: ';
! 2024: if ($httphost =~ m{^https?\://}) {
! 2025: $hostvar .= ' var lcServer="'.$httphost.'";'."\n".
! 2026: ' var hostReg = /^https?:\/\/([^\/]+)$/i;'."\n".
! 2027: ' var match = hostReg.exec(lcServer);'."\n".
! 2028: ' if (match.length) {'."\n".
! 2029: ' if (match[1] == location.hostname) {'."\n".
! 2030: ' lcHostname=lcServer;'."\n".
! 2031: ' }'."\n".
! 2032: ' }'."\n";
! 2033: }
! 2034:
! 2035: $hostvar .= ' return lcHostname;'."\n".
! 2036: '}'."\n";
! 2037:
1.42 www 2038: return (<<ENDUTILITY)
1.369.2.53! raeburn 2039: $hostvar
1.368 www 2040: var currentURL=unescape("$esc_url");
2041: var reloadURL=unescape("$esc_url");
2042: var currentSymb=unescape("$esc_symb");
1.42 www 2043:
1.306 raeburn 2044: $dc_popup_cid
1.114 albertel 2045:
1.42 www 2046: function go(url) {
2047: if (url!='' && url!= null) {
2048: currentURL = null;
2049: currentSymb= null;
1.369.2.53! raeburn 2050: var lcHostname = setLCHost();
! 2051: window.location.href=lcHostname+url;
1.42 www 2052: }
2053: }
2054:
1.369.2.26 raeburn 2055: $jumptores
1.336 raeburn 2056:
1.42 www 2057: function gopost(url,postdata) {
2058: if (url!='') {
1.369.2.53! raeburn 2059: var lcHostname = setLCHost();
! 2060: this.document.server.action=lcHostname+url;
1.42 www 2061: this.document.server.postdata.value=postdata;
2062: this.document.server.command.value='';
2063: this.document.server.url.value='';
2064: this.document.server.symb.value='';
2065: this.document.server.submit();
2066: }
2067: }
2068:
2069: function gocmd(url,cmd) {
2070: if (url!='') {
1.369.2.53! raeburn 2071: var lcHostname = setLCHost();
! 2072: this.document.server.action=lcHostname+url;
1.42 www 2073: this.document.server.postdata.value='';
2074: this.document.server.command.value=cmd;
2075: this.document.server.url.value=currentURL;
2076: this.document.server.symb.value=currentSymb;
2077: this.document.server.submit();
2078: }
1.57 www 2079: }
2080:
1.121 raeburn 2081: function gocstr(url,filename) {
2082: if (url == '/adm/cfile?action=delete') {
2083: this.document.cstrdelete.filename.value = filename
2084: this.document.cstrdelete.submit();
2085: return;
2086: }
1.137 raeburn 2087: if (url == '/adm/printout') {
2088: this.document.cstrprint.postdata.value = filename
2089: this.document.cstrprint.curseed.value = 0;
2090: this.document.cstrprint.problemtype.value = 0;
1.138 raeburn 2091: if (this.document.lonhomework) {
2092: if ((this.document.lonhomework.rndseed) && (this.document.lonhomework.rndseed.value != null) && (this.document.lonhomework.rndseed.value != '')) {
2093: this.document.cstrprint.curseed.value = this.document.lonhomework.rndseed.value
2094: }
2095: if (this.document.lonhomework.problemtype) {
1.164 albertel 2096: if (this.document.lonhomework.problemtype.value) {
2097: this.document.cstrprint.problemtype.value =
2098: this.document.lonhomework.problemtype.value;
2099: } else if (this.document.lonhomework.problemtype.options) {
2100: for (var i=0; i<this.document.lonhomework.problemtype.options.length; i++) {
2101: if (this.document.lonhomework.problemtype.options[i].selected) {
2102: if (this.document.lonhomework.problemtype.options[i].value != null && this.document.lonhomework.problemtype.options[i].value != '') {
2103: this.document.cstrprint.problemtype.value = this.document.lonhomework.problemtype.options[i].value
2104: }
2105: }
2106: }
2107: }
2108: }
2109: }
1.137 raeburn 2110: this.document.cstrprint.submit();
2111: return;
2112: }
1.121 raeburn 2113: if (url !='') {
2114: this.document.constspace.filename.value = filename;
2115: this.document.constspace.action = url;
2116: this.document.constspace.submit();
2117: }
2118: }
2119:
1.131 raeburn 2120: function golist(url) {
2121: if (url!='' && url!= null) {
2122: currentURL = null;
2123: currentSymb= null;
1.369.2.53! raeburn 2124: var lcHostname = setLCHost();
! 2125: top.location.href=lcHostname+url;
1.131 raeburn 2126: }
2127: }
2128:
2129:
1.121 raeburn 2130:
1.369.2.52 raeburn 2131: function catalog_info(isMobile) {
2132: if (isMobile == 1) {
2133: openMyModal(window.location.pathname+'.meta?modal=1',500,400,'yes');
2134: } else {
2135: loncatinfo=window.open(window.location.pathname+'.meta',"LONcatInfo",'height=500,width=400,resizable=yes,scrollbars=yes,location=no,menubar=no,toolbar=no');
2136: }
1.57 www 2137: }
2138:
2139: function chat_win() {
1.369.2.53! raeburn 2140: var lcHostname = setLCHost();
! 2141: lonchat=window.open(lcHostname+'/res/adm/pages/chatroom.html',"LONchat",'height=320,width=480,resizable=yes,location=no,menubar=no,toolbar=no');
1.42 www 2142: }
1.169 raeburn 2143:
2144: function group_chat(group) {
1.369.2.53! raeburn 2145: var lcHostname = setLCHost();
! 2146: var url = lcHostname+'/adm/groupchat?group='+group;
1.169 raeburn 2147: var winName = 'LONchat_'+group;
2148: grpchat=window.open(url,winName,'height=320,width=280,resizable=yes,location=no,menubar=no,toolbar=no');
2149: }
1.175 albertel 2150:
2151: function annotate() {
2152: w_Annotator_flag=1;
2153: annotator=window.open('','Annotator','width=365,height=265,scrollbars=0');
2154: annotator.document.write(
2155: '$start_page_annotate'
2156: +"<form name='goannotate' target='Annotator' method='post' "
2157: +"action='/adm/annotations'>"
1.217 albertel 2158: +"<input type='hidden' name='symbnew' value='"+currentSymb+"' />"
1.181 albertel 2159: +"<\\/form>"
1.205 albertel 2160: +'$end_page_annotate');
1.175 albertel 2161: annotator.document.close();
2162: }
2163:
1.369.2.8 raeburn 2164: function open_StoredLinks_Import(rat) {
2165: var newWin;
1.369.2.53! raeburn 2166: var lcHostname = setLCHost();
1.369.2.8 raeburn 2167: if (rat) {
1.369.2.53! raeburn 2168: newWin = window.open(lcHostname+'/adm/wishlist?inhibitmenu=yes&mode=import&rat='+rat,
1.369.2.8 raeburn 2169: 'wishlistImport','scrollbars=1,resizable=1,menubar=0');
2170: }
2171: else {
1.369.2.53! raeburn 2172: newWin = window.open(lcHostname+'/adm/wishlist?inhibitmenu=yes&mode=import',
1.369.2.8 raeburn 2173: 'wishlistImport','scrollbars=1,resizable=1,menubar=0');
2174: }
2175: newWin.focus();
2176: }
2177:
1.369.2.4 raeburn 2178: (function (\$) {
2179: \$(document).ready(function () {
2180: \$.single=function(a){return function(b){a[0]=b;return a}}(\$([1]));
2181: /*\@cc_on
2182: if (!window.XMLHttpRequest) {
2183: \$('.LC_hoverable').each(function () {
2184: this.attachEvent('onmouseenter', function (evt) { \$.single(evt.srcElement).addClass('hover'); });
2185: this.attachEvent('onmouseleave', function (evt) { \$.single(evt.srcElement).removeClass('hover'); });
2186: });
2187: }
2188: \@*/
2189: });
2190: }(jQuery));
2191:
1.369.2.10 raeburn 2192: $countdown
2193:
1.42 www 2194: ENDUTILITY
2195: }
2196:
2197: sub serverform {
2198: return(<<ENDSERVERFORM);
1.181 albertel 2199: <form name="server" action="/adm/logout" method="post" target="_top">
1.42 www 2200: <input type="hidden" name="postdata" value="none" />
2201: <input type="hidden" name="command" value="none" />
2202: <input type="hidden" name="url" value="none" />
2203: <input type="hidden" name="symb" value="none" />
2204: </form>
2205: ENDSERVERFORM
2206: }
1.113 albertel 2207:
1.121 raeburn 2208: sub constspaceform {
2209: return(<<ENDCONSTSPACEFORM);
1.181 albertel 2210: <form name="constspace" action="/adm/logout" method="post" target="_top">
1.121 raeburn 2211: <input type="hidden" name="filename" value="" />
2212: </form>
1.181 albertel 2213: <form name="cstrdelete" action="/adm/cfile" method="post" target="_top">
1.121 raeburn 2214: <input type="hidden" name="action" value="delete" />
2215: <input type="hidden" name="filename" value="" />
2216: </form>
1.181 albertel 2217: <form name="cstrprint" action="/adm/printout" target="_parent" method="post">
1.137 raeburn 2218: <input type="hidden" name="postdata" value="" />
2219: <input type="hidden" name="curseed" value="" />
2220: <input type="hidden" name="problemtype" value="" />
2221: </form>
2222:
1.121 raeburn 2223: ENDCONSTSPACEFORM
2224: }
2225:
1.369.2.17 raeburn 2226: sub get_nav_status {
2227: my $navstatus="swmenu.w_loncapanav_flag=";
2228: if ($env{'environment.remotenavmap'} eq 'on') {
2229: $navstatus.="1";
2230: } else {
2231: $navstatus.="-1";
2232: }
2233: return $navstatus;
2234: }
2235:
1.220 raeburn 2236: sub hidden_button_check {
1.317 droeschl 2237: if ( $env{'request.course.id'} eq ''
2238: || $env{'request.role.adv'} ) {
2239:
1.220 raeburn 2240: return;
2241: }
1.232 raeburn 2242: my $buttonshide = &Apache::lonnet::EXT('resource.0.buttonshide');
2243: return $buttonshide;
1.220 raeburn 2244: }
1.184 raeburn 2245:
1.235 raeburn 2246: sub roles_selector {
1.369.2.47 raeburn 2247: my ($cdom,$cnum,$httphost) = @_;
1.298 raeburn 2248: my $crstype = &Apache::loncommon::course_type();
1.235 raeburn 2249: my $now = time;
1.350 raeburn 2250: my (%courseroles,%seccount,%courseprivs);
1.235 raeburn 2251: my $is_cc;
1.369.2.30 raeburn 2252: my ($js,$form,$switcher,$switchtext);
1.298 raeburn 2253: my $ccrole;
2254: if ($crstype eq 'Community') {
2255: $ccrole = 'co';
2256: } else {
2257: $ccrole = 'cc';
1.350 raeburn 2258: }
1.369.2.23 raeburn 2259: my ($priv,$gotsymb,$destsymb);
1.350 raeburn 2260: my $destinationurl = $ENV{'REQUEST_URI'};
1.369.2.23 raeburn 2261: if ($destinationurl =~ /\?symb=/) {
2262: $gotsymb = 1;
2263: } elsif ($destinationurl =~ m{^/enc/}) {
2264: my $plainurl = &Apache::lonenc::unencrypted($destinationurl);
2265: if ($plainurl =~ /\?symb=/) {
2266: $gotsymb = 1;
2267: }
2268: }
2269: unless ($gotsymb) {
2270: $destsymb = &Apache::lonnet::symbread();
2271: if ($destsymb ne '') {
2272: $destsymb = &Apache::lonenc::check_encrypt($destsymb);
2273: }
2274: }
1.350 raeburn 2275: my $reqprivs = &required_privs();
2276: if (ref($reqprivs) eq 'HASH') {
2277: my $destination = $destinationurl;
2278: $destination =~ s/(\?.*)$//;
2279: if (exists($reqprivs->{$destination})) {
2280: $priv = $reqprivs->{$destination};
2281: }
2282: }
1.298 raeburn 2283: if ($env{'user.role.'.$ccrole.'./'.$cdom.'/'.$cnum}) {
2284: my ($start,$end) = split(/\./,$env{'user.role.'.$ccrole.'./'.$cdom.'/'.$cnum});
1.235 raeburn 2285:
2286: if ((($start) && ($start<0)) ||
2287: (($end) && ($end<$now)) ||
2288: (($start) && ($now<$start))) {
2289: $is_cc = 0;
2290: } else {
2291: $is_cc = 1;
2292: }
2293: }
2294: if ($is_cc) {
1.350 raeburn 2295: &get_all_courseroles($cdom,$cnum,\%courseroles,\%seccount,\%courseprivs,$priv);
1.235 raeburn 2296: } else {
1.262 raeburn 2297: my %gotnosection;
1.235 raeburn 2298: foreach my $item (keys(%env)) {
1.239 raeburn 2299: if ($item =~ m-^user\.role\.([^.]+)\./\Q$cdom\E/\Q$cnum\E/?(\w*)$-) {
1.235 raeburn 2300: my $role = $1;
2301: my $sec = $2;
2302: next if ($role eq 'gr');
2303: my ($start,$end) = split(/\./,$env{$item});
2304: next if (($start && $start > $now) || ($end && $end < $now));
2305: if ($sec eq '') {
1.239 raeburn 2306: if (!$gotnosection{$role}) {
2307: $seccount{$role} ++;
2308: $gotnosection{$role} = 1;
2309: }
1.235 raeburn 2310: }
1.350 raeburn 2311: if ($priv ne '') {
2312: my $cnumsec = $cnum;
2313: if ($sec ne '') {
2314: $cnumsec .= "/$sec";
2315: }
2316: $courseprivs{"$role./$cdom/$cnumsec./"} =
2317: $env{"user.priv.$role./$cdom/$cnumsec./"};
2318: $courseprivs{"$role./$cdom/$cnumsec./$cdom/"} =
2319: $env{"user.priv.$role./$cdom/$cnumsec./$cdom/"};
2320: $courseprivs{"$role./$cdom/$cnumsec./$cdom/$cnumsec"} =
2321: $env{"user.priv.$role./$cdom/$cnumsec./$cdom/$cnumsec"};
2322: }
1.235 raeburn 2323: if (ref($courseroles{$role}) eq 'ARRAY') {
1.239 raeburn 2324: if ($sec ne '') {
1.264 raeburn 2325: if (!grep(/^\Q$sec\E$/,@{$courseroles{$role}})) {
1.239 raeburn 2326: push(@{$courseroles{$role}},$sec);
2327: $seccount{$role} ++;
2328: }
2329: }
2330: } else {
2331: @{$courseroles{$role}} = ();
2332: if ($sec ne '') {
2333: $seccount{$role} ++;
1.235 raeburn 2334: push(@{$courseroles{$role}},$sec);
2335: }
2336: }
2337: }
2338: }
2339: }
1.369.2.46 raeburn 2340: $switchtext = 'Switch role'; # do not translate here
1.298 raeburn 2341: my @roles_order = ($ccrole,'in','ta','ep','ad','st');
1.369.2.30 raeburn 2342: my $numdiffsec;
2343: if (keys(%seccount) == 1) {
2344: foreach my $key (keys(%seccount)) {
2345: $numdiffsec = $seccount{$key};
2346: }
2347: }
2348: if ((keys(%seccount) > 1) || ($numdiffsec > 1)) {
2349: my @submenu;
2350: $js = &jump_to_role($cdom,$cnum,\%seccount,\%courseroles,\%courseprivs,$priv);
2351: $form =
1.369.2.47 raeburn 2352: '<form name="rolechooser" method="post" action="'.$httphost.'/adm/roles">'."\n".
1.369.2.30 raeburn 2353: ' <input type="hidden" name="destinationurl" value="'.
2354: &HTML::Entities::encode($destinationurl).'" />'."\n".
2355: ' <input type="hidden" name="gotorole" value="1" />'."\n".
2356: ' <input type="hidden" name="selectrole" value="" />'."\n".
2357: ' <input type="hidden" name="switchrole" value="" />'."\n";
2358: if ($destsymb ne '') {
2359: $form .= ' <input type="hidden" name="destsymb" value="'.
2360: &HTML::Entities::encode($destsymb).'" />'."\n";
2361: }
2362: $form .= '</form>'."\n";
1.235 raeburn 2363: foreach my $role (@roles_order) {
1.369.2.30 raeburn 2364: my $include;
1.235 raeburn 2365: if (defined($courseroles{$role})) {
1.369.2.30 raeburn 2366: if ($env{'request.role'} =~ m{^\Q$role\E}) {
2367: if ($seccount{$role} > 1) {
2368: $include = 1;
2369: }
2370: } else {
2371: $include = 1;
2372: }
2373: }
2374: if ($include) {
2375: push(@submenu,['javascript:adhocRole('."'$role'".')',
2376: &Apache::lonnet::plaintext($role,$crstype)]);
1.235 raeburn 2377: }
2378: }
2379: foreach my $role (sort(keys(%courseroles))) {
2380: if ($role =~ /^cr/) {
1.369.2.30 raeburn 2381: my $include;
2382: if ($env{'request.role'} =~ m{^\Q$role\E}) {
2383: if ($seccount{$role} > 1) {
2384: $include = 1;
2385: }
2386: } else {
2387: $include = 1;
2388: }
2389: if ($include) {
2390: push(@submenu,['javascript:adhocRole('."'$role'".')',
2391: &Apache::lonnet::plaintext($role)]);
2392: }
1.235 raeburn 2393: }
2394: }
1.369.2.30 raeburn 2395: if (@submenu > 0) {
2396: $switcher = &create_submenu('','',$switchtext,\@submenu);
1.369.2.23 raeburn 2397: }
1.235 raeburn 2398: }
1.369.2.30 raeburn 2399: return ($js,$form,$switcher);
1.235 raeburn 2400: }
2401:
1.262 raeburn 2402: sub get_all_courseroles {
1.350 raeburn 2403: my ($cdom,$cnum,$courseroles,$seccount,$courseprivs) = @_;
1.351 raeburn 2404: unless ((ref($courseroles) eq 'HASH') && (ref($seccount) eq 'HASH') &&
1.350 raeburn 2405: (ref($courseprivs) eq 'HASH')) {
1.262 raeburn 2406: return;
2407: }
2408: my ($result,$cached) =
2409: &Apache::lonnet::is_cached_new('getcourseroles',$cdom.'_'.$cnum);
2410: if (defined($cached)) {
2411: if (ref($result) eq 'HASH') {
2412: if ((ref($result->{'roles'}) eq 'HASH') &&
1.350 raeburn 2413: (ref($result->{'seccount'}) eq 'HASH') &&
2414: (ref($result->{'privs'}) eq 'HASH')) {
1.262 raeburn 2415: %{$courseroles} = %{$result->{'roles'}};
2416: %{$seccount} = %{$result->{'seccount'}};
1.350 raeburn 2417: %{$courseprivs} = %{$result->{'privs'}};
1.262 raeburn 2418: return;
2419: }
2420: }
2421: }
2422: my %gotnosection;
2423: my %adv_roles =
2424: &Apache::lonnet::get_course_adv_roles($env{'request.course.id'},1);
2425: foreach my $role (keys(%adv_roles)) {
2426: my ($urole,$usec) = split(/:/,$role);
2427: if (!$gotnosection{$urole}) {
2428: $seccount->{$urole} ++;
2429: $gotnosection{$urole} = 1;
2430: }
2431: if (ref($courseroles->{$urole}) eq 'ARRAY') {
2432: if ($usec ne '') {
2433: if (!grep(/^Q$usec\E$/,@{$courseroles->{$urole}})) {
2434: push(@{$courseroles->{$urole}},$usec);
2435: $seccount->{$urole} ++;
2436: }
2437: }
2438: } else {
2439: @{$courseroles->{$urole}} = ();
2440: if ($usec ne '') {
2441: $seccount->{$urole} ++;
2442: push(@{$courseroles->{$urole}},$usec);
2443: }
2444: }
1.350 raeburn 2445: my $area = '/'.$cdom.'/'.$cnum;
2446: if ($usec ne '') {
2447: $area .= '/'.$usec;
2448: }
2449: if ($role =~ /^cr\//) {
2450: &Apache::lonnet::custom_roleprivs($courseprivs,$urole,$cdom,$cnum,$urole.'.'.$area,$area);
2451: } else {
2452: &Apache::lonnet::standard_roleprivs($courseprivs,$urole,$cdom,$urole.'.'.$area,$cnum,$area);
2453: }
1.262 raeburn 2454: }
2455: my %sections_count = &Apache::loncommon::get_sections($cdom,$cnum,['st']);
2456: @{$courseroles->{'st'}} = ();
1.350 raeburn 2457: &Apache::lonnet::standard_roleprivs($courseprivs,'st',$cdom,"st./$cdom/$cnum",$cnum,"/$cdom/$cnum");
1.262 raeburn 2458: if (keys(%sections_count) > 0) {
2459: push(@{$courseroles->{'st'}},keys(%sections_count));
1.350 raeburn 2460: $seccount->{'st'} = scalar(keys(%sections_count));
1.262 raeburn 2461: }
1.369.2.38 raeburn 2462: $seccount->{'st'} ++; # Increment for a section-less student role.
1.262 raeburn 2463: my $rolehash = {
2464: 'roles' => $courseroles,
2465: 'seccount' => $seccount,
1.350 raeburn 2466: 'privs' => $courseprivs,
1.262 raeburn 2467: };
2468: &Apache::lonnet::do_cache_new('getcourseroles',$cdom.'_'.$cnum,$rolehash);
2469: return;
2470: }
2471:
1.235 raeburn 2472: sub jump_to_role {
1.350 raeburn 2473: my ($cdom,$cnum,$seccount,$courseroles,$courseprivs,$priv) = @_;
1.239 raeburn 2474: my %lt = &Apache::lonlocal::texthash(
2475: this => 'This role has section(s) associated with it.',
2476: ente => 'Enter a specific section.',
2477: orlb => 'Enter a specific section, or leave blank for no section.',
2478: avai => 'Available sections are:',
2479: youe => 'You entered an invalid section choice:',
1.352 raeburn 2480: plst => 'Please try again.',
1.350 raeburn 2481: role => 'The role you selected is not permitted to view the current page.',
2482: swit => 'Switch role, but display Main Menu page instead?',
1.239 raeburn 2483: );
2484: my $js;
2485: if (ref($courseroles) eq 'HASH') {
2486: $js = ' var secpick = new Array("'.$lt{'ente'}.'","'.$lt{'orlb'}.'");'."\n".
2487: ' var numsec = new Array();'."\n".
2488: ' var rolesections = new Array();'."\n".
2489: ' var rolenames = new Array();'."\n".
2490: ' var roleseclist = new Array();'."\n";
2491: my @items = keys(%{$courseroles});
2492: for (my $i=0; $i<@items; $i++) {
2493: $js .= ' rolenames['.$i.'] = "'.$items[$i].'";'."\n";
2494: my ($secs,$secstr);
2495: if (ref($courseroles->{$items[$i]}) eq 'ARRAY') {
2496: my @sections = sort { $a <=> $b } @{$courseroles->{$items[$i]}};
2497: $secs = join('","',@sections);
2498: $secstr = join(', ',@sections);
2499: }
2500: $js .= ' rolesections['.$i.'] = new Array("'.$secs.'");'."\n".
2501: ' roleseclist['.$i.'] = "'.$secstr.'";'."\n".
2502: ' numsec['.$i.'] = "'.$seccount->{$items[$i]}.'";'."\n";
2503: }
2504: }
1.350 raeburn 2505: my $checkroles = 0;
2506: if ($priv && ref($courseprivs) eq 'HASH') {
2507: my (%disallowed,%allowed,@disallow);
2508: foreach my $role (sort(keys(%{$courseprivs}))) {
2509: my $trole;
2510: if ($role =~ m{^(.+?)\Q./$cdom/$cnum\E}) {
2511: $trole = $1;
2512: }
2513: if (($trole ne '') && ($trole ne 'cm')) {
2514: if ($courseprivs->{$role} =~ /\Q:$priv\E($|:|\&\w+)/) {
2515: $allowed{$trole} = 1;
2516: } else {
2517: $disallowed{$trole} = 1;
2518: }
2519: }
2520: }
2521: foreach my $trole (keys(%disallowed)) {
2522: unless ($allowed{$trole}) {
2523: push(@disallow,$trole);
2524: }
2525: }
2526: if (@disallow > 0) {
2527: $checkroles = 1;
2528: $js .= " var disallow = new Array('".join("','",@disallow)."');\n".
2529: " var rolecheck = 1;\n";
2530: }
2531: }
2532: if (!$checkroles) {
2533: $js .= " var disallow = new Array();\n".
2534: " rolecheck = 0;\n";
2535: }
1.273 droeschl 2536: return <<"END";
1.235 raeburn 2537: <script type="text/javascript">
1.273 droeschl 2538: //<![CDATA[
1.369.2.30 raeburn 2539: function adhocRole(newrole) {
1.239 raeburn 2540: $js
1.235 raeburn 2541: if (newrole == '') {
1.350 raeburn 2542: return;
1.235 raeburn 2543: }
1.239 raeburn 2544: var fullrole = newrole+'./$cdom/$cnum';
2545: var selidx = '';
2546: for (var i=0; i<rolenames.length; i++) {
2547: if (rolenames[i] == newrole) {
2548: selidx = i;
2549: }
2550: }
1.350 raeburn 2551: if (rolecheck > 0) {
2552: for (var i=0; i<disallow.length; i++) {
2553: if (disallow[i] == newrole) {
2554: if (confirm("$lt{'role'}\\n$lt{'swit'}")) {
2555: document.rolechooser.destinationurl.value = '/adm/menu';
2556: } else {
2557: return;
2558: }
2559: }
2560: }
2561: }
1.239 raeburn 2562: var secok = 1;
2563: var secchoice = '';
2564: if (selidx >= 0) {
2565: if (numsec[selidx] > 1) {
2566: secok = 0;
2567: var numrolesec = rolesections[selidx].length;
2568: var msgidx = numsec[selidx] - numrolesec;
1.339 raeburn 2569: secchoice = prompt("$lt{'this'} "+secpick[msgidx]+"\\n$lt{'avai'} "+roleseclist[selidx],"");
1.239 raeburn 2570: if (secchoice == '') {
2571: if (msgidx > 0) {
2572: secok = 1;
2573: }
2574: } else {
2575: for (var j=0; j<rolesections[selidx].length; j++) {
2576: if (rolesections[selidx][j] == secchoice) {
2577: secok = 1;
2578: }
2579: }
2580: }
2581: } else {
2582: if (rolesections[selidx].length == 1) {
2583: secchoice = rolesections[selidx][0];
2584: }
2585: }
2586: }
2587: if (secok == 1) {
2588: if (secchoice != '') {
2589: fullrole += '/'+secchoice;
2590: }
2591: } else {
2592: document.rolechooser.elements[roleitem].selectedIndex = 0;
2593: if (secchoice != null) {
2594: alert("$lt{'youe'} \\""+secchoice+"\\".\\n $lt{'plst'}");
2595: }
2596: return;
2597: }
2598: if (fullrole == "$env{'request.role'}") {
1.235 raeburn 2599: return;
2600: }
2601: itemid = retrieveIndex('gotorole');
2602: if (itemid != -1) {
1.239 raeburn 2603: document.rolechooser.elements[itemid].name = fullrole;
1.235 raeburn 2604: }
1.369.2.30 raeburn 2605: document.rolechooser.switchrole.value = fullrole;
1.235 raeburn 2606: document.rolechooser.selectrole.value = '1';
2607: document.rolechooser.submit();
2608: return;
2609: }
2610:
2611: function retrieveIndex(item) {
2612: for (var i=0;i<document.rolechooser.elements.length;i++) {
2613: if (document.rolechooser.elements[i].name == item) {
2614: return i;
2615: }
2616: }
2617: return -1;
2618: }
1.273 droeschl 2619: // ]]>
1.235 raeburn 2620: </script>
2621: END
2622: }
2623:
1.350 raeburn 2624: sub required_privs {
2625: my $privs = {
2626: '/adm/parmset' => 'opa',
2627: '/adm/courseprefs' => 'opa',
2628: '/adm/whatsnew' => 'whn',
2629: '/adm/populate' => 'cst',
2630: '/adm/trackstudent' => 'vsa',
2631: '/adm/statistics' => 'vgr',
1.366 raeburn 2632: '/adm/setblock' => 'dcm',
1.367 raeburn 2633: '/adm/coursedocs' => 'mdc',
1.350 raeburn 2634: };
2635: unless ($env{'course.'.$env{'request.course.id'}.'.grading'} eq 'spreadsheet') {
1.364 raeburn 2636: $privs->{'/adm/classcalc'} = 'vgr',
2637: $privs->{'/adm/assesscalc'} = 'vgr',
2638: $privs->{'/adm/studentcalc'} = 'vgr';
1.350 raeburn 2639: }
2640: return $privs;
2641: }
1.235 raeburn 2642:
1.369.2.10 raeburn 2643: sub countdown_timer {
2644: if (($env{'request.course.id'}) && ($env{'request.symb'} ne '') &&
1.369.2.24 raeburn 2645: ($env{'request.filename'}=~/$LONCAPA::assess_re/)) {
2646: my ($type,$hastimeleft,$slothastime);
2647: my $now = time;
2648: if ($env{'request.filename'} =~ /\.task$/) {
2649: $type = 'Task';
2650: } else {
2651: $type = 'problem';
2652: }
2653: my ($status,$accessmsg,$slot_name,$slot) =
2654: &Apache::lonhomework::check_slot_access('0',$type);
2655: if ($slot_name ne '') {
2656: if (ref($slot) eq 'HASH') {
2657: if (($slot->{'starttime'} < $now) &&
2658: ($slot->{'endtime'} > $now)) {
2659: $slothastime = 1;
2660: }
2661: }
2662: }
2663: if ($status ne 'CAN_ANSWER') {
2664: return;
2665: }
1.369.2.10 raeburn 2666: my $duedate = &Apache::lonnet::EXT("resource.0.duedate");
1.369.2.12 raeburn 2667: my @interval=&Apache::lonnet::EXT("resource.0.interval");
1.369.2.13 raeburn 2668: if (@interval > 1) {
2669: my $first_access=&Apache::lonnet::get_first_access($interval[1]);
2670: if ($first_access > 0) {
2671: if ($first_access+$interval[0] > time) {
2672: $hastimeleft = 1;
2673: }
2674: }
2675: }
1.369.2.12 raeburn 2676: if (($duedate && $duedate > time) ||
1.369.2.24 raeburn 2677: (!$duedate && $hastimeleft) ||
2678: ($slot_name ne '' && $slothastime)) {
1.369.2.11 raeburn 2679: my ($collapse,$expand,$alttxt,$title,$currdisp);
1.369.2.24 raeburn 2680: if ((@interval > 1 && $hastimeleft) ||
2681: ($type eq 'Task' && $slothastime)) {
1.369.2.10 raeburn 2682: $currdisp = 'inline';
2683: $collapse = '► ';
2684: } else {
2685: $currdisp = 'none';
2686: $expand = '◄ ';
2687: }
2688: unless ($env{'environment.icons'} eq 'iconsonly') {
1.369.2.11 raeburn 2689: $alttxt = &mt('Timer');
2690: $title = $alttxt.' ';
1.369.2.10 raeburn 2691: }
2692: my $desc = &mt('Countdown to due date/time');
2693: return <<END;
2694:
2695: <a href="javascript:toggleCountdown();" class="LC_menubuttons_link">
2696: <span id="ddcountcollapse" class="LC_menubuttons_inline_text">
2697: $collapse
1.369.2.11 raeburn 2698: </span></a>
1.369.2.10 raeburn 2699: <span id="duedatecountdown" class="LC_menubuttons_inline_text" style="display: $currdisp;"></span>
2700: <a href="javascript:toggleCountdown();" class="LC_menubuttons_link">
2701: <span id="ddcountexpand" class="LC_menubuttons_inline_text" >$expand</span>
1.369.2.11 raeburn 2702: <img src="/res/adm/pages/timer.png" title="$desc" class="LC_icon" alt="$alttxt" /><span class="LC_menubuttons_inline_text">$title</span></a>
1.369.2.10 raeburn 2703: END
2704: }
2705: }
2706: return;
2707: }
2708:
1.2 www 2709: # ================================================================ Main Program
2710:
1.16 harris41 2711: BEGIN {
1.166 albertel 2712: if (! defined($readdesk)) {
1.283 droeschl 2713: {
2714: my $tabfile = $Apache::lonnet::perlvar{'lonTabDir'}.'/mydesk.tab';
2715: if ( CORE::open( my $config,"<$tabfile") ) {
2716: while (my $configline=<$config>) {
2717: $configline=(split(/\#/,$configline))[0];
2718: $configline=~s/^\s+//;
2719: chomp($configline);
1.209 www 2720: if ($configline=~/^cat\:/) {
1.283 droeschl 2721: my @entries=split(/\:/,$configline);
2722: $category_positions{$entries[2]}=$entries[1];
2723: $category_names{$entries[2]}=$entries[3];
2724: } elsif ($configline=~/^prim\:/) {
1.369.2.42 raeburn 2725: my @entries = (split(/\:/, $configline))[1..6];
1.369.2.30 raeburn 2726: push(@primary_menu,\@entries);
1.369.2.3 raeburn 2727: } elsif ($configline=~/^primsub\:/) {
2728: my ($parent,@entries) = (split(/\:/, $configline))[1..4];
1.369.2.30 raeburn 2729: push(@{$primary_submenu{$parent}},\@entries);
1.283 droeschl 2730: } elsif ($configline=~/^scnd\:/) {
2731: my @entries = (split(/\:/, $configline))[1..5];
1.369.2.30 raeburn 2732: push(@secondary_menu,\@entries);
1.369.2.5 raeburn 2733: } elsif ($configline=~/^scndsub\:/) {
2734: my ($parent,@entries) = (split(/\:/, $configline))[1..4];
1.369.2.30 raeburn 2735: push(@{$secondary_submenu{$parent}},\@entries);
1.283 droeschl 2736: } elsif ($configline) {
2737: push(@desklines,$configline);
2738: }
2739: }
2740: CORE::close($config);
2741: }
2742: }
2743: $readdesk='done';
1.2 www 2744: }
2745: }
1.30 www 2746:
1.1 www 2747: 1;
2748: __END__
2749:
FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>