File:  [LON-CAPA] / loncom / interface / lonmenu.pm
Revision 1.479: download - view: text, annotated - select for diffs
Sun Sep 10 00:11:27 2017 UTC (6 years, 8 months ago) by raeburn
Branches: MAIN
CVS tags: HEAD
- Titles in breadcrumb trail of folder hierarchy shown when a resource
  is viewed in course context are truncated at word boundaries if they
  are too long.

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

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