File:  [LON-CAPA] / loncom / interface / lonmenu.pm
Revision 1.485: download - view: text, annotated - select for diffs
Fri Dec 22 02:00:46 2017 UTC (6 years, 5 months ago) by raeburn
Branches: MAIN
CVS tags: HEAD
- Bug 6754 LON-CAPA as LTI Consumer
  Support for access control using slots, and also for time interval
  for external tools set to be "gradable".

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

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