File:  [LON-CAPA] / loncom / interface / lonmenu.pm
Revision 1.443: download - view: text, annotated - select for diffs
Sat Apr 2 04:30:20 2016 UTC (8 years, 2 months ago) by raeburn
Branches: MAIN
CVS tags: HEAD
- Bug 6808. New course container -- "Placement" for Placement Tests.
  Work in progress.

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

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