File:  [LON-CAPA] / loncom / interface / lonmenu.pm
Revision 1.473: download - view: text, annotated - select for diffs
Wed May 10 19:26:24 2017 UTC (7 years ago) by raeburn
Branches: MAIN
CVS tags: HEAD
- xhtml -- satisfy w3c validation.

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

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