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

1.1       www         1: # The LearningOnline Network with CAPA
                      2: # Routines to control the menu
                      3: #
1.517   ! raeburn     4: # $Id: lonmenu.pm,v 1.516 2022/05/24 16:23:03 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.371     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.371     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.371     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.516     raeburn   102: =item prep_menuitems(\@menuitem,$ltitarget,$deeplinktarget,$listclass,$linkattr)
1.314     droeschl  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.415     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.415     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.375     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: 
1.447     raeburn   127: Inputs: 6 - (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:             (e) boolean to indicate whether to call &mt() to translate 
                    131:                 name of menu item,
                    132:             (f) optional class for <li> element in primary menu, for which
                    133:                 sub menu is being generated.
1.375     raeburn   134: 
1.431     golterma  135:  The underlying datastructure used in (d) contains data from mydesk.tab.
                    136:  It consists of an array which has an array for each item appearing in
                    137:  the menu (e.g. [["link", "title", "condition"]] for a single-item menu).
                    138:  create_submenu() supports also the creation of XHTML for nested dropdown
                    139:  menus represented by unordered lists. This is done by replacing the
                    140:  scalar used for the link with an arrayreference containing the menuitems
                    141:  for the nested menu. This can be done recursively so that the next menu
                    142:  may also contain nested submenus.
                    143: 
                    144:  Example:
                    145:  [											# begin of datastructure
                    146: 	["/home/", "Home", "condition1"], 		# 1st item of the 1st layer menu
                    147: 	[										# 2nd item of the 1st layer menu
                    148: 		[									# anon. array for nested menu
                    149: 			["/path1", "Path1", undef], 	# 1st item of the 2nd layer menu
                    150: 			["/path2", "Path2", undef], 	# 2nd item of the 2nd layer menu
                    151: 			[								# 3rd item of the 2nd layer menu
                    152: 				[[...], [...], ..., [...]],	# containing another menu layer
                    153: 				"Sub-Sub-Menu",				# title for this container
                    154: 				undef
                    155: 			]
                    156: 		],									# end of array/nested menu
                    157: 		"Sub-Menu",							# title for the container item
                    158: 		undef
                    159: 	]										# end of 2nd item of the 1st layer menu
                    160: ]
                    161: 
1.244     jms       162: =item innerregister()
                    163: 
1.320     droeschl  164: This gets called in order to register a URL in the body of the document
1.244     jms       165: 
                    166: =item clear()
                    167: 
                    168: =item switch()
                    169: 
                    170: Switch a button or create a link
                    171: Switch acts on the javascript that is executed when a button is clicked.  
                    172: The javascript is usually similar to "go('/adm/roles')" or "cstrgo(..)".
                    173: 
                    174: =item secondlevel()
                    175: 
                    176: =item openmenu()
                    177: 
                    178: =item inlinemenu()
                    179: 
                    180: =item rawconfig()
                    181: 
                    182: =item utilityfunctions()
                    183: 
1.371     raeburn   184: Output from this routine is a number of javascript functions called by
                    185: items in the inline menu, and in some cases items in the Main Menu page. 
                    186: 
1.244     jms       187: =item serverform()
                    188: 
                    189: =item constspaceform()
                    190: 
                    191: =item get_nav_status()
                    192: 
                    193: =item hidden_button_check()
                    194: 
                    195: =item roles_selector()
                    196: 
                    197: =item jump_to_role()
                    198: 
                    199: =back
                    200: 
                    201: =cut
                    202: 
1.1       www       203: package Apache::lonmenu;
                    204: 
                    205: use strict;
1.152     albertel  206: use Apache::lonnet;
1.47      matthew   207: use Apache::lonhtmlcommon();
1.115     albertel  208: use Apache::loncommon();
1.127     albertel  209: use Apache::lonenc();
1.88      www       210: use Apache::lonlocal;
1.361     raeburn   211: use Apache::lonmsg();
1.207     foxr      212: use LONCAPA qw(:DEFAULT :match);
1.486     raeburn   213: use LONCAPA::ltiutils;
1.282     amueller  214: use HTML::Entities();
1.346     wenzelju  215: use Apache::lonwishlist();
1.88      www       216: 
1.283     droeschl  217: use vars qw(@desklines %category_names %category_members %category_positions 
1.482     raeburn   218:             $readdesk @primary_menu %primary_submenu @secondary_menu %secondary_submenu);
1.88      www       219: 
1.56      www       220: my @inlineremote;
1.38      www       221: 
1.283     droeschl  222: sub prep_menuitem {
1.516     raeburn   223:     my ($menuitem,$ltitarget,$deeplinktarget,$listclass,$linkattr) = @_;
1.291     raeburn   224:     return '' unless(ref($menuitem) eq 'ARRAY');
1.283     droeschl  225:     my $link;
                    226:     if ($$menuitem[1]) { # graphical Link
                    227:         $link = "<img class=\"LC_noBorder\""
1.291     raeburn   228:               . " src=\"" . &Apache::loncommon::lonhttpdurl($$menuitem[1]) . "\"" 
                    229:               . " alt=\"" . &mt($$menuitem[2]) . "\" />";
1.283     droeschl  230:     } else {             # textual Link
1.291     raeburn   231:         $link = &mt($$menuitem[3]);
                    232:     }
1.486     raeburn   233:     my $target = ' target="_top"';
                    234:     if ($ltitarget eq 'iframe') {
                    235:         $target ='';
1.516     raeburn   236:     } elsif ($deeplinktarget eq '_self') {
1.517   ! raeburn   237:         $target = ' target="'.$deeplinktarget.'"';
1.486     raeburn   238:     }
1.511     raeburn   239:     return ($listclass?'<li class="'.$listclass.'">':'<li>').'<a'
1.316     droeschl  240:            # highlighting for new messages
                    241:            . ( $$menuitem[4] eq 'newmsg' ? ' class="LC_new_message"' : '') 
1.511     raeburn   242:            . qq| href="$$menuitem[0]"$target $linkattr>$link</a></li>|;
1.283     droeschl  243: }
                    244: 
1.415     raeburn   245: # primary_menu() evaluates @primary_menu and returns a two item array,
                    246: # with the array elements containing XHTML for the left and right sides of 
                    247: # the menu that contains the following links:
                    248: # Personal, About, Message, Roles, Help, Logout
1.283     droeschl  249: # @primary_menu is filled within the BEGIN block of this module with 
                    250: # entries from mydesk.tab
                    251: sub primary_menu {
1.511     raeburn   252:     my ($crstype,$ltimenu,$menucoll,$menuref,$links_disabled) = @_;
1.507     raeburn   253:     my (%menu,%ltiexc,%menuopts);
1.283     droeschl  254:     # each element of @primary contains following array:
1.415     raeburn   255:     # (link url, icon path, alt text, link text, condition, position)
1.319     raeburn   256:     my $public;
                    257:     if ((($env{'user.name'} eq 'public') && ($env{'user.domain'} eq 'public'))
                    258:         || (($env{'user.name'} eq '') && ($env{'user.domain'} eq ''))) {
                    259:         $public = 1;
                    260:     }
1.443     raeburn   261:     my $rolecount;
                    262:     if (($crstype eq 'Placement') && (!$env{'request.role.adv'})) {
                    263:         my $update=$env{'user.update.time'};
                    264:         if (!$update) {
                    265:             $update = $env{'user.login.time'};
                    266:         }
                    267:         my %roles_in_env;
                    268:         $rolecount = &Apache::lonroles::roles_from_env(\%roles_in_env,$update);
                    269:     }
1.516     raeburn   270:     my ($lti,$ltitarget,$deeplinktarget);
1.486     raeburn   271:     if ($env{'request.lti.login'}) {
1.491     raeburn   272:         $lti = 1;
1.486     raeburn   273:         $ltitarget = $env{'request.lti.target'};
1.491     raeburn   274:         if (ref($ltimenu) eq 'HASH') {
                    275:             foreach my $item ('fullname','logout') {
                    276:                 unless ($ltimenu->{$item}) {
                    277:                     $ltiexc{$item} = 1;
                    278:                 }
                    279:             }
                    280:         }
1.486     raeburn   281:     }
1.516     raeburn   282:     if ($env{'request.deeplink.login'}) {
                    283:         $deeplinktarget = $env{'request.deeplink.target'};
                    284:     }
1.507     raeburn   285:     if (($menucoll) && (ref($menuref) eq 'HASH')) {
                    286:         %menuopts = %{$menuref};
                    287:     }
1.283     droeschl  288:     foreach my $menuitem (@primary_menu) {
                    289:         # evaluate conditions 
1.296     droeschl  290:         next if    ref($menuitem)       ne 'ARRAY';    #
1.283     droeschl  291:         next if    $$menuitem[4]        eq 'nonewmsg'  # show links depending on
1.291     raeburn   292:                 && &Apache::lonmsg::mynewmail();       # whether a new msg 
1.283     droeschl  293:         next if    $$menuitem[4]        eq 'newmsg'    # arrived or not
1.291     raeburn   294:                 && !&Apache::lonmsg::mynewmail();      # 
1.319     raeburn   295:         next if    $$menuitem[4]        !~ /public/    ##we've a public user,
                    296:                 && $public;                            ##who should not see all
                    297:                                                        ##links
1.283     droeschl  298:         next if    $$menuitem[4]        eq 'onlypublic'# hide links which are 
1.319     raeburn   299:                 && !$public;                           # only visible to public
                    300:                                                        # users
1.283     droeschl  301:         next if    $$menuitem[4]        eq 'roles'     ##show links depending on
1.491     raeburn   302:                 && (&Apache::loncommon::show_course()  ##term 'Courses' or
1.509     raeburn   303:                 || $lti);                              ##'Roles' wanted
1.491     raeburn   304:         next if    $$menuitem[4]        eq 'courses'   ##and not LTI access
                    305:                 && (!&Apache::loncommon::show_course()
1.509     raeburn   306:                 || $lti);
1.491     raeburn   307:         next if    $$menuitem[4]        eq 'notlti'
                    308:                 && $lti;
                    309:         next if    $$menuitem[4]        eq 'ltiexc'
                    310:                 && exists($ltiexc{lc($menuitem->[3])});
1.371     raeburn   311:         my $title = $menuitem->[3];
1.443     raeburn   312:         if (($crstype eq 'Placement') && (!$env{'request.role.adv'})) {
                    313:             if ($menuitem->[4] eq 'courses') {
                    314:                 next unless ($rolecount>1);
                    315:             } else {
                    316:                 next unless (($title eq 'Personal') || ($title eq 'Logout'));
                    317:             }
                    318:         }
1.415     raeburn   319:         my $position = $menuitem->[5];
                    320:         if ($position eq '') {
                    321:             $position = 'right';
                    322:         }
1.507     raeburn   323:         if ($env{'request.course.id'} && $menucoll) {
1.508     raeburn   324:             if (($menuitem->[6]) && (!$menuopts{$menuitem->[6]})) {
                    325:                 if ($menuitem->[6] eq 'pers') {
                    326:                     if ($menuopts{'name'} && !$ltiexc{'fullname'} &&
                    327:                         $env{'user.name'} && $env{'user.domain'}) {
                    328:                         $menu{$position} .= '<li><a href="#">'.
                    329:                             &Apache::loncommon::plainname($env{'user.name'},
                    330:                                                           $env{'user.domain'}).'</a></li>';
                    331:                         next;
                    332:                     } else {
                    333:                         next;
                    334:                     }
                    335:                 } else {
                    336:                     next;
                    337:                 }
                    338:             }
1.507     raeburn   339:         }
1.511     raeburn   340:         my ($listclass,$linkattr);
                    341:         if ($links_disabled) {
                    342:             $listclass = 'LCisDisabled';
                    343:             $linkattr = 'aria-disabled="true"';
                    344:         }
1.371     raeburn   345:         if (defined($primary_submenu{$title})) {
1.375     raeburn   346:             my ($link,$target);
1.371     raeburn   347:             if ($menuitem->[0] ne '') {
                    348:                 $link = $menuitem->[0];
1.516     raeburn   349:                 unless (($ltitarget eq 'iframe') || ($deeplinktarget eq '_self')) {
1.486     raeburn   350:                     $target = '_top';
                    351:                 }
1.371     raeburn   352:             } else {
                    353:                 $link = '#';
                    354:             }
1.375     raeburn   355:             my @primsub;
1.371     raeburn   356:             if (ref($primary_submenu{$title}) eq 'ARRAY') {
1.375     raeburn   357:                 foreach my $item (@{$primary_submenu{$title}}) {
1.443     raeburn   358:                     next if (($crstype eq 'Placement') && (!$env{'request.role.adv'}));
1.383     raeburn   359:                     next if (($item->[2] eq 'wishlist') && (!$env{'user.adv'}));
1.375     raeburn   360:                     next if ((($item->[2] eq 'portfolio') ||
                    361:                              ($item->[2] eq 'blog')) &&
                    362:                              (!&Apache::lonnet::usertools_access('','',$item->[2],
                    363:                                                            undef,'tools')));
1.507     raeburn   364:                     if ($env{'request.course.id'} && $menucoll) {
                    365:                         next if ($item->[3]) && (!$menuopts{$item->[3]});
                    366:                     }
1.375     raeburn   367:                     push(@primsub,$item);
                    368:                 }
1.508     raeburn   369:                 if ($title eq 'Personal') {
                    370:                     if ($env{'user.name'} && $env{'user.domain'} && !$ltiexc{'fullname'}) {
                    371:                         unless (($env{'request.course.id'}) && ($menucoll) && (!$menuopts{'name'})) {
                    372:                             $title = &Apache::loncommon::plainname($env{'user.name'},$env{'user.domain'});
                    373:                         }
1.491     raeburn   374:                     }
1.508     raeburn   375:                     next if (($env{'request.course.id'}) && ($menucoll) && ($title eq 'Personal') &&
                    376:                              (!@primsub));
1.511     raeburn   377:                     if ($title eq 'Personal') {
                    378:                         $title = &mt($title);
                    379:                     }
1.443     raeburn   380:                 } else {
                    381:                     $title = &mt($title);
                    382:                 }
1.375     raeburn   383:                 if (@primsub > 0) {
1.511     raeburn   384:                     $menu{$position} .= &create_submenu($link,$target,$title,\@primsub,1,undef,$listclass,$linkattr);
1.375     raeburn   385:                 } elsif ($link) {
1.511     raeburn   386:                     $menu{$position} .= ($listclass?'<li class="'.$listclass.'">':'<li>').
                    387:                                         '<a href="'.$link.'" target="'.$target.'" '.$linkattr.'>'.$title.'</a></li>';
1.371     raeburn   388:                 }
                    389:             }
                    390:         } elsif ($$menuitem[3] eq 'Help') { # special treatment for helplink
1.443     raeburn   391:             next if ($crstype eq 'Placement'); 
1.340     raeburn   392:             if ($public) {
                    393:                 my $origmail = $Apache::lonnet::perlvar{'lonSupportEMail'};
                    394:                 my $defdom = &Apache::lonnet::default_login_domain();
                    395:                 my $to = &Apache::loncommon::build_recipient_list(undef,
                    396:                                                                   'helpdeskmail',
                    397:                                                                   $defdom,$origmail);
                    398:                 if ($to ne '') {
1.516     raeburn   399:                     $menu{$position} .= &prep_menuitem($menuitem,$ltitarget,$deeplinktarget,$listclass,$linkattr); 
1.340     raeburn   400:                 }
                    401:             } else {
1.511     raeburn   402:                 $menu{$position} .= ($listclass?'<li class="'.$listclass.'">':'<li>').
                    403:                                     &Apache::loncommon::top_nav_help('Help',$linkattr).
                    404:                                     '</li>';
1.340     raeburn   405:             }
1.510     raeburn   406:         } elsif ($$menuitem[3] eq 'Log In') {
                    407:             if ($public) {
                    408:                 if (&Apache::lonnet::get_saml_landing()) {
                    409:                     $$menuitem[0] = '/adm/login';
                    410:                 }
                    411:             }
1.516     raeburn   412:             $menu{$position} .= prep_menuitem($menuitem,$ltitarget,$deeplinktarget,$listclass,$linkattr);
1.283     droeschl  413:         } else {
1.516     raeburn   414:             $menu{$position} .= prep_menuitem($menuitem,$ltitarget,$deeplinktarget,$listclass,$linkattr);
1.283     droeschl  415:         }
1.291     raeburn   416:     }
1.423     raeburn   417:     my @output = ('','');
                    418:     if ($menu{'left'} ne '') {
                    419:         $output[0] = "<ol class=\"LC_primary_menu LC_floatleft\">$menu{'left'}</ol>";
                    420:     }
                    421:     if ($menu{'right'} ne '') {
                    422:         $output[1] = "<ol class=\"LC_primary_menu LC_floatright LC_right\">$menu{'right'}</ol>";
                    423:     }
                    424:     return @output;
1.283     droeschl  425: }
                    426: 
1.329     droeschl  427: #returns hashref {user=>'',dom=>''} containing:
                    428: #   own name, domain if user is au
                    429: #   name, domain of parent author if user is ca or aa
                    430: #empty return if user is not an author or not on homeserver
                    431: #
                    432: #TODO this should probably be moved somewhere more central
                    433: #since it can be used by different parts of the system
                    434: sub getauthor{
                    435:     return unless $env{'request.role'}=~/^(ca|aa|au)/; #nothing to do if user isn't some kind of author
                    436: 
                    437:                         #co- or assistent author?
                    438:     my ($dom, $user) = ($env{'request.role'} =~ /^(?:ca|aa)\.\/($match_domain)\/($match_username)$/)
                    439:                        ? ($1, $2) #domain, username of the parent author
                    440:                        : @env{ ('request.role.domain', 'user.name') }; #own domain, username
                    441: 
                    442:     # current server == home server?
                    443:     my $home =  &Apache::lonnet::homeserver($user,$dom);
                    444:     foreach (&Apache::lonnet::current_machine_ids()){
                    445:         return {user => $user, dom => $dom} if $_ eq $home;
                    446:     }
                    447: 
                    448:     # if wrong server
                    449:     return;
                    450: }
1.283     droeschl  451: 
                    452: sub secondary_menu {
1.511     raeburn   453:     my ($httphost,$ltiscope,$ltimenu,$noprimary,$menucoll,$menuref,$links_disabled) = @_;
1.283     droeschl  454:     my $menu;
                    455: 
1.286     raeburn   456:     my $crstype = &Apache::loncommon::course_type();
1.327     droeschl  457:     my $crs_sec = $env{'request.course.id'} . ($env{'request.course.sec'} 
                    458:                                                ? "/$env{'request.course.sec'}"
                    459:                                                : '');
                    460:     my $canedit       = &Apache::lonnet::allowed('mdc', $env{'request.course.id'});
1.464     raeburn   461:     my $canvieweditor = &Apache::lonnet::allowed('cev', $env{'request.course.id'});
1.376     raeburn   462:     my $canviewroster = $env{'course.'.$env{'request.course.id'}.'.student_classlist_view'};
1.418     raeburn   463:     if ($canviewroster eq 'disabled') {
                    464:         undef($canviewroster);
                    465:     }
1.327     droeschl  466:     my $canviewgrps   = &Apache::lonnet::allowed('vcg', $crs_sec); 
1.453     raeburn   467:     my $canmodifyuser = &Apache::lonnet::allowed('cst', $crs_sec);
                    468:     my $canviewusers  = &Apache::lonnet::allowed('vcl', $crs_sec); 
1.327     droeschl  469:     my $canviewwnew   = &Apache::lonnet::allowed('whn', $crs_sec); 
1.454     raeburn   470:     my $canviewpara   = &Apache::lonnet::allowed('vpa', $crs_sec);
1.341     www       471:     my $canmodpara    = &Apache::lonnet::allowed('opa', $crs_sec);
1.343     www       472:     my $canvgr        = &Apache::lonnet::allowed('vgr', $crs_sec);
                    473:     my $canmgr        = &Apache::lonnet::allowed('mgr', $crs_sec); 
1.489     raeburn   474:     my $canplc        = &Apache::lonnet::allowed('plc', $crs_sec);
1.343     www       475:     my $author        = &getauthor();
1.327     droeschl  476: 
1.507     raeburn   477:     my ($cdom,$cnum,$showsyllabus,$showfeeds,$showresv,$grouptools,
                    478:         $lti,$ltimapres,%ltiexc,%menuopts);
1.439     raeburn   479:     $grouptools = 0;
1.413     raeburn   480:     if ($env{'request.course.id'}) {
                    481:         $cdom = $env{'course.'.$env{'request.course.id'}.'.domain'};
                    482:         $cnum = $env{'course.'.$env{'request.course.id'}.'.num'};
1.482     raeburn   483:         unless ($canedit || $canvieweditor)  {
1.414     raeburn   484:             unless (&Apache::lonnet::is_on_map("public/$cdom/$cnum/syllabus")) {
                    485:                 if (($env{'course.'.$env{'request.course.id'}.'.externalsyllabus'}) ||
                    486:                     ($env{'course.'.$env{'request.course.id'}.'.uploadedsyllabus'}) ||
                    487:                     ($env{'course.'.$env{'request.course.id'}.'.updatedsyllabus'}) ||
                    488:                     ($env{'request.course.syllabustime'})) {
                    489:                     $showsyllabus = 1;
                    490:                 }
                    491:             }
                    492:             if ($env{'request.course.feeds'}) {
                    493:                 $showfeeds = 1;
1.413     raeburn   494:             }
                    495:         }
1.464     raeburn   496:         unless ($canmgr || $canvgr) {
1.417     raeburn   497:             my %slots = &Apache::lonnet::get_course_slots($cnum,$cdom);
                    498:             if (keys(%slots) > 0) {
                    499:                 $showresv = 1;
                    500:             }
                    501:         }
1.497     raeburn   502:         if ($env{'request.course.groups'} ne '') {
1.499     raeburn   503:             foreach my $group (split(/:/,$env{'request.course.groups'})) {
1.498     raeburn   504:                 next unless ($group =~ /^\w+$/);
1.439     raeburn   505:                 my @privs = split(/:/,$env{"user.priv.$env{'request.role'}./$cdom/$cnum/$group"});
                    506:                 shift(@privs);
                    507:                 if (@privs) {
                    508:                     $grouptools ++;
                    509:                 }
                    510:             }
                    511:         }
1.491     raeburn   512:         if ($env{'request.lti.login'}) {
                    513:             $lti = 1;
                    514:             if (ref($ltimenu) eq 'HASH') {
                    515:                 foreach my $item ('fullname','coursetitle','role','logout','grades') {
                    516:                     unless ($ltimenu->{$item}) {
                    517:                         $ltiexc{$item} = 1;
                    518:                     }
                    519:                 }
                    520:             }
                    521:             if (($ltiscope eq 'map') || ($ltiscope eq 'resource')) {
                    522:                 $ltimapres = 1;
                    523:             }
                    524:         }
1.413     raeburn   525:     }
1.507     raeburn   526:     if (($menucoll) && (ref($menuref) eq 'HASH')) {
                    527:         %menuopts = %{$menuref};
                    528:     }
1.413     raeburn   529: 
1.511     raeburn   530:     my ($listclass,$linkattr);
                    531:     if ($links_disabled) {
                    532:         $listclass = 'LCisDisabled';
                    533:         $linkattr = 'aria-disabled="true"';
                    534:     }
                    535: 
1.404     raeburn   536:     my ($canmodifycoauthor); 
                    537:     if ($env{'request.role'} eq "au./$env{'user.domain'}/") {
                    538:         my $extent = "$env{'user.domain'}/$env{'user.name'}";
                    539:         if ((&Apache::lonnet::allowed('cca',$extent)) ||
                    540:             (&Apache::lonnet::allowed('caa',$extent))) {
                    541:             $canmodifycoauthor = 1;
                    542:         }
                    543:     }
1.491     raeburn   544: 
1.516     raeburn   545:     my ($roleswitcher_js,$roleswitcher_form,$ltitarget,$deeplinktarget);
1.486     raeburn   546:     if ($env{'request.lti.login'}) {
                    547:         $ltitarget = $env{'request.lti.target'};
                    548:     }
1.516     raeburn   549:     if ($env{'request.deeplink.login'}) {
                    550:         $deeplinktarget = $env{'request.deeplink.target'};
                    551:     }
1.401     raeburn   552: 
1.283     droeschl  553:     foreach my $menuitem (@secondary_menu) {
                    554:         # evaluate conditions 
1.296     droeschl  555:         next if    ref($menuitem)  ne 'ARRAY';
1.443     raeburn   556:         next if (($crstype eq 'Placement') && ($$menuitem[3] ne 'Roles') && (!$env{'request.role.adv'}));
1.283     droeschl  557:         next if    $$menuitem[4]   ne 'always'
1.404     raeburn   558:                 && ($$menuitem[4]   ne 'author' && $$menuitem[4] ne 'cca')
1.283     droeschl  559:                 && !$env{'request.course.id'};
1.464     raeburn   560:         next if    $$menuitem[4]   =~ /^crsedit/
                    561:                 && (!$canedit && !$canvieweditor);
1.341     www       562:         next if    $$menuitem[4]  eq 'nvgr'
1.491     raeburn   563:                 && ($canvgr || $ltiexc{'grades'});
1.341     www       564:         next if    $$menuitem[4]  eq 'vgr'
                    565:                 && !$canvgr;
1.456     raeburn   566:         next if    $$menuitem[4]   eq 'viewusers'
1.453     raeburn   567:                 && !$canmodifyuser && !$canviewusers;
1.456     raeburn   568:         next if    $$menuitem[4]   eq 'noviewusers'
1.453     raeburn   569:                 && ($canmodifyuser || $canviewusers || !$canviewroster);
1.343     www       570:         next if    $$menuitem[4]   eq 'mgr'
                    571:                 && !$canmgr;
1.417     raeburn   572:         next if    $$menuitem[4]   eq 'showresv'
                    573:                 && !$showresv;
1.327     droeschl  574:         next if    $$menuitem[4]   eq 'whn'
                    575:                 && !$canviewwnew;
1.454     raeburn   576:         next if    $$menuitem[4]   eq 'params'
                    577:                 && (!$canmodpara && !$canviewpara);
1.482     raeburn   578:         next if    $$menuitem[4]   eq 'showgroups'
                    579:                 && ($canviewgrps || !$grouptools);
1.413     raeburn   580:         next if    $$menuitem[4]   eq 'showsyllabus'
                    581:                 && !$showsyllabus;
                    582:         next if    $$menuitem[4]   eq 'showfeeds'
                    583:                 && !$showfeeds;
1.489     raeburn   584:         next if     $$menuitem[4]  eq 'plc'
                    585:                 && !$canplc;
1.329     droeschl  586:         next if    $$menuitem[4]    eq 'author'
                    587:                 && !$author;
1.404     raeburn   588:         next if    $$menuitem[4]    eq 'cca'
                    589:                 && !$canmodifycoauthor;
1.490     raeburn   590:         next if    $$menuitem[4]    eq 'notltimapres'
1.491     raeburn   591:                 && $ltimapres;
                    592:         next if    $$menuitem[4]    eq 'notlti'
                    593:                 && $lti;
                    594:         next if    $$menuitem[4]    eq 'lti'
                    595:                 && (!$lti || !$noprimary);
                    596:         next if    $$menuitem[3]    eq 'Logout'
                    597:                 && $ltiexc{'logout'};
1.283     droeschl  598: 
1.482     raeburn   599:         my $title = $menuitem->[3];
1.507     raeburn   600:         if ($env{'request.course.id'} && $menucoll) {
                    601:             unless ($$menuitem[5] eq 'roles') {
                    602:                 next if (($$menuitem[5]) && (!$menuopts{$$menuitem[5]}));
                    603:             }
                    604:         }
1.482     raeburn   605:         if (defined($secondary_submenu{$title})) {
                    606:             my ($link,$target);
                    607:             if ($menuitem->[0] ne '') {
                    608:                 $link = $menuitem->[0];
1.516     raeburn   609:                 unless (($ltitarget eq 'iframe') || ($deeplinktarget eq '_self')) {
1.486     raeburn   610:                     $target = '_top';
                    611:                 }
1.482     raeburn   612:             } else {
                    613:                 $link = '#';
                    614:             }
                    615:             my @scndsub;
                    616:             if (ref($secondary_submenu{$title}) eq 'ARRAY') {
                    617:                 foreach my $item (@{$secondary_submenu{$title}}) {
                    618:                     if (ref($item) eq 'ARRAY') {
                    619:                         next if ($item->[2] eq 'vgr' && !$canvgr);
                    620:                         next if ($item->[2] eq 'opa' && !$canmodpara);
                    621:                         next if ($item->[2] eq 'vpa' && !$canviewpara);
                    622:                         next if ($item->[2] eq 'viewusers' && !($canmodifyuser || $canviewusers));
                    623:                         next if ($item->[2] eq 'mgr' && !$canmgr);
                    624:                         next if ($item->[2] eq 'vcg' && !$canviewgrps);
                    625:                         next if ($item->[2] eq 'crsedit' && !$canedit && !$canvieweditor);
                    626:                         next if ($item->[2] eq 'params' && !$canmodpara && !$canviewpara);
1.483     raeburn   627:                         next if ($item->[2] eq 'author' && !$author);
                    628:                         next if ($item->[2] eq 'cca' && !$canmodifycoauthor);
1.491     raeburn   629:                         next if ($item->[2] eq 'lti' && !$lti);
                    630:                         if ($item->[2] =~ /^lti(portfolio|wishlist|blog)$/) {
                    631:                             my $tool = $1;
                    632:                             next if !$lti;
                    633:                             next if (!&Apache::lonnet::usertools_access('','',$tool,
                    634:                                                                         undef,'tools'));
                    635:                         }
1.482     raeburn   636:                         push(@scndsub,$item);
                    637:                     }
                    638:                 }
1.507     raeburn   639:                 if ($title eq 'Personal' && $env{'user.name'} && $env{'user.domain'}) {
1.491     raeburn   640:                     unless ($ltiexc{'fullname'}) {
                    641:                         $title = &Apache::loncommon::plainname($env{'user.name'},$env{'user.domain'});
                    642:                     }
                    643:                 }
1.482     raeburn   644:                 if (@scndsub > 0) {
1.511     raeburn   645:                     $menu .= &create_submenu($link,$target,&mt($title),\@scndsub,1,undef,
                    646:                                              $listclass,$linkattr);
1.482     raeburn   647:                 } elsif ($link ne '#') {
1.512     raeburn   648:                     $menu .= ($listclass?'<li class="'.$listclass.'">':'<li>').
1.511     raeburn   649:                              '<a href="'.$link.'" target="'.$target.'" '.$linkattr.'>'.
                    650:                              &mt($title).'</a></li>';
1.482     raeburn   651:                 }
                    652:             }
                    653:         } elsif ($$menuitem[3] eq 'Roles' && $env{'request.course.id'}) {
1.283     droeschl  654:             # special treatment for role selector
1.507     raeburn   655:             my ($switcher,$has_opa_priv);
                    656:             ($roleswitcher_js,$roleswitcher_form,$switcher,$has_opa_priv) =
1.491     raeburn   657:                 &roles_selector(
                    658:                     $env{'course.' . $env{'request.course.id'} . '.domain'},
                    659:                     $env{'course.' . $env{'request.course.id'} . '.num'},
1.516     raeburn   660:                     $httphost
1.491     raeburn   661:                 );
1.507     raeburn   662:             if (($$menuitem[5]) && (!$menuopts{$$menuitem[5]})) {
                    663:                 next unless ($has_opa_priv);
                    664:             }
1.491     raeburn   665:             $menu .= $switcher;
                    666:         } elsif ($$menuitem[3] eq 'Help') { # special treatment for helplink
                    667:             next if ($crstype eq 'Placement');
                    668:             $menu .= '<li>'.&Apache::loncommon::top_nav_help('Help').'</li>';
1.296     droeschl  669:         } else {
1.414     raeburn   670:             if ($$menuitem[3] eq 'Syllabus' && $env{'request.course.id'}) {
                    671:                 my $url = $$menuitem[0];
                    672:                 $url =~ s{\[cdom\]/\[cnum\]}{$cdom/$cnum};
                    673:                 if (&Apache::lonnet::is_on_map($url)) {
1.468     raeburn   674:                     unless ($$menuitem[0] =~ /(\?|\&)register=1/) {
                    675:                         $$menuitem[0] .= (($$menuitem[0]=~/\?/)? '&' : '?').'register=1';
1.414     raeburn   676:                     }
                    677:                 } else {
1.468     raeburn   678:                     $$menuitem[0] =~ s{\&?register=1}{};
1.414     raeburn   679:                 }
1.468     raeburn   680:                 if ($env{'course.'.$env{'request.course.id'}.'.externalsyllabus'} =~ m{^http://}) {
                    681:                     if (($ENV{'SERVER_PORT'} == 443) || ($env{'request.use_absolute'} =~ m{^https://})) {
1.506     raeburn   682:                         unless ((&Apache::lonnet::uses_sts()) || (&Apache::lonnet::waf_allssl())) {
1.493     raeburn   683:                             unless ($$menuitem[0] =~ m{^https?://}) {
                    684:                                 $$menuitem[0] = 'http://'.$ENV{'SERVER_NAME'}.$$menuitem[0];
                    685:                             }
                    686:                             unless ($$menuitem[0] =~ /(\&|\?)usehttp=1/) {
                    687:                                 $$menuitem[0] .= (($$menuitem[0]=~/\?/) ? '&' : '?').'usehttp=1';
                    688:                             }
1.468     raeburn   689:                         }
                    690:                     }
1.467     raeburn   691:                 }
1.473     raeburn   692:                 $$menuitem[0] = &HTML::Entities::encode($$menuitem[0],'&<>"');
1.414     raeburn   693:             }
1.516     raeburn   694:             $menu .= &prep_menuitem(\@$menuitem,$ltitarget,$deeplinktarget,$listclass,$linkattr);
1.283     droeschl  695:         }
                    696:     }
                    697:     if ($menu =~ /\[url\].*\[symb\]/) {
1.291     raeburn   698:         my $escurl  = &escape( &Apache::lonenc::check_encrypt(
                    699:                              $env{'request.noversionuri'}));
1.283     droeschl  700: 
1.291     raeburn   701:         my $escsymb = &escape( &Apache::lonenc::check_encrypt(
                    702:                              $env{'request.symb'})); 
1.283     droeschl  703: 
                    704:         if (    $env{'request.state'} eq 'construct'
                    705:             and (   $env{'request.noversionuri'} eq '' 
                    706:                  || !defined($env{'request.noversionuri'}))) 
                    707:         {
1.359     raeburn   708:             my $londocroot = $Apache::lonnet::perlvar{'lonDocRoot'};
                    709:             ($escurl = $env{'request.filename'}) =~ s{^\Q$londocroot\E}{};
1.291     raeburn   710:             $escurl  = &escape($escurl);
1.473     raeburn   711:         }
1.283     droeschl  712:         $menu =~ s/\[url\]/$escurl/g;
                    713:         $menu =~ s/\[symb\]/$escsymb/g;
                    714:     }
1.329     droeschl  715:     $menu =~ s/\[uname\]/$$author{user}/g;
                    716:     $menu =~ s/\[udom\]/$$author{dom}/g;
1.491     raeburn   717:     $menu =~ s/\[javascript\]/javascript:/g;
1.482     raeburn   718:     if ($env{'request.course.id'}) {
1.413     raeburn   719:         $menu =~ s/\[cnum\]/$cnum/g;
                    720:         $menu =~ s/\[cdom\]/$cdom/g;
                    721:     }
1.385     raeburn   722:     if ($menu) {
                    723:         $menu = "<ul id=\"LC_secondary_menu\">$menu</ul>";
                    724:     }
1.401     raeburn   725:     if ($roleswitcher_form) {
                    726:         $menu .= "\n$roleswitcher_js\n$roleswitcher_form";
                    727:     }
1.385     raeburn   728:     return $menu;
1.283     droeschl  729: }
                    730: 
1.375     raeburn   731: sub create_submenu {
1.511     raeburn   732:     my ($link,$target,$title,$submenu,$translate,$addclass,$listclass,$linkattr) = @_;
1.375     raeburn   733:     return unless (ref($submenu) eq 'ARRAY');
1.379     raeburn   734:     my $disptarget;
                    735:     if ($target ne '') {
                    736:         $disptarget = ' target="'.$target.'"';
                    737:     }
1.447     raeburn   738:     my $menu = '<li class="LC_hoverable '.$addclass.'">'.
1.379     raeburn   739:                '<a href="'.$link.'"'.$disptarget.'>'.
1.432     droeschl  740:                '<span class="LC_nobreak">'.$title.
1.375     raeburn   741:                '<span class="LC_fontsize_small" style="font-weight:normal;">'.
                    742:                ' &#9660;</span></span></a>'.
                    743:                '<ul>';
1.431     golterma  744: 
                    745:     # $link and $title are only used in the initial string written in $menu
                    746:     # as seen above, not needed for nested submenus
1.511     raeburn   747:     $menu .= &build_submenu($target, $submenu, $translate, '1', $listclass, $linkattr);
1.431     golterma  748:     $menu .= '</ul></li>';
                    749: 
                    750:     return $menu;
                    751: }
                    752: 
                    753: # helper routine for create_submenu
                    754: # build the dropdown (and nested submenus) recursively
                    755: # see perldoc create_submenu documentation for further information
                    756: sub build_submenu {
1.511     raeburn   757:     my ($target, $submenu, $translate, $first_level, $listclass, $linkattr) = @_; 
1.446     raeburn   758:     unless (@{$submenu}) {
1.431     golterma  759:         return '';
                    760:     }
                    761: 
                    762:     my $menu = '';
1.375     raeburn   763:     my $count = 0;
                    764:     my $numsub = scalar(@{$submenu});
                    765:     foreach my $item (@{$submenu}) {
                    766:         $count ++;
                    767:         if (ref($item) eq 'ARRAY') {
1.416     raeburn   768:             my $href = $item->[0];
1.431     golterma  769:             my $bordertop;
                    770:             my $borderbot;
                    771:             my $title;
                    772: 
                    773:             if ($translate) {
                    774:                  $title = &mt($item->[1]);
                    775:             } else {
                    776:                 $title = $item->[1];
                    777:             }
                    778: 
                    779:             if ($count == 1 && !$first_level) {
                    780:                 $bordertop = 'border-top: 1px solid black;';
1.416     raeburn   781:             }
1.375     raeburn   782:             if ($count == $numsub) {
1.431     golterma  783:                 $borderbot = 'border-bottom: 1px solid black;';
1.375     raeburn   784:             }
1.431     golterma  785: 
                    786:             # href is a reference to another submenu
                    787:             if (ref($href) eq 'ARRAY') {
                    788:                 $menu .= '<li style="margin:0;padding:0;'.$bordertop . $borderbot . '">';
                    789:                 $menu .= '<p><span class="LC_primary_menu_innertitle">'
                    790: 					. $title . '</span><span class="LC_primary_menu_innerarrow">&#9654;</span></p>';
                    791:                 $menu .= '<ul>';
                    792:                 $menu .= &build_submenu($target, $href, $translate);
                    793:                 $menu .= '</ul>';
                    794:                 $menu .= '</li>';    
                    795:             } else {    # href is the actual hyperlink and does not represent another submenu
                    796:                         # for the current menu title
                    797:                 if ($href =~ /(aboutme|rss\.html)$/) {
                    798:                     next unless (($env{'user.name'} ne '') && ($env{'user.domain'} ne ''));
                    799:                     $href =~ s/\[domain\]/$env{'user.domain'}/g;
                    800:                     $href =~ s/\[user\]/$env{'user.name'}/g;
1.488     raeburn   801:                 } elsif (($href =~ m{^/adm/preferences\?}) && ($href =~ /\[returnurl\]/)) {
                    802:                     my $returnurl = $ENV{'REQUEST_URI'};
                    803:                     if ($ENV{'REQUEST_URI'} =~ m{/adm/preferences\?action=(?:changedomcoord|authorsettings)\&returnurl=([^\&]+)$}) {
                    804:                         $returnurl = $1;
                    805:                     }
                    806:                     if (($returnurl =~ m{^/adm/createuser($|\?action=)}) ||
                    807:                         ($returnurl =~ m{^/priv/$match_domain/$match_username}) ||
                    808:                         ($returnurl =~ m{^/res(/?$|/$match_domain/$match_username)})) {
                    809:                         $returnurl =~ s{\?.*$}{};
                    810:                         $returnurl = '&amp;returnurl='.&HTML::Entities::encode($returnurl,'"<>&\'');
                    811:                     } else {
                    812:                         undef($returnurl);
                    813:                     }
                    814:                     $href =~ s/\[returnurl\]/$returnurl/;
1.431     golterma  815:                 }
                    816:                 unless (($href eq '') || ($href =~ /^\#/)) {
1.486     raeburn   817:                     if ($target eq '_top') {
                    818:                         $target = ' target="_top"';
                    819:                     }
1.431     golterma  820:                 }
                    821: 
1.513     raeburn   822:                 $menu .= '<li ';
1.511     raeburn   823:                 $menu .= ($listclass?'class="'.$listclass.'" ':'');
                    824:                 $menu .= 'style="margin:0;padding:0;'. $bordertop . $borderbot .'">';
                    825:                 $menu .= '<a href="'.$href.'"'.$target.' '.$linkattr.'>' .  $title . '</a>';
1.431     golterma  826:                 $menu .= '</li>';
1.425     raeburn   827:             }
1.375     raeburn   828:         }
                    829:     }
                    830:     return $menu;
                    831: }
                    832: 
1.40      www       833: sub innerregister {
1.490     raeburn   834:     my ($forcereg,$bread_crumbs,$group,$pagebuttonshide,$hostname,$ltiscope,$ltiuri) = @_;
1.152     albertel  835:     my $const_space = ($env{'request.state'} eq 'construct');
1.131     raeburn   836:     my $is_const_dir = 0;
1.120     raeburn   837: 
1.175     albertel  838:     if ($env{'request.noversionuri'} =~ m{^/res/adm/pages/}) { return ''; }
1.40      www       839: 
1.174     albertel  840:     $env{'request.registered'} = 1;
1.40      www       841: 
1.177     albertel  842:     undef(@inlineremote);
1.56      www       843: 
1.490     raeburn   844:     my ($mapurl,$resurl,$crstype,$navmap);
1.390     raeburn   845: 
1.393     raeburn   846:     if ($env{'request.course.id'}) {
1.443     raeburn   847: #
                    848: #course_type:  Course, Community, or Placement
                    849: #
                    850:         $crstype = &Apache::loncommon::course_type();
1.393     raeburn   851:         if ($env{'request.symb'}) {
1.476     raeburn   852:             my $ignorenull;
                    853:             unless ($env{'request.noversionuri'} eq '/adm/navmaps') {
                    854:                 $ignorenull = 1;
                    855:             }
                    856:             my $symb = &Apache::lonnet::symbread('','',$ignorenull);
                    857:             ($mapurl, my $rid, $resurl) = &Apache::lonnet::decode_symb($symb);
1.393     raeburn   858:             my $coursetitle = $env{'course.'.$env{'request.course.id'}.'.description'};
1.267     droeschl  859: 
1.393     raeburn   860:             my $maptitle = &Apache::lonnet::gettitle($mapurl);
1.476     raeburn   861:             my $restitle = &Apache::lonnet::gettitle($symb);
1.475     raeburn   862:             my (@crumbs,@mapcrumbs);
1.478     raeburn   863:             if (($env{'request.noversionuri'} ne '/adm/navmaps') && ($mapurl ne '') &&
                    864:                 (!(($crstype eq 'Placement') && !$env{'request.role.adv'}))) {
1.486     raeburn   865:                 unless ($ltiscope eq 'resource') {
                    866:                     if (($mapurl ne $env{'course.'.$env{'request.course.id'}.'.url'}) &&
                    867:                         !(($ltiscope eq 'map') && (&Apache::lonnet::clutter($resurl) eq $ltiuri))) {
                    868:                         $navmap = Apache::lonnavmaps::navmap->new();
                    869:                         if (ref($navmap)) {
                    870:                             @mapcrumbs = $navmap->recursed_crumbs($mapurl,$restitle);
                    871:                         }
                    872:                     }
1.475     raeburn   873:                 }
                    874:             }
1.393     raeburn   875:             unless (($forcereg) &&
                    876:                     ($env{'request.noversionuri'} eq '/adm/navmaps') &&
1.443     raeburn   877:                     ($mapurl eq $env{'course.'.$env{'request.course.id'}.'.url'}) ||
1.486     raeburn   878:                     (($crstype eq 'Placement') && (!$env{'request.role.adv'})) ||
                    879:                     ($ltiscope eq 'map') || ($ltiscope eq 'resource')) {
1.443     raeburn   880:                 @crumbs = ({text  => $crstype.' Contents', 
1.393     raeburn   881:                             href  => "Javascript:gopost('/adm/navmaps','')"});
                    882:             }
                    883:             if ($mapurl ne $env{'course.'.$env{'request.course.id'}.'.url'}) { 
1.475     raeburn   884:                 if (@mapcrumbs) {
                    885:                     push(@crumbs,@mapcrumbs);
1.486     raeburn   886:                 } elsif (!(($crstype eq 'Placement') && (!$env{'request.role.adv'})) &&
                    887:                          ($ltiscope ne 'map') && ($ltiscope ne 'resource')) {
1.475     raeburn   888:                     push(@crumbs, {text  => '...',
                    889:                                    no_mt => 1});
                    890:                 }
1.393     raeburn   891:             }
                    892: 
1.475     raeburn   893:             unless ((($crstype eq 'Placement') && (!$env{'request.role.adv'})) || (@mapcrumbs) ||
                    894:                     (!$maptitle) || ($maptitle eq 'default.sequence') ||
1.486     raeburn   895:                     ($mapurl eq $env{'course.'.$env{'request.course.id'}.'.url'}) ||
                    896:                     ($ltiscope eq 'resource')) {
                    897:                 push @crumbs, {text => $maptitle, no_mt => 1, 
                    898:                                href => &Apache::lonnet::clutter($mapurl).'?navmap=1'};
1.443     raeburn   899:             }
1.479     raeburn   900:             if ($restitle && !@mapcrumbs) {
                    901:                 push(@crumbs,{text => $restitle, no_mt => 1});
                    902:             }
1.436     raeburn   903:             my @tools;
                    904:             if ($env{'request.filename'} =~ /\.page$/) {
                    905:                 my %breadcrumb_tools = &Apache::lonhtmlcommon::current_breadcrumb_tools();
                    906:                 if (ref($breadcrumb_tools{'tools'}) eq 'ARRAY') {
                    907:                     @tools = @{$breadcrumb_tools{'tools'}};
                    908:                 }
                    909:             }
1.393     raeburn   910:             &Apache::lonhtmlcommon::clear_breadcrumbs();
                    911:             &Apache::lonhtmlcommon::add_breadcrumb(@crumbs);
1.436     raeburn   912:             if (@tools) {
                    913:                 &Apache::lonhtmlcommon::add_breadcrumb_tool('tools',@tools);
                    914:             }
1.393     raeburn   915:         } else {
                    916:             $resurl = $env{'request.noversionuri'};
                    917:             my $courseurl = &Apache::lonnet::courseid_to_courseurl($env{'request.course.id'});
                    918:             my $title = &mt('View Resource');
                    919:             if ($resurl =~ m{^\Q/uploaded$courseurl/supplemental/\E(default|\d+)/}) {
                    920:                 &Apache::loncommon::get_unprocessed_cgi($ENV{'QUERY_STRING'},['folderpath','title']);
1.392     raeburn   921:                 &Apache::lonhtmlcommon::clear_breadcrumbs();
1.393     raeburn   922:                 if ($env{'form.title'}) {
                    923:                     $title = $env{'form.title'};
                    924:                 }
1.394     raeburn   925:                 my $trail;
1.393     raeburn   926:                 if ($env{'form.folderpath'}) {
1.468     raeburn   927:                     &prepare_functions($resurl,$forcereg,$group,undef,undef,1,$hostname);
1.394     raeburn   928:                     ($trail) =
1.393     raeburn   929:                         &Apache::lonhtmlcommon::docs_breadcrumbs(undef,$crstype,undef,$title,1);
                    930:                 } else {
                    931:                     &Apache::lonhtmlcommon::add_breadcrumb(
1.392     raeburn   932:                     {text  => "Supplemental $crstype Content",
                    933:                      href  => "javascript:gopost('/adm/supplemental','')"});
1.393     raeburn   934:                     $title = &mt('View Resource');
1.394     raeburn   935:                     ($trail) = 
                    936:                         &Apache::lonhtmlcommon::docs_breadcrumbs(undef,$crstype,undef,$title,1);
1.392     raeburn   937:                 }
1.394     raeburn   938:                 return $trail;
1.412     raeburn   939:             } elsif ($resurl =~ m{^\Q/uploaded$courseurl/portfolio/syllabus/}) {
                    940:                 &Apache::lonhtmlcommon::clear_breadcrumbs();
                    941:                 &prepare_functions('/public'.$courseurl."/syllabus",
1.468     raeburn   942:                                    $forcereg,$group,undef,undef,1,$hostname);
1.412     raeburn   943:                 $title = &mt('Syllabus File');
                    944:                 my ($trail) =
1.468     raeburn   945:                     &Apache::lonhtmlcommon::docs_breadcrumbs(undef,$crstype,undef,$title,1,$hostname);
1.412     raeburn   946:                 return $trail;
1.392     raeburn   947:             }
1.395     raeburn   948:             unless ($env{'request.state'} eq 'construct') {
                    949:                 &Apache::lonhtmlcommon::clear_breadcrumbs();
                    950:                 &Apache::lonhtmlcommon::add_breadcrumb({text => 'View Resource'});
                    951:             }
1.392     raeburn   952:         }
1.390     raeburn   953:     } elsif (! $const_space){
1.328     droeschl  954:         #a situation when we're looking at a resource outside of context of a 
                    955:         #course or construction space (e.g. with cumulative rights)
                    956:         &Apache::lonhtmlcommon::clear_breadcrumbs();
1.390     raeburn   957:         unless ($env{'request.noversionuri'} =~ m{^/adm/$match_domain/$match_username/aboutme$}) {
                    958:             &Apache::lonhtmlcommon::add_breadcrumb({text => 'View Resource'});
                    959:         }
1.65      www       960:     }
1.41      www       961: # =============================================================================
                    962: # ============================ This is for URLs that actually can be registered
1.316     droeschl  963:     return '' unless ( ($env{'request.noversionuri'}!~m{^/(res/)*adm/}) 
                    964:                        || $forcereg );
1.390     raeburn   965:     my ($cdom,$cnum,%perms,$cfile,$switchserver,$home,$forceedit,
                    966:         $forceview,$editbutton);
1.391     raeburn   967:     if (($resurl =~ m{^/?adm/($match_domain)/($match_username)/aboutme$}) ||
                    968:         ($env{'request.role'} !~/^(aa|ca|au)/)) {
1.468     raeburn   969:         $editbutton = &prepare_functions($resurl,$forcereg,$group,'','','',$hostname);
1.390     raeburn   970:     }
                    971:     if ($editbutton eq '') {
1.399     raeburn   972:         $editbutton = &clear(6,1);
1.390     raeburn   973:     }
1.317     droeschl  974: 
1.390     raeburn   975: #
                    976: # This applies in course context
                    977: #
                    978:     if ($env{'request.course.id'}) {
                    979:         $cnum = $env{'course.'.$env{'request.course.id'}.'.num'};
                    980:         $cdom = $env{'course.'.$env{'request.course.id'}.'.domain'};
                    981:         $perms{'mdc'} = &Apache::lonnet::allowed('mdc',$env{'request.course.id'});
1.462     raeburn   982:         $perms{'cev'} = &Apache::lonnet::allowed('cev',$env{'request.course.id'});
1.390     raeburn   983:         my @privs;
1.484     raeburn   984:         my $gradable_exttool;
1.390     raeburn   985:         if ($env{'request.symb'} ne '') {
1.484     raeburn   986:              if ($env{'request.noversionuri'} =~ m{^/adm/$cdom/$cnum/(\d+)/ext\.tool$}) {
                    987:                  if (&Apache::lonnet::EXT('resource.0.gradable') =~ /^yes$/i) {
                    988:                      $gradable_exttool = 1;
                    989:                      push(@privs,('mgr','vgr'));
                    990:                  }
                    991:              } elsif ($env{'request.filename'}=~/$LONCAPA::assess_re/) {
1.390     raeburn   992:                  push(@privs,('mgr','vgr'));
                    993:              }
1.455     raeburn   994:              push(@privs,('opa','vpa'));
1.390     raeburn   995:         }
                    996:         foreach my $priv (@privs) {
                    997:             $perms{$priv} = &Apache::lonnet::allowed($priv,$env{'request.course.id'});
                    998:             if (!$perms{$priv} && $env{'request.course.sec'} ne '') {
                    999:                 $perms{$priv} = 
                   1000:                     &Apache::lonnet::allowed($priv,"$env{'request.course.id'}/$env{'request.course.sec'}");
                   1001:             }
                   1002:         }
                   1003: #
                   1004: # Determine whether or not to show Grades and Submissions buttons
                   1005: #
1.484     raeburn  1006:         if (($env{'request.symb'} ne '') &&
                   1007:             (($env{'request.filename'}=~/$LONCAPA::assess_re/) || ($gradable_exttool))) {
1.390     raeburn  1008:             if ($perms{'mgr'}) {
                   1009:                 &switch('','',7,2,'pgrd.png','Content Grades','grades[_4]',
                   1010:                         "gocmd('/adm/grades','gradingmenu')",
                   1011:                         'Content Grades');
                   1012:             } elsif ($perms{'vgr'}) {
                   1013:                 &switch('','',7,2,'subm.png','Content Submissions','missions[_1]',
                   1014:                         "gocmd('/adm/grades','submission')",
                   1015:                         'Content Submissions');
                   1016:              }
                   1017:         }
1.455     raeburn  1018:         if (($env{'request.symb'} ne '') && (($perms{'opa'}) || ($perms{'vpa'}))) {
1.390     raeburn  1019:             &switch('','',7,3,'pparm.png','Content Settings','parms[_2]',
                   1020:                     "gocmd('/adm/parmset','set')",
                   1021:                     'Content Settings');
1.107     albertel 1022: 	}
1.393     raeburn  1023: # End grades/submissions check
1.107     albertel 1024: 
1.274     www      1025: #
1.393     raeburn  1026: # This applies to items inside a folder/page modifiable in the course.
1.274     www      1027: #
1.462     raeburn  1028:         if (($env{'request.symb'}=~/^uploaded/) && (($perms{'mdc'}) || ($perms{'cev'}))) {
1.393     raeburn  1029:             my $text = 'Edit Folder';
1.395     raeburn  1030:             if (($mapurl =~ /\.page$/) ||
                   1031:                 ($env{'request.symb'}=~
1.396     raeburn  1032:                      m{uploaded/$cdom/$cnum/default_\d+\.page$}))  {
1.393     raeburn  1033:                 $text = 'Edit Page';
                   1034:             }
                   1035:             &switch('','',7,4,'docs-22x22.png',$text,'parms[_2]',
1.390     raeburn  1036:                     "gocmd('/adm/coursedocs','direct')",
                   1037:                     'Folder/Page Content');
1.258     raeburn  1038:         }
1.390     raeburn  1039: # End modifiable folder/page container check
                   1040:     }
                   1041: # End course context
                   1042: 
1.41      www      1043: # Prepare the rest of the buttons
1.383     raeburn  1044:         my ($menuitems,$got_prt,$got_wishlist);
1.120     raeburn  1045:         if ($const_space) {
1.274     www      1046: #
                   1047: # We are in construction space
                   1048: #
1.353     www      1049: 
1.355     raeburn  1050:             my $londocroot = $Apache::lonnet::perlvar{'lonDocRoot'};
1.353     www      1051: 	    my ($udom,$uname,$thisdisfn) =
1.355     raeburn  1052: 		($env{'request.filename'}=~m{^\Q$londocroot/priv/\E([^/]+)/([^/]+)/(.*)$});
1.353     www      1053:             my $currdir = '/priv/'.$udom.'/'.$uname.'/'.$thisdisfn;
1.131     raeburn  1054:             if ($currdir =~ m-/$-) {
                   1055:                 $is_const_dir = 1;
1.433     raeburn  1056:                 if ($thisdisfn eq '') {
1.451     raeburn  1057:                     unless (($env{'request.course.id'}) && 
                   1058:                             ($env{'course.'.$env{'request.course.id'}.'.num'} eq $uname) &&
                   1059:                             ($env{'course.'.$env{'request.course.id'}.'.domain'} eq $udom)) { 
                   1060:                         $is_const_dir = 2;
                   1061:                     }
1.433     raeburn  1062:                 }
1.131     raeburn  1063:             } else {
1.267     droeschl 1064:                 $currdir =~ s|[^/]+$||;
1.200     foxr     1065: 		my $cleandisfn = &Apache::loncommon::escape_single($thisdisfn);
1.208     albertel 1066: 		my $esc_currdir = &Apache::loncommon::escape_single($currdir);
1.515     raeburn  1067:                 my $pubfile = "/res/$udom/$uname/$thisdisfn";
                   1068:                 my $candelete = 1;
                   1069:                 if (-e $londocroot.$pubfile) {
                   1070:                     unless (&Apache::lonnet::metadata($pubfile,'obsolete')) {
                   1071:                         undef($candelete);
                   1072:                     }
                   1073:                 }
1.274     www      1074: #
                   1075: # Probably should be in mydesk.tab
                   1076: #
1.131     raeburn  1077:                 $menuitems=(<<ENDMENUITEMS);
1.344     www      1078: s&6&1&list.png&Directory&dir[_1]&golist('$esc_currdir')&List current directory
1.353     www      1079: s&6&2&rtrv.png&Retrieve&version[_1]&gocstr('/adm/retrieve','/priv/$udom/$uname/$cleandisfn')&Retrieve old version
                   1080: s&6&3&pub.png&Publish&resource[_3]&gocstr('/adm/publish','/priv/$udom/$uname/$cleandisfn')&Publish this resource
1.515     raeburn  1081: s&7&3&copy.png&Copy&resource[_4]&gocstr('/adm/cfile?action=copy','/priv/$udom/$uname/$cleandisfn')&Copy this resource
                   1082: ENDMENUITEMS
                   1083: #
                   1084: # Rename and Delete only available if obsolete or unpublished
                   1085: #
                   1086:                 if ($candelete) {
                   1087:                     $menuitems .= (<<ENDMENUITEMS);
                   1088: s&7&4&rename.png&Rename&resource[_5]&gocstr('/adm/cfile?action=rename','/priv/$udom/$uname/$cleandisfn')&Rename this resource
1.353     www      1089: s&7&1&del.png&Delete&resource[_2]&gocstr('/adm/cfile?action=delete','/priv/$udom/$uname/$cleandisfn')&Delete this resource
1.515     raeburn  1090: ENDMENUITEMS
                   1091:                 }
                   1092:                 $menuitems .= (<<ENDMENUITEMS);
1.353     www      1093: s&7&2&prt.png&Print&printout[_1]&gocstr('/adm/printout','/priv/$udom/$uname/$cleandisfn')&Prepare a printable document
1.120     raeburn  1094: ENDMENUITEMS
1.131     raeburn  1095:             }
1.308     raeburn  1096:                 if (ref($bread_crumbs) eq 'ARRAY') {
                   1097:                     &Apache::lonhtmlcommon::clear_breadcrumbs();
                   1098:                     foreach my $crumb (@{$bread_crumbs}){
                   1099:                         &Apache::lonhtmlcommon::add_breadcrumb($crumb);
                   1100:                     }
                   1101:                 }
1.203     foxr     1102:         } elsif ( defined($env{'request.course.id'}) && 
                   1103: 		 $env{'request.symb'} ne '' ) {
1.274     www      1104: #
1.383     raeburn  1105: # We are in a course and looking at a registered URL
1.274     www      1106: # Should probably be in mydesk.tab
                   1107: #
1.443     raeburn  1108:             $menuitems = "c&3&1";
1.486     raeburn  1109:             if ($ltiscope eq 'resource') {
                   1110: # Suppress display of backward arrow for LTI Provider if scope is resource.
                   1111: # Suppress display of forward arrow for LTI Provider if scope is resource.
                   1112:             } elsif ($ltiscope eq 'map') {
                   1113: # Suppress display of backward arrow for LTI Provider if scope is map and this is first resource.
                   1114: # Suppress display of forward arrow for LTI Provider if scope is map and this is the last resource.
                   1115:                 my $showforw = 1;
                   1116:                 my $showback = 1;
                   1117:                 my $navmap = Apache::lonnavmaps::navmap->new();
                   1118:                 if (ref($navmap)) {
                   1119:                     my $mapres = $navmap->getResourceByUrl($ltiuri);
                   1120:                     if (ref($mapres)) {
                   1121:                         if ($navmap->isLastResource($mapres,$env{'request.symb'})) {
                   1122:                             $showforw = 0;
                   1123:                         }
                   1124:                         if ($navmap->isFirstResource($mapres,$env{'request.symb'})) {
                   1125:                             $showback = 0;
                   1126:                         }
                   1127:                     }
                   1128:                 }
                   1129:                 if ($showback) {
                   1130:                     $menuitems.="
                   1131: s&2&1&back.png&&&gopost('/adm/flip','back:'+currentURL)&Previous content resource&&1";
                   1132:                 }
                   1133:                 if ($showforw) {
                   1134:                     $menuitems.="
                   1135: s&2&3&forw.png&&&gopost('/adm/flip','forward:'+currentURL)&Next content resource&&3";
                   1136:                 }
                   1137:             } elsif (($crstype ne 'Placement') || ($env{'request.role.adv'})) {
1.443     raeburn  1138:                 $menuitems.="
1.444     raeburn  1139: s&2&1&back.png&&&gopost('/adm/flip','back:'+currentURL)&Previous content resource&&1
                   1140: s&2&3&forw.png&&&gopost('/adm/flip','forward:'+currentURL)&Next content resource&&3";
                   1141:             } else {
                   1142: # Suppress display of backward arrow for Placement Tests
                   1143: # Suppress display of forward arrow for Placement Tests if this is the last resource.
                   1144:                 my $showforw = 1;
                   1145:                 if ($env{'request.symb'}) {
                   1146:                     my $navmap = Apache::lonnavmaps::navmap->new();
                   1147:                     if (ref($navmap)) {
                   1148:                         if (&Apache::lonplacementtest::is_lastres($env{'request.symb'},$navmap)) {
                   1149:                             $showforw = 0;
                   1150:                         }
                   1151:                     }
                   1152:                 }
                   1153:                 if ($showforw) {
                   1154:                     $menuitems.="
                   1155: s&2&3&forw.png&&&gopost('/adm/flip','forward:'+currentURL)&Next content resource&&3";
                   1156:                 }
1.443     raeburn  1157:             }
                   1158: 	    $menuitems .= (<<ENDMENUITEMS);
                   1159: 
1.77      www      1160: c&6&3
                   1161: c&8&1
                   1162: c&8&2
1.344     www      1163: s&8&3&prt.png&Print&printout[_1]&gopost('/adm/printout',currentURL)&Prepare a printable document
1.41      www      1164: ENDMENUITEMS
1.383     raeburn  1165:             $got_prt = 1;
                   1166:             if (($env{'user.adv'}) && ($env{'request.uri'} =~ /^\/res/)
                   1167:                 && (!$env{'request.enc'})) {
1.452     raeburn  1168:                 my ($cnum,$cdom) = &Apache::loncommon::crsauthor_url($env{'request.uri'});
                   1169:                 unless ($cnum) {
                   1170:                     # wishlist is only available for users with access to resource-pool
                   1171:                     # and links can only be set for resources within the resource-pool
                   1172:                     $menuitems .= (<<ENDMENUITEMS);
1.431     golterma 1173: s&9&1&wishlist-link.png&Stored Links&wishlistlink[_2]&set_wishlistlink()&Save a link for this resource in my personal Stored Links repository&&1
1.332     wenzelju 1174: ENDMENUITEMS
1.452     raeburn  1175:                     $got_wishlist = 1;
                   1176:                 }
1.332     wenzelju 1177:             }
1.216     albertel 1178: 
1.243     tempelho 1179: my $currentURL = &Apache::loncommon::get_symb();
                   1180: my ($symb_old,$symb_old_enc) = &Apache::loncommon::clean_symb($currentURL);
                   1181: my $annotation = &Apache::loncommon::get_annotation($symb_old,$symb_old_enc);
                   1182: $menuitems.="s&9&3&";
                   1183: if(length($annotation) > 0){
1.317     droeschl 1184: 	$menuitems.="anot2.png";
1.243     tempelho 1185: }else{
1.317     droeschl 1186: 	$menuitems.="anot.png";
1.243     tempelho 1187: }
1.344     www      1188: $menuitems.="&Notes&&annotate()&";
1.243     tempelho 1189: $menuitems.="Make notes and annotations about this resource&&1\n";
1.428     raeburn  1190: my $is_mobile;
                   1191: if ($env{'browser.mobile'}) {
                   1192:     $is_mobile = 1;
                   1193: }
1.243     tempelho 1194: 
1.484     raeburn  1195:             unless ($env{'request.noversionuri'}=~/\/(bulletinboard|smppg|navmaps|syllabus|aboutme|viewclasslist|portfolio)(\?|$)/) {
1.502     raeburn  1196: 		if ((!$env{'request.enc'}) && ($env{'request.noversionuri'} !~ m{^/adm/wrapper/ext/}) &&
                   1197:                     ($env{'request.noversionuri'} !~ m{^/uploaded/$match_domain/$match_courseid/(docs/|default_\d+\.page$)}) &&
                   1198:                     ($env{'request.noversionuri'} !~ m{^/adm/.+/ext\.tool$})) {
1.216     albertel 1199: 		    $menuitems.=(<<ENDREALRES);
1.496     raeburn  1200: s&6&3&catalog.png&Info&info[_1]&catalog_info(currentURL,'$is_mobile')&Show Metadata
1.216     albertel 1201: ENDREALRES
                   1202:                 }
1.502     raeburn  1203:                 unless (($env{'request.noversionuri'} =~ m{^/uploaded/$match_domain/$match_courseid/(docs/|default_\d+\.page$)}) ||
1.484     raeburn  1204:                         ($env{'request.noversionuri'} =~ m{^\Q/adm/wrapper/\E(ext|uploaded)/}) ||
                   1205:                         ($env{'request.noversionuri'} =~ m{^/adm/.+/ext\.tool$})) {
1.382     raeburn  1206:                     $menuitems.=(<<ENDREALRES);
1.344     www      1207: s&8&1&eval.png&Evaluate&this[_1]&gopost('/adm/evaluate',currentURL,1)&Provide my evaluation of this resource
1.382     raeburn  1208: ENDREALRES
                   1209:                 }
1.422     raeburn  1210:                 unless ($env{'request.noversionuri'} =~ m{^\Q/adm/wrapper/\E(ext|uploaded)/}) {
                   1211:                     $menuitems.=(<<ENDREALRES);
1.344     www      1212: s&8&2&fdbk.png&Communicate&discuss[_1]&gopost('/adm/feedback',currentURL,1)&Provide feedback messages or contribute to the course discussion about this resource
1.77      www      1213: ENDREALRES
1.422     raeburn  1214:                 }
1.120     raeburn  1215: 	    }
                   1216:         }
1.203     foxr     1217: 	if ($env{'request.uri'} =~ /^\/res/) {
1.383     raeburn  1218:             unless ($got_prt) {
                   1219: 	        $menuitems .= (<<ENDMENUITEMS);
1.344     www      1220: s&8&3&prt.png&Print&printout[_1]&gopost('/adm/printout',currentURL)&Prepare a printable document
1.203     foxr     1221: ENDMENUITEMS
1.384     raeburn  1222:                 $got_prt = 1;
1.383     raeburn  1223:             }
                   1224:             unless ($got_wishlist) {
                   1225:                 if (($env{'user.adv'}) && (!$env{'request.enc'})) {
                   1226:                     # wishlist is only available for users with access to resource-pool
                   1227:                     $menuitems .= (<<ENDMENUITEMS);
1.431     golterma 1228: s&9&1&wishlist-link.png&Stored Links&wishlistlink[_2]&set_wishlistlink()&Save a link for this resource in your personal Stored Links repository&&1
1.332     wenzelju 1229: ENDMENUITEMS
1.383     raeburn  1230:                     $got_wishlist = 1;
                   1231:                 }
                   1232: 	    }
                   1233:         }
1.41      www      1234:         my $buttons='';
                   1235:         foreach (split(/\n/,$menuitems)) {
                   1236: 	    my ($command,@rest)=split(/\&/,$_);
1.220     raeburn  1237:             my $idx=10*$rest[0]+$rest[1];
                   1238:             if (&hidden_button_check() eq 'yes') {
                   1239:                 if ($idx == 21 ||$idx == 23) {
                   1240:                     $buttons.=&switch('','',@rest);
                   1241:                 } else {
                   1242:                     $buttons.=&clear(@rest);
                   1243:                 }
                   1244:             } else {  
                   1245:                 if ($command eq 's') {
                   1246: 	            $buttons.=&switch('','',@rest);
                   1247:                 } else {
                   1248:                     $buttons.=&clear(@rest);
                   1249:                 }
1.41      www      1250:             }
                   1251:         }
1.445     raeburn  1252:         my $showprogress;
                   1253:         if (($crstype eq 'Placement') && (!$env{'request.role.adv'})) {
                   1254:             $showprogress = &placement_progress();
                   1255:         }
                   1256: 
                   1257: 	my $addremote=0;
                   1258: 	foreach (@inlineremote) { if ($_ ne '') { $addremote=1; last;} }
1.148     albertel 1259: 
1.301     droeschl 1260:     if ($addremote) {
1.458     raeburn  1261:         my ($countdown,$buttonshide);
1.436     raeburn  1262:         if ($env{'request.filename'} =~ /\.page$/) {
                   1263:             my %breadcrumb_tools = &Apache::lonhtmlcommon::current_breadcrumb_tools();
                   1264:             if (ref($breadcrumb_tools{'tools'}) eq 'ARRAY') {
1.458     raeburn  1265:                 $countdown = $breadcrumb_tools{'tools'}->[0];
1.436     raeburn  1266:             }
1.458     raeburn  1267:             $buttonshide = $pagebuttonshide;
1.436     raeburn  1268:         } else {
                   1269:             $countdown = &countdown_timer();
1.458     raeburn  1270:             $buttonshide = &hidden_button_check();
1.436     raeburn  1271:         }
1.342     www      1272:         &Apache::lonhtmlcommon::clear_breadcrumb_tools();
1.301     droeschl 1273: 
1.342     www      1274:             &Apache::lonhtmlcommon::add_breadcrumb_tool(
1.312     droeschl 1275:                 'navigation', @inlineremote[21,23]);
                   1276: 
1.458     raeburn  1277:         if ($buttonshide eq 'yes') {
1.378     raeburn  1278:             if ($countdown) {
                   1279:                 &Apache::lonhtmlcommon::add_breadcrumb_tool('tools',$countdown);
                   1280:             }
1.445     raeburn  1281:             if ($showprogress) {
                   1282:                 &Apache::lonhtmlcommon::add_breadcrumb_tool('tools',$showprogress);
                   1283:             }
1.378     raeburn  1284:         } else {
                   1285:             my @tools = @inlineremote[93,91,81,82,83];
                   1286:             if ($countdown) {
                   1287:                 unshift(@tools,$countdown);
                   1288:             }
1.342     www      1289:             &Apache::lonhtmlcommon::add_breadcrumb_tool(
1.378     raeburn  1290:                 'tools',@tools);
1.313     droeschl 1291: 
                   1292:             #publish button in construction space
                   1293:             if ($env{'request.state'} eq 'construct'){
1.342     www      1294:                 &Apache::lonhtmlcommon::add_breadcrumb_tool(
1.349     raeburn  1295:                      'advtools', $inlineremote[63]);
1.342     www      1296:             } else {
                   1297:                 &Apache::lonhtmlcommon::add_breadcrumb_tool(
1.349     raeburn  1298:                      'tools', $inlineremote[63]);
1.313     droeschl 1299:             }
1.390     raeburn  1300:             &advtools_crumbs(@inlineremote);
1.301     droeschl 1301:         }
1.445     raeburn  1302:     } else {
                   1303:         if ($showprogress) {
                   1304:             &Apache::lonhtmlcommon::add_breadcrumb_tool('tools',$showprogress);
                   1305:         }
1.38      www      1306:     }
1.433     raeburn  1307:     my ($topic_help,$topic_help_text);
                   1308:     if ($is_const_dir == 2) {
1.434     raeburn  1309:         if ((($ENV{'SERVER_PORT'} == 443) || 
                   1310:              ($Apache::lonnet::protocol{$Apache::lonnet::perlvar{'lonHostID'}} eq 'https')) && 
                   1311:             (&Apache::lonnet::usertools_access($env{'user.name'},$env{'user.domain'},'webdav'))) {
1.433     raeburn  1312:             $topic_help = 'Authoring_WebDAV,Authoring_WebDAV_Mac_10v6,Authoring_WebDAV_Mac_10v10,'.
                   1313:                           'Authoring_WebDAV_Windows_v7,Authoring_WebDAV_Linux_Centos';
                   1314:             $topic_help_text = 'About WebDAV access';
                   1315:         }
                   1316:     }
1.342     www      1317:     return   &Apache::lonhtmlcommon::scripttag('', 'start')
1.433     raeburn  1318:            . &Apache::lonhtmlcommon::breadcrumbs(undef,undef,0,'','','','',$topic_help,$topic_help_text)
1.342     www      1319:            . &Apache::lonhtmlcommon::scripttag('', 'end');
1.38      www      1320: }
                   1321: 
1.389     raeburn  1322: sub get_editbutton {
1.468     raeburn  1323:     my ($cfile,$home,$switchserver,$forceedit,$forceview,$forcereg,$hostname) = @_;
1.398     raeburn  1324:     my $jscall;
                   1325:     if (($forceview) && ($env{'form.todocs'})) {
1.463     raeburn  1326:         my ($folderpath,$command,$navmap);
1.398     raeburn  1327:         if ($env{'request.symb'}) {
1.463     raeburn  1328:             $folderpath = &Apache::loncommon::symb_to_docspath($env{'request.symb'},\$navmap);
1.398     raeburn  1329:         } elsif ($env{'form.folderpath'} =~ /^supplemental/) {
                   1330:             $folderpath = $env{'form.folderpath'};
                   1331:             $command = '&forcesupplement=1';
                   1332:         }
                   1333:         $folderpath = &escape(&HTML::Entities::encode(&escape($folderpath),'<>&"'));
                   1334:         $jscall = "go('/adm/coursedocs?folderpath=$folderpath$command')";
                   1335:     } else {
1.459     raeburn  1336:         my $suppanchor;
                   1337:         if ($env{'form.folderpath'}) {
                   1338:             $suppanchor = $env{'form.anchor'};
                   1339:         }
1.398     raeburn  1340:         $jscall = &Apache::lonhtmlcommon::jump_to_editres($cfile,$home,$switchserver,
1.393     raeburn  1341:                                                 $forceedit,$forcereg,$env{'request.symb'},
                   1342:                                                 &escape($env{'form.folderpath'}),
1.468     raeburn  1343:                                                 &escape($env{'form.title'}),$hostname,
                   1344:                                                 $env{'form.idx'},&escape($env{'form.suppurl'}),
                   1345:                                                 $env{'form.todocs'},$suppanchor);
1.398     raeburn  1346:     }
1.389     raeburn  1347:     if ($jscall) {
1.390     raeburn  1348:         my $icon = 'pcstr.png';
                   1349:         my $label = 'Edit';
                   1350:         if ($forceview) {
                   1351:             $icon = 'tolastloc.png';
                   1352:             $label = 'Exit Editing';
                   1353:         }
                   1354:         &switch('','',6,1,$icon,$label,'resource[_2]',
                   1355:                 $jscall,"Edit this resource");
                   1356:         return 1;
                   1357:     }
                   1358:     return;
                   1359: }
                   1360: 
                   1361: sub prepare_functions {
1.468     raeburn  1362:     my ($resurl,$forcereg,$group,$bread_crumbs,$advtools,$docscrumbs,$hostname) = @_;
1.390     raeburn  1363:     unless ($env{'request.registered'}) {
                   1364:         undef(@inlineremote);
                   1365:     }
                   1366:     my ($cdom,$cnum,%perms,$cfile,$switchserver,$home,$forceedit,
                   1367:         $forceview);
                   1368: 
                   1369:     if ($env{'request.course.id'}) {
                   1370:         $cnum = $env{'course.'.$env{'request.course.id'}.'.num'};
                   1371:         $cdom = $env{'course.'.$env{'request.course.id'}.'.domain'};
                   1372:         $perms{'mdc'} = &Apache::lonnet::allowed('mdc',$env{'request.course.id'});
                   1373:     }
                   1374: 
                   1375:     my $editbutton = '';
1.480     raeburn  1376:     my $viewsrcbutton = '';
1.514     raeburn  1377:     my $clientip = &Apache::lonnet::get_requestor_ip();
1.390     raeburn  1378: #
1.480     raeburn  1379: # Determine whether or not to display 'Edit' or 'View Source' icon/button
1.390     raeburn  1380: #
                   1381:     if ($resurl =~ m{^/?adm/($match_domain)/($match_username)/aboutme$}) {
1.514     raeburn  1382:         my $blocked = &Apache::loncommon::blocking_status('about',$clientip,$2,$1);
1.390     raeburn  1383:         my $file=&Apache::lonnet::declutter($env{'request.filename'});
1.391     raeburn  1384:         ($cfile,$home,$switchserver,$forceedit,$forceview) =
                   1385:             &Apache::lonnet::can_edit_resource($file,$cnum,$cdom,
                   1386:                 &Apache::lonnet::clutter($resurl),$env{'request.symb'},$group);
1.504     raeburn  1387:         if (($cfile) && ($home ne '') && ($home ne 'no_host') && (!$blocked)) {
1.391     raeburn  1388:             $editbutton = &get_editbutton($cfile,$home,$switchserver,
1.390     raeburn  1389:                                           $forceedit,$forceview,$forcereg);
                   1390:         }
1.391     raeburn  1391:     } elsif ((!$env{'request.course.id'}) &&
1.390     raeburn  1392:              ($env{'user.author'}) && ($env{'request.filename'}) &&
                   1393:              ($env{'request.role'} !~/^(aa|ca|au)/)) {
                   1394: #
                   1395: # Currently do not have the role of author or co-author.
                   1396: # Do we have authoring privileges for the resource?
                   1397: #
                   1398:         my $file=&Apache::lonnet::declutter($env{'request.filename'});
                   1399:         ($cfile,$home,$switchserver,$forceedit,$forceview) =
                   1400:             &Apache::lonnet::can_edit_resource($file,$cnum,$cdom,
                   1401:                 &Apache::lonnet::clutter($resurl),$env{'request.symb'},$group);
                   1402:         if (($cfile) && ($home ne '') && ($home ne 'no_host')) {
                   1403:             $editbutton = &get_editbutton($cfile,$home,$switchserver,
                   1404:                                           $forceedit,$forceview,$forcereg);
                   1405:         }
                   1406:     } elsif ($env{'request.course.id'}) {
                   1407: #
                   1408: # This applies in course context
                   1409: #
1.412     raeburn  1410:         if (($perms{'mdc'}) &&
1.469     raeburn  1411:             (($resurl =~ m{^/?public/$cdom/$cnum/syllabus}) ||
1.477     raeburn  1412:              ($resurl =~ m{^/?uploaded/$cdom/$cnum/portfolio/syllabus/}) ||
                   1413:              (($resurl =~ m{^/?uploaded/$cdom/$cnum/default_\d+\.sequence$}) && ($env{'form.navmap'})))) {
1.470     raeburn  1414:             if ($resurl =~ m{^/}) {
                   1415:                 $cfile = $resurl;
                   1416:             } else {
                   1417:                 $cfile = "/$resurl";
                   1418:             }
1.411     raeburn  1419:             $home = &Apache::lonnet::homeserver($cnum,$cdom);
                   1420:             if ($env{'form.forceedit'}) {
                   1421:                 $forceview = 1;
1.390     raeburn  1422:             } else {
1.411     raeburn  1423:                 $forceedit = 1;
1.390     raeburn  1424:             }
1.477     raeburn  1425:             if ($cfile =~ m{^/uploaded/$cdom/$cnum/default_\d+\.sequence$}) {
                   1426:                 my $text = 'Edit Folder';
                   1427:                 &switch('','',7,4,'docs-22x22.png','Edit Folder','parms[_2]',
                   1428:                         "gocmd('/adm/coursedocs','direct')",
                   1429:                         'Folder/Page Content');
                   1430:                 $editbutton = 1;
                   1431:             } else {
                   1432:                 $editbutton = &get_editbutton($cfile,$home,$switchserver,
                   1433:                                               $forceedit,$forceview,$forcereg,
                   1434:                                               $hostname);
                   1435:             }
1.393     raeburn  1436:         } elsif (($resurl eq '/adm/extresedit') &&
                   1437:                  (($env{'form.symb'}) || ($env{'form.folderpath'}))) {
                   1438:             ($cfile,$home,$switchserver,$forceedit,$forceview) =
                   1439:             &Apache::lonnet::can_edit_resource($resurl,$cnum,$cdom,$resurl,
                   1440:                                                $env{'form.symb'});
                   1441:             if ($cfile ne '') {
                   1442:                 $editbutton = &get_editbutton($cfile,$home,$switchserver,
1.468     raeburn  1443:                                               $forceedit,$forceview,$forcereg);
1.393     raeburn  1444:             }
1.406     raeburn  1445:         } elsif (($resurl =~ m{^/?adm/viewclasslist$}) &&
                   1446:                  (&Apache::lonnet::allowed('opa',$env{'request.course.id'}))) {
                   1447:             ($cfile,$home,$switchserver,$forceedit,$forceview) =
                   1448:             &Apache::lonnet::can_edit_resource($resurl,$cnum,$cdom,$resurl,
                   1449:                                                $env{'form.symb'});
                   1450:             $editbutton = &get_editbutton($cfile,$home,$switchserver,
                   1451:                                           $forceedit,$forceview,$forcereg);
1.405     raeburn  1452:         } elsif (($resurl !~ m{^/?adm/($match_domain)/($match_username)/aboutme$}) &&
                   1453:                  ($resurl ne '/cgi-bin/printout.pl')) {
1.390     raeburn  1454:             if ($env{'request.filename'}) {
                   1455:                 my $file=&Apache::lonnet::declutter($env{'request.filename'});
                   1456:                 ($cfile,$home,$switchserver,$forceedit,$forceview) =
                   1457:                     &Apache::lonnet::can_edit_resource($file,$cnum,$cdom,
                   1458:                         &Apache::lonnet::clutter($resurl),$env{'request.symb'},$group);
                   1459:                 if ($cfile ne '') {
                   1460:                     $editbutton = &get_editbutton($cfile,$home,$switchserver,
1.468     raeburn  1461:                                                   $forceedit,$forceview,$forcereg,
                   1462:                                                   $hostname);
1.390     raeburn  1463:                 }
1.480     raeburn  1464:                 if ((($cfile eq '') || (!$editbutton)) &&
                   1465:                     ($resurl =~ /$LONCAPA::assess_re/)) {
                   1466:                     my $showurl = &Apache::lonnet::clutter($resurl);
1.501     raeburn  1467:                     my $crs_sec = $env{'request.course.id'} . (($env{'request.course.sec'} ne '')
                   1468:                                                               ? "/$env{'request.course.sec'}"
                   1469:                                                               : '');
1.480     raeburn  1470:                     if ((&Apache::lonnet::allowed('cre','/')) &&
                   1471:                         (&Apache::lonnet::metadata($resurl,'sourceavail') eq 'open')) {
                   1472:                         $viewsrcbutton = 1;
1.501     raeburn  1473:                     } elsif (&Apache::lonnet::allowed('vxc',$crs_sec)) {
1.480     raeburn  1474:                         if ($showurl =~ m{^\Q/res/$cdom/\E($match_username)/}) {
                   1475:                             my $auname = $1;
                   1476:                             if (($env{'request.course.adhocsrcaccess'} ne '') &&
                   1477:                                 (grep(/^\Q$auname\E$/,split(/,/,$env{'request.course.adhocsrcaccess'})))) {
                   1478:                                 $viewsrcbutton = 1;
1.481     raeburn  1479:                             } elsif ((&Apache::lonnet::metadata($resurl,'sourceavail') eq 'open') &&
1.501     raeburn  1480:                                      (&Apache::lonnet::allowed('bre',$crs_sec))) {
1.481     raeburn  1481:                                 $viewsrcbutton = 1;
1.480     raeburn  1482:                             }
                   1483:                         }
                   1484:                     }
                   1485:                     if ($viewsrcbutton) {
                   1486:                         &switch('','',6,1,'pcstr.png','View Source','resource[_2]','open_source()',
                   1487:                                 'View source code');
                   1488:                     }
                   1489:                 }
1.390     raeburn  1490:             }
                   1491:         }
                   1492:     }
                   1493: # End determination of 'Edit' icon/button display
                   1494: 
1.393     raeburn  1495:     if ($env{'request.course.id'}) {
1.390     raeburn  1496: # This applies to about me page for users in a course
1.391     raeburn  1497:         if ($resurl =~ m{^/?adm/($match_domain)/($match_username)/aboutme$}) {
1.390     raeburn  1498:             my ($sdom,$sname) = ($1,$2);
                   1499:             unless (&Apache::lonnet::is_course($sdom,$sname)) {
1.514     raeburn  1500:                 my $blocked = &Apache::loncommon::blocking_status('about',$clientip,$sname,$sdom);
1.504     raeburn  1501:                 unless ($blocked) {
                   1502:                     &switch('','',6,4,'mail-message-new-22x22.png','Message to user',
                   1503:                             '',
                   1504:                             "go('/adm/email?compose=individual&amp;recname=$sname&amp;recdom=$sdom')",
                   1505:                                 'Send message to specific user');
                   1506:                 }
1.390     raeburn  1507:             }
1.391     raeburn  1508:             my $hideprivileged = 1;
                   1509:             if (&Apache::lonnet::in_course($sdom,$sname,$cdom,$cnum,undef,
                   1510:                                            $hideprivileged)) {
1.390     raeburn  1511:                 foreach my $priv ('vsa','vgr','srm') {
                   1512:                     $perms{$priv} = &Apache::lonnet::allowed($priv,$env{'request.course.id'});
                   1513:                     if (!$perms{$priv} && $env{'request.course.sec'} ne '') {
                   1514:                         $perms{$priv} =
                   1515:                             &Apache::lonnet::allowed($priv,"$env{'request.course.id'}/$env{'request.course.sec'}");
                   1516:                     }
                   1517:                 }
                   1518:                 if ($perms{'vsa'}) {
                   1519:                     &switch('','',6,5,'trck-22x22.png','Activity',
                   1520:                             '',
                   1521:                             "go('/adm/trackstudent?selected_student=$sname:$sdom')",
                   1522:                             'View recent activity by this person');
                   1523:                 }
                   1524:                 if ($perms{'vgr'}) {
                   1525:                     &switch('','',6,6,'rsrv-22x22.png','Reservations',
                   1526:                             '',
1.415     raeburn  1527:                             "go('/adm/slotrequest?command=showresv&amp;origin=aboutme&amp;uname=$sname&amp;udom=$sdom')",
1.390     raeburn  1528:                             'Slot reservation history');
                   1529:                 }
                   1530:                 if ($perms{'srm'}) {
                   1531:                     &switch('','',6,7,'contact-new-22x22.png','Records',
                   1532:                             '',
1.415     raeburn  1533:                             "go('/adm/email?recordftf=retrieve&amp;recname=$sname&amp;recdom=$sdom')",
1.390     raeburn  1534:                             'Add records');
                   1535:                 }
                   1536:             }
1.393     raeburn  1537:         }
                   1538:         if (($env{'form.folderpath'} =~ /^supplemental/) &&
                   1539:             (&Apache::lonnet::allowed('mdc',$env{'request.course.id'})) &&
                   1540:             (($resurl =~ m{^/adm/wrapper/ext/}) ||
1.472     raeburn  1541:              ($resurl =~ m{^/adm/$cdom/$cnum/\d+/ext\.tool$}) ||
1.393     raeburn  1542:              ($resurl =~ m{^/uploaded/$cdom/$cnum/supplemental/}) ||
1.397     raeburn  1543:              ($resurl eq '/adm/supplemental') ||
                   1544:              ($resurl =~ m{^/public/$cdom/$cnum/syllabus$}) ||
                   1545:              ($resurl =~ m{^/adm/$match_domain/$match_username/aboutme$}))) {
1.393     raeburn  1546:             my @folders=split('&',$env{'form.folderpath'});
1.394     raeburn  1547:             if ((@folders > 2) || ($resurl ne '/adm/supplemental')) {
1.459     raeburn  1548:                 my $suppanchor;
                   1549:                 if ($resurl =~ m{^/adm/wrapper/ext/}) {
                   1550:                     $suppanchor = $env{'form.anchor'};
                   1551:                 }
1.393     raeburn  1552:                 my $esc_path=&escape(&HTML::Entities::encode(&escape($env{'form.folderpath'}),'<>&"'));
1.468     raeburn  1553:                 my $link = '/adm/coursedocs?command=direct&amp;forcesupplement=1&amp;supppath='.
                   1554:                            "$esc_path&amp;anchor=$suppanchor";
                   1555:                 if ($env{'request.use_absolute'} ne '') {
                   1556:                     $link = $env{'request.use_absolute'}.$link;
                   1557:                 }
1.393     raeburn  1558:                 &switch('','',7,4,'docs-22x22.png','Edit Folder','parms[_2]',
1.468     raeburn  1559:                         "location.href='$link'",'Folder/Page Content');
1.393     raeburn  1560:             }
1.390     raeburn  1561:         }
                   1562:     }
                   1563: 
                   1564: # End checking for items for about me page for users in a course
1.393     raeburn  1565:     if ($docscrumbs) {
                   1566:         &Apache::lonhtmlcommon::clear_breadcrumb_tools();
                   1567:         &advtools_crumbs(@inlineremote);
                   1568:         return $editbutton;
                   1569:     } elsif ($env{'request.registered'}) {
1.480     raeburn  1570:         return $editbutton || $viewsrcbutton;
1.390     raeburn  1571:     } else {
                   1572:         if (ref($bread_crumbs) eq 'ARRAY') {
                   1573:             if (@inlineremote > 0) {
                   1574:                 if (ref($advtools) eq 'ARRAY') {
                   1575:                     @{$advtools} = @inlineremote;
                   1576:                 }
                   1577:             }
                   1578:             return;
                   1579:         } elsif (@inlineremote > 0) {
                   1580:             &Apache::lonhtmlcommon::clear_breadcrumb_tools();
                   1581:             &advtools_crumbs(@inlineremote);
                   1582:             return   &Apache::lonhtmlcommon::scripttag('', 'start')
                   1583:                    . &Apache::lonhtmlcommon::breadcrumbs(undef,undef,0)
                   1584:                    . &Apache::lonhtmlcommon::scripttag('', 'end');
                   1585:         }
                   1586:     }
                   1587: }
                   1588: 
                   1589: sub advtools_crumbs {
                   1590:     my @funcs = @_;
                   1591:     if ($env{'request.noversionuri'} =~ m{^/adm/$match_domain/$match_username/aboutme$}) {
                   1592:         &Apache::lonhtmlcommon::add_breadcrumb_tool(
                   1593:             'advtools', @funcs[61,64,65,66,67,74]);
                   1594:     } elsif ($env{'request.noversionuri'} !~ m{^/adm/(navmaps|viewclasslist)(\?|$)}) {
1.515     raeburn  1595:         if ($env{'request.state'} eq 'construct') {
                   1596:             &Apache::lonhtmlcommon::add_breadcrumb_tool(
                   1597:                 'advtools', @funcs[61,73,74,71,72]);
                   1598:         } else {
                   1599:             &Apache::lonhtmlcommon::add_breadcrumb_tool(
                   1600:                 'advtools', @funcs[61,71,72,73,74,92]);
                   1601:         }
1.393     raeburn  1602:     } elsif ($env{'request.noversionuri'} eq '/adm/viewclasslist') {
                   1603:         &Apache::lonhtmlcommon::add_breadcrumb_tool(
1.407     raeburn  1604:             'advtools', $funcs[61]);
1.393     raeburn  1605:     }
1.412     raeburn  1606:     return;
1.258     raeburn  1607: }
                   1608: 
1.2       www      1609: # ================================================================== Raw Config
                   1610: 
1.3       www      1611: sub clear {
                   1612:     my ($row,$col)=@_;
1.316     droeschl 1613:     $inlineremote[10*$row+$col]='';
                   1614:     return ''; 
1.3       www      1615: }
                   1616: 
1.40      www      1617: # ============================================ Switch a button or create a link
1.25      matthew  1618: # Switch acts on the javascript that is executed when a button is clicked.  
                   1619: # The javascript is usually similar to "go('/adm/roles')" or "cstrgo(..)".
1.40      www      1620: 
1.2       www      1621: sub switch {
1.209     www      1622:     my ($uname,$udom,$row,$col,$img,$top,$bot,$act,$desc,$cat,$nobreak)=@_;
1.2       www      1623:     $act=~s/\$uname/$uname/g;
                   1624:     $act=~s/\$udom/$udom/g;
1.88      www      1625:     $top=&mt($top);
                   1626:     $bot=&mt($bot);
                   1627:     $desc=&mt($desc);
1.209     www      1628:     my $idx=10*$row+$col;
                   1629:     $category_members{$cat}.=':'.$idx;
                   1630: 
1.320     droeschl 1631: # Inline Menu
1.317     droeschl 1632:     if ($nobreak==2) { return ''; }
                   1633:     my $text=$top.' '.$bot;
                   1634:     $text=~s/\s*\-\s*//gs;
1.105     www      1635: 
1.317     droeschl 1636:     my $pic=
1.225     albertel 1637: 	   '<img alt="'.$text.'" src="'.
                   1638: 	   &Apache::loncommon::lonhttpdurl('/res/adm/pages/'.$img).
1.303     droeschl 1639: 	   '" align="'.($nobreak==3?'right':'left').'" class="LC_icon" />';
1.317     droeschl 1640:     if ($env{'browser.interface'} eq 'faketextual') {
1.274     www      1641: # Main Menu
1.103     www      1642: 	   if ($nobreak==3) {
1.209     www      1643: 	       $inlineremote[$idx]="\n".
1.177     albertel 1644: 		   '<td class="LC_menubuttons_text" align="right">'.$text.
1.247     harmsja  1645: 		   '</td><td align="left">'.
1.103     www      1646: 		   '<a href="javascript:'.$act.';">'.$pic.'</a></td></tr>';
                   1647: 	   } elsif ($nobreak) {
1.209     www      1648: 	       $inlineremote[$idx]="\n<tr>".
1.247     harmsja  1649: 		   '<td align="left">'.
1.177     albertel 1650: 		   '<a href="javascript:'.$act.';">'.$pic.'</a></td>
1.215     www      1651:                     <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      1652: 	   } else {
1.209     www      1653: 	       $inlineremote[$idx]="\n<tr>".
1.247     harmsja  1654: 		   '<td align="left">'.
1.103     www      1655: 		   '<a href="javascript:'.$act.';">'.$pic.
1.177     albertel 1656: 		   '</a></td><td class="LC_menubuttons_text" colspan="3">'.
1.215     www      1657: 		   '<a class="LC_menubuttons_link" href="javascript:'.$act.';"><span class="LC_menubuttons_inline_text">'.$desc.'</span></a></td></tr>';
1.103     www      1658: 	   }
1.317     droeschl 1659:     } else {
1.103     www      1660: # Inline Menu
1.378     raeburn  1661:         my @tools = (93,91,81,82,83);
                   1662:         unless ($env{'request.state'} eq 'construct') {
                   1663:             push(@tools,63);
                   1664:         }
1.492     raeburn  1665:         if ((($env{'environment.icons'} eq 'iconsonly') ||
                   1666:              ($env{'environment.icons'} eq '') && ($env{'request.lti.login'})) &&
1.378     raeburn  1667:             (grep(/^$idx$/,@tools))) {
                   1668:             $inlineremote[$idx] =
                   1669:         '<a title="'.$desc.'" class="LC_menubuttons_link" href="javascript:'.$act.';">'.$pic.'</a>';
                   1670:         } else {
                   1671:             $inlineremote[$idx] =
1.317     droeschl 1672:        '<a title="'.$desc.'" class="LC_menubuttons_link" href="javascript:'.$act.';">'.$pic.
1.344     www      1673:        '<span class="LC_menubuttons_inline_text">'.$top.'&nbsp;</span></a>';
1.378     raeburn  1674:         }
1.317     droeschl 1675:     }
1.56      www      1676:     return '';
1.2       www      1677: }
                   1678: 
                   1679: sub secondlevel {
                   1680:     my $output='';
                   1681:     my 
1.209     www      1682:     ($uname,$udom,$rol,$crs,$pub,$con,$row,$col,$prt,$img,$top,$bot,$act,$desc,$cat)=@_;
1.2       www      1683:     if ($prt eq 'any') {
1.209     www      1684: 	   $output.=&switch($uname,$udom,$row,$col,$img,$top,$bot,$act,$desc,$cat);
1.2       www      1685:     } elsif ($prt=~/^r(\w+)/) {
                   1686:         if ($rol eq $1) {
1.209     www      1687:            $output.=&switch($uname,$udom,$row,$col,$img,$top,$bot,$act,$desc,$cat);
1.2       www      1688:         }
                   1689:     }
                   1690:     return $output;
                   1691: }
                   1692: 
1.56      www      1693: sub inlinemenu {
1.210     albertel 1694:     undef(@inlineremote);
                   1695:     undef(%category_members);
1.275     www      1696: # calling rawconfig with "1" will evaluate mydesk.tab, even if there is no active remote control
1.56      www      1697:     &rawconfig(1);
1.309     bisitz   1698:     my $output='<table><tr>';
1.209     www      1699:     for (my $col=1; $col<=2; $col++) {
1.241     riegler  1700:         $output.='<td class="LC_mainmenu_col_fieldset">';
1.209     www      1701:         for (my $row=1; $row<=8; $row++) {
                   1702:             foreach my $cat (keys(%category_members)) {
                   1703:                if ($category_positions{$cat} ne "$col,$row") { next; }
1.247     harmsja  1704:                #$output.='<table><tr><td colspan="4" class="LC_menubuttons_category">'.&mt($category_names{$cat}).'</td></tr>';
1.309     bisitz   1705:                $output.='<div class="LC_Box LC_400Box">';
                   1706: 	       $output.='<h3 class="LC_hcell">'.&mt($category_names{$cat}).'</h3>';
1.247     harmsja  1707:                $output.='<table>';
1.240     riegler  1708:                my %active=();
                   1709:                foreach my $menu_item (split(/\:/,$category_members{$cat})) {
                   1710:                   if ($inlineremote[$menu_item]) {
                   1711:                      $active{$menu_item}=1;
                   1712:                   }
                   1713:                }  
                   1714:                foreach my $item (sort(keys(%active))) {
                   1715:                   $output.=$inlineremote[$item];
                   1716:                }
                   1717:                $output.='</table>';
1.245     harmsja  1718:                $output.='</div>';
1.240     riegler  1719:             }
                   1720:          }
                   1721:          $output.="</td>";
                   1722:     }
                   1723:     $output.="</tr></table>";
                   1724:     return $output;
                   1725: }
                   1726: 
1.2       www      1727: sub rawconfig {
1.274     www      1728: #
                   1729: # This evaluates mydesk.tab
                   1730: # Need to add more positions and more privileges to deal with all
                   1731: # menu items.
                   1732: #
1.34      www      1733:     my $textualoverride=shift;
                   1734:     my $output='';
1.316     droeschl 1735:     return '' unless $textualoverride;
1.152     albertel 1736:     my $uname=$env{'user.name'};
                   1737:     my $udom=$env{'user.domain'};
                   1738:     my $adv=$env{'user.adv'};
1.266     raeburn  1739:     my $show_course=&Apache::loncommon::show_course();
1.152     albertel 1740:     my $author=$env{'user.author'};
1.5       www      1741:     my $crs='';
1.295     raeburn  1742:     my $crstype='';
1.152     albertel 1743:     if ($env{'request.course.id'}) {
                   1744:        $crs='/'.$env{'request.course.id'};
                   1745:        if ($env{'request.course.sec'}) {
                   1746: 	   $crs.='_'.$env{'request.course.sec'};
1.7       www      1747:        }
1.8       www      1748:        $crs=~s/\_/\//g;
1.295     raeburn  1749:        $crstype = &Apache::loncommon::course_type();
1.5       www      1750:     }
1.152     albertel 1751:     my $pub=($env{'request.state'} eq 'published');
                   1752:     my $con=($env{'request.state'} eq 'construct');
                   1753:     my $rol=$env{'request.role'};
1.427     raeburn  1754:     my $requested_domain;
                   1755:     if ($rol) {
                   1756:        $requested_domain = $env{'request.role.domain'};
                   1757:     }
1.184     raeburn  1758:     foreach my $line (@desklines) {
1.209     www      1759:         my ($row,$col,$pro,$prt,$img,$top,$bot,$act,$desc,$cat)=split(/\:/,$line);
1.3       www      1760:         $prt=~s/\$uname/$uname/g;
                   1761:         $prt=~s/\$udom/$udom/g;
1.295     raeburn  1762:         if ($prt =~ /\$crs/) {
                   1763:             next unless ($env{'request.course.id'});
                   1764:             next if ($crstype eq 'Community');
                   1765:             $prt=~s/\$crs/$crs/g;
                   1766:         } elsif ($prt =~ /\$cmty/) {
                   1767:             next unless ($env{'request.course.id'});
                   1768:             next if ($crstype ne 'Community');
                   1769:             $prt=~s/\$cmty/$crs/g;
                   1770:         }
1.427     raeburn  1771:         if ($prt =~ m/\$requested_domain/) {
                   1772:             if ((!$requested_domain) && ($pro eq 'pbre') && ($env{'user.adv'})) {
                   1773:                 $prt=~s/\$requested_domain/$env{'user.domain'}/g;
                   1774:             } else {
                   1775:                 $prt=~s/\$requested_domain/$requested_domain/g;
                   1776:             }
                   1777:         }
1.211     www      1778:         if ($category_names{$cat}!~/\w/) { $cat='oth'; }
1.3       www      1779:         if ($pro eq 'clear') {
1.4       www      1780: 	    $output.=&clear($row,$col);
1.3       www      1781:         } elsif ($pro eq 'any') {
1.2       www      1782:                $output.=&secondlevel(
1.209     www      1783: 	  $uname,$udom,$rol,$crs,$pub,$con,$row,$col,$prt,$img,$top,$bot,$act,$desc,$cat);
1.2       www      1784: 	} elsif ($pro eq 'smp') {
                   1785:             unless ($adv) {
                   1786:                $output.=&secondlevel(
1.209     www      1787:           $uname,$udom,$rol,$crs,$pub,$con,$row,$col,$prt,$img,$top,$bot,$act,$desc,$cat);
1.2       www      1788:             }
                   1789:         } elsif ($pro eq 'adv') {
                   1790:             if ($adv) {
                   1791:                $output.=&secondlevel(
1.209     www      1792: 	  $uname,$udom,$rol,$crs,$pub,$con,$row,$col,$prt,$img,$top,$bot,$act,$desc,$cat);
1.2       www      1793:             }
1.231     albertel 1794: 	} elsif ($pro eq 'shc') {
                   1795:             if ($show_course) {
                   1796:                $output.=&secondlevel(
                   1797:           $uname,$udom,$rol,$crs,$pub,$con,$row,$col,$prt,$img,$top,$bot,$act,$desc,$cat);
                   1798:             }
                   1799:         } elsif ($pro eq 'nsc') {
                   1800:             if (!$show_course) {
                   1801:                $output.=&secondlevel(
                   1802: 	  $uname,$udom,$rol,$crs,$pub,$con,$row,$col,$prt,$img,$top,$bot,$act,$desc,$cat);
                   1803:             }
1.81      matthew  1804:         } elsif (($pro=~/^p(\w+)/) && ($prt)) {
1.295     raeburn  1805:             my $priv = $1;
                   1806:             if ($priv =~ /^mdc(Course|Community)/) {
                   1807:                 if ($crstype eq $1) {
                   1808:                     $priv = 'mdc';
                   1809:                 } else {
                   1810:                     next;
                   1811:                 }
                   1812:             }
1.427     raeburn  1813:             if ((($priv eq 'bre') && (&Apache::lonnet::allowed($priv,$prt) eq 'F')) ||
                   1814:                 (($priv ne 'bre') && (&Apache::lonnet::allowed($priv,$prt)))) {
                   1815:                 $output.=&switch($uname,$udom,$row,$col,$img,$top,$bot,$act,$desc,$cat);
1.4       www      1816:             }
1.295     raeburn  1817:         } elsif ($pro eq 'course')  {
                   1818:             if (($env{'request.course.fn'}) && ($crstype ne 'Community')) {
1.209     www      1819:                $output.=&switch($uname,$udom,$row,$col,$img,$top,$bot,$act,$desc,$cat);
1.81      matthew  1820: 	    }
1.295     raeburn  1821:         } elsif ($pro eq 'community')  {
                   1822:             if (($env{'request.course.fn'}) && ($crstype eq 'Community')) {
                   1823:                $output.=&switch($uname,$udom,$row,$col,$img,$top,$bot,$act,$desc,$cat);
                   1824:             }
1.124     matthew  1825:         } elsif ($pro =~ /^courseenv_(.*)$/) {
                   1826:             my $key = $1;
1.307     raeburn  1827:             if ($crstype ne 'Community') {
                   1828:                 my $coursepref = $env{'course.'.$env{'request.course.id'}.'.'.$key};
                   1829:                 if ($key eq 'canuse_pdfforms') {
                   1830:                     if ($env{'request.course.id'} && $coursepref eq '') {
                   1831:                         my %domdefs = &Apache::lonnet::get_domain_defaults($env{'course.'.$env{'request.course.id'}.'.domain'});
                   1832:                         $coursepref = $domdefs{'canuse_pdfforms'};
                   1833:                     }
                   1834:                 }
                   1835:                 if ($coursepref) { 
                   1836:                     $output.=&switch($uname,$udom,$row,$col,$img,$top,$bot,$act,$desc,$cat);
                   1837:                 }
1.295     raeburn  1838:             }
                   1839:         } elsif ($pro =~ /^communityenv_(.*)$/) {
                   1840:             my $key = $1;
1.307     raeburn  1841:             if ($crstype eq 'Community') {
                   1842:                 my $coursepref = $env{'course.'.$env{'request.course.id'}.'.'.$key};
                   1843:                 if ($key eq 'canuse_pdfforms') {
                   1844:                     if ($env{'request.course.id'} && $coursepref eq '') {
                   1845:                         my %domdefs = &Apache::lonnet::get_domain_defaults($env{'course.'.$env{'request.course.id'}.'.domain'});
                   1846:                         $coursepref = $domdefs{'canuse_pdfforms'};
                   1847:                     }
                   1848:                 }
                   1849:                 if ($coursepref) { 
                   1850:                     $output.=&switch($uname,$udom,$row,$col,$img,$top,$bot,$act,$desc,$cat);
                   1851:                 }
1.124     matthew  1852:             }
1.81      matthew  1853:         } elsif ($pro =~ /^course_(.*)$/) {
                   1854:             # Check for permissions inside of a course
1.295     raeburn  1855:             if (($env{'request.course.id'}) && ($crstype ne 'Community') && 
1.152     albertel 1856:                 (&Apache::lonnet::allowed($1,$env{'request.course.id'}.
                   1857:             ($env{'request.course.sec'}?'/'.$env{'request.course.sec'}:''))
1.81      matthew  1858:                  )) {
1.209     www      1859:                 $output.=&switch($uname,$udom,$row,$col,$img,$top,$bot,$act,$desc,$cat);
1.26      www      1860: 	    }
1.295     raeburn  1861:         } elsif ($pro =~ /^community_(.*)$/) {
                   1862:             # Check for permissions inside of a community
                   1863:             if (($env{'request.course.id'}) && ($crstype eq 'Community') &&   
                   1864:                 (&Apache::lonnet::allowed($1,$env{'request.course.id'}.
                   1865:             ($env{'request.course.sec'}?'/'.$env{'request.course.sec'}:''))
                   1866:                  )) {
                   1867:                 $output.=&switch($uname,$udom,$row,$col,$img,$top,$bot,$act,$desc,$cat);
                   1868:             }
1.4       www      1869:         } elsif ($pro eq 'author') {
                   1870:             if ($author) {
1.152     albertel 1871:                 if ((($prt eq 'rca') && ($env{'request.role'}=~/^ca/)) ||
1.234     raeburn  1872:                     (($prt eq 'raa') && ($env{'request.role'}=~/^aa/)) || 
1.152     albertel 1873:                     (($prt eq 'rau') && ($env{'request.role'}=~/^au/))) {
1.19      matthew  1874:                     # Check that we are on the correct machine
1.29      matthew  1875:                     my $cadom=$requested_domain;
1.152     albertel 1876:                     my $caname=$env{'user.name'};
1.234     raeburn  1877:                     if (($prt eq 'rca') || ($prt eq 'raa')) {
1.29      matthew  1878: 		       ($cadom,$caname)=
1.206     albertel 1879:                                ($env{'request.role'}=~/($match_domain)\/($match_username)$/);
1.29      matthew  1880:                     }                       
                   1881:                     $act =~ s/\$caname/$caname/g;
1.353     www      1882:                     $act =~ s/\$cadom/$cadom/g;
1.19      matthew  1883:                     my $home = &Apache::lonnet::homeserver($caname,$cadom);
1.109     albertel 1884: 		    my $allowed=0;
                   1885: 		    my @ids=&Apache::lonnet::current_machine_ids();
                   1886: 		    foreach my $id (@ids) { if ($id eq $home) { $allowed=1; } }
                   1887: 		    if ($allowed) {
1.209     www      1888:                         $output.=&switch($caname,$cadom,
                   1889:                                         $row,$col,$img,$top,$bot,$act,$desc,$cat);
1.19      matthew  1890:                     }
1.6       www      1891:                 }
1.2       www      1892:             }
1.248     raeburn  1893:         } elsif ($pro eq 'tools') {
                   1894:             my @tools = ('aboutme','blog','portfolio');
                   1895:             if (grep(/^\Q$prt\E$/,@tools)) {
1.249     raeburn  1896:                 if (!&Apache::lonnet::usertools_access($env{'user.name'},
1.251     raeburn  1897:                                                        $env{'user.domain'},
                   1898:                                                        $prt,undef,'tools')) {
                   1899:                     $output.=&clear($row,$col);
                   1900:                     next;
                   1901:                 }
1.278     raeburn  1902:             } elsif (($prt eq 'reqcrsnsc') || ($prt eq 'reqcrsshc')) {
                   1903:                 if (($prt eq 'reqcrsnsc') && ($show_course))   {
                   1904:                     next;
                   1905:                 }
                   1906:                 if (($prt eq 'reqcrsshc') && (!$show_course)) {
                   1907:                     next;
                   1908:                 }
1.279     raeburn  1909:                 my $showreqcrs = &check_for_rcrs();
1.251     raeburn  1910:                 if (!$showreqcrs) {
1.248     raeburn  1911:                     $output.=&clear($row,$col);
                   1912:                     next;
                   1913:                 }
                   1914:             }
                   1915:             $prt='any';
                   1916:             $output.=&secondlevel(
                   1917:           $uname,$udom,$rol,$crs,$pub,$con,$row,$col,$prt,$img,$top,$bot,$act,$desc,$cat);
1.2       www      1918:         }
1.13      harris41 1919:     }
1.2       www      1920:     return $output;
                   1921: }
                   1922: 
1.279     raeburn  1923: sub check_for_rcrs {
                   1924:     my $showreqcrs = 0;
1.443     raeburn  1925:     my @reqtypes = ('official','unofficial','community','textbook','placement');
1.280     raeburn  1926:     foreach my $type (@reqtypes) {
1.279     raeburn  1927:         if (&Apache::lonnet::usertools_access($env{'user.name'},
                   1928:                                               $env{'user.domain'},
                   1929:                                               $type,undef,'requestcourses')) {
                   1930:             $showreqcrs = 1;
                   1931:             last;
                   1932:         }
                   1933:     }
1.280     raeburn  1934:     if (!$showreqcrs) {
                   1935:         foreach my $type (@reqtypes) {
                   1936:             if ($env{'environment.reqcrsotherdom.'.$type} ne '') {
                   1937:                 $showreqcrs = 1;
                   1938:                 last;
                   1939:             }
                   1940:         }
                   1941:     }
1.279     raeburn  1942:     return $showreqcrs;
                   1943: }
                   1944: 
1.306     raeburn  1945: sub dc_popup_js {
                   1946:     my %lt = &Apache::lonlocal::texthash(
                   1947:                                           more => '(More ...)',
                   1948:                                           less => '(Less ...)',
                   1949:                                         );
                   1950:     return <<"END";
                   1951: 
                   1952: function showCourseID() {
                   1953:     document.getElementById('dccid').style.display='block';
                   1954:     document.getElementById('dccid').style.textAlign='left';
1.307     raeburn  1955:     document.getElementById('dccid').style.textFace='normal';
1.369     raeburn  1956:     document.getElementById('dccidtext').innerHTML ='<a href="javascript:hideCourseID();" class="LC_menubuttons_link">$lt{'less'}</a>';
1.306     raeburn  1957:     return;
                   1958: }
                   1959: 
                   1960: function hideCourseID() {
                   1961:     document.getElementById('dccid').style.display='none';
1.369     raeburn  1962:     document.getElementById('dccidtext').innerHTML ='<a href="javascript:showCourseID()" class="LC_menubuttons_link">$lt{'more'}</a>';
1.306     raeburn  1963:     return;
                   1964: }
                   1965: 
                   1966: END
                   1967: 
                   1968: }
                   1969: 
1.378     raeburn  1970: sub countdown_toggle_js {
                   1971:     return <<"END";
                   1972: 
                   1973: function toggleCountdown() {
                   1974:     var countdownid = document.getElementById('duedatecountdown');
                   1975:     var currstyle = countdownid.style.display;
                   1976:     if (currstyle == 'inline') {
                   1977:         countdownid.style.display = 'none';
                   1978:         document.getElementById('ddcountcollapse').innerHTML='';
                   1979:         document.getElementById('ddcountexpand').innerHTML='&#9668;&nbsp;';
                   1980:     } else {
                   1981:         countdownid.style.display = 'inline';
                   1982:         document.getElementById('ddcountcollapse').innerHTML='&#9658;&nbsp;';
                   1983:         document.getElementById('ddcountexpand').innerHTML='';
                   1984:     }
                   1985:     return;
                   1986: }
                   1987: 
                   1988: END
                   1989: }
                   1990: 
1.435     musolffc 1991: # This creates a "done button" for timed events.  The confirmation box is a jQuery
1.440     raeburn  1992: # dialog widget. If the interval parameter requires a proctor key for the timed 
                   1993: # event to be marked done, there will also be a textbox where that can be entered. 
                   1994: # Clicking OK will set the value of LC_interval_done to 'true', and, if needed will 
                   1995: # set the value of LC_interval_done_proctorpass to the text entered in that box, 
                   1996: # and submit the corresponding form.
                   1997: # 
                   1998: # The &zero_time() routine in lonhomework.pm is called when a page is rendered if
                   1999: # LC_interval_done is true.
                   2000: #
1.435     musolffc 2001: sub done_button_js {
1.448     raeburn  2002:     my ($type,$width,$height,$proctor,$donebuttontext) = @_;
1.441     raeburn  2003:     return unless (($type eq 'map') || ($type eq 'resource'));
1.435     musolffc 2004:     my %lt = &Apache::lonlocal::texthash(
                   2005:                  title    => 'WARNING!',
                   2006:                  preamble => 'You are trying to end this timed event early.',
                   2007:                  map      => 'Confirming that you are done will cause the time to expire and prevent you from changing any answers in the current folder.',
                   2008:                  resource => 'Confirming that you are done will cause the time to expire for this question, and prevent you from changing your answer(s).', 
1.440     raeburn  2009:                  okdone   => 'Click "OK" if you are completely finished.',
1.435     musolffc 2010:                  cancel   => 'Click "Cancel" to continue working.',
1.440     raeburn  2011:                  proctor  => 'Ask a proctor to enter the key, then click "OK" if you are completely finished.',
                   2012:                  ok       => 'OK',
                   2013:                  exit     => 'Cancel',
                   2014:                  key      => 'Key:',
                   2015:                  nokey    => 'A proctor key is required', 
1.435     musolffc 2016:     );
1.503     raeburn  2017:     my $shownsymb = &HTML::Entities::encode(&Apache::lonenc::check_encrypt($env{'request.symb'}));
1.441     raeburn  2018:     my $navmap = Apache::lonnavmaps::navmap->new(); 
1.450     raeburn  2019:     my ($missing,$tried) = (0,0);
1.441     raeburn  2020:     if (ref($navmap)) {
                   2021:         my @resources=();
                   2022:         if ($type eq 'map') {
                   2023:             my ($mapurl,$rid,$resurl)=&Apache::lonnet::decode_symb($env{'request.symb'});
1.500     raeburn  2024:             if ($env{'request.symb'} =~ /\.page$/) {
                   2025:                 @resources=$navmap->retrieveResources($resurl,sub { $_[0]->is_problem() });
                   2026:             } else {
                   2027:                 @resources=$navmap->retrieveResources($mapurl,sub { $_[0]->is_problem() });
                   2028:             }
1.441     raeburn  2029:         } else {
                   2030:             my $res = $navmap->getBySymb($env{'request.symb'});
                   2031:             if (ref($res)) {
                   2032:                 if ($res->is_problem()) {
                   2033:                     push(@resources,$res);
                   2034:                 }
                   2035:             }
                   2036:         }
                   2037:         foreach my $res (@resources) {
1.450     raeburn  2038:             if (ref($res->parts()) eq 'ARRAY') {
1.441     raeburn  2039:                 foreach my $part (@{$res->parts()}) {
                   2040:                     if (!$res->tries($part)) {
                   2041:                         $missing++;
                   2042:                     } else {
                   2043:                         $tried++;
                   2044:                     }
                   2045:                 }
                   2046:             }
                   2047:         }
                   2048:     }
                   2049:     if ($missing) {
                   2050:         $lt{'miss'} .= '<p class="LC_error">';
                   2051:         if ($type eq 'map') {
                   2052:             $lt{'miss'} .= &mt('Submissions are missing for [quant,_1,question part,question parts] in this folder.',$missing);
                   2053:         } else {
                   2054:             $lt{'miss'} .= &mt('Submissions are missing for [quant,_1,part] in this question.',$missing);
                   2055:         }
                   2056:         if ($missing > 1) {
                   2057:             $lt{'miss'} .= ' '.&mt('If you confirm you are done you will be unable to submit answers for them.').'</span>';
                   2058:         } else {
                   2059:             $lt{'miss'} .= ' '.&mt('If you confirm you are done you will be unable to submit an answer for it.').'</p>';
                   2060:         }
                   2061:     }
1.449     raeburn  2062:     $donebuttontext = &HTML::Entities::encode($donebuttontext,'<>&"');
1.441     raeburn  2063:     if ($proctor) {
                   2064:         if ($height !~ /^\d+$/) {
                   2065:             $height = 400;
                   2066:             if ($missing) {
                   2067:                 $height += 60; 
1.440     raeburn  2068:             }
1.441     raeburn  2069:         }
                   2070:         if ($width !~ /^\d+$/) {
                   2071:             $width = 400;
                   2072:             if ($missing) {
                   2073:                 $width += 60;
1.440     raeburn  2074:             }
1.441     raeburn  2075:         }
                   2076:         return <<END;
1.440     raeburn  2077: <form method="post" name="LCdoneButton" action="">
                   2078:     <input type="hidden" name="LC_interval_done" value="" />
                   2079:     <input type="hidden" name="LC_interval_done_proctorpass" value="" />
1.503     raeburn  2080:     <input type="hidden" name="symb" value="$shownsymb" />
1.448     raeburn  2081:     <button id="LC_done-confirm-opener" type="button">$donebuttontext</button>
1.440     raeburn  2082: </form>
                   2083: 
                   2084: <div id="LC_done-confirm" title="$lt{'title'}">
                   2085:   <p>$lt{'preamble'} $lt{$type}</p>
1.441     raeburn  2086:   $lt{'miss'}
1.440     raeburn  2087:   <p>$lt{'proctor'}</p>
1.449     raeburn  2088:   <form name="LCdoneButtonProctor" action="">
1.440     raeburn  2089:     <label>$lt{'key'}<input type="password" name="LC_interval_done_proctorkey" value="" /></label>
                   2090:     <input type="submit" tabindex="-1" style="position:absolute; top:-1000px" />
                   2091:   </form>
                   2092:   <p>$lt{'cancel'}</p>
                   2093: </div>
                   2094: 
                   2095: <script type="text/javascript">
                   2096: // <![CDATA[
                   2097:     \$( "#LC_done-confirm" ).dialog({ autoOpen: false });
                   2098:     \$( "#LC_done-confirm-opener" ).on("click", function() {
                   2099:         \$( "#LC_done-confirm" ).dialog("open");
                   2100:         \$( "#LC_done-confirm" ).dialog({
                   2101:             height: $height,
                   2102:             width: $width,
                   2103:             modal: true,
                   2104:             resizable: false,
                   2105:             buttons: [
                   2106:                 {
                   2107:                     text: "$lt{'ok'}",
                   2108:                     click: function() {
                   2109:                         var proctorkey = \$( '[name="LC_interval_done_proctorkey"]' )[0].value;
                   2110:                         if ((proctorkey == '') || (proctorkey == null)) {
                   2111:                             alert("$lt{'nokey'}"); 
                   2112:                         } else { 
                   2113:                             \$( '[name="LC_interval_done"]' )[0].value = 'true';
                   2114:                             \$( '[name="LC_interval_done_proctorpass"]' )[0].value = proctorkey;
                   2115:                             \$( '[name="LCdoneButton"]' )[0].submit();
                   2116:                         }
                   2117:                     },
                   2118:                 },
                   2119:                 {
                   2120:                     text: "$lt{'exit'}",
                   2121:                     click: function() {
                   2122:                         \$("#LC_done-confirm").dialog( "close" );
                   2123:                     }
                   2124:                 }
                   2125:             ],
                   2126:             close: function() {
                   2127:                 \$( '[name="LC_interval_done_proctorkey"]' )[0].value = '';
                   2128:             }
                   2129:         });
                   2130:         \$( "#LC_done-confirm" ).find( "form" ).on( "submit", function( event ) {
                   2131:             event.preventDefault();
                   2132:             \$( '[name="LC_interval_done"]' )[0].value = 'true';
                   2133:             \$( '[name="LC_interval_done_proctorpass"]' )[0].value = \$( '[name="LC_interval_done_proctorkey"]' )[0].value;
                   2134:             \$( '[name="LCdoneButton"]' )[0].submit();
                   2135:         });
                   2136: });
                   2137: 
                   2138: // ]]>
                   2139: </script>
                   2140: 
                   2141: END
1.441     raeburn  2142:     } else {
                   2143:         if ($height !~ /^\d+$/) {
                   2144:             $height = 320;
                   2145:             if ($missing) {
                   2146:                 $height += 60;
1.440     raeburn  2147:             }
1.441     raeburn  2148:         }
                   2149:         if ($width !~ /^\d+$/) {
                   2150:             $width = 320;
                   2151:             if ($missing) {
                   2152:                 $width += 60;
1.440     raeburn  2153:             }
1.441     raeburn  2154:         }
                   2155:         if ($missing) {
                   2156:             $lt{'miss'} = '</p>'.$lt{'miss'}.'<p>';
                   2157:         }
                   2158:         return <<END;
1.435     musolffc 2159: 
                   2160: <form method="post" name="LCdoneButton" action="">
                   2161:     <input type="hidden" name="LC_interval_done" value="" />
1.503     raeburn  2162:     <input type="hidden" name="symb" value="$shownsymb" />
1.449     raeburn  2163:     <button id="LC_done-confirm-opener" type="button">$donebuttontext</button>
1.435     musolffc 2164: </form>
                   2165: 
                   2166: <div id="LC_done-confirm" title="$lt{'title'}">
1.441     raeburn  2167:     <p>$lt{'preamble'} $lt{$type} $lt{'miss'} $lt{'okdone'} $lt{'cancel'}</p>
1.435     musolffc 2168: </div>
                   2169: 
                   2170: <script type="text/javascript">
                   2171: // <![CDATA[
                   2172: \$( "#LC_done-confirm" ).dialog({ autoOpen: false });
                   2173: \$( "#LC_done-confirm-opener" ).click(function() {
                   2174:     \$( "#LC_done-confirm" ).dialog( "open" );
                   2175:     \$( "#LC_done-confirm" ).dialog({
                   2176:       resizable: false,
                   2177:       height: $height,
1.440     raeburn  2178:       width: $width,
1.435     musolffc 2179:       modal: true,
1.440     raeburn  2180:       buttons: [
                   2181:                  {
                   2182:                     text: "$lt{'ok'}",
                   2183:                     click: function() {
                   2184:                         \$( this ).dialog( "close" );
                   2185:                         \$( '[name="LC_interval_done"]' )[0].value = 'true';
                   2186:                         \$( '[name="LCdoneButton"]' )[0].submit();
                   2187:                     },
                   2188:                  },
                   2189:                  {
                   2190:                      text: "$lt{'exit'}",
                   2191:                      click: function() {
                   2192:                          \$( this ).dialog( "close" );
                   2193:                      },
                   2194:                   },
                   2195:                ],
                   2196:        });
1.435     musolffc 2197: });
                   2198: // ]]>
                   2199: </script>
                   2200: 
                   2201: END
                   2202:     }
                   2203: }
                   2204: 
1.42      www      2205: sub utilityfunctions {
1.421     raeburn  2206:     my ($httphost) = @_;
1.152     albertel 2207:     my $currenturl=&Apache::lonnet::clutter(&Apache::lonnet::fixversion((split(/\?/,$env{'request.noversionuri'}))[0]));
1.494     raeburn  2208:     my $currentsymb=&Apache::lonenc::check_encrypt($env{'request.symb'});
                   2209:     if ($currenturl =~ m{^/adm/wrapper/ext/}) {
                   2210:         if ($env{'request.external.querystring'}) {
1.293     raeburn  2211:             $currenturl .= ($currenturl=~/\?/)?'&':'?'.$env{'request.external.querystring'};
1.494     raeburn  2212:         }
1.495     raeburn  2213:         my ($anchor) = ($env{'request.symb'} =~ /(\#[^\#]+)$/);
                   2214:         if (($anchor) && ($currenturl !~ /\Q$anchor\E$/)) {
1.494     raeburn  2215:             $currenturl .= $1;
                   2216:         }
1.293     raeburn  2217:     }
1.183     www      2218:     $currenturl=&Apache::lonenc::check_encrypt(&unescape($currenturl));
1.175     albertel 2219: 
1.306     raeburn  2220:     my $dc_popup_cid;
                   2221:     if ($env{'user.adv'} && exists($env{'user.role.dc./'.
                   2222:                         $env{'course.'.$env{'request.course.id'}.
                   2223:                                  '.domain'}.'/'})) {
                   2224:         $dc_popup_cid = &dc_popup_js();
                   2225:     }
                   2226: 
1.175     albertel 2227:     my $start_page_annotate = 
                   2228:         &Apache::loncommon::start_page('Annotator',undef,
                   2229: 				       {'only_body' => 1,
                   2230: 					'js_ready'  => 1,
                   2231: 					'bgcolor'   => '#BBBBBB',
                   2232: 					'add_entries' => {
                   2233: 					    'onload' => 'javascript:document.goannotate.submit();'}});
                   2234: 
1.205     albertel 2235:     my $end_page_annotate = 
                   2236:         &Apache::loncommon::end_page({'js_ready' => 1});
                   2237: 
1.389     raeburn  2238:     my $jumptores = &Apache::lonhtmlcommon::javascript_jumpto_resource();
1.336     raeburn  2239: 
1.368     www      2240:     my $esc_url=&escape($currenturl);
                   2241:     my $esc_symb=&escape($currentsymb);
1.515     raeburn  2242:     my $newname = &mt('New Name');
1.332     wenzelju 2243: 
1.378     raeburn  2244:     my $countdown = &countdown_toggle_js();
                   2245: 
1.516     raeburn  2246:     my ($ltitarget,$deeplinktarget);
1.487     raeburn  2247:     if ($env{'request.lti.login'}) {
                   2248:         $ltitarget = $env{'request.lti.target'};
                   2249:     }
1.516     raeburn  2250:     if ($env{'request.deeplink.login'}) {
                   2251:         $deeplinktarget = $env{'request.deeplink.target'};
                   2252:     }
1.487     raeburn  2253: 
1.493     raeburn  2254:     my $annotateurl = '/adm/annotation';
                   2255:     if ($httphost) {
                   2256:         $annotateurl = '/adm/annotations';
                   2257:     }
1.429     raeburn  2258:     my $hostvar = '
                   2259: function setLCHost() {
                   2260:     var lcHostname="";
                   2261: ';
                   2262:     if ($httphost =~ m{^https?\://}) {
                   2263:         $hostvar .= '    var lcServer="'.$httphost.'";'."\n".
                   2264:                     '    var hostReg = /^https?:\/\/([^\/]+)$/i;'."\n".
                   2265:                     '    var match = hostReg.exec(lcServer);'."\n".
                   2266:                     '    if (match.length) {'."\n".
                   2267:                     '        if (match[1] == location.hostname) {'."\n".
                   2268:                     '            lcHostname=lcServer;'."\n".
                   2269:                     '        }'."\n".
                   2270:                     '    }'."\n";
                   2271:     }
                   2272:     
                   2273:     $hostvar .= '    return lcHostname;'."\n".
                   2274: '}'."\n";
                   2275: 
1.42      www      2276: return (<<ENDUTILITY)
1.429     raeburn  2277:     $hostvar
1.368     www      2278:     var currentURL=unescape("$esc_url");
                   2279:     var reloadURL=unescape("$esc_url");
                   2280:     var currentSymb=unescape("$esc_symb");
1.42      www      2281: 
1.306     raeburn  2282: $dc_popup_cid
1.114     albertel 2283: 
1.389     raeburn  2284: $jumptores
1.336     raeburn  2285: 
1.42      www      2286: function gopost(url,postdata) {
                   2287:    if (url!='') {
1.429     raeburn  2288:       var lcHostname = setLCHost();
                   2289:       this.document.server.action=lcHostname+url;
1.42      www      2290:       this.document.server.postdata.value=postdata;
                   2291:       this.document.server.command.value='';
                   2292:       this.document.server.url.value='';
                   2293:       this.document.server.symb.value='';
                   2294:       this.document.server.submit();
                   2295:    }
                   2296: }
                   2297: 
                   2298: function gocmd(url,cmd) {
                   2299:    if (url!='') {
1.429     raeburn  2300:       var lcHostname = setLCHost();
                   2301:       this.document.server.action=lcHostname+url;
1.42      www      2302:       this.document.server.postdata.value='';
                   2303:       this.document.server.command.value=cmd;
                   2304:       this.document.server.url.value=currentURL;
                   2305:       this.document.server.symb.value=currentSymb;
                   2306:       this.document.server.submit();
                   2307:    }
1.57      www      2308: }
                   2309: 
1.121     raeburn  2310: function gocstr(url,filename) {
                   2311:     if (url == '/adm/cfile?action=delete') {
                   2312:         this.document.cstrdelete.filename.value = filename
                   2313:         this.document.cstrdelete.submit();
                   2314:         return;
                   2315:     }
1.515     raeburn  2316:     if ((url == '/adm/cfile?action=copy') || (url == '/adm/cfile?action=rename')) {
                   2317:         this.document.cstrcopy.filename.value = filename;
                   2318:         var oldname = filename.substring(filename.lastIndexOf("/") + 1);
                   2319:         var newname=prompt('$newname',oldname);
                   2320:         if (newname == "" || !newname || newname == oldname)  {
                   2321:             return;
                   2322:         }
                   2323:         if (url == '/adm/cfile?action=rename') {
                   2324:             this.document.cstrcopy.action.value = 'rename';
                   2325:         } else {
                   2326:             this.document.cstrcopy.action.value = 'copy';
                   2327:         }
                   2328:         this.document.cstrcopy.newfilename.value = newname;
                   2329:         this.document.cstrcopy.submit();
                   2330:         return;
                   2331:     }
1.137     raeburn  2332:     if (url == '/adm/printout') {
                   2333:         this.document.cstrprint.postdata.value = filename
                   2334:         this.document.cstrprint.curseed.value = 0;
                   2335:         this.document.cstrprint.problemtype.value = 0;
1.138     raeburn  2336:         if (this.document.lonhomework) {
                   2337:             if ((this.document.lonhomework.rndseed) && (this.document.lonhomework.rndseed.value != null) && (this.document.lonhomework.rndseed.value != '')) {
                   2338:                 this.document.cstrprint.curseed.value = this.document.lonhomework.rndseed.value
                   2339:             }
                   2340:             if (this.document.lonhomework.problemtype) {
1.164     albertel 2341: 		if (this.document.lonhomework.problemtype.value) {
                   2342: 		    this.document.cstrprint.problemtype.value = 
                   2343: 			this.document.lonhomework.problemtype.value;
                   2344: 		} else if (this.document.lonhomework.problemtype.options) {
                   2345: 		    for (var i=0; i<this.document.lonhomework.problemtype.options.length; i++) {
                   2346: 			if (this.document.lonhomework.problemtype.options[i].selected) {
                   2347: 			    if (this.document.lonhomework.problemtype.options[i].value != null && this.document.lonhomework.problemtype.options[i].value != '') { 
                   2348: 				this.document.cstrprint.problemtype.value = this.document.lonhomework.problemtype.options[i].value
                   2349: 				}
                   2350: 			}
                   2351: 		    }
                   2352: 		}
                   2353: 	    }
                   2354: 	}
1.137     raeburn  2355:         this.document.cstrprint.submit();
                   2356:         return;
                   2357:     }
1.121     raeburn  2358:     if (url !='') {
                   2359:         this.document.constspace.filename.value = filename;
                   2360:         this.document.constspace.action = url;
                   2361:         this.document.constspace.submit();
                   2362:     }
                   2363: }
                   2364: 
1.131     raeburn  2365: function golist(url) {
                   2366:    if (url!='' && url!= null) {
                   2367:        currentURL = null;
                   2368:        currentSymb= null;
1.429     raeburn  2369:        var lcHostname = setLCHost();
1.487     raeburn  2370:        var ltitarget = '$ltitarget';
1.517   ! raeburn  2371:        var deeplinktarget = '$deeplinktarget';
        !          2372:        if ((ltitarget == 'iframe') || (deeplinktarget == '_self')) {
1.487     raeburn  2373:            document.location.href=lcHostname+url;
                   2374:        } else {
                   2375:            top.location.href=lcHostname+url;
                   2376:        }
1.131     raeburn  2377:    }
                   2378: }
                   2379: 
                   2380: 
1.121     raeburn  2381: 
1.496     raeburn  2382: function catalog_info(url,isMobile) {
1.428     raeburn  2383:     if (isMobile == 1) {
1.496     raeburn  2384:         openMyModal(url+'.meta?modal=1',500,400,'yes');
1.428     raeburn  2385:     } else {
1.496     raeburn  2386:         loncatinfo=window.open(url+'.meta',"LONcatInfo",'height=500,width=400,resizable=yes,scrollbars=yes,location=no,menubar=no,toolbar=no');
1.428     raeburn  2387:     }
1.57      www      2388: }
                   2389: 
                   2390: function chat_win() {
1.429     raeburn  2391:    var lcHostname = setLCHost();
                   2392:    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      2393: }
1.169     raeburn  2394: 
                   2395: function group_chat(group) {
1.429     raeburn  2396:    var lcHostname = setLCHost();
                   2397:    var url = lcHostname+'/adm/groupchat?group='+group;
1.169     raeburn  2398:    var winName = 'LONchat_'+group;
                   2399:    grpchat=window.open(url,winName,'height=320,width=280,resizable=yes,location=no,menubar=no,toolbar=no');
                   2400: }
1.175     albertel 2401: 
                   2402: function annotate() {
                   2403:    w_Annotator_flag=1;
                   2404:    annotator=window.open('','Annotator','width=365,height=265,scrollbars=0');
                   2405:    annotator.document.write(
                   2406:    '$start_page_annotate'
                   2407:   +"<form name='goannotate' target='Annotator' method='post' "
1.493     raeburn  2408:   +"action='$annotateurl'>"
1.217     albertel 2409:   +"<input type='hidden' name='symbnew' value='"+currentSymb+"' />"
1.181     albertel 2410:   +"<\\/form>"
1.205     albertel 2411:   +'$end_page_annotate');
1.175     albertel 2412:    annotator.document.close();
                   2413: }
                   2414: 
1.370     raeburn  2415: function open_StoredLinks_Import(rat) {
1.335     wenzelju 2416:    var newWin;
1.429     raeburn  2417:    var lcHostname = setLCHost();
1.335     wenzelju 2418:    if (rat) {
1.429     raeburn  2419:        newWin = window.open(lcHostname+'/adm/wishlist?inhibitmenu=yes&mode=import&rat='+rat,
1.334     wenzelju 2420:                             'wishlistImport','scrollbars=1,resizable=1,menubar=0');
1.335     wenzelju 2421:    }
                   2422:    else {
1.429     raeburn  2423:        newWin = window.open(lcHostname+'/adm/wishlist?inhibitmenu=yes&mode=import',
1.335     wenzelju 2424:                             'wishlistImport','scrollbars=1,resizable=1,menubar=0');
                   2425:    }
1.334     wenzelju 2426:    newWin.focus();
                   2427: }
                   2428: 
1.480     raeburn  2429: function open_source() {
1.496     raeburn  2430:    sourcewin=window.open('/adm/source?inhibitmenu=yes&viewonly=1&filename='+currentURL,'LONsource',
1.480     raeburn  2431:                          'height=500,width=600,resizable=yes,location=no,menubar=no,toolbar=no,scrollbars=yes');
                   2432: }
                   2433: 
1.491     raeburn  2434: function open_aboutLC() {
                   2435:     var isMobile = "$env{'browser.mobile'}";
                   2436:     var url = '/adm/about.html';
                   2437:     if (isMobile == 1) {
                   2438:         openMyModal(url,600,400,'yes');
                   2439:     } else {
                   2440:         window.open(url,"aboutLONCAPA","height=400,width=600,scrollbars=1,resizable=1,menubar=0,location=1");
                   2441:     }
                   2442:     return;
                   2443: }
                   2444: 
                   2445: 
1.372     raeburn  2446: (function (\$) {
                   2447:   \$(document).ready(function () {
                   2448:     \$.single=function(a){return function(b){a[0]=b;return a}}(\$([1]));
                   2449:     /*\@cc_on
                   2450:       if (!window.XMLHttpRequest) {
                   2451:         \$('.LC_hoverable').each(function () {
                   2452:           this.attachEvent('onmouseenter', function (evt) { \$.single(evt.srcElement).addClass('hover'); });
                   2453:           this.attachEvent('onmouseleave', function (evt) { \$.single(evt.srcElement).removeClass('hover'); });
                   2454:         });
                   2455:       }
                   2456:     \@*/
                   2457:   });
                   2458: }(jQuery));
                   2459: 
1.378     raeburn  2460: $countdown
                   2461: 
1.42      www      2462: ENDUTILITY
                   2463: }
                   2464: 
                   2465: sub serverform {
1.486     raeburn  2466:     my $target;
                   2467:     unless (($env{'request.lti.login'}) && ($env{'request.lti.target'} eq 'iframe')) {
                   2468:         $target = ' target="_top"';
                   2469:     }
1.516     raeburn  2470:     if (($env{'request.deeplink.login'}) && ($env{'request.deeplink.target'} eq '_self')) {
                   2471:         $target = ' target="_self"';
                   2472:     }
1.42      www      2473:     return(<<ENDSERVERFORM);
1.486     raeburn  2474: <form name="server" action="/adm/logout" method="post"$target>
1.42      www      2475: <input type="hidden" name="postdata" value="none" />
                   2476: <input type="hidden" name="command" value="none" />
                   2477: <input type="hidden" name="url" value="none" />
                   2478: <input type="hidden" name="symb" value="none" />
                   2479: </form>
                   2480: ENDSERVERFORM
                   2481: }
1.113     albertel 2482: 
1.121     raeburn  2483: sub constspaceform {
1.487     raeburn  2484:     my ($target,$printtarget);
1.516     raeburn  2485:     unless ((($env{'request.lti.login'}) && ($env{'request.lti.target'} eq 'iframe')) ||
                   2486:             (($env{'request.deeplink.login'}) && ($env{'request.deeplink.target'} eq '_self'))) {
1.487     raeburn  2487:         $target = ' target="_top"';
                   2488:         $printtarget = ' target="_parent"';
                   2489:     }
1.121     raeburn  2490:     return(<<ENDCONSTSPACEFORM);
1.487     raeburn  2491: <form name="constspace" action="/adm/logout" method="post"$target>
1.121     raeburn  2492: <input type="hidden" name="filename" value="" />
                   2493: </form>
1.487     raeburn  2494: <form name="cstrdelete" action="/adm/cfile" method="post"$target>
1.121     raeburn  2495: <input type="hidden" name="action" value="delete" /> 
                   2496: <input type="hidden" name="filename" value="" />
                   2497: </form>
1.487     raeburn  2498: <form name="cstrprint" action="/adm/printout" method="post"$printtarget>
1.137     raeburn  2499: <input type="hidden" name="postdata" value="" />
                   2500: <input type="hidden" name="curseed" value="" />
                   2501: <input type="hidden" name="problemtype" value="" />
                   2502: </form>
1.515     raeburn  2503: <form name="cstrcopy" action="/adm/cfile" method="post"$target>
                   2504: <input type="hidden" name="action" value="copy" />
                   2505: <input type="hidden" name="filename" value="" />
                   2506: <input type="hidden" name="newfilename" value="" />
                   2507: </form>
1.137     raeburn  2508: 
1.121     raeburn  2509: ENDCONSTSPACEFORM
                   2510: }
                   2511: 
1.220     raeburn  2512: sub hidden_button_check {
1.317     droeschl 2513:     if ( $env{'request.course.id'} eq ''
                   2514:          || $env{'request.role.adv'} ) {
                   2515: 
1.220     raeburn  2516:         return;
                   2517:     }
1.232     raeburn  2518:     my $buttonshide = &Apache::lonnet::EXT('resource.0.buttonshide');
                   2519:     return $buttonshide; 
1.220     raeburn  2520: }
1.184     raeburn  2521: 
1.235     raeburn  2522: sub roles_selector {
1.516     raeburn  2523:     my ($cdom,$cnum,$httphost) = @_;
1.298     raeburn  2524:     my $crstype = &Apache::loncommon::course_type();
1.235     raeburn  2525:     my $now = time;
1.465     raeburn  2526:     my (%courseroles,%seccount,%courseprivs,%roledesc);
1.235     raeburn  2527:     my $is_cc;
1.507     raeburn  2528:     my ($js,$form,$switcher,$has_opa_priv);
1.298     raeburn  2529:     my $ccrole;
                   2530:     if ($crstype eq 'Community') {
                   2531:         $ccrole = 'co';
                   2532:     } else {
                   2533:         $ccrole = 'cc';
1.350     raeburn  2534:     }
1.457     raeburn  2535:     my ($privref,$gotsymb,$destsymb);
1.350     raeburn  2536:     my $destinationurl = $ENV{'REQUEST_URI'};
1.468     raeburn  2537:     if ($destinationurl =~ /(\?|\&)symb=/) {
1.386     raeburn  2538:         $gotsymb = 1;
                   2539:     } elsif ($destinationurl =~ m{^/enc/}) {
                   2540:         my $plainurl = &Apache::lonenc::unencrypted($destinationurl);
1.468     raeburn  2541:         if ($plainurl =~ /(\?|\&)symb=/) {
1.386     raeburn  2542:             $gotsymb = 1;
                   2543:         }
                   2544:     }
                   2545:     unless ($gotsymb) {
                   2546:         $destsymb = &Apache::lonnet::symbread();
                   2547:         if ($destsymb ne '') {
                   2548:             $destsymb = &Apache::lonenc::check_encrypt($destsymb);
                   2549:         }
                   2550:     }
1.350     raeburn  2551:     my $reqprivs = &required_privs();
                   2552:     if (ref($reqprivs) eq 'HASH') {
                   2553:         my $destination = $destinationurl;
                   2554:         $destination =~ s/(\?.*)$//;
                   2555:         if (exists($reqprivs->{$destination})) {
1.457     raeburn  2556:             if ($reqprivs->{$destination} =~ /,/) {
                   2557:                 @{$privref} = split(/,/,$reqprivs->{$destination});
                   2558:             } else { 
                   2559:                 $privref = [$reqprivs->{$destination}];
                   2560:             }
1.350     raeburn  2561:         }
                   2562:     }
1.298     raeburn  2563:     if ($env{'user.role.'.$ccrole.'./'.$cdom.'/'.$cnum}) {
                   2564:         my ($start,$end) = split(/\./,$env{'user.role.'.$ccrole.'./'.$cdom.'/'.$cnum});
1.235     raeburn  2565:         if ((($start) && ($start<0)) || 
                   2566:             (($end) && ($end<$now))  ||
                   2567:             (($start) && ($now<$start))) {
                   2568:             $is_cc = 0;
                   2569:         } else {
                   2570:             $is_cc = 1;
                   2571:         }
                   2572:     }
                   2573:     if ($is_cc) {
1.457     raeburn  2574:         &get_all_courseroles($cdom,$cnum,\%courseroles,\%seccount,\%courseprivs);
                   2575:     } elsif ($env{'request.role'} =~ m{^\Qcr/$cdom/$cdom-domainconfig/\E(\w+)\.\Q/$cdom/$cnum\E}) {
1.465     raeburn  2576:         &get_customadhoc_roles($cdom,$cnum,\%courseroles,\%seccount,\%courseprivs,\%roledesc,$privref);
1.235     raeburn  2577:     } else {
1.262     raeburn  2578:         my %gotnosection;
1.235     raeburn  2579:         foreach my $item (keys(%env)) {
1.239     raeburn  2580:             if ($item =~ m-^user\.role\.([^.]+)\./\Q$cdom\E/\Q$cnum\E/?(\w*)$-) {
1.235     raeburn  2581:                 my $role = $1;
                   2582:                 my $sec = $2;
                   2583:                 next if ($role eq 'gr');
                   2584:                 my ($start,$end) = split(/\./,$env{$item});
                   2585:                 next if (($start && $start > $now) || ($end && $end < $now));
                   2586:                 if ($sec eq '') {
1.239     raeburn  2587:                     if (!$gotnosection{$role}) {
                   2588:                         $seccount{$role} ++;
                   2589:                         $gotnosection{$role} = 1;
                   2590:                     }
1.235     raeburn  2591:                 }
1.457     raeburn  2592:                 if ((ref($privref) eq 'ARRAY') && (@{$privref} > 0)) {
1.350     raeburn  2593:                     my $cnumsec = $cnum;
                   2594:                     if ($sec ne '') {
                   2595:                         $cnumsec .= "/$sec";
                   2596:                     }
                   2597:                     $courseprivs{"$role./$cdom/$cnumsec./"} =
                   2598:                         $env{"user.priv.$role./$cdom/$cnumsec./"};
                   2599:                     $courseprivs{"$role./$cdom/$cnumsec./$cdom/"} =
                   2600:                         $env{"user.priv.$role./$cdom/$cnumsec./$cdom/"};
                   2601:                     $courseprivs{"$role./$cdom/$cnumsec./$cdom/$cnumsec"} =
                   2602:                         $env{"user.priv.$role./$cdom/$cnumsec./$cdom/$cnumsec"};
                   2603:                 }
1.235     raeburn  2604:                 if (ref($courseroles{$role}) eq 'ARRAY') {
1.239     raeburn  2605:                     if ($sec ne '') {
1.264     raeburn  2606:                         if (!grep(/^\Q$sec\E$/,@{$courseroles{$role}})) {
1.239     raeburn  2607:                             push(@{$courseroles{$role}},$sec);
                   2608:                             $seccount{$role} ++;
                   2609:                         }
                   2610:                     }
                   2611:                 } else {
                   2612:                     @{$courseroles{$role}} = ();
                   2613:                     if ($sec ne '') {
                   2614:                         $seccount{$role} ++;
1.235     raeburn  2615:                         push(@{$courseroles{$role}},$sec);
                   2616:                     }
                   2617:                 }
                   2618:             }
                   2619:         }
                   2620:     }
1.298     raeburn  2621:     my @roles_order = ($ccrole,'in','ta','ep','ad','st');
1.402     raeburn  2622:     my $numdiffsec;
                   2623:     if (keys(%seccount) == 1) {
                   2624:         foreach my $key (keys(%seccount)) {
                   2625:             $numdiffsec = $seccount{$key};
                   2626:         }
                   2627:     }
                   2628:     if ((keys(%seccount) > 1) || ($numdiffsec > 1)) {
1.401     raeburn  2629:         my @submenu;
1.465     raeburn  2630:         $js = &jump_to_role($cdom,$cnum,\%seccount,\%courseroles,\%courseprivs,\%roledesc,$privref);
1.401     raeburn  2631:         $form = 
1.421     raeburn  2632:             '<form name="rolechooser" method="post" action="'.$httphost.'/adm/roles">'."\n".
1.401     raeburn  2633:             '  <input type="hidden" name="destinationurl" value="'.
                   2634:             &HTML::Entities::encode($destinationurl).'" />'."\n".
                   2635:             '  <input type="hidden" name="gotorole" value="1" />'."\n".
                   2636:             '  <input type="hidden" name="selectrole" value="" />'."\n".
1.402     raeburn  2637:             '  <input type="hidden" name="switchrole" value="" />'."\n";
                   2638:         if ($destsymb ne '') {
                   2639:             $form .= '  <input type="hidden" name="destsymb" value="'.
                   2640:                         &HTML::Entities::encode($destsymb).'" />'."\n";
                   2641:         }
                   2642:         $form .= '</form>'."\n";
1.235     raeburn  2643:         foreach my $role (@roles_order) {
1.402     raeburn  2644:             my $include;
1.235     raeburn  2645:             if (defined($courseroles{$role})) {
1.402     raeburn  2646:                 if ($env{'request.role'} =~ m{^\Q$role\E}) {
                   2647:                     if ($seccount{$role} > 1) {
                   2648:                         $include = 1;
1.507     raeburn  2649:                     } else {
                   2650:                         if ($env{'user.priv.'.$env{'request.role'}."./$cdom/$cnum"} =~/opa\&([^\:]*)/) {
                   2651:                             $has_opa_priv = 1;
                   2652:                         }
1.402     raeburn  2653:                     }
                   2654:                 } else {
                   2655:                     $include = 1;
                   2656:                 }
                   2657:             }
                   2658:             if ($include) {
1.507     raeburn  2659:                 if ($env{"user.priv.$role./$cdom/$cnum./$cdom/$cnum"} =~/opa\&([^\:]*)/) {
                   2660:                     $has_opa_priv = 1;
                   2661:                 }
1.401     raeburn  2662:                 push(@submenu,['javascript:adhocRole('."'$role'".')',
                   2663:                                &Apache::lonnet::plaintext($role,$crstype)]);
1.235     raeburn  2664:             }
                   2665:         }
                   2666:         foreach my $role (sort(keys(%courseroles))) {
                   2667:             if ($role =~ /^cr/) {
1.403     raeburn  2668:                 my $include;
                   2669:                 if ($env{'request.role'} =~ m{^\Q$role\E}) {
1.402     raeburn  2670:                     if ($seccount{$role} > 1) {
                   2671:                         $include = 1;
                   2672:                     }
1.403     raeburn  2673:                 } else {
                   2674:                     $include = 1; 
                   2675:                 }
                   2676:                 if ($include) {
1.460     raeburn  2677:                     my $rolename;
                   2678:                     if ($role =~ m{^cr/$cdom/$cdom\-domainconfig/(\w+)(?:/\w+|$)}) {
1.465     raeburn  2679:                         $rolename = $roledesc{$role};
                   2680:                         if ($rolename eq '') {
                   2681:                             $rolename = &mt('Helpdesk [_1]',$1);
                   2682:                         }
1.460     raeburn  2683:                     } else {
                   2684:                         $rolename = &Apache::lonnet::plaintext($role);
                   2685:                     }
1.507     raeburn  2686:                     if ($env{"user.priv.$role./$cdom/$cnum./$cdom/$cnum"} =~/opa\&([^\:]*)/) {
                   2687:                         $has_opa_priv = 1;
                   2688:                     }
1.403     raeburn  2689:                     push(@submenu,['javascript:adhocRole('."'$role'".')',
1.460     raeburn  2690:                                    $rolename]);
1.403     raeburn  2691:                 }
1.235     raeburn  2692:             }
                   2693:         }
1.401     raeburn  2694:         if (@submenu > 0) {
1.516     raeburn  2695:             $switcher = &create_submenu('','',&mt('Switch role'),\@submenu);
1.386     raeburn  2696:         }
1.235     raeburn  2697:     }
1.507     raeburn  2698:     return ($js,$form,$switcher,$has_opa_priv);
1.235     raeburn  2699: }
                   2700: 
1.262     raeburn  2701: sub get_all_courseroles {
1.350     raeburn  2702:     my ($cdom,$cnum,$courseroles,$seccount,$courseprivs) = @_;
1.351     raeburn  2703:     unless ((ref($courseroles) eq 'HASH') && (ref($seccount) eq 'HASH') &&
1.350     raeburn  2704:             (ref($courseprivs) eq 'HASH')) {
1.262     raeburn  2705:         return;
                   2706:     }
                   2707:     my ($result,$cached) = 
                   2708:         &Apache::lonnet::is_cached_new('getcourseroles',$cdom.'_'.$cnum);
                   2709:     if (defined($cached)) {
                   2710:         if (ref($result) eq 'HASH') {
                   2711:             if ((ref($result->{'roles'}) eq 'HASH') && 
1.350     raeburn  2712:                 (ref($result->{'seccount'}) eq 'HASH') && 
                   2713:                 (ref($result->{'privs'}) eq 'HASH')) {
1.262     raeburn  2714:                 %{$courseroles} = %{$result->{'roles'}};
                   2715:                 %{$seccount} = %{$result->{'seccount'}};
1.350     raeburn  2716:                 %{$courseprivs} = %{$result->{'privs'}};
1.262     raeburn  2717:                 return;
                   2718:             }
                   2719:         }
                   2720:     }
                   2721:     my %gotnosection;
                   2722:     my %adv_roles =
                   2723:          &Apache::lonnet::get_course_adv_roles($env{'request.course.id'},1);
                   2724:     foreach my $role (keys(%adv_roles)) {
                   2725:         my ($urole,$usec) = split(/:/,$role);
                   2726:         if (!$gotnosection{$urole}) {
                   2727:             $seccount->{$urole} ++;
                   2728:             $gotnosection{$urole} = 1;
                   2729:         }
                   2730:         if (ref($courseroles->{$urole}) eq 'ARRAY') {
                   2731:             if ($usec ne '') {
                   2732:                 if (!grep(/^Q$usec\E$/,@{$courseroles->{$urole}})) {
                   2733:                     push(@{$courseroles->{$urole}},$usec);
                   2734:                     $seccount->{$urole} ++;
                   2735:                 }
                   2736:             }
                   2737:         } else {
                   2738:             @{$courseroles->{$urole}} = ();
                   2739:             if ($usec ne '') {
                   2740:                 $seccount->{$urole} ++;
                   2741:                 push(@{$courseroles->{$urole}},$usec);
                   2742:             }
                   2743:         }
1.350     raeburn  2744:         my $area = '/'.$cdom.'/'.$cnum;
                   2745:         if ($usec ne '') {
                   2746:             $area .= '/'.$usec;
                   2747:         }
                   2748:         if ($role =~ /^cr\//) {
                   2749:             &Apache::lonnet::custom_roleprivs($courseprivs,$urole,$cdom,$cnum,$urole.'.'.$area,$area);
                   2750:         } else {
                   2751:             &Apache::lonnet::standard_roleprivs($courseprivs,$urole,$cdom,$urole.'.'.$area,$cnum,$area);
                   2752:         }
1.262     raeburn  2753:     }
                   2754:     my %sections_count = &Apache::loncommon::get_sections($cdom,$cnum,['st']);
                   2755:     @{$courseroles->{'st'}} = ();
1.350     raeburn  2756:     &Apache::lonnet::standard_roleprivs($courseprivs,'st',$cdom,"st./$cdom/$cnum",$cnum,"/$cdom/$cnum");
1.262     raeburn  2757:     if (keys(%sections_count) > 0) {
                   2758:         push(@{$courseroles->{'st'}},keys(%sections_count));
1.350     raeburn  2759:         $seccount->{'st'} = scalar(keys(%sections_count));
1.262     raeburn  2760:     }
1.410     raeburn  2761:     $seccount->{'st'} ++; # Increment for a section-less student role.  
1.262     raeburn  2762:     my $rolehash = {
                   2763:                      'roles'    => $courseroles,
                   2764:                      'seccount' => $seccount,
1.350     raeburn  2765:                      'privs'    => $courseprivs,
1.262     raeburn  2766:                    };
                   2767:     &Apache::lonnet::do_cache_new('getcourseroles',$cdom.'_'.$cnum,$rolehash);
                   2768:     return;
                   2769: }
                   2770: 
1.457     raeburn  2771: sub get_customadhoc_roles {
1.465     raeburn  2772:     my ($cdom,$cnum,$courseroles,$seccount,$courseprivs,$roledesc,$privref) = @_;
1.457     raeburn  2773:     unless ((ref($courseroles) eq 'HASH') && (ref($seccount) eq 'HASH') &&
1.465     raeburn  2774:             (ref($courseprivs) eq 'HASH') && (ref($roledesc) eq 'HASH')) {
1.457     raeburn  2775:         return;
                   2776:     }
1.466     raeburn  2777:     my $is_helpdesk = 0;
                   2778:     my $now = time;
                   2779:     foreach my $role ('dh','da') {
                   2780:         if ($env{"user.role.$role./$cdom/"}) {
                   2781:             my ($start,$end)=split(/\./,$env{"user.role.$role./$cdom/"});
                   2782:             if (!($start && ($now<$start)) && !($end && ($now>$end))) {
                   2783:                 $is_helpdesk = 1;
                   2784:                 last;
                   2785:             }
                   2786:         }
                   2787:     }
                   2788:     if ($is_helpdesk) {
                   2789:         my ($possroles,$description) = &Apache::lonnet::get_my_adhocroles($cdom.'_'.$cnum);
                   2790:         my %available;
                   2791:         if (ref($possroles) eq 'ARRAY') {
                   2792:             map { $available{$_} = 1; } @{$possroles};
                   2793:         }
                   2794:         my %domdefaults = &Apache::lonnet::get_domain_defaults($cdom);
                   2795:         if (ref($domdefaults{'adhocroles'}) eq 'HASH') {
                   2796:             if (keys(%{$domdefaults{'adhocroles'}})) {
                   2797:                 my $numsec = 1;
                   2798:                 my @sections;
                   2799:                 my ($allseclist,$cached) =
                   2800:                     &Apache::lonnet::is_cached_new('courseseclist',$cdom.'_'.$cnum);
                   2801:                 if (defined($cached)) {
                   2802:                     if ($allseclist ne '') {
                   2803:                         @sections = split(/,/,$allseclist);
1.465     raeburn  2804:                         $numsec += scalar(@sections);
1.457     raeburn  2805:                     }
1.466     raeburn  2806:                 } else {
                   2807:                     my %sections_count = &Apache::loncommon::get_sections($cdom,$cnum);
                   2808:                     @sections = sort(keys(%sections_count));
                   2809:                     $numsec += scalar(@sections);
                   2810:                     $allseclist = join(',',@sections);
                   2811:                     &Apache::lonnet::do_cache_new('courseseclist',$cdom.'_'.$cnum,$allseclist);
                   2812:                 }
                   2813:                 my (%adhoc,$gotprivs);
                   2814:                 my $prefix = "cr/$cdom/$cdom".'-domainconfig';
                   2815:                 foreach my $role (keys(%{$domdefaults{'adhocroles'}})) {
                   2816:                     next if (($role eq '') || ($role =~ /\W/));
                   2817:                     $seccount->{"$prefix/$role"} = $numsec;
                   2818:                     $roledesc->{"$prefix/$role"} = $description->{$role};
                   2819:                     if ((ref($privref) eq 'ARRAY') && (@{$privref} > 0)) {
                   2820:                         if (exists($env{"user.priv.$prefix/$role./$cdom/$cnum./"})) {
                   2821:                             $courseprivs->{"$prefix/$role./$cdom/$cnum./"} =
                   2822:                                 $env{"user.priv.$prefix/$role./$cdom/$cnum./"};
                   2823:                             $courseprivs->{"$prefix/$role./$cdom/$cnum./$cdom/"} =
                   2824:                                 $env{"user.priv.$prefix/$role./$cdom/$cnum./$cdom/"};
                   2825:                             $courseprivs->{"$prefix/$role./$cdom/$cnum./$cdom/$cnum"} =
                   2826:                                 $env{"user.priv.$prefix/$role./$cdom/$cnum./$cdom/$cnum"};
                   2827:                         } else {
                   2828:                             unless ($gotprivs) {
                   2829:                                 my ($adhocroles,$privscached) =
                   2830:                                     &Apache::lonnet::is_cached_new('adhocroles',$cdom);
                   2831:                                 if ((defined($privscached)) && (ref($adhocroles) eq 'HASH')) {
                   2832:                                     %adhoc = %{$adhocroles};
                   2833:                                 } else {
                   2834:                                     my $confname = &Apache::lonnet::get_domainconfiguser($cdom);
                   2835:                                     my %roledefs = &Apache::lonnet::dump('roles',$cdom,$confname,'rolesdef_');
                   2836:                                     foreach my $key (keys(%roledefs)) {
                   2837:                                         (undef,my $rolename) = split(/_/,$key);
                   2838:                                         if ($rolename ne '') {
                   2839:                                             my ($systempriv,$domainpriv,$coursepriv) = split(/\_/,$roledefs{$key});
                   2840:                                             $coursepriv = &Apache::lonnet::course_adhocrole_privs($rolename,$cdom,$cnum,$coursepriv);
                   2841:                                             $adhoc{$rolename} = join('_',($systempriv,$domainpriv,$coursepriv));
1.457     raeburn  2842:                                         }
                   2843:                                     }
1.466     raeburn  2844:                                     &Apache::lonnet::do_cache_new('adhocroles',$cdom,\%adhoc);
1.457     raeburn  2845:                                 }
1.466     raeburn  2846:                                 $gotprivs = 1;
1.457     raeburn  2847:                             }
1.466     raeburn  2848:                             ($courseprivs->{"$prefix/$role./$cdom/$cnum./"},
                   2849:                              $courseprivs->{"$prefix/$role./$cdom/$cnum./$cdom/"},
                   2850:                              $courseprivs->{"$prefix/$role./$cdom/$cnum./$cdom/$cnum"}) =
                   2851:                                  split(/\_/,$adhoc{$role});
1.457     raeburn  2852:                         }
1.466     raeburn  2853:                     }
                   2854:                     if ($available{$role}) {
                   2855:                         $courseroles->{"$prefix/$role"} = \@sections;
1.457     raeburn  2856:                     }
                   2857:                 }
                   2858:             }
                   2859:         }
                   2860:     }
                   2861:     return;
                   2862: }
                   2863: 
1.235     raeburn  2864: sub jump_to_role {
1.465     raeburn  2865:     my ($cdom,$cnum,$seccount,$courseroles,$courseprivs,$roledesc,$privref) = @_;
1.239     raeburn  2866:     my %lt = &Apache::lonlocal::texthash(
                   2867:                 this => 'This role has section(s) associated with it.',
                   2868:                 ente => 'Enter a specific section.',
                   2869:                 orlb => 'Enter a specific section, or leave blank for no section.',
                   2870:                 avai => 'Available sections are:',
                   2871:                 youe => 'You entered an invalid section choice:',
1.352     raeburn  2872:                 plst => 'Please try again.',
1.350     raeburn  2873:                 role => 'The role you selected is not permitted to view the current page.',
                   2874:                 swit => 'Switch role, but display Main Menu page instead?',
1.239     raeburn  2875:     );
                   2876:     my $js;
                   2877:     if (ref($courseroles) eq 'HASH') {
                   2878:         $js = '    var secpick = new Array("'.$lt{'ente'}.'","'.$lt{'orlb'}.'");'."\n". 
                   2879:               '    var numsec = new Array();'."\n".
                   2880:               '    var rolesections = new Array();'."\n".
                   2881:               '    var rolenames = new Array();'."\n".
                   2882:               '    var roleseclist = new Array();'."\n";
                   2883:         my @items = keys(%{$courseroles});
                   2884:         for (my $i=0; $i<@items; $i++) {
                   2885:             $js .= '    rolenames['.$i.'] = "'.$items[$i].'";'."\n";
                   2886:             my ($secs,$secstr);
                   2887:             if (ref($courseroles->{$items[$i]}) eq 'ARRAY') {
                   2888:                 my @sections = sort { $a <=> $b } @{$courseroles->{$items[$i]}};
                   2889:                 $secs = join('","',@sections);
                   2890:                 $secstr = join(', ',@sections);
                   2891:             }
                   2892:             $js .= '    rolesections['.$i.'] = new Array("'.$secs.'");'."\n".
                   2893:                    '    roleseclist['.$i.'] = "'.$secstr.'";'."\n".
                   2894:                    '    numsec['.$i.'] = "'.$seccount->{$items[$i]}.'";'."\n";
                   2895:         }
                   2896:     }
1.350     raeburn  2897:     my $checkroles = 0;
1.457     raeburn  2898:     if ((ref($privref) eq 'ARRAY') && (@{$privref} > 0) && (ref($courseprivs) eq 'HASH')) {
                   2899:         my %disallowed;
1.350     raeburn  2900:         foreach my $role (sort(keys(%{$courseprivs}))) {
                   2901:             my $trole;
                   2902:             if ($role =~ m{^(.+?)\Q./$cdom/$cnum\E}) {
                   2903:                 $trole = $1;
                   2904:             }
                   2905:             if (($trole ne '') && ($trole ne 'cm')) {
1.457     raeburn  2906:                 $disallowed{$trole} = 1;
                   2907:                 foreach my $priv (@{$privref}) { 
                   2908:                     if ($courseprivs->{$role} =~ /\Q:$priv\E($|:|\&\w+)/) {
                   2909:                         delete($disallowed{$trole});
                   2910:                         last;
                   2911:                     }
1.350     raeburn  2912:                 }
                   2913:             }
                   2914:         }
1.457     raeburn  2915:         if (keys(%disallowed) > 0) {
1.350     raeburn  2916:             $checkroles = 1;
1.457     raeburn  2917:             $js .= "    var disallow = new Array('".join("','",keys(%disallowed))."');\n".
1.350     raeburn  2918:                    "    var rolecheck = 1;\n";
                   2919:         }
                   2920:     }
                   2921:     if (!$checkroles) {
                   2922:         $js .=  "    var disallow = new Array();\n".
                   2923:                 "    rolecheck = 0;\n";
                   2924:     }
1.273     droeschl 2925:     return <<"END";
1.235     raeburn  2926: <script type="text/javascript">
1.273     droeschl 2927: //<![CDATA[
1.401     raeburn  2928: function adhocRole(newrole) {
1.239     raeburn  2929:     $js
1.235     raeburn  2930:     if (newrole == '') {
1.350     raeburn  2931:         return;
1.235     raeburn  2932:     } 
1.239     raeburn  2933:     var fullrole = newrole+'./$cdom/$cnum';
                   2934:     var selidx = '';
                   2935:     for (var i=0; i<rolenames.length; i++) {
                   2936:         if (rolenames[i] == newrole) {
                   2937:             selidx = i;
                   2938:         }
                   2939:     }
1.350     raeburn  2940:     if (rolecheck > 0) {
                   2941:         for (var i=0; i<disallow.length; i++) {
                   2942:             if (disallow[i] == newrole) {
                   2943:                 if (confirm("$lt{'role'}\\n$lt{'swit'}")) {
                   2944:                     document.rolechooser.destinationurl.value = '/adm/menu';
                   2945:                 } else {
                   2946:                     return;
                   2947:                 }
                   2948:             }
                   2949:         }
                   2950:     }
1.239     raeburn  2951:     var secok = 1;
                   2952:     var secchoice = '';
                   2953:     if (selidx >= 0) {
                   2954:         if (numsec[selidx] > 1) {
                   2955:             secok = 0;
                   2956:             var numrolesec = rolesections[selidx].length;
                   2957:             var msgidx = numsec[selidx] - numrolesec;
1.339     raeburn  2958:             secchoice = prompt("$lt{'this'} "+secpick[msgidx]+"\\n$lt{'avai'} "+roleseclist[selidx],"");
1.239     raeburn  2959:             if (secchoice == '') {
                   2960:                 if (msgidx > 0) {
                   2961:                     secok = 1;
                   2962:                 }
                   2963:             } else {
                   2964:                 for (var j=0; j<rolesections[selidx].length; j++) {
                   2965:                     if (rolesections[selidx][j] == secchoice) {
                   2966:                         secok = 1;
                   2967:                     }
                   2968:                 }
                   2969:             }
                   2970:         } else {
                   2971:             if (rolesections[selidx].length == 1) {
                   2972:                 secchoice = rolesections[selidx][0];
                   2973:             }
                   2974:         }
                   2975:     }
                   2976:     if (secok == 1) {
                   2977:         if (secchoice != '') {
                   2978:             fullrole += '/'+secchoice;
                   2979:         }
                   2980:     } else {
                   2981:         if (secchoice != null) {
                   2982:             alert("$lt{'youe'} \\""+secchoice+"\\".\\n $lt{'plst'}");
                   2983:         }
                   2984:         return;
                   2985:     }
                   2986:     if (fullrole == "$env{'request.role'}") {
1.235     raeburn  2987:         return;
                   2988:     }
                   2989:     itemid = retrieveIndex('gotorole');
                   2990:     if (itemid != -1) {
1.239     raeburn  2991:         document.rolechooser.elements[itemid].name = fullrole;
1.235     raeburn  2992:     }
1.401     raeburn  2993:     document.rolechooser.switchrole.value = fullrole;
1.235     raeburn  2994:     document.rolechooser.selectrole.value = '1';
                   2995:     document.rolechooser.submit();
                   2996:     return;
                   2997: }
                   2998: 
                   2999: function retrieveIndex(item) {
                   3000:     for (var i=0;i<document.rolechooser.elements.length;i++) {
                   3001:         if (document.rolechooser.elements[i].name == item) {
                   3002:             return i;
                   3003:         }
                   3004:     }
                   3005:     return -1;
                   3006: }
1.273     droeschl 3007: // ]]>
1.235     raeburn  3008: </script>
                   3009: END
                   3010: }
                   3011: 
1.350     raeburn  3012: sub required_privs {
                   3013:     my $privs =  {
1.457     raeburn  3014:              '/adm/parmset'      => 'opa,vpa',
                   3015:              '/adm/courseprefs'  => 'opa,vpa',
1.350     raeburn  3016:              '/adm/whatsnew'     => 'whn',
1.461     raeburn  3017:              '/adm/populate'     => 'cst,vpa,vcl',
1.350     raeburn  3018:              '/adm/trackstudent' => 'vsa',
1.457     raeburn  3019:              '/adm/statistics'   => 'mgr,vgr',
                   3020:              '/adm/setblock'     => 'dcm,vcb',
1.367     raeburn  3021:              '/adm/coursedocs'   => 'mdc',
1.350     raeburn  3022:            };
                   3023:     unless ($env{'course.'.$env{'request.course.id'}.'.grading'} eq 'spreadsheet') {
1.364     raeburn  3024:         $privs->{'/adm/classcalc'}   = 'vgr',
                   3025:         $privs->{'/adm/assesscalc'}  = 'vgr',
                   3026:         $privs->{'/adm/studentcalc'} = 'vgr';
1.350     raeburn  3027:     }
                   3028:     return $privs;
                   3029: }
1.235     raeburn  3030: 
1.378     raeburn  3031: sub countdown_timer {
                   3032:     if (($env{'request.course.id'}) && ($env{'request.symb'} ne '') &&
1.484     raeburn  3033:         (($env{'request.filename'}=~/$LONCAPA::assess_re/) ||
                   3034:          (($env{'request.symb'} =~ /ext\.tool$/) &&
                   3035:          (&Apache::lonnet::EXT('resource.0.gradable',$env{'request.symb'}) =~ /^yes$/i)))) {
1.387     raeburn  3036:         my ($type,$hastimeleft,$slothastime);
                   3037:         my $now = time;
                   3038:         if ($env{'request.filename'} =~ /\.task$/) {
                   3039:             $type = 'Task';
1.485     raeburn  3040:         } elsif ($env{'request.symb'} =~ /ext\.tool$/) {
                   3041:             $type = 'tool';
1.387     raeburn  3042:         } else {
                   3043:             $type = 'problem';
                   3044:         }
1.485     raeburn  3045:         my ($status,$accessmsg,$slot_name,$slot);
                   3046:         if ($type eq 'tool') {
                   3047:             ($status,$accessmsg,$slot_name,$slot) =
                   3048:                 &Apache::lonhomework::check_slot_access('0',$type,$env{'request.symb'},['0']);
                   3049:         } else {
                   3050:             ($status,$accessmsg,$slot_name,$slot) =
                   3051:                 &Apache::lonhomework::check_slot_access('0',$type);
                   3052:         }
1.387     raeburn  3053:         if ($slot_name ne '') {
                   3054:             if (ref($slot) eq 'HASH') {
                   3055:                 if (($slot->{'starttime'} < $now) &&
                   3056:                     ($slot->{'endtime'} > $now)) {
                   3057:                     $slothastime = 1;
                   3058:                 }
                   3059:             }
                   3060:         }
                   3061:         if ($status ne 'CAN_ANSWER') {
                   3062:             return;
                   3063:         }
1.378     raeburn  3064:         my $duedate = &Apache::lonnet::EXT("resource.0.duedate");
1.380     raeburn  3065:         my @interval=&Apache::lonnet::EXT("resource.0.interval");
1.448     raeburn  3066:         my ($timelimit,$usesdone,$donebuttontext,$proctor,$secret);
1.381     raeburn  3067:         if (@interval > 1) {
1.448     raeburn  3068:             ($timelimit,my $donesuffix) = split(/_/,$interval[0],2);
                   3069:             if ($donesuffix =~ /^done\:([^\:]+)\:(.*)$/) {
                   3070:                 $usesdone = 'done';
                   3071:                 $donebuttontext = $1;
                   3072:                 (undef,$proctor,$secret) = split(/_/,$2);
                   3073:             } elsif ($donesuffix =~ /^done(|_.+)$/) {
                   3074:                 $donebuttontext = &mt('Done');
                   3075:                 ($usesdone,$proctor,$secret) = split(/_/,$donesuffix);
                   3076:             }
1.381     raeburn  3077:             my $first_access=&Apache::lonnet::get_first_access($interval[1]);
                   3078:             if ($first_access > 0) {
1.437     raeburn  3079:                 if ($first_access+$timelimit > time) {
1.381     raeburn  3080:                     $hastimeleft = 1;
                   3081:                 }
                   3082:             }
                   3083:         }
1.380     raeburn  3084:         if (($duedate && $duedate > time) ||
1.387     raeburn  3085:             (!$duedate && $hastimeleft) ||
                   3086:             ($slot_name ne '' && $slothastime)) {
1.435     musolffc 3087:             my ($collapse,$expand,$alttxt,$title,$currdisp,$donebutton);
1.387     raeburn  3088:             if ((@interval > 1 && $hastimeleft) ||
                   3089:                 ($type eq 'Task' && $slothastime)) {
1.378     raeburn  3090:                 $currdisp = 'inline';
                   3091:                 $collapse = '&#9658;&nbsp;';
1.435     musolffc 3092:                 if ((@interval > 1) && ($hastimeleft)) {
1.437     raeburn  3093:                     if ($usesdone eq 'done') {
1.448     raeburn  3094:                         $donebutton = &done_button_js($interval[1],'','',$proctor,$donebuttontext);
1.437     raeburn  3095:                     }
1.435     musolffc 3096:                 }
1.378     raeburn  3097:             } else {
                   3098:                 $currdisp = 'none';
                   3099:                 $expand = '&#9668;&nbsp;';
                   3100:             }
                   3101:             unless ($env{'environment.icons'} eq 'iconsonly') {
1.379     raeburn  3102:                 $alttxt = &mt('Timer');
                   3103:                 $title = $alttxt.'&nbsp;';
1.378     raeburn  3104:             }
                   3105:             my $desc = &mt('Countdown to due date/time');
1.435     musolffc 3106: 
1.378     raeburn  3107:             return <<END;
1.435     musolffc 3108: $donebutton
1.378     raeburn  3109: <a href="javascript:toggleCountdown();" class="LC_menubuttons_link">
                   3110: <span id="ddcountcollapse" class="LC_menubuttons_inline_text">
                   3111: $collapse
1.379     raeburn  3112: </span></a>
1.378     raeburn  3113: <span id="duedatecountdown" class="LC_menubuttons_inline_text" style="display: $currdisp;"></span>
                   3114: <a href="javascript:toggleCountdown();" class="LC_menubuttons_link">
                   3115: <span id="ddcountexpand" class="LC_menubuttons_inline_text" >$expand</span>
1.379     raeburn  3116: <img src="/res/adm/pages/timer.png" title="$desc" class="LC_icon" alt="$alttxt" /><span class="LC_menubuttons_inline_text">$title</span></a>
1.378     raeburn  3117: END
                   3118:         }
                   3119:     }
                   3120:     return;
                   3121: }
                   3122: 
1.445     raeburn  3123: sub placement_progress {
                   3124:     my ($totalpoints,$incomplete) = &Apache::lonplacementtest::check_completion(undef,undef,1);
                   3125:     my $complete = 100 - $incomplete;
                   3126:     return '<span class="LC_placement_prog">'.
                   3127:            &mt('Test is [_1]% complete',$complete).'</span>';
                   3128: }
                   3129: 
1.2       www      3130: # ================================================================ Main Program
                   3131: 
1.16      harris41 3132: BEGIN {
1.166     albertel 3133:     if (! defined($readdesk)) {
1.283     droeschl 3134:         {
                   3135:             my $tabfile = $Apache::lonnet::perlvar{'lonTabDir'}.'/mydesk.tab';
                   3136:             if ( CORE::open( my $config,"<$tabfile") ) {
                   3137:                 while (my $configline=<$config>) {
                   3138:                     $configline=(split(/\#/,$configline))[0];
                   3139:                     $configline=~s/^\s+//;
                   3140:                     chomp($configline);
1.209     www      3141:                     if ($configline=~/^cat\:/) {
1.283     droeschl 3142:                         my @entries=split(/\:/,$configline);
                   3143:                         $category_positions{$entries[2]}=$entries[1];
                   3144:                         $category_names{$entries[2]}=$entries[3];
                   3145:                     } elsif ($configline=~/^prim\:/) {
1.507     raeburn  3146:                         my @entries = (split(/\:/, $configline))[1..7];
1.400     raeburn  3147:                         push(@primary_menu,\@entries);
1.371     raeburn  3148:                     } elsif ($configline=~/^primsub\:/) {
1.507     raeburn  3149:                         my ($parent,@entries) = (split(/\:/, $configline))[1..5];
1.400     raeburn  3150:                         push(@{$primary_submenu{$parent}},\@entries);
1.283     droeschl 3151:                     } elsif ($configline=~/^scnd\:/) {
1.507     raeburn  3152:                         my @entries = (split(/\:/, $configline))[1..6];
1.401     raeburn  3153:                         push(@secondary_menu,\@entries);
1.482     raeburn  3154:                     } elsif ($configline=~/^scndsub\:/) {
                   3155:                         my ($parent,@entries) = (split(/\:/, $configline))[1..4];
                   3156:                         push(@{$secondary_submenu{$parent}},\@entries);
1.283     droeschl 3157:                     } elsif ($configline) {
                   3158:                         push(@desklines,$configline);
                   3159:                     }
                   3160:                 }
                   3161:                 CORE::close($config);
                   3162:             }
                   3163:         }
                   3164:         $readdesk='done';
1.2       www      3165:     }
                   3166: }
1.30      www      3167: 
1.1       www      3168: 1;
                   3169: __END__
                   3170: 

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